This is an automated email from the ASF dual-hosted git repository.
mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/trunk by this push:
new 939a62546b Cleaned up resource files, removed whitespace
939a62546b is described below
commit 939a62546b9622f36c574146eb96f3c52e672da0
Author: mseidel <[email protected]>
AuthorDate: Sat Jul 9 00:31:46 2022 +0200
Cleaned up resource files, removed whitespace
---
main/sw/source/ui/fldui/DropDownFieldDialog.src | 112 +++++++-----------
main/sw/source/ui/fldui/flddb.src | 148 ++++++++++--------------
main/sw/source/ui/fldui/flddinf.src | 83 +++++--------
main/sw/source/ui/fldui/flddok.src | 106 ++++++-----------
main/sw/source/ui/fldui/fldref.src | 102 ++++++++--------
main/sw/source/ui/fldui/fldtdlg.src | 38 +-----
main/sw/source/ui/fldui/inpdlg.src | 85 +++++---------
7 files changed, 249 insertions(+), 425 deletions(-)
diff --git a/main/sw/source/ui/fldui/DropDownFieldDialog.src
b/main/sw/source/ui/fldui/DropDownFieldDialog.src
index 9875ccc558..f9ff7ab724 100644
--- a/main/sw/source/ui/fldui/DropDownFieldDialog.src
+++ b/main/sw/source/ui/fldui/DropDownFieldDialog.src
@@ -1,5 +1,5 @@
/**************************************************************
- *
+ *
* 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
@@ -7,16 +7,16 @@
* 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
- *
+ *
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
- *
+ *
*************************************************************/
@@ -26,96 +26,66 @@
#include "helpid.h"
ModalDialog DLG_FLD_DROPDOWN
{
- HelpID = HID_FLD_DROPDOWN ;
+ HelpID = HID_FLD_DROPDOWN ;
OutputSize = TRUE ;
Hide = TRUE ;
SVLook = TRUE ;
- Size = MAP_APPFONT ( 194 , 119 ) ;
- Text [ en-US ] = "Choose Item: " ;
+ Size = MAP_APPFONT ( 194, 119 ) ;
+ Text [ en-US ] = "Choose Item: " ;
Moveable = TRUE ;
- FixedLine FL_ITEMS
- {
- Pos = MAP_APPFONT ( 6 , 3 ) ;
- Size = MAP_APPFONT ( 127 , 8 ) ;
- Text [ en-US ] = "Edit" ;
+ FixedLine FL_ITEMS
+ {
+ Pos = MAP_APPFONT ( 6, 3 ) ;
+ Size = MAP_APPFONT ( 127, 8 ) ;
+ Text [ en-US ] = "Edit" ;
};
- ListBox LB_LISTITEMS
- {
- HelpID = "sw:ListBox:DLG_FLD_DROPDOWN:LB_LISTITEMS";
- Border = TRUE ;
- Pos = MAP_APPFONT ( 12 , 14 ) ;
- Size = MAP_APPFONT ( 115 , 99 ) ;
- TabStop = TRUE ;
- Sort = FALSE ;
- AutoHScroll = TRUE ;
- };
- OKButton PB_OK
+ ListBox LB_LISTITEMS
{
- Pos = MAP_APPFONT ( 139 , 6 ) ;
- Size = MAP_APPFONT ( 50 , 14 ) ;
+ HelpID = "sw:ListBox:DLG_FLD_DROPDOWN:LB_LISTITEMS" ;
+ Border = TRUE ;
+ Pos = MAP_APPFONT ( 12, 14 ) ;
+ Size = MAP_APPFONT ( 115, 99 ) ;
+ TabStop = TRUE ;
+ Sort = FALSE ;
+ AutoHScroll = TRUE ;
+ };
+ OKButton PB_OK
+ {
+ Pos = MAP_APPFONT ( 139, 6 ) ;
+ Size = MAP_APPFONT ( 50, 14 ) ;
TabStop = TRUE ;
DefButton = TRUE ;
};
- CancelButton PB_CANCEL
+ CancelButton PB_CANCEL
{
- Pos = MAP_APPFONT ( 139 , 23 ) ;
- Size = MAP_APPFONT ( 50 , 14 ) ;
+ Pos = MAP_APPFONT ( 139, 23 ) ;
+ Size = MAP_APPFONT ( 50, 14 ) ;
TabStop = TRUE ;
};
PushButton PB_NEXT
{
- HelpID = "sw:PushButton:DLG_FLD_DROPDOWN:PB_NEXT";
- Pos = MAP_APPFONT ( 139 , 40 ) ;
- Size = MAP_APPFONT ( 50 , 14 ) ;
+ HelpID = "sw:PushButton:DLG_FLD_DROPDOWN:PB_NEXT" ;
+ Pos = MAP_APPFONT ( 139, 40 ) ;
+ Size = MAP_APPFONT ( 50, 14 ) ;
TabStop = TRUE ;
Hide = TRUE ;
Text [ en-US ] = "~Next" ;
};
HelpButton PB_HELP
{
- Pos = MAP_APPFONT ( 139 , 60 ) ;
- Size = MAP_APPFONT ( 50 , 14 ) ;
+ Pos = MAP_APPFONT ( 139, 60 ) ;
+ Size = MAP_APPFONT ( 50, 14 ) ;
TabStop = TRUE ;
};
- PushButton PB_EDIT
- {
- HelpID = "sw:PushButton:DLG_FLD_DROPDOWN:PB_EDIT";
- Pos = MAP_APPFONT ( 139 , 99 ) ;
- Size = MAP_APPFONT ( 50 , 14 ) ;
- TabStop = TRUE ;
- Text [ en-US ] = "~Edit" ;
+ PushButton PB_EDIT
+ {
+ HelpID = "sw:PushButton:DLG_FLD_DROPDOWN:PB_EDIT" ;
+ Pos = MAP_APPFONT ( 139, 99 ) ;
+ Size = MAP_APPFONT ( 50, 14 ) ;
+ TabStop = TRUE ;
+ Text [ en-US ] = "~Edit" ;
};
};
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+// ********************************************************************** EOF
diff --git a/main/sw/source/ui/fldui/flddb.src
b/main/sw/source/ui/fldui/flddb.src
index 92c5bf4e84..21209bf773 100644
--- a/main/sw/source/ui/fldui/flddb.src
+++ b/main/sw/source/ui/fldui/flddb.src
@@ -1,5 +1,5 @@
/**************************************************************
- *
+ *
* 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
@@ -7,16 +7,16 @@
* 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
- *
+ *
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
- *
+ *
*************************************************************/
@@ -29,24 +29,24 @@ TabPage TP_FLD_DB
HelpID = HID_FLD_DB ;
SVLook = TRUE ;
Hide = TRUE ;
- Size = MAP_APPFONT ( 260 , 185 ) ;
+ Size = MAP_APPFONT ( 260, 185 ) ;
FixedText FT_DBTYPE
{
- Pos = MAP_APPFONT ( 6 , 3 ) ;
- Size = MAP_APPFONT ( 76 , 8 ) ;
+ Pos = MAP_APPFONT ( 6, 3 ) ;
+ Size = MAP_APPFONT ( 76, 8 ) ;
Text [ en-US ] = "~Type" ;
Left = TRUE ;
};
ListBox LB_DBTYPE
{
- HelpID = "sw:ListBox:TP_FLD_DB:LB_DBTYPE";
+ HelpID = "sw:ListBox:TP_FLD_DB:LB_DBTYPE" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 6 , 14 ) ;
- Size = MAP_APPFONT ( 76 , 104 ) ;
+ Pos = MAP_APPFONT ( 6, 14 ) ;
+ Size = MAP_APPFONT ( 76, 104 ) ;
TabStop = TRUE ;
Sort = TRUE ;
AutoHScroll = TRUE ;
- /* StringList =
+ /* StringList =
{
< "Beliebiger Datensatz" ; > ;
< "Datensatznummer" ; > ;
@@ -57,146 +57,114 @@ TabPage TP_FLD_DB
};
FixedText FT_DBCONDITION
{
- Pos = MAP_APPFONT ( 6 , 126 ) ;
- Size = MAP_APPFONT ( 76 , 8 ) ;
+ Pos = MAP_APPFONT ( 6, 126 ) ;
+ Size = MAP_APPFONT ( 76, 8 ) ;
Text [ en-US ] = "~Condition" ;
Left = TRUE ;
};
Edit ED_DBCONDITION
{
- HelpID = "sw:Edit:TP_FLD_DB:ED_DBCONDITION";
+ HelpID = "sw:Edit:TP_FLD_DB:ED_DBCONDITION" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 6 , 137 ) ;
- Size = MAP_APPFONT ( 76 , 12 ) ;
+ Pos = MAP_APPFONT ( 6, 137 ) ;
+ Size = MAP_APPFONT ( 76, 12 ) ;
TabStop = TRUE ;
Left = TRUE ;
};
FixedText FT_DBSETNUMBER
{
- Pos = MAP_APPFONT ( 6 , 156 ) ;
- Size = MAP_APPFONT ( 76 , 8 ) ;
+ Pos = MAP_APPFONT ( 6, 156 ) ;
+ Size = MAP_APPFONT ( 76, 8 ) ;
Text [ en-US ] = "Record number" ;
Left = TRUE ;
};
Edit ED_DBSETNUMBER
{
- HelpID = "sw:Edit:TP_FLD_DB:ED_DBSETNUMBER";
+ HelpID = "sw:Edit:TP_FLD_DB:ED_DBSETNUMBER" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 6 , 167 ) ;
- Size = MAP_APPFONT ( 76 , 12 ) ;
+ Pos = MAP_APPFONT ( 6, 167 ) ;
+ Size = MAP_APPFONT ( 76, 12 ) ;
TabStop = TRUE ;
Left = TRUE ;
};
FixedText FT_DBSELECTION
{
- Pos = MAP_APPFONT ( 88 , 3 ) ;
- Size = MAP_APPFONT ( 166 , 8 ) ;
+ Pos = MAP_APPFONT ( 88, 3 ) ;
+ Size = MAP_APPFONT ( 166, 8 ) ;
Left = TRUE ;
Text [ en-US ] = "Database s~election" ;
};
Control TLB_DBLIST
{
Border = TRUE ;
- Pos = MAP_APPFONT ( 88 , 14 ) ;
- Size = MAP_APPFONT ( 160 , 104 ) ;
+ Pos = MAP_APPFONT ( 88, 14 ) ;
+ Size = MAP_APPFONT ( 160, 104 ) ;
TabStop = TRUE ;
};
- FixedText FT_ADDDB
- {
- Pos = MAP_APPFONT ( 88 , 123) ;
- Size = MAP_APPFONT ( 105 , 8 ) ;
- Text [ en-US ] = "Add database file" ;
- };
- PushButton PB_ADDDB
- {
- HelpID = "sw:PushButton:TP_FLD_DB:PB_ADDDB";
- Pos = MAP_APPFONT ( 198 , 121) ;
- Size = MAP_APPFONT ( 50 , 14 ) ;
- Text [ en-US ] = "Browse..." ;
- };
+ FixedText FT_ADDDB
+ {
+ Pos = MAP_APPFONT ( 88, 123) ;
+ Size = MAP_APPFONT ( 105, 8 ) ;
+ Text [ en-US ] = "Add database file" ;
+ };
+ PushButton PB_ADDDB
+ {
+ HelpID = "sw:PushButton:TP_FLD_DB:PB_ADDDB" ;
+ Pos = MAP_APPFONT ( 198, 121) ;
+ Size = MAP_APPFONT ( 50, 14 ) ;
+ Text [ en-US ] = "Browse..." ;
+ };
RadioButton RB_DBOWNFORMAT
{
- HelpID = "sw:RadioButton:TP_FLD_DB:RB_DBOWNFORMAT";
- Pos = MAP_APPFONT ( 94 , 153 ) ;
- Size = MAP_APPFONT ( 150 , 10 ) ;
+ HelpID = "sw:RadioButton:TP_FLD_DB:RB_DBOWNFORMAT" ;
+ Pos = MAP_APPFONT ( 94, 153 ) ;
+ Size = MAP_APPFONT ( 150, 10 ) ;
Check = TRUE ;
Text [ en-US ] = "From database" ;
};
RadioButton RB_DBFORMAT
{
- HelpID = "sw:RadioButton:TP_FLD_DB:RB_DBFORMAT";
- Pos = MAP_APPFONT ( 94 , 166 ) ;
- Size = MAP_APPFONT ( 100 , 10 ) ;
+ HelpID = "sw:RadioButton:TP_FLD_DB:RB_DBFORMAT" ;
+ Pos = MAP_APPFONT ( 94, 166 ) ;
+ Size = MAP_APPFONT ( 100, 10 ) ;
Text [ en-US ] = "User-defined" ;
};
ListBox LB_DBNUMFORMAT
{
- HelpID = "sw:ListBox:TP_FLD_DB:LB_DBNUMFORMAT";
+ HelpID = "sw:ListBox:TP_FLD_DB:LB_DBNUMFORMAT" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 195 , 164 ) ;
- Size = MAP_APPFONT ( 53 , 60 ) ;
+ Pos = MAP_APPFONT ( 195, 164 ) ;
+ Size = MAP_APPFONT ( 53, 60 ) ;
TabStop = TRUE ;
AutoHScroll = TRUE ;
DropDown = TRUE ;
};
ListBox LB_DBFORMAT
{
- HelpID = "sw:ListBox:TP_FLD_DB:LB_DBFORMAT";
+ HelpID = "sw:ListBox:TP_FLD_DB:LB_DBFORMAT" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 195 , 163 ) ;
- Size = MAP_APPFONT ( 53 , 60 ) ;
+ Pos = MAP_APPFONT ( 195, 163 ) ;
+ Size = MAP_APPFONT ( 53, 60 ) ;
TabStop = TRUE ;
AutoHScroll = TRUE ;
DropDown = TRUE ;
Sort = FALSE ;
Hide = TRUE ;
};
- FixedLine FL_DBFORMAT
+ FixedLine FL_DBFORMAT
{
- Pos = MAP_APPFONT ( 88 , 141 ) ;
- Size = MAP_APPFONT ( 166 , 8 ) ;
+ Pos = MAP_APPFONT ( 88, 141 ) ;
+ Size = MAP_APPFONT ( 166, 8 ) ;
Text [ en-US ] = "Format" ;
};
- FixedLine FL_DBFORMAT_VERT
+ FixedLine FL_DBFORMAT_VERT
{
- Pos = MAP_APPFONT ( 87 , 152 ) ;
- Size = MAP_APPFONT ( 4 , 28 ) ;
- Vert = TRUE;
+ Pos = MAP_APPFONT ( 87, 152 ) ;
+ Size = MAP_APPFONT ( 4, 28 ) ;
+ Vert = TRUE;
};
Text [ en-US ] = "Database" ;
};
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+// ********************************************************************** EOF
diff --git a/main/sw/source/ui/fldui/flddinf.src
b/main/sw/source/ui/fldui/flddinf.src
index 5a73470d42..77d9e79df7 100644
--- a/main/sw/source/ui/fldui/flddinf.src
+++ b/main/sw/source/ui/fldui/flddinf.src
@@ -1,5 +1,5 @@
/**************************************************************
- *
+ *
* 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
@@ -7,16 +7,16 @@
* 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
- *
+ *
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
- *
+ *
*************************************************************/
@@ -29,64 +29,64 @@ TabPage TP_FLD_DOKINF
HelpID = HID_FLD_DOKINF ;
SVLook = TRUE ;
Hide = TRUE ;
- Size = MAP_APPFONT ( 260 , 185 ) ;
+ Size = MAP_APPFONT ( 260, 185 ) ;
FixedText FT_DOKINFTYPE
{
- Pos = MAP_APPFONT ( 6 , 3 ) ;
- Size = MAP_APPFONT ( 76 , 8 ) ;
+ Pos = MAP_APPFONT ( 6, 3 ) ;
+ Size = MAP_APPFONT ( 76, 8 ) ;
Text [ en-US ] = "~Type" ;
Left = TRUE ;
};
Control TLB_DOKINFTYPE
{
Border = TRUE ;
- Pos = MAP_APPFONT ( 6 , 16 ) ;
- Size = MAP_APPFONT ( 76 , 163 ) ;
+ Pos = MAP_APPFONT ( 6, 16 ) ;
+ Size = MAP_APPFONT ( 76, 163 ) ;
TabStop = TRUE ;
};
FixedText FT_DOKINFSELECTION
{
- Pos = MAP_APPFONT ( 88 , 3 ) ;
- Size = MAP_APPFONT ( 76 , 8 ) ;
+ Pos = MAP_APPFONT ( 88, 3 ) ;
+ Size = MAP_APPFONT ( 76, 8 ) ;
Text [ en-US ] = "S~elect" ;
Left = TRUE ;
};
ListBox LB_DOKINFSELECTION
{
- HelpID = "sw:ListBox:TP_FLD_DOKINF:LB_DOKINFSELECTION";
+ HelpID = "sw:ListBox:TP_FLD_DOKINF:LB_DOKINFSELECTION" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 88 , 16 ) ;
- Size = MAP_APPFONT ( 76 , 163 ) ;
+ Pos = MAP_APPFONT ( 88, 16 ) ;
+ Size = MAP_APPFONT ( 76, 163 ) ;
TabStop = TRUE ;
StringList [ en-US ] =
{
- < "Author" ; > ;
- < "Time" ; > ;
- < "Date" ; > ;
- < "Date Time Author" ; > ;
+ < "Author" ; > ;
+ < "Time" ; > ;
+ < "Date" ; > ;
+ < "Date Time Author" ; > ;
};
};
FixedText FT_DOKINFFORMAT
{
- Pos = MAP_APPFONT ( 170 , 3 ) ;
- Size = MAP_APPFONT ( 84 , 8 ) ;
+ Pos = MAP_APPFONT ( 170, 3 ) ;
+ Size = MAP_APPFONT ( 84, 8 ) ;
Left = TRUE ;
Text [ en-US ] = "F~ormat" ;
};
ListBox LB_DOKINFFORMAT
{
- HelpID = "sw:ListBox:TP_FLD_DOKINF:LB_DOKINFFORMAT";
+ HelpID = "sw:ListBox:TP_FLD_DOKINF:LB_DOKINFFORMAT" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 170 , 16 ) ;
- Size = MAP_APPFONT ( 84 , 148 ) ;
+ Pos = MAP_APPFONT ( 170, 16 ) ;
+ Size = MAP_APPFONT ( 84, 148 ) ;
TabStop = TRUE ;
AutoHScroll = TRUE ;
};
CheckBox CB_DOKINFFIXEDCONTENT
{
- HelpID = "sw:CheckBox:TP_FLD_DOKINF:CB_DOKINFFIXEDCONTENT";
- Pos = MAP_APPFONT ( 170 , 170 ) ;
- Size = MAP_APPFONT ( 72 , 10 ) ;
+ HelpID = "sw:CheckBox:TP_FLD_DOKINF:CB_DOKINFFIXEDCONTENT" ;
+ Pos = MAP_APPFONT ( 170, 170 ) ;
+ Size = MAP_APPFONT ( 72, 10 ) ;
TabStop = TRUE ;
Text [ en-US ] = "~Fixed content" ;
};
@@ -105,33 +105,4 @@ TabPage TP_FLD_DOKINF
Text [ en-US ] = "DocInformation" ;
};
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+// ********************************************************************** EOF
diff --git a/main/sw/source/ui/fldui/flddok.src
b/main/sw/source/ui/fldui/flddok.src
index 317ca6b230..a2500ece3a 100644
--- a/main/sw/source/ui/fldui/flddok.src
+++ b/main/sw/source/ui/fldui/flddok.src
@@ -1,5 +1,5 @@
/**************************************************************
- *
+ *
* 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
@@ -7,16 +7,16 @@
* 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
- *
+ *
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
- *
+ *
*************************************************************/
@@ -29,52 +29,52 @@ TabPage TP_FLD_DOK
HelpID = HID_FLD_DOK ;
SVLook = TRUE ;
Hide = TRUE ;
- Size = MAP_APPFONT ( 260 , 185 ) ;
+ Size = MAP_APPFONT ( 260, 185 ) ;
FixedText FT_DOKTYPE
{
- Pos = MAP_APPFONT ( 6 , 3 ) ;
- Size = MAP_APPFONT ( 76 , 8 ) ;
+ Pos = MAP_APPFONT ( 6, 3 ) ;
+ Size = MAP_APPFONT ( 76, 8 ) ;
Text [ en-US ] = "~Type" ;
Left = TRUE ;
};
ListBox LB_DOKTYPE
{
- HelpID = "sw:ListBox:TP_FLD_DOK:LB_DOKTYPE";
+ HelpID = "sw:ListBox:TP_FLD_DOK:LB_DOKTYPE" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 6 , 14 ) ;
- Size = MAP_APPFONT ( 76 , 165 ) ;
+ Pos = MAP_APPFONT ( 6, 14 ) ;
+ Size = MAP_APPFONT ( 76, 165 ) ;
TabStop = TRUE ;
Sort = TRUE ;
AutoHScroll = TRUE ;
};
FixedText FT_DOKSELECTION
{
- Pos = MAP_APPFONT ( 88 , 3 ) ;
- Size = MAP_APPFONT ( 76 , 8 ) ;
+ Pos = MAP_APPFONT ( 88, 3 ) ;
+ Size = MAP_APPFONT ( 76, 8 ) ;
Text [ en-US ] = "S~elect" ;
Left = TRUE ;
};
ListBox LB_DOKSELECTION
{
- HelpID = "sw:ListBox:TP_FLD_DOK:LB_DOKSELECTION";
+ HelpID = "sw:ListBox:TP_FLD_DOK:LB_DOKSELECTION" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 88 , 15 ) ;
- Size = MAP_APPFONT ( 76 , 165 ) ;
+ Pos = MAP_APPFONT ( 88, 15 ) ;
+ Size = MAP_APPFONT ( 76, 165 ) ;
TabStop = TRUE ;
};
FixedText FT_DOKFORMAT
{
- Pos = MAP_APPFONT ( 170 , 3 ) ;
- Size = MAP_APPFONT ( 84 , 8 ) ;
+ Pos = MAP_APPFONT ( 170, 3 ) ;
+ Size = MAP_APPFONT ( 84, 8 ) ;
Left = TRUE ;
Text [ en-US ] = "F~ormat" ;
};
ListBox LB_DOKFORMAT
{
- HelpID = "sw:ListBox:TP_FLD_DOK:LB_DOKFORMAT";
+ HelpID = "sw:ListBox:TP_FLD_DOK:LB_DOKFORMAT" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 170 , 14 ) ;
- Size = MAP_APPFONT ( 84 , 151 ) ;
+ Pos = MAP_APPFONT ( 170, 14 ) ;
+ Size = MAP_APPFONT ( 84, 151 ) ;
TabStop = TRUE ;
DropDown = FALSE ;
Sort = TRUE ;
@@ -82,38 +82,38 @@ TabPage TP_FLD_DOK
};
ListBox LB_DOKNUMFORMAT
{
- HelpID = "sw:ListBox:TP_FLD_DOK:LB_DOKNUMFORMAT";
+ HelpID = "sw:ListBox:TP_FLD_DOK:LB_DOKNUMFORMAT" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 170 , 14 ) ;
- Size = MAP_APPFONT ( 84 , 151 ) ;
+ Pos = MAP_APPFONT ( 170, 14 ) ;
+ Size = MAP_APPFONT ( 84, 151 ) ;
TabStop = TRUE ;
AutoHScroll = TRUE ;
Hide = TRUE ;
};
FixedText FT_DOKVALUE
{
- Pos = MAP_APPFONT ( 170 , 155 ) ;
- Size = MAP_APPFONT ( 84 , 8 ) ;
+ Pos = MAP_APPFONT ( 170, 155 ) ;
+ Size = MAP_APPFONT ( 84, 8 ) ;
Text [ en-US ] = "O~ffset" ;
Left = TRUE ;
Hide = TRUE ;
};
Edit ED_DOKVALUE
{
- HelpID = "sw:Edit:TP_FLD_DOK:ED_DOKVALUE";
+ HelpID = "sw:Edit:TP_FLD_DOK:ED_DOKVALUE" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 170 , 167 ) ;
- Size = MAP_APPFONT ( 84 , 12 ) ;
+ Pos = MAP_APPFONT ( 170, 167 ) ;
+ Size = MAP_APPFONT ( 84, 12 ) ;
TabStop = TRUE ;
Left = TRUE ;
Hide = TRUE ;
};
NumericField ED_DOKLEVEL
{
- HelpID = "sw:NumericField:TP_FLD_DOK:ED_DOKLEVEL";
+ HelpID = "sw:NumericField:TP_FLD_DOK:ED_DOKLEVEL" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 170 , 167 ) ;
- Size = MAP_APPFONT ( 84 , 12 ) ;
+ Pos = MAP_APPFONT ( 170, 167 ) ;
+ Size = MAP_APPFONT ( 84, 12 ) ;
Text = "1" ;
TabStop = TRUE ;
Left = TRUE ;
@@ -127,10 +127,10 @@ TabPage TP_FLD_DOK
};
NumericField ED_DOKDATEOFF
{
- HelpID = "sw:NumericField:TP_FLD_DOK:ED_DOKDATEOFF";
+ HelpID = "sw:NumericField:TP_FLD_DOK:ED_DOKDATEOFF" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 170 , 167 ) ;
- Size = MAP_APPFONT ( 84 , 12 ) ;
+ Pos = MAP_APPFONT ( 170, 167 ) ;
+ Size = MAP_APPFONT ( 84, 12 ) ;
Text = "0" ;
TabStop = TRUE ;
Left = TRUE ;
@@ -141,9 +141,9 @@ TabPage TP_FLD_DOK
};
CheckBox CB_DOKFIXEDCONTENT
{
- HelpID = "sw:CheckBox:TP_FLD_DOK:CB_DOKFIXEDCONTENT";
- Pos = MAP_APPFONT ( 170 , 170 ) ;
- Size = MAP_APPFONT ( 72 , 10 ) ;
+ HelpID = "sw:CheckBox:TP_FLD_DOK:CB_DOKFIXEDCONTENT" ;
+ Pos = MAP_APPFONT ( 170, 170 ) ;
+ Size = MAP_APPFONT ( 72, 10 ) ;
TabStop = TRUE ;
Text [ en-US ] = "~Fixed content" ;
};
@@ -166,34 +166,4 @@ TabPage TP_FLD_DOK
Text [ en-US ] = "Document" ;
};
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+// ********************************************************************** EOF
diff --git a/main/sw/source/ui/fldui/fldref.src
b/main/sw/source/ui/fldui/fldref.src
index 496ff4d86b..54d8350a9c 100644
--- a/main/sw/source/ui/fldui/fldref.src
+++ b/main/sw/source/ui/fldui/fldref.src
@@ -1,5 +1,5 @@
/**************************************************************
- *
+ *
* 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
@@ -7,16 +7,16 @@
* 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
- *
+ *
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
- *
+ *
*************************************************************/
@@ -29,95 +29,95 @@ TabPage TP_FLD_REF
HelpID = HID_FLD_REF ;
SVLook = TRUE ;
Hide = TRUE ;
- Size = MAP_APPFONT ( 260 , 185 ) ;
+ Size = MAP_APPFONT ( 260, 185 ) ;
FixedText FT_REFTYPE
{
- Pos = MAP_APPFONT ( 6 , 3 ) ;
- Size = MAP_APPFONT ( 76 , 8 ) ;
+ Pos = MAP_APPFONT ( 6, 3 ) ;
+ Size = MAP_APPFONT ( 76, 8 ) ;
Text [ en-US ] = "~Type" ;
Left = TRUE ;
};
ListBox LB_REFTYPE
{
- HelpID = "sw:ListBox:TP_FLD_REF:LB_REFTYPE";
+ HelpID = "sw:ListBox:TP_FLD_REF:LB_REFTYPE" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 6 , 14 ) ;
- Size = MAP_APPFONT ( 76 , 73 ) ;
+ Pos = MAP_APPFONT ( 6, 14 ) ;
+ Size = MAP_APPFONT ( 76, 73 ) ;
TabStop = TRUE ;
AutoHScroll = TRUE ;
};
FixedText FT_REFSELECTION
{
- Pos = MAP_APPFONT ( 88 , 3 ) ;
- Size = MAP_APPFONT ( 76 , 8 ) ;
+ Pos = MAP_APPFONT ( 88, 3 ) ;
+ Size = MAP_APPFONT ( 76, 8 ) ;
Text [ en-US ] = "S~election" ;
Left = TRUE ;
};
ListBox LB_REFSELECTION
{
- HelpID = "sw:ListBox:TP_FLD_REF:LB_REFSELECTION";
+ HelpID = "sw:ListBox:TP_FLD_REF:LB_REFSELECTION" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 88 , 14 ) ;
- Size = MAP_APPFONT ( 166 , 136 ) ;
+ Pos = MAP_APPFONT ( 88, 14 ) ;
+ Size = MAP_APPFONT ( 166, 136 ) ;
TabStop = TRUE ;
Sort = TRUE ;
};
- /* TreeListBox in order to have tool tips - shares window position and
size with LB_REFSELECTION */
- Control LB_REFSELECTION_TOOLTIP
- {
- HelpID = HID_REFSELECTION_TOOLTIP ;
- Border = TRUE ;
- Pos = MAP_APPFONT ( 88 , 14 ) ;
- Size = MAP_APPFONT ( 166 , 136 ) ;
- TabStop = TRUE ;
- };
+ /* TreeListBox in order to have tool tips - shares window position and
size with LB_REFSELECTION */
+ Control LB_REFSELECTION_TOOLTIP
+ {
+ HelpID = HID_REFSELECTION_TOOLTIP ;
+ Border = TRUE ;
+ Pos = MAP_APPFONT ( 88, 14 ) ;
+ Size = MAP_APPFONT ( 166, 136 ) ;
+ TabStop = TRUE ;
+ };
FixedText FT_REFFORMAT
{
- Pos = MAP_APPFONT ( 6 , 93 ) ;
- Size = MAP_APPFONT ( 76 , 8 ) ;
+ Pos = MAP_APPFONT ( 6, 93 ) ;
+ Size = MAP_APPFONT ( 76, 8 ) ;
Left = TRUE ;
- Text [ en-US ] = "Insert ~reference to" ;
+ Text [ en-US ] = "Insert ~reference to" ;
};
ListBox LB_REFFORMAT
{
- HelpID = "sw:ListBox:TP_FLD_REF:LB_REFFORMAT";
+ HelpID = "sw:ListBox:TP_FLD_REF:LB_REFFORMAT" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 6 , 104 ) ;
- Size = MAP_APPFONT ( 76 , 75 ) ;
+ Pos = MAP_APPFONT ( 6, 104 ) ;
+ Size = MAP_APPFONT ( 76, 75 ) ;
TabStop = TRUE ;
DropDown = FALSE ;
- // Sort = TRUE;
+ //Sort = TRUE;
};
FixedText FT_REFNAME
{
- Pos = MAP_APPFONT ( 88 , 155 ) ;
- Size = MAP_APPFONT ( 80 , 10 ) ;
+ Pos = MAP_APPFONT ( 88, 155 ) ;
+ Size = MAP_APPFONT ( 80, 10 ) ;
Left = TRUE ;
Text [ en-US ] = "Na~me" ;
};
Edit ED_REFNAME
{
- HelpID = "sw:Edit:TP_FLD_REF:ED_REFNAME";
+ HelpID = "sw:Edit:TP_FLD_REF:ED_REFNAME" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 88 , 167 ) ;
- Size = MAP_APPFONT ( 80 , 12 ) ;
+ Pos = MAP_APPFONT ( 88, 167 ) ;
+ Size = MAP_APPFONT ( 80, 12 ) ;
TabStop = TRUE ;
Left = TRUE ;
};
FixedText FT_REFVALUE
{
- Pos = MAP_APPFONT ( 174 , 155 ) ;
- Size = MAP_APPFONT ( 80 , 8 ) ;
+ Pos = MAP_APPFONT ( 174, 155 ) ;
+ Size = MAP_APPFONT ( 80, 8 ) ;
Text [ en-US ] = "~Value" ;
Disable = TRUE ;
Left = TRUE ;
};
Edit ED_REFVALUE
{
- HelpID = "sw:Edit:TP_FLD_REF:ED_REFVALUE";
+ HelpID = "sw:Edit:TP_FLD_REF:ED_REFVALUE" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 174 , 167 ) ;
- Size = MAP_APPFONT ( 80 , 12 ) ;
+ Pos = MAP_APPFONT ( 174, 167 ) ;
+ Size = MAP_APPFONT ( 80, 12 ) ;
TabStop = TRUE ;
Disable = TRUE ;
Left = TRUE ;
@@ -134,13 +134,15 @@ TabPage TP_FLD_REF
{
Text [ en-US ] = "Endnotes" ;
};
- String STR_REFHEADING
- {
- Text [ en-US ] = "Headings" ;
- };
- String STR_REFNUMITEM
- {
- Text [ en-US ] = "Numbered Paragraphs" ;
- };
- Text [ en-US ] = "Cross-references" ;
+ String STR_REFHEADING
+ {
+ Text [ en-US ] = "Headings" ;
+ };
+ String STR_REFNUMITEM
+ {
+ Text [ en-US ] = "Numbered Paragraphs" ;
+ };
+ Text [ en-US ] = "Cross-references" ;
};
+
+// ********************************************************************** EOF
diff --git a/main/sw/source/ui/fldui/fldtdlg.src
b/main/sw/source/ui/fldui/fldtdlg.src
index 7040f2bc42..0822a10ae6 100644
--- a/main/sw/source/ui/fldui/fldtdlg.src
+++ b/main/sw/source/ui/fldui/fldtdlg.src
@@ -1,5 +1,5 @@
/**************************************************************
- *
+ *
* 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
@@ -7,16 +7,16 @@
* 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
- *
+ *
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
- *
+ *
*************************************************************/
@@ -46,7 +46,7 @@ TabDialog DLG_FLD_INSERT
{
Identifier = TP_FLD_REF ;
PageResID = TP_FLD_REF ;
- Text [ en-US ] = "Cross-references" ;
+ Text [ en-US ] = "Cross-references" ;
};
PageItem
{
@@ -85,30 +85,4 @@ TabDialog DLG_FLD_INSERT
Text [ en-US ] = "Fields" ;
};
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+// ********************************************************************** EOF
diff --git a/main/sw/source/ui/fldui/inpdlg.src
b/main/sw/source/ui/fldui/inpdlg.src
index 5d40feed70..28a475f389 100644
--- a/main/sw/source/ui/fldui/inpdlg.src
+++ b/main/sw/source/ui/fldui/inpdlg.src
@@ -1,5 +1,5 @@
/**************************************************************
- *
+ *
* 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
@@ -7,16 +7,16 @@
* 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
- *
+ *
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
- *
+ *
*************************************************************/
@@ -30,22 +30,22 @@ ModalDialog DLG_FLD_INPUT
OutputSize = TRUE ;
Hide = TRUE ;
SVLook = TRUE ;
- Size = MAP_APPFONT ( 194 , 119 ) ;
+ Size = MAP_APPFONT ( 194, 119 ) ;
Text [ en-US ] = "Input Field" ;
Moveable = TRUE ;
- /* FixedText FT_LABEL
+ /* FixedText FT_LABEL
{
- Pos = MAP_APPFONT ( 12 , 14 ) ;
- Size = MAP_APPFONT ( 115 , 8 ) ;
+ Pos = MAP_APPFONT ( 12, 14 ) ;
+ Size = MAP_APPFONT ( 115, 8 ) ;
Text [ en-US ] = "Input" ;
Left = TRUE ;
};*/
Edit ED_LABEL
{
- HelpID = "sw:Edit:DLG_FLD_INPUT:ED_LABEL";
+ HelpID = "sw:Edit:DLG_FLD_INPUT:ED_LABEL" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 12 , 14 ) ;
- Size = MAP_APPFONT ( 115 , 12 ) ;
+ Pos = MAP_APPFONT ( 12, 14 ) ;
+ Size = MAP_APPFONT ( 115, 12 ) ;
TabStop = TRUE ;
Left = TRUE ;
Text [ en-US ] = "Input" ;
@@ -53,78 +53,47 @@ ModalDialog DLG_FLD_INPUT
};
MultiLineEdit ED_EDIT
{
- HelpID = "sw:MultiLineEdit:DLG_FLD_INPUT:ED_EDIT";
+ HelpID = "sw:MultiLineEdit:DLG_FLD_INPUT:ED_EDIT" ;
Border = TRUE ;
- Pos = MAP_APPFONT ( 12 , 32 ) ;
- Size = MAP_APPFONT ( 115 , 72 ) ;
+ Pos = MAP_APPFONT ( 12, 32 ) ;
+ Size = MAP_APPFONT ( 115, 72 ) ;
TabStop = TRUE ;
Left = TRUE ;
};
- FixedLine FL_EDIT
+ FixedLine FL_EDIT
{
- Pos = MAP_APPFONT ( 6 , 3 ) ;
- Size = MAP_APPFONT ( 127 , 8 ) ;
+ Pos = MAP_APPFONT ( 6, 3 ) ;
+ Size = MAP_APPFONT ( 127, 8 ) ;
Text [ en-US ] = "Edit" ;
};
OKButton BT_OK
{
- Pos = MAP_APPFONT ( 139 , 6 ) ;
- Size = MAP_APPFONT ( 50 , 15 ) ;
+ Pos = MAP_APPFONT ( 139, 6 ) ;
+ Size = MAP_APPFONT ( 50, 15 ) ;
TabStop = TRUE ;
DefButton = TRUE ;
};
CancelButton BT_CANCEL
{
- Pos = MAP_APPFONT ( 139 , 23 ) ;
- Size = MAP_APPFONT ( 50 , 15 ) ;
+ Pos = MAP_APPFONT ( 139, 23 ) ;
+ Size = MAP_APPFONT ( 50, 15 ) ;
TabStop = TRUE ;
};
PushButton PB_NEXT
{
- HelpID = "sw:PushButton:DLG_FLD_INPUT:PB_NEXT";
- Pos = MAP_APPFONT ( 139 , 40 ) ;
- Size = MAP_APPFONT ( 50 , 15 ) ;
+ HelpID = "sw:PushButton:DLG_FLD_INPUT:PB_NEXT" ;
+ Pos = MAP_APPFONT ( 139, 40 ) ;
+ Size = MAP_APPFONT ( 50, 15 ) ;
TabStop = TRUE ;
Hide = TRUE ;
Text [ en-US ] = "~Next" ;
};
HelpButton PB_HELP
{
- Pos = MAP_APPFONT ( 139 , 60 ) ;
- Size = MAP_APPFONT ( 50 , 15 ) ;
+ Pos = MAP_APPFONT ( 139, 60 ) ;
+ Size = MAP_APPFONT ( 50, 15 ) ;
TabStop = TRUE ;
};
};
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+// ********************************************************************** EOF