]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/FloatPlacement.h
Revert "Mark some intentional fall-throughs (in a way understandable to gcc)"
[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         QString dialogTitle() const { return qt_("Float Settings"); }
39         void paramsToDialog(Inset const *);
40         docstring dialogToParams() const;
41         bool checkWidgets(bool readonly) const;
42         //@}
43         ///
44         void useWide();
45         ///
46         void useSideways();
47         ///
48         void set(std::string const & placement);
49         ///
50         std::string const get() const;
51
52 private Q_SLOTS:
53         void on_defaultsCB_stateChanged(int state);
54         void changedSlot();
55
56 private:
57         ///
58         void checkAllowed() const;
59         ///
60         std::string const get(bool & wide, bool & sideways) const;
61         ///
62         void initFloatTypeCO(FloatList const & floats);
63         ///
64         bool possiblePlacement(char const & p) const;
65
66         /// one of figure or table?
67         bool standardfloat_;
68         ///
69         std::string allowed_placement_;
70         ///
71         bool allows_wide_;
72         ///
73         bool allows_sideways_;
74         ///
75         FloatList const * float_list_;
76 };
77
78 } // namespace frontend
79 } // namespace lyx
80
81 #endif // FLOATPLACEMENT_H