blob: 6f70eb4034c833a374c8cf0fd1dac0828785de85 (
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
|
/***************************************************************************
qlcdstring.h - description
-------------------
begin : Sat Jul 21 2001
copyright : (C) 2001 by Michael
email : [email protected]
***************************************************************************/
/***************************************************************************
* *
* 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 TQLCDSTRING_H
#define TQLCDSTRING_H
#include <tqframe.h>
#include <tqpainter.h>
#include <tqcolor.h>
#include <tqstring.h>
#include "qlcddraw.h"
/**
*@author Miguel Novas
*/
#include <tqpalette.h>
class TQLCDString : public TQWidget {
TQ_OBJECT
public:
enum Align {
alignLeft = 0x0000,
alignCenter = 0x0001,
alignRight = 0x0002,
alignJustify= 0x0003
};
TQLCDString( TQWidget *parent=0, const char *name=0 );
~TQLCDString();
void display( const TQString &str );
void setShadow(bool enable);
bool getShadow() { return (bool)(options & TQLcd::drawShadow); };
void setAlign(Align newAlign);
void setForeColor(const TQColor &fore);
void setShadowColor(const TQColor &sha);
void setNumberDisplay(bool enable);
const TQColor& foreColor();
const TQColor& shadowColor();
protected:
void resizeEvent( TQResizeEvent *);
void paintEvent ( TQPaintEvent *);
private:
TQString digitStr;
int options;
TQColor forColor,shaColor;
};
#endif
|