00001 /* 00002 libwt - Vassilis Virvilis Toolkit - a widget library 00003 Copyright (C) 2006 Vassilis Virvilis <vasvir2@fastmail.fm> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Lesser General Public 00007 License as published by the Free Software Foundation; either 00008 version 2.1 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Lesser General Public License for more details. 00014 00015 You should have received a copy of the GNU Lesser General Public 00016 License along with this library; if not, write to the 00017 Free Software Foundation, Inc., 59 Temple Place - Suite 330, 00018 Boston, MA 02111-1307, SA. 00019 */ 00020 00021 #ifndef WT_SPACER_H 00022 #define WT_SPACER_H 00023 00024 #include <wt/layout.h> 00025 00026 namespace Wt { 00027 00028 class Spacer : public LayoutItem { 00029 public: 00030 Spacer(int w = default_min_size, int h = default_min_size, 00031 SizePolicy::SizeType hData = SizePolicy::Expanding, 00032 SizePolicy::SizeType vData = SizePolicy::Expanding) : 00033 LayoutItem(AlignAuto, 00034 SizePolicy(hData, vData), Size(w, h), Size(0, 0)) {} 00035 00036 private: 00037 }; 00038 00039 class HSpacer : public Spacer { 00040 public: 00041 HSpacer() : Spacer(default_min_size, default_min_size, 00042 SizePolicy::Expanding, SizePolicy::Minimum) {} 00043 private: 00044 }; 00045 00046 class VSpacer : public Spacer { 00047 public: 00048 VSpacer() : Spacer(default_min_size, default_min_size, 00049 SizePolicy::Minimum, SizePolicy::Expanding) {} 00050 private: 00051 }; 00052 00053 } // namespace 00054 00055 #endif // WT_SPACER_H
This document is licensed under the terms of the GNU Free Documentation License and may be freely distributed under the conditions given by this license.