2006-03-05 17:24:44 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
2008-09-20 13:44:51 +00:00
|
|
|
* \file FloatPlacement.h
|
2006-03-05 17:24:44 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2008-09-20 13:44:51 +00:00
|
|
|
#ifndef FLOATPLACEMENT_H
|
|
|
|
#define FLOATPLACEMENT_H
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-08-11 15:48:15 +00:00
|
|
|
#include "ui_FloatPlacementUi.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2010-02-08 22:09:40 +00:00
|
|
|
#include <QWidget>
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2010-02-08 22:09:40 +00:00
|
|
|
#include "support/docstring.h"
|
2006-10-21 00:16:43 +00:00
|
|
|
|
2008-09-20 13:44:51 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2010-02-10 17:33:39 +00:00
|
|
|
class FloatList;
|
2010-02-08 22:09:40 +00:00
|
|
|
class Inset;
|
2008-09-20 13:44:51 +00:00
|
|
|
class InsetFloatParams;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2006-08-25 13:40:01 +00:00
|
|
|
class FloatPlacement : public QWidget, public Ui::FloatPlacementUi {
|
2006-03-05 17:24:44 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2010-02-10 12:26:59 +00:00
|
|
|
FloatPlacement(bool show_options = false, QWidget * parent = 0);
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2010-02-08 22:09:40 +00:00
|
|
|
///
|
|
|
|
void paramsToDialog(Inset const *);
|
|
|
|
///
|
|
|
|
docstring dialogToParams() const;
|
|
|
|
///
|
2006-03-05 17:24:44 +00:00
|
|
|
void useWide();
|
2010-02-08 22:09:40 +00:00
|
|
|
///
|
2006-03-05 17:24:44 +00:00
|
|
|
void useSideways();
|
2010-02-10 12:26:59 +00:00
|
|
|
///
|
2006-03-05 17:24:44 +00:00
|
|
|
void set(std::string const & placement);
|
2010-02-10 12:26:59 +00:00
|
|
|
///
|
2006-03-05 17:24:44 +00:00
|
|
|
std::string const get() const;
|
|
|
|
|
2010-02-10 12:26:59 +00:00
|
|
|
private Q_SLOTS:
|
|
|
|
void on_defaultsCB_stateChanged(int state);
|
2006-03-05 17:24:44 +00:00
|
|
|
void changedSlot();
|
|
|
|
|
2006-06-30 14:37:33 +00:00
|
|
|
Q_SIGNALS:
|
2006-03-05 17:24:44 +00:00
|
|
|
void changed();
|
|
|
|
|
2008-01-11 18:56:53 +00:00
|
|
|
private:
|
2010-02-10 12:26:59 +00:00
|
|
|
///
|
|
|
|
void checkAllowed();
|
|
|
|
///
|
|
|
|
std::string const get(bool & wide, bool & sideways) const;
|
2010-02-10 17:33:39 +00:00
|
|
|
///
|
|
|
|
void initFloatTypeCO(FloatList const & floats);
|
2010-02-10 12:26:59 +00:00
|
|
|
|
2008-01-11 18:56:53 +00:00
|
|
|
/// one of figure or table?
|
|
|
|
bool standardfloat_;
|
2010-02-10 07:06:14 +00:00
|
|
|
///
|
2010-02-10 17:33:39 +00:00
|
|
|
FloatList const * float_list_;
|
2006-03-05 17:24:44 +00:00
|
|
|
};
|
|
|
|
|
2008-09-20 13:44:51 +00:00
|
|
|
} // namespace lyx
|
2006-10-21 00:16:43 +00:00
|
|
|
|
2008-09-20 13:44:51 +00:00
|
|
|
#endif // FLOATPLACEMENT_H
|