Difference between revisions of "Window Management"

From Sugar Labs
Jump to navigation Jump to search
(Added some initial test results wrt Metacity)
Line 3: Line 3:
 
Here are some of the steps to get there:
 
Here are some of the steps to get there:
  
# Change the sugar-shell startup code to run metacity instead of mathcbox.
+
# Change the sugar-shell startup code to run metacity instead of matchbox.
 +
## Works. Change the <code>_start_matchbox()</code> method in sugar/src/main.py to start metacity instead of matchbox
 
# See which parts of Sugar breaks. I expect the frame will not work well, the windows needs to be hinted as panels.
 
# See which parts of Sugar breaks. I expect the frame will not work well, the windows needs to be hinted as panels.
 +
## Frame breaks. However, it works fine if it is hinted as a panel. Add <code>self.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_DOCK)</code> to the <code>__init__()</code> method of the <code>FrameWindow</code> class in sugar/src/view/frame/framewindow.py
 
# Decide how to make activities run fullscreen. We could either modify metacity to run every toplevel window in fullscreen. Or we could set the fullscreen hint on the activity windows. We should clarify the tradeoffs there.
 
# Decide how to make activities run fullscreen. We could either modify metacity to run every toplevel window in fullscreen. Or we could set the fullscreen hint on the activity windows. We should clarify the tradeoffs there.
 +
## Setting the window to be fullscreen does not seem to work, since it stops the frame from popping up, and also an icon to exit fullscreen appears at the top right corner. One possible solution to this is to make the activity window undecorated (we do not need maximise/minimize/resize buttons), and making their height/width equal to the dimensions of the screen.
 
# Support standard window icons in the frame activity list.
 
# Support standard window icons in the frame activity list.
 +
## TBD
  
 
[[Category:Developer]]
 
[[Category:Developer]]

Revision as of 04:59, 19 May 2008

Despite the fact that the Sugar UI is very different from a standard desktop, it's almost completely implemented using standard window manager hints and properties. We are planning to move from matchbox to a more compliant window manager and to address the little incompatibilities at the shell level, so that standard desktop applications can run out of the box in Sugar.

Here are some of the steps to get there:

  1. Change the sugar-shell startup code to run metacity instead of matchbox.
    1. Works. Change the _start_matchbox() method in sugar/src/main.py to start metacity instead of matchbox
  2. See which parts of Sugar breaks. I expect the frame will not work well, the windows needs to be hinted as panels.
    1. Frame breaks. However, it works fine if it is hinted as a panel. Add self.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_DOCK) to the __init__() method of the FrameWindow class in sugar/src/view/frame/framewindow.py
  3. Decide how to make activities run fullscreen. We could either modify metacity to run every toplevel window in fullscreen. Or we could set the fullscreen hint on the activity windows. We should clarify the tradeoffs there.
    1. Setting the window to be fullscreen does not seem to work, since it stops the frame from popping up, and also an icon to exit fullscreen appears at the top right corner. One possible solution to this is to make the activity window undecorated (we do not need maximise/minimize/resize buttons), and making their height/width equal to the dimensions of the screen.
  4. Support standard window icons in the frame activity list.
    1. TBD