included qca2 into build system
[quassel.git] / src / client / messagefilter.h
index d231030..f8e85a5 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel Project                          *
+ *   Copyright (C) 2005-09 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -49,6 +49,8 @@ public slots:
   void messageTypeFilterChanged();
   void messageRedirectionChanged();
   void requestBacklog();
+  // redefined as public slot
+  void invalidateFilter() { QSortFilterProxyModel::invalidateFilter(); }
 
 protected:
   QString bufferName() const { return Client::networkModel()->bufferName(singleBufferId()); }
@@ -59,21 +61,12 @@ private:
   void init();
 
   QSet<BufferId> _validBuffers;
-  mutable QSet<MsgId> _redirectedMsgs;
   QMultiHash<QString, uint> _filteredQuitMsgs;
   int _messageTypeFilter;
 
-  bool _userNoticesInDefaultBuffer;
-  bool _userNoticesInStatusBuffer;
-  bool _userNoticesInCurrentBuffer;
-
-  bool _serverNoticesInDefaultBuffer;
-  bool _serverNoticesInStatusBuffer;
-  bool _serverNoticesInCurrentBuffer;
-
-  bool _errorMsgsInDefaultBuffer;
-  bool _errorMsgsInStatusBuffer;
-  bool _errorMsgsInCurrentBuffer;
+  int _userNoticesTarget;
+  int _serverNoticesTarget;
+  int _errorMsgsTarget;
 };
 
 #endif