summaryrefslogtreecommitdiffstats
path: root/kugar/lib/mreportobject.cpp
blob: 7a9366f6ab727536fc3f718a78a27474dc5dc917 (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/***************************************************************************
             mreportobject.cpp  -  Kugar report object baseclass
             -------------------
   begin     : Wed Aug 11 1999
   copyright : (C) 1999 by Mutiny Bay Software
   email     : info@mutinybaysoftware.com
   copyright : (C) 2004 Alexander Dymo
   email     : cloudtemple@mksat.net
***************************************************************************/

#include "mreportobject.h"

namespace Kugar
{

/** Constructor */
MReportObject::MReportObject() : TQObject()
{
    // Set the object's default geometry
    xpos = 0;
    ypos = 0;
    width = 40;
    height = 23;

    // Set the object's default colors
    backgroundColor.setRgb( 255, 255, 255 );
    foregroundColor.setRgb( 0, 0, 0 );

    // Set the object's default border attributes
    borderColor.setRgb( 0, 0, 0 );
    borderWidth = 1;
    borderStyle = MReportObject::SolidLine;

    drawLeft = true;
    drawRight = true;
    drawTop = true;
    drawBottom = true;
}

/** Copy constructor */
MReportObject::MReportObject( const MReportObject& mReportObject )  /*: TQObject((TQObject &) mReportObject)*/
{
    copy( &mReportObject );
}

/** Assignment operator */
MReportObject MReportObject::operator=( const MReportObject& mReportObject )
{
    if ( &mReportObject == this )
        return * this;

    // Copy the derived class's data
    copy( &mReportObject );

    // Copy the base class's data
    //((TQObject &) *this) = mReportObject;

    return *this;
}

/** Destructor */
MReportObject::~MReportObject()
{}

/** Draws the object to the specified painter & x/y offsets */
void MReportObject::draw( TQPainter* p, int xoffset, int yoffset )
{
    drawBase( p, xoffset, yoffset );
}

/** Draws the base object to the specified painter & x/y offsets */
void MReportObject::drawBase( TQPainter* p, int xoffset, int yoffset )
{
    TQBrush bgBrush( backgroundColor );
    TQPen borderPen( borderColor, borderWidth, ( TQPen::PenStyle ) borderStyle );

    // Set the offsets
    int xcalc = xpos + xoffset;
    int ycalc = ypos + yoffset;

    // Set background in specified color
    p->setBrush( bgBrush );
    p->setPen( TQt::NoPen );
    p->drawRect( xcalc, ycalc, width, height );

    // Set border
    if ( borderStyle != 0 )
    {
        p->setPen( borderPen );
        if ( drawLeft )
            p->drawLine( xcalc, ycalc, xcalc, ycalc + height );
        if ( drawRight )
            p->drawLine( xcalc + width, ycalc, xcalc + width, ycalc + height );
        if ( drawTop )
            p->drawLine( xcalc, ycalc, xcalc + width, ycalc );
        if ( drawBottom )
            p->drawLine( xcalc, ycalc + height, xcalc + width, ycalc + height );
        //    p->drawRect(xcalc, ycalc, width, height);
    }
    else
    {
        p->setPen( TQPen( TQColor( 255, 255, 255 ), 1, TQPen::SolidLine ) );
        p->drawRect( xcalc, ycalc, width, height );
    }
}

/** Set the object's position and size */
void MReportObject::setGeometry( int x, int y, int w, int h )
{
    xpos = x;
    ypos = y;
    width = w;
    height = h;
}

/** Set the object's position */
void MReportObject::move( int x, int y )
{
    xpos = x;
    ypos = y;
}

/** Gets the object's x position */
int MReportObject::getX()
{
    return xpos;
}

/** Gets the object's y position */
int MReportObject::getY()
{
    return ypos;
}

/** Sets the object's background color */
void MReportObject::setBackgroundColor( int r, int g, int b )
{
    backgroundColor.setRgb( r, g, b );
}

/** Sets the object's foreground color */
void MReportObject::setForegroundColor( int r, int g, int b )
{
    foregroundColor.setRgb( r, g, b );
}

/** Sets the object's border color */
void MReportObject::setBorderColor( int r, int g, int b )
{
    borderColor.setRgb( r, g, b );
}

/** Sets the object's border width */
void MReportObject::setBorderWidth( int width )
{
    borderWidth = width;
}

/** Sets the object's border style */
void MReportObject::setBorderStyle( int style )
{
    borderStyle = style;
}

/** Copies member data from one object to another.
    Used by the copy constructor and assignment operator */
void MReportObject::copy( const MReportObject* mReportObject )
{
    // Copy the object's geometry
    xpos = mReportObject->xpos;
    ypos = mReportObject->ypos;
    width = mReportObject->width;
    height = mReportObject->height;

    // Copy the colors
    backgroundColor = mReportObject->backgroundColor;
    foregroundColor = mReportObject->foregroundColor;

    // Copy the border attributes
    borderColor = mReportObject->borderColor;
    borderWidth = mReportObject->borderWidth;
    borderStyle = mReportObject->borderStyle;
}

bool MReportObject::getDrawLeft( )
{
    return drawLeft;
}

bool MReportObject::getDrawRight( )
{
    return drawRight;
}

bool MReportObject::getDrawTop( )
{
    return drawTop;
}

bool MReportObject::getDrawBottom( )
{
    return drawBottom;
}

void MReportObject::setDrawLeft( bool d )
{
    drawLeft = d;
}

void MReportObject::setDrawRight( bool d )
{
    drawRight = d;
}

void MReportObject::setDrawTop( bool d )
{
    drawTop = d;
}

void MReportObject::setDrawBottom( bool d )
{
    drawBottom = d;
}

}