~compiz-team/compiz-core/oneiric.remove_dialog_bits

« back to all changes in this revision

Viewing changes to kde/window-decorator-kde4/decorator.h

  • Committer: Sam Spilsbury
  • Date: 2011-07-29 15:38:07 UTC
  • Revision ID: sam.spilsbury@canonical.com-20110729153807-0ex9ozst6qgq8619
Revert the decorator

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
            return &mShadowOptions;
109
109
        }
110
110
 
111
 
        static KWD::Window *defaultNormal ()
112
 
        {
113
 
            return mDecorNormal;
114
 
        }
115
 
 
116
 
        static KWD::Window *defaultActive ()
117
 
        {
118
 
            return mDecorActive;
119
 
        }
120
 
 
121
 
        static KWD::Decorator *self ()
122
 
        {
123
 
            return mSelf;
124
 
        }
125
 
 
126
111
        static void sendClientMessage (WId  eventWid,
127
112
                                       WId  wid,
128
113
                                       Atom atom,
167
152
        static NETRootInfo *mRootInfo;
168
153
        static WId mActiveId;
169
154
 
170
 
        static KWD::Window *mDecorNormal;
171
 
        static KWD::Window *mDecorActive;
 
155
        KWD::Window *mDecorNormal;
 
156
        KWD::Window *mDecorActive;
172
157
        QMap <WId, KWD::Window *>mClients;
173
158
        QMap <WId, KWD::Window *>mFrames;
174
159
        KConfig *mConfig;
177
162
        WId mCompositeWindow;
178
163
 
179
164
        Switcher *mSwitcher;
180
 
 
181
 
        static KWD::Decorator *mSelf; /* XXX: Remove */
182
165
    };
183
166
}
184
167