aboutsummaryrefslogtreecommitdiff
path: root/lib/gui/ewidget.cpp
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-05-19 22:53:21 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-05-19 22:53:21 +0000
commite3a70a61207238b3c6ac464752a61f5965d95f14 (patch)
tree204f68fe9cf4b98a651e87ef94b921c63a399878 /lib/gui/ewidget.cpp
parentf8e192df7c01fe12192fcf2f122e021684fce27c (diff)
downloadenigma2-e3a70a61207238b3c6ac464752a61f5965d95f14.tar.gz
enigma2-e3a70a61207238b3c6ac464752a61f5965d95f14.zip
- add focus stuff
Diffstat (limited to 'lib/gui/ewidget.cpp')
-rw-r--r--lib/gui/ewidget.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/gui/ewidget.cpp b/lib/gui/ewidget.cpp
index 3ba248ff..2241577e 100644
--- a/lib/gui/ewidget.cpp
+++ b/lib/gui/ewidget.cpp
@@ -17,6 +17,9 @@ eWidget::eWidget(eWidget *parent): m_parent(parent ? parent->child() : 0)
m_parent->m_childs.push_back(this);
m_parent->getStyle(m_style);
}
+
+ m_current_focus = 0;
+ m_focus_owner = 0;
}
void eWidget::move(ePoint pos)
@@ -155,6 +158,14 @@ void eWidget::setBackgroundColor(const gRGB &col)
m_have_background_color = 1;
}
+void eWidget::mayKillFocus()
+{
+ setFocus(0);
+ /* when we have the focus, remove it first. */
+ if (m_focus_owner)
+ m_focus_owner->setFocus(0);
+}
+
eWidget::~eWidget()
{
hide();
@@ -249,9 +260,28 @@ int eWidget::event(int event, void *data, void *data2)
m_clip_region = gRegion(eRect(ePoint(0, 0), m_size));
break;
}
+ case evtFocusGot:
+ m_focus_owner = (eWidget*)data;
+ break;
+ case evtFocusLost:
+ eDebug("unhandled focus lost in %p", this);
+ m_focus_owner = 0;
+ break;
default:
return -1;
}
return 0;
}
+void eWidget::setFocus(eWidget *focus)
+{
+ eDebug("setFocus in %p to %p, was %p", this, focus, m_current_focus);
+ if (m_current_focus)
+ m_current_focus->event(evtFocusLost, this);
+
+ m_current_focus = focus;
+
+ if (m_current_focus)
+ m_current_focus->event(evtFocusGot, this);
+}
+