Kaydet (Commit) f046e85c authored tarafından Caolán McNamara's avatar Caolán McNamara

convert end/footnote dialog to .ui

Change-Id: I22c7e030a77f125f70b1b532b3c07c5a405b18b0
üst 41946925
...@@ -15,6 +15,8 @@ $(eval $(call gb_UI_add_uifiles,modules/swriter,\ ...@@ -15,6 +15,8 @@ $(eval $(call gb_UI_add_uifiles,modules/swriter,\
sw/uiconfig/swriter/ui/charurlpage \ sw/uiconfig/swriter/ui/charurlpage \
sw/uiconfig/swriter/ui/columnwidth \ sw/uiconfig/swriter/ui/columnwidth \
sw/uiconfig/swriter/ui/converttexttable \ sw/uiconfig/swriter/ui/converttexttable \
sw/uiconfig/swriter/ui/endnotepage \
sw/uiconfig/swriter/ui/footnotepage \
sw/uiconfig/swriter/ui/horizontalrule \ sw/uiconfig/swriter/ui/horizontalrule \
sw/uiconfig/swriter/ui/indexentry \ sw/uiconfig/swriter/ui/indexentry \
sw/uiconfig/swriter/ui/insertbreak \ sw/uiconfig/swriter/ui/insertbreak \
......
...@@ -189,8 +189,6 @@ ...@@ -189,8 +189,6 @@
#define HID_OPTSHDWCRSR "SW_HID_OPTSHDWCRSR" #define HID_OPTSHDWCRSR "SW_HID_OPTSHDWCRSR"
#define HID_NUM_POSITION "SW_HID_NUM_POSITION" #define HID_NUM_POSITION "SW_HID_NUM_POSITION"
#define HID_NUMPARA "SW_HID_NUMPARA" #define HID_NUMPARA "SW_HID_NUMPARA"
#define HID_FOOTNOTE_OPTIONS "SW_HID_FOOTNOTE_OPTIONS"
#define HID_ENDNOTE_OPTIONS "SW_HID_ENDNOTE_OPTIONS"
#define HID_REDLINE_OPT "SW_HID_REDLINE_OPT" #define HID_REDLINE_OPT "SW_HID_REDLINE_OPT"
#define HID_REDLINE_ACCEPT "SW_HID_REDLINE_ACCEPT" #define HID_REDLINE_ACCEPT "SW_HID_REDLINE_ACCEPT"
#define HID_EDIT_FLD_DB "SW_HID_EDIT_FLD_DB" #define HID_EDIT_FLD_DB "SW_HID_EDIT_FLD_DB"
......
This diff is collapsed.
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#define RB_POS_PAGE 1
#define RB_POS_CHAPTER 2
#define FT_POS 3
#define FT_NUMTYPE 4
#define FT_NUMCOUNT 5
#define LB_NUMVIEW 10
#define LB_NUMCOUNT 11
#define FLD_OFFSET 12
#define FT_OFFSET 13
#define FL_NUM 14
#define LB_PARA_TEMPL 30
#define LB_PAGE_TEMPL 31
#define FT_PARA_TEMPL 32
#define FT_PAGE_TEMPL 33
#define FL_TEMPL 34
#define FT_CONT 40
#define ED_CONT 41
#define FT_CONT_FROM 42
#define ED_CONT_FROM 43
#define FL_CONT 44
#define FT_PREFIX 45
#define ED_PREFIX 46
#define FT_SUFFIX 47
#define ED_SUFFIX 48
#define FT_TEXT_CHARFMT 49
#define LB_TEXT_CHARFMT 50
#define FT_ANCHR_CHARFMT 51
#define FL_CHAR_TEMPL 52
#define LB_ANCHR_CHARFMT 53
This diff is collapsed.
...@@ -39,38 +39,27 @@ class SwWrtShell; ...@@ -39,38 +39,27 @@ class SwWrtShell;
class SwEndNoteOptionPage : public SfxTabPage class SwEndNoteOptionPage : public SfxTabPage
{ {
FixedLine aNumFL; SwNumberingTypeListBox* m_pNumViewBox;
FixedText aNumTypeFT; FixedText* m_pOffsetLbl;
SwNumberingTypeListBox aNumViewBox; NumericField* m_pOffsetFld;
FixedText aOffsetLbl; ListBox* m_pNumCountBox;
NumericField aOffsetFld; Edit* m_pPrefixED;
FixedText aNumCountFT; Edit* m_pSuffixED;
ListBox aNumCountBox; FixedText* m_pPosFT;
FixedText aPrefixFT; RadioButton* m_pPosPageBox;
Edit aPrefixED; RadioButton* m_pPosChapterBox;
FixedText aSuffixFT;
Edit aSuffixED; VclContainer *m_pStylesContainer;
FixedText aPosFT;
RadioButton aPosPageBox; ListBox* m_pParaTemplBox;
RadioButton aPosChapterBox; FixedText* m_pPageTemplLbl;
ListBox* m_pPageTemplBox;
FixedLine aTemplFL;
FixedText aParaTemplLbl; ListBox* m_pFtnCharAnchorTemplBox;
ListBox aParaTemplBox; ListBox* m_pFtnCharTextTemplBox;
FixedText aPageTemplLbl;
ListBox aPageTemplBox; Edit* m_pContEdit;
Edit* m_pContFromEdit;
FixedLine aCharTemplFL;
FixedText aFtnCharAnchorTemplLbl;
ListBox aFtnCharAnchorTemplBox;
FixedText aFtnCharTextTemplLbl;
ListBox aFtnCharTextTemplBox;
FixedLine aContFL;
FixedText aContLbl;
Edit aContEdit;
FixedText aContFromLbl;
Edit aContFromEdit;
String aNumDoc; String aNumDoc;
String aNumPage; String aNumPage;
......
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment