diff options
author | Gulsah Kose <gulsah.1004@gmail.com> | 2015-10-13 00:53:25 +0300 |
---|---|---|
committer | Oliver Specht <oliver.specht@cib.de> | 2015-11-01 17:41:55 +0000 |
commit | c2a76550a287adf8bdbe93c02395fb80cb11c950 (patch) | |
tree | 49f82b1d8b8e622966cf71f2436f72ecce42eff9 /sw/source/uibase/app/swmodule.cxx | |
parent | 707f416192d5a0ca5fa96f7e141c988060b0f292 (diff) |
tdf#80657 Adding new field to jump to specific page.
This patch is not completed. It adds a dropdown field to toolbar.
When you click it, the page preview focuses third page (hard coded).
This patch's purpose is getting information from developers how to
add numbers to dropdown field.
--
v2: Removed unnecessary MV_SPECIFIC_PAGE case.
v3: Added dropdown field and defined new controller for new field.
v4: Implemented page focus who user want.
v5: Used NumericField instead of Combobox and added page count control
v6: Used nSlotId instead of SID_JUMP_TO_SPECIFIC_PAGE in order to fix macOs build error.
Change-Id: I722fbffcc72a1bcee70065e2e9369b73ab27f100
Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/19335
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'sw/source/uibase/app/swmodule.cxx')
-rw-r--r-- | sw/source/uibase/app/swmodule.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/uibase/app/swmodule.cxx b/sw/source/uibase/app/swmodule.cxx index c213443bfa98..9be3159c792f 100644 --- a/sw/source/uibase/app/swmodule.cxx +++ b/sw/source/uibase/app/swmodule.cxx @@ -383,6 +383,7 @@ void SwDLL::RegisterControls() SvxSmartTagsControl::RegisterControl(SID_OPEN_SMARTTAGMENU, pMod); ::sfx2::sidebar::SidebarChildWindow::RegisterChildWindow(false, pMod); ::sfx2::TaskPaneWrapper::RegisterChildWindow(false, pMod); + SwJumpToSpecificPageControl::RegisterControl(SID_JUMP_TO_SPECIFIC_PAGE, pMod); } // Load Module (only dummy for linking of the DLL) |