Ignorelist settingspage
[quassel.git] / src / qtui / settingspages / ignorelistsettingspage.h
diff --git a/src/qtui/settingspages/ignorelistsettingspage.h b/src/qtui/settingspages/ignorelistsettingspage.h
new file mode 100644 (file)
index 0000000..646b95b
--- /dev/null
@@ -0,0 +1,93 @@
+/***************************************************************************
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
+ *   devel@quassel-irc.org                                                 *
+ *                                                                         *
+ *   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) version 3.                                           *
+ *                                                                         *
+ *   This program is distributed in the hope that it will be useful,       *
+ *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
+ *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
+ *   GNU General Public License for more details.                          *
+ *                                                                         *
+ *   You should have received a copy of the GNU General Public License     *
+ *   along with this program; if not, write to the                         *
+ *   Free Software Foundation, Inc.,                                       *
+ *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ ***************************************************************************/
+
+#ifndef IGNORELISTSETTINGSPAGE_H
+#define IGNORELISTSETTINGSPAGE_H
+
+#include <QStyledItemDelegate>
+
+#include "settingspage.h"
+#include "ui_ignorelistsettingspage.h"
+#include "ui_ignorelisteditdlg.h"
+#include "ignorelistmodel.h"
+#include "clientignorelistmanager.h"
+
+class QEvent;
+class QPainter;
+class QAbstractItemModel;
+
+// the delegate is used to draw the checkbox in column 0
+class IgnoreListDelegate : public QStyledItemDelegate {
+  Q_OBJECT
+
+public:
+  IgnoreListDelegate(QWidget *parent = 0) : QStyledItemDelegate(parent) {}
+  void paint(QPainter *painter, const QStyleOptionViewItem &option,
+             const QModelIndex &index) const;
+  bool editorEvent(QEvent *event, QAbstractItemModel *model, const QStyleOptionViewItem &option,
+                   const QModelIndex &index);
+};
+
+class IgnoreListEditDlg : public QDialog {
+  Q_OBJECT
+
+public:
+  IgnoreListEditDlg(int row, const IgnoreListManager::IgnoreListItem &item, QWidget *parent = 0);
+  inline IgnoreListManager::IgnoreListItem ignoreListItem() { return _ignoreListItem; }
+
+private slots:
+  void widgetHasChanged();
+  void aboutToAccept() { _ignoreListItem = _clonedIgnoreListItem; }
+private:
+  int _selectedRow;
+  IgnoreListManager::IgnoreListItem _ignoreListItem;
+  IgnoreListManager::IgnoreListItem _clonedIgnoreListItem;
+  bool _hasChanged;
+  Ui::IgnoreListEditDlg ui;
+};
+
+class IgnoreListSettingsPage : public SettingsPage {
+  Q_OBJECT
+
+public:
+  IgnoreListSettingsPage(QWidget *parent = 0);
+  ~IgnoreListSettingsPage();
+  virtual inline bool hasDefaults() const { return true; }
+
+public slots:
+  void save();
+  void load();
+  void defaults();
+
+private slots:
+  void enableDialog(bool);
+  void deleteSelectedIgnoreRule();
+  void editSelectedIgnoreRule();
+  void newIgnoreRule();
+  void selectionChanged(const QItemSelection &selection, const QItemSelection &);
+
+private:
+  IgnoreListDelegate *_delegate;
+  Ui::IgnoreListSettingsPage ui;
+  IgnoreListModel _ignoreListModel;
+};
+
+
+#endif //IGNORELISTSETTINGSPAGE_H