1*cdf0e10cSrcweir/************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir 29*cdf0e10cSrcweirinterface BaseTextEditView 30*cdf0e10cSrcweir[ 31*cdf0e10cSrcweir Automation = FALSE; 32*cdf0e10cSrcweir] 33*cdf0e10cSrcweir{ 34*cdf0e10cSrcweir FN_REFRESH_VIEW // status(final|play) 35*cdf0e10cSrcweir [ 36*cdf0e10cSrcweir ExecMethod = Execute ; 37*cdf0e10cSrcweir ] 38*cdf0e10cSrcweir FN_PAGEUP // status(final|play) 39*cdf0e10cSrcweir [ 40*cdf0e10cSrcweir ExecMethod = Execute ; 41*cdf0e10cSrcweir StateMethod = GetState ; 42*cdf0e10cSrcweir ] 43*cdf0e10cSrcweir FN_PAGEUP_SEL // status() 44*cdf0e10cSrcweir [ 45*cdf0e10cSrcweir ExecMethod = Execute ; 46*cdf0e10cSrcweir StateMethod = GetState ; 47*cdf0e10cSrcweir ] 48*cdf0e10cSrcweir SID_UNDO // status(final|play) 49*cdf0e10cSrcweir [ 50*cdf0e10cSrcweir ExecMethod = Execute ; 51*cdf0e10cSrcweir StateMethod = GetState ; 52*cdf0e10cSrcweir ] 53*cdf0e10cSrcweir SID_FORMATPAINTBRUSH // 54*cdf0e10cSrcweir [ 55*cdf0e10cSrcweir ExecMethod = ExecFormatPaintbrush ; 56*cdf0e10cSrcweir StateMethod = StateFormatPaintbrush ; 57*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 58*cdf0e10cSrcweir ] 59*cdf0e10cSrcweir SID_CLEARHISTORY // status(final|play) 60*cdf0e10cSrcweir [ 61*cdf0e10cSrcweir ExecMethod = Execute ; 62*cdf0e10cSrcweir StateMethod = GetState ; 63*cdf0e10cSrcweir ] 64*cdf0e10cSrcweir SID_CREATE_SW_DRAWVIEW 65*cdf0e10cSrcweir [ 66*cdf0e10cSrcweir ExecMethod = Execute; 67*cdf0e10cSrcweir ] 68*cdf0e10cSrcweir FN_PAGEDOWN // status(final|play) 69*cdf0e10cSrcweir [ 70*cdf0e10cSrcweir ExecMethod = Execute ; 71*cdf0e10cSrcweir StateMethod = GetState ; 72*cdf0e10cSrcweir ] 73*cdf0e10cSrcweir FN_PAGEDOWN_SEL // status() 74*cdf0e10cSrcweir [ 75*cdf0e10cSrcweir ExecMethod = Execute ; 76*cdf0e10cSrcweir StateMethod = GetState ; 77*cdf0e10cSrcweir ] 78*cdf0e10cSrcweir FN_NAVIGATION_PI_GOTO_PAGE // status(final|play) 79*cdf0e10cSrcweir [ 80*cdf0e10cSrcweir ExecMethod = Execute ; 81*cdf0e10cSrcweir StateMethod = NoState ; 82*cdf0e10cSrcweir ] 83*cdf0e10cSrcweir FN_SCROLL_NAVIGATION 84*cdf0e10cSrcweir [ 85*cdf0e10cSrcweir ExecMethod = NoExec ; 86*cdf0e10cSrcweir StateMethod = NoState ; 87*cdf0e10cSrcweir ] 88*cdf0e10cSrcweir FN_SCROLL_NEXT_PREV 89*cdf0e10cSrcweir [ 90*cdf0e10cSrcweir ExecMethod = Execute; 91*cdf0e10cSrcweir ] 92*cdf0e10cSrcweir FN_SET_PAGE_STYLE // status(final|play) 93*cdf0e10cSrcweir [ 94*cdf0e10cSrcweir ExecMethod = ExecColl ; 95*cdf0e10cSrcweir ] 96*cdf0e10cSrcweir SID_OBJECT_SELECT 97*cdf0e10cSrcweir [ 98*cdf0e10cSrcweir ExecMethod = ExecDraw ; 99*cdf0e10cSrcweir StateMethod = GetDrawState ; 100*cdf0e10cSrcweir ] 101*cdf0e10cSrcweir SID_BROWSER_MODE 102*cdf0e10cSrcweir [ 103*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 104*cdf0e10cSrcweir StateMethod = StateViewOptions ; 105*cdf0e10cSrcweir ] 106*cdf0e10cSrcweir FN_PRINT_LAYOUT 107*cdf0e10cSrcweir [ 108*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 109*cdf0e10cSrcweir StateMethod = StateViewOptions ; 110*cdf0e10cSrcweir ] 111*cdf0e10cSrcweir FN_REDLINE_PROTECT 112*cdf0e10cSrcweir [ 113*cdf0e10cSrcweir ExecMethod = Execute; 114*cdf0e10cSrcweir StateMethod = GetState ; 115*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR"; 116*cdf0e10cSrcweir ] 117*cdf0e10cSrcweir FN_REDLINE_ON // status() 118*cdf0e10cSrcweir [ 119*cdf0e10cSrcweir ExecMethod = Execute; 120*cdf0e10cSrcweir StateMethod = GetState ; 121*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR"; 122*cdf0e10cSrcweir ] 123*cdf0e10cSrcweir FN_REDLINE_SHOW // status() 124*cdf0e10cSrcweir [ 125*cdf0e10cSrcweir ExecMethod = Execute; 126*cdf0e10cSrcweir StateMethod = GetState ; 127*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR"; 128*cdf0e10cSrcweir ] 129*cdf0e10cSrcweir FN_REDLINE_ACCEPT // status(play) 130*cdf0e10cSrcweir [ 131*cdf0e10cSrcweir ExecMethod = Execute ; 132*cdf0e10cSrcweir StateMethod = GetState ; 133*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR"; 134*cdf0e10cSrcweir ] 135*cdf0e10cSrcweir FN_REDLINE_ACCEPT_DIRECT 136*cdf0e10cSrcweir [ 137*cdf0e10cSrcweir ExecMethod = Execute ; 138*cdf0e10cSrcweir StateMethod = GetState ; 139*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR"; 140*cdf0e10cSrcweir ] 141*cdf0e10cSrcweir FN_REDLINE_REJECT_DIRECT 142*cdf0e10cSrcweir [ 143*cdf0e10cSrcweir ExecMethod = Execute ; 144*cdf0e10cSrcweir StateMethod = GetState ; 145*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR"; 146*cdf0e10cSrcweir ] 147*cdf0e10cSrcweir 148*cdf0e10cSrcweir SID_DOCUMENT_COMPARE // status(play) 149*cdf0e10cSrcweir [ 150*cdf0e10cSrcweir ExecMethod = Execute ; 151*cdf0e10cSrcweir StateMethod = GetState ; 152*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR"; 153*cdf0e10cSrcweir ] 154*cdf0e10cSrcweir SID_DOCUMENT_MERGE // status(play) 155*cdf0e10cSrcweir [ 156*cdf0e10cSrcweir ExecMethod = Execute ; 157*cdf0e10cSrcweir StateMethod = GetState ; 158*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR"; 159*cdf0e10cSrcweir ] 160*cdf0e10cSrcweir FN_ESCAPE // status(final|play|rec) 161*cdf0e10cSrcweir [ 162*cdf0e10cSrcweir ExecMethod = Execute ; 163*cdf0e10cSrcweir ] 164*cdf0e10cSrcweir FN_FAX // status(final|play) 165*cdf0e10cSrcweir [ 166*cdf0e10cSrcweir ExecMethod = ExecutePrint ; 167*cdf0e10cSrcweir ] 168*cdf0e10cSrcweir SID_PRINTDOC // status(final|play) 169*cdf0e10cSrcweir [ 170*cdf0e10cSrcweir ExecMethod = ExecutePrint ; 171*cdf0e10cSrcweir StateMethod = GetState ; 172*cdf0e10cSrcweir ] 173*cdf0e10cSrcweir SID_PRINTDOCDIRECT // status(final|play) 174*cdf0e10cSrcweir [ 175*cdf0e10cSrcweir ExecMethod = ExecutePrint ; 176*cdf0e10cSrcweir StateMethod = GetState ; 177*cdf0e10cSrcweir ] 178*cdf0e10cSrcweir SID_ATTR_LRSPACE 179*cdf0e10cSrcweir [ 180*cdf0e10cSrcweir ExecMethod = ExecTabWin ; 181*cdf0e10cSrcweir StateMethod = StateTabWin ; 182*cdf0e10cSrcweir GroupId = GID_EDIT ; 183*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 184*cdf0e10cSrcweir ] 185*cdf0e10cSrcweir SID_ATTR_ULSPACE 186*cdf0e10cSrcweir [ 187*cdf0e10cSrcweir ExecMethod = ExecTabWin ; 188*cdf0e10cSrcweir StateMethod = StateTabWin ; 189*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 190*cdf0e10cSrcweir ] 191*cdf0e10cSrcweir SID_ATTR_LONG_LRSPACE // status() 192*cdf0e10cSrcweir [ 193*cdf0e10cSrcweir ExecMethod = ExecTabWin ; 194*cdf0e10cSrcweir StateMethod = StateTabWin ; 195*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 196*cdf0e10cSrcweir ] 197*cdf0e10cSrcweir SID_ATTR_LONG_ULSPACE // status() 198*cdf0e10cSrcweir [ 199*cdf0e10cSrcweir ExecMethod = ExecTabWin ; 200*cdf0e10cSrcweir StateMethod = StateTabWin ; 201*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 202*cdf0e10cSrcweir ] 203*cdf0e10cSrcweir SID_ATTR_PARA_LRSPACE // status() 204*cdf0e10cSrcweir [ 205*cdf0e10cSrcweir ExecMethod = ExecTabWin ; 206*cdf0e10cSrcweir StateMethod = StateTabWin ; 207*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 208*cdf0e10cSrcweir ] 209*cdf0e10cSrcweir SID_ATTR_PARA_LRSPACE_VERTICAL // status() 210*cdf0e10cSrcweir [ 211*cdf0e10cSrcweir ExecMethod = ExecTabWin ; 212*cdf0e10cSrcweir StateMethod = StateTabWin ; 213*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 214*cdf0e10cSrcweir ] 215*cdf0e10cSrcweir SID_RULER_BORDERS // status() 216*cdf0e10cSrcweir [ 217*cdf0e10cSrcweir ExecMethod = ExecTabWin ; 218*cdf0e10cSrcweir StateMethod = StateTabWin ; 219*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 220*cdf0e10cSrcweir ] 221*cdf0e10cSrcweir SID_RULER_BORDERS_VERTICAL // status() 222*cdf0e10cSrcweir [ 223*cdf0e10cSrcweir ExecMethod = ExecTabWin ; 224*cdf0e10cSrcweir StateMethod = StateTabWin ; 225*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 226*cdf0e10cSrcweir ] 227*cdf0e10cSrcweir SID_RULER_BORDER_DISTANCE // status() 228*cdf0e10cSrcweir [ 229*cdf0e10cSrcweir StateMethod = StateTabWin ; 230*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 231*cdf0e10cSrcweir ] 232*cdf0e10cSrcweir SID_RULER_PAGE_POS // status() 233*cdf0e10cSrcweir [ 234*cdf0e10cSrcweir ExecMethod = NoExec ; 235*cdf0e10cSrcweir StateMethod = StateTabWin ; 236*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 237*cdf0e10cSrcweir ] 238*cdf0e10cSrcweir SID_RULER_TEXT_RIGHT_TO_LEFT 239*cdf0e10cSrcweir [ 240*cdf0e10cSrcweir StateMethod = StateTabWin ; 241*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 242*cdf0e10cSrcweir ] 243*cdf0e10cSrcweir SID_RULER_LR_MIN_MAX // status() 244*cdf0e10cSrcweir [ 245*cdf0e10cSrcweir StateMethod = StateTabWin ; 246*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 247*cdf0e10cSrcweir ] 248*cdf0e10cSrcweir SID_RULER_PROTECT // status() 249*cdf0e10cSrcweir [ 250*cdf0e10cSrcweir StateMethod = StateTabWin ; 251*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 252*cdf0e10cSrcweir ] 253*cdf0e10cSrcweir SID_RULER_ROWS // status() 254*cdf0e10cSrcweir [ 255*cdf0e10cSrcweir ExecMethod = ExecTabWin ; 256*cdf0e10cSrcweir StateMethod = StateTabWin ; 257*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 258*cdf0e10cSrcweir ] 259*cdf0e10cSrcweir SID_RULER_ROWS_VERTICAL // status() 260*cdf0e10cSrcweir [ 261*cdf0e10cSrcweir ExecMethod = ExecTabWin ; 262*cdf0e10cSrcweir StateMethod = StateTabWin ; 263*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 264*cdf0e10cSrcweir ] 265*cdf0e10cSrcweir FN_EDIT_LINK_DLG // status(final|play) 266*cdf0e10cSrcweir [ 267*cdf0e10cSrcweir ExecMethod = Execute ; 268*cdf0e10cSrcweir StateMethod = GetState ; 269*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 270*cdf0e10cSrcweir ] 271*cdf0e10cSrcweir FN_SPELL_GRAMMAR_DIALOG 272*cdf0e10cSrcweir [ 273*cdf0e10cSrcweir ExecMethod = Execute ; 274*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 275*cdf0e10cSrcweir ] 276*cdf0e10cSrcweir SID_RECHECK_DOCUMENT 277*cdf0e10cSrcweir [ 278*cdf0e10cSrcweir ExecMethod = Execute ; 279*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 280*cdf0e10cSrcweir ] 281*cdf0e10cSrcweir FN_LINE_NUMBERING_DLG // status() 282*cdf0e10cSrcweir [ 283*cdf0e10cSrcweir ExecMethod = Execute; 284*cdf0e10cSrcweir ] 285*cdf0e10cSrcweir FN_UPDATE_TOX // status() 286*cdf0e10cSrcweir [ 287*cdf0e10cSrcweir ExecMethod = Execute ; 288*cdf0e10cSrcweir StateMethod = GetState ; 289*cdf0e10cSrcweir MenuConfig , AccelConfig , ToolBoxConfig ; 290*cdf0e10cSrcweir 291*cdf0e10cSrcweir ] 292*cdf0e10cSrcweir FN_UPDATE_CUR_TOX // status() 293*cdf0e10cSrcweir [ 294*cdf0e10cSrcweir ExecMethod = Execute ; 295*cdf0e10cSrcweir StateMethod = GetState ; 296*cdf0e10cSrcweir ] 297*cdf0e10cSrcweir FN_EDIT_CURRENT_TOX // status() 298*cdf0e10cSrcweir [ 299*cdf0e10cSrcweir ExecMethod = Execute ; 300*cdf0e10cSrcweir StateMethod = GetState ; 301*cdf0e10cSrcweir ] 302*cdf0e10cSrcweir SID_TWAIN_SELECT 303*cdf0e10cSrcweir [ 304*cdf0e10cSrcweir ExecMethod = Execute ; 305*cdf0e10cSrcweir StateMethod = GetState ; 306*cdf0e10cSrcweir ] 307*cdf0e10cSrcweir SID_TWAIN_TRANSFER 308*cdf0e10cSrcweir [ 309*cdf0e10cSrcweir ExecMethod = Execute ; 310*cdf0e10cSrcweir StateMethod = GetState ; 311*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 312*cdf0e10cSrcweir ] 313*cdf0e10cSrcweir //--------------------------------------------------------------------- 314*cdf0e10cSrcweir //Ab hier Statusleiste 315*cdf0e10cSrcweir FN_STAT_PAGE // status() 316*cdf0e10cSrcweir [ 317*cdf0e10cSrcweir ExecMethod = ExecuteStatusLine ; 318*cdf0e10cSrcweir StateMethod = StateStatusLine ; 319*cdf0e10cSrcweir ] 320*cdf0e10cSrcweir FN_STAT_BOOKMARK // status() 321*cdf0e10cSrcweir [ 322*cdf0e10cSrcweir ExecMethod = ExecuteStatusLine ; 323*cdf0e10cSrcweir ] 324*cdf0e10cSrcweir FN_STAT_TEMPLATE // status(final|play) 325*cdf0e10cSrcweir [ 326*cdf0e10cSrcweir ExecMethod = ExecuteStatusLine ; 327*cdf0e10cSrcweir StateMethod = StateStatusLine ; 328*cdf0e10cSrcweir ] 329*cdf0e10cSrcweir FN_STAT_SELMODE // status(final|play) 330*cdf0e10cSrcweir [ 331*cdf0e10cSrcweir //Aktueller Selektionsmode: 0 == Normal, 2 == Ergaenzen, 1 == Erweitern 332*cdf0e10cSrcweir ExecMethod = ExecuteStatusLine ; 333*cdf0e10cSrcweir StateMethod = StateStatusLine ; 334*cdf0e10cSrcweir ] 335*cdf0e10cSrcweir FN_SET_ADD_MODE // status() 336*cdf0e10cSrcweir [ 337*cdf0e10cSrcweir ExecMethod = ExecuteStatusLine ; 338*cdf0e10cSrcweir StateMethod = NoState ; 339*cdf0e10cSrcweir ] 340*cdf0e10cSrcweir FN_SET_EXT_MODE // status() 341*cdf0e10cSrcweir [ 342*cdf0e10cSrcweir ExecMethod = ExecuteStatusLine ; 343*cdf0e10cSrcweir StateMethod = NoState ; 344*cdf0e10cSrcweir ] 345*cdf0e10cSrcweir SID_ATTR_ZOOM // status(final|play) 346*cdf0e10cSrcweir [ 347*cdf0e10cSrcweir ExecMethod = ExecuteStatusLine ; 348*cdf0e10cSrcweir StateMethod = StateStatusLine ; 349*cdf0e10cSrcweir ] 350*cdf0e10cSrcweir SID_ATTR_VIEWLAYOUT // status() 351*cdf0e10cSrcweir [ 352*cdf0e10cSrcweir ExecMethod = ExecuteStatusLine ; 353*cdf0e10cSrcweir StateMethod = StateStatusLine ; 354*cdf0e10cSrcweir ] 355*cdf0e10cSrcweir SID_ATTR_ZOOMSLIDER // status() 356*cdf0e10cSrcweir [ 357*cdf0e10cSrcweir ExecMethod = ExecuteStatusLine ; 358*cdf0e10cSrcweir StateMethod = StateStatusLine ; 359*cdf0e10cSrcweir ] 360*cdf0e10cSrcweir SID_ATTR_INSERT // status(final|play|rec) 361*cdf0e10cSrcweir [ 362*cdf0e10cSrcweir ExecMethod = ExecuteStatusLine ; 363*cdf0e10cSrcweir StateMethod = StateStatusLine ; 364*cdf0e10cSrcweir ] 365*cdf0e10cSrcweir SID_ATTR_SIZE // status() 366*cdf0e10cSrcweir [ 367*cdf0e10cSrcweir ExecMethod = ExecuteStatusLine ; 368*cdf0e10cSrcweir StateMethod = StateStatusLine ; 369*cdf0e10cSrcweir ] 370*cdf0e10cSrcweir SID_ATTR_POSITION // status() 371*cdf0e10cSrcweir [ 372*cdf0e10cSrcweir StateMethod = StateStatusLine ; 373*cdf0e10cSrcweir ] 374*cdf0e10cSrcweir SID_TABLE_CELL // status() 375*cdf0e10cSrcweir [ 376*cdf0e10cSrcweir StateMethod = StateStatusLine ; 377*cdf0e10cSrcweir ] 378*cdf0e10cSrcweir //---------------------------------------------- 379*cdf0e10cSrcweir //End mit Statusleiste 380*cdf0e10cSrcweir //---------------------------------------------- 381*cdf0e10cSrcweir SID_ATTR_BORDER_SHADOW // status() 382*cdf0e10cSrcweir [ 383*cdf0e10cSrcweir ExecMethod = Execute ; 384*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 385*cdf0e10cSrcweir ] 386*cdf0e10cSrcweir /****************************************************/ 387*cdf0e10cSrcweir /* */ 388*cdf0e10cSrcweir /* Properties Seitenformat */ 389*cdf0e10cSrcweir /* */ 390*cdf0e10cSrcweir /****************************************************/ 391*cdf0e10cSrcweir SID_ATTR_PAGE // status() 392*cdf0e10cSrcweir [ 393*cdf0e10cSrcweir ExecMethod = Execute ; 394*cdf0e10cSrcweir StateMethod = GetState ; 395*cdf0e10cSrcweir ] 396*cdf0e10cSrcweir SID_ATTR_PAGE_SIZE // status(final|play) 397*cdf0e10cSrcweir [ 398*cdf0e10cSrcweir ExecMethod = Execute ; 399*cdf0e10cSrcweir StateMethod = GetState ; 400*cdf0e10cSrcweir ] 401*cdf0e10cSrcweir SID_ATTR_PAGE_MAXSIZE // status() 402*cdf0e10cSrcweir [ 403*cdf0e10cSrcweir Export = FALSE ; 404*cdf0e10cSrcweir ExecMethod = Execute ; 405*cdf0e10cSrcweir ] 406*cdf0e10cSrcweir SID_ATTR_PAGE_PAPERBIN // status(final|play) 407*cdf0e10cSrcweir [ 408*cdf0e10cSrcweir ExecMethod = Execute ; 409*cdf0e10cSrcweir StateMethod = GetState ; 410*cdf0e10cSrcweir ] 411*cdf0e10cSrcweir SID_THESAURUS // status(final|play) 412*cdf0e10cSrcweir [ 413*cdf0e10cSrcweir ExecMethod = ExecLingu ; 414*cdf0e10cSrcweir StateMethod = GetState ; 415*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 416*cdf0e10cSrcweir ] 417*cdf0e10cSrcweir SID_HANGUL_HANJA_CONVERSION // status(final|play) 418*cdf0e10cSrcweir [ 419*cdf0e10cSrcweir ExecMethod = ExecLingu ; 420*cdf0e10cSrcweir StateMethod = GetState ; 421*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 422*cdf0e10cSrcweir ] 423*cdf0e10cSrcweir SID_CHINESE_CONVERSION 424*cdf0e10cSrcweir [ 425*cdf0e10cSrcweir ExecMethod = ExecLingu ; 426*cdf0e10cSrcweir StateMethod = GetState ; 427*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 428*cdf0e10cSrcweir ] 429*cdf0e10cSrcweir /* 430*cdf0e10cSrcweir suchen und ersetzen 431*cdf0e10cSrcweir*/ 432*cdf0e10cSrcweir 433*cdf0e10cSrcweir 434*cdf0e10cSrcweir SID_SEARCH_ITEM // status() 435*cdf0e10cSrcweir [ 436*cdf0e10cSrcweir ExecMethod = ExecSearch ; 437*cdf0e10cSrcweir StateMethod = StateSearch ; 438*cdf0e10cSrcweir Export = FALSE; 439*cdf0e10cSrcweir ] 440*cdf0e10cSrcweir FN_REPEAT_SEARCH // status(final|play) 441*cdf0e10cSrcweir [ 442*cdf0e10cSrcweir ExecMethod = ExecSearch ; 443*cdf0e10cSrcweir ] 444*cdf0e10cSrcweir FID_SEARCH_NOW // status() 445*cdf0e10cSrcweir [ 446*cdf0e10cSrcweir ExecMethod = ExecSearch ; 447*cdf0e10cSrcweir ] 448*cdf0e10cSrcweir SID_SEARCH_OPTIONS // status() 449*cdf0e10cSrcweir [ 450*cdf0e10cSrcweir StateMethod = StateSearch ; 451*cdf0e10cSrcweir ] 452*cdf0e10cSrcweir FID_SEARCH_SEARCHSET // status() 453*cdf0e10cSrcweir [ 454*cdf0e10cSrcweir ExecMethod = ExecSearch ; 455*cdf0e10cSrcweir ] 456*cdf0e10cSrcweir FID_SEARCH_REPLACESET // status() 457*cdf0e10cSrcweir [ 458*cdf0e10cSrcweir ExecMethod = ExecSearch ; 459*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 460*cdf0e10cSrcweir ] 461*cdf0e10cSrcweir SID_ATTR_TABSTOP // status() 462*cdf0e10cSrcweir [ 463*cdf0e10cSrcweir ExecMethod = ExecTabWin ; 464*cdf0e10cSrcweir StateMethod = StateTabWin ; 465*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 466*cdf0e10cSrcweir ] 467*cdf0e10cSrcweir SID_ATTR_TABSTOP_VERTICAL // status() 468*cdf0e10cSrcweir [ 469*cdf0e10cSrcweir ExecMethod = ExecTabWin ; 470*cdf0e10cSrcweir StateMethod = StateTabWin ; 471*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 472*cdf0e10cSrcweir ] 473*cdf0e10cSrcweir // ab hier Export = FALSE; 474*cdf0e10cSrcweir FID_SEARCH_ON // status() 475*cdf0e10cSrcweir [ 476*cdf0e10cSrcweir ExecMethod = ExecSearch ; 477*cdf0e10cSrcweir Export = FALSE; 478*cdf0e10cSrcweir ] 479*cdf0e10cSrcweir FID_SEARCH_OFF // status() 480*cdf0e10cSrcweir [ 481*cdf0e10cSrcweir ExecMethod = ExecSearch ; 482*cdf0e10cSrcweir Export = FALSE; 483*cdf0e10cSrcweir ] 484*cdf0e10cSrcweir FN_INSERT_CTRL 485*cdf0e10cSrcweir [ 486*cdf0e10cSrcweir ExecMethod = Execute ; 487*cdf0e10cSrcweir StateMethod = GetState ; 488*cdf0e10cSrcweir Export = FALSE; 489*cdf0e10cSrcweir ] 490*cdf0e10cSrcweir 491*cdf0e10cSrcweir SID_ATTR_DEFTABSTOP 492*cdf0e10cSrcweir [ 493*cdf0e10cSrcweir ExecMethod = Execute ; 494*cdf0e10cSrcweir StateMethod = GetState ; 495*cdf0e10cSrcweir Export = FALSE; 496*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 497*cdf0e10cSrcweir ] 498*cdf0e10cSrcweir SID_ATTR_LANGUAGE 499*cdf0e10cSrcweir [ 500*cdf0e10cSrcweir ExecMethod = Execute ; 501*cdf0e10cSrcweir StateMethod = GetState ; 502*cdf0e10cSrcweir Export = FALSE; 503*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 504*cdf0e10cSrcweir ] 505*cdf0e10cSrcweir SID_ATTR_CHAR_CJK_LANGUAGE 506*cdf0e10cSrcweir [ 507*cdf0e10cSrcweir ExecMethod = Execute ; 508*cdf0e10cSrcweir StateMethod = GetState ; 509*cdf0e10cSrcweir Export = FALSE; 510*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 511*cdf0e10cSrcweir ] 512*cdf0e10cSrcweir SID_ATTR_CHAR_CTL_LANGUAGE 513*cdf0e10cSrcweir [ 514*cdf0e10cSrcweir ExecMethod = Execute ; 515*cdf0e10cSrcweir StateMethod = GetState ; 516*cdf0e10cSrcweir Export = FALSE; 517*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 518*cdf0e10cSrcweir ] 519*cdf0e10cSrcweir 520*cdf0e10cSrcweir 521*cdf0e10cSrcweir SID_JUMPTOMARK 522*cdf0e10cSrcweir [ 523*cdf0e10cSrcweir ExecMethod = Execute ; 524*cdf0e10cSrcweir StateMethod = NoState ; 525*cdf0e10cSrcweir FastCall , Cachable ; 526*cdf0e10cSrcweir ] 527*cdf0e10cSrcweir 528*cdf0e10cSrcweir FN_SYNC_LABELS // status(play) 529*cdf0e10cSrcweir [ 530*cdf0e10cSrcweir ExecMethod = Execute ; 531*cdf0e10cSrcweir ] 532*cdf0e10cSrcweir FN_MAILMERGE_CHILDWINDOW 533*cdf0e10cSrcweir [ 534*cdf0e10cSrcweir ExecMethod = Execute ; 535*cdf0e10cSrcweir StateMethod = GetState; 536*cdf0e10cSrcweir ] 537*cdf0e10cSrcweir 538*cdf0e10cSrcweir FN_MAILMERGE_SENDMAIL_CHILDWINDOW 539*cdf0e10cSrcweir [ 540*cdf0e10cSrcweir ExecMethod = Execute ; 541*cdf0e10cSrcweir StateMethod = GetState; 542*cdf0e10cSrcweir ] 543*cdf0e10cSrcweir 544*cdf0e10cSrcweir SID_ATTR_BRUSH // status() 545*cdf0e10cSrcweir [ 546*cdf0e10cSrcweir ExecMethod = Execute ; 547*cdf0e10cSrcweir StateMethod = GetState ; 548*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 549*cdf0e10cSrcweir ] 550*cdf0e10cSrcweir SID_GALLERY 551*cdf0e10cSrcweir [ 552*cdf0e10cSrcweir ExecMethod = Execute ; 553*cdf0e10cSrcweir StateMethod = GetState ; 554*cdf0e10cSrcweir ] 555*cdf0e10cSrcweir SID_AVMEDIA_PLAYER 556*cdf0e10cSrcweir [ 557*cdf0e10cSrcweir ExecMethod = Execute ; 558*cdf0e10cSrcweir StateMethod = GetState ; 559*cdf0e10cSrcweir ] 560*cdf0e10cSrcweir SID_VIEW_DATA_SOURCE_BROWSER // status() 561*cdf0e10cSrcweir [ 562*cdf0e10cSrcweir ExecMethod = Execute ; 563*cdf0e10cSrcweir StateMethod = GetState; 564*cdf0e10cSrcweir ] 565*cdf0e10cSrcweir SID_READONLY_MODE // ole : no, status : no 566*cdf0e10cSrcweir [ 567*cdf0e10cSrcweir StateMethod = GetState ; 568*cdf0e10cSrcweir ] 569*cdf0e10cSrcweir SID_IMAGE_ORIENTATION 570*cdf0e10cSrcweir [ 571*cdf0e10cSrcweir StateMethod = GetState ; 572*cdf0e10cSrcweir ] 573*cdf0e10cSrcweir FN_INSERT_FIELD_DATA_ONLY // status(final|play) 574*cdf0e10cSrcweir [ 575*cdf0e10cSrcweir ExecMethod = Execute ; 576*cdf0e10cSrcweir StateMethod = GetState ; 577*cdf0e10cSrcweir ] 578*cdf0e10cSrcweir FN_QRY_MERGE // status() 579*cdf0e10cSrcweir [ 580*cdf0e10cSrcweir ExecMethod = Execute ; 581*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_MAILBOX_EDITOR"; 582*cdf0e10cSrcweir ] 583*cdf0e10cSrcweir SID_ALIGN_ANY_LEFT 584*cdf0e10cSrcweir [ 585*cdf0e10cSrcweir ExecMethod = Execute ; 586*cdf0e10cSrcweir StateMethod = GetState ; 587*cdf0e10cSrcweir ] 588*cdf0e10cSrcweir SID_ALIGN_ANY_HCENTER 589*cdf0e10cSrcweir [ 590*cdf0e10cSrcweir ExecMethod = Execute ; 591*cdf0e10cSrcweir StateMethod = GetState ; 592*cdf0e10cSrcweir ] 593*cdf0e10cSrcweir SID_ALIGN_ANY_RIGHT 594*cdf0e10cSrcweir [ 595*cdf0e10cSrcweir ExecMethod = Execute ; 596*cdf0e10cSrcweir StateMethod = GetState ; 597*cdf0e10cSrcweir ] 598*cdf0e10cSrcweir SID_ALIGN_ANY_JUSTIFIED 599*cdf0e10cSrcweir [ 600*cdf0e10cSrcweir ExecMethod = Execute ; 601*cdf0e10cSrcweir StateMethod = GetState ; 602*cdf0e10cSrcweir ] 603*cdf0e10cSrcweir SID_ALIGN_ANY_TOP 604*cdf0e10cSrcweir [ 605*cdf0e10cSrcweir ExecMethod = Execute ; 606*cdf0e10cSrcweir StateMethod = GetState ; 607*cdf0e10cSrcweir ] 608*cdf0e10cSrcweir SID_ALIGN_ANY_VCENTER 609*cdf0e10cSrcweir [ 610*cdf0e10cSrcweir ExecMethod = Execute ; 611*cdf0e10cSrcweir StateMethod = GetState ; 612*cdf0e10cSrcweir ] 613*cdf0e10cSrcweir SID_ALIGN_ANY_BOTTOM 614*cdf0e10cSrcweir [ 615*cdf0e10cSrcweir ExecMethod = Execute ; 616*cdf0e10cSrcweir StateMethod = GetState ; 617*cdf0e10cSrcweir ] 618*cdf0e10cSrcweir SID_RESTORE_EDITING_VIEW 619*cdf0e10cSrcweir [ 620*cdf0e10cSrcweir ExecMethod = Execute ; 621*cdf0e10cSrcweir StateMethod = GetState ; 622*cdf0e10cSrcweir ] 623*cdf0e10cSrcweir SID_INSERT_GRAPHIC // status(final|play) 624*cdf0e10cSrcweir [ 625*cdf0e10cSrcweir ExecMethod = Execute ; 626*cdf0e10cSrcweir StateMethod = NoState ; 627*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 628*cdf0e10cSrcweir ] 629*cdf0e10cSrcweir SID_AUTOSPELL_CHECK 630*cdf0e10cSrcweir [ 631*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 632*cdf0e10cSrcweir StateMethod = StateViewOptions ; 633*cdf0e10cSrcweir ] 634*cdf0e10cSrcweir 635*cdf0e10cSrcweir //Extra/Optionen/Ansicht 636*cdf0e10cSrcweir //Wird zusammen zum Property ViewSettings 637*cdf0e10cSrcweir FN_VIEW_HIDDEN_PARA 638*cdf0e10cSrcweir [ 639*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 640*cdf0e10cSrcweir StateMethod = StateViewOptions ; 641*cdf0e10cSrcweir Export = FALSE; 642*cdf0e10cSrcweir ] 643*cdf0e10cSrcweir 644*cdf0e10cSrcweir FN_VIEW_NOTES 645*cdf0e10cSrcweir [ 646*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 647*cdf0e10cSrcweir StateMethod = StateViewOptions ; 648*cdf0e10cSrcweir Export = FALSE; 649*cdf0e10cSrcweir ] 650*cdf0e10cSrcweir // alles ab hier kann weg (Export = FALSE;), wenn die vorangehenden funktionieren 651*cdf0e10cSrcweir FN_RULER // status() 652*cdf0e10cSrcweir [ 653*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 654*cdf0e10cSrcweir StateMethod = StateViewOptions ; 655*cdf0e10cSrcweir Export = FALSE; 656*cdf0e10cSrcweir Cachable; 657*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 658*cdf0e10cSrcweir ] 659*cdf0e10cSrcweir 660*cdf0e10cSrcweir FN_VIEW_BOUNDS // status() 661*cdf0e10cSrcweir [ 662*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 663*cdf0e10cSrcweir StateMethod = StateViewOptions ; 664*cdf0e10cSrcweir Export = FALSE; 665*cdf0e10cSrcweir Cachable; 666*cdf0e10cSrcweir ] 667*cdf0e10cSrcweir 668*cdf0e10cSrcweir FN_VIEW_GRAPHIC // status() 669*cdf0e10cSrcweir [ 670*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 671*cdf0e10cSrcweir StateMethod = StateViewOptions ; 672*cdf0e10cSrcweir Export = FALSE ; 673*cdf0e10cSrcweir ] 674*cdf0e10cSrcweir FN_VIEW_FIELDS // status() 675*cdf0e10cSrcweir [ 676*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 677*cdf0e10cSrcweir StateMethod = StateViewOptions ; 678*cdf0e10cSrcweir Export = FALSE; 679*cdf0e10cSrcweir ] 680*cdf0e10cSrcweir 681*cdf0e10cSrcweir FN_VIEW_FIELDNAME // status() 682*cdf0e10cSrcweir [ 683*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 684*cdf0e10cSrcweir StateMethod = StateViewOptions ; 685*cdf0e10cSrcweir Cachable ; 686*cdf0e10cSrcweir Export = FALSE; 687*cdf0e10cSrcweir ] 688*cdf0e10cSrcweir 689*cdf0e10cSrcweir FN_VIEW_MARKS // status() 690*cdf0e10cSrcweir [ 691*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 692*cdf0e10cSrcweir StateMethod = StateViewOptions ; 693*cdf0e10cSrcweir Cachable ; 694*cdf0e10cSrcweir Export = FALSE; 695*cdf0e10cSrcweir ] 696*cdf0e10cSrcweir 697*cdf0e10cSrcweir FN_VIEW_META_CHARS // status() 698*cdf0e10cSrcweir [ 699*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 700*cdf0e10cSrcweir StateMethod = StateViewOptions ; 701*cdf0e10cSrcweir Cachable ; 702*cdf0e10cSrcweir Export = FALSE; 703*cdf0e10cSrcweir ] 704*cdf0e10cSrcweir 705*cdf0e10cSrcweir FN_VIEW_TABLEGRID // status() 706*cdf0e10cSrcweir [ 707*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 708*cdf0e10cSrcweir StateMethod = StateViewOptions ; 709*cdf0e10cSrcweir ] 710*cdf0e10cSrcweir 711*cdf0e10cSrcweir SID_GRID_VISIBLE 712*cdf0e10cSrcweir [ 713*cdf0e10cSrcweir ExecMethod = ExecViewOptions; 714*cdf0e10cSrcweir StateMethod = StateViewOptions ; 715*cdf0e10cSrcweir ] 716*cdf0e10cSrcweir SID_GRID_USE 717*cdf0e10cSrcweir [ 718*cdf0e10cSrcweir ExecMethod = ExecViewOptions; 719*cdf0e10cSrcweir StateMethod = StateViewOptions ; 720*cdf0e10cSrcweir ] 721*cdf0e10cSrcweir SID_HELPLINES_MOVE 722*cdf0e10cSrcweir [ 723*cdf0e10cSrcweir ExecMethod = ExecViewOptions; 724*cdf0e10cSrcweir StateMethod = StateViewOptions ; 725*cdf0e10cSrcweir ] 726*cdf0e10cSrcweir 727*cdf0e10cSrcweir FN_VLINEAL // status() 728*cdf0e10cSrcweir [ 729*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 730*cdf0e10cSrcweir StateMethod = StateViewOptions ; 731*cdf0e10cSrcweir Export = FALSE; 732*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 733*cdf0e10cSrcweir ] 734*cdf0e10cSrcweir 735*cdf0e10cSrcweir FN_HSCROLLBAR // status() 736*cdf0e10cSrcweir [ 737*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 738*cdf0e10cSrcweir StateMethod = StateViewOptions ; 739*cdf0e10cSrcweir Export = FALSE; 740*cdf0e10cSrcweir ] 741*cdf0e10cSrcweir 742*cdf0e10cSrcweir FN_VSCROLLBAR // status() 743*cdf0e10cSrcweir [ 744*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 745*cdf0e10cSrcweir StateMethod = StateViewOptions ; 746*cdf0e10cSrcweir Export = FALSE; 747*cdf0e10cSrcweir ] 748*cdf0e10cSrcweir 749*cdf0e10cSrcweir FN_SHADOWCURSOR // status(final|play) 750*cdf0e10cSrcweir [ 751*cdf0e10cSrcweir ExecMethod = ExecViewOptions ; 752*cdf0e10cSrcweir StateMethod = StateViewOptions ; 753*cdf0e10cSrcweir DisableFlags="SW_DISABLE_ON_PROTECTED_CURSOR"; 754*cdf0e10cSrcweir ] 755*cdf0e10cSrcweir} 756*cdf0e10cSrcweir 757*cdf0e10cSrcweirinterface GlobalContents 758*cdf0e10cSrcweir[ uuid = "1FD80520-F517-11d0-AC9B-008029E867C6"; ] 759*cdf0e10cSrcweir{ 760*cdf0e10cSrcweir UINT16 Type FN_COLL_TYPE 761*cdf0e10cSrcweir ( 762*cdf0e10cSrcweir UINT16 Position FN_COLL_TYPE 763*cdf0e10cSrcweir ) 764*cdf0e10cSrcweir [ 765*cdf0e10cSrcweir ] 766*cdf0e10cSrcweir 767*cdf0e10cSrcweir // Bereichsname, Index-Titel oder Leerstring 768*cdf0e10cSrcweir String Title FN_COLL_TITLE 769*cdf0e10cSrcweir ( 770*cdf0e10cSrcweir UINT16 Position FN_COLL_TITLE 771*cdf0e10cSrcweir ) 772*cdf0e10cSrcweir [ 773*cdf0e10cSrcweir ] 774*cdf0e10cSrcweir // ohne FileName wird ein TextBereich an der Position eingefuegt 775*cdf0e10cSrcweir BOOL InsertDocument FN_COLL_ADD 776*cdf0e10cSrcweir ( 777*cdf0e10cSrcweir UINT16 Position FN_COLL_ADD, 778*cdf0e10cSrcweir UINT16 FileName FN_PARAM_1 779*cdf0e10cSrcweir ) 780*cdf0e10cSrcweir [ 781*cdf0e10cSrcweir ] 782*cdf0e10cSrcweir 783*cdf0e10cSrcweir} 784*cdf0e10cSrcweir 785