X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FFloatList.h;h=5c0c3a7355830da940e218186a72fb1e06fa19d3;hb=62af7ee772f16f154225d2d0b65d77f4376b6001;hp=212050f4e15105a48b0c2277b6fdda28d2ef2d0b;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/FloatList.h b/src/FloatList.h index 212050f4e1..5c0c3a7355 100644 --- a/src/FloatList.h +++ b/src/FloatList.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Lars Gullik Bjønnes + * \author Lars Gullik Bjønnes * * Full author contact details are available in file CREDITS. */ @@ -12,10 +12,14 @@ #ifndef FLOATLIST_H #define FLOATLIST_H +#include "Floating.h" + #include +#include + +namespace lyx { -class Floating; /// class FloatList { @@ -35,8 +39,14 @@ public: /// std::string const defaultPlacement(std::string const & t) const; /// + std::string const allowedPlacement(std::string const & t) const; + /// bool typeExist(std::string const & t) const; /// + bool allowsWide(std::string const & t) const; + /// + bool allowsSideways(std::string const & t) const; + /// Floating const & getType(std::string const & t) const; /// void erase(std::string const & t); @@ -47,4 +57,7 @@ private: List list; }; + +} // namespace lyx + #endif