mirror of
https://github.com/leozide/leocad
synced 2024-12-28 22:23:35 +01:00
30 lines
443 B
C
30 lines
443 B
C
|
#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();
|
||
|
|
||
|
private:
|
||
|
Ui::lcQImageDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // LC_QIMAGEDIALOG_H
|