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.
tdesdk/umbrello/umbrello/dialogs/diagramprintpage.h

103 lines
3.0 KiB

/***************************************************************************
* *
* 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. *
* *
* copyright (C) 2002-2006 *
* Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
***************************************************************************/
#ifndef DIAGRAMPRINTPAGE_H
#define DIAGRAMPRINTPAGE_H
class TQListBox;
class TQRadioButton;
class TQComboBox;
class TQButtonGroup;
class TQGroupBox;
#include <tdeprint/kprintdialogpage.h>
#include "../umldoc.h"
#include "../umlview.h"
/**
* This is a page on the print dialog to select what diagram(s)
* you wish to print. You add it to the @ref KPrinter instance.
*
* You will then need to get the options as shown in @ref KPrinter.
*
* @short A print dialog page.
* @author Paul Hensgen <phensgen@techie.com>
* @see KPrinter
* Bugs and comments to uml-devel@lists.sf.net or http://bugs.trinitydesktop.org
*/
class DiagramPrintPage : public KPrintDialogPage {
TQ_OBJECT
public:
/**
* Constructs the diagram print page.
*
* @param parent The parent to the page.
* @param doc The @ref UMLDoc class instance being used.
*/
DiagramPrintPage(TQWidget * parent, UMLDoc *doc);
/**
* Stnadard deconstructor.
*/
~DiagramPrintPage();
/**
* Overriden method. It builds a list with the diagram name and the diagram
* IDs.
*/
void getOptions(TQMap<TQString,TQString>& opts, bool /* incldef=false */);
/**
* Overriden method.
*/
void setOptions( const TQMap<TQString,TQString>& /*opts*/ );
/**
* Overriden method.
*/
bool isValid( TQString& msg );
private:
TQButtonGroup * m_pFilterBG;
TQGroupBox * m_pSelectGB;
TQListBox * m_pSelectLB;
TQRadioButton * m_pAllRB, * m_pCurrentRB, * m_pSelectRB, * m_pTypeRB;
TQComboBox * m_pTypeCB;
UMLDoc * m_pDoc;
Uml::Diagram_Type m_ViewType;
/**
* list containing the IDs of diagrams to print
*/
TQValueList<Uml::IDType> m_nIdList;
enum FilterType{Current = 0, All, Select, Type};
public slots:
/**
* Gets called when the users chooses to print all diagrams, the current
* diagram, a selection of diagrams or diagrams by type. It will change the
* listed diagrams in the diagram box.
*/
void slotClicked(int id);
/**
* Gets called when the user chooses another diagram type. Only diagrams of
* this type will be shown in the diagram box.
*/
void slotActivated(const TQString & text);
};
#endif