~ubuntu-branches/ubuntu/lucid/skrooge/lucid

« back to all changes in this revision

Viewing changes to skgbasegui/skgmainpanel.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2009-07-28 15:38:43 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090728153843-91b74m0vcam50krt
Tags: 0.2.9-0ubuntu1
* New upstream release
* Added kubuntu_01_cmake_fix.patch:
  Fix FTBFS

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
        virtual SKGTabWidget* currentTab() const;
119
119
 
120
120
        /**
 
121
         * Get the label for normal message in status bar
 
122
         * @return the label
 
123
         */
 
124
        virtual QLabel* statusNormalMessage() const;
 
125
 
 
126
        /**
121
127
         * Get the current splash screen. NULL is the splash screen is closed.
122
128
         * @return the splash screen
123
129
         */
239
245
        void onQuitAction();
240
246
 
241
247
        void addTab();
 
248
        void onBeforeOpenContext();
242
249
        void onOpenContext();
243
250
        void onTipOfDay();
244
251
        void onTrayActivated ( QSystemTrayIcon::ActivationReason reason );
245
252
        void onChangeStyleSheet ( const QString& iNewStryle );
 
253
        void saveDefaultState();
246
254
private:
247
255
        Q_DISABLE_COPY ( SKGMainPanel );
248
 
        void setupActions();
 
256
        void setupActions();
249
257
        bool iconInSystemtray();
250
258
        bool eventFilter ( QObject *object, QEvent *event );
251
259
 
267
275
        KAction *closePageAction;
268
276
        KAction *closeAllPagesAction;
269
277
        KAction *closeAllOtherPagesAction;
 
278
        KAction *saveDefaultStateAction;
270
279
        KTipDatabase* tipDatabase;
271
280
        static bool currentActionCanceled;
272
281
        KPushButton *kCancelButton;
273
282
        KSystemTrayIcon* kSystemTrayIcon;
 
283
        QLabel* kNormalMessage;
274
284
 
275
285
        struct doublePointer {
276
286
                void* p1;
279
289
 
280
290
        doublePointer progressObjects;
281
291
        QString defaultStyle;
 
292
        bool middleClick;
282
293
};
283
294
 
284
295
#endif // SKGMAINPANEL_H