mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
8cea333572
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19427 a592a061-630c-0410-9148-cb99ea01b6c8
55 lines
1.0 KiB
C++
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
|