home *** CD-ROM | disk | FTP | other *** search
-
- File: indicatorclass.doc
- Description: Indicatorclass documentation.
- Copyright: (C) Copyright 1994-1995 Jaba Development.
- (C) Copyright 1994-1995 Jan van den Baard.
- All Rights Reserved.
-
- ------------------------------------------------------------------------------
-
- TABLE OF CONTENTS
-
- indicatorclass/--background--
- indicatorclass/Methods
- indicatorclass/Attributes
-
- indicatorclass/--background-- indicatorclass/--background--
-
- NAME
- Class: indicatorclass
- Superclass: baseclass
- Include File: <libraries/bgui.h>
-
- FUNCTION
- To provide a textual level indicator for gadget objects which might
- need this like the slider and progress classes. As this class may also
- be useful in conjunction with other third party classes it has been
- made available.
-
- Objects of this class do not send out notification events.
-
- indicatorclass/Methods indicatorclass/Methods
-
- NEW METHODS
- None.
-
- CHANGED METHODS
- None.
-
- indicatorclass/Attributes indicatorclass/Attributes
-
- NAME
- INDIC_Min, INDIC_Max -- ( LONG )
-
- FUNCTION
- Set the minimum and maximum possible level indication.
-
- Defaults are 0 minimum and 100 maximum. Applicability is (I).
-
- SEE ALSO
- INDIC_Level
-
- NAME
- INDIC_Level -- ( LONG )
-
- FUNCTION
- Set or update the current level to indication.
-
- Default is 0. Applicability is (ISU).
-
- SEE ALSO
- INDIC_Min, INDIC_Max, INDIC_FormatString
-
- NAME
- INDIC_FormatString -- ( STRPTR )
-
- FUNCTION
- Set the C-style format string which is used to format the current
- level before rendering.
-
- NOTE: Since V38 of the library it is possible to use locale's
- FormatString() formatting codes. Locale specific formatting
- codes will only work when the locale.library is available.
-
- Default is "%ld". Applicability is (I).
-
- SEE ALSO
- exec.library/RawDoFmt(), INDIC_Level
-
- NAME
- INDIC_Justification -- ( ULONG )
-
- FUNCTION
- Set the justification of the textual output. These are the possible
- justification types:
-
- IDJ_LEFT - Left-justify text output.
- IDJ_CENTER - Center text output.
- IDF_RIGHT - Right-justify text output.
-
- Default is IDJ_LEFT. Applicability is (I).
-