xref: /trunk/main/cui/source/dialogs/postdlg.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27 // include ---------------------------------------------------------------
28#include <cuires.hrc>
29#include "postdlg.hrc"
30#include "helpid.hrc"
31#include <svx/dialogs.hrc> // for RID_SVXDLG_POSTIT
32
33 // RID_SVXDLG_POSTIT -----------------------------------------------------
34ModalDialog RID_SVXDLG_POSTIT
35{
36    HelpId = HID_POSTIT_DIALOG ;
37    OutputSize = TRUE ;
38    SvLook = TRUE ;
39    Size = MAP_APPFONT ( 198 , 134 ) ;
40    Text [ en-US ] = "Note" ;
41    Moveable = TRUE ;
42    FixedText FT_LASTEDITLABEL
43    {
44        Pos = MAP_APPFONT ( 12 , 14 ) ;
45        Size = MAP_APPFONT ( 34 , 8 ) ;
46        Text [ en-US ] = "Author" ;
47        Left = TRUE ;
48    };
49    FixedText FT_LASTEDIT
50    {
51        Pos = MAP_APPFONT ( 48 , 14 ) ;
52        Size = MAP_APPFONT ( 83 , 8 ) ;
53        Left = TRUE ;
54    };
55    FixedText FT_EDIT
56    {
57        Pos = MAP_APPFONT ( 12 , 27 ) ;
58        Size = MAP_APPFONT ( 100 , 8 ) ;
59        Text [ en-US ] = "~Text" ;
60        Left = TRUE ;
61    };
62    MultiLineEdit ED_EDIT
63    {
64        HelpID = "cui:MultiLineEdit:RID_SVXDLG_POSTIT:ED_EDIT";
65        Border = TRUE ;
66        Pos = MAP_APPFONT ( 12 , 38 ) ;
67        Size = MAP_APPFONT ( 123 , 72 ) ;
68        Left = TRUE ;
69        VScroll = TRUE ;
70        HScroll = TRUE ;
71        IgnoreTab = TRUE ;
72    };
73    FixedLine FL_POSTIT
74    {
75        Pos = MAP_APPFONT ( 6 , 3 ) ;
76        Size = MAP_APPFONT ( 129 , 8 ) ;
77        Text [ en-US ] = "Contents" ;
78    };
79    OKButton BTN_POST_OK
80    {
81        Pos = MAP_APPFONT ( 141 , 6 ) ;
82        Size = MAP_APPFONT ( 50 , 15 ) ;
83        DefButton = TRUE ;
84    };
85    CancelButton BTN_POST_CANCEL
86    {
87        Pos = MAP_APPFONT ( 141 , 23 ) ;
88        Size = MAP_APPFONT ( 50 , 15 ) ;
89    };
90    HelpButton BTN_POST_HELP
91    {
92        Pos = MAP_APPFONT ( 141 , 40 ) ;
93        Size = MAP_APPFONT ( 50 , 15 ) ;
94    };
95    ImageButton BTN_PREV
96    {
97        HelpID = "cui:ImageButton:RID_SVXDLG_POSTIT:BTN_PREV";
98        Pos = MAP_APPFONT ( 141 , 60 ) ;
99        Size = MAP_APPFONT ( 24 , 14 ) ;
100        Symbol = IMAGEBUTTON_ARROW_LEFT ;
101    };
102    ImageButton BTN_NEXT
103    {
104        HelpID = "cui:ImageButton:RID_SVXDLG_POSTIT:BTN_NEXT";
105        Pos = MAP_APPFONT ( 167 , 60 ) ;
106        Size = MAP_APPFONT ( 24 , 14 ) ;
107        Symbol = IMAGEBUTTON_ARROW_RIGHT ;
108    };
109    FixedText FT_AUTHOR
110    {
111        Pos = MAP_APPFONT ( 12 , 116 ) ;
112        Size = MAP_APPFONT ( 60 , 8 ) ;
113        Text [ en-US ] = "~Insert";
114    };
115    PushButton BTN_AUTHOR
116    {
117        HelpID = "cui:PushButton:RID_SVXDLG_POSTIT:BTN_AUTHOR";
118        Pos = MAP_APPFONT ( 75 , 114 ) ;
119        Size = MAP_APPFONT ( 60 , 14 ) ;
120        Text [ en-US ] = "Author" ;
121    };
122     // lokale Strings
123    String STR_NOTIZ_EDIT
124    {
125        Text [ en-US ] = "Edit Note" ;
126    };
127    String STR_NOTIZ_INSERT
128    {
129        /* ### ACHTUNG: Neuer Text in Resource? Notiz einf�gen : Notiz einf�gen */
130        /* ### ACHTUNG: Neuer Text in Resource? Notiz einf�gen : Notiz einf�gen */
131        Text [ en-US ] = "Insert note" ;
132    };
133};
134 // ********************************************************************** EOF
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163