Backout a74bd5095902, Bug 959405 - Please update the Buri Moz-central, 1.3, 1.2 with...
[gecko.git] / layout / forms / nsISelectControlFrame.h
blob76262e47d5697b3618836b962877637d5778d4cb
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/. */
6 #ifndef nsISelectControlFrame_h___
7 #define nsISelectControlFrame_h___
9 #include "nsQueryFrame.h"
11 class nsIDOMHTMLOptionElement;
13 /**
14 * nsISelectControlFrame is the interface for combo boxes and listboxes
16 class nsISelectControlFrame : public nsQueryFrame
18 public:
19 NS_DECL_QUERYFRAME_TARGET(nsISelectControlFrame)
21 /**
22 * Adds an option to the list at index
25 NS_IMETHOD AddOption(int32_t index) = 0;
27 /**
28 * Removes the option at index. The caller must have a live script
29 * blocker while calling this method.
31 NS_IMETHOD RemoveOption(int32_t index) = 0;
33 /**
34 * Sets whether the parser is done adding children
35 * @param aIsDone whether the parser is done adding children
37 NS_IMETHOD DoneAddingChildren(bool aIsDone) = 0;
39 /**
40 * Notify the frame when an option is selected
42 NS_IMETHOD OnOptionSelected(int32_t aIndex, bool aSelected) = 0;
44 /**
45 * Notify the frame when selectedIndex was changed. This might
46 * destroy the frame.
48 NS_IMETHOD OnSetSelectedIndex(int32_t aOldIndex, int32_t aNewIndex) = 0;
52 #endif