xref: /trunk/main/cui/source/dialogs/postdlg.src (revision 31d35622ee258902b338f9bfdfb2a2ed84b7bb6c)
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// include ---------------------------------------------------------------
23#include <cuires.hrc>
24#include "postdlg.hrc"
25#include "helpid.hrc"
26#include <svx/dialogs.hrc> // for RID_SVXDLG_POSTIT
27
28// RID_SVXDLG_POSTIT -----------------------------------------------------
29ModalDialog RID_SVXDLG_POSTIT
30{
31    HelpId = HID_POSTIT_DIALOG ;
32    OutputSize = TRUE ;
33    SvLook = TRUE ;
34    Size = MAP_APPFONT ( 228, 120 ) ;
35    Text [ en-US ] = "Comments" ;
36    Moveable = TRUE ;
37    FixedText FT_LASTEDITLABEL
38    {
39        Pos = MAP_APPFONT ( 12, 14 ) ;
40        Size = MAP_APPFONT ( 34, 8 ) ;
41        Text [ en-US ] = "Author:" ;
42        Left = TRUE ;
43    };
44    FixedText FT_LASTEDIT
45    {
46        Pos = MAP_APPFONT ( 45, 14 ) ;
47        Size = MAP_APPFONT ( 120, 8 ) ;
48        Left = TRUE ;
49    };
50    FixedText FT_EDIT
51    {
52        Pos = MAP_APPFONT ( 12, 27 ) ;
53        Size = MAP_APPFONT ( 100, 8 ) ;
54        Text [ en-US ] = "~Text" ;
55        Left = TRUE ;
56    };
57    MultiLineEdit ED_EDIT
58    {
59        HelpID = "cui:MultiLineEdit:RID_SVXDLG_POSTIT:ED_EDIT" ;
60        Border = TRUE ;
61        Pos = MAP_APPFONT ( 12, 38 ) ;
62        Size = MAP_APPFONT ( 153, 75 ) ;
63        Left = TRUE ;
64        VScroll = TRUE ;
65        HScroll = TRUE ;
66        IgnoreTab = TRUE ;
67    };
68    FixedLine FL_POSTIT
69    {
70        Pos = MAP_APPFONT ( 6, 3 ) ;
71        Size = MAP_APPFONT ( 159, 8 ) ;
72        Text [ en-US ] = "Contents" ;
73    };
74    OKButton BTN_POST_OK
75    {
76        Pos = MAP_APPFONT ( 171, 6 ) ;
77        Size = MAP_APPFONT ( 50, 15 ) ;
78        DefButton = TRUE ;
79    };
80    CancelButton BTN_POST_CANCEL
81    {
82        Pos = MAP_APPFONT ( 171, 23 ) ;
83        Size = MAP_APPFONT ( 50, 15 ) ;
84    };
85    HelpButton BTN_POST_HELP
86    {
87        Pos = MAP_APPFONT ( 171, 40 ) ;
88        Size = MAP_APPFONT ( 50, 15 ) ;
89    };
90    ImageButton BTN_PREV
91    {
92        HelpID = "cui:ImageButton:RID_SVXDLG_POSTIT:BTN_PREV" ;
93        Pos = MAP_APPFONT ( 171, 60 ) ;
94        Size = MAP_APPFONT ( 24, 14 ) ;
95        Symbol = IMAGEBUTTON_ARROW_LEFT ;
96    };
97    ImageButton BTN_NEXT
98    {
99        HelpID = "cui:ImageButton:RID_SVXDLG_POSTIT:BTN_NEXT" ;
100        Pos = MAP_APPFONT ( 197, 60 ) ;
101        Size = MAP_APPFONT ( 24, 14 ) ;
102        Symbol = IMAGEBUTTON_ARROW_RIGHT ;
103    };
104// TODO: cleanup code for these unused elements
105//  FixedText FT_AUTHOR
106//  {
107//      Pos = MAP_APPFONT ( 12, 116 ) ;
108//      Size = MAP_APPFONT ( 60, 8 ) ;
109//      Text [ en-US ] = "~Insert" ;
110//  };
111//  PushButton BTN_AUTHOR
112//  {
113//      HelpID = "cui:PushButton:RID_SVXDLG_POSTIT:BTN_AUTHOR" ;
114//      Pos = MAP_APPFONT ( 75, 114 ) ;
115//      Size = MAP_APPFONT ( 60, 14 ) ;
116//      Text [ en-US ] = "Author" ;
117//  };
118//  // local strings
119//  String STR_NOTIZ_EDIT
120//  {
121//      Text [ en-US ] = "Edit Note" ;
122//  };
123//  String STR_NOTIZ_INSERT
124//  {
125//      Text [ en-US ] = "Insert note" ;
126//  };
127};
128
129// ********************************************************************** EOF
130