X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoresession.h;h=ce64b090bf5369e793a2159768e728a9c21dc951;hb=fe1fec5e5f0799e03f6a3473dc56511bc00f26eb;hp=009a2ef20ced28e8dbb2f8bd8738b2d75e05ae8f;hpb=902c95728306e5ba115de84800fc8d5d239c9d62;p=quassel.git diff --git a/src/core/coresession.h b/src/core/coresession.h index 009a2ef2..ce64b090 100644 --- a/src/core/coresession.h +++ b/src/core/coresession.h @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005-07 by The Quassel IRC Development Team * + * Copyright (C) 2005-07 by the Quassel IRC Team * * 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) any later version. * + * (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 * @@ -38,18 +38,22 @@ public: CoreSession(UserId, Storage *, QObject *parent = 0); virtual ~CoreSession(); - uint getNetworkId(const QString &network) const; + NetworkId getNetworkId(const QString &network) const; QList buffers() const; UserId userId() const; QVariant sessionState(); //! Retrieve a piece of session-wide data. QVariant retrieveSessionData(const QString &key, const QVariant &def = QVariant()); - + SignalProxy *signalProxy() const; - + void attachServer(Server *server); - + + //! Return necessary data for restoring the session after restarting the core + QVariant state() const; + void restoreState(const QVariant &previousState); + public slots: //! Store a piece session-wide data and distribute it to connected clients. void storeSessionData(const QString &key, const QVariant &data); @@ -57,18 +61,19 @@ public slots: void serverStateRequested(); void addClient(QIODevice *connection); - - void connectToNetwork(QString); - + + void connectToNetwork(QString, const QVariant &previousState = QVariant()); + //void connectToNetwork(NetworkId); + //void processSignal(ClientSignal, QVariant, QVariant, QVariant); void sendBacklog(BufferInfo, QVariant, QVariant); void msgFromGui(BufferInfo, QString message); - + signals: void msgFromGui(uint netid, QString buf, QString message); void displayMsg(Message message); void displayStatusMsg(QString, QString); - + void connectToIrc(QString net); void disconnectFromIrc(QString net); @@ -89,7 +94,7 @@ private: SignalProxy *_signalProxy; Storage *storage; - QHash servers; + QHash servers; QVariantMap sessionData; QMutex mutex;