/*************************************************************************** * Copyright (C) 2006 by Peter Penz * * peter.penz@gmx.at * * * * 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 DETAILSVIEWSETTINGSPAGE_H #define DETAILSVIEWSETTINGSPAGE_H #include class TQCheckBox; class KFontCombo; class TQSpinBox; class TQComboBox; class TQRadioButton; /** * @brief Represents the page from the Dolphin Settings which allows * to modify the settings for the details view. * * @author Peter Penz */ class DetailsViewSettingsPage : public TQVBox { Q_OBJECT TQ_OBJECT public: DetailsViewSettingsPage(TQWidget* parent); virtual ~DetailsViewSettingsPage(); /** * Applies the settings for the details view. * The settings are persisted automatically when * closing Dolphin. */ void applySettings(); private: TQCheckBox* m_dateBox; TQCheckBox* m_permissionsBox; TQCheckBox* m_ownerBox; TQCheckBox* m_groupBox; TQRadioButton* m_smallIconSize; TQRadioButton* m_mediumIconSize; TQRadioButton* m_largeIconSize; KFontCombo* m_fontFamilyBox; TQSpinBox* m_fontSizeBox; }; #endif