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 // include --------------------------------------------------------------- 24#include <cuires.hrc> 25#include "postdlg.hrc" 26#include "helpid.hrc" 27#include <svx/dialogs.hrc> // for RID_SVXDLG_POSTIT 28 29 // RID_SVXDLG_POSTIT ----------------------------------------------------- 30ModalDialog RID_SVXDLG_POSTIT 31{ 32 HelpId = HID_POSTIT_DIALOG ; 33 OutputSize = TRUE ; 34 SvLook = TRUE ; 35 Size = MAP_APPFONT ( 198 , 134 ) ; 36 Text [ en-US ] = "Note" ; 37 Moveable = TRUE ; 38 FixedText FT_LASTEDITLABEL 39 { 40 Pos = MAP_APPFONT ( 12 , 14 ) ; 41 Size = MAP_APPFONT ( 34 , 8 ) ; 42 Text [ en-US ] = "Author" ; 43 Left = TRUE ; 44 }; 45 FixedText FT_LASTEDIT 46 { 47 Pos = MAP_APPFONT ( 48 , 14 ) ; 48 Size = MAP_APPFONT ( 83 , 8 ) ; 49 Left = TRUE ; 50 }; 51 FixedText FT_EDIT 52 { 53 Pos = MAP_APPFONT ( 12 , 27 ) ; 54 Size = MAP_APPFONT ( 100 , 8 ) ; 55 Text [ en-US ] = "~Text" ; 56 Left = TRUE ; 57 }; 58 MultiLineEdit ED_EDIT 59 { 60 HelpID = "cui:MultiLineEdit:RID_SVXDLG_POSTIT:ED_EDIT"; 61 Border = TRUE ; 62 Pos = MAP_APPFONT ( 12 , 38 ) ; 63 Size = MAP_APPFONT ( 123 , 72 ) ; 64 Left = TRUE ; 65 VScroll = TRUE ; 66 HScroll = TRUE ; 67 IgnoreTab = TRUE ; 68 }; 69 FixedLine FL_POSTIT 70 { 71 Pos = MAP_APPFONT ( 6 , 3 ) ; 72 Size = MAP_APPFONT ( 129 , 8 ) ; 73 Text [ en-US ] = "Contents" ; 74 }; 75 OKButton BTN_POST_OK 76 { 77 Pos = MAP_APPFONT ( 141 , 6 ) ; 78 Size = MAP_APPFONT ( 50 , 15 ) ; 79 DefButton = TRUE ; 80 }; 81 CancelButton BTN_POST_CANCEL 82 { 83 Pos = MAP_APPFONT ( 141 , 23 ) ; 84 Size = MAP_APPFONT ( 50 , 15 ) ; 85 }; 86 HelpButton BTN_POST_HELP 87 { 88 Pos = MAP_APPFONT ( 141 , 40 ) ; 89 Size = MAP_APPFONT ( 50 , 15 ) ; 90 }; 91 ImageButton BTN_PREV 92 { 93 HelpID = "cui:ImageButton:RID_SVXDLG_POSTIT:BTN_PREV"; 94 Pos = MAP_APPFONT ( 141 , 60 ) ; 95 Size = MAP_APPFONT ( 24 , 14 ) ; 96 Symbol = IMAGEBUTTON_ARROW_LEFT ; 97 }; 98 ImageButton BTN_NEXT 99 { 100 HelpID = "cui:ImageButton:RID_SVXDLG_POSTIT:BTN_NEXT"; 101 Pos = MAP_APPFONT ( 167 , 60 ) ; 102 Size = MAP_APPFONT ( 24 , 14 ) ; 103 Symbol = IMAGEBUTTON_ARROW_RIGHT ; 104 }; 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 // lokale Strings 119 String STR_NOTIZ_EDIT 120 { 121 Text [ en-US ] = "Edit Note" ; 122 }; 123 String STR_NOTIZ_INSERT 124 { 125 /* ### ACHTUNG: Neuer Text in Resource? Notiz einf�gen : Notiz einf�gen */ 126 /* ### ACHTUNG: Neuer Text in Resource? Notiz einf�gen : Notiz einf�gen */ 127 Text [ en-US ] = "Insert note" ; 128 }; 129}; 130 // ********************************************************************** EOF 131 132 133 134 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