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 24 #ifndef _MACROPG_IMPL_HXX 25 #define _MACROPG_IMPL_HXX 26 27 class _SvxMacroTabPage_Impl 28 { 29 public: 30 _SvxMacroTabPage_Impl( const SfxItemSet& rAttrSet ); 31 ~_SvxMacroTabPage_Impl(); 32 33 FixedText* pAssignFT; 34 PushButton* pAssignPB; 35 PushButton* pAssignComponentPB; 36 PushButton* pDeletePB; 37 Image* pMacroImg; 38 Image* pComponentImg; 39 Image* pMacroImg_h; 40 Image* pComponentImg_h; 41 String* pStrEvent; 42 String* pAssignedMacro; 43 _HeaderTabListBox* pEventLB; 44 sal_Bool bReadOnly; 45 sal_Bool bIDEDialogMode; 46 }; 47 48 class AssignComponentDialog : public ModalDialog 49 { 50 private: 51 FixedText maMethodLabel; 52 Edit maMethodEdit; 53 OKButton maOKButton; 54 CancelButton maCancelButton; 55 HelpButton maHelpButton; 56 57 ::rtl::OUString maURL; 58 59 DECL_LINK(ButtonHandler, Button *); 60 61 public: 62 AssignComponentDialog( Window * pParent, const ::rtl::OUString& rURL ); 63 ~AssignComponentDialog(); 64 getURL(void) const65 ::rtl::OUString getURL( void ) const 66 { return maURL; } 67 }; 68 69 #endif 70