openbox/src/backgroundwidget.hh

30 lines
571 B
C++
Raw Normal View History

// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
2003-01-11 19:42:43 +00:00
#ifndef __backgroundwidget_hh
#define __backgroundwidget_hh
#include "otk/widget.hh"
#include "widgetbase.hh"
namespace ob {
2003-01-11 19:42:43 +00:00
class BackgroundWidget : public otk::Widget, public WidgetBase
{
private:
void setTextures();
public:
2003-01-11 19:42:43 +00:00
BackgroundWidget(otk::Widget *parent, WidgetBase::WidgetType type);
virtual ~BackgroundWidget();
virtual void setStyle(otk::RenderStyle *style);
virtual void adjust();
virtual void focus();
virtual void unfocus();
};
}
2003-01-11 19:42:43 +00:00
#endif // __backgroundwidget_hh