Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / apps / konqueror / sidebar / trees / history_module / history_settings.h
blob0705bb3b2191da387efae8dc20dfbab6aba001b5
1 /* This file is part of the KDE project
2 Copyright (C) 2000 Carsten Pfeiffer <pfeiffer@kde.org>
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (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 GNU
12 General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; see the file COPYING. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #ifndef HISTORY_SETTINGS_H
21 #define HISTORY_SETTINGS_H
23 #include <QtGui/QFont>
24 #include <QtCore/QObject>
25 #include <QtDBus/QtDBus>
27 class KonqSidebarHistorySettings : public QObject
29 Q_OBJECT
31 public:
32 enum { MINUTES, DAYS };
34 KonqSidebarHistorySettings( QObject *parent );
35 virtual ~KonqSidebarHistorySettings();
37 void readSettings(bool global);
38 void applySettings();
40 uint m_valueYoungerThan;
41 uint m_valueOlderThan;
43 int m_metricYoungerThan;
44 int m_metricOlderThan;
46 bool m_detailedTips;
48 QFont m_fontYoungerThan;
49 QFont m_fontOlderThan;
51 Q_SIGNALS:
52 void settingsChanged();
54 private Q_SLOTS:
55 void slotSettingsChanged();
57 protected:
58 //KonqSidebarHistorySettings( const KonqSidebarHistorySettings& );
59 Q_DISABLE_COPY( KonqSidebarHistorySettings )
61 Q_SIGNALS:
62 // DBus signals
63 void notifySettingsChanged();
66 class KonqSidebarHistorySettingsAdaptor : public QDBusAbstractAdaptor
68 Q_OBJECT
69 Q_CLASSINFO("D-Bus Interface", "org.kde.Konqueror.SidebarHistorySettings")
70 public:
71 KonqSidebarHistorySettingsAdaptor( KonqSidebarHistorySettings* parent )
72 : QDBusAbstractAdaptor( parent ) {
73 setAutoRelaySignals( true );
76 Q_SIGNALS:
77 void notifySettingsChanged();
80 #endif // HISTORY_SETTINGS_H