d74f967e60ec4fc60923c4815f9de4d8903804d3
[quassel.git] / src / qtui / settingspages / coreaccountsettingspage.h
1 /***************************************************************************
2  *   Copyright (C) 2009 by the Quassel Project                             *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef COREACCOUNTSETTINGSPAGE_H_
22 #define COREACCOUNTSETTINGSPAGE_H_
23
24 #include <QSortFilterProxyModel>
25
26 #include "settingspage.h"
27
28 #include "coreaccount.h"
29
30 #include "ui_coreaccounteditdlg.h"
31 #include "ui_coreaccountsettingspage.h"
32
33 class CoreAccountModel;
34 class FilteredCoreAccountModel;
35
36 class CoreAccountSettingsPage : public SettingsPage {
37   Q_OBJECT
38
39   public:
40     CoreAccountSettingsPage(QWidget *parent = 0);
41
42     inline bool hasDefaults() const { return false; }
43     inline bool isStandAlone() const { return _standalone; }
44
45     AccountId selectedAccount() const;
46
47   public slots:
48     void save();
49     void load();
50
51     void setSelectedAccount(AccountId accId);
52     void setStandAlone(bool);
53
54 signals:
55     void connectToCore(AccountId accId);
56
57   private slots:
58     void on_addAccountButton_clicked();
59     void on_editAccountButton_clicked();
60     void on_deleteAccountButton_clicked();
61     void on_accountView_doubleClicked(const QModelIndex &index);
62
63     void setWidgetStates();
64
65     void rowsAboutToBeRemoved(const QModelIndex &index, int start, int end);
66     void rowsInserted(const QModelIndex &index, int start, int end);
67
68   private:
69     Ui::CoreAccountSettingsPage ui;
70
71     CoreAccountModel *_model;
72     inline CoreAccountModel *model() const { return _model; }
73     FilteredCoreAccountModel *_filteredModel;
74     inline FilteredCoreAccountModel *filteredModel() const { return _filteredModel; }
75
76     AccountId _lastAccountId, _lastAutoConnectId;
77     bool _standalone;
78
79     virtual QVariant loadAutoWidgetValue(const QString &widgetName);
80     virtual void saveAutoWidgetValue(const QString &widgetName, const QVariant &value);
81
82     void editAccount(const QModelIndex &);
83
84     void widgetHasChanged();
85     bool testHasChanged();
86
87     inline QString settingsKey() const { return QString("CoreAccounts"); }
88 };
89
90 // ========================================
91 //  CoreAccountEditDlg
92 // ========================================
93 class CoreAccountEditDlg : public QDialog {
94   Q_OBJECT
95
96 public:
97   CoreAccountEditDlg(const CoreAccount &account, QWidget *parent = 0);
98
99   CoreAccount account();
100
101 private slots:
102   void on_hostName_textChanged(const QString &);
103   void on_accountName_textChanged(const QString &);
104   void on_user_textChanged(const QString &);
105
106   void setWidgetStates();
107
108 private:
109   Ui::CoreAccountEditDlg ui;
110   CoreAccount _account;
111 };
112
113 // ========================================
114 //  FilteredCoreAccountModel
115 // ========================================
116
117 //! This filters out the internal account from the non-monolithic client's UI
118 class FilteredCoreAccountModel : public QSortFilterProxyModel {
119   Q_OBJECT
120
121 public:
122   FilteredCoreAccountModel(CoreAccountModel *model, QObject *parent = 0);
123
124 protected:
125   virtual bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
126
127 private:
128   AccountId _internalAccount;
129 };
130
131 #endif