mirror of https://github.com/tstellar/bygfoot.git
173 lines
7.1 KiB
Plaintext
173 lines
7.1 KiB
Plaintext
# this file contains all the constants (mostly string constants)
|
|
# that are related to the appearance of the game -- treeview colours,
|
|
# icons etc.
|
|
|
|
###################################################
|
|
# treeview background and foreground colours ######
|
|
###################################################
|
|
|
|
# colours of the live game commentary for the away team
|
|
string_treeview_live_game_commentary_away_fg black
|
|
string_treeview_live_game_commentary_away_bg lightgrey
|
|
|
|
# font attributes for the live game window result.
|
|
string_treeview_helper_live_game_result_attributes weight='bold' size='large'
|
|
|
|
# default background and foreground in treeviews
|
|
string_treeview_helper_color_default_background white
|
|
string_treeview_helper_color_default_foreground black
|
|
|
|
# player list colours
|
|
string_treeview_helper_color_player_pos_goalie_bg black
|
|
string_treeview_helper_color_player_pos_goalie_fg white
|
|
string_treeview_helper_color_player_pos_defender_bg darkgreen
|
|
string_treeview_helper_color_player_pos_defender_fg white
|
|
string_treeview_helper_color_player_pos_midfielder_bg darkblue
|
|
string_treeview_helper_color_player_pos_midfielder_fg white
|
|
string_treeview_helper_color_player_pos_forward_bg darkred
|
|
string_treeview_helper_color_player_pos_forward_fg white
|
|
|
|
string_treeview_helper_color_player_injury lightgreen
|
|
string_treeview_helper_color_player_banned red
|
|
string_treeview_helper_color_player_yellow_danger yellow
|
|
|
|
string_treeview_helper_color_player_fitness_normal darkgreen
|
|
string_treeview_helper_color_player_fitness_below1 darkorange
|
|
string_treeview_helper_color_player_fitness_below2 orangered
|
|
string_treeview_helper_color_player_fitness_below3 red
|
|
|
|
# see also the int constants for contract limits
|
|
string_treeview_helper_color_player_contract_normal darkgreen
|
|
string_treeview_helper_color_player_contract_below1 darkorange
|
|
string_treeview_helper_color_player_contract_below2 orangered
|
|
string_treeview_helper_color_player_contract_below3 red
|
|
|
|
# colours for cskill in wrong position
|
|
string_treeview_helper_color_player_bad_cskill_bg lightblue
|
|
string_treeview_helper_color_player_bad_cskill_fg red
|
|
|
|
# fixture list colours
|
|
# the header, e.g. 'champions' league round robin'
|
|
string_treeview_fixture_header_bg lightgrey
|
|
string_treeview_fixture_header_fg black
|
|
|
|
# team of current user
|
|
string_treeview_current_user_bg darkblue
|
|
string_treeview_current_user_fg white
|
|
|
|
# teams of other users
|
|
string_treeview_user_bg wheat
|
|
string_treeview_user_fg black
|
|
|
|
# background of the team and league/cup symbols
|
|
string_treeview_symbol_bg lightgrey
|
|
|
|
# background for the teams in a table
|
|
string_treeview_table_first tomato
|
|
string_treeview_table_promotion lightblue
|
|
string_treeview_table_relegation lightgreen
|
|
string_treeview_table_promgames khaki
|
|
string_treeview_table_best_advance khaki
|
|
string_treeview_table_cup lightblue
|
|
|
|
# colour for expenses in the finances
|
|
string_treeview_finances_expenses_fg red
|
|
|
|
# background colour of a stadium event in the stats
|
|
string_treeview_stadium_event_bg orange
|
|
|
|
# foregrounds for positive or negative skill difference
|
|
# in the oppononent info
|
|
string_treeview_opponent_skill_positive_fg darkred
|
|
string_treeview_opponent_skill_negative_fg darkgreen
|
|
|
|
# background of the home column in the league results
|
|
string_treeview_league_results_away_bg white
|
|
string_treeview_league_results_away_fg black
|
|
|
|
# foreground of own team bar in the opponent preview
|
|
string_treeview_opponent_value_colour_fg darkgreen
|
|
|
|
|
|
#############################################
|
|
# various colours ###########################
|
|
#############################################
|
|
|
|
# live game scale configuration
|
|
string_game_gui_live_game_scale_color_defend lightblue
|
|
string_game_gui_live_game_scale_color_midfield khaki
|
|
string_game_gui_live_game_scale_color_attack gold
|
|
string_game_gui_live_game_scale_color_chance orange
|
|
string_game_gui_live_game_scale_color_goal red
|
|
string_game_gui_live_game_scale_color_miss lightgreen
|
|
|
|
# colour indicating ball possession during a live game
|
|
string_live_game_possession_color darkblue
|
|
|
|
|
|
#############################################
|
|
# icons in treeviews ########################
|
|
#############################################
|
|
|
|
# meter icons (style, boost) in the main window
|
|
string_game_gui_style_all_out_attack_icon style_all_atk.png
|
|
string_game_gui_style_attack_icon style_atk.png
|
|
string_game_gui_style_balanced_icon style_bal.png
|
|
string_game_gui_style_defend_icon style_def.png
|
|
string_game_gui_style_all_out_defend_icon style_all_def.png
|
|
|
|
string_game_gui_boost_on_icon boost_on.png
|
|
string_game_gui_boost_off_icon boost_off.png
|
|
string_game_gui_boost_anti_icon boost_anti.png
|
|
|
|
# icons used in live games
|
|
string_live_game_event_start_match_icon whistle.png
|
|
string_live_game_event_lost_possession_icon lost_possession.png
|
|
string_live_game_event_penalty_icon penalty.png
|
|
string_live_game_event_scoring_chance_icon scoring_chance.png
|
|
string_live_game_event_header_icon header.png
|
|
string_live_game_event_goal_icon goal.png
|
|
string_live_game_event_own_goal_icon goal_own.png
|
|
string_live_game_event_post_icon post.png
|
|
string_live_game_event_cross_bar_icon cross_bar.png
|
|
string_live_game_event_save_icon save.png
|
|
string_live_game_event_missed_icon miss.png
|
|
string_live_game_event_foul_icon foul.png
|
|
string_live_game_event_foul_yellow_icon yellow.png
|
|
string_live_game_event_send_off_icon red.png
|
|
string_live_game_event_injury_icon injury.png
|
|
string_live_game_event_temp_injury_icon injury_temp.png
|
|
string_live_game_event_stadium_breakdown_icon stadium_brkn.png
|
|
string_live_game_event_stadium_fire_icon stadium_fire.png
|
|
string_live_game_event_stadium_riots_icon stadium_riot.png
|
|
string_live_game_event_substitution_icon sub.png
|
|
string_live_game_event_structure_change_icon structure_change.png
|
|
|
|
# icons for the league stats view
|
|
string_treeview_league_stats_off_teams_icon style_all_atk.png
|
|
string_treeview_league_stats_def_teams_icon style_all_def.png
|
|
string_treeview_league_stats_scorers_icon scoring_chance.png
|
|
string_treeview_league_stats_goalies_icon save.png
|
|
|
|
# icons for the season history
|
|
string_treeview_season_hist_league_champions_icon ribbon.png
|
|
string_treeview_season_hist_cup_champions_icon cup.png
|
|
|
|
# icons in the user history view
|
|
string_treeview_helper_user_history_symbol_start_game_icon
|
|
string_treeview_helper_user_history_symbol_fire_finances_icon
|
|
string_treeview_helper_user_history_symbol_fire_failure_icon
|
|
string_treeview_helper_user_history_symbol_end_season_icon
|
|
string_treeview_helper_user_history_symbol_win_final_icon cup.png
|
|
string_treeview_helper_user_history_symbol_lose_final_icon cup2.png
|
|
string_treeview_helper_user_history_symbol_reach_cup_round_icon ribbon2.png
|
|
string_treeview_helper_user_history_symbol_job_offer_accepted_icon
|
|
string_treeview_helper_user_history_symbol_promoted_icon prom.png
|
|
string_treeview_helper_user_history_symbol_relegated_icon rel.png
|
|
string_treeview_helper_user_history_symbol_champion_icon ribbon.png
|
|
|
|
# arrow icons in the tables
|
|
string_treeview_table_up_icon table_up.png
|
|
string_treeview_table_down_icon table_down.png
|
|
string_treeview_table_stay_icon table_stay.png
|