N64FlashcartMenu
Loading...
Searching...
No Matches
common.c File Reference

Common UI components implementation. More...

Functions

void ui_components_box_draw (int x0, int y0, int x1, int y1, color_t color)
 Draw a box with the specified color.
 
void ui_components_border_draw (int x0, int y0, int x1, int y1)
 Draw a border with the default border color.
 
void ui_components_layout_draw_tabbed (void)
 Draw the layout with tabs.
 
void ui_components_layout_draw (void)
 Draw the layout.
 
void ui_components_progressbar_draw (int x0, int y0, int x1, int y1, float progress)
 Draw a progress bar.
 
void ui_components_seekbar_draw (float position)
 Draw a seek bar.
 
void ui_components_loader_draw (float progress)
 Draw a loader.
 
void ui_components_scrollbar_draw (int x, int y, int width, int height, int position, int items, int visible_items)
 Draw a scrollbar.
 
void ui_components_list_scrollbar_draw (int position, int items, int visible_items)
 Draw a list scrollbar.
 
void ui_components_dialog_draw (int width, int height)
 Draw a dialog box.
 
void ui_components_messagebox_draw (char *fmt,...)
 Draw a message box with formatted text.
 
void ui_components_main_text_draw (rdpq_align_t align, rdpq_valign_t valign, char *fmt,...)
 Draw the main text with formatted content.
 
void ui_components_actions_bar_text_draw (rdpq_align_t align, rdpq_valign_t valign, char *fmt,...)
 Draw the actions bar text with formatted content.
 
void ui_components_tabs_draw (const char **text, int count, int selected, float width)
 Draw the tabs.
 

Detailed Description

Common UI components implementation.

Function Documentation

◆ ui_components_box_draw()

void ui_components_box_draw ( int x0,
int y0,
int x1,
int y1,
color_t color )

Draw a box with the specified color.

Draw a box component.

Parameters
x0The x-coordinate of the top-left corner.
y0The y-coordinate of the top-left corner.
x1The x-coordinate of the bottom-right corner.
y1The y-coordinate of the bottom-right corner.
colorThe color of the box.

◆ ui_components_border_draw()

void ui_components_border_draw ( int x0,
int y0,
int x1,
int y1 )

Draw a border with the default border color.

Draw a border component.

Parameters
x0The x-coordinate of the top-left corner.
y0The y-coordinate of the top-left corner.
x1The x-coordinate of the bottom-right corner.
y1The y-coordinate of the bottom-right corner.

◆ ui_components_layout_draw_tabbed()

void ui_components_layout_draw_tabbed ( void )

Draw the layout with tabs.

Draw the layout component with tabs.

◆ ui_components_layout_draw()

void ui_components_layout_draw ( void )

Draw the layout.

Draw the layout component.

◆ ui_components_progressbar_draw()

void ui_components_progressbar_draw ( int x0,
int y0,
int x1,
int y1,
float progress )

Draw a progress bar.

Draw a progress bar component.

Parameters
x0The x-coordinate of the top-left corner.
y0The y-coordinate of the top-left corner.
x1The x-coordinate of the bottom-right corner.
y1The y-coordinate of the bottom-right corner.
progressThe progress value (0.0 to 1.0).

◆ ui_components_seekbar_draw()

void ui_components_seekbar_draw ( float position)

Draw a seek bar.

Draw a seek bar component.

Parameters
positionThe position value (0.0 to 1.0).

◆ ui_components_loader_draw()

void ui_components_loader_draw ( float progress)

Draw a loader.

Draw a loader component.

Parameters
progressThe progress value (0.0 to 1.0).

◆ ui_components_scrollbar_draw()

void ui_components_scrollbar_draw ( int x,
int y,
int width,
int height,
int position,
int items,
int visible_items )

Draw a scrollbar.

Draw a scrollbar component.

Parameters
xThe x-coordinate of the top-left corner.
yThe y-coordinate of the top-left corner.
widthThe width of the scrollbar.
heightThe height of the scrollbar.
positionThe current position.
itemsThe total number of items.
visible_itemsThe number of visible items.

◆ ui_components_list_scrollbar_draw()

void ui_components_list_scrollbar_draw ( int position,
int items,
int visible_items )

Draw a list scrollbar.

Draw a list scrollbar component.

Parameters
positionThe current position.
itemsThe total number of items.
visible_itemsThe number of visible items.

◆ ui_components_dialog_draw()

void ui_components_dialog_draw ( int width,
int height )

Draw a dialog box.

Draw a dialog component.

Parameters
widthThe width of the dialog box.
heightThe height of the dialog box.

◆ ui_components_messagebox_draw()

void ui_components_messagebox_draw ( char * fmt,
... )

Draw a message box with formatted text.

Draw a message box component.

Parameters
fmtThe format string.
...The format arguments.

◆ ui_components_main_text_draw()

void ui_components_main_text_draw ( rdpq_align_t align,
rdpq_valign_t valign,
char * fmt,
... )

Draw the main text with formatted content.

Draw the main text component.

Parameters
alignThe horizontal alignment.
valignThe vertical alignment.
fmtThe format string.
...The format arguments.

◆ ui_components_actions_bar_text_draw()

void ui_components_actions_bar_text_draw ( rdpq_align_t align,
rdpq_valign_t valign,
char * fmt,
... )

Draw the actions bar text with formatted content.

Draw the actions bar text component.

Parameters
alignThe horizontal alignment.
valignThe vertical alignment.
fmtThe format string.
...The format arguments.

◆ ui_components_tabs_draw()

void ui_components_tabs_draw ( const char ** text,
int count,
int selected,
float width )

Draw the tabs.

Draw the tabs component.

Parameters
textArray of tab text.
countNumber of tabs.
selectedIndex of the selected tab.
widthWidth of each tab.