summaryrefslogtreecommitdiff
path: root/sd/source/ui/sidebar/LayoutMenu.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/sidebar/LayoutMenu.cxx')
-rw-r--r--sd/source/ui/sidebar/LayoutMenu.cxx25
1 files changed, 10 insertions, 15 deletions
diff --git a/sd/source/ui/sidebar/LayoutMenu.cxx b/sd/source/ui/sidebar/LayoutMenu.cxx
index 513623a47fe9..1f245ea2c688 100644
--- a/sd/source/ui/sidebar/LayoutMenu.cxx
+++ b/sd/source/ui/sidebar/LayoutMenu.cxx
@@ -150,15 +150,7 @@ public:
virtual void Resize() override;
- virtual bool Command(const CommandEvent& rEvent) override
- {
- if (rEvent.GetCommand() == CommandEventId::ContextMenu)
- {
- mrMenu.ShowContextMenu(rEvent.IsMouseEvent() ? &rEvent.GetMousePosPixel() : nullptr);
- return true;
- }
- return false;
- }
+ virtual bool Command(const CommandEvent& rEvent) override;
};
LayoutMenu::LayoutMenu (
@@ -312,19 +304,22 @@ void LayoutValueSet::Resize()
ValueSet::Resize();
}
-void LayoutMenu::MouseButtonDown (const MouseEvent& rEvent)
+bool LayoutValueSet::Command(const CommandEvent& rEvent)
{
+ if (rEvent.GetCommand() != CommandEventId::ContextMenu)
+ return false;
+
// As a preparation for the context menu the item under the mouse is
// selected.
- if (rEvent.IsRight())
+ if (rEvent.IsMouseEvent())
{
- ReleaseMouse();
- sal_uInt16 nIndex = mxLayoutValueSet->GetItemId(rEvent.GetPosPixel());
+ sal_uInt16 nIndex = GetItemId(rEvent.GetMousePosPixel());
if (nIndex > 0)
- mxLayoutValueSet->SelectItem(nIndex);
+ SelectItem(nIndex);
}
- mxLayoutValueSet->MouseButtonDown(rEvent);
+ mrMenu.ShowContextMenu(rEvent.IsMouseEvent() ? &rEvent.GetMousePosPixel() : nullptr);
+ return true;
}
void LayoutMenu::InsertPageWithLayout (AutoLayout aLayout)