]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/FormUrlDialog.h
implement getLabelList
[lyx.git] / src / frontends / qt2 / FormUrlDialog.h
1 #ifndef FORMURLDIALOG_H
2 #define FORMURLDIALOG_H
3 #include "FormUrlDialogBase.h"
4
5 class FormUrl;
6
7 class FormUrlDialog : public FormUrlDialogBase
8
9     Q_OBJECT
10
11 public:
12     FormUrlDialog( FormUrl* form, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
13     ~FormUrlDialog();
14
15 public slots:
16     void apply_adaptor();
17     void close_adaptor();
18
19 protected:
20     void closeEvent( QCloseEvent* );
21
22 private:
23     FormUrl* form;
24 };
25
26 #endif // FORMURLDIALOG_H