You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
koffice/kugar/kudesigner_lib/command.h

184 lines
3.7 KiB

/* 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