xref: /AOO41X/main/cui/source/dialogs/postdlg.src (revision b5e95adbb6c2935ec7bc9d63368f933a99cd32a3)
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 ] = "Comment" ;
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//  FixedText FT_AUTHOR
107//  {
108//      Pos = MAP_APPFONT ( 12, 116 ) ;
109//      Size = MAP_APPFONT ( 60, 8 ) ;
110//      Text [ en-US ] = "~Insert" ;
111//  };
112//  PushButton BTN_AUTHOR
113//  {
114//      HelpID = "cui:PushButton:RID_SVXDLG_POSTIT:BTN_AUTHOR" ;
115//      Pos = MAP_APPFONT ( 75, 114 ) ;
116//      Size = MAP_APPFONT ( 60, 14 ) ;
117//      Text [ en-US ] = "Author" ;
118//  };
119//  // local strings
120//  String STR_NOTIZ_EDIT
121//  {
122//      Text [ en-US ] = "Edit Note" ;
123//  };
124//  String STR_NOTIZ_INSERT
125//  {
126//      Text [ en-US ] = "Insert note" ;
127//  };
128};
129
130// ********************************************************************** EOF
131