4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author Lars Gullik Bjønnes
9 * Full author contact details are available in file CREDITS.
17 /** This is a "float layout" object. It contains the parameters for how to
18 * handle the different kinds of floats, default ones and user created ones.
19 * Objects of this class is stored in a container in FloatList. The different
20 * InsetFloat(s) have a pointer/reference through the name of the Floating
21 * so that it knows how the different floats should be handled.
28 Floating(std::string
const & type
, std::string
const & placement
,
29 std::string
const & ext
, std::string
const & within
,
30 std::string
const & style
, std::string
const & name
,
31 std::string
const & listName
, bool builtin
= false);
33 std::string
const & type() const;
35 std::string
const & placement() const;
37 std::string
const & ext() const;
39 std::string
const & within() const;
41 std::string
const & style() const;
43 std::string
const & name() const;
45 std::string
const & listName() const;
52 std::string placement_
;
62 std::string listName_
;