blob: f96e411acba019df031c850a91d20b92c53fe579 (
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
|
/***************************************************************************
* *
* KCPULoad is copyright (c) 1999-2000, Markus Gustavsson *
* (c) 2002, Ben Burton *
* *
* 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. *
* *
***************************************************************************/
#ifndef __KCPUDOCK_H
#define __KCPUDOCK_H
#include "statdock.h"
/**
* A KCPULoad system tray window for a specific CPU.
*/
class KCPUDock : public StatDock {
public:
/**
* Constructor.
*/
KCPUDock(int whichDock, StatPopup *parent = 0, const char *name = 0);
/**
* Sets the label for this diagram. The label will reflect which
* CPU the diagram represents.
*
* If multiple CPUs are not used, argument cpu should be 0.
* Otherwise argument cpu should be 1 or 2 for the first or second
* CPU respectively.
*/
void setCPULabel(int cpu);
};
#endif
|