embedding/components/commandhandler/src/nsCommandGroup.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6
michael@0 7
michael@0 8 #ifndef nsCommandGroup_h__
michael@0 9 #define nsCommandGroup_h__
michael@0 10
michael@0 11 #include "nsIController.h"
michael@0 12
michael@0 13 #include "nsHashtable.h"
michael@0 14
michael@0 15
michael@0 16 // {ecd55a01-2780-11d5-a73c-ca641a6813bc}
michael@0 17 #define NS_CONTROLLER_COMMAND_GROUP_CID \
michael@0 18 { 0xecd55a01, 0x2780, 0x11d5, { 0xa7, 0x3c, 0xca, 0x64, 0x1a, 0x68, 0x13, 0xbc } }
michael@0 19
michael@0 20 #define NS_CONTROLLER_COMMAND_GROUP_CONTRACTID \
michael@0 21 "@mozilla.org/embedcomp/controller-command-group;1"
michael@0 22
michael@0 23
michael@0 24 class nsControllerCommandGroup : public nsIControllerCommandGroup
michael@0 25 {
michael@0 26 public:
michael@0 27
michael@0 28 nsControllerCommandGroup();
michael@0 29 virtual ~nsControllerCommandGroup();
michael@0 30
michael@0 31 NS_DECL_ISUPPORTS
michael@0 32 NS_DECL_NSICONTROLLERCOMMANDGROUP
michael@0 33
michael@0 34
michael@0 35 protected:
michael@0 36
michael@0 37 void ClearGroupsHash();
michael@0 38
michael@0 39 protected:
michael@0 40
michael@0 41 static bool ClearEnumerator(nsHashKey *aKey, void *aData, void* closure);
michael@0 42
michael@0 43 protected:
michael@0 44
michael@0 45 nsHashtable mGroupsHash; // hash keyed on command group.
michael@0 46 // Entries are nsTArray<char*>
michael@0 47 // This could be made more space-efficient, maybe with atoms
michael@0 48
michael@0 49 };
michael@0 50
michael@0 51
michael@0 52 #endif // nsCommandGroup_h__
michael@0 53

mercurial