2006-10-05 17:09:38 +02:00
|
|
|
import hippo
|
|
|
|
|
2006-10-02 16:37:30 +02:00
|
|
|
from sugar.graphics.grid import Grid
|
2006-09-17 01:05:59 +02:00
|
|
|
|
2006-10-02 16:37:30 +02:00
|
|
|
class MenuStrategy:
|
2006-10-05 17:46:36 +02:00
|
|
|
def _get_canvas(self, item):
|
2006-10-05 17:09:38 +02:00
|
|
|
canvas = item
|
|
|
|
while (not isinstance(canvas, hippo.Canvas)):
|
|
|
|
canvas = canvas.get_context()
|
2006-10-05 17:46:36 +02:00
|
|
|
return canvas
|
|
|
|
|
|
|
|
def _get_item_origin(self, canvas, item):
|
|
|
|
[x, y] = item.get_context().translate_to_widget(item)
|
2006-10-05 17:09:38 +02:00
|
|
|
|
|
|
|
[origin_x, origin_y] = canvas.window.get_origin()
|
|
|
|
x += origin_x
|
|
|
|
y += origin_y
|
|
|
|
|
2006-10-05 17:46:36 +02:00
|
|
|
return [x, y]
|
|
|
|
|
|
|
|
def get_menu_position(self, menu, item):
|
|
|
|
canvas = self._get_canvas(item)
|
2006-10-05 17:09:38 +02:00
|
|
|
|
2006-10-05 17:46:36 +02:00
|
|
|
[x, y] = self._get_item_origin(canvas, item)
|
|
|
|
[width, height] = item.get_allocation()
|
2006-09-17 01:05:59 +02:00
|
|
|
|
2006-10-05 17:46:36 +02:00
|
|
|
[canvas_x, canvas_y] = canvas.window.get_origin()
|
|
|
|
canvas_rect = canvas.get_allocation()
|
|
|
|
[menu_w, menu_h] = menu.size_request()
|
2006-09-17 01:05:59 +02:00
|
|
|
|
2006-10-05 17:46:36 +02:00
|
|
|
menu_x = x
|
|
|
|
menu_y = y + height
|
2006-09-17 01:05:59 +02:00
|
|
|
|
2006-10-05 17:46:36 +02:00
|
|
|
if (menu_x + menu_w > canvas_x) and \
|
|
|
|
(menu_y < canvas_y + canvas_rect.height):
|
|
|
|
menu_x = x - menu_w
|
|
|
|
menu_y = y
|
2006-09-17 01:05:59 +02:00
|
|
|
|
2006-10-02 16:37:30 +02:00
|
|
|
return [menu_x, menu_y]
|