umbrello  2.32.2
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
autolayoutoptionpage.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-2020 *
8  * Umbrello UML Modeller Authors <umbrello-devel@kde.org> *
9  ***************************************************************************/
10 
11 #ifndef AUTOLAYOUTOPTIONPAGE_H
12 #define AUTOLAYOUTOPTIONPAGE_H
13 
14 #include "dialogpagebase.h"
15 #include "ui_autolayoutoptionpage.h"
16 
24 class AutoLayoutOptionPage : public DialogPageBase, private Ui::AutoLayoutOptionPage
25 {
26  Q_OBJECT
27 public:
28  explicit AutoLayoutOptionPage(QWidget* parent = 0);
29  virtual ~AutoLayoutOptionPage();
30 
31  void setDefaults();
32  void apply();
33 
34 signals:
35  void applyClicked();
36 
37 protected slots:
38  void slotAutoDotPathCBClicked(bool value);
39 
40 };
41 #endif
Definition: autolayoutoptionpage.h:25
void apply()
Definition: autolayoutoptionpage.cpp:68
AutoLayoutOptionPage(QWidget *parent=0)
Definition: autolayoutoptionpage.cpp:33
virtual ~AutoLayoutOptionPage()
Definition: autolayoutoptionpage.cpp:51
void slotAutoDotPathCBClicked(bool value)
Definition: autolayoutoptionpage.cpp:77
void setDefaults()
Definition: autolayoutoptionpage.cpp:58
Definition: dialogpagebase.h:25