diff options
Diffstat (limited to 'src/basketproperties.h')
-rw-r--r-- | src/basketproperties.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/src/basketproperties.h b/src/basketproperties.h new file mode 100644 index 0000000..033aff9 --- /dev/null +++ b/src/basketproperties.h @@ -0,0 +1,69 @@ +/*************************************************************************** + * Copyright (C) 2003 by Sébastien Laoût * + * slaout@linux62.org * + * * + * 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. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ + +#ifndef BASKETPROPERTIES_H +#define BASKETPROPERTIES_H + +#include <kdialogbase.h> +#include <qmap.h> +#include <qstring.h> + +class KIconButton; +class QLineEdit; +class QComboBox; +class QVButtonGroup; +class KIntNumInput; +class KKeyButton; +class KShortcut; + +class Basket; +class KColorCombo2; + +/** The dialog that hold basket settings. + * @author Sébastien Laoût + */ +class BasketPropertiesDialog : public KDialogBase +{ + Q_OBJECT + public: + BasketPropertiesDialog(Basket *basket, QWidget *parent = 0); + ~BasketPropertiesDialog(); + void polish(); + void applyChanges(); + protected slots: + void slotApply(); + void slotOk(); + void capturedShortcut(const KShortcut &shortcut); + void selectColumnsLayout(); + private: + Basket *m_basket; + KIconButton *m_icon; + QLineEdit *m_name; + QComboBox *m_backgroundImage; + KColorCombo2 *m_backgroundColor; + KColorCombo2 *m_textColor; + QVButtonGroup *m_disposition; + KIntNumInput *m_columnCount; + KKeyButton *m_shortcut; + QVButtonGroup *m_shortcutRole; + QMap<int, QString> m_backgroundImagesMap; +}; + +#endif // BASKETPROPERTIES_H |