diff options
Diffstat (limited to 'svx/source/cui/macropg.src')
-rw-r--r-- | svx/source/cui/macropg.src | 374 |
1 files changed, 374 insertions, 0 deletions
diff --git a/svx/source/cui/macropg.src b/svx/source/cui/macropg.src new file mode 100644 index 000000000000..84fdb5c1af7f --- /dev/null +++ b/svx/source/cui/macropg.src @@ -0,0 +1,374 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: macropg.src,v $ + * $Revision: 1.13 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +#include <sfx2/sfx.hrc> +#include "macropg.hrc" +#include <svx/dialogs.hrc> +#include "helpid.hrc" + +#define MASKCOLOR MaskColor = \ + Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; }; + +TabPage RID_SVXPAGE_MACROASSIGN +{ + // HelpID = HID_MACROASSIGN ; + Hide = TRUE ; + OutputSize = TRUE ; + SVLook = TRUE ; + Size = MAP_APPFONT ( WIDTH_TP , HEIGHT_TP ) ; + Text [ en-US ] = "Assign action" ; + String STR_EVENT + { + Text [ en-US ] = "Event" ; + }; + String STR_ASSMACRO + { + Text [ en-US ] = "Assigned Action" ; + }; + Control LB_EVENT + { + Border = TRUE ; + TabStop = TRUE; + Pos = MAP_APPFONT ( COL0 , ROW0 ) ; + Size = MAP_APPFONT ( WIDTH1_2 , HEIGHT0 ) ; + HelpID = HID_SVX_MACRO_LB_EVENT ; + }; + FixedText FT_ASSIGN + { + Pos = MAP_APPFONT ( COL4 , ROW0 ) ; + Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_FIXEDTEXT_HEIGHT ) ; + Text [ en-US ] = "Assign:" ; + }; + PushButton PB_ASSIGN + { + Pos = MAP_APPFONT ( COL4 , ROW0A ) ; + Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ; + Text [ en-US ] = "M~acro..." ; + Disable = TRUE ; + TabStop = TRUE ; + }; + PushButton PB_ASSIGN_COMPONENT + { + Pos = MAP_APPFONT ( COL4 , ROW2 ) ; + Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ; + Disable = TRUE ; + TabStop = TRUE ; + Text [ en-US ] = "Com~ponent..." ; + }; + PushButton PB_DELETE + { + Pos = MAP_APPFONT ( COL4 , ROW5_REMOVE ) ; + Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ; + Text [ en-US ] = "~Remove" ; + Disable = TRUE ; + TabStop = TRUE ; + }; + Image IMG_MACRO + { + ImageBitmap = Bitmap { File = "id018.png"; }; + MASKCOLOR + }; + Image IMG_COMPONENT + { + ImageBitmap = Bitmap { File = "component_16.png"; }; + MASKCOLOR + }; + Image IMG_MACRO_H + { + ImageBitmap = Bitmap { File = "idh018.png"; }; + MASKCOLOR + }; + Image IMG_COMPONENT_H + { + ImageBitmap = Bitmap { File = "component_16_h.png"; }; + MASKCOLOR + }; +}; + +ModalDialog RID_SVXDLG_ASSIGNCOMPONENT +{ + OutputSize = TRUE ; + SVLook = TRUE ; + Size = MAP_APPFONT ( COMP_WIDTH , COMP_HEIGHT ) ; + Moveable = TRUE ; + Closeable = TRUE ; + Text [ en-US ] = "Assign Component"; + OKButton RID_PB_OK + { + Pos = MAP_APPFONT ( COMP_COL1 , COMP_ROW0 ) ; + Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ; + TabStop = TRUE ; + DefButton = TRUE ; + }; + CancelButton RID_PB_CANCEL + { + Pos = MAP_APPFONT ( COMP_COL1 , COMP_ROW1 ) ; + Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ; + TabStop = TRUE ; + }; + HelpButton RID_PB_HELP + { + Pos = MAP_APPFONT ( COMP_COL1 , COMP_ROW2 ) ; + Size = MAP_APPFONT ( RSC_CD_PUSHBUTTON_WIDTH , RSC_CD_PUSHBUTTON_HEIGHT ) ; + }; + FixedText FT_METHOD + { + Pos = MAP_APPFONT ( COMP_COL0 , ROW0 ) ; + Size = MAP_APPFONT ( COMP_EDIT_WIDTH , RSC_CD_FIXEDTEXT_HEIGHT ) ; + Text [ en-US ] = "Component method name" ; + }; + Edit EDIT_METHOD + { + Border = TRUE ; + Pos = MAP_APPFONT ( COMP_COL0 , COMP_ROWEDIT ) ; + Size = MAP_APPFONT ( COMP_EDIT_WIDTH , RSC_CD_TEXTBOX_HEIGHT ) ; + TabStop = TRUE ; + }; +}; + + +//DF +String RID_SVXSTR_EVENT_STARTAPP +{ + Text [ en-US ] = "Start Application" ; +}; + +String RID_SVXSTR_EVENT_CLOSEAPP +{ + Text [ en-US ] = "Close Application" ; +}; + +String RID_SVXSTR_EVENT_CREATEDOC +{ + Text [ en-US ] = "Create Document" ; +}; + +String RID_SVXSTR_EVENT_CLOSEDOC +{ + Text [ en-US ] = "Document is closing" ; +}; + +String RID_SVXSTR_EVENT_PREPARECLOSEDOC +{ + Text [ en-US ] = "Close Document" ; +}; + +String RID_SVXSTR_EVENT_OPENDOC +{ + Text [ en-US ] = "Open Document" ; +}; + +String RID_SVXSTR_EVENT_SAVEDOC +{ + Text [ en-US ] = "Save Document" ; +}; + +String RID_SVXSTR_EVENT_SAVEASDOC +{ + Text [ en-US ] = "Save Document As" ; +}; + +String RID_SVXSTR_EVENT_SAVEDOCDONE +{ + Text [ en-US ] = "Document has been saved" ; +}; + +String RID_SVXSTR_EVENT_SAVEASDOCDONE +{ + Text [ en-US ] = "Document has been saved as" ; +}; + +String RID_SVXSTR_EVENT_ACTIVATEDOC +{ + Text [ en-US ] = "Activate Document" ; +}; + +String RID_SVXSTR_EVENT_DEACTIVATEDOC +{ + Text [ en-US ] = "Deactivate Document" ; +}; + +String RID_SVXSTR_EVENT_PRINTDOC +{ + Text [ en-US ] = "Print Document" ; +}; + +String RID_SVXSTR_EVENT_MODIFYCHANGED +{ + Text [ en-US ] = "'Modified' status was changed" ; +}; +String RID_SVXSTR_EVENT_MAILMERGE +{ + Text [ en-US ] = "Print form letters" ; +}; +String RID_SVXSTR_EVENT_PAGECOUNTCHANGE +{ + Text [ en-US ] = "Changing the page count" ; +}; +String RID_SVXSTR_EVENT_SUBCOMPONENT_OPENED +{ + Text = "Loaded a sub component" ; +}; +String RID_SVXSTR_EVENT_SUBCOMPONENT_CLOSED +{ + Text = "Closed a sub component" ; +}; +String RID_SVXSTR_EVENT_APPROVEPARAMETER +{ + Text [ en-US ] = "Fill parameters" ; +}; +String RID_SVXSTR_EVENT_ACTIONPERFORMED +{ + Text [ en-US ] = "Execute action" ; +}; +String RID_SVXSTR_EVENT_AFTERUPDATE +{ + Text [ en-US ] = "After updating" ; +}; +String RID_SVXSTR_EVENT_BEFOREUPDATE +{ + Text [ en-US ] = "Before updating" ; +}; +String RID_SVXSTR_EVENT_APPROVEROWCHANGE +{ + Text [ en-US ] = "Before record action" ; +}; +String RID_SVXSTR_EVENT_ROWCHANGE +{ + Text [ en-US ] = "After record action" ; +}; +String RID_SVXSTR_EVENT_CONFIRMDELETE +{ + Text [ en-US ] = "Confirm deletion" ; +}; +String RID_SVXSTR_EVENT_ERROROCCURED +{ + Text [ en-US ] = "Error occurred" ; +}; +String RID_SVXSTR_EVENT_ADJUSTMENTVALUECHANGED +{ + Text [ en-US ] = "While adjusting"; +}; +String RID_SVXSTR_EVENT_FOCUSGAINED +{ + Text [ en-US ] = "When receiving focus" ; +}; +String RID_SVXSTR_EVENT_FOCUSLOST +{ + Text [ en-US ] = "When losing focus" ; +}; +String RID_SVXSTR_EVENT_ITEMSTATECHANGED +{ + Text [ en-US ] = "Item status changed" ; +}; +String RID_SVXSTR_EVENT_KEYTYPED +{ + Text [ en-US ] = "Key pressed" ; +}; +String RID_SVXSTR_EVENT_KEYUP +{ + Text [ en-US ] = "Key released" ; +}; +String RID_SVXSTR_EVENT_LOADED +{ + Text [ en-US ] = "When loading" ; +}; +String RID_SVXSTR_EVENT_RELOADING +{ + Text [ en-US ] = "Before reloading" ; +}; +String RID_SVXSTR_EVENT_RELOADED +{ + Text [ en-US ] = "When reloading" ; +}; +String RID_SVXSTR_EVENT_MOUSEDRAGGED +{ + Text [ en-US ] = "Mouse moved while key pressed" ; +}; +String RID_SVXSTR_EVENT_MOUSEENTERED +{ + Text [ en-US ] = "Mouse inside" ; +}; +String RID_SVXSTR_EVENT_MOUSEEXITED +{ + Text [ en-US ] = "Mouse outside" ; +}; +String RID_SVXSTR_EVENT_MOUSEMOVED +{ + Text [ en-US ] = "Mouse moved" ; +}; +String RID_SVXSTR_EVENT_MOUSEPRESSED +{ + Text [ en-US ] = "Mouse button pressed" ; +}; +String RID_SVXSTR_EVENT_MOUSERELEASED +{ + Text [ en-US ] = "Mouse button released" ; +}; +String RID_SVXSTR_EVENT_POSITIONING +{ + Text [ en-US ] = "Before record change" ; +}; +String RID_SVXSTR_EVENT_POSITIONED +{ + Text [ en-US ] = "After record change" ; +}; +String RID_SVXSTR_EVENT_RESETTED +{ + Text [ en-US ] = "After resetting" ; +}; +String RID_SVXSTR_EVENT_APPROVERESETTED +{ + Text [ en-US ] = "Prior to reset" ; +}; +String RID_SVXSTR_EVENT_APPROVEACTIONPERFORMED +{ + Text [ en-US ] = "Approve action" ; +}; +String RID_SVXSTR_EVENT_SUBMITTED +{ + Text [ en-US ] = "Before submitting" ; +}; +String RID_SVXSTR_EVENT_TEXTCHANGED +{ + Text [ en-US ] = "Text modified" ; +}; +String RID_SVXSTR_EVENT_UNLOADING +{ + Text [ en-US ] = "Before unloading" ; +}; +String RID_SVXSTR_EVENT_UNLOADED +{ + Text [ en-US ] = "When unloading" ; +}; +String RID_SVXSTR_EVENT_CHANGED +{ + Text [ en-US ] = "Changed" ; +}; |