bump product version to 4.1.6.2
[LibreOffice.git] / include / sfx2 / msgpool.hxx
blob500912ff3f5b9a2a86f5cecff75eb5ecd465addc
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 "sal/config.h"
23 #include "sfx2/dllapi.h"
24 #include "sal/types.h"
26 #include <sfx2/msg.hxx>
27 #include <tools/string.hxx>
29 #include <string>
30 #include <vector>
32 class SfxInterface;
33 class SfxSlot;
35 typedef std::basic_string< sal_uInt16 > SfxSlotGroupArr_Impl;
36 typedef std::vector<SfxInterface*> SfxInterfaceArr_Impl;
38 class SFX2_DLLPUBLIC SfxSlotPool
40 SfxSlotGroupArr_Impl* _pGroups;
41 SfxSlotPool* _pParentPool;
42 ResMgr* _pResMgr;
43 SfxInterfaceArr_Impl* _pInterfaces;
44 sal_uInt16 _nCurGroup;
45 sal_uInt16 _nCurInterface;
46 sal_uInt16 _nCurMsg;
48 private:
49 const SfxSlot* SeekSlot( sal_uInt16 nObject );
51 public:
52 SfxSlotPool( SfxSlotPool* pParent=0, ResMgr* pMgr=0);
53 ~SfxSlotPool();
55 void RegisterInterface( SfxInterface& rFace );
56 void ReleaseInterface( SfxInterface& rFace );
57 SfxInterface* FirstInterface();
59 static SfxSlotPool& GetSlotPool( SfxViewFrame *pFrame=NULL );
61 sal_uInt16 GetGroupCount();
62 String SeekGroup( sal_uInt16 nNo );
63 const SfxSlot* FirstSlot();
64 const SfxSlot* NextSlot();
65 const SfxSlot* GetSlot( sal_uInt16 nId );
66 const SfxSlot* GetUnoSlot( sal_uInt16 nId );
67 const SfxSlot* GetUnoSlot( const String& rUnoName );
68 TypeId GetSlotType( sal_uInt16 nSlotId ) const;
71 //--------------------------------------------------------------------
73 // seeks to the first func in the current group
75 inline const SfxSlot* SfxSlotPool::FirstSlot()
77 return SeekSlot(0);
80 #define SFX_SLOTPOOL() SfxSlotPool::GetSlotPool()
82 #endif
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */