2013-08-09 06:57:18 +02:00
|
|
|
#ifndef LC_QIMAGEDIALOG_H
|
|
|
|
#define LC_QIMAGEDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
struct lcImageDialogOptions;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class lcQImageDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class lcQImageDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit lcQImageDialog(QWidget *parent, void *data);
|
|
|
|
~lcQImageDialog();
|
|
|
|
|
|
|
|
lcImageDialogOptions *options;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void accept();
|
|
|
|
void on_fileNameBrowse_clicked();
|
2013-08-14 00:17:25 +02:00
|
|
|
void on_format_currentIndexChanged(int index);
|
2013-08-09 06:57:18 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::lcQImageDialog *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LC_QIMAGEDIALOG_H
|