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