Query state (offline / online / away) is now properly indicated with an icon.
[quassel.git] / src / uisupport / bufferviewfilter.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 BUFFERVIEWFILTER_H_
22 #define BUFFERVIEWFILTER_H_
23
24 #include <QColor>
25 #include <QDropEvent>
26 #include <QFlags>
27 #include <QPixmap>
28 #include <QPointer>
29 #include <QSet>
30 #include <QSortFilterProxyModel>
31
32 #include "types.h"
33 #include "bufferviewconfig.h"
34
35 /*****************************************
36  * Buffer View Filter
37  *****************************************/
38 class BufferViewFilter : public QSortFilterProxyModel {
39   Q_OBJECT
40   
41 public:
42   enum Mode {
43     NoActive = 0x01,
44     NoInactive = 0x02,
45     SomeNets = 0x04,
46     AllNets = 0x08,
47     NoChannels = 0x10,
48     NoQueries = 0x20,
49     NoServers = 0x40,
50     FullCustom = 0x80
51   };
52   Q_DECLARE_FLAGS(Modes, Mode)
53
54   BufferViewFilter(QAbstractItemModel *model, BufferViewConfig *config = 0);
55   
56   virtual Qt::ItemFlags flags(const QModelIndex &index) const;
57   virtual bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent);
58
59   QVariant data(const QModelIndex &index, int role) const;
60   QVariant icon(const QModelIndex &index) const;
61   QVariant foreground(const QModelIndex &index) const;
62
63   void setConfig(BufferViewConfig *config);
64   inline BufferViewConfig *config() const { return _config; }
65
66   virtual void sort(int column, Qt::SortOrder order = Qt::AscendingOrder);
67                                                                          
68 public slots:
69   void checkPreviousCurrentForRemoval(const QModelIndex &current, const QModelIndex &previous);
70   void checkItemForRemoval(const QModelIndex &index) { checkItemsForRemoval(index, index); }
71   void checkItemsForRemoval(const QModelIndex &topLeft, const QModelIndex &bottomRight);
72   
73 protected:
74   bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const;
75   bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const;
76   bool bufferLessThan(const QModelIndex &source_left, const QModelIndex &source_right) const;
77   bool networkLessThan(const QModelIndex &source_left, const QModelIndex &source_right) const;
78   virtual void customEvent(QEvent *event);
79
80 signals:
81   void _dataChanged(const QModelIndex &source_topLeft, const QModelIndex &source_bottomRight);
82   void configChanged();
83
84 private slots:
85   void configInitialized();
86     
87 private:
88   QPointer<BufferViewConfig> _config;
89   Qt::SortOrder _sortOrder;
90   
91   QColor _FgColorInactiveActivity;
92   QColor _FgColorNoActivity;
93   QColor _FgColorHighlightActivity;
94   QColor _FgColorNewMessageActivity;
95   QColor _FgColorOtherActivity;
96
97   QPixmap _userOfflineIcon;
98   QPixmap _userAwayIcon;
99   QPixmap _userOnlineIcon;
100
101   void loadColors();
102
103   bool filterAcceptBuffer(const QModelIndex &) const;
104   bool filterAcceptNetwork(const QModelIndex &) const;
105   void addBuffer(const BufferId &) const;
106 };
107 Q_DECLARE_OPERATORS_FOR_FLAGS(BufferViewFilter::Modes)    
108
109 bool bufferIdLessThan(const BufferId &, const BufferId &);
110
111 #endif // BUFFERVIEWFILTER_H_