add more spacing
[personal-kdebase.git] / apps / konqueror / settings / kio / bookmarks.h
blob491b19b820fa0e68bbaebc09825abce18bcddc7b
1 /*
2 Copyright (C) 2008 Xavier Vello <xavier.vello@gmail.com>
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.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 #ifndef KCM_BOOKMARKS_H
20 #define KCM_BOOKMARKS_H
22 // KDE
23 #include <kcmodule.h>
25 // Local
26 #include "ui_bookmarks.h"
28 class BookmarksConfigModule : public KCModule
30 Q_OBJECT
32 public:
33 BookmarksConfigModule(QWidget *parent, const QVariantList &args);
34 ~BookmarksConfigModule();
36 void load();
37 void save();
38 void defaults();
39 QString quickHelp() const;
41 private Q_SLOTS:
42 void clearCache();
43 void configChanged();
45 private:
46 Ui::BookmarksConfigUI ui;
49 #endif // KCM_BOOKMARKS_H