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/statedialog.cpp

148 lines
5.2 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> *
***************************************************************************/
// own header
#include "statedialog.h"
//qt includes
#include <tqlayout.h>
#include <tqlabel.h>
#include <tqlineedit.h>
#include <tqmultilineedit.h>
#include <tqgroupbox.h>
//kde includes
#include <kiconloader.h>
#include <tdelocale.h>
#include <tdefontdialog.h>
//local includes
#include "../umlview.h"
#include "../statewidget.h"
#include "../dialog_utils.h"
StateDialog::StateDialog( UMLView * pView, StateWidget * pWidget )
: KDialogBase(IconList, i18n("Properties"), Ok | Apply | Cancel | Help, Ok, pView, "_STATEDIALOG_", true, true) {
m_pActivityPage = 0;
m_pView = pView;
m_pStateWidget = pWidget;
m_bChangesMade = false;
setupPages();
}
void StateDialog::slotOk() {
applyPage( GeneralPage );
applyPage( Activity_Page );
applyPage( ColorPage );
applyPage( FontPage );
accept();
}
void StateDialog::slotApply() {
applyPage( (Page) activePageIndex() );
}
void StateDialog::setupPages() {
setupGeneralPage();
if( m_pStateWidget -> getStateType() == StateWidget::Normal )
setupActivityPage();
setupColorPage();
setupFontPage();
}
void StateDialog::applyPage( Page page ) {
m_bChangesMade = true;
switch( page ) {
case GeneralPage:
m_pStateWidget -> setName( m_GenPageWidgets.nameLE -> text() );
m_pStateWidget -> setDoc( m_GenPageWidgets.docMLE -> text() );
break;
case Activity_Page:
if( m_pActivityPage )
m_pActivityPage -> updateActivities();
break;
case ColorPage:
m_pColorPage -> updateUMLWidget();
break;
case FontPage:
m_pStateWidget -> setFont( m_pChooser -> font() );
break;
}//end switch
}
void StateDialog::setupGeneralPage() {
TQString types[ ] = { i18n("Initial state"), i18n("State"), i18n("End state") };
StateWidget::StateType type = m_pStateWidget -> getStateType();
TQVBox * page = addVBoxPage( i18n("General"), i18n("General Properties"), DesktopIcon( "misc") );
m_GenPageWidgets.generalGB = new TQGroupBox( i18n( "Properties"), (TQWidget *)page );
TQGridLayout * generalLayout = new TQGridLayout( m_GenPageWidgets.generalGB, 2, 2 );
generalLayout -> setSpacing( spacingHint() );
generalLayout -> setMargin( fontMetrics().height() );
Dialog_Utils::makeLabeledEditField( m_GenPageWidgets.generalGB, generalLayout, 0,
m_GenPageWidgets.typeL, i18n("State type:"),
m_GenPageWidgets.typeLE, types[ (int)type ] );
m_GenPageWidgets.typeLE -> setEnabled( false );
Dialog_Utils::makeLabeledEditField( m_GenPageWidgets.generalGB, generalLayout, 1,
m_GenPageWidgets.nameL, i18n("State name:"),
m_GenPageWidgets.nameLE );
m_GenPageWidgets.docGB = new TQGroupBox( i18n( "Documentation"), (TQWidget *)page );
TQHBoxLayout * docLayout = new TQHBoxLayout( m_GenPageWidgets.docGB );
docLayout -> setSpacing( spacingHint() );
docLayout -> setMargin( fontMetrics().height() );
m_GenPageWidgets.docMLE = new TQMultiLineEdit( m_GenPageWidgets.docGB );
m_GenPageWidgets.docMLE -> setText( m_pStateWidget -> getDoc() );
docLayout -> addWidget( m_GenPageWidgets.docMLE );
if( type != StateWidget::Normal ) {
m_GenPageWidgets.nameLE -> setEnabled( false );
m_GenPageWidgets.nameLE -> setText( "" );
} else
m_GenPageWidgets.nameLE -> setText( m_pStateWidget -> getName() );
}
void StateDialog::setupFontPage() {
if ( !m_pStateWidget )
return;
TQVBox * page = addVBoxPage( i18n("Font"), i18n("Font Settings"), DesktopIcon( "fonts") );
m_pChooser = new TDEFontChooser( (TQWidget*)page, "font", false, TQStringList(), false);
m_pChooser -> setFont( m_pStateWidget -> getFont() );
}
void StateDialog::setupColorPage() {
TQFrame * colorPage = addPage( i18n("Color"), i18n("Widget Color"), DesktopIcon( "colors") );
TQHBoxLayout * m_pColorLayout = new TQHBoxLayout(colorPage);
m_pColorPage = new UMLWidgetColorPage( colorPage, m_pStateWidget );
m_pColorLayout -> addWidget(m_pColorPage);
}
void StateDialog::setupActivityPage() {
TQFrame * activityPage = addPage( i18n("Activities"), i18n("Activities"), DesktopIcon( "misc") );
TQHBoxLayout * activityLayout = new TQHBoxLayout( activityPage );
m_pActivityPage = new ActivityPage( activityPage, m_pStateWidget );
activityLayout -> addWidget( m_pActivityPage );
}
#include "statedialog.moc"