99cd843fc6
Add a new Size class. Rect, Point, and Size are immutable classes. Size uses *UNSIGNED* ints. This is causing me headaches * a bajillion right now, so we'll see about that.
33 lines
711 B
C++
33 lines
711 B
C++
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
|
|
#ifndef __otk_hh
|
|
#define __otk_hh
|
|
|
|
#include "config.h"
|
|
|
|
#include "eventdispatcher.hh"
|
|
#include "eventhandler.hh"
|
|
#include "widget.hh"
|
|
#include "appwidget.hh"
|
|
#include "application.hh"
|
|
#include "assassin.hh"
|
|
#include "label.hh"
|
|
#include "button.hh"
|
|
#include "rendercolor.hh"
|
|
#include "display.hh"
|
|
#include "font.hh"
|
|
#include "rendercontrol.hh"
|
|
#include "size.hh"
|
|
#include "point.hh"
|
|
#include "property.hh"
|
|
#include "rect.hh"
|
|
#include "screeninfo.hh"
|
|
#include "strut.hh"
|
|
#include "renderstyle.hh"
|
|
#include "surface.hh"
|
|
#include "rendertexture.hh"
|
|
#include "timer.hh"
|
|
#include "util.hh"
|
|
#include "ustring.hh"
|
|
#include "widget.hh"
|
|
|
|
#endif // __otk_hh
|