blob: b4914251314656b9a8c0ffa3fcfdd98163ccaa83 (
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
|
#ifndef __textpreview_h__
#define __textpreview_h__
#include <tqframe.h>
#include "global.h"
class KPrTextPreview : public TQFrame
{
Q_OBJECT
TQ_OBJECT
public:
KPrTextPreview( TQWidget* tqparent, const char* name = 0 );
~KPrTextPreview() {}
void setShadowDirection( ShadowDirection sd ) { shadowDirection = sd; tqrepaint( true ); }
void setShadowDistance( int sd ) { shadowDistance = sd; tqrepaint( true ); }
void setShadowColor( const TQColor &sc ) { shadowColor = sc; tqrepaint( true ); }
void setAngle( double a ) { angle = a; tqrepaint( true ); }
protected:
void drawContents( TQPainter* );
ShadowDirection shadowDirection;
int shadowDistance;
TQColor shadowColor;
double angle;
};
#endif
|