Add (and install) svg for the new krunner interface.
[kdebase/uwolfer.git] / apps / dolphin / src / iconsviewsettingspage.h
blob1aa1c74bbb70a0aa470b28f3bf0390f71de16e1e
1 /***************************************************************************
2 * Copyright (C) 2006 by Peter Penz <peter.penz@gmx.at> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
18 ***************************************************************************/
20 #ifndef ICONSVIEWSETTINGSPAGE_H
21 #define ICONSVIEWSETTINGSPAGE_H
23 #include <dolphiniconsview.h>
24 #include <kvbox.h>
26 class DolphinMainWindow;
27 class DolphinFontRequester;
28 class QCheckBox;
29 class QComboBox;
30 class QPushButton;
31 class QSpinBox;
33 /**
34 * @brief Tab page for the 'Icons Mode' and 'Previews Mode' settings
35 * of the Dolphin settings dialog.
37 * Allows to set:
38 * - icon size
39 * - preview size
40 * - text width
41 * - grid spacing
42 * - font
43 * - number of text lines
44 * - arrangement
46 * @see DolphinIconsViewSettings
48 class IconsViewSettingsPage : public KVBox
50 Q_OBJECT
52 public:
53 IconsViewSettingsPage(DolphinMainWindow* mainWindow, QWidget* parent);
54 virtual ~IconsViewSettingsPage();
56 /**
57 * Applies the settings for the icons view.
58 * The settings are persisted automatically when
59 * closing Dolphin.
61 void applySettings();
63 /** Restores the settings to default values. */
64 void restoreDefaults();
66 private slots:
67 void openIconSizeDialog();
69 private:
70 void loadSettings();
72 private:
73 enum
75 GridSpacingBase = 8,
76 GridSpacingInc = 12,
77 LeftToRightBase = 128,
78 LeftToRightInc = 64,
79 TopToBottomBase = 64,
80 TopToBottomInc = 32
83 DolphinMainWindow* m_mainWindow;
84 int m_iconSize;
85 int m_previewSize;
87 QPushButton* m_iconSizeButton;
88 QComboBox* m_textWidthBox;
89 DolphinFontRequester* m_fontRequester;
90 QSpinBox* m_textlinesCountBox;
92 QComboBox* m_arrangementBox;
93 QComboBox* m_gridSpacingBox;
96 #endif