aboutsummaryrefslogtreecommitdiff
path: root/lib/gui/ewidget.cpp
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-07-22 21:29:54 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-07-22 21:29:54 +0000
commit92f02a487b375ae936e7fa74b060bee9d495a106 (patch)
treed87075d005ab529a541fe54e01bd9b47326211b5 /lib/gui/ewidget.cpp
parent0560f2a18da104507c1a44cfc96ad5812307f5f3 (diff)
downloadenigma2-92f02a487b375ae936e7fa74b060bee9d495a106.tar.gz
enigma2-92f02a487b375ae936e7fa74b060bee9d495a106.zip
- fix client positions a bit (still a bit ugly)
Diffstat (limited to 'lib/gui/ewidget.cpp')
-rw-r--r--lib/gui/ewidget.cpp15
1 files changed, 9 insertions, 6 deletions
diff --git a/lib/gui/ewidget.cpp b/lib/gui/ewidget.cpp
index 7586c627..474e295d 100644
--- a/lib/gui/ewidget.cpp
+++ b/lib/gui/ewidget.cpp
@@ -9,6 +9,8 @@ eWidget::eWidget(eWidget *parent): m_parent(parent ? parent->child() : 0)
m_desktop = 0;
m_have_background_color = 0;
+ m_client_offset = eSize(0, 0);
+
if (m_parent)
m_vis = wVisShow;
@@ -24,11 +26,11 @@ eWidget::eWidget(eWidget *parent): m_parent(parent ? parent->child() : 0)
void eWidget::move(ePoint pos)
{
+ m_position = pos + m_client_offset;
+
if (m_position == pos)
return;
- m_position = pos;
-
/* we invalidate before and after the move to
cause a correct redraw. The area which is
included both before and after isn't redrawn
@@ -49,11 +51,13 @@ void eWidget::resize(eSize size)
fits into the other completely, and invalidate
only once. */
eSize old_size = m_size;
- eSize offset = eSize(0, 0);
- event(evtWillChangeSize, &size, &offset);
+ eSize old_offset = m_client_offset;
+ m_client_offset = eSize(0, 0);
+ event(evtWillChangeSize, &size, &m_client_offset);
if (old_size == m_size)
return;
- move(position() + offset);
+
+ move(position() - old_offset);
invalidate();
event(evtChangedSize);
@@ -278,7 +282,6 @@ int eWidget::event(int event, void *data, void *data2)
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);