]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/FloatPlacement.h
Fix the tab ordering of GuiDocument components.
[lyx.git] / src / frontends / qt4 / FloatPlacement.h
1 // -*- C++ -*-
2 /**
3  * \file FloatPlacement.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Edwin Leuven
8  * \author John Levon
9  *
10  * Full author contact details are available in file CREDITS.
11  */
12
13 #ifndef FLOATPLACEMENT_H
14 #define FLOATPLACEMENT_H
15
16 #include "InsetParamsWidget.h"
17 #include "ui_FloatPlacementUi.h"
18
19 #include "support/docstring.h"
20
21 namespace lyx {
22
23 class FloatList;
24 class Inset;
25 class InsetFloatParams;
26
27 namespace frontend {
28
29 class FloatPlacement : public InsetParamsWidget, public Ui::FloatPlacementUi {
30         Q_OBJECT
31 public:
32         FloatPlacement(bool show_options = false, QWidget * parent = 0);
33
34         /// \name DialogView inherited methods
35         //@{
36         InsetCode insetCode() const { return FLOAT_CODE; }
37         FuncCode creationCode() const { return LFUN_FLOAT_INSERT; }
38         void paramsToDialog(Inset const *);
39         docstring dialogToParams() const;
40         //@}
41         ///
42         void useWide();
43         ///
44         void useSideways();
45         ///
46         void set(std::string const & placement);
47         ///
48         std::string const get() const;
49
50 private Q_SLOTS:
51         void on_defaultsCB_stateChanged(int state);
52         void changedSlot();
53
54 private:
55         ///
56         void checkAllowed();
57         ///
58         std::string const get(bool & wide, bool & sideways) const;
59         ///
60         void initFloatTypeCO(FloatList const & floats);
61
62         /// one of figure or table?
63         bool standardfloat_;
64         ///
65         FloatList const * float_list_;
66 };
67
68 } // namespace frontend
69 } // namespace lyx
70
71 #endif // FLOATPLACEMENT_H