Menu

[efa3d9]: / src / export-impress-filedialog.h  Maximize  Restore  History

Download this file

37 lines (28 with data), 813 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef EXPORTIMPRESSFILEDIALOG
#define EXPORTIMPRESSFILEDIALOG
#include <QFileDialog>
#include <QStringList>
#include "settings.h"
/*! \brief Dialog to select output file and format for Open Office documents
This is an overloaded QFileDialog, which allows to select templates by setting a
type.
*/
class ExportImpressFileDialog : public QFileDialog {
Q_OBJECT
public:
ExportImpressFileDialog();
ExportImpressFileDialog(QWidget *parent, const QString &caption = QString());
bool foundConfig();
QString selectedConfig();
void show();
private slots:
void newConfigPath(const QString &f);
private:
void init();
void addFilter(const QString &);
void scanExportConfigs(QDir);
QStringList configPaths;
QStringList filters;
QString lastFilter;
};
#endif
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.