umbrello  2.32.2
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
codeimportoptionspage.h
Go to the documentation of this file.
1 /***************************************************************************
2  * Copyright (C) 2011-2014 by Ralf Habacker <ralf.habacker@freenet.de> *
3  * *
4  * This is free software; you can redistribute it and/or modify *
5  * it under the terms of the GNU General Public License as published by *
6  * the Free Software Foundation; either version 2, or (at your option) *
7  * any later version. *
8  * *
9  * This software is distributed in the hope that it will be useful, *
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12  * GNU General Public License for more details. *
13  * *
14  * You should have received a copy of the GNU General Public License *
15  * along with this package; see the file COPYING. If not, write to *
16  * the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, *
17  * Boston, MA 02110-1301, USA. *
18  ***************************************************************************/
19 
20 #ifndef CODEIMPORTOPTIONSPAGE_H
21 #define CODEIMPORTOPTIONSPAGE_H
22 
23 #include "dialogpagebase.h"
24 #include "ui_codeimportoptionspage.h"
25 
32 class CodeImportOptionsPage : public DialogPageBase, private Ui::CodeImportOptionsPage
33 {
34  Q_OBJECT
35 public:
36  explicit CodeImportOptionsPage(QWidget *parent = 0);
38  void setDefaults();
39  void apply();
40 
41 signals:
42  void applyClicked();
43 
44 protected:
45 };
46 
47 #endif
Definition: codeimportoptionspage.h:33
~CodeImportOptionsPage()
Definition: codeimportoptionspage.cpp:45
CodeImportOptionsPage(QWidget *parent=0)
Definition: codeimportoptionspage.cpp:33
void setDefaults()
Definition: codeimportoptionspage.cpp:52
void apply()
Definition: codeimportoptionspage.cpp:64
Definition: dialogpagebase.h:25