|
Rapicorn - Experimental UI Toolkit - Source Code 10.08.1
|
00001 /* Licensed GNU LGPL v3 or later: http://www.gnu.org/licenses/lgpl.html */ 00002 #ifndef __RAPICORN_COFFER_HH__ 00003 #define __RAPICORN_COFFER_HH__ 00004 00005 #include <ui/container.hh> 00006 00007 namespace Rapicorn { 00008 00009 class Coffer : public virtual ContainerImpl { 00010 protected: 00011 virtual const PropertyList& list_properties (); 00012 public: 00013 virtual String element () const = 0; 00014 virtual void element (const String &id) = 0; 00015 virtual bool overlap_child () const = 0; 00016 virtual void overlap_child (bool overlap) = 0; 00017 }; 00018 00019 } // Rapicorn 00020 00021 #endif /* __RAPICORN_COFFER_HH__ */
1.7.4