summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/control
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-12-23 19:39:39 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-12-23 22:22:50 +0100
commit092d005fe0368c57502479bc79fcee63ce07fa48 (patch)
treefc585bfa34cb18392dc4d8ac6decd9cd1107b59c /dbaccess/source/ui/control
parent8e5d874ae2b6135d923302e078ee195a398c23e5 (diff)
Resolves: tdf#122285 task panel too short
there are a bunch of resizes as base starts up, and base will position the splitwin on the first time its big enough to place it and gets stuck too high up, before it goes full size. We don't want this jumping around on every subsequent user size, but we do want it to get placed at the final size during the load. So post the resize event to occur on idle, and when it finally gets a chance to run we'll be at our final size and the placement is good Change-Id: Iccb169bac93a5cf8bc931945bc7e1b71c6c9dd23 Reviewed-on: https://gerrit.libreoffice.org/65586 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'dbaccess/source/ui/control')
-rw-r--r--dbaccess/source/ui/control/VertSplitView.cxx18
1 files changed, 16 insertions, 2 deletions
diff --git a/dbaccess/source/ui/control/VertSplitView.cxx b/dbaccess/source/ui/control/VertSplitView.cxx
index 956cec1e887e..4f44d180114e 100644
--- a/dbaccess/source/ui/control/VertSplitView.cxx
+++ b/dbaccess/source/ui/control/VertSplitView.cxx
@@ -32,6 +32,7 @@ OSplitterView::OSplitterView(vcl::Window* _pParent) : Window(_pParent,WB_DIALOGC
,m_pSplitter( nullptr )
,m_pLeft(nullptr)
,m_pRight(nullptr)
+ ,m_pResizeId(nullptr)
{
ImplInitSettings();
}
@@ -43,6 +44,11 @@ OSplitterView::~OSplitterView()
void OSplitterView::dispose()
{
+ if (m_pResizeId)
+ {
+ RemoveUserEvent(m_pResizeId);
+ m_pResizeId = nullptr;
+ }
m_pSplitter.clear();
m_pLeft.clear();
m_pRight.clear();
@@ -102,9 +108,10 @@ void OSplitterView::GetFocus()
m_pRight->GrabFocus();
}
-void OSplitterView::Resize()
+IMPL_LINK_NOARG(OSplitterView, ResizeHdl, void*, void)
{
- Window::Resize();
+ m_pResizeId = nullptr;
+
OSL_ENSURE( m_pRight, "No init called!");
Point aSplitPos;
@@ -142,7 +149,14 @@ void OSplitterView::Resize()
m_pRight->setPosSizePixel( aSplitPos.X(), aPlaygroundPos.Y() + aSplitPos.Y() + aSplitSize.Height(),
aPlaygroundSize.Width() , aPlaygroundSize.Height() - aSplitSize.Height() - aSplitPos.Y());
}
+}
+void OSplitterView::Resize()
+{
+ Window::Resize();
+ if (m_pResizeId)
+ RemoveUserEvent(m_pResizeId);
+ m_pResizeId = PostUserEvent(LINK(this, OSplitterView, ResizeHdl), this, true);
}
void OSplitterView::set(vcl::Window* _pRight,Window* _pLeft)