From 9ad5c7b5e23b4940e7a3ea3ca3a6fb77e6a8fab0 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 20 Jan 2010 02:37:40 +0000 Subject: Updated to final KDE3 ktorrent release (2.2.6) git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktorrent@1077377 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- plugins/stats/statsplugin.h | 153 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 153 insertions(+) create mode 100644 plugins/stats/statsplugin.h (limited to 'plugins/stats/statsplugin.h') diff --git a/plugins/stats/statsplugin.h b/plugins/stats/statsplugin.h new file mode 100644 index 0000000..14f1fcd --- /dev/null +++ b/plugins/stats/statsplugin.h @@ -0,0 +1,153 @@ +/*************************************************************************** + * Copyright © 2007 by Krzysztof Kundzicz * + * athantor@gmail.com * + * * + * 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., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef StatsPlugin_H_ +#define StatsPlugin_H_ + +#include + +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "StatsSpd.h" +#include "StatsCon.h" +#include "StatsPluginPrefs.h" +#include "statspluginsettings.h" +#include // std::pair + +namespace kt { + +/** +\brief Statistics plugin +\author Krzysztof Kundzicz +\version 200705191548 +*/ +class StatsPlugin : public Plugin +{ + Q_OBJECT + + private: + ///Speed UI of the plugin + StatsSpd * pmUiSpd; + ///Connections UI of the plugin + StatsCon * pmUiCon; + ///UI of the pref page + StatsPluginPrefs * pmPrefsUi; + /** + \brief Average upload speed data + + \li \c first: Total speed + \li \c second: Measurements count + */ + std::pair mUpAvg; + /** + \brief Average download speed data + + \li \c first: Total speed + \li \c second: Measurements count + */ + std::pair mDownAvg; + /** + \brief Leechers stats + + \li \c first: connected + \li \c second: swarm + */ + std::pair mLeechAvg; + /** + \brief Leechers stats on running torrents + + \li \c first: connected + \li \c second: swarm + */ + std::pair mRunningLeechAvg; + /** + \brief Seeders stats + + \li \c first: connected + \li \c second: swarm + */ + std::pair mSeedAvg; + /** + \brief Seeders stats on running torrents + + \li \c first: connected + \li \c second: swarm + */ + std::pair mRunningSeedAvg; + + ///Data update timer + QTimer * pmUpdTmr; + + ///Update ctr + uint32_t mUpdCtr; + uint32_t mPeerSpdUpdCtr; + + private slots: + ///Updates stat data + void UpdateData(); + /** + \brief Restarts timer + + Restarts timer when the interval of data gathering has been changed + */ + void RestartTimer(); + ///Toggles peers speed chart + void TogglePeersSpdCht(); + ///Toggles drawing of total leechers in swarms + void ToggleLchInSwmDrawing(); + ///Toggles drawing of total seeders in swarms + void ToggleSdrInSwmDrawing(); + ///Changes measurements counts + void ChangeMsmtsCounts(); + ///Changes OY max mode + void ChangeMaxMode(); + + public: + /** + \brief Constructor + \param parent Parent + \param qt_name + \param args + */ + StatsPlugin(QObject* parent, const char* qt_name, const QStringList& args); + ///Destructor + virtual ~StatsPlugin(); + + virtual void load(); + virtual void unload(); + virtual bool versionCheck(const QString&) const; + virtual void guiUpdate(); +}; + +} + +#endif + -- cgit v1.2.1