summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-02-08 15:33:48 +0100
committerinfirit <[email protected]>2014-02-08 17:26:53 +0100
commit1064eda20bcf6ec52be3c3e26cb9bde4b1016115 (patch)
treed791d025530e2fa0192c00ddd86e6c65e33ef9bf
parent6841ac965e7b2fc8f00a74b4ceea88bfb70332aa (diff)
downloadmate-applets-1064eda20bcf6ec52be3c3e26cb9bde4b1016115.tar.bz2
mate-applets-1064eda20bcf6ec52be3c3e26cb9bde4b1016115.tar.xz
Fix invest-applet pop-up window
-rw-r--r--invest-applet/invest/applet.py99
1 files changed, 48 insertions, 51 deletions
diff --git a/invest-applet/invest/applet.py b/invest-applet/invest/applet.py
index 4d877da6..33f11916 100644
--- a/invest-applet/invest/applet.py
+++ b/invest-applet/invest/applet.py
@@ -131,72 +131,69 @@ class InvestmentsListWindow(Gtk.Window):
"""
self.realize()
+ window = self.applet.get_window()
+ screen = window.get_screen()
+ monitor = screen.get_monitor_geometry (screen.get_monitor_at_window (window))
+
# Get our own dimensions & position
#(wx, wy) = self.get_origin()
- ax=0
- ay=0
- #FIXME this doesnt work with gir
- self.applet.window.get_origin(ax, ay)
-
- (ww, wh) = self.get_size ()
- (aw, ah) = self.applet.window.get_size ()
+ (ret, ax, ay) = window.get_origin()
- screen = self.applet.get_screen()
- monitor = Gdk.Rectangle(0, 0, 0, 0)
- screen.get_monitor_geometry (screen.get_monitor_at_window (self.applet.window), monitor)
+ (ww, wh) = self.get_size()
+ (ignored, ignored, aw, ah) = window.get_geometry()
if self.alignment == MatePanelApplet.AppletOrient.LEFT:
- x = ax - ww
- y = ay
-
- if (y + wh > monitor.y + monitor.height):
- y = monitor.y + monitor.height - wh
-
- if (y < 0):
- y = 0
-
- if (y + wh > monitor.height / 2):
- gravity = Gdk.Gravity.SOUTH_WEST
- else:
- gravity = Gdk.Gravity.NORTH_WEST
-
+ x = ax - ww
+ y = ay
+
+ if (y + wh > monitor.y + monitor.height):
+ y = monitor.y + monitor.height - wh
+
+ if (y < 0):
+ y = 0
+
+ if (y + wh > monitor.height / 2):
+ gravity = Gdk.Gravity.SOUTH_WEST
+ else:
+ gravity = Gdk.Gravity.NORTH_WEST
+
elif self.alignment == MatePanelApplet.AppletOrient.RIGHT:
- x = ax + aw
- y = ay
-
- if (y + wh > monitor.y + monitor.height):
- y = monitor.y + monitor.height - wh
-
- if (y < 0):
- y = 0
-
- if (y + wh > monitor.height / 2):
- gravity = Gdk.Gravity.SOUTH_EAST
- else:
- gravity = Gdk.Gravity.NORTH_EAST
+ x = ax + aw
+ y = ay
+
+ if (y + wh > monitor.y + monitor.height):
+ y = monitor.y + monitor.height - wh
+
+ if (y < 0):
+ y = 0
+
+ if (y + wh > monitor.height / 2):
+ gravity = Gdk.Gravity.SOUTH_EAST
+ else:
+ gravity = Gdk.Gravity.NORTH_EAST
elif self.alignment == MatePanelApplet.AppletOrient.DOWN:
- x = ax
- y = ay + ah
+ x = ax
+ y = ay + ah
- if (x + ww > monitor.x + monitor.width):
- x = monitor.x + monitor.width - ww
+ if (x + ww > monitor.x + monitor.width):
+ x = monitor.x + monitor.width - ww
- if (x < 0):
- x = 0
+ if (x < 0):
+ x = 0
- gravity = Gdk.Gravity.NORTH_WEST
+ gravity = Gdk.Gravity.NORTH_WEST
elif self.alignment == MatePanelApplet.AppletOrient.UP:
- x = ax
- y = ay - wh
+ x = ax
+ y = ay - wh
- if (x + ww > monitor.x + monitor.width):
- x = monitor.x + monitor.width - ww
+ if (x + ww > monitor.x + monitor.width):
+ x = monitor.x + monitor.width - ww
- if (x < 0):
- x = 0
+ if (x < 0):
+ x = 0
- gravity = Gdk.Gravity.SOUTH_WEST
+ gravity = Gdk.Gravity.SOUTH_WEST
self.move(x, y)
self.set_gravity(gravity)