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

#include "otk/button.hh"
#include "widget.hh"

namespace ob {

class OBButtonWidget : public otk::OtkButton, public OBWidget
{
private:
  
public:
  OBButtonWidget(otk::OtkWidget *parent, OBWidget::WidgetType type);
  virtual ~OBButtonWidget();

  virtual void setStyle(otk::Style *style);

  virtual void adjust();
};

}

#endif // __obbuttonwidget_hh