mirror of
https://github.com/leozide/leocad
synced 2025-02-05 08:45:55 +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
|