Initial import of Dillo

This commit is contained in:
2025-02-28 13:34:30 -05:00
parent bd4e3eebd8
commit 20fea64cb5
496 changed files with 156174 additions and 0 deletions

66
dw/core.hh Normal file
View File

@ -0,0 +1,66 @@
#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 {
/** Used (temporally) for code related to positioned elements. */
enum { IMPL_POS = false };
/**
* \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;
class StackingContextMgr;
// 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 "tools.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 "stackingcontextmgr.hh"
#include "ui.hh"
#undef __INCLUDED_FROM_DW_CORE_HH__
#endif // __DW_CORE_HH__