xref: /trunk/main/sw/source/ui/misc/pgfnote.src (revision 1dc02f043ad2b10d45a55f5fe4b08519e64d210d)
18660f102SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
38660f102SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
48660f102SAndrew Rist * or more contributor license agreements.  See the NOTICE file
58660f102SAndrew Rist * distributed with this work for additional information
68660f102SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
78660f102SAndrew Rist * to you under the Apache License, Version 2.0 (the
88660f102SAndrew Rist * "License"); you may not use this file except in compliance
98660f102SAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
118660f102SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
138660f102SAndrew Rist * Unless required by applicable law or agreed to in writing,
148660f102SAndrew Rist * software distributed under the License is distributed on an
158660f102SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
168660f102SAndrew Rist * KIND, either express or implied.  See the License for the
178660f102SAndrew Rist * specific language governing permissions and limitations
188660f102SAndrew Rist * under the License.
19cdf0e10cSrcweir *
208660f102SAndrew Rist *************************************************************/
218660f102SAndrew Rist
228660f102SAndrew Rist
23*1dc02f04Smseidel
24cdf0e10cSrcweir#include "globals.hrc"
25cdf0e10cSrcweir#include "pgfnote.hrc"
26cdf0e10cSrcweir#include "helpid.h"
27cdf0e10cSrcweirTabPage TP_FOOTNOTE_PAGE
28cdf0e10cSrcweir{
29cdf0e10cSrcweir    HelpID = HID_FOOTNOTE_PAGE ;
30cdf0e10cSrcweir    Pos = MAP_APPFONT ( 0, 0 ) ;
31cdf0e10cSrcweir    Size = MAP_APPFONT ( 260, 185 ) ;
32cdf0e10cSrcweir    Hide = TRUE ;
33cdf0e10cSrcweir    RadioButton RB_MAXHEIGHT_PAGE
34cdf0e10cSrcweir    {
35cdf0e10cSrcweir        HelpID = "sw:RadioButton:TP_FOOTNOTE_PAGE:RB_MAXHEIGHT_PAGE" ;
36cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 14 ) ;
37cdf0e10cSrcweir        Size = MAP_APPFONT ( 132, 10 ) ;
38cdf0e10cSrcweir        Text [ en-US ] = "~Not larger than page area" ;
39cdf0e10cSrcweir        TabStop = TRUE ;
40cdf0e10cSrcweir        Group = TRUE ;
41cdf0e10cSrcweir    };
42cdf0e10cSrcweir    RadioButton RB_MAXHEIGHT
43cdf0e10cSrcweir    {
44cdf0e10cSrcweir        HelpID = "sw:RadioButton:TP_FOOTNOTE_PAGE:RB_MAXHEIGHT" ;
45cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 28 ) ;
46cdf0e10cSrcweir        Size = MAP_APPFONT ( 132, 10 ) ;
47cdf0e10cSrcweir        Text [ en-US ] = "Maximum footnote ~height" ;
48cdf0e10cSrcweir    };
49cdf0e10cSrcweir    MetricField ED_MAXHEIGHT
50cdf0e10cSrcweir    {
51cdf0e10cSrcweir        HelpID = "sw:MetricField:TP_FOOTNOTE_PAGE:ED_MAXHEIGHT" ;
52cdf0e10cSrcweir        Border = TRUE ;
53cdf0e10cSrcweir        Pos = MAP_APPFONT ( 148, 26 ) ;
54cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 12 ) ;
55cdf0e10cSrcweir        TabStop = TRUE ;
56cdf0e10cSrcweir        Group = TRUE ;
57cdf0e10cSrcweir        Left = TRUE ;
58cdf0e10cSrcweir        Repeat = TRUE ;
59cdf0e10cSrcweir        Spin = TRUE ;
60cdf0e10cSrcweir        Minimum = 50 ;
61cdf0e10cSrcweir        Maximum = 99999 ;
62cdf0e10cSrcweir        DecimalDigits = 2 ;
63cdf0e10cSrcweir        Value = 200 ;
64cdf0e10cSrcweir        Unit = FUNIT_CM ;
65cdf0e10cSrcweir        First = 10 ;
66cdf0e10cSrcweir        Last = 99999 ;
67cdf0e10cSrcweir        SpinSize = 10 ;
68cdf0e10cSrcweir    };
69cdf0e10cSrcweir    FixedText FT_DIST
70cdf0e10cSrcweir    {
71cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 44 ) ;
72cdf0e10cSrcweir        Size = MAP_APPFONT ( 132, 8 ) ;
73cdf0e10cSrcweir        Text [ en-US ] = "Space to text" ;
74cdf0e10cSrcweir        Left = TRUE ;
75cdf0e10cSrcweir    };
76cdf0e10cSrcweir    MetricField ED_DIST
77cdf0e10cSrcweir    {
78cdf0e10cSrcweir        HelpID = "sw:MetricField:TP_FOOTNOTE_PAGE:ED_DIST" ;
79cdf0e10cSrcweir        Border = TRUE ;
80cdf0e10cSrcweir        Pos = MAP_APPFONT ( 148, 42 ) ;
81cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 12 ) ;
82cdf0e10cSrcweir        TabStop = TRUE ;
83cdf0e10cSrcweir        Left = TRUE ;
84cdf0e10cSrcweir        Repeat = TRUE ;
85cdf0e10cSrcweir        Spin = TRUE ;
86cdf0e10cSrcweir        Maximum = 999 ;
87cdf0e10cSrcweir        DecimalDigits = 2 ;
88cdf0e10cSrcweir        Value = 10 ;
89cdf0e10cSrcweir        Unit = FUNIT_CM ;
90cdf0e10cSrcweir        First = 5 ;
91cdf0e10cSrcweir        Last = 99999 ;
92cdf0e10cSrcweir        SpinSize = 10 ;
93cdf0e10cSrcweir    };
94cdf0e10cSrcweir    FixedLine FL_FOOTNOTE_SIZE
95cdf0e10cSrcweir    {
96cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 3 ) ;
97cdf0e10cSrcweir        Size = MAP_APPFONT ( 248, 8 ) ;
98cdf0e10cSrcweir        Text [ en-US ] = "Footnote area" ;
99cdf0e10cSrcweir    };
100cdf0e10cSrcweir    FixedText FT_LINEPOS
101cdf0e10cSrcweir    {
102cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 73 ) ;
103cdf0e10cSrcweir        Size = MAP_APPFONT ( 132, 8 ) ;
104cdf0e10cSrcweir        Left = TRUE ;
105cdf0e10cSrcweir        Text [ en-US ] = "~Position" ;
106cdf0e10cSrcweir    };
107cdf0e10cSrcweir    ListBox DLB_LINEPOS
108cdf0e10cSrcweir    {
109cdf0e10cSrcweir        HelpID = "sw:ListBox:TP_FOOTNOTE_PAGE:DLB_LINEPOS" ;
110cdf0e10cSrcweir        Pos = MAP_APPFONT ( 148, 71 ) ;
111cdf0e10cSrcweir        Size = MAP_APPFONT ( 57, 40 ) ;
112cdf0e10cSrcweir        TabStop = TRUE ;
113cdf0e10cSrcweir        Group = TRUE ;
114cdf0e10cSrcweir        DropDown = TRUE ;
115cdf0e10cSrcweir        CurPos = 0 ;
116cdf0e10cSrcweir        StringList [ en-US ] =
117cdf0e10cSrcweir        {
118cdf0e10cSrcweir            < "Left" ; Default ;        > ;
119cdf0e10cSrcweir            < "Centered" ; Default ;    > ;
120cdf0e10cSrcweir            < "Right" ; Default ;       > ;
121cdf0e10cSrcweir        };
122cdf0e10cSrcweir    };
123cdf0e10cSrcweir    FixedText FT_LINETYPE
124cdf0e10cSrcweir    {
125cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 89 ) ;
126cdf0e10cSrcweir        Size = MAP_APPFONT ( 132, 8 ) ;
127cdf0e10cSrcweir        Group = TRUE ;
128cdf0e10cSrcweir        Left = TRUE ;
129cdf0e10cSrcweir        Text [ en-US ] = "~Weight" ;
130cdf0e10cSrcweir    };
131cdf0e10cSrcweir    ListBox DLB_LINETYPE
132cdf0e10cSrcweir    {
133cdf0e10cSrcweir        HelpID = "sw:ListBox:TP_FOOTNOTE_PAGE:DLB_LINETYPE" ;
134cdf0e10cSrcweir        Pos = MAP_APPFONT ( 148, 87 ) ;
135cdf0e10cSrcweir        Size = MAP_APPFONT ( 57, 50 ) ;
136cdf0e10cSrcweir        TabStop = TRUE ;
137cdf0e10cSrcweir        Group = TRUE ;
138cdf0e10cSrcweir        DropDown = TRUE ;
139cdf0e10cSrcweir        CurPos = 0 ;
140cdf0e10cSrcweir    };
141cdf0e10cSrcweir
142cdf0e10cSrcweir    FixedText FT_LINEWIDTH
143cdf0e10cSrcweir    {
144cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 105 ) ;
145cdf0e10cSrcweir        Size = MAP_APPFONT ( 132, 8 ) ;
146cdf0e10cSrcweir        Left = TRUE ;
147cdf0e10cSrcweir        Text [ en-US ] = "~Length" ;
148cdf0e10cSrcweir    };
149cdf0e10cSrcweir    MetricField ED_LINEWIDTH
150cdf0e10cSrcweir    {
151cdf0e10cSrcweir        HelpID = "sw:MetricField:TP_FOOTNOTE_PAGE:ED_LINEWIDTH" ;
152cdf0e10cSrcweir        Border = TRUE ;
153cdf0e10cSrcweir        Pos = MAP_APPFONT ( 148, 103 ) ;
154cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 12 ) ;
155cdf0e10cSrcweir        TabStop = TRUE ;
156cdf0e10cSrcweir        Left = TRUE ;
157cdf0e10cSrcweir        Repeat = TRUE ;
158cdf0e10cSrcweir        Spin = TRUE ;
159cdf0e10cSrcweir        Maximum = 100 ;
160cdf0e10cSrcweir        Value = 100 ;
1617ea7a1ccSTsutomu Uchino        Unit = FUNIT_PERCENT ;
162cdf0e10cSrcweir        First = 10 ;
163cdf0e10cSrcweir        Last = 100 ;
164cdf0e10cSrcweir    };
165cdf0e10cSrcweir    FixedText FT_LINEDIST
166cdf0e10cSrcweir    {
167cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12, 121 ) ;
168cdf0e10cSrcweir        Size = MAP_APPFONT ( 132, 8 ) ;
169cdf0e10cSrcweir        Text [ en-US ] = "~Spacing to footnote contents" ;
170cdf0e10cSrcweir        Left = TRUE ;
171cdf0e10cSrcweir    };
172cdf0e10cSrcweir    MetricField ED_LINEDIST
173cdf0e10cSrcweir    {
174cdf0e10cSrcweir        HelpID = "sw:MetricField:TP_FOOTNOTE_PAGE:ED_LINEDIST" ;
175cdf0e10cSrcweir        Border = TRUE ;
176cdf0e10cSrcweir        Pos = MAP_APPFONT ( 148, 119 ) ;
177cdf0e10cSrcweir        Size = MAP_APPFONT ( 42, 12 ) ;
178cdf0e10cSrcweir        TabStop = TRUE ;
179cdf0e10cSrcweir        Left = TRUE ;
180cdf0e10cSrcweir        Repeat = TRUE ;
181cdf0e10cSrcweir        Spin = TRUE ;
182cdf0e10cSrcweir        Maximum = 999 ;
183cdf0e10cSrcweir        DecimalDigits = 2 ;
184cdf0e10cSrcweir        Value = 10 ;
185cdf0e10cSrcweir        Unit = FUNIT_CM ;
186cdf0e10cSrcweir        First = 5 ;
187cdf0e10cSrcweir        Last = 99999 ;
188cdf0e10cSrcweir        SpinSize = 10 ;
189cdf0e10cSrcweir    };
190cdf0e10cSrcweir    FixedLine FL_LINE
191cdf0e10cSrcweir    {
192cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6, 60 ) ;
193cdf0e10cSrcweir        Size = MAP_APPFONT ( 248, 8 ) ;
194cdf0e10cSrcweir        Text [ en-US ] = "Separator line" ;
195cdf0e10cSrcweir    };
196cdf0e10cSrcweir};
197*1dc02f04Smseidel
198*1dc02f04Smseidel// ********************************************************************** EOF
199