michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: michael@0: michael@0: #ifndef nsCommandGroup_h__ michael@0: #define nsCommandGroup_h__ michael@0: michael@0: #include "nsIController.h" michael@0: michael@0: #include "nsHashtable.h" michael@0: michael@0: michael@0: // {ecd55a01-2780-11d5-a73c-ca641a6813bc} michael@0: #define NS_CONTROLLER_COMMAND_GROUP_CID \ michael@0: { 0xecd55a01, 0x2780, 0x11d5, { 0xa7, 0x3c, 0xca, 0x64, 0x1a, 0x68, 0x13, 0xbc } } michael@0: michael@0: #define NS_CONTROLLER_COMMAND_GROUP_CONTRACTID \ michael@0: "@mozilla.org/embedcomp/controller-command-group;1" michael@0: michael@0: michael@0: class nsControllerCommandGroup : public nsIControllerCommandGroup michael@0: { michael@0: public: michael@0: michael@0: nsControllerCommandGroup(); michael@0: virtual ~nsControllerCommandGroup(); michael@0: michael@0: NS_DECL_ISUPPORTS michael@0: NS_DECL_NSICONTROLLERCOMMANDGROUP michael@0: michael@0: michael@0: protected: michael@0: michael@0: void ClearGroupsHash(); michael@0: michael@0: protected: michael@0: michael@0: static bool ClearEnumerator(nsHashKey *aKey, void *aData, void* closure); michael@0: michael@0: protected: michael@0: michael@0: nsHashtable mGroupsHash; // hash keyed on command group. michael@0: // Entries are nsTArray michael@0: // This could be made more space-efficient, maybe with atoms michael@0: michael@0: }; michael@0: michael@0: michael@0: #endif // nsCommandGroup_h__ michael@0: