This commit is contained in:
kmcclusk 1998-04-14 20:49:25 +00:00
Родитель 60859b1399
Коммит 96f42c257b
3 изменённых файлов: 9 добавлений и 9 удалений

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

@ -34,7 +34,7 @@ enum nsMode { eMode_load, eMode_save };
/**
* File selector widget.
* Modally select files for loading or saving.
* Modally selects files for loading or saving from a list.
*/
class nsIFileWidget : public nsISupports
@ -48,7 +48,7 @@ public:
* @param aTitle the title of the widget
* @param aMode the mode of the widget
* @param aContext context for displaying widget
* @praam aToolkit toolkit associated with file widget
* @param aToolkit toolkit associated with file widget
*/
virtual void Create( nsIWidget *aParent,
@ -72,7 +72,7 @@ public:
/**
* Show File Dialog. The dialog is displayed modally.
*
* @returns true if user selects <OK>, false if <CANCEL> is selected
* @return PR_TRUE if user selects <OK>, PR_FALSE if <CANCEL> is selected
*
*/
@ -81,7 +81,7 @@ public:
/**
* Get the file or directory including the full path.
*
* @param aFile file or directory selected
* @param aFile on exit it contains the file or directory selected
*/
virtual void GetFile(nsString& aFile) = 0;

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

@ -46,7 +46,7 @@ public:
/**
* Return the number of selected items. For single selection list box this
* @returns the number of selected items
* @return the number of selected items
* can be 1 or 0.
*
*/

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

@ -35,21 +35,21 @@ class nsIMouseListener {
/**
* Processes a mouse pressed event
* @param aMouseEvent @see nsGUIEvent.h
* @returns whether the event was consumed or ignored. @see nsEventStatus
* @return whether the event was consumed or ignored. @see nsEventStatus
*/
virtual nsEventStatus MousePressed(const nsGUIEvent & aMouseEvent) = 0;
/**
* Processes a mouse release event
* @param aMouseEvent @see nsGUIEvent.h
* @returns whether the event was consumed or ignored. @see nsEventStatus
* @return whether the event was consumed or ignored. @see nsEventStatus
*/
virtual nsEventStatus MouseReleased(const nsGUIEvent & aMouseEvent) = 0;
/**
* Processes a mouse clicked event
* @param aMouseEvent @see nsGUIEvent.h
* @returns whether the event was consumed or ignored. @see nsEventStatus
* @return whether the event was consumed or ignored. @see nsEventStatus
*
*/
virtual nsEventStatus MouseClicked(const nsGUIEvent & aMouseEvent) = 0;
@ -57,7 +57,7 @@ class nsIMouseListener {
/**
* Processes a mouse moved event
* @param aMouseEvent @see nsGUIEvent.h
* @returns whether the event was consumed or ignored. @see nsEventStatus
* @return whether the event was consumed or ignored. @see nsEventStatus
*/
virtual nsEventStatus MouseMoved(const nsGUIEvent & aMouseEvent) = 0;