summaryrefslogtreecommitdiffstats
path: root/kugar/kudesigner_lib/command.h
blob: a49ebb8964529e43aac4d4e504ce6a09f33d5c37 (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
/* This file is part of the KDE project
 Copyright (C) 2002-2004 Alexander Dymo <adymo@mksat.net>

 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Library General Public
 License as published by the Free Software Foundation; either
 version 2 of the License, or (at your option) any later version.

 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Library General Public License for more details.

 You should have received a copy of the GNU Library General Public License
 along with this library; see the file COPYING.LIB.  If not, write to
 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/
#ifndef COMMAND_H
#define COMMAND_H

#include <kcommand.h>
#include "commdefs.h"

/*    void slotAddDetailFooter();
    void slotAddDetail();
    void slotAddDetailHeader();
    void slotAddPageFooter();
    void slotAddPageHeader();
    void slotAddReportFooter();
    void slotAddReportHeader();
    void slotAddItemLine();
    void slotAddItemCalculated();
    void slotAddItemSpecial();
    void slotAddItemField();
    void slotAddItemLabel();*/

//class KudesignerDoc;

namespace Kudesigner
{

class DetailFooter;
class Detail;
class DetailHeader;
class PageFooter;
class PageHeader;
class ReportFooter;
class ReportHeader;
class Band;
class ReportItem;
class View;
class Canvas;
class Box;

class AddDetailFooterCommand: public KNamedCommand
{
public:
    AddDetailFooterCommand( int level, Canvas *doc );

    virtual void execute();
    virtual void unexecute();

private:
    int m_level;
    Canvas *m_doc;
    DetailFooter *m_section;
};

class AddDetailCommand: public KNamedCommand
{
public:
    AddDetailCommand( int level, Canvas *doc );

    virtual void execute();
    virtual void unexecute();

private:
    int m_level;
    Canvas *m_doc;
    Detail *m_section;
};

class AddDetailHeaderCommand: public KNamedCommand
{
public:
    AddDetailHeaderCommand( int level, Canvas *doc );

    virtual void execute();
    virtual void unexecute();

private:
    int m_level;
    Canvas *m_doc;
    DetailHeader *m_section;
};

class AddPageFooterCommand: public KNamedCommand
{
public:
    AddPageFooterCommand( Canvas *doc );

    virtual void execute();
    virtual void unexecute();

private:
    Canvas *m_doc;
    PageFooter *m_section;
};

class AddPageHeaderCommand: public KNamedCommand
{
public:
    AddPageHeaderCommand( Canvas *doc );

    virtual void execute();
    virtual void unexecute();

private:
    Canvas *m_doc;
    PageHeader *m_section;
};

class AddReportFooterCommand: public KNamedCommand
{
public:
    AddReportFooterCommand( Canvas *doc );

    virtual void execute();
    virtual void unexecute();

private:
    Canvas *m_doc;
    ReportFooter *m_section;
};

class AddReportHeaderCommand: public KNamedCommand
{
public:
    AddReportHeaderCommand( Canvas *doc );

    virtual void execute();
    virtual void unexecute();

private:
    Canvas *m_doc;
    ReportHeader *m_section;
};

class AddReportItemCommand: public KNamedCommand
{
public:
    AddReportItemCommand( Canvas *doc, View *rc, int x, int y, RttiValues section, int sectionLevel = -1 );

    virtual void execute();
    virtual void unexecute();

private:
    int m_rtti;
    Canvas *m_doc;
    View *m_rc;
    int m_x;
    int m_y;
    ReportItem *m_item;
    RttiValues m_section;
    int m_sectionLevel;
};

class DeleteReportItemsCommand: public KNamedCommand
{
public:
    DeleteReportItemsCommand( Canvas *doc, TQValueList<Box*>& items );
    virtual void execute();
    virtual void unexecute();

private:
    Canvas *m_doc;
    TQValueList<Box*> m_items;
};

}

#endif