correct tab order for the settingspages
[quassel.git] / src / qtui / settingspages / coreaccountsettingspage.h
index e552a0b..f28e01f 100644 (file)
@@ -21,6 +21,8 @@
 #ifndef COREACCOUNTSETTINGSPAGE_H_
 #define COREACCOUNTSETTINGSPAGE_H_
 
+#include <QSortFilterProxyModel>
+
 #include "settingspage.h"
 
 #include "coreaccount.h"
@@ -29,6 +31,7 @@
 #include "ui_coreaccountsettingspage.h"
 
 class CoreAccountModel;
+class FilteredCoreAccountModel;
 
 class CoreAccountSettingsPage : public SettingsPage {
   Q_OBJECT
@@ -36,18 +39,29 @@ class CoreAccountSettingsPage : public SettingsPage {
   public:
     CoreAccountSettingsPage(QWidget *parent = 0);
 
-    virtual inline bool hasDefaults() const { return false; }
+    inline bool hasDefaults() const { return false; }
+    inline bool isStandAlone() const { return _standalone; }
+
+    AccountId selectedAccount() const;
 
   public slots:
     void save();
     void load();
 
+    void setSelectedAccount(AccountId accId);
+    void setStandAlone(bool);
+
+signals:
+    void connectToCore(AccountId accId);
+
   private slots:
     void on_addAccountButton_clicked();
     void on_editAccountButton_clicked();
     void on_deleteAccountButton_clicked();
+    void on_accountView_doubleClicked(const QModelIndex &index);
 
     void setWidgetStates();
+    void widgetHasChanged();
 
     void rowsAboutToBeRemoved(const QModelIndex &index, int start, int end);
     void rowsInserted(const QModelIndex &index, int start, int end);
@@ -57,13 +71,14 @@ class CoreAccountSettingsPage : public SettingsPage {
 
     CoreAccountModel *_model;
     inline CoreAccountModel *model() const { return _model; }
+    FilteredCoreAccountModel *_filteredModel;
+    inline FilteredCoreAccountModel *filteredModel() const { return _filteredModel; }
 
     AccountId _lastAccountId, _lastAutoConnectId;
+    bool _standalone;
 
-    virtual QVariant loadAutoWidgetValue(const QString &widgetName);
-    virtual void saveAutoWidgetValue(const QString &widgetName, const QVariant &value);
+    void editAccount(const QModelIndex &);
 
-    void widgetHasChanged();
     bool testHasChanged();
 
     inline QString settingsKey() const { return QString("CoreAccounts"); }
@@ -92,4 +107,22 @@ private:
   CoreAccount _account;
 };
 
+// ========================================
+//  FilteredCoreAccountModel
+// ========================================
+
+//! This filters out the internal account from the non-monolithic client's UI
+class FilteredCoreAccountModel : public QSortFilterProxyModel {
+  Q_OBJECT
+
+public:
+  FilteredCoreAccountModel(CoreAccountModel *model, QObject *parent = 0);
+
+protected:
+  virtual bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
+
+private:
+  AccountId _internalAccount;
+};
+
 #endif