Freeciv-3.2
Loading...
Searching...
No Matches
Functions
themes.c File Reference
#include <sys/stat.h>
#include "fc_dirent.h"
#include "fcintl.h"
#include "log.h"
#include "mem.h"
#include "string_vector.h"
#include "gui_main.h"
#include "themespec.h"
#include "themes_common.h"
#include "themes_g.h"

Go to the source code of this file.

Functions

void gui_load_theme (const char *directory, const char *theme_name)
 
void gui_clear_theme (void)
 
char ** get_gui_specific_themes_directories (int *count)
 
char ** get_usable_themes_in_directory (const char *directory, int *count)
 

Function Documentation

◆ get_gui_specific_themes_directories()

char ** get_gui_specific_themes_directories ( int count)

Each gui has its own themes directories.

Returns an array containing these strings and sets array size in count. The caller is responsible for freeing the array and the paths.

Definition at line 83 of file themes.c.

◆ get_usable_themes_in_directory()

char ** get_usable_themes_in_directory ( const char directory,
int count 
)

Return an array of names of usable themes in the given directory. Array size is stored in count. Usable theme for gui-sdl3 is a directory which contains file theme.themespec. The caller is responsible for freeing the array and the names

Definition at line 107 of file themes.c.

◆ gui_clear_theme()

void gui_clear_theme ( void  )

Clears a theme (sets default system theme)

Definition at line 66 of file themes.c.

◆ gui_load_theme()

void gui_load_theme ( const char directory,
const char theme_name 
)

Loads a gui-sdl3 theme directory/theme_name

Definition at line 40 of file themes.c.