Version 4.0.0.1, tag libreoffice-4.0.0.1
[LibreOffice.git] / cui / source / inc / macropg.hxx
blob561e500297acc1e7dae287c2970afc3a69a9698d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef _MACROPG_HXX
20 #define _MACROPG_HXX
22 #include <sfx2/basedlgs.hxx>
23 #include <sfx2/tabdlg.hxx>
25 #include <com/sun/star/container/XNameReplace.hpp>
26 #include <com/sun/star/util/XModifiable.hpp>
27 #include <com/sun/star/beans/PropertyValue.hpp>
28 #include <com/sun/star/uno/Reference.hxx>
29 #include <svl/macitem.hxx>
30 #include <vcl/lstbox.hxx>
31 #include <rtl/ustring.hxx>
33 #include <boost/unordered_map.hpp>
34 #include <vector>
36 typedef ::boost::unordered_map< ::rtl::OUString, ::std::pair< ::rtl::OUString, ::rtl::OUString >, ::rtl::OUStringHash, ::std::equal_to< ::rtl::OUString > > EventsHash;
38 struct EventDisplayName
40 const sal_Char* pAsciiEventName;
41 sal_uInt16 nEventResourceID;
42 EventDisplayName() : pAsciiEventName( NULL ), nEventResourceID(0) { }
43 EventDisplayName( const sal_Char* _pAsciiName, const sal_uInt16 _nResId )
44 : pAsciiEventName( _pAsciiName )
45 , nEventResourceID( _nResId )
49 typedef ::std::vector< EventDisplayName > EventDisplayNames;
51 class _SvxMacroTabPage;
52 class SvTabListBox;
54 class _SvxMacroTabPage_Impl;
57 class _SvxMacroTabPage : public SfxTabPage
59 DECL_STATIC_LINK( _SvxMacroTabPage, SelectEvent_Impl, SvTabListBox * );
60 DECL_STATIC_LINK( _SvxMacroTabPage, AssignDeleteHdl_Impl, PushButton * );
61 DECL_STATIC_LINK( _SvxMacroTabPage, DoubleClickHdl_Impl, SvTabListBox * );
63 static long GenericHandler_Impl( _SvxMacroTabPage* pThis, PushButton* pBtn );
65 protected:
66 _SvxMacroTabPage_Impl* mpImpl;
67 ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > m_xAppEvents;
68 ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > m_xDocEvents;
69 ::com::sun::star::uno::Reference< ::com::sun::star::util::XModifiable > m_xModifiable;
70 EventsHash m_appEventsHash;
71 EventsHash m_docEventsHash;
72 bool bReadOnly, bDocModified, bAppEvents, bInitialized;
73 EventDisplayNames aDisplayNames;
75 _SvxMacroTabPage( Window* pParent, const ResId& rId, const SfxItemSet& rItemSet );
77 void EnableButtons();
78 ::com::sun::star::uno::Any GetPropsByName( const ::rtl::OUString& eventName, EventsHash& eventsHash );
79 ::std::pair< ::rtl::OUString, ::rtl::OUString > GetPairFromAny( ::com::sun::star::uno::Any aAny );
81 public:
83 virtual ~_SvxMacroTabPage();
84 void InitResources();
86 void InitAndSetHandler( ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > xAppEvents, ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > xDocEvents, ::com::sun::star::uno::Reference< ::com::sun::star::util::XModifiable > xModifiable );
87 virtual sal_Bool FillItemSet( SfxItemSet& rSet );
89 using SfxTabPage::Reset;
90 virtual void Reset();
92 void DisplayAppEvents( bool appEvents);
93 void SetReadOnly( sal_Bool bSet );
94 sal_Bool IsReadOnly() const;
97 class SvxMacroTabPage : public _SvxMacroTabPage
99 public:
100 SvxMacroTabPage(
101 Window* pParent,
102 const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& _rxDocumentFrame,
103 const SfxItemSet& rSet,
104 ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > xNameReplace,
105 sal_uInt16 nSelectedIndex
107 virtual ~SvxMacroTabPage();
110 // class SvxMacroAssignDlg --------------------------------------------------
112 typedef sal_uInt16* (*GetTabPageRanges)(); // gives international Which-values
114 class SvxMacroAssignSingleTabDialog : public SfxModalDialog
116 public:
117 SvxMacroAssignSingleTabDialog( Window* pParent, const SfxItemSet& rOptionsSet, sal_uInt16 nUniqueId );
119 virtual ~SvxMacroAssignSingleTabDialog();
121 void SetTabPage( SfxTabPage* pTabPage );
123 private:
124 FixedLine* pFixedLine;
126 OKButton* pOKBtn;
127 CancelButton* pCancelBtn;
128 HelpButton* pHelpBtn;
130 SfxTabPage* pPage;
131 const SfxItemSet* pOptions;
132 SfxItemSet* pOutSet;
134 DECL_DLLPRIVATE_LINK( OKHdl_Impl, Button * );
138 class SvxMacroAssignDlg : public SvxMacroAssignSingleTabDialog
140 public:
141 SvxMacroAssignDlg(
142 Window* pParent,
143 const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& _rxDocumentFrame,
144 const SfxItemSet& rSet,
145 const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace >& xNameReplace,
146 sal_uInt16 nSelectedIndex
148 virtual ~SvxMacroAssignDlg();
151 #endif
153 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */