]> cloud.milkyroute.net Git - dolphin.git/blob - src/iconsviewsettingspage.h
This fixes the selection problem with the mouse _only_ for the categorized view....
[dolphin.git] / src / iconsviewsettingspage.h
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 ***************************************************************************/
19
20 #ifndef ICONSVIEWSETTINGSPAGE_H
21 #define ICONSVIEWSETTINGSPAGE_H
22
23 #include <dolphiniconsview.h>
24 #include <kvbox.h>
25
26 class DolphinMainWindow;
27 class KFontRequester;
28 class QCheckBox;
29 class QComboBox;
30 class QPushButton;
31 class QSpinBox;
32
33 /**
34 * @brief Tab page for the 'Icons Mode' and 'Previews Mode' settings
35 * of the Dolphin settings dialog.
36 *
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
45 *
46 * @see DolphinIconsViewSettings
47 */
48 class IconsViewSettingsPage : public KVBox
49 {
50 Q_OBJECT
51
52 public:
53 IconsViewSettingsPage(DolphinMainWindow* mainWindow, QWidget* parent);
54 virtual ~IconsViewSettingsPage();
55
56 /**
57 * Applies the settings for the icons view.
58 * The settings are persisted automatically when
59 * closing Dolphin.
60 */
61 void applySettings();
62
63 /** Restores the settings to default values. */
64 void restoreDefaults();
65
66 private slots:
67 void openIconSizeDialog();
68
69 private:
70 void loadSettings();
71
72 private:
73 enum
74 {
75 GridSpacingBase = 8,
76 GridSpacingInc = 12,
77 LeftToRightBase = 128,
78 LeftToRightInc = 64,
79 TopToBottomBase = 64,
80 TopToBottomInc = 32
81 };
82
83 DolphinMainWindow* m_mainWindow;
84 int m_iconSize;
85 int m_previewSize;
86
87 QPushButton* m_iconSizeButton;
88 QComboBox* m_textWidthBox;
89 KFontRequester* m_fontRequester;
90 QSpinBox* m_textlinesCountBox;
91 QCheckBox* m_showAdditionalInfo;
92
93 QComboBox* m_arrangementBox;
94 QComboBox* m_gridSpacingBox;
95 };
96
97 #endif