]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/FormRefDialog.h
Fixed connections. There is still a bug somewhere.
[lyx.git] / src / frontends / qt2 / FormRefDialog.h
1 #ifndef FORMREFDIALOG_H
2 #define FORMREFDIALOG_H
3 #include "FormRefDialogBase.h"
4
5 class FormRef;
6
7 class FormRefDialog : public FormReferenceDialogBase
8
9     Q_OBJECT
10
11 public:
12     FormRefDialog( FormRef* form, QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
13     ~FormRefDialog();
14
15 public slots:
16     void apply_adaptor();
17     void goto_adaptor();
18     void highlight_adaptor(const QString&);
19     void close_adaptor();
20     void select_adaptor(const QString&);
21     void sort_adaptor(bool);
22     void update_adaptor();
23
24 protected:
25     void closeEvent(QCloseEvent *e);
26
27 private:
28     FormRef* form;
29 };
30
31 #endif // FORMREFDIALOG_H