~ubuntu-branches/ubuntu/oneiric/compiz/oneiric

« back to all changes in this revision

Viewing changes to plugins/move/src/move.h

  • Committer: Package Import Robot
  • Author(s): Didier Roche
  • Date: 2011-09-28 14:15:21 UTC
  • mfrom: (0.168.12 upstream)
  • Revision ID: package-import@ubuntu.com-20110928141521-sf8s523pqyptq61f
Tags: 1:0.9.6-0ubuntu1
* New upstream release 0.9.6:
 - Windows which are marked transients of docks should be treated like docks (LP: #860397)
 - Applications which create multiple windows that are transients of each other can be given invalid stack positions (LP: #858625)
 - race condition in configureXWindow causes unpredicatable window geometry changes (LP: #860304)
 - invisible window when a window is mapped but not yet drawn on by the process mapping it (LP: #860286)
 - resizing bugs with xterm (LP: #854725)
 - Cannot open a window that starts iconified (LP: #732997)
 - maximized windows fail to update their input extents when undecorated (LP: #853734)
 - Clicking on a tweet/message link sometimes does not work (LP: #790565)
 - crash on closing a window (LP: #856015)
 - Windows move to 0,0 on compiz restarts (LP: #858629)
 - windows that are decorated while resizing can cause incorrect resize results (LP: #860306)
 - remove transient window handling from unity-window-decorator (LP: #856096)

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
        void updateOpacity ();
62
62
 
63
63
        void handleEvent (XEvent *);
 
64
        void handleCompizEvent (const char *plugin,
 
65
                                const char *event,
 
66
                                CompOption::Vector &options);
64
67
 
65
68
        CompWindow *w;
66
69
        int        savedX;
98
101
            PluginClassHandler<MoveWindow,CompWindow> (window),
99
102
            window (window),
100
103
            gWindow (GLWindow::get (window)),
101
 
            cWindow (CompositeWindow::get (window))
 
104
            cWindow (CompositeWindow::get (window)),
 
105
            mLocked (false)
102
106
        {
103
107
            if (gWindow)
104
108
                GLWindowInterface::setHandler (gWindow, false);
110
114
        CompWindow      *window;
111
115
        GLWindow        *gWindow;
112
116
        CompositeWindow *cWindow;
 
117
 
 
118
        bool            mLocked;
113
119
};
114
120
 
115
121
#define MOVE_SCREEN(s) \