summaryrefslogtreecommitdiffstats
path: root/plugins/stats/StatsSpd.h
blob: 4f7516155c14a6d95923a53783d79c9c7f0c50b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/***************************************************************************
 *   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 STATSSPD_H_
#define STATSSPD_H_

#include <tqwidget.h>
#include <tqlayout.h>
#include <tqtabwidget.h>
#include <tqgroupbox.h>

#include "statspluginsettings.h"
#include "statsspdwgt.h"
#include "ChartDrawer.h"

namespace kt {

/**
\brief Main widget of stats plugin
\author Krzysztof Kundzicz <athantor@gmail.com>
*/
class StatsSpd : public StatsSpdWgt
{	
	Q_OBJECT
  
	
	private:
		///Layout of upload speed
		TQVBoxLayout * pmUSpdLay;
		///Layout of down speed
		TQVBoxLayout * pmDSpdLay;
		///Layout of peers speed
		TQVBoxLayout * pmPeersSpdLay;
		
		///Chart widget of download speed
		ChartDrawer * pmDownCht;
		///Chart widget of peers speed
		ChartDrawer * pmPeersSpdCht;
		///Chart widget of upload speed
		ChartDrawer * pmUpCht;

	public:
		/**
		\brief Constructor
		\param p Parent
		*/
		StatsSpd(TQWidget *p = 0);
		///Destructor
		virtual ~StatsSpd();
		
		/**
		\brief Adds value to upload speed chart
		\param idx Dataset index
		\param val Value
		**/
		void AddUpSpdVal(const size_t idx, const double val);
		/**
		\brief Adds value to download speed chart
		\param idx Dataset index
		\param val Value
		**/
		void AddDownSpdVal(const size_t idx, const double val);
		/**
		\brief Adds value to peers speed chart
		\param idx Dataset index
		\param val Value
		**/
		void AddPeersSpdVal(const size_t idx, const double val);
		/**
		\brief Changes download chart's measurments count
		\param cnt Measurements
		*/
		void ChangeDownMsmtCnt(const size_t cnt);
		/**
		\brief Changes peers speed chart's measurments count
		\param cnt Measurements
		*/
		void ChangePrsSpdMsmtCnt(const size_t cnt);
		/**
		\brief Changes upload chart's measurments count
		\param cnt Measurements
		*/
		void ChangeUpMsmtCnt(const size_t cnt);
		/**
		\brief Changes charts OY axis maximum mode
		\param mm Mode
		*/
		void ChangeChartsMaxMode(const ChartDrawer::MaxMode mm);
	
	public slots:
		///Updates charts
		void UpdateCharts();
};

}

#endif