Menu

[c54480]: / exportoofiledialog.h  Maximize  Restore  History

Download this file

38 lines (28 with data), 794 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
37
#ifndef EXPORTOOFILEDIALOG
#define EXPORTOOFILEDIALOG
#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 ExportOOFileDialog:public QFileDialog
{
Q_OBJECT
public:
ExportOOFileDialog();
ExportOOFileDialog (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.