summaryrefslogtreecommitdiffstats
path: root/konversation/src/watchednicknames_preferences.h
blob: 085a18ef1201197d680e308965b4e81aac9b1bb8 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.
*/

/*
  Copyright (C) 2006 Dario Abatianni <eisfuchs@tigress.com>
*/

#ifndef WATCHEDNICKNAMES_CONFIG_H
#define WATCHEDNICKNAMES_CONFIG_H

#include "konvisettingspage.h"
#include "servergroupsettings.h"
#include "watchednicknames_preferencesui.h"


class TQListView;
class TQListViewItem;

class WatchedNicknames_Config : public WatchedNicknames_ConfigUI, public KonviSettingsPage
{
    Q_OBJECT
  

    public:
        explicit WatchedNicknames_Config(TQWidget *parent = 0, const char *name = 0);
        ~WatchedNicknames_Config();

        virtual void saveSettings();
        virtual void loadSettings();
        virtual void restorePageToDefaults();

        virtual bool hasChanged();

    signals:
        void modified();

    protected slots:
        void checkIfEmptyListview(bool state);
        void newNotify();
        void removeNotify();
        void entrySelected(TQListViewItem* notifyEntry);
        void networkChanged(const TQString& newNetwork);
        void nicknameChanged(const TQString& newNickname);
        void updateNetworkNames();

    protected:
        void enableEditWidgets(bool enabled);
        TQStringList currentNotifyList();       // for hasChanged()
        void addNetworkBranch(Konversation::ServerGroupSettingsPtr group);
        TQListViewItem* getItemById(TQListView* listView,int id);

        bool newItemSelected;
        TQStringList m_oldNotifyList;
};

#endif