mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
8613f66a1d
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33493 a592a061-630c-0410-9148-cb99ea01b6c8
72 lines
1.4 KiB
C++
72 lines
1.4 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file FloatPlacement.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Edwin Leuven
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef FLOATPLACEMENT_H
|
|
#define FLOATPLACEMENT_H
|
|
|
|
#include "InsetParamsWidget.h"
|
|
#include "ui_FloatPlacementUi.h"
|
|
|
|
#include "support/docstring.h"
|
|
|
|
namespace lyx {
|
|
|
|
class FloatList;
|
|
class Inset;
|
|
class InsetFloatParams;
|
|
|
|
namespace frontend {
|
|
|
|
class FloatPlacement : public InsetParamsWidget, public Ui::FloatPlacementUi {
|
|
Q_OBJECT
|
|
public:
|
|
FloatPlacement(bool show_options = false, QWidget * parent = 0);
|
|
|
|
/// \name DialogView inherited methods
|
|
//@{
|
|
InsetCode insetCode() const { return FLOAT_CODE; }
|
|
FuncCode creationCode() const { return LFUN_FLOAT_INSERT; }
|
|
void paramsToDialog(Inset const *);
|
|
docstring dialogToParams() const;
|
|
//@}
|
|
///
|
|
void useWide();
|
|
///
|
|
void useSideways();
|
|
///
|
|
void set(std::string const & placement);
|
|
///
|
|
std::string const get() const;
|
|
|
|
private Q_SLOTS:
|
|
void on_defaultsCB_stateChanged(int state);
|
|
void changedSlot();
|
|
|
|
private:
|
|
///
|
|
void checkAllowed();
|
|
///
|
|
std::string const get(bool & wide, bool & sideways) const;
|
|
///
|
|
void initFloatTypeCO(FloatList const & floats);
|
|
|
|
/// one of figure or table?
|
|
bool standardfloat_;
|
|
///
|
|
FloatList const * float_list_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // FLOATPLACEMENT_H
|