mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
439dbfce6b
git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@175 0fc631ac-6414-0410-93d0-97cfa31319b6
82 lines
3.6 KiB
C++
82 lines
3.6 KiB
C++
//+----------------------------------------------------------------------------+
|
|
//| Description: Magic Set Editor - Program to make Magic (tm) cards |
|
|
//| Copyright: (C) 2001 - 2006 Twan van Laarhoven |
|
|
//| License: GNU General Public License 2 or later (see file COPYING) |
|
|
//+----------------------------------------------------------------------------+
|
|
|
|
// ----------------------------------------------------------------------------- : Includes
|
|
|
|
#include <util/alignment.hpp>
|
|
#include <util/reflect.hpp>
|
|
|
|
// ----------------------------------------------------------------------------- : Alignment
|
|
|
|
double align_delta_x(Alignment align, double box_width, double obj_width) {
|
|
if (align & ALIGN_CENTER) return (box_width - obj_width) / 2;
|
|
else if (align & ALIGN_RIGHT) return box_width - obj_width;
|
|
else return 0;
|
|
}
|
|
|
|
|
|
double align_delta_y(Alignment align, double box_height, double obj_height) {
|
|
if (align & ALIGN_MIDDLE) return (box_height - obj_height) / 2;
|
|
else if (align & ALIGN_BOTTOM) return box_height - obj_height;
|
|
else return 0;
|
|
}
|
|
|
|
RealPoint align_in_rect(Alignment align, const RealSize& to_align, const RealRect& outer) {
|
|
return RealPoint(
|
|
outer.x + align_delta_x(align, outer.width, to_align.width),
|
|
outer.y + align_delta_y(align, outer.height, to_align.height)
|
|
);
|
|
}
|
|
|
|
// ----------------------------------------------------------------------------- : Reflection stuff
|
|
|
|
/// Convert a String to an Alignment
|
|
Alignment from_string(const String& s) {
|
|
int al = ALIGN_TOP_LEFT;
|
|
if (s.find(_("left")) !=String::npos) al = ALIGN_LEFT | (al & ALIGN_VERTICAL);
|
|
if (s.find(_("center")) !=String::npos) al = ALIGN_CENTER | (al & ALIGN_VERTICAL);
|
|
if (s.find(_("right")) !=String::npos) al = ALIGN_RIGHT | (al & ALIGN_VERTICAL);
|
|
if (s.find(_("justify")) !=String::npos) al = ALIGN_JUSTIFY | (al & ALIGN_VERTICAL);
|
|
if (s.find(_("justify-words")) !=String::npos) al = ALIGN_JUSTIFY_WORDS | (al & ALIGN_VERTICAL);
|
|
if (s.find(_("shrink-overflow"))!=String::npos) al = ALIGN_JUSTIFY_OVERFLOW | (al & ~ALIGN_JUSTIFY_OVERFLOW);
|
|
if (s.find(_("top")) !=String::npos) al = ALIGN_TOP | (al & ALIGN_HORIZONTAL);
|
|
if (s.find(_("middle")) !=String::npos) al = ALIGN_MIDDLE | (al & ALIGN_HORIZONTAL);
|
|
if (s.find(_("bottom")) !=String::npos) al = ALIGN_BOTTOM | (al & ALIGN_HORIZONTAL);
|
|
if (s.find(_("stretch")) !=String::npos) al = ALIGN_STRETCH;
|
|
return static_cast<Alignment>(al);
|
|
}
|
|
|
|
/// Convert an Alignment to a String
|
|
String to_string(Alignment align) {
|
|
String ret;
|
|
// vertical
|
|
if (align & ALIGN_TOP) ret += _(" top");
|
|
if (align & ALIGN_MIDDLE) ret += _(" middle");
|
|
if (align & ALIGN_BOTTOM) ret += _(" bottom");
|
|
// horizontal
|
|
if (align & ALIGN_LEFT) ret += _(" left");
|
|
if (align & ALIGN_LEFT) ret += _(" center");
|
|
if (align & ALIGN_LEFT) ret += _(" right");
|
|
if (align & ALIGN_LEFT) ret += _(" justify");
|
|
if (align & ALIGN_LEFT) ret += _(" justify-words");
|
|
// modifier
|
|
if (align & ALIGN_JUSTIFY_OVERFLOW) ret += _(" shrink-overflow");
|
|
if (align & ALIGN_STRETCH) ret += _(" stretch");
|
|
return ret.substr(1);
|
|
}
|
|
|
|
// we need custom io, because there can be both a horizontal and a vertical component
|
|
|
|
template <> void Reader::handle(Alignment& align) {
|
|
align = from_string(getValue());
|
|
}
|
|
template <> void Writer::handle(const Alignment& align) {
|
|
handle(to_string(align));
|
|
}
|
|
template <> void GetDefaultMember::handle(const Alignment& align) {
|
|
handle(to_string(align));
|
|
}
|