lyx_mirror/src/frontends/qt2/floatplacement.h

54 lines
1007 B
C
Raw Normal View History

// -*- 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.
*/
#include <qwidget.h>
class QCheckBox;
class QVBoxLayout;
class InsetFloatParams;
class FloatPlacement : public QWidget {
Q_OBJECT
public:
FloatPlacement(QWidget * parent, char * name);
void useWide();
void set(InsetFloatParams const & params);
void set(std::string const & placement);
std::string const get(bool & wide) const;
std::string const get() const;
public slots:
void tbhpClicked();
void heredefinitelyClicked();
void spanClicked();
void changedSlot();
signals:
void changed();
private:
QVBoxLayout * layout;
QCheckBox * defaultsCB;
QCheckBox * spanCB;
QCheckBox * ignoreCB;
QCheckBox * pageCB;
QCheckBox * heredefinitelyCB;
QCheckBox * herepossiblyCB;
QCheckBox * bottomCB;
QCheckBox * topCB;
};