This commit is contained in:
rods 1998-04-14 19:26:42 +00:00
Родитель 578f13a015
Коммит a66ff83a2e
3 изменённых файлов: 10 добавлений и 10 удалений

Просмотреть файл

@ -43,7 +43,7 @@ public:
/**
* Get the check state.
* @returns PR_TRUE if checked. PR_FALSE if unchecked.
* @returns PRBool PR_TRUE if checked. PR_FALSE if unchecked.
*/
virtual PRBool GetState() = 0;

Просмотреть файл

@ -39,7 +39,7 @@ class nsIRadioButton : public nsIButton {
/**
* Set the radio state.
* @param PRBool PR_TRUE sets the RadioButton and unsets all siblings, PR_FALSE unsets it
* @param aState PR_TRUE sets the RadioButton and unsets all siblings, PR_FALSE unsets it
*
*/
virtual void SetState(PRBool aState) = 0;
@ -47,7 +47,7 @@ class nsIRadioButton : public nsIButton {
/**
* Tells the RadioButton NOT to notify the RadioGroup that it value has been changed
*
* @param PRBool PR_TRUE sets the RadioButton and unsets all siblings, PR_FALSE unsets it
* @param aState PR_TRUE sets the RadioButton and unsets all siblings, PR_FALSE unsets it
*
*/
virtual void SetStateNoNotify(PRBool aState) = 0;
@ -63,7 +63,7 @@ class nsIRadioButton : public nsIButton {
/**
* Gets the RadioGroup associated with this button
*
* @return nsIRadioGroup* its RadioGroup
* @return nsIRadioGroup* its RadioGroup
*
*/
virtual nsIRadioGroup* GetRadioGroup() = 0;
@ -71,7 +71,7 @@ class nsIRadioButton : public nsIButton {
/**
* Sets the RadioGroup associated with this button
*
* @param nsIRadioGroup* the new RadioGroup
* @param aGroup the new RadioGroup
*
*/
virtual void SetRadioGroup(nsIRadioGroup* aGroup) = 0;

Просмотреть файл

@ -41,21 +41,21 @@ public:
/**
* Adds a RadioButton to the group
* @param nsIRadioButton* the radio button to be added
* @param aRadioBtn the radio button to be added
*
*/
virtual void Add(nsIRadioButton * aRadioBtn) = 0;
/**
* Removes a RadioButton from the group
* @param nsIRadioButton* the radio button to be removed
* @param aRadioBtn the radio button to be removed
*
*/
virtual void Remove(nsIRadioButton * aRadioBtn) = 0;
/**
* Setd the name of the RadioGroup
* @param nsString The new name of the radio group
* @param aName The new name of the radio group
*
*/
virtual void SetName(const nsString &aName) = 0;
@ -63,14 +63,14 @@ public:
/**
* Tells the RadioGroup that a child RadioButton has been clicked and it should set
* the approproate state on the other buttons
* @param nsIRadioButton* THe RadioButton that was clicked
* @param aChild The RadioButton that was clicked
*
*/
virtual void Clicked(nsIRadioButton * aChild) = 0;
/**
* Gets the enumeration of children
* @param PRBool nsIEnumerator* The enumeration of children (radio buttons) in the RadioGroup
* @param nsIEnumerator* The enumeration of children (radio buttons) in the RadioGroup
*
*/
virtual nsIEnumerator* GetChildren() = 0;