Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-05-01 16:26:26 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-05-01 16:26:26 (GMT)
commitbc4b051af20d0d0c2d02d16a7486c4e8bf0e85cb (patch)
tree213934bce864fcc5cc0294ef68578852db15bae7 /shell
parent152361c592188574d96c0d52352a35618014a084 (diff)
Some refactoring to get styles right
Diffstat (limited to 'shell')
-rw-r--r--shell/view/frame/Makefile.am2
-rw-r--r--shell/view/frame/clipboardpanelwindow.py6
-rw-r--r--shell/view/frame/frame.py4
-rw-r--r--shell/view/frame/framewindow.py (renamed from shell/view/frame/PanelWindow.py)6
4 files changed, 9 insertions, 9 deletions
diff --git a/shell/view/frame/Makefile.am b/shell/view/frame/Makefile.am
index fe14746..f33648e 100644
--- a/shell/view/frame/Makefile.am
+++ b/shell/view/frame/Makefile.am
@@ -9,5 +9,5 @@ sugar_PYTHON = \
frame.py \
ZoomBox.py \
overlaybox.py \
- PanelWindow.py \
+ framewindow.py \
framepopupcontext.py
diff --git a/shell/view/frame/clipboardpanelwindow.py b/shell/view/frame/clipboardpanelwindow.py
index 0f91645..0eb8b1d 100644
--- a/shell/view/frame/clipboardpanelwindow.py
+++ b/shell/view/frame/clipboardpanelwindow.py
@@ -2,14 +2,14 @@ import logging
import gtk
import hippo
-from view.frame.PanelWindow import PanelWindow
+from view.frame.framewindow import FrameWindow
from view.frame.clipboardbox import ClipboardBox
from sugar.clipboard import clipboardservice
from sugar import util
-class ClipboardPanelWindow(PanelWindow):
+class ClipboardPanelWindow(FrameWindow):
def __init__(self, frame, orientation):
- PanelWindow.__init__(self, orientation)
+ FrameWindow.__init__(self, orientation)
self._frame = frame
diff --git a/shell/view/frame/frame.py b/shell/view/frame/frame.py
index d37ce4c..521cd8d 100644
--- a/shell/view/frame/frame.py
+++ b/shell/view/frame/frame.py
@@ -24,7 +24,7 @@ from view.frame.ActivitiesBox import ActivitiesBox
from view.frame.ZoomBox import ZoomBox
from view.frame.overlaybox import OverlayBox
from view.frame.FriendsBox import FriendsBox
-from view.frame.PanelWindow import PanelWindow
+from view.frame.framewindow import FrameWindow
from view.frame.clipboardpanelwindow import ClipboardPanelWindow
from view.frame.framepopupcontext import FramePopupContext
from model.ShellModel import ShellModel
@@ -257,7 +257,7 @@ class Frame(object):
self._timeline.goto('slide_out', True)
def _create_panel(self, orientation):
- panel = PanelWindow(orientation)
+ panel = FrameWindow(orientation)
self._connect_to_panel(panel)
return panel
diff --git a/shell/view/frame/PanelWindow.py b/shell/view/frame/framewindow.py
index 5dfe446..3cb55d2 100644
--- a/shell/view/frame/PanelWindow.py
+++ b/shell/view/frame/framewindow.py
@@ -19,7 +19,8 @@ import hippo
from sugar.graphics import units
-class PanelWindow(gtk.Window):
+class FrameWindow(gtk.Window):
+ __gtype_name__ = 'SugarFrameWindow'
def __init__(self, orientation):
gtk.Window.__init__(self)
self.hover = False
@@ -35,8 +36,7 @@ class PanelWindow(gtk.Window):
self.add(self._canvas)
self._canvas.show()
- self._bg = hippo.CanvasBox(background_color=0x414141ff,
- orientation=self._orientation)
+ self._bg = hippo.CanvasBox(orientation=self._orientation)
self._canvas.set_root(self._bg)
self._update_size()