~ubuntu-branches/ubuntu/saucy/kvirc/saucy

« back to all changes in this revision

Viewing changes to src/kvirc/kernel/KviApplication.h

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2013-05-18 19:36:33 UTC
  • mfrom: (22.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20130518193633-kuhzryg7jstqvxpr
Tags: 4:4.2.0-2
Upload to unstable 

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
        #include <QX11Info>
58
58
#endif
59
59
 
60
 
class KviTalPopupMenu;
 
60
class QMenu;
61
61
class KviTalListBox;
62
62
class KviConsoleWindow;
63
63
class KviConfigurationFile;
131
131
        // setup stuff (accessed from KviMain.cpp: consider private othwerise)
132
132
        QString                                    m_szConfigFile;        // setup
133
133
        bool                                       m_bCreateConfig;      // setup
134
 
        KviCString                                     m_szExecAfterStartup;
 
134
        QString                                    m_szExecAfterStartup;
135
135
        bool                                       m_bShowSplashScreen;
136
136
protected:
137
137
#ifdef COMPILE_KDE_SUPPORT
159
159
#endif
160
160
        QFont                                      m_fntDefaultFont;
161
161
public:
162
 
        void destroyFrame();
163
162
        void setup();                                  // THIS SHOULD BE PRIVATE! (but is accessed from KviMain.cpp)
164
163
 
165
164
#ifdef COMPILE_KDE_SUPPORT
175
174
 
176
175
        bool firstTimeRun() const { return m_bFirstTimeRun; };
177
176
        bool kviClosingDown() const { return m_bClosingDown; };
 
177
        void setKviClosingDown() { m_bClosingDown=true; };
178
178
 
179
179
        inline bool supportsCompositing()
180
180
        {
319
319
 
320
320
 
321
321
        void addRecentServer(const QString& server);
322
 
        void fillRecentServersPopup(KviTalPopupMenu * m);
323
 
        void fillRecentNicknamesPopup(KviTalPopupMenu * m,KviConsoleWindow * pConsole);
324
 
        void fillRecentChannelsPopup(KviTalPopupMenu * m,KviConsoleWindow * pConsole);
 
322
    void fillRecentServersPopup(QMenu * m);
 
323
    void fillRecentNicknamesPopup(QMenu * m,KviConsoleWindow * pConsole);
 
324
    void fillRecentChannelsPopup(QMenu * m,KviConsoleWindow * pConsole);
325
325
//
326
326
        void autoConnectToServers();
327
327