Gooey GUI Library
Loading...
Searching...
No Matches
gooey_tabs.h
Go to the documentation of this file.
1#ifndef GOOEY_TABS_H
2#define GOOEY_TABS_H
3
4#include "common/gooey_common.h"
5
6GooeyTabs *GooeyTabs_Create( int x, int y, int width, int height);
7void GooeyTabs_InsertTab(GooeyTabs *tab_widget, char *tab_name);
8void GooeyTabs_AddWidget(GooeyTabs* tabs, size_t tab_id, void *widget);
9void GooeyTabs_SetActiveTab(GooeyTabs* tabs, size_t tab_id);
10
11#endif
GooeyTabs * GooeyTabs_Create(int x, int y, int width, int height)
void GooeyTabs_InsertTab(GooeyTabs *tab_widget, char *tab_name)
void GooeyTabs_AddWidget(GooeyTabs *tabs, size_t tab_id, void *widget)
void GooeyTabs_SetActiveTab(GooeyTabs *tabs, size_t tab_id)