/**************************************************************** * RetroShare is distributed under the following license: * * Copyright (C) 20011, RetroShare Team * * 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. * * 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., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. ****************************************************************/ #pragma once #include #include #include #include #include "util/TokenQueue.h" #include "RsAutoUpdatePage.h" #include "ui_GxsTransportStatistics.h" class GxsTransportStatisticsWidget ; class UIStateHelper; class RsGxsTransGroupStatistics: public GxsGroupStatistic { public: RsGxsTransGroupStatistics() {} bool subscribed ; int popularity ; }; class GxsTransportStatistics: public RsAutoUpdatePage, public TokenResponse, public Ui::GxsTransportStatistics { Q_OBJECT public: GxsTransportStatistics(QWidget *parent = NULL) ; ~GxsTransportStatistics(); // Cache for peer names. static QString getPeerName(const RsPeerId& peer_id) ; virtual void loadRequest(const TokenQueue *queue, const TokenRequest &req) ; void updateContent() ; private slots: /** Create the context popup menu and it's submenus */ void CustomPopupMenu( QPoint point ); void personDetails(); private: void loadGroupMeta(const uint32_t& token); void loadGroupStat(const uint32_t& token); void requestGroupMeta(); void requestGroupStat(const RsGxsGroupId &groupId); void processSettings(bool bLoad); bool m_bProcessSettings; virtual void updateDisplay() ; GxsTransportStatisticsWidget *_tst_CW ; TokenQueue *mTransQueue ; UIStateHelper *mStateHelper; uint32_t mLastGroupReqTS ; // temporary storage of retrieved data, for display (useful because this is obtained from the async token system) std::map mGroupStats ; // stores the list of active groups and statistics about each of them. } ;