~ubuntu-branches/ubuntu/trusty/compiz/trusty

« back to all changes in this revision

Viewing changes to src/privatescreen.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2013-08-22 06:58:07 UTC
  • mto: This revision was merged to the branch mainline in revision 3352.
  • Revision ID: package-import@ubuntu.com-20130822065807-17nlzez0d30y09so
Tags: upstream-0.9.10+13.10.20130822
ImportĀ upstreamĀ versionĀ 0.9.10+13.10.20130822

Show diffs side-by-side

added added

removed removed

Lines of Context:
314
314
 
315
315
        Glib::RefPtr <Glib::MainLoop>  mainloop;
316
316
 
317
 
        /* We cannot use RefPtrs. See
318
 
         * https://bugzilla.gnome.org/show_bug.cgi?id=561885
319
 
         */
320
 
        CompEventSource * source;
321
 
        CompTimeoutSource * timeout;
322
 
        CompSignalSource * sighupSource;
323
 
        CompSignalSource * sigtermSource;
324
 
        CompSignalSource * sigintSource;
 
317
        Glib::RefPtr <CompEventSource> source;
 
318
        Glib::RefPtr <CompTimeoutSource> timeout;
 
319
        CompSignalSource *sighupSource;
 
320
        CompSignalSource *sigtermSource;
 
321
        CompSignalSource *sigintSource;
325
322
        Glib::RefPtr <Glib::MainContext> ctx;
326
323
 
327
324
        CompFileWatchList   fileWatch;
329
326
 
330
327
        // TODO - almost certainly the wrong data structure
331
328
        // Why not a std::map<CompWatchFdHandle, CompWatchFd>?
332
 
        std::list< CompWatchFd * > watchFds;
 
329
        std::list<Glib::RefPtr<CompWatchFd> > watchFds;
333
330
        CompWatchFdHandle        lastWatchFdHandle;
334
331
 
335
332
        bool    grabbed;   /* true once we receive a GrabNotify
744
741
 
745
742
    Window wmSnSelectionWindow;
746
743
 
 
744
    int    clientPointerDeviceId;
747
745
    Cursor normalCursor;
748
746
    Cursor busyCursor;
749
747
    Cursor invisibleCursor;