2 * kmail: KDE mail client
3 * Copyright (c) 1996-1998 Stefan Taferner <taferner@kde.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 #include <kxmlguiwindow.h>
30 class ProgressStatusBarWidget
;
32 class KMMainWin
: public KXmlGuiWindow
37 // the main window needs to have a name since else restoring the window
38 // settings by kwin doesn't work
39 explicit KMMainWin(QWidget
*parent
= Q_NULLPTR
);
41 KMMainWidget
*mainKMWidget() const;
43 /// Same as KMMainWin::restore(), except that it also restores the docked state,
44 /// which we have saved in saveProperties().
45 /// TODO: KDE5: Move to kdelibs, see http://reviewboard.kde.org/r/504
46 bool restoreDockedState(int number
);
49 void displayStatusMsg(const QString
&);
50 void slotEditToolbars();
52 void setupStatusBar();
56 /// Reimplemented to save the docked state
57 void saveProperties(KConfigGroup
&) Q_DECL_OVERRIDE
;
59 bool queryClose() Q_DECL_OVERRIDE
;
65 void slotToggleMenubar(bool dontShowWarning
= false);
66 void slotConfigureShortcuts();
69 KPIM::ProgressStatusBarWidget
*mProgressBar
;
70 KMMainWidget
*mKMMainWidget
;
71 KToggleAction
*mHideMenuBarAction
;
73 QLabel
*mMessageLabel
;