X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fnetworkmodel.h;h=868de0bdd4f3dbcefcd6aaeb165aa4df67d5c47c;hb=5910ce5b98f8752002a6a26199eac9a3c10cb9e7;hp=c678bae327b9a3d0c22e66d71d519aeb481a78f6;hpb=e1d4e2bf7c368d84d853f33e5f55a72945cc7f6a;p=quassel.git diff --git a/src/client/networkmodel.h b/src/client/networkmodel.h index c678bae3..868de0bd 100644 --- a/src/client/networkmodel.h +++ b/src/client/networkmodel.h @@ -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 * @@ -28,6 +28,7 @@ #include "treemodel.h" class BufferItem; +class StatusBufferItem; /***************************************** * Network Items @@ -64,8 +65,15 @@ public slots: void attachIrcChannel(IrcChannel *channel); void attachIrcUser(IrcUser *ircUser); +signals: + void networkDataChanged(int column = -1); + +private slots: + void onBeginRemoveChilds(int start, int end); + private: NetworkId _networkId; + StatusBufferItem *_statusBufferItem; QPointer _network; };