Fix and install smb2rdc action
[kdenetwork.git] / kget / plasma / applet / speedgraph.h
blob14b1d44d2f3b5c329d41835c4992632e12ccb3c1
1 /***************************************************************************
2 * *
3 * This program is free software; you can redistribute it and/or modify *
4 * it under the terms of the GNU General Public License as published by *
5 * the Free Software Foundation; either version 2 of the License, or *
6 * (at your option) any later version. *
8 * Copyright (C) 2007 by Javier Goday <jgoday@gmail.com>
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
19 ***************************************************************************/
21 #ifndef SPEEDGRAPH_H
22 #define SPEEDGRAPH_H
24 #include "transfergraph.h"
26 static const int MAX_ITEMS = 10;
27 static const int GRAPH_HEIGHT = 200;
29 class LineGraphWidget;
30 namespace Plasma {
31 class BoxLayout;
32 class Label;
35 class SpeedGraph : public TransferGraph
37 Q_OBJECT
39 public:
40 SpeedGraph(Plasma::Applet *parent);
41 ~SpeedGraph();
43 void setTransfers(const QVariantMap &percents);
45 private slots:
46 void updateGeometry();
48 private:
49 Plasma::BoxLayout *m_layout;
50 LineGraphWidget *m_lineGraph;
51 Plasma::Label *m_label;
54 #endif