openbox/src/widget.hh

37 lines
648 B
C++

// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifndef __obwidget_hh
#define __obwidget_hh
namespace ob {
class OBWidget {
public:
// update the enum in openbox.i to match this one
enum WidgetType {
Type_Frame,
Type_Titlebar,
Type_Handle,
Type_Plate,
Type_Label,
Type_MaximizeButton,
Type_CloseButton,
Type_IconifyButton,
Type_StickyButton,
Type_LeftGrip,
Type_RightGrip,
Type_Client,
Type_Root
};
private:
WidgetType _type;
public:
OBWidget(WidgetType type) : _type(type) {}
inline WidgetType type() const { return _type; }
};
}
#endif // __obwidget_hh