1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
#ifndef __DW_CORE_HH__
#define __DW_CORE_HH__
#define __INCLUDED_FROM_DW_CORE_HH__
/**
* \brief Dw is in this namespace, or sub namespaces of this one.
*
* The core can be found in dw::core, widgets are defined directly here.
*
* \sa \ref dw-overview
*/
namespace dw {
/**
* \brief The core of Dw is defined in this namespace.
*
* \sa \ref dw-overview
*/
namespace core {
typedef unsigned char byte;
class Layout;
class View;
class Widget;
class Iterator;
// Nothing yet to free.
inline void freeall () { }
namespace ui {
class ResourceFactory;
} // namespace ui
} // namespace core
} // namespace dw
#include "../lout/object.hh"
#include "../lout/container.hh"
#include "../lout/signal.hh"
#include "types.hh"
#include "events.hh"
#include "imgbuf.hh"
#include "imgrenderer.hh"
#include "style.hh"
#include "view.hh"
#include "platform.hh"
#include "iterator.hh"
#include "findtext.hh"
#include "selection.hh"
#include "layout.hh"
#include "widget.hh"
#include "ui.hh"
#undef __INCLUDED_FROM_DW_CORE_HH__
#endif // __DW_CORE_HH__
|