|
c128lib Framework
A Commodore 128 software framework for enabling high-level development of C128 programs.
|
Functions | |
| macro | c128lib_Window (position, size, windowTitle, windowParameters) |
| macro | c128lib_WindowWithColor (position, size, windowTitle, windowParameters, color) |
| macro | c128lib_Label (position, label) |
| macro | c128lib_Color (position, color, length) |
| macro | c128lib_LabelWithColor (position, label, color) |
| macro | c128lib_ProgressBar (position, progressBarParameters) |
| macro | c128lib_Button (position, label) |
| macro | c128lib_SlimButton (position, label) |
| macro c128lib_Window | ( | position | , |
| size | , | ||
| windowTitle | , | ||
| windowParameters | ) |
Draws a window in Vdc screen
| [in] | position | Point struct for window starting position |
| [in] | size | Size struct for window size |
| [in] | windowTitle | LabelText struct for window title definition |
| [in] | windowParameters | WindowParameters for detailed window parameters definition |
| macro c128lib_WindowWithColor | ( | position | , |
| size | , | ||
| windowTitle | , | ||
| windowParameters | , | ||
| color | ) |
Draws a window in Vdc screen with specific color
| [in] | position | Point struct for window starting position |
| [in] | size | Size struct for window size |
| [in] | windowTitle | LabelText struct for window title definition |
| [in] | windowParameters | WindowParameters for detailed window parameters definition |
| [in] | color | Defines which color to use |
| macro c128lib_Label | ( | position | , |
| label | ) |
| macro c128lib_Color | ( | position | , |
| color | , | ||
| length | ) |
Set color in attribute memory for specified coordinates
| [in] | position | Point struct for coloring starting position |
| [in] | color | Vdc color code and attribute |
| [in] | length | Coloring length |
| macro c128lib_LabelWithColor | ( | position | , |
| label | , | ||
| color | ) |
Print a label at coordinates with specified color;
| [in] | position | Point struct for label position; |
| [in] | label | LabelText struct for label definition; |
| [in] | color | Vdc color code and attribute |
| macro c128lib_ProgressBar | ( | position | , |
| progressBarParameters | ) |
Prints a progress bar at coordinates
| [in] | position | Point struct for progress bar starting position |
| [in] | progressBarParameters | ProgressBarParameters struct for progress bar parameters |
| macro c128lib_Button | ( | position | , |
| label | ) |
| macro c128lib_SlimButton | ( | position | , |
| label | ) |
Print a slim button at coordinates. It's a single line button instead of three.
| [in] | position | Point struct for slim button position |
| [in] | label | LabelText for label definition; |