mirror of
https://github.com/gamecreature/QtAwesome.git
synced 2024-11-15 13:35:44 +08:00
Update to 6.5.1, Sharp Thin Pro font
This commit is contained in:
parent
45e3e703b1
commit
3622b85d52
@ -1,5 +1,6 @@
|
||||
# Changes
|
||||
|
||||
- (2023-12-07) Update to 6.5.1, Sharp Thin Pro font
|
||||
- (2023-08-16) Update to 6.4.2, Fix issue missing pro icons in namedCodePoints
|
||||
- (2023-03-28) Update to 6.4.0, Sharp Light Pro font
|
||||
- (2023-02-09) Update to 6.3.0, Aliases and Sharp Regular Pro font
|
||||
|
@ -216,6 +216,7 @@ const QString QtAwesome::FA_SOLID_FONT_FILENAME = "pro/Font Awesome 6 Pro-Solid-
|
||||
const QString QtAwesome::FA_SHARP_SOLID_FONT_FILENAME = "pro/Font Awesome 6 Sharp-Solid-900.otf";
|
||||
const QString QtAwesome::FA_SHARP_REGULAR_FONT_FILENAME = "pro/Font Awesome 6 Sharp-Regular-400.otf";
|
||||
const QString QtAwesome::FA_SHARP_LIGHT_FONT_FILENAME = "pro/Font Awesome 6 Sharp-Light-300.otf";
|
||||
const QString QtAwesome::FA_SHARP_THIN_FONT_FILENAME = "pro/Font Awesome 6 Sharp-Thin-100.otf";
|
||||
#else
|
||||
const QString QtAwesome::FA_REGULAR_FONT_FILENAME = "Font Awesome 6 Free-Regular-400.otf";
|
||||
const QString QtAwesome::FA_SOLID_FONT_FILENAME = "Font Awesome 6 Free-Solid-900.otf";
|
||||
@ -258,6 +259,7 @@ QtAwesome::QtAwesome(QObject* parent)
|
||||
_fontDetails.insert(fa::fa_sharp_solid, QtAwesomeFontData(FA_SHARP_SOLID_FONT_FILENAME, FA_SHARP_SOLID_FONT_WEIGHT));
|
||||
_fontDetails.insert(fa::fa_sharp_regular, QtAwesomeFontData(FA_SHARP_REGULAR_FONT_FILENAME, FA_SHARP_REGULAR_FONT_WEIGHT));
|
||||
_fontDetails.insert(fa::fa_sharp_light, QtAwesomeFontData(FA_SHARP_LIGHT_FONT_FILENAME, FA_SHARP_LIGHT_FONT_WEIGHT));
|
||||
_fontDetails.insert(fa::fa_sharp_thin, QtAwesomeFontData(FA_SHARP_THIN_FONT_FILENAME, FA_SHARP_THIN_FONT_WEIGHT));
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -324,6 +326,7 @@ bool QtAwesome::initFontAwesome()
|
||||
_namedCodepointsByStyle.insert(fa::fa_sharp_solid, _namedCodepointsByStyle.value(fa::fa_solid));
|
||||
_namedCodepointsByStyle.insert(fa::fa_sharp_regular, _namedCodepointsByStyle.value(fa::fa_solid));
|
||||
_namedCodepointsByStyle.insert(fa::fa_sharp_light, _namedCodepointsByStyle.value(fa::fa_solid));
|
||||
_namedCodepointsByStyle.insert(fa::fa_sharp_thin, _namedCodepointsByStyle.value(fa::fa_solid));
|
||||
#else
|
||||
addToNamedCodePoints(fa::fa_regular, faRegularFreeIconArray, sizeof(faRegularFreeIconArray)/sizeof(QtAwesomeNamedIcon));
|
||||
#endif
|
||||
@ -410,7 +413,7 @@ QIcon QtAwesome::icon(const QString& name, const QVariantMap& options)
|
||||
|
||||
if( spaceIndex > 0) {
|
||||
QString styleName = name.left(spaceIndex);
|
||||
style = stringToStyleEnum(name.startsWith("fa-") ? name.mid(3) : name);
|
||||
style = stringToStyleEnum(styleName.startsWith("fa-") ? styleName.mid(3) : name);
|
||||
iconName = name.mid(spaceIndex + 1);
|
||||
} else {
|
||||
iconName = name;
|
||||
@ -499,6 +502,7 @@ int QtAwesome::stringToStyleEnum(const QString style) const
|
||||
else if (style == "fa-sharp-solid") return fa::fa_sharp_solid;
|
||||
else if (style == "fa-sharp-regular") return fa::fa_sharp_regular;
|
||||
else if (style == "fa-sharp-light") return fa::fa_sharp_light;
|
||||
else if (style == "fa-sharp-thin") return fa::fa_sharp_thin;
|
||||
#endif
|
||||
return fa::fa_solid;
|
||||
}
|
||||
@ -516,6 +520,7 @@ const QString QtAwesome::styleEnumToString(int style) const
|
||||
case fa::fa_sharp_solid: return "fa-sharp-solid";
|
||||
case fa::fa_sharp_regular: return "fa-sharp-regular";
|
||||
case fa::fa_sharp_light: return "fa-sharp-light";
|
||||
case fa::fa_sharp_thin: return "fa-sharp-thin";
|
||||
#endif
|
||||
}
|
||||
return "fa_solid";
|
||||
|
@ -35,6 +35,7 @@ enum fa_styles {
|
||||
fa_sharp_solid = 6,
|
||||
fa_sharp_regular = 7,
|
||||
fa_sharp_light = 8,
|
||||
fa_sharp_thin = 9,
|
||||
#endif
|
||||
fa_brands = 2
|
||||
};
|
||||
@ -91,6 +92,7 @@ public:
|
||||
static const QString FA_SHARP_SOLID_FONT_FILENAME; // fa-sharp fa-solid
|
||||
static const QString FA_SHARP_REGULAR_FONT_FILENAME; // fa-sharp fa-regular
|
||||
static const QString FA_SHARP_LIGHT_FONT_FILENAME; // fa-sharp fa-light
|
||||
static const QString FA_SHARP_THIN_FONT_FILENAME; // fa-sharp fa-thin
|
||||
static const int DUOTONE_HEX_ICON_VALUE = 0x100000;
|
||||
static const QFont::Weight FA_LIGHT_FONT_WEIGHT = QFont::Light;
|
||||
static const QFont::Weight FA_THIN_FONT_WEIGHT = QFont::ExtraLight;
|
||||
@ -98,6 +100,7 @@ public:
|
||||
static const QFont::Weight FA_SHARP_SOLID_FONT_WEIGHT = QFont::Black;
|
||||
static const QFont::Weight FA_SHARP_REGULAR_FONT_WEIGHT = QFont::Normal;
|
||||
static const QFont::Weight FA_SHARP_LIGHT_FONT_WEIGHT = QFont::Light;
|
||||
static const QFont::Weight FA_SHARP_THIN_FONT_WEIGHT = QFont::ExtraLight;
|
||||
#endif
|
||||
|
||||
public:
|
||||
|
@ -1487,7 +1487,6 @@ enum fa_common_icons : uint16_t {
|
||||
fa_shapes = 0xf61f,
|
||||
fa_triangle_circle_square = 0xf61f,
|
||||
fa_share = 0xf064,
|
||||
fa_arrow_turn_right = 0xf064,
|
||||
fa_mail_forward = 0xf064,
|
||||
fa_share_from_square = 0xf14d,
|
||||
fa_share_square = 0xf14d,
|
||||
@ -2003,6 +2002,8 @@ enum fa_brand_icons : uint16_t {
|
||||
fa_bluetooth_b = 0xf294,
|
||||
fa_bootstrap = 0xf836,
|
||||
fa_bots = 0xe340,
|
||||
fa_brave = 0xe63c,
|
||||
fa_brave_reverse = 0xe63d,
|
||||
fa_btc = 0xf15a,
|
||||
fa_buffer = 0xf837,
|
||||
fa_buromobelexperte = 0xf37f,
|
||||
@ -2142,6 +2143,7 @@ enum fa_brand_icons : uint16_t {
|
||||
fa_google_play = 0xf3ab,
|
||||
fa_google_plus = 0xf2b3,
|
||||
fa_google_plus_g = 0xf0d5,
|
||||
fa_google_scholar = 0xe63b,
|
||||
fa_google_wallet = 0xf1ee,
|
||||
fa_gratipay = 0xf184,
|
||||
fa_grav = 0xf2d6,
|
||||
@ -2190,6 +2192,7 @@ enum fa_brand_icons : uint16_t {
|
||||
fa_lastfm = 0xf202,
|
||||
fa_leanpub = 0xf212,
|
||||
fa_less = 0xf41d,
|
||||
fa_letterboxd = 0xe62d,
|
||||
fa_line = 0xf3c0,
|
||||
fa_linkedin = 0xf08c,
|
||||
fa_linkedin_in = 0xf0e1,
|
||||
@ -2213,6 +2216,7 @@ enum fa_brand_icons : uint16_t {
|
||||
fa_meta = 0xe49b,
|
||||
fa_microblog = 0xe01a,
|
||||
fa_microsoft = 0xf3ca,
|
||||
fa_mintbit = 0xe62f,
|
||||
fa_mix = 0xf3cb,
|
||||
fa_mixcloud = 0xf289,
|
||||
fa_mixer = 0xe056,
|
||||
@ -2235,6 +2239,7 @@ enum fa_brand_icons : uint16_t {
|
||||
fa_old_republic = 0xf510,
|
||||
fa_opencart = 0xf23d,
|
||||
fa_openid = 0xf19b,
|
||||
fa_opensuse = 0xe62b,
|
||||
fa_opera = 0xf26a,
|
||||
fa_optin_monster = 0xf23c,
|
||||
fa_orcid = 0xf8d2,
|
||||
@ -2258,6 +2263,7 @@ enum fa_brand_icons : uint16_t {
|
||||
fa_pinterest = 0xf0d2,
|
||||
fa_pinterest_p = 0xf231,
|
||||
fa_pix = 0xe43a,
|
||||
fa_pixiv = 0xe640,
|
||||
fa_playstation = 0xf3df,
|
||||
fa_product_hunt = 0xf288,
|
||||
fa_pushed = 0xf3e1,
|
||||
@ -2295,8 +2301,10 @@ enum fa_brand_icons : uint16_t {
|
||||
fa_sellsy = 0xf213,
|
||||
fa_servicestack = 0xf3ec,
|
||||
fa_shirtsinbulk = 0xf214,
|
||||
fa_shoelace = 0xe60c,
|
||||
fa_shopify = 0xe057,
|
||||
fa_shopware = 0xf5b5,
|
||||
fa_signal_messenger = 0xe663,
|
||||
fa_simplybuilt = 0xf215,
|
||||
fa_sistrix = 0xf3ee,
|
||||
fa_sith = 0xf512,
|
||||
@ -2340,6 +2348,7 @@ enum fa_brand_icons : uint16_t {
|
||||
fa_js_square = 0xf3b9,
|
||||
fa_square_lastfm = 0xf203,
|
||||
fa_lastfm_square = 0xf203,
|
||||
fa_square_letterboxd = 0xe62e,
|
||||
fa_square_odnoklassniki = 0xf264,
|
||||
fa_odnoklassniki_square = 0xf264,
|
||||
fa_square_pied_piper = 0xe01e,
|
||||
@ -2414,6 +2423,7 @@ enum fa_brand_icons : uint16_t {
|
||||
fa_unsplash = 0xe07c,
|
||||
fa_untappd = 0xf405,
|
||||
fa_ups = 0xf7e0,
|
||||
fa_upwork = 0xe641,
|
||||
fa_usb = 0xf287,
|
||||
fa_usps = 0xf7e1,
|
||||
fa_ussunnah = 0xf407,
|
||||
@ -2429,6 +2439,7 @@ enum fa_brand_icons : uint16_t {
|
||||
fa_vuejs = 0xf41f,
|
||||
fa_watchman_monitoring = 0xe087,
|
||||
fa_waze = 0xf83f,
|
||||
fa_webflow = 0xe65c,
|
||||
fa_weebly = 0xf5cc,
|
||||
fa_weibo = 0xf18a,
|
||||
fa_weixin = 0xf1d7,
|
||||
@ -2540,6 +2551,10 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_arrow_to_right = 0xf340,
|
||||
fa_arrow_turn_down_left = 0xe2e1,
|
||||
fa_arrow_turn_down_right = 0xe3d6,
|
||||
fa_arrow_turn_left = 0xe632,
|
||||
fa_arrow_turn_left_down = 0xe633,
|
||||
fa_arrow_turn_left_up = 0xe634,
|
||||
fa_arrow_turn_right = 0xe635,
|
||||
fa_arrow_up_arrow_down = 0xe099,
|
||||
fa_sort_up_down = 0xe099,
|
||||
fa_arrow_up_big_small = 0xf88e,
|
||||
@ -2576,6 +2591,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_repeat_1_alt = 0xf366,
|
||||
fa_arrows_retweet = 0xf361,
|
||||
fa_retweet_alt = 0xf361,
|
||||
fa_arrows_rotate_reverse = 0xe630,
|
||||
fa_arrows_to_dotted_line = 0xe0a6,
|
||||
fa_arrows_to_line = 0xe0a7,
|
||||
fa_atom_simple = 0xf5d3,
|
||||
@ -2594,6 +2610,8 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_badger_honey = 0xf6b4,
|
||||
fa_badminton = 0xe33a,
|
||||
fa_bag_seedling = 0xe5f2,
|
||||
fa_bag_shopping_minus = 0xe650,
|
||||
fa_bag_shopping_plus = 0xe651,
|
||||
fa_bagel = 0xe3d7,
|
||||
fa_bags_shopping = 0xf847,
|
||||
fa_baguette = 0xe3d8,
|
||||
@ -2612,6 +2630,8 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_barcode_scan = 0xf465,
|
||||
fa_bars_filter = 0xe0ad,
|
||||
fa_bars_sort = 0xe0ae,
|
||||
fa_basket_shopping_minus = 0xe652,
|
||||
fa_basket_shopping_plus = 0xe653,
|
||||
fa_basket_shopping_simple = 0xe0af,
|
||||
fa_shopping_basket_alt = 0xe0af,
|
||||
fa_basketball_hoop = 0xf435,
|
||||
@ -2631,6 +2651,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_bell_exclamation = 0xf848,
|
||||
fa_bell_on = 0xf8fa,
|
||||
fa_bell_plus = 0xf849,
|
||||
fa_bell_ring = 0xe62c,
|
||||
fa_bell_school = 0xf5d5,
|
||||
fa_bell_school_slash = 0xf5d6,
|
||||
fa_bells = 0xf77f,
|
||||
@ -2749,7 +2770,10 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_broom_wide = 0xe5d1,
|
||||
fa_browser = 0xf37e,
|
||||
fa_browsers = 0xe0cb,
|
||||
fa_building_magnifying_glass = 0xe61c,
|
||||
fa_building_memo = 0xe61e,
|
||||
fa_buildings = 0xe0cc,
|
||||
fa_bulldozer = 0xe655,
|
||||
fa_bullseye_arrow = 0xf648,
|
||||
fa_bullseye_pointer = 0xf649,
|
||||
fa_buoy = 0xe5b5,
|
||||
@ -2814,6 +2838,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_candy_bar = 0xe3e8,
|
||||
fa_chocolate_bar = 0xe3e8,
|
||||
fa_candy_corn = 0xf6bd,
|
||||
fa_cannon = 0xe642,
|
||||
fa_car_bolt = 0xe341,
|
||||
fa_car_building = 0xf859,
|
||||
fa_car_bump = 0xf5e0,
|
||||
@ -2862,6 +2887,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_glass_champagne = 0xf79e,
|
||||
fa_chart_bullet = 0xe0e1,
|
||||
fa_chart_candlestick = 0xe0e2,
|
||||
fa_chart_kanban = 0xe64f,
|
||||
fa_chart_line_down = 0xf64d,
|
||||
fa_chart_line_up = 0xe0e5,
|
||||
fa_chart_line_up_down = 0xe5d7,
|
||||
@ -3143,6 +3169,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_conveyor_belt_empty = 0xe150,
|
||||
fa_corn = 0xf6c7,
|
||||
fa_corner = 0xe3fe,
|
||||
fa_court_sport = 0xe643,
|
||||
fa_cowbell = 0xf8b3,
|
||||
fa_cowbell_circle_plus = 0xf8b4,
|
||||
fa_cowbell_more = 0xf8b4,
|
||||
@ -3265,6 +3292,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_envelope_open_dollar = 0xf657,
|
||||
fa_envelopes = 0xe170,
|
||||
fa_escalator = 0xe171,
|
||||
fa_excavator = 0xe656,
|
||||
fa_expand_wide = 0xf320,
|
||||
fa_eye_dropper_full = 0xe172,
|
||||
fa_eye_dropper_half = 0xe173,
|
||||
@ -3371,20 +3399,32 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_file_dashed_line = 0xf877,
|
||||
fa_page_break = 0xf877,
|
||||
fa_file_doc = 0xe5ed,
|
||||
fa_file_eps = 0xe644,
|
||||
fa_file_exclamation = 0xf31a,
|
||||
fa_file_gif = 0xe645,
|
||||
fa_file_heart = 0xe176,
|
||||
fa_file_jpg = 0xe646,
|
||||
fa_file_lock = 0xe3a6,
|
||||
fa_file_magnifying_glass = 0xf865,
|
||||
fa_file_search = 0xf865,
|
||||
fa_file_minus = 0xf318,
|
||||
fa_file_mov = 0xe647,
|
||||
fa_file_mp3 = 0xe648,
|
||||
fa_file_mp4 = 0xe649,
|
||||
fa_file_music = 0xf8b6,
|
||||
fa_file_plus = 0xf319,
|
||||
fa_file_plus_minus = 0xe177,
|
||||
fa_file_png = 0xe666,
|
||||
fa_file_ppt = 0xe64a,
|
||||
fa_file_slash = 0xe3a7,
|
||||
fa_file_spreadsheet = 0xf65b,
|
||||
fa_file_svg = 0xe64b,
|
||||
fa_file_user = 0xf65c,
|
||||
fa_file_vector = 0xe64c,
|
||||
fa_file_xls = 0xe64d,
|
||||
fa_file_xmark = 0xf317,
|
||||
fa_file_times = 0xf317,
|
||||
fa_file_xml = 0xe654,
|
||||
fa_file_zip = 0xe5ee,
|
||||
fa_files = 0xe178,
|
||||
fa_files_medical = 0xf7fd,
|
||||
@ -3436,6 +3476,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_folder_arrow_up = 0xe054,
|
||||
fa_folder_upload = 0xe054,
|
||||
fa_folder_bookmark = 0xe186,
|
||||
fa_folder_check = 0xe64e,
|
||||
fa_folder_gear = 0xe187,
|
||||
fa_folder_cog = 0xe187,
|
||||
fa_folder_grid = 0xe188,
|
||||
@ -3542,6 +3583,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_h4 = 0xf86a,
|
||||
fa_h5 = 0xe412,
|
||||
fa_h6 = 0xe413,
|
||||
fa_hammer_brush = 0xe620,
|
||||
fa_hammer_crash = 0xe414,
|
||||
fa_hammer_war = 0xf6e4,
|
||||
fa_hand_back_point_down = 0xe19e,
|
||||
@ -3552,6 +3594,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_hand_fingers_crossed = 0xe1a3,
|
||||
fa_hand_heart = 0xf4bc,
|
||||
fa_hand_holding_box = 0xf47b,
|
||||
fa_hand_holding_circle_dollar = 0xe621,
|
||||
fa_hand_holding_magic = 0xf6e5,
|
||||
fa_hand_holding_seedling = 0xf4bf,
|
||||
fa_hand_holding_skull = 0xe1a4,
|
||||
@ -3686,6 +3729,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_lamp_desk = 0xe014,
|
||||
fa_lamp_floor = 0xe015,
|
||||
fa_lamp_street = 0xe1c5,
|
||||
fa_landmark_magnifying_glass = 0xe622,
|
||||
fa_laptop_arrow_down = 0xe1c6,
|
||||
fa_laptop_binary = 0xe5e7,
|
||||
fa_laptop_mobile = 0xf87a,
|
||||
@ -3740,6 +3784,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_list_tree = 0xe1d2,
|
||||
fa_loader = 0xe1d4,
|
||||
fa_lobster = 0xe421,
|
||||
fa_location_arrow_up = 0xe63a,
|
||||
fa_location_check = 0xf606,
|
||||
fa_map_marker_check = 0xf606,
|
||||
fa_location_crosshairs_slash = 0xf603,
|
||||
@ -3777,6 +3822,10 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_luchador = 0xf455,
|
||||
fa_mask_luchador = 0xf455,
|
||||
fa_mace = 0xf6f8,
|
||||
fa_magnifying_glass_arrows_rotate = 0xe65e,
|
||||
fa_magnifying_glass_music = 0xe65f,
|
||||
fa_magnifying_glass_play = 0xe660,
|
||||
fa_magnifying_glass_waveform = 0xe661,
|
||||
fa_mailbox = 0xf813,
|
||||
fa_mailbox_flag_up = 0xe5bb,
|
||||
fa_mandolin = 0xf6f9,
|
||||
@ -3886,6 +3935,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_mug_tea = 0xf875,
|
||||
fa_mug_tea_saucer = 0xe1f5,
|
||||
fa_mushroom = 0xe425,
|
||||
fa_music_magnifying_glass = 0xe662,
|
||||
fa_music_note = 0xf8cf,
|
||||
fa_music_alt = 0xf8cf,
|
||||
fa_music_note_slash = 0xf8d0,
|
||||
@ -4121,6 +4171,8 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_rectangle_wide = 0xf2fc,
|
||||
fa_rectangles_mixed = 0xe323,
|
||||
fa_reel = 0xe238,
|
||||
fa_reflect_horizontal = 0xe664,
|
||||
fa_reflect_vertical = 0xe665,
|
||||
fa_refrigerator = 0xe026,
|
||||
fa_repeat_1 = 0xf365,
|
||||
fa_reply_clock = 0xe239,
|
||||
@ -4141,6 +4193,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_rocket_launch = 0xe027,
|
||||
fa_roller_coaster = 0xe324,
|
||||
fa_rotate_exclamation = 0xe23c,
|
||||
fa_rotate_reverse = 0xe631,
|
||||
fa_route_highway = 0xf61a,
|
||||
fa_route_interstate = 0xf61b,
|
||||
fa_router = 0xf8da,
|
||||
@ -4207,7 +4260,6 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_shirt_running = 0xe3c8,
|
||||
fa_shirt_tank_top = 0xe3c9,
|
||||
fa_shish_kebab = 0xf821,
|
||||
fa_shoelace = 0xe60c,
|
||||
fa_shovel = 0xf713,
|
||||
fa_shovel_snow = 0xf7c3,
|
||||
fa_shower_down = 0xe24d,
|
||||
@ -4219,6 +4271,9 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_sidebar = 0xe24e,
|
||||
fa_sidebar_flip = 0xe24f,
|
||||
fa_sigma = 0xf68b,
|
||||
fa_sign_post = 0xe624,
|
||||
fa_sign_posts = 0xe625,
|
||||
fa_sign_posts_wrench = 0xe626,
|
||||
fa_signal_bars = 0xf690,
|
||||
fa_signal_alt = 0xf690,
|
||||
fa_signal_alt_4 = 0xf690,
|
||||
@ -4281,6 +4336,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_speakers = 0xf8e0,
|
||||
fa_spider_black_widow = 0xf718,
|
||||
fa_spider_web = 0xf719,
|
||||
fa_spinner_scale = 0xe62a,
|
||||
fa_spinner_third = 0xf3f4,
|
||||
fa_split = 0xe254,
|
||||
fa_sportsball = 0xe44b,
|
||||
@ -4445,6 +4501,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_swords_laser = 0xe03d,
|
||||
fa_symbols = 0xf86e,
|
||||
fa_icons_alt = 0xf86e,
|
||||
fa_t_rex = 0xe629,
|
||||
fa_table_layout = 0xe290,
|
||||
fa_table_picnic = 0xe32d,
|
||||
fa_table_pivot = 0xe291,
|
||||
@ -4472,13 +4529,22 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_temperature_sun = 0xf76a,
|
||||
fa_temperature_hot = 0xf76a,
|
||||
fa_tennis_ball = 0xf45e,
|
||||
fa_tent_double_peak = 0xe627,
|
||||
fa_text = 0xf893,
|
||||
fa_text_size = 0xf894,
|
||||
fa_theta = 0xf69e,
|
||||
fa_thought_bubble = 0xe32e,
|
||||
fa_tick = 0xe32f,
|
||||
fa_ticket_airline = 0xe29a,
|
||||
fa_ticket_perforated_plane = 0xe29a,
|
||||
fa_ticket_plane = 0xe29a,
|
||||
fa_ticket_perforated = 0xe63e,
|
||||
fa_tickets = 0xe658,
|
||||
fa_tickets_airline = 0xe29b,
|
||||
fa_tickets_perforated_plane = 0xe29b,
|
||||
fa_tickets_plane = 0xe29b,
|
||||
fa_tickets_perforated = 0xe63f,
|
||||
fa_tickets_simple = 0xe659,
|
||||
fa_tilde = 0x7e,
|
||||
fa_timeline_arrow = 0xe29d,
|
||||
fa_timer = 0xe29e,
|
||||
@ -4563,12 +4629,15 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_shipping_timed = 0xf48c,
|
||||
fa_truck_container = 0xf4dc,
|
||||
fa_truck_container_empty = 0xe2b5,
|
||||
fa_truck_fire = 0xe65a,
|
||||
fa_truck_flatbed = 0xe2b6,
|
||||
fa_truck_ladder = 0xe657,
|
||||
fa_truck_plow = 0xf7de,
|
||||
fa_truck_ramp = 0xf4e0,
|
||||
fa_truck_ramp_couch = 0xf4dd,
|
||||
fa_truck_couch = 0xf4dd,
|
||||
fa_truck_tow = 0xe2b8,
|
||||
fa_truck_utensils = 0xe628,
|
||||
fa_trumpet = 0xf8e3,
|
||||
fa_tty_answer = 0xe2b9,
|
||||
fa_teletype_answer = 0xe2b9,
|
||||
@ -4576,6 +4645,10 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_turkey = 0xf725,
|
||||
fa_turn_down_left = 0xe331,
|
||||
fa_turn_down_right = 0xe455,
|
||||
fa_turn_left = 0xe636,
|
||||
fa_turn_left_down = 0xe637,
|
||||
fa_turn_left_up = 0xe638,
|
||||
fa_turn_right = 0xe639,
|
||||
fa_turntable = 0xf8e4,
|
||||
fa_turtle = 0xf726,
|
||||
fa_tv_music = 0xf8e6,
|
||||
@ -4676,6 +4749,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_water_arrow_up = 0xf775,
|
||||
fa_water_rise = 0xf775,
|
||||
fa_watermelon_slice = 0xe337,
|
||||
fa_wave = 0xe65b,
|
||||
fa_wave_pulse = 0xf5f8,
|
||||
fa_heart_rate = 0xf5f8,
|
||||
fa_wave_sine = 0xf899,
|
||||
@ -4683,6 +4757,7 @@ enum fa_pro_icons : uint16_t {
|
||||
fa_waveform = 0xf8f1,
|
||||
fa_waveform_lines = 0xf8f2,
|
||||
fa_waveform_path = 0xf8f2,
|
||||
fa_waves_sine = 0xe65d,
|
||||
fa_webhook = 0xe5d5,
|
||||
fa_whale = 0xf72c,
|
||||
fa_wheat = 0xf72d,
|
||||
|
@ -9,5 +9,6 @@
|
||||
<file>fonts/pro/Font Awesome 6 Sharp-Solid-900.otf</file>
|
||||
<file>fonts/pro/Font Awesome 6 Sharp-Regular-400.otf</file>
|
||||
<file>fonts/pro/Font Awesome 6 Sharp-Light-300.otf</file>
|
||||
<file>fonts/pro/Font Awesome 6 Sharp-Thin-100.otf</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
@ -1486,7 +1486,6 @@ static const fa::QtAwesomeNamedIcon faCommonIconArray[] = {
|
||||
{ "shapes", fa::fa_shapes } ,
|
||||
{ "triangle-circle-square", fa::fa_triangle_circle_square } ,
|
||||
{ "share", fa::fa_share } ,
|
||||
{ "arrow-turn-right", fa::fa_arrow_turn_right } ,
|
||||
{ "mail-forward", fa::fa_mail_forward } ,
|
||||
{ "share-from-square", fa::fa_share_from_square } ,
|
||||
{ "share-square", fa::fa_share_square } ,
|
||||
@ -2001,6 +2000,8 @@ static const fa::QtAwesomeNamedIcon faBrandsIconArray[] = {
|
||||
{ "bluetooth-b", fa::fa_bluetooth_b } ,
|
||||
{ "bootstrap", fa::fa_bootstrap } ,
|
||||
{ "bots", fa::fa_bots } ,
|
||||
{ "brave", fa::fa_brave } ,
|
||||
{ "brave-reverse", fa::fa_brave_reverse } ,
|
||||
{ "btc", fa::fa_btc } ,
|
||||
{ "buffer", fa::fa_buffer } ,
|
||||
{ "buromobelexperte", fa::fa_buromobelexperte } ,
|
||||
@ -2140,6 +2141,7 @@ static const fa::QtAwesomeNamedIcon faBrandsIconArray[] = {
|
||||
{ "google-play", fa::fa_google_play } ,
|
||||
{ "google-plus", fa::fa_google_plus } ,
|
||||
{ "google-plus-g", fa::fa_google_plus_g } ,
|
||||
{ "google-scholar", fa::fa_google_scholar } ,
|
||||
{ "google-wallet", fa::fa_google_wallet } ,
|
||||
{ "gratipay", fa::fa_gratipay } ,
|
||||
{ "grav", fa::fa_grav } ,
|
||||
@ -2188,6 +2190,7 @@ static const fa::QtAwesomeNamedIcon faBrandsIconArray[] = {
|
||||
{ "lastfm", fa::fa_lastfm } ,
|
||||
{ "leanpub", fa::fa_leanpub } ,
|
||||
{ "less", fa::fa_less } ,
|
||||
{ "letterboxd", fa::fa_letterboxd } ,
|
||||
{ "line", fa::fa_line } ,
|
||||
{ "linkedin", fa::fa_linkedin } ,
|
||||
{ "linkedin-in", fa::fa_linkedin_in } ,
|
||||
@ -2211,6 +2214,7 @@ static const fa::QtAwesomeNamedIcon faBrandsIconArray[] = {
|
||||
{ "meta", fa::fa_meta } ,
|
||||
{ "microblog", fa::fa_microblog } ,
|
||||
{ "microsoft", fa::fa_microsoft } ,
|
||||
{ "mintbit", fa::fa_mintbit } ,
|
||||
{ "mix", fa::fa_mix } ,
|
||||
{ "mixcloud", fa::fa_mixcloud } ,
|
||||
{ "mixer", fa::fa_mixer } ,
|
||||
@ -2233,6 +2237,7 @@ static const fa::QtAwesomeNamedIcon faBrandsIconArray[] = {
|
||||
{ "old-republic", fa::fa_old_republic } ,
|
||||
{ "opencart", fa::fa_opencart } ,
|
||||
{ "openid", fa::fa_openid } ,
|
||||
{ "opensuse", fa::fa_opensuse } ,
|
||||
{ "opera", fa::fa_opera } ,
|
||||
{ "optin-monster", fa::fa_optin_monster } ,
|
||||
{ "orcid", fa::fa_orcid } ,
|
||||
@ -2256,6 +2261,7 @@ static const fa::QtAwesomeNamedIcon faBrandsIconArray[] = {
|
||||
{ "pinterest", fa::fa_pinterest } ,
|
||||
{ "pinterest-p", fa::fa_pinterest_p } ,
|
||||
{ "pix", fa::fa_pix } ,
|
||||
{ "pixiv", fa::fa_pixiv } ,
|
||||
{ "playstation", fa::fa_playstation } ,
|
||||
{ "product-hunt", fa::fa_product_hunt } ,
|
||||
{ "pushed", fa::fa_pushed } ,
|
||||
@ -2293,8 +2299,10 @@ static const fa::QtAwesomeNamedIcon faBrandsIconArray[] = {
|
||||
{ "sellsy", fa::fa_sellsy } ,
|
||||
{ "servicestack", fa::fa_servicestack } ,
|
||||
{ "shirtsinbulk", fa::fa_shirtsinbulk } ,
|
||||
{ "shoelace", fa::fa_shoelace } ,
|
||||
{ "shopify", fa::fa_shopify } ,
|
||||
{ "shopware", fa::fa_shopware } ,
|
||||
{ "signal-messenger", fa::fa_signal_messenger } ,
|
||||
{ "simplybuilt", fa::fa_simplybuilt } ,
|
||||
{ "sistrix", fa::fa_sistrix } ,
|
||||
{ "sith", fa::fa_sith } ,
|
||||
@ -2338,6 +2346,7 @@ static const fa::QtAwesomeNamedIcon faBrandsIconArray[] = {
|
||||
{ "js-square", fa::fa_js_square } ,
|
||||
{ "square-lastfm", fa::fa_square_lastfm } ,
|
||||
{ "lastfm-square", fa::fa_lastfm_square } ,
|
||||
{ "square-letterboxd", fa::fa_square_letterboxd } ,
|
||||
{ "square-odnoklassniki", fa::fa_square_odnoklassniki } ,
|
||||
{ "odnoklassniki-square", fa::fa_odnoklassniki_square } ,
|
||||
{ "square-pied-piper", fa::fa_square_pied_piper } ,
|
||||
@ -2412,6 +2421,7 @@ static const fa::QtAwesomeNamedIcon faBrandsIconArray[] = {
|
||||
{ "unsplash", fa::fa_unsplash } ,
|
||||
{ "untappd", fa::fa_untappd } ,
|
||||
{ "ups", fa::fa_ups } ,
|
||||
{ "upwork", fa::fa_upwork } ,
|
||||
{ "usb", fa::fa_usb } ,
|
||||
{ "usps", fa::fa_usps } ,
|
||||
{ "ussunnah", fa::fa_ussunnah } ,
|
||||
@ -2427,6 +2437,7 @@ static const fa::QtAwesomeNamedIcon faBrandsIconArray[] = {
|
||||
{ "vuejs", fa::fa_vuejs } ,
|
||||
{ "watchman-monitoring", fa::fa_watchman_monitoring } ,
|
||||
{ "waze", fa::fa_waze } ,
|
||||
{ "webflow", fa::fa_webflow } ,
|
||||
{ "weebly", fa::fa_weebly } ,
|
||||
{ "weibo", fa::fa_weibo } ,
|
||||
{ "weixin", fa::fa_weixin } ,
|
||||
@ -2538,6 +2549,10 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "arrow-to-right", fa::fa_arrow_to_right } ,
|
||||
{ "arrow-turn-down-left", fa::fa_arrow_turn_down_left } ,
|
||||
{ "arrow-turn-down-right", fa::fa_arrow_turn_down_right } ,
|
||||
{ "arrow-turn-left", fa::fa_arrow_turn_left } ,
|
||||
{ "arrow-turn-left-down", fa::fa_arrow_turn_left_down } ,
|
||||
{ "arrow-turn-left-up", fa::fa_arrow_turn_left_up } ,
|
||||
{ "arrow-turn-right", fa::fa_arrow_turn_right } ,
|
||||
{ "arrow-up-arrow-down", fa::fa_arrow_up_arrow_down } ,
|
||||
{ "sort-up-down", fa::fa_sort_up_down } ,
|
||||
{ "arrow-up-big-small", fa::fa_arrow_up_big_small } ,
|
||||
@ -2574,6 +2589,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "repeat-1-alt", fa::fa_repeat_1_alt } ,
|
||||
{ "arrows-retweet", fa::fa_arrows_retweet } ,
|
||||
{ "retweet-alt", fa::fa_retweet_alt } ,
|
||||
{ "arrows-rotate-reverse", fa::fa_arrows_rotate_reverse } ,
|
||||
{ "arrows-to-dotted-line", fa::fa_arrows_to_dotted_line } ,
|
||||
{ "arrows-to-line", fa::fa_arrows_to_line } ,
|
||||
{ "atom-simple", fa::fa_atom_simple } ,
|
||||
@ -2592,6 +2608,8 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "badger-honey", fa::fa_badger_honey } ,
|
||||
{ "badminton", fa::fa_badminton } ,
|
||||
{ "bag-seedling", fa::fa_bag_seedling } ,
|
||||
{ "bag-shopping-minus", fa::fa_bag_shopping_minus } ,
|
||||
{ "bag-shopping-plus", fa::fa_bag_shopping_plus } ,
|
||||
{ "bagel", fa::fa_bagel } ,
|
||||
{ "bags-shopping", fa::fa_bags_shopping } ,
|
||||
{ "baguette", fa::fa_baguette } ,
|
||||
@ -2610,6 +2628,8 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "barcode-scan", fa::fa_barcode_scan } ,
|
||||
{ "bars-filter", fa::fa_bars_filter } ,
|
||||
{ "bars-sort", fa::fa_bars_sort } ,
|
||||
{ "basket-shopping-minus", fa::fa_basket_shopping_minus } ,
|
||||
{ "basket-shopping-plus", fa::fa_basket_shopping_plus } ,
|
||||
{ "basket-shopping-simple", fa::fa_basket_shopping_simple } ,
|
||||
{ "shopping-basket-alt", fa::fa_shopping_basket_alt } ,
|
||||
{ "basketball-hoop", fa::fa_basketball_hoop } ,
|
||||
@ -2629,6 +2649,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "bell-exclamation", fa::fa_bell_exclamation } ,
|
||||
{ "bell-on", fa::fa_bell_on } ,
|
||||
{ "bell-plus", fa::fa_bell_plus } ,
|
||||
{ "bell-ring", fa::fa_bell_ring } ,
|
||||
{ "bell-school", fa::fa_bell_school } ,
|
||||
{ "bell-school-slash", fa::fa_bell_school_slash } ,
|
||||
{ "bells", fa::fa_bells } ,
|
||||
@ -2747,7 +2768,10 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "broom-wide", fa::fa_broom_wide } ,
|
||||
{ "browser", fa::fa_browser } ,
|
||||
{ "browsers", fa::fa_browsers } ,
|
||||
{ "building-magnifying-glass", fa::fa_building_magnifying_glass } ,
|
||||
{ "building-memo", fa::fa_building_memo } ,
|
||||
{ "buildings", fa::fa_buildings } ,
|
||||
{ "bulldozer", fa::fa_bulldozer } ,
|
||||
{ "bullseye-arrow", fa::fa_bullseye_arrow } ,
|
||||
{ "bullseye-pointer", fa::fa_bullseye_pointer } ,
|
||||
{ "buoy", fa::fa_buoy } ,
|
||||
@ -2812,6 +2836,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "candy-bar", fa::fa_candy_bar } ,
|
||||
{ "chocolate-bar", fa::fa_chocolate_bar } ,
|
||||
{ "candy-corn", fa::fa_candy_corn } ,
|
||||
{ "cannon", fa::fa_cannon } ,
|
||||
{ "car-bolt", fa::fa_car_bolt } ,
|
||||
{ "car-building", fa::fa_car_building } ,
|
||||
{ "car-bump", fa::fa_car_bump } ,
|
||||
@ -2860,6 +2885,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "glass-champagne", fa::fa_glass_champagne } ,
|
||||
{ "chart-bullet", fa::fa_chart_bullet } ,
|
||||
{ "chart-candlestick", fa::fa_chart_candlestick } ,
|
||||
{ "chart-kanban", fa::fa_chart_kanban } ,
|
||||
{ "chart-line-down", fa::fa_chart_line_down } ,
|
||||
{ "chart-line-up", fa::fa_chart_line_up } ,
|
||||
{ "chart-line-up-down", fa::fa_chart_line_up_down } ,
|
||||
@ -3141,6 +3167,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "conveyor-belt-empty", fa::fa_conveyor_belt_empty } ,
|
||||
{ "corn", fa::fa_corn } ,
|
||||
{ "corner", fa::fa_corner } ,
|
||||
{ "court-sport", fa::fa_court_sport } ,
|
||||
{ "cowbell", fa::fa_cowbell } ,
|
||||
{ "cowbell-circle-plus", fa::fa_cowbell_circle_plus } ,
|
||||
{ "cowbell-more", fa::fa_cowbell_more } ,
|
||||
@ -3263,6 +3290,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "envelope-open-dollar", fa::fa_envelope_open_dollar } ,
|
||||
{ "envelopes", fa::fa_envelopes } ,
|
||||
{ "escalator", fa::fa_escalator } ,
|
||||
{ "excavator", fa::fa_excavator } ,
|
||||
{ "expand-wide", fa::fa_expand_wide } ,
|
||||
{ "eye-dropper-full", fa::fa_eye_dropper_full } ,
|
||||
{ "eye-dropper-half", fa::fa_eye_dropper_half } ,
|
||||
@ -3369,20 +3397,32 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "file-dashed-line", fa::fa_file_dashed_line } ,
|
||||
{ "page-break", fa::fa_page_break } ,
|
||||
{ "file-doc", fa::fa_file_doc } ,
|
||||
{ "file-eps", fa::fa_file_eps } ,
|
||||
{ "file-exclamation", fa::fa_file_exclamation } ,
|
||||
{ "file-gif", fa::fa_file_gif } ,
|
||||
{ "file-heart", fa::fa_file_heart } ,
|
||||
{ "file-jpg", fa::fa_file_jpg } ,
|
||||
{ "file-lock", fa::fa_file_lock } ,
|
||||
{ "file-magnifying-glass", fa::fa_file_magnifying_glass } ,
|
||||
{ "file-search", fa::fa_file_search } ,
|
||||
{ "file-minus", fa::fa_file_minus } ,
|
||||
{ "file-mov", fa::fa_file_mov } ,
|
||||
{ "file-mp3", fa::fa_file_mp3 } ,
|
||||
{ "file-mp4", fa::fa_file_mp4 } ,
|
||||
{ "file-music", fa::fa_file_music } ,
|
||||
{ "file-plus", fa::fa_file_plus } ,
|
||||
{ "file-plus-minus", fa::fa_file_plus_minus } ,
|
||||
{ "file-png", fa::fa_file_png } ,
|
||||
{ "file-ppt", fa::fa_file_ppt } ,
|
||||
{ "file-slash", fa::fa_file_slash } ,
|
||||
{ "file-spreadsheet", fa::fa_file_spreadsheet } ,
|
||||
{ "file-svg", fa::fa_file_svg } ,
|
||||
{ "file-user", fa::fa_file_user } ,
|
||||
{ "file-vector", fa::fa_file_vector } ,
|
||||
{ "file-xls", fa::fa_file_xls } ,
|
||||
{ "file-xmark", fa::fa_file_xmark } ,
|
||||
{ "file-times", fa::fa_file_times } ,
|
||||
{ "file-xml", fa::fa_file_xml } ,
|
||||
{ "file-zip", fa::fa_file_zip } ,
|
||||
{ "files", fa::fa_files } ,
|
||||
{ "files-medical", fa::fa_files_medical } ,
|
||||
@ -3434,6 +3474,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "folder-arrow-up", fa::fa_folder_arrow_up } ,
|
||||
{ "folder-upload", fa::fa_folder_upload } ,
|
||||
{ "folder-bookmark", fa::fa_folder_bookmark } ,
|
||||
{ "folder-check", fa::fa_folder_check } ,
|
||||
{ "folder-gear", fa::fa_folder_gear } ,
|
||||
{ "folder-cog", fa::fa_folder_cog } ,
|
||||
{ "folder-grid", fa::fa_folder_grid } ,
|
||||
@ -3540,6 +3581,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "h4", fa::fa_h4 } ,
|
||||
{ "h5", fa::fa_h5 } ,
|
||||
{ "h6", fa::fa_h6 } ,
|
||||
{ "hammer-brush", fa::fa_hammer_brush } ,
|
||||
{ "hammer-crash", fa::fa_hammer_crash } ,
|
||||
{ "hammer-war", fa::fa_hammer_war } ,
|
||||
{ "hand-back-point-down", fa::fa_hand_back_point_down } ,
|
||||
@ -3550,6 +3592,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "hand-fingers-crossed", fa::fa_hand_fingers_crossed } ,
|
||||
{ "hand-heart", fa::fa_hand_heart } ,
|
||||
{ "hand-holding-box", fa::fa_hand_holding_box } ,
|
||||
{ "hand-holding-circle-dollar", fa::fa_hand_holding_circle_dollar } ,
|
||||
{ "hand-holding-magic", fa::fa_hand_holding_magic } ,
|
||||
{ "hand-holding-seedling", fa::fa_hand_holding_seedling } ,
|
||||
{ "hand-holding-skull", fa::fa_hand_holding_skull } ,
|
||||
@ -3684,6 +3727,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "lamp-desk", fa::fa_lamp_desk } ,
|
||||
{ "lamp-floor", fa::fa_lamp_floor } ,
|
||||
{ "lamp-street", fa::fa_lamp_street } ,
|
||||
{ "landmark-magnifying-glass", fa::fa_landmark_magnifying_glass } ,
|
||||
{ "laptop-arrow-down", fa::fa_laptop_arrow_down } ,
|
||||
{ "laptop-binary", fa::fa_laptop_binary } ,
|
||||
{ "laptop-mobile", fa::fa_laptop_mobile } ,
|
||||
@ -3738,6 +3782,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "list-tree", fa::fa_list_tree } ,
|
||||
{ "loader", fa::fa_loader } ,
|
||||
{ "lobster", fa::fa_lobster } ,
|
||||
{ "location-arrow-up", fa::fa_location_arrow_up } ,
|
||||
{ "location-check", fa::fa_location_check } ,
|
||||
{ "map-marker-check", fa::fa_map_marker_check } ,
|
||||
{ "location-crosshairs-slash", fa::fa_location_crosshairs_slash } ,
|
||||
@ -3775,6 +3820,10 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "luchador", fa::fa_luchador } ,
|
||||
{ "mask-luchador", fa::fa_mask_luchador } ,
|
||||
{ "mace", fa::fa_mace } ,
|
||||
{ "magnifying-glass-arrows-rotate", fa::fa_magnifying_glass_arrows_rotate } ,
|
||||
{ "magnifying-glass-music", fa::fa_magnifying_glass_music } ,
|
||||
{ "magnifying-glass-play", fa::fa_magnifying_glass_play } ,
|
||||
{ "magnifying-glass-waveform", fa::fa_magnifying_glass_waveform } ,
|
||||
{ "mailbox", fa::fa_mailbox } ,
|
||||
{ "mailbox-flag-up", fa::fa_mailbox_flag_up } ,
|
||||
{ "mandolin", fa::fa_mandolin } ,
|
||||
@ -3884,6 +3933,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "mug-tea", fa::fa_mug_tea } ,
|
||||
{ "mug-tea-saucer", fa::fa_mug_tea_saucer } ,
|
||||
{ "mushroom", fa::fa_mushroom } ,
|
||||
{ "music-magnifying-glass", fa::fa_music_magnifying_glass } ,
|
||||
{ "music-note", fa::fa_music_note } ,
|
||||
{ "music-alt", fa::fa_music_alt } ,
|
||||
{ "music-note-slash", fa::fa_music_note_slash } ,
|
||||
@ -4119,6 +4169,8 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "rectangle-wide", fa::fa_rectangle_wide } ,
|
||||
{ "rectangles-mixed", fa::fa_rectangles_mixed } ,
|
||||
{ "reel", fa::fa_reel } ,
|
||||
{ "reflect-horizontal", fa::fa_reflect_horizontal } ,
|
||||
{ "reflect-vertical", fa::fa_reflect_vertical } ,
|
||||
{ "refrigerator", fa::fa_refrigerator } ,
|
||||
{ "repeat-1", fa::fa_repeat_1 } ,
|
||||
{ "reply-clock", fa::fa_reply_clock } ,
|
||||
@ -4139,6 +4191,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "rocket-launch", fa::fa_rocket_launch } ,
|
||||
{ "roller-coaster", fa::fa_roller_coaster } ,
|
||||
{ "rotate-exclamation", fa::fa_rotate_exclamation } ,
|
||||
{ "rotate-reverse", fa::fa_rotate_reverse } ,
|
||||
{ "route-highway", fa::fa_route_highway } ,
|
||||
{ "route-interstate", fa::fa_route_interstate } ,
|
||||
{ "router", fa::fa_router } ,
|
||||
@ -4205,7 +4258,6 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "shirt-running", fa::fa_shirt_running } ,
|
||||
{ "shirt-tank-top", fa::fa_shirt_tank_top } ,
|
||||
{ "shish-kebab", fa::fa_shish_kebab } ,
|
||||
{ "shoelace", fa::fa_shoelace } ,
|
||||
{ "shovel", fa::fa_shovel } ,
|
||||
{ "shovel-snow", fa::fa_shovel_snow } ,
|
||||
{ "shower-down", fa::fa_shower_down } ,
|
||||
@ -4217,6 +4269,9 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "sidebar", fa::fa_sidebar } ,
|
||||
{ "sidebar-flip", fa::fa_sidebar_flip } ,
|
||||
{ "sigma", fa::fa_sigma } ,
|
||||
{ "sign-post", fa::fa_sign_post } ,
|
||||
{ "sign-posts", fa::fa_sign_posts } ,
|
||||
{ "sign-posts-wrench", fa::fa_sign_posts_wrench } ,
|
||||
{ "signal-bars", fa::fa_signal_bars } ,
|
||||
{ "signal-alt", fa::fa_signal_alt } ,
|
||||
{ "signal-alt-4", fa::fa_signal_alt_4 } ,
|
||||
@ -4279,6 +4334,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "speakers", fa::fa_speakers } ,
|
||||
{ "spider-black-widow", fa::fa_spider_black_widow } ,
|
||||
{ "spider-web", fa::fa_spider_web } ,
|
||||
{ "spinner-scale", fa::fa_spinner_scale } ,
|
||||
{ "spinner-third", fa::fa_spinner_third } ,
|
||||
{ "split", fa::fa_split } ,
|
||||
{ "sportsball", fa::fa_sportsball } ,
|
||||
@ -4443,6 +4499,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "swords-laser", fa::fa_swords_laser } ,
|
||||
{ "symbols", fa::fa_symbols } ,
|
||||
{ "icons-alt", fa::fa_icons_alt } ,
|
||||
{ "t-rex", fa::fa_t_rex } ,
|
||||
{ "table-layout", fa::fa_table_layout } ,
|
||||
{ "table-picnic", fa::fa_table_picnic } ,
|
||||
{ "table-pivot", fa::fa_table_pivot } ,
|
||||
@ -4470,13 +4527,22 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "temperature-sun", fa::fa_temperature_sun } ,
|
||||
{ "temperature-hot", fa::fa_temperature_hot } ,
|
||||
{ "tennis-ball", fa::fa_tennis_ball } ,
|
||||
{ "tent-double-peak", fa::fa_tent_double_peak } ,
|
||||
{ "text", fa::fa_text } ,
|
||||
{ "text-size", fa::fa_text_size } ,
|
||||
{ "theta", fa::fa_theta } ,
|
||||
{ "thought-bubble", fa::fa_thought_bubble } ,
|
||||
{ "tick", fa::fa_tick } ,
|
||||
{ "ticket-airline", fa::fa_ticket_airline } ,
|
||||
{ "ticket-perforated-plane", fa::fa_ticket_perforated_plane } ,
|
||||
{ "ticket-plane", fa::fa_ticket_plane } ,
|
||||
{ "ticket-perforated", fa::fa_ticket_perforated } ,
|
||||
{ "tickets", fa::fa_tickets } ,
|
||||
{ "tickets-airline", fa::fa_tickets_airline } ,
|
||||
{ "tickets-perforated-plane", fa::fa_tickets_perforated_plane } ,
|
||||
{ "tickets-plane", fa::fa_tickets_plane } ,
|
||||
{ "tickets-perforated", fa::fa_tickets_perforated } ,
|
||||
{ "tickets-simple", fa::fa_tickets_simple } ,
|
||||
{ "tilde", fa::fa_tilde } ,
|
||||
{ "timeline-arrow", fa::fa_timeline_arrow } ,
|
||||
{ "timer", fa::fa_timer } ,
|
||||
@ -4561,12 +4627,15 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "shipping-timed", fa::fa_shipping_timed } ,
|
||||
{ "truck-container", fa::fa_truck_container } ,
|
||||
{ "truck-container-empty", fa::fa_truck_container_empty } ,
|
||||
{ "truck-fire", fa::fa_truck_fire } ,
|
||||
{ "truck-flatbed", fa::fa_truck_flatbed } ,
|
||||
{ "truck-ladder", fa::fa_truck_ladder } ,
|
||||
{ "truck-plow", fa::fa_truck_plow } ,
|
||||
{ "truck-ramp", fa::fa_truck_ramp } ,
|
||||
{ "truck-ramp-couch", fa::fa_truck_ramp_couch } ,
|
||||
{ "truck-couch", fa::fa_truck_couch } ,
|
||||
{ "truck-tow", fa::fa_truck_tow } ,
|
||||
{ "truck-utensils", fa::fa_truck_utensils } ,
|
||||
{ "trumpet", fa::fa_trumpet } ,
|
||||
{ "tty-answer", fa::fa_tty_answer } ,
|
||||
{ "teletype-answer", fa::fa_teletype_answer } ,
|
||||
@ -4574,6 +4643,10 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "turkey", fa::fa_turkey } ,
|
||||
{ "turn-down-left", fa::fa_turn_down_left } ,
|
||||
{ "turn-down-right", fa::fa_turn_down_right } ,
|
||||
{ "turn-left", fa::fa_turn_left } ,
|
||||
{ "turn-left-down", fa::fa_turn_left_down } ,
|
||||
{ "turn-left-up", fa::fa_turn_left_up } ,
|
||||
{ "turn-right", fa::fa_turn_right } ,
|
||||
{ "turntable", fa::fa_turntable } ,
|
||||
{ "turtle", fa::fa_turtle } ,
|
||||
{ "tv-music", fa::fa_tv_music } ,
|
||||
@ -4674,6 +4747,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "water-arrow-up", fa::fa_water_arrow_up } ,
|
||||
{ "water-rise", fa::fa_water_rise } ,
|
||||
{ "watermelon-slice", fa::fa_watermelon_slice } ,
|
||||
{ "wave", fa::fa_wave } ,
|
||||
{ "wave-pulse", fa::fa_wave_pulse } ,
|
||||
{ "heart-rate", fa::fa_heart_rate } ,
|
||||
{ "wave-sine", fa::fa_wave_sine } ,
|
||||
@ -4681,6 +4755,7 @@ static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
||||
{ "waveform", fa::fa_waveform } ,
|
||||
{ "waveform-lines", fa::fa_waveform_lines } ,
|
||||
{ "waveform-path", fa::fa_waveform_path } ,
|
||||
{ "waves-sine", fa::fa_waves_sine } ,
|
||||
{ "webhook", fa::fa_webhook } ,
|
||||
{ "whale", fa::fa_whale } ,
|
||||
{ "wheat", fa::fa_wheat } ,
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -23,6 +23,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
||||
ui->comboBox->addItem("Sharp Solid", fa::fa_sharp_solid);
|
||||
ui->comboBox->addItem("Sharp Regular", fa::fa_sharp_regular);
|
||||
ui->comboBox->addItem("Sharp Light", fa::fa_sharp_light);
|
||||
ui->comboBox->addItem("Sharp Thin", fa::fa_sharp_thin);
|
||||
#endif
|
||||
|
||||
// a simple beer button
|
||||
|
@ -19,9 +19,9 @@ icons to your [Qt application](http://qt-project.org/).
|
||||
- [Contact](#contact)
|
||||
- [License](#license)
|
||||
|
||||
## Latest Release 6.4.2
|
||||
## Latest Release 6.5.1
|
||||
|
||||
Fix issue, pro icons are are now included in the namedCodePoints list.
|
||||
Pro Sharp Thin font support.
|
||||
|
||||
[View changelog](CHANGES.md)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user