Home
last modified time | relevance | path

Searched refs:game_module (Results 1 – 11 of 11) sorted by relevance

/dports/games/aisleriot/aisleriot-3.22.19/src/
H A Dconf.c69 game_module_to_game_name (const char *game_module) in game_module_to_game_name() argument
84 options_gconf_key (const char *game_module) in options_gconf_key() argument
230 aisleriot_conf_get_options (const char *game_module, in aisleriot_conf_get_options() argument
238 gconf_key = options_gconf_key (game_module); in aisleriot_conf_get_options()
259 game_name = game_module_to_game_name (game_module); in aisleriot_conf_get_options()
272 aisleriot_conf_set_options (const char *game_module, in aisleriot_conf_set_options() argument
279 gconf_key = options_gconf_key (game_module); in aisleriot_conf_set_options()
314 game_name = game_module_to_game_name (game_module); in aisleriot_conf_set_options()
328 game_name = game_module_to_game_name (game_module); in aisleriot_conf_get_statistic()
357 game_name = game_module_to_game_name (game_module); in aisleriot_conf_get_statistic()
[all …]
H A Dutil.c34 game_module_to_help_section (const char *game_module) in game_module_to_help_section() argument
38 buf = g_path_get_basename (game_module); in game_module_to_help_section()
70 const char *game_module) in aisleriot_show_help() argument
75 if (game_module != NULL) { in aisleriot_show_help()
76 help_section = game_module_to_help_section (game_module); in aisleriot_show_help()
80 if (game_module != NULL) { in aisleriot_show_help()
83 help_section_display = ar_filename_to_display_name (game_module); in aisleriot_show_help()
H A Dar-game-chooser.c90 char *game_module = NULL; in response_cb() local
93 COL_GAME_MODULE, &game_module, in response_cb()
95 g_assert (game_module != NULL); in response_cb()
99 g_free (game_module); in response_cb()
119 const char *game_module, in store_add_module() argument
125 game_name = ar_filename_to_display_name (game_module); in store_add_module()
154 char *game_module; in row_separator_func() local
157 COL_GAME_MODULE, &game_module, in row_separator_func()
159 ret = (game_module == NULL); in row_separator_func()
160 g_free (game_module); in row_separator_func()
[all …]
H A Dconf.h51 gboolean aisleriot_conf_get_options (const char *game_module, int *options);
53 void aisleriot_conf_set_options (const char *game_module, int options);
55 void aisleriot_conf_get_statistic (const char *game_module,
58 void aisleriot_conf_set_statistic (const char *game_module,
H A Dsol.c112 char *game_module = NULL; in main_prog() local
115 game_module = ar_filename_to_game_module (data.variation); in main_prog()
119 data.variation = game_module; in main_prog()
H A Dwindow.c486 const char *game_module; in help_on_game_cb() local
489 aisleriot_show_help (GTK_WIDGET (window), game_module); in help_on_game_cb()
1104 const char *game_module) in add_recently_played_game() argument
1109 if (!game_module) in add_recently_played_game()
1116 new_recent[0] = g_strdup (game_module); in add_recently_played_game()
1123 new_recent[n_new_recent++] = g_strdup (game_module); in add_recently_played_game()
1146 const char *game_module; in recent_game_cb() local
1149 g_return_if_fail (game_module != NULL); in recent_game_cb()
2275 char *game_module; member
2358 g_free (data->game_module); in free_load_idle_data()
[all …]
H A Dgame.c88 char *game_module; member
1165 g_free (game->game_module); in aisleriot_game_finalize()
1200 g_value_set_string (value, game->game_module); in aisleriot_game_get_property()
1641 const char *game_module = user_data; in game_scm_load_game() local
1687 const char *game_module, in aisleriot_game_load_game() argument
1694 g_return_val_if_fail (game_module != NULL && game_module[0] != '\0', FALSE); in aisleriot_game_load_game()
1697 if (g_strcmp0 (game_module, game->game_module) == 0) in aisleriot_game_load_game()
1703 if (!g_utf8_validate (game_module, -1, NULL)) { in aisleriot_game_load_game()
1727 g_free (game->game_module); in aisleriot_game_load_game()
1728 game->game_module = g_strdup (game_module); in aisleriot_game_load_game()
[all …]
H A Dar-application.c146 const char *game_module; in action_help() local
152 game_module = aisleriot_window_get_game_module (AISLERIOT_WINDOW (window)); in action_help()
153 aisleriot_show_help (GTK_WIDGET (window), game_module); in action_help()
H A Dutil.h28 const char *game_module);
H A Dwindow.h59 const char *game_module,
/dports/games/aisleriot/aisleriot-3.22.19/src/lib/
H A Dar-string-utils.c111 char *game_module; in ar_filename_to_game_module() local
113 game_module = g_ascii_strdown (game_file, -1); in ar_filename_to_game_module()
116 g_strdelimit (game_module, "./\\" , '\0'); in ar_filename_to_game_module()
117 if (game_module[0] == '\0') { in ar_filename_to_game_module()
118 g_free (game_module); in ar_filename_to_game_module()
122 g_strdelimit (game_module, NULL, '-'); in ar_filename_to_game_module()
123 return game_module; in ar_filename_to_game_module()