summaryrefslogtreecommitdiff
path: root/src/widget.hh
blob: c82c28621398bacfffff49ab22bda28e3a502647 (plain)
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
// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifndef   __obwidget_hh
#define   __obwidget_hh

namespace ob {

class OBWidget {
public:
  enum WidgetType {
    Type_Titlebar,
    Type_Handle,
    Type_Plate
  };

private:
  WidgetType _type;

public:
  OBWidget(WidgetType type) : _type(type) {}
  
  inline WidgetType type() const { return _type; }
};

}

#endif // __obwidget_hh