You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
/* kmail main window |
|
* Maintained by Stefan Taferner <taferner@kde.org> |
|
* This code is under the GPL |
|
*/ |
|
#ifndef __KMMAINWIN |
|
#define __KMMAINWIN |
|
|
|
#include <kmainwindow.h> |
|
#include "kdeversion.h" |
|
#include "qstring.h" |
|
|
|
class KMMainWidget; |
|
namespace KPIM { |
|
class StatusbarProgressWidget; |
|
class ProgressDialog; |
|
} |
|
using KPIM::StatusbarProgressWidget; |
|
using KPIM::ProgressDialog; |
|
|
|
class KMMainWin : public KMainWindow |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
// the main window needs to have a name since else restoring the window |
|
// settings by kwin doesn't work |
|
KMMainWin(QWidget *parent = 0); |
|
virtual ~KMMainWin(); |
|
KMMainWidget *mainKMWidget() const { return mKMMainWidget; }; |
|
StatusbarProgressWidget* progressWidget() const { return mLittleProgress; } |
|
ProgressDialog* progressDialog() const { return mProgressDialog; } |
|
|
|
|
|
/** Read configuration options after widgets are created. */ |
|
virtual void readConfig(void); |
|
|
|
/** Write configuration options. */ |
|
virtual void writeConfig(void); |
|
|
|
public slots: |
|
void displayStatusMsg(const QString&); |
|
void slotEditToolbars(); |
|
void slotUpdateToolbars(); |
|
void setupStatusBar(); |
|
|
|
protected: |
|
virtual bool queryClose (); |
|
|
|
protected slots: |
|
void slotQuit(); |
|
void slotConfigChanged(); |
|
|
|
private: |
|
KMMainWidget *mKMMainWidget; |
|
StatusbarProgressWidget *mLittleProgress; |
|
ProgressDialog *mProgressDialog; |
|
int mMessageStatusId; |
|
bool mReallyClose; |
|
}; |
|
|
|
#endif
|
|
|