blob: 0cbfb3fa11b2c65cf88f7aeb6ab70d12c60e9f02 (
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 __obbackgroundwidget_hh
#define __obbackgroundwidget_hh
#include "otk/focuswidget.hh"
#include "widget.hh"
namespace ob {
class OBBackgroundWidget : public otk::OtkFocusWidget, public OBWidget
{
private:
public:
OBBackgroundWidget(otk::OtkWidget *parent, OBWidget::WidgetType type);
virtual ~OBBackgroundWidget();
virtual void setStyle(otk::Style *style);
virtual void adjust();
};
}
#endif // __obbackgroundwidget_hh
|