blob: ad9a6fb8b330cd392e75aa24c735ce463332a71f (
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
46
|
//
// 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
TQ_OBJECT
public:
BookmarksPreferences(TQWidget *parent = 0, const char *name = 0, const TQStringList &args = TQStringList());
~BookmarksPreferences();
virtual void load();
virtual void save();
signals:
void PreferencesChanged();
private:
BookmarksPrefsUI *p_dialog;
BookmarksPrefsSettings m_settings;
private slots:
void slotSetStatusChanged();
void slotAddUntrustedChanged();
};
#endif
|