Added Alignment, Defaultable and Scriptable types, needed some reflection tweaks for the last two.

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@17 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2006-10-12 14:07:34 +00:00
parent 156d1f6632
commit b389685fc8
23 changed files with 311 additions and 90 deletions
+7 -5
View File
@@ -10,7 +10,9 @@
// ----------------------------------------------------------------------------- : Includes
#include <util/prec.hpp>
#include <util/defaultable.hpp>
#include <data/field.hpp>
#include <script/scriptable.hpp>
// ----------------------------------------------------------------------------- : TextField
@@ -19,8 +21,8 @@ class TextField : public Field {
public:
TextField();
// Script script;
// Script default_script;
OptionalScript script;
OptionalScript default_script;
bool multi_line; ///< Are newlines allowed in the text?
bool move_cursor_with_sort; ///< When the text is reordered by a script should the cursor position be updated?
String default_name; ///< Name of "default" value
@@ -43,7 +45,7 @@ class TextStyle : public Style {
// SymbolFontInfo symbol_font; ///< Symbol font for symbols in the text
bool always_symbol; ///< Should everything be drawn as symbols?
bool allow_formatting; ///< Is formating (bold/italic/..) allowed?
// Alignment alignment; ///< Alignment inside the box
Alignment alignment; ///< Alignment inside the box
int angle; ///< Angle of the text inside the box
int padding_left, padding_left_min; ///< Padding
int padding_right, padding_right_min; ///< Padding
@@ -66,9 +68,9 @@ class TextStyle : public Style {
/// The Value in a TextField
class TextValue : public Value {
public:
virtual ValueP clone() const;
Defaultable<String> value; ///< The text of this value
String value;
virtual ValueP clone() const;
private:
DECLARE_REFLECTION();
};