umbrello  2.31.70
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
diagrampropertiespage.h
Go to the documentation of this file.
1 /***************************************************************************
2  * This program is free software; you can redistribute it and/or modify *
3  * it under the terms of the GNU General Public License as published by *
4  * the Free Software Foundation; either version 2 of the License, or *
5  * (at your option) any later version. *
6  * *
7  * copyright (C) 2002-2014 *
8  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
9  ***************************************************************************/
10 
11 #ifndef DIAGRAMPROPERTIESPAGE_H
12 #define DIAGRAMPROPERTIESPAGE_H
13 
14 #include "dialogpagebase.h"
16 
17 class UMLScene;
18 
23 {
24  Q_OBJECT
25 public:
26  explicit DiagramPropertiesPage(QWidget *parent, UMLScene *scene);
27  virtual ~DiagramPropertiesPage();
28 
29  void setDefaults();
30  void apply();
31 
32 signals:
33  void applyClicked();
34 
35 protected:
38 };
39 #endif
Definition: ui_diagrampropertiespage.h:278
Definition: dialogpagebase.h:24
void applyClicked()
Definition: moc_diagrampropertiespage.cpp:131
Definition: diagrampropertiespage.h:22
void apply()
Definition: diagrampropertiespage.cpp:103
void setDefaults()
Definition: diagrampropertiespage.cpp:63
UMLScene * m_scene
Definition: diagrampropertiespage.h:36
virtual ~DiagramPropertiesPage()
Definition: diagrampropertiespage.cpp:56
DiagramPropertiesPage(QWidget *parent, UMLScene *scene)
Definition: diagrampropertiespage.cpp:30
bool checkUniqueDiagramName()
Definition: diagrampropertiespage.cpp:70
Definition: umlscene.h:68