blob: 7a9d5bff7b7480dffa4eeee2181ea236ecd84f9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
//
// C++ Interface: %{MODULE}
//
// Description:
//
//
// Author: Roie Kerstein <sf_kersteinroie@bezeqint.net>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef ADDBOOKMARKSPREFERENCES_H
#define ADDBOOKMARKSPREFERENCES_H
#include <kcmodule.h>
#include "addbookmarksprefssettings.h"
#include "addbookmarksprefsui.h"
/**
@author Roie Kerstein <sf_kersteinroie@bezeqint.net>
*/
class BookmarksPreferences : public KCModule
{
Q_OBJECT
public:
BookmarksPreferences(QWidget *parent = 0, const char *name = 0, const QStringList &args = QStringList());
~BookmarksPreferences();
virtual void load();
virtual void save();
signals:
void PreferencesChanged();
private:
BookmarksPrefsUI *p_dialog;
BookmarksPrefsSettings m_settings;
private slots:
void slotSetStatusChanged();
void slotAddUntrustedChanged();
};
#endif
|