2002-11-13 10:19:28 +00:00
|
|
|
#ifndef __focuswidget_hh
|
|
|
|
#define __focuswidget_hh
|
|
|
|
|
|
|
|
#include "widget.hh"
|
2002-11-16 02:15:49 +00:00
|
|
|
#include "application.hh"
|
2002-11-13 10:19:28 +00:00
|
|
|
|
|
|
|
namespace otk {
|
|
|
|
|
|
|
|
class OtkFocusWidget : public OtkWidget {
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
OtkFocusWidget(OtkWidget *parent, Direction = Horizontal);
|
2002-11-16 02:15:49 +00:00
|
|
|
virtual ~OtkFocusWidget();
|
2002-11-13 10:19:28 +00:00
|
|
|
|
|
|
|
virtual void focus(void);
|
|
|
|
virtual void unfocus(void);
|
|
|
|
|
|
|
|
void setTexture(BTexture *texture);
|
|
|
|
|
|
|
|
inline void setUnfocusTexture(BTexture *texture)
|
|
|
|
{ _unfocus_texture = texture; }
|
|
|
|
inline BTexture *getUnfocusTexture(void) const
|
|
|
|
{ return _unfocus_texture; }
|
|
|
|
|
|
|
|
inline bool isFocused(void) const { return _focused; }
|
|
|
|
inline bool isUnfocused(void) const { return !_focused; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
BTexture *_unfocus_texture;
|
|
|
|
BTexture *_focus_texture;
|
|
|
|
|
|
|
|
bool _focused;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __focuswidget_hh
|