diff options
Diffstat (limited to 'kmymoney2/dialogs/settings/ksettingshome.h')
-rw-r--r-- | kmymoney2/dialogs/settings/ksettingshome.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/kmymoney2/dialogs/settings/ksettingshome.h b/kmymoney2/dialogs/settings/ksettingshome.h new file mode 100644 index 0000000..c461210 --- /dev/null +++ b/kmymoney2/dialogs/settings/ksettingshome.h @@ -0,0 +1,52 @@ +/*************************************************************************** + ksettingshome.h + ------------------- + copyright : (C) 2005 by Thomas Baumgart + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef KSETTINGSHOME_H +#define KSETTINGSHOME_H + +// ---------------------------------------------------------------------------- +// QT Includes + +class QListViewItem; + +// ---------------------------------------------------------------------------- +// KDE Includes + +// ---------------------------------------------------------------------------- +// Project Includes + +#include "kmymoney2/dialogs/settings/ksettingshomedecl.h" + +class KSettingsHome : public KSettingsHomeDecl +{ + Q_OBJECT + +public: + KSettingsHome(QWidget* parent = 0, const char* name = 0); + ~KSettingsHome(); + +protected slots: + void slotLoadItems(void); + void slotUpdateItemList(void); + void slotSelectHomePageItem(QListViewItem *); + void slotMoveUp(void); + void slotMoveDown(void); + +private: + bool m_noNeedToUpdateList; +}; +#endif + |