xref: /aoo41x/main/cui/source/dialogs/postdlg.src (revision 0e2af6af)
1*0e2af6afSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*0e2af6afSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*0e2af6afSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*0e2af6afSAndrew Rist * distributed with this work for additional information
6*0e2af6afSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*0e2af6afSAndrew Rist * to you under the Apache License, Version 2.0 (the
8*0e2af6afSAndrew Rist * "License"); you may not use this file except in compliance
9*0e2af6afSAndrew Rist * with the License.  You may obtain a copy of the License at
10*0e2af6afSAndrew Rist *
11*0e2af6afSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*0e2af6afSAndrew Rist *
13*0e2af6afSAndrew Rist * Unless required by applicable law or agreed to in writing,
14*0e2af6afSAndrew Rist * software distributed under the License is distributed on an
15*0e2af6afSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*0e2af6afSAndrew Rist * KIND, either express or implied.  See the License for the
17*0e2af6afSAndrew Rist * specific language governing permissions and limitations
18*0e2af6afSAndrew Rist * under the License.
19*0e2af6afSAndrew Rist *
20*0e2af6afSAndrew Rist *************************************************************/
21*0e2af6afSAndrew Rist
22*0e2af6afSAndrew Rist
23cdf0e10cSrcweir // include ---------------------------------------------------------------
24cdf0e10cSrcweir#include <cuires.hrc>
25cdf0e10cSrcweir#include "postdlg.hrc"
26cdf0e10cSrcweir#include "helpid.hrc"
27cdf0e10cSrcweir#include <svx/dialogs.hrc> // for RID_SVXDLG_POSTIT
28cdf0e10cSrcweir
29cdf0e10cSrcweir // RID_SVXDLG_POSTIT -----------------------------------------------------
30cdf0e10cSrcweirModalDialog RID_SVXDLG_POSTIT
31cdf0e10cSrcweir{
32cdf0e10cSrcweir	HelpId = HID_POSTIT_DIALOG ;
33cdf0e10cSrcweir	OutputSize = TRUE ;
34cdf0e10cSrcweir	SvLook = TRUE ;
35cdf0e10cSrcweir    Size = MAP_APPFONT ( 198 , 134 ) ;
36cdf0e10cSrcweir	Text [ en-US ] = "Note" ;
37cdf0e10cSrcweir	Moveable = TRUE ;
38cdf0e10cSrcweir	FixedText FT_LASTEDITLABEL
39cdf0e10cSrcweir	{
40cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12 , 14 ) ;
41cdf0e10cSrcweir        Size = MAP_APPFONT ( 34 , 8 ) ;
42cdf0e10cSrcweir		Text [ en-US ] = "Author" ;
43cdf0e10cSrcweir		Left = TRUE ;
44cdf0e10cSrcweir	};
45cdf0e10cSrcweir	FixedText FT_LASTEDIT
46cdf0e10cSrcweir	{
47cdf0e10cSrcweir        Pos = MAP_APPFONT ( 48 , 14 ) ;
48cdf0e10cSrcweir        Size = MAP_APPFONT ( 83 , 8 ) ;
49cdf0e10cSrcweir		Left = TRUE ;
50cdf0e10cSrcweir	};
51cdf0e10cSrcweir	FixedText FT_EDIT
52cdf0e10cSrcweir	{
53cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12 , 27 ) ;
54cdf0e10cSrcweir		Size = MAP_APPFONT ( 100 , 8 ) ;
55cdf0e10cSrcweir		Text [ en-US ] = "~Text" ;
56cdf0e10cSrcweir		Left = TRUE ;
57cdf0e10cSrcweir	};
58cdf0e10cSrcweir	MultiLineEdit ED_EDIT
59cdf0e10cSrcweir	{
60cdf0e10cSrcweir	    HelpID = "cui:MultiLineEdit:RID_SVXDLG_POSTIT:ED_EDIT";
61cdf0e10cSrcweir		Border = TRUE ;
62cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 38 ) ;
63cdf0e10cSrcweir        Size = MAP_APPFONT ( 123 , 72 ) ;
64cdf0e10cSrcweir		Left = TRUE ;
65cdf0e10cSrcweir		VScroll = TRUE ;
66cdf0e10cSrcweir		HScroll = TRUE ;
67cdf0e10cSrcweir		IgnoreTab = TRUE ;
68cdf0e10cSrcweir	};
69cdf0e10cSrcweir    FixedLine FL_POSTIT
70cdf0e10cSrcweir	{
71cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 3 ) ;
72cdf0e10cSrcweir        Size = MAP_APPFONT ( 129 , 8 ) ;
73cdf0e10cSrcweir		Text [ en-US ] = "Contents" ;
74cdf0e10cSrcweir	};
75cdf0e10cSrcweir	OKButton BTN_POST_OK
76cdf0e10cSrcweir	{
77cdf0e10cSrcweir		Pos = MAP_APPFONT ( 141 , 6 ) ;
78cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 15 ) ;
79cdf0e10cSrcweir		DefButton = TRUE ;
80cdf0e10cSrcweir	};
81cdf0e10cSrcweir	CancelButton BTN_POST_CANCEL
82cdf0e10cSrcweir	{
83cdf0e10cSrcweir		Pos = MAP_APPFONT ( 141 , 23 ) ;
84cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 15 ) ;
85cdf0e10cSrcweir	};
86cdf0e10cSrcweir	HelpButton BTN_POST_HELP
87cdf0e10cSrcweir	{
88cdf0e10cSrcweir		Pos = MAP_APPFONT ( 141 , 40 ) ;
89cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 15 ) ;
90cdf0e10cSrcweir	};
91cdf0e10cSrcweir	ImageButton BTN_PREV
92cdf0e10cSrcweir	{
93cdf0e10cSrcweir	    HelpID = "cui:ImageButton:RID_SVXDLG_POSTIT:BTN_PREV";
94cdf0e10cSrcweir		Pos = MAP_APPFONT ( 141 , 60 ) ;
95cdf0e10cSrcweir		Size = MAP_APPFONT ( 24 , 14 ) ;
96cdf0e10cSrcweir		Symbol = IMAGEBUTTON_ARROW_LEFT ;
97cdf0e10cSrcweir	};
98cdf0e10cSrcweir	ImageButton BTN_NEXT
99cdf0e10cSrcweir	{
100cdf0e10cSrcweir	    HelpID = "cui:ImageButton:RID_SVXDLG_POSTIT:BTN_NEXT";
101cdf0e10cSrcweir		Pos = MAP_APPFONT ( 167 , 60 ) ;
102cdf0e10cSrcweir		Size = MAP_APPFONT ( 24 , 14 ) ;
103cdf0e10cSrcweir		Symbol = IMAGEBUTTON_ARROW_RIGHT ;
104cdf0e10cSrcweir	};
105cdf0e10cSrcweir    FixedText FT_AUTHOR
106cdf0e10cSrcweir    {
107cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 116 ) ;
108cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 8 ) ;
109cdf0e10cSrcweir    	Text [ en-US ] = "~Insert";
110cdf0e10cSrcweir	};
111cdf0e10cSrcweir    PushButton BTN_AUTHOR
112cdf0e10cSrcweir	{
113cdf0e10cSrcweir        HelpID = "cui:PushButton:RID_SVXDLG_POSTIT:BTN_AUTHOR";
114cdf0e10cSrcweir        Pos = MAP_APPFONT ( 75 , 114 ) ;
115cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 14 ) ;
116cdf0e10cSrcweir        Text [ en-US ] = "Author" ;
117cdf0e10cSrcweir	};
118cdf0e10cSrcweir	 // lokale Strings
119cdf0e10cSrcweir	String STR_NOTIZ_EDIT
120cdf0e10cSrcweir	{
121cdf0e10cSrcweir		Text [ en-US ] = "Edit Note" ;
122cdf0e10cSrcweir	};
123cdf0e10cSrcweir	String STR_NOTIZ_INSERT
124cdf0e10cSrcweir	{
125cdf0e10cSrcweir		/* ### ACHTUNG: Neuer Text in Resource? Notiz einf�gen : Notiz einf�gen */
126cdf0e10cSrcweir		/* ### ACHTUNG: Neuer Text in Resource? Notiz einf�gen : Notiz einf�gen */
127cdf0e10cSrcweir		Text [ en-US ] = "Insert note" ;
128cdf0e10cSrcweir	};
129cdf0e10cSrcweir};
130cdf0e10cSrcweir // ********************************************************************** EOF
131cdf0e10cSrcweir
132cdf0e10cSrcweir
133cdf0e10cSrcweir
134cdf0e10cSrcweir
135cdf0e10cSrcweir
136cdf0e10cSrcweir
137cdf0e10cSrcweir
138cdf0e10cSrcweir
139cdf0e10cSrcweir
140cdf0e10cSrcweir
141cdf0e10cSrcweir
142cdf0e10cSrcweir
143cdf0e10cSrcweir
144cdf0e10cSrcweir
145cdf0e10cSrcweir
146cdf0e10cSrcweir
147cdf0e10cSrcweir
148cdf0e10cSrcweir
149cdf0e10cSrcweir
150cdf0e10cSrcweir
151cdf0e10cSrcweir
152cdf0e10cSrcweir
153cdf0e10cSrcweir
154cdf0e10cSrcweir
155cdf0e10cSrcweir
156cdf0e10cSrcweir
157cdf0e10cSrcweir
158cdf0e10cSrcweir
159