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