Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/view/frame/framepopupcontext.py
blob: 34a57fe597330965cf9f2b51c58e1e7d47b81cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright (C) 2007, One Laptop Per Child
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
import logging

import gobject
import gtk
import hippo

from sugar.graphics.popupcontext import PopupContext
from sugar.graphics import units

class FramePopupContext(PopupContext):
    __gtype_name__ = 'SugarFramePopupContext'
    
    def __init__(self):
        PopupContext.__init__(self)

    def get_position(self, control, popup):
        [item_x, item_y] = control.get_context().translate_to_screen(control)
        [item_w, item_h] = control.get_allocation()

        [popup_w, natural_w] = popup.get_width_request()
        [popup_h, natural_h] = popup.get_height_request(popup_w)

        left_x = item_x + item_w
        left_y = item_y
        right_x = item_x - popup_w
        right_y = item_y
        top_x = item_x
        top_y = item_y + item_h
        bottom_x = item_x
        bottom_y = item_y - popup_h

        grid_size = units.grid_to_pixels(1)
        if item_x < grid_size:
            [x, y] = [left_x, left_y]
        elif item_x >= (gtk.gdk.screen_width() - grid_size):
            [x, y] = [right_x, right_y]
        elif item_y < grid_size:
            [x, y] = [top_x, top_y]
        elif item_y >= (gtk.gdk.screen_height() - grid_size):
            [x, y] = [bottom_x, bottom_y]
        else:
            logging.error('Item not in the frame!')
            return [None, None]

        x = min(x, gtk.gdk.screen_width() - popup_w)
        x = max(0, x)

        y = min(y, gtk.gdk.screen_height() - popup_h)
        y = max(0, y)

        return [x, y]