From bc4b051af20d0d0c2d02d16a7486c4e8bf0e85cb Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Tue, 01 May 2007 16:26:26 +0000 Subject: Some refactoring to get styles right --- (limited to 'shell') 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() -- cgit v0.9.1