|
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
|
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 #ifndef __nsDialogParamBlock_h |
|
7 #define __nsDialogParamBlock_h |
|
8 |
|
9 #include "nsIDialogParamBlock.h" |
|
10 #include "nsIMutableArray.h" |
|
11 #include "nsCOMPtr.h" |
|
12 |
|
13 // {4E4AAE11-8901-46cc-8217-DAD7C5415873} |
|
14 #define NS_DIALOGPARAMBLOCK_CID \ |
|
15 {0x4e4aae11, 0x8901, 0x46cc, {0x82, 0x17, 0xda, 0xd7, 0xc5, 0x41, 0x58, 0x73}} |
|
16 |
|
17 class nsString; |
|
18 |
|
19 class nsDialogParamBlock: public nsIDialogParamBlock |
|
20 { |
|
21 public: |
|
22 nsDialogParamBlock(); |
|
23 virtual ~nsDialogParamBlock(); |
|
24 |
|
25 NS_DECL_NSIDIALOGPARAMBLOCK |
|
26 NS_DECL_ISUPPORTS |
|
27 |
|
28 private: |
|
29 |
|
30 enum {kNumInts = 8, kNumStrings = 16}; |
|
31 |
|
32 nsresult InBounds(int32_t inIndex, int32_t inMax) { |
|
33 return inIndex >= 0 && inIndex < inMax ? NS_OK : NS_ERROR_ILLEGAL_VALUE; |
|
34 } |
|
35 |
|
36 int32_t mInt[kNumInts]; |
|
37 int32_t mNumStrings; |
|
38 nsString* mString; |
|
39 nsCOMPtr<nsIMutableArray> mObjects; |
|
40 }; |
|
41 |
|
42 #endif |
|
43 |