summaryrefslogtreecommitdiffstats
path: root/src/lmsensordockpanel.h
blob: 9293d8df585681abb8e11e5de70f7e0f4686eda6 (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
/***************************************************************************
                          lmsensordockpanel.h  -  description
                             -------------------
    begin                : Tue Sep 18 2001
    copyright            : (C) 2001 by Miguel Novas
    email                : michaell@teleline.es
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 LMSENSORDOCKPANEL_H
#define LMSENSORDOCKPANEL_H


#include <ksystemtray.h>
#include <tdepopupmenu.h>
#include <tqcolor.h>

#include "qlcddraw.h"

#include "sensor.h"


/**
  *@author Miguel Novas
  */

class LMSensorDockPanel : public KSystemTray  {
TQ_OBJECT
public:
	LMSensorDockPanel(Sensor *newSensor=0, const char *name=0);
	~LMSensorDockPanel();

  static void   writeColorAlarm (const char *name, const TQColor &color);
  static void   writeColorNormal(const char *name, const TQColor &color);
  static void   writeShowInDock (const char *name, bool fShow);

  static TQColor readColorAlarm (const char *name);
  static TQColor readColorNormal(const char *name);
  static bool   readShowInDock (const char *name);

public slots:

  void setValue(double value);
  void updateConfig();

signals:

  void mouseEvent(TQMouseEvent *e);

protected:

  void paintEvent ( TQPaintEvent * );
  void mousePressEvent ( TQMouseEvent * );
  void mouseReleaseEvent ( TQMouseEvent * );

private:

  Sensor *sensor;
  TQString  strValue;
  TQColor colorNormal,colorAlarm;

};

#endif