2006-02-27 03:20:30 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-02-27 03:20:30 +00:00
|
|
|
|
|
|
|
#ifndef nsIComboboxControlFrame_h___
|
|
|
|
#define nsIComboboxControlFrame_h___
|
|
|
|
|
2009-01-12 19:20:59 +00:00
|
|
|
#include "nsQueryFrame.h"
|
2006-02-27 03:20:30 +00:00
|
|
|
#include "nsFont.h"
|
|
|
|
|
|
|
|
class nsString;
|
|
|
|
class nsIContent;
|
|
|
|
class nsCSSFrameConstructor;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nsIComboboxControlFrame is the common interface for frames of form controls. It
|
|
|
|
* provides a uniform way of creating widgets, resizing, and painting.
|
|
|
|
* @see nsLeafFrame and its base classes for more info
|
|
|
|
*/
|
2009-01-12 19:20:59 +00:00
|
|
|
class nsIComboboxControlFrame : public nsQueryFrame
|
|
|
|
{
|
2006-02-27 03:20:30 +00:00
|
|
|
public:
|
2009-09-12 16:49:24 +00:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsIComboboxControlFrame)
|
2006-02-27 03:20:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Indicates whether the list is dropped down
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool IsDroppedDown() = 0;
|
2006-02-27 03:20:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows or hides the drop down
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual void ShowDropDown(bool aDoDropDown) = 0;
|
2006-02-27 03:20:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the Drop Down List
|
|
|
|
*/
|
|
|
|
virtual nsIFrame* GetDropDown() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the Drop Down List
|
|
|
|
*/
|
|
|
|
virtual void SetDropDown(nsIFrame* aDropDownFrame) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tells the combobox to roll up
|
|
|
|
*/
|
|
|
|
virtual void RollupFromList() = 0;
|
|
|
|
|
|
|
|
/**
|
2009-02-18 03:27:25 +00:00
|
|
|
* Redisplay the selected text (will do nothing if text has not changed).
|
|
|
|
* This method might destroy this frame or any others that happen to be
|
|
|
|
* around. It might even run script.
|
2006-02-27 03:20:30 +00:00
|
|
|
*/
|
|
|
|
NS_IMETHOD RedisplaySelectedText() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method for the listbox to set and get the recent index
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual int32_t UpdateRecentIndex(int32_t aIndex) = 0;
|
2006-02-27 03:20:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Notification that the content has been reset
|
|
|
|
*/
|
|
|
|
virtual void OnContentReset() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This returns the index of the item that is currently being displayed
|
|
|
|
* in the display area. It may differ from what the currently Selected index
|
|
|
|
* is in in the dropdown.
|
|
|
|
*
|
|
|
|
* Detailed explanation:
|
|
|
|
* When the dropdown is dropped down via a mouse click and the user moves the mouse
|
|
|
|
* up and down without clicking, the currently selected item is being tracking inside
|
|
|
|
* the dropdown, but the combobox is not being updated. When the user selects items
|
|
|
|
* with the arrow keys, the combobox is being updated. So when the user clicks outside
|
|
|
|
* the dropdown and it needs to roll up it has to decide whether to keep the current
|
|
|
|
* selection or not. This method is used to get the current index in the combobox to
|
|
|
|
* compare it to the current index in the dropdown to see if the combox has been updated
|
|
|
|
* and that way it knows whether to "cancel" the current selection residing in the
|
|
|
|
* dropdown. Or whether to leave the selection alone.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual int32_t GetIndexOfDisplayArea() = 0;
|
2006-02-27 03:20:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|