rework ui layouts, now it is more flexible and modular

This commit is contained in:
Eduardo Bart
2011-05-09 17:38:01 -03:00
parent 6d871b305f
commit 51fe97644d
29 changed files with 441 additions and 398 deletions

View File

@@ -38,7 +38,7 @@ template <class T>
class TSize
{
public:
inline TSize() : wd(0), ht(0) {};
inline TSize() : wd(-1), ht(-1) {};
inline TSize(T width, T height) : wd(width), ht(height) { };
inline TSize(const TSize<T>& other) : wd(other.wd), ht(other.ht) { };