lyx_mirror/src/frontends/qt4/FloatPlacement.h
André Pönitz 6c300f72a2 move everything into namespace lyx
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15422 a592a061-630c-0410-9148-cb99ea01b6c8
2006-10-21 00:16:43 +00:00

55 lines
1.0 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 QT_FLOATPLACEMENT_H
#define QT_FLOATPLACEMENT_H
#include "ui/FloatPlacementUi.h"
#include <QWidget>
#include <string>
namespace lyx { class InsetFloatParams; }
class FloatPlacement : public QWidget, public Ui::FloatPlacementUi {
Q_OBJECT
public:
FloatPlacement(QWidget * parent = 0);
void useWide();
void useSideways();
void set(lyx::InsetFloatParams const & params);
void set(std::string const & placement);
void checkAllowed();
std::string const get(bool & wide, bool & sideways) const;
std::string const get() const;
public Q_SLOTS:
void tbhpClicked();
void changedSlot();
void on_spanCB_clicked();
void on_heredefinitelyCB_clicked();
void on_sidewaysCB_clicked();
Q_SIGNALS:
void changed();
};
//} // namespace lyx
#endif