umbrello  2.35.1
Umbrello UML Modeller is a Unified Modelling Language (UML) diagram program based on KDE Technology
exportallviewsdialog.h
Go to the documentation of this file.
1 /*
2  SPDX-License-Identifier: GPL-2.0-or-later
3  SPDX-FileCopyrightText: 2006-2020 Umbrello UML Modeller Authors <umbrello-devel@kde.org>
4 */
5 #ifndef EXPORTALLVIEWSDIALOG_H
6 #define EXPORTALLVIEWSDIALOG_H
7 
8 // app includes
10 #include "imagetypewidget.h"
11 #include "resolutionwidget.h"
12 #include "singlepagedialogbase.h"
13 
14 // KDE forward declarations
15 #if QT_VERSION >= 0x050000
16 class KComboBox;
17 #else
18 class KFileFilterCombo;
19 #endif
20 
30 {
31  Q_OBJECT
32 
33 public:
34 
35  explicit ExportAllViewsDialog(QWidget* parent = 0, const char* name = 0);
36 
38 
39 private:
42 
43 protected slots:
44 
46 
47  virtual void languageChange();
48  void slotImageTypeChanged(QString imageType);
49 };
50 
51 #endif
~ExportAllViewsDialog()
Definition: exportallviewsdialog.cpp:48
void slotImageTypeChanged(QString imageType)
Definition: exportallviewsdialog.cpp:67
ImageTypeWidget * m_imageType
The image type selected.
Definition: exportallviewsdialog.h:40
ExportAllViewsDialog(QWidget *parent=0, const char *name=0)
Definition: exportallviewsdialog.cpp:23
virtual void languageChange()
Definition: exportallviewsdialog.cpp:56
Definition: resolutionwidget.h:16
Definition: ui_exportallviewsdialogbase.h:109
Definition: singlepagedialogbase.h:29
Definition: imagetypewidget.h:23
Definition: umlviewimageexporterall.h:19
ResolutionWidget * m_imageResolution
The image resolution selected.
Definition: exportallviewsdialog.h:41
Definition: exportallviewsdialog.h:29