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