bump product version to 4.2.0.1
[LibreOffice.git] / include / sfx2 / msgpool.hxx
blob9f0a4eb84c4ecd836bdbd8d65b117412648ffc7d
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 _SFXMSGPOOL_HXX
20 #define _SFXMSGPOOL_HXX
22 #include <rtl/ustring.hxx>
23 #include <sal/config.h>
24 #include <sal/types.h>
25 #include <sfx2/dllapi.h>
26 #include <sfx2/msg.hxx>
27 #include <string>
28 #include <vector>
30 class SfxInterface;
31 class SfxSlot;
33 typedef std::basic_string< sal_uInt16 > SfxSlotGroupArr_Impl;
34 typedef std::vector<SfxInterface*> SfxInterfaceArr_Impl;
36 class SFX2_DLLPUBLIC SfxSlotPool
38 SfxSlotGroupArr_Impl* _pGroups;
39 SfxSlotPool* _pParentPool;
40 ResMgr* _pResMgr;
41 SfxInterfaceArr_Impl* _pInterfaces;
42 sal_uInt16 _nCurGroup;
43 sal_uInt16 _nCurInterface;
44 sal_uInt16 _nCurMsg;
46 private:
47 const SfxSlot* SeekSlot( sal_uInt16 nObject );
49 public:
50 SfxSlotPool( SfxSlotPool* pParent=0, ResMgr* pMgr=0);
51 ~SfxSlotPool();
53 void RegisterInterface( SfxInterface& rFace );
54 void ReleaseInterface( SfxInterface& rFace );
55 SfxInterface* FirstInterface();
57 static SfxSlotPool& GetSlotPool( SfxViewFrame *pFrame=NULL );
59 sal_uInt16 GetGroupCount();
60 OUString SeekGroup( sal_uInt16 nNo );
61 const SfxSlot* FirstSlot();
62 const SfxSlot* NextSlot();
63 const SfxSlot* GetSlot( sal_uInt16 nId );
64 const SfxSlot* GetUnoSlot( sal_uInt16 nId );
65 const SfxSlot* GetUnoSlot( const OUString& rUnoName );
66 TypeId GetSlotType( sal_uInt16 nSlotId ) const;
69 //--------------------------------------------------------------------
71 // seeks to the first func in the current group
73 inline const SfxSlot* SfxSlotPool::FirstSlot()
75 return SeekSlot(0);
78 #define SFX_SLOTPOOL() SfxSlotPool::GetSlotPool()
80 #endif
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */