summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-12-23 19:39:39 +0000
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2019-01-02 10:30:04 +0100
commitde2fca657c3cf31e1f9e21bbd50b887f7cca9216 (patch)
tree0ad5d4e7695b632f93ca3f3be68284db66ba5bc8 /dbaccess
parentbd9f2037f379cc3cd887122ca34eedfe85e4e820 (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/65587 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/ui/control/VertSplitView.cxx18
-rw-r--r--dbaccess/source/ui/inc/VertSplitView.hxx4
2 files changed, 19 insertions, 3 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)
diff --git a/dbaccess/source/ui/inc/VertSplitView.hxx b/dbaccess/source/ui/inc/VertSplitView.hxx
index 1ccf6a0683f1..25a0a6442e81 100644
--- a/dbaccess/source/ui/inc/VertSplitView.hxx
+++ b/dbaccess/source/ui/inc/VertSplitView.hxx
@@ -30,9 +30,11 @@ namespace dbaui
VclPtr<Splitter> m_pSplitter;
VclPtr<vcl::Window> m_pLeft;
VclPtr<vcl::Window> m_pRight;
+ ImplSVEvent *m_pResizeId;
void ImplInitSettings();
- DECL_LINK( SplitHdl, Splitter*, void );
+ DECL_LINK(SplitHdl, Splitter*, void);
+ DECL_LINK(ResizeHdl, void*, void);
protected:
virtual void DataChanged(const DataChangedEvent& rDCEvt) override;
public: