summaryrefslogtreecommitdiffstats
path: root/kopete/plugins/addbookmarks/addbookmarkspreferences.h
blob: 320940129fd3a8bd68fe747cf35e80140964ff5e (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 <tdecmodule.h>
#include "addbookmarksprefssettings.h"
#include "addbookmarksprefsui.h"

/**
@author Roie Kerstein <sf_kersteinroie@bezeqint.net>
*/
class BookmarksPreferences : public TDECModule
{
Q_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