]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiListings.h
move our stuff off the Q* namespace
[lyx.git] / src / frontends / qt4 / GuiListings.h
1 // -*- C++ -*-
2 /**
3  * \file QListings.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Bo Peng
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef QLISTINGS_H
13 #define QLISTINGS_H
14
15 #include "GuiDialogView.h"
16 #include "ui_ListingsUi.h"
17
18 #include <QDialog>
19 #include <QCloseEvent>
20
21 namespace lyx {
22 namespace frontend {
23
24 class GuiListings;
25
26 class GuiListingsDialog : public QDialog, public Ui::ListingsUi {
27         Q_OBJECT
28 public:
29         GuiListingsDialog(GuiListings * form);
30         /// get values from all the widgets and form a string
31         std::string construct_params();
32         /// validate listings parameters and return an error message, if any
33         docstring validate_listings_params();
34 protected Q_SLOTS:
35         virtual void change_adaptor();
36         /// AFAIK, QValidator only works for QLineEdit so
37         /// I have to validate listingsED (QTextEdit) manually.
38         /// This function displays a hint or error message returned by
39         /// validate_listings_params
40         void set_listings_msg();
41         /// turn off inline when float is clicked
42         void on_floatCB_stateChanged(int state);
43         /// turn off float when inline is clicked
44         void on_inlineCB_stateChanged(int state);
45         /// turn off numbering options when none is selected
46         void on_numberSideCO_currentIndexChanged(int);
47         /// show dialect when language is chosen
48         void on_languageCO_currentIndexChanged(int);
49 protected:
50         virtual void closeEvent(QCloseEvent * e);
51 private:
52         GuiListings * form_;
53 };
54
55
56 class ControlListings;
57
58 class GuiListings : public QController<ControlListings, GuiView<GuiListingsDialog> > {
59 public:
60         friend class GuiListingsDialog;
61
62         GuiListings(Dialog &);
63 private:
64         /// Apply changes
65         virtual void apply();
66         /// update
67         virtual void update_contents();
68         /// build the dialog
69         virtual void build_dialog();
70 protected:
71         /// return false if validate_listings_params returns error
72         virtual bool isValid();
73 };
74
75 } // namespace frontend
76 } // namespace lyx
77
78 #endif // QLISTINGS_H