X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/7fec7ff9a096d288b66fce2699c7b8bc71f6fbbb..abf17941f7:/src/generalsettingspage.h diff --git a/src/generalsettingspage.h b/src/generalsettingspage.h index 246b150ed..0cffc3f69 100644 --- a/src/generalsettingspage.h +++ b/src/generalsettingspage.h @@ -15,12 +15,14 @@ * 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., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * ***************************************************************************/ #ifndef GENERALSETTINGSPAGE_H #define GENERALSETTINGSPAGE_H #include + +class DolphinMainWindow; class QLineEdit; class QRadioButton; class QCheckBox; @@ -30,16 +32,13 @@ class QCheckBox; * * The general settings allow to set the home Url, the default view mode * and the split view mode. - * - * @author Peter Penz */ class GeneralSettingsPage : public SettingsPageBase { Q_OBJECT public: - GeneralSettingsPage(QWidget* parent); - + GeneralSettingsPage(DolphinMainWindow* mainWindow, QWidget* parent); virtual ~GeneralSettingsPage(); /** @see SettingsPageBase::applySettings */ @@ -51,10 +50,8 @@ private slots: void useDefaulLocation(); private: + DolphinMainWindow* m_mainWindow; QLineEdit* m_homeUrl; - QRadioButton* m_iconsView; - QRadioButton* m_detailsView; - QRadioButton* m_previewsView; QCheckBox* m_startSplit; QCheckBox* m_startEditable; };