From 4668c77477692aa7fee6800aa0a11380b3498b12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Candice=20Bent=C3=A9jac?= Date: Thu, 9 Nov 2023 17:07:30 +0100 Subject: [PATCH 1/3] [MaterialIcons] Add script to parse codepoints and generate the QML file --- .../MaterialIcons/generate_material_icons.py | 57 +++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 meshroom/ui/qml/MaterialIcons/generate_material_icons.py diff --git a/meshroom/ui/qml/MaterialIcons/generate_material_icons.py b/meshroom/ui/qml/MaterialIcons/generate_material_icons.py new file mode 100644 index 0000000000..717bbe70c5 --- /dev/null +++ b/meshroom/ui/qml/MaterialIcons/generate_material_icons.py @@ -0,0 +1,57 @@ +import argparse +import os + +parser = argparse.ArgumentParser(description='Generate a MaterialIcons.qml singleton from codepoints file.') +parser.add_argument('codepoints', type=str, help='Codepoints file.') +parser.add_argument('--output', type=str, default='.', help='') + +args = parser.parse_args() + +# Override icons with problematic names +mapping = { + 'delete': 'delete_', + 'class': 'class_', + '3d_rotation': '_3d_rotation', + 'opacity': 'opacity_', + 'transform': 'transform_', + 'print': 'print_', + 'public': 'public_', + 'password': 'pwd', + 'wifi_password': 'wifi_pwd', + 'try': 'try_' +} + +# Override icons that are numeric literals +numeric_literals = ['1', '2', '3', '4', '5', '6', '7', '8', '9'] + +# List of existing name to override potential duplicates +names = [] + +with open(os.path.join(args.output, 'MaterialIcons.qml'), 'w') as qml_file: + qml_file.write('pragma Singleton\n') + qml_file.write('import QtQuick 2.15\n\n') + qml_file.write('QtObject {\n') + qml_file.write(' property FontLoader fl: FontLoader {\n') + qml_file.write(' source: "./MaterialIcons-Regular.ttf"\n') + qml_file.write(' }\n') + qml_file.write(' readonly property string fontFamily: fl.name\n\n') + + with open(args.codepoints, 'r') as codepoints: + for line in codepoints.readlines(): + name, code = line.strip().split(" ") + name = mapping.get(name, name) + + # Add underscore to names that are numeric literals (e.g. "123" will become "_123") + if name[0] in numeric_literals: + name = "_" + name + + # If the name already exists in the list, append an index + if name in names: + index = 2 + while name + str(index) in names: + index = index + 1 + name = name + str(index) + + names.append(name) + qml_file.write(' readonly property string {}: "\\u{}"\n'.format(name, code)) + qml_file.write('}\n') From 0fcbbbcd3c9e3f41edab8aa3c9a8a8e3ab391813 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Candice=20Bent=C3=A9jac?= Date: Thu, 9 Nov 2023 17:08:34 +0100 Subject: [PATCH 2/3] [MaterialIcons] Update list of available MaterialIcons --- .../ui/qml/MaterialIcons/MaterialIcons.qml | 1219 ++++++++++++++++- 1 file changed, 1211 insertions(+), 8 deletions(-) diff --git a/meshroom/ui/qml/MaterialIcons/MaterialIcons.qml b/meshroom/ui/qml/MaterialIcons/MaterialIcons.qml index bcc39d794b..05117dc75c 100644 --- a/meshroom/ui/qml/MaterialIcons/MaterialIcons.qml +++ b/meshroom/ui/qml/MaterialIcons/MaterialIcons.qml @@ -6,13 +6,70 @@ QtObject { source: "./MaterialIcons-Regular.ttf" } readonly property string fontFamily: fl.name + + readonly property string _10k: "\ue951" + readonly property string _10mp: "\ue952" + readonly property string _11mp: "\ue953" + readonly property string _123: "\ueb8d" + readonly property string _12mp: "\ue954" + readonly property string _13mp: "\ue955" + readonly property string _14mp: "\ue956" + readonly property string _15mp: "\ue957" + readonly property string _16mp: "\ue958" + readonly property string _17mp: "\ue959" + readonly property string _18_up_rating: "\uf8fd" + readonly property string _18mp: "\ue95a" + readonly property string _19mp: "\ue95b" + readonly property string _1k: "\ue95c" + readonly property string _1k_plus: "\ue95d" + readonly property string _1x_mobiledata: "\uefcd" + readonly property string _20mp: "\ue95e" + readonly property string _21mp: "\ue95f" + readonly property string _22mp: "\ue960" + readonly property string _23mp: "\ue961" + readonly property string _24mp: "\ue962" + readonly property string _2k: "\ue963" + readonly property string _2k_plus: "\ue964" + readonly property string _2mp: "\ue965" + readonly property string _30fps: "\uefce" + readonly property string _30fps_select: "\uefcf" readonly property string _360: "\ue577" readonly property string _3d_rotation: "\ue84d" + readonly property string _3g_mobiledata: "\uefd0" + readonly property string _3k: "\ue966" + readonly property string _3k_plus: "\ue967" + readonly property string _3mp: "\ue968" + readonly property string _3p: "\uefd1" + readonly property string _4g_mobiledata: "\uefd2" + readonly property string _4g_plus_mobiledata: "\uefd3" readonly property string _4k: "\ue072" + readonly property string _4k_plus: "\ue969" + readonly property string _4mp: "\ue96a" + readonly property string _5g: "\uef38" + readonly property string _5k: "\ue96b" + readonly property string _5k_plus: "\ue96c" + readonly property string _5mp: "\ue96d" + readonly property string _60fps: "\uefd4" + readonly property string _60fps_select: "\uefd5" + readonly property string _6_ft_apart: "\uf21e" + readonly property string _6k: "\ue96e" + readonly property string _6k_plus: "\ue96f" + readonly property string _6mp: "\ue970" + readonly property string _7k: "\ue971" + readonly property string _7k_plus: "\ue972" + readonly property string _7mp: "\ue973" + readonly property string _8k: "\ue974" + readonly property string _8k_plus: "\ue975" + readonly property string _8mp: "\ue976" + readonly property string _9k: "\ue977" + readonly property string _9k_plus: "\ue978" + readonly property string _9mp: "\ue979" + readonly property string abc: "\ueb94" readonly property string ac_unit: "\ueb3b" readonly property string access_alarm: "\ue190" readonly property string access_alarms: "\ue191" readonly property string access_time: "\ue192" + readonly property string access_time_filled: "\uefd6" readonly property string accessibility: "\ue84e" readonly property string accessibility_new: "\ue92c" readonly property string accessible: "\ue914" @@ -21,24 +78,45 @@ QtObject { readonly property string account_balance_wallet: "\ue850" readonly property string account_box: "\ue851" readonly property string account_circle: "\ue853" + readonly property string account_tree: "\ue97a" + readonly property string ad_units: "\uef39" readonly property string adb: "\ue60e" readonly property string add: "\ue145" readonly property string add_a_photo: "\ue439" readonly property string add_alarm: "\ue193" readonly property string add_alert: "\ue003" readonly property string add_box: "\ue146" + readonly property string add_business: "\ue729" readonly property string add_call: "\ue0e8" + readonly property string add_card: "\ueb86" + readonly property string add_chart: "\ue97b" readonly property string add_circle: "\ue147" readonly property string add_circle_outline: "\ue148" readonly property string add_comment: "\ue266" + readonly property string add_home: "\uf8eb" + readonly property string add_home_work: "\uf8ed" + readonly property string add_ic_call: "\ue97c" readonly property string add_link: "\ue178" readonly property string add_location: "\ue567" + readonly property string add_location_alt: "\uef3a" + readonly property string add_moderator: "\ue97d" readonly property string add_photo_alternate: "\ue43e" + readonly property string add_reaction: "\ue1d3" + readonly property string add_road: "\uef3b" readonly property string add_shopping_cart: "\ue854" + readonly property string add_task: "\uf23a" + readonly property string add_to_drive: "\ue65c" readonly property string add_to_home_screen: "\ue1fe" readonly property string add_to_photos: "\ue39d" readonly property string add_to_queue: "\ue05c" + readonly property string addchart: "\uef3c" + readonly property string adf_scanner: "\ueada" readonly property string adjust: "\ue39e" + readonly property string admin_panel_settings: "\uef3d" + readonly property string adobe: "\uea96" + readonly property string ads_click: "\ue762" + readonly property string agriculture: "\uea79" + readonly property string air: "\uefd8" readonly property string airline_seat_flat: "\ue630" readonly property string airline_seat_flat_angled: "\ue631" readonly property string airline_seat_individual_suite: "\ue632" @@ -47,8 +125,13 @@ QtObject { readonly property string airline_seat_legroom_reduced: "\ue635" readonly property string airline_seat_recline_extra: "\ue636" readonly property string airline_seat_recline_normal: "\ue637" + readonly property string airline_stops: "\ue7d0" + readonly property string airlines: "\ue7ca" + readonly property string airplane_ticket: "\uefd9" readonly property string airplanemode_active: "\ue195" readonly property string airplanemode_inactive: "\ue194" + readonly property string airplanemode_off: "\ue194" + readonly property string airplanemode_on: "\ue195" readonly property string airplay: "\ue055" readonly property string airport_shuttle: "\ueb3c" readonly property string alarm: "\ue855" @@ -56,15 +139,44 @@ QtObject { readonly property string alarm_off: "\ue857" readonly property string alarm_on: "\ue858" readonly property string album: "\ue019" + readonly property string align_horizontal_center: "\ue00f" + readonly property string align_horizontal_left: "\ue00d" + readonly property string align_horizontal_right: "\ue010" + readonly property string align_vertical_bottom: "\ue015" + readonly property string align_vertical_center: "\ue011" + readonly property string align_vertical_top: "\ue00c" + readonly property string all_inbox: "\ue97f" readonly property string all_inclusive: "\ueb3d" readonly property string all_out: "\ue90b" + readonly property string alt_route: "\uf184" readonly property string alternate_email: "\ue0e6" + readonly property string amp_stories: "\uea13" + readonly property string analytics: "\uef3e" + readonly property string anchor: "\uf1cd" readonly property string android: "\ue859" + readonly property string animation: "\ue71c" readonly property string announcement: "\ue85a" + readonly property string aod: "\uefda" + readonly property string apartment: "\uea40" + readonly property string api: "\uf1b7" + readonly property string app_blocking: "\uef3f" + readonly property string app_registration: "\uef40" + readonly property string app_settings_alt: "\uef41" + readonly property string app_shortcut: "\ueae4" + readonly property string apple: "\uea80" + readonly property string approval: "\ue982" readonly property string apps: "\ue5c3" + readonly property string apps_outage: "\ue7cc" + readonly property string architecture: "\uea3b" readonly property string archive: "\ue149" + readonly property string area_chart: "\ue770" readonly property string arrow_back: "\ue5c4" readonly property string arrow_back_ios: "\ue5e0" + readonly property string arrow_back_ios_new: "\ue2ea" + readonly property string arrow_circle_down: "\uf181" + readonly property string arrow_circle_left: "\ueaa7" + readonly property string arrow_circle_right: "\ueaaa" + readonly property string arrow_circle_up: "\uf182" readonly property string arrow_downward: "\ue5db" readonly property string arrow_drop_down: "\ue5c5" readonly property string arrow_drop_down_circle: "\ue5c6" @@ -72,52 +184,117 @@ QtObject { readonly property string arrow_forward: "\ue5c8" readonly property string arrow_forward_ios: "\ue5e1" readonly property string arrow_left: "\ue5de" + readonly property string arrow_outward: "\uf8ce" readonly property string arrow_right: "\ue5df" readonly property string arrow_right_alt: "\ue941" readonly property string arrow_upward: "\ue5d8" readonly property string art_track: "\ue060" + readonly property string article: "\uef42" readonly property string aspect_ratio: "\ue85b" readonly property string assessment: "\ue85c" readonly property string assignment: "\ue85d" + readonly property string assignment_add: "\uf848" readonly property string assignment_ind: "\ue85e" readonly property string assignment_late: "\ue85f" readonly property string assignment_return: "\ue860" readonly property string assignment_returned: "\ue861" readonly property string assignment_turned_in: "\ue862" + readonly property string assist_walker: "\uf8d5" readonly property string assistant: "\ue39f" + readonly property string assistant_direction: "\ue988" + readonly property string assistant_navigation: "\ue989" readonly property string assistant_photo: "\ue3a0" + readonly property string assured_workload: "\ueb6f" readonly property string atm: "\ue573" + readonly property string attach_email: "\uea5e" readonly property string attach_file: "\ue226" readonly property string attach_money: "\ue227" readonly property string attachment: "\ue2bc" + readonly property string attractions: "\uea52" + readonly property string attribution: "\uefdb" + readonly property string audio_file: "\ueb82" readonly property string audiotrack: "\ue3a1" + readonly property string auto_awesome: "\ue65f" + readonly property string auto_awesome_mosaic: "\ue660" + readonly property string auto_awesome_motion: "\ue661" + readonly property string auto_delete: "\uea4c" + readonly property string auto_fix_high: "\ue663" + readonly property string auto_fix_normal: "\ue664" + readonly property string auto_fix_off: "\ue665" + readonly property string auto_graph: "\ue4fb" + readonly property string auto_mode: "\uec20" + readonly property string auto_stories: "\ue666" + readonly property string autofps_select: "\uefdc" readonly property string autorenew: "\ue863" readonly property string auto_awesome_motion: "\ue661" readonly property string av_timer: "\ue01b" + readonly property string baby_changing_station: "\uf19b" + readonly property string back_hand: "\ue764" + readonly property string backpack: "\uf19c" readonly property string backspace: "\ue14a" readonly property string backup: "\ue864" + readonly property string backup_table: "\uef43" + readonly property string badge: "\uea67" + readonly property string bakery_dining: "\uea53" + readonly property string balance: "\ueaf6" + readonly property string balcony: "\ue58f" readonly property string ballot: "\ue172" readonly property string bar_chart: "\ue26b" + readonly property string barcode_reader: "\uf85c" + readonly property string batch_prediction: "\uf0f5" + readonly property string bathroom: "\uefdd" + readonly property string bathtub: "\uea41" + readonly property string battery_0_bar: "\uebdc" + readonly property string battery_1_bar: "\uebd9" + readonly property string battery_2_bar: "\uebe0" + readonly property string battery_3_bar: "\uebdd" + readonly property string battery_4_bar: "\uebe2" + readonly property string battery_5_bar: "\uebd4" + readonly property string battery_6_bar: "\uebd2" readonly property string battery_alert: "\ue19c" readonly property string battery_charging_full: "\ue1a3" readonly property string battery_full: "\ue1a4" + readonly property string battery_saver: "\uefde" readonly property string battery_std: "\ue1a5" readonly property string battery_unknown: "\ue1a6" readonly property string beach_access: "\ueb3e" + readonly property string bed: "\uefdf" + readonly property string bedroom_baby: "\uefe0" + readonly property string bedroom_child: "\uefe1" + readonly property string bedroom_parent: "\uefe2" + readonly property string bedtime: "\uef44" + readonly property string bedtime_off: "\ueb76" readonly property string beenhere: "\ue52d" + readonly property string bento: "\uf1f4" + readonly property string bike_scooter: "\uef45" + readonly property string biotech: "\uea3a" + readonly property string blender: "\uefe3" + readonly property string blind: "\uf8d6" + readonly property string blinds: "\ue286" + readonly property string blinds_closed: "\uec1f" readonly property string block: "\ue14b" + readonly property string block_flipped: "\uef46" + readonly property string bloodtype: "\uefe4" readonly property string bluetooth: "\ue1a7" readonly property string bluetooth_audio: "\ue60f" readonly property string bluetooth_connected: "\ue1a8" readonly property string bluetooth_disabled: "\ue1a9" + readonly property string bluetooth_drive: "\uefe5" readonly property string bluetooth_searching: "\ue1aa" readonly property string blur_circular: "\ue3a2" readonly property string blur_linear: "\ue3a3" readonly property string blur_off: "\ue3a4" readonly property string blur_on: "\ue3a5" + readonly property string bolt: "\uea0b" readonly property string book: "\ue865" + readonly property string book_online: "\uf217" readonly property string bookmark: "\ue866" + readonly property string bookmark_add: "\ue598" + readonly property string bookmark_added: "\ue599" readonly property string bookmark_border: "\ue867" + readonly property string bookmark_outline: "\ue867" + readonly property string bookmark_remove: "\ue59a" + readonly property string bookmarks: "\ue98b" readonly property string border_all: "\ue228" readonly property string border_bottom: "\ue229" readonly property string border_clear: "\ue22a" @@ -130,7 +307,9 @@ QtObject { readonly property string border_style: "\ue231" readonly property string border_top: "\ue232" readonly property string border_vertical: "\ue233" + readonly property string boy: "\ueb67" readonly property string branding_watermark: "\ue06b" + readonly property string breakfast_dining: "\uea54" readonly property string brightness_1: "\ue3a6" readonly property string brightness_2: "\ue3a7" readonly property string brightness_3: "\ue3a8" @@ -142,18 +321,33 @@ QtObject { readonly property string brightness_high: "\ue1ac" readonly property string brightness_low: "\ue1ad" readonly property string brightness_medium: "\ue1ae" + readonly property string broadcast_on_home: "\uf8f8" + readonly property string broadcast_on_personal: "\uf8f9" readonly property string broken_image: "\ue3ad" + readonly property string browse_gallery: "\uebd1" + readonly property string browser_not_supported: "\uef47" + readonly property string browser_updated: "\ue7cf" + readonly property string brunch_dining: "\uea73" readonly property string brush: "\ue3ae" readonly property string bubble_chart: "\ue6dd" readonly property string bug_report: "\ue868" readonly property string build: "\ue869" + readonly property string build_circle: "\uef48" + readonly property string bungalow: "\ue591" readonly property string burst_mode: "\ue43c" + readonly property string bus_alert: "\ue98f" readonly property string business: "\ue0af" readonly property string business_center: "\ueb3f" + readonly property string cabin: "\ue589" + readonly property string cable: "\uefe6" readonly property string cached: "\ue86a" readonly property string cake: "\ue7e9" + readonly property string calculate: "\uea5f" + readonly property string calendar_month: "\uebcc" readonly property string calendar_today: "\ue935" readonly property string calendar_view_day: "\ue936" + readonly property string calendar_view_month: "\uefe7" + readonly property string calendar_view_week: "\uefe8" readonly property string call: "\ue0b0" readonly property string call_end: "\ue0b1" readonly property string call_made: "\ue0b2" @@ -167,21 +361,42 @@ QtObject { readonly property string camera_alt: "\ue3b0" readonly property string camera_enhance: "\ue8fc" readonly property string camera_front: "\ue3b1" + readonly property string camera_indoor: "\uefe9" + readonly property string camera_outdoor: "\uefea" readonly property string camera_rear: "\ue3b2" readonly property string camera_roll: "\ue3b3" + readonly property string cameraswitch: "\uefeb" + readonly property string campaign: "\uef49" readonly property string cancel: "\ue5c9" readonly property string cancel_presentation: "\ue0e9" + readonly property string cancel_schedule_send: "\uea39" + readonly property string candlestick_chart: "\uead4" + readonly property string car_crash: "\uebf2" + readonly property string car_rental: "\uea55" + readonly property string car_repair: "\uea56" readonly property string card_giftcard: "\ue8f6" readonly property string card_membership: "\ue8f7" readonly property string card_travel: "\ue8f8" + readonly property string carpenter: "\uf1f8" + readonly property string cases: "\ue992" readonly property string casino: "\ueb40" readonly property string cast: "\ue307" readonly property string cast_connected: "\ue308" + readonly property string cast_for_education: "\uefec" + readonly property string castle: "\ueab1" + readonly property string catching_pokemon: "\ue508" readonly property string category: "\ue574" + readonly property string celebration: "\uea65" + readonly property string cell_tower: "\uebba" readonly property string cell_wifi: "\ue0ec" readonly property string center_focus_strong: "\ue3b4" readonly property string center_focus_weak: "\ue3b5" + readonly property string chair: "\uefed" + readonly property string chair_alt: "\uefee" + readonly property string chalet: "\ue585" + readonly property string change_circle: "\ue2e7" readonly property string change_history: "\ue86b" + readonly property string charging_station: "\uf19d" readonly property string chat: "\ue0b7" readonly property string chat_bubble: "\ue0ca" readonly property string chat_bubble_outline: "\ue0cb" @@ -190,49 +405,95 @@ QtObject { readonly property string check_box_outline_blank: "\ue835" readonly property string check_circle: "\ue86c" readonly property string check_circle_outline: "\ue92d" + readonly property string checklist: "\ue6b1" + readonly property string checklist_rtl: "\ue6b3" + readonly property string checkroom: "\uf19e" readonly property string chevron_left: "\ue5cb" readonly property string chevron_right: "\ue5cc" readonly property string child_care: "\ueb41" readonly property string child_friendly: "\ueb42" readonly property string chrome_reader_mode: "\ue86d" - readonly property string _class: "\ue86e" + readonly property string church: "\ueaae" + readonly property string circle: "\uef4a" + readonly property string circle_notifications: "\ue994" + readonly property string class_: "\ue86e" + readonly property string clean_hands: "\uf21f" + readonly property string cleaning_services: "\uf0ff" readonly property string clear: "\ue14c" readonly property string clear_all: "\ue0b8" readonly property string close: "\ue5cd" + readonly property string close_fullscreen: "\uf1cf" readonly property string closed_caption: "\ue01c" + readonly property string closed_caption_disabled: "\uf1dc" + readonly property string closed_caption_off: "\ue996" readonly property string cloud: "\ue2bd" readonly property string cloud_circle: "\ue2be" readonly property string cloud_done: "\ue2bf" readonly property string cloud_download: "\ue2c0" readonly property string cloud_off: "\ue2c1" readonly property string cloud_queue: "\ue2c2" + readonly property string cloud_sync: "\ueb5a" readonly property string cloud_upload: "\ue2c3" + readonly property string cloudy_snowing: "\ue810" + readonly property string co2: "\ue7b0" + readonly property string co_present: "\ueaf0" readonly property string code: "\ue86f" + readonly property string code_off: "\ue4f3" + readonly property string coffee: "\uefef" + readonly property string coffee_maker: "\ueff0" readonly property string collections: "\ue3b6" readonly property string collections_bookmark: "\ue431" readonly property string color_lens: "\ue3b7" readonly property string colorize: "\ue3b8" readonly property string comment: "\ue0b9" + readonly property string comment_bank: "\uea4e" + readonly property string comments_disabled: "\ue7a2" + readonly property string commit: "\ueaf5" readonly property string commute: "\ue940" readonly property string compare: "\ue3b9" readonly property string compare_arrows: "\ue915" readonly property string compass_calibration: "\ue57c" + readonly property string compost: "\ue761" + readonly property string compress: "\ue94d" readonly property string computer: "\ue30a" + readonly property string confirmation_num: "\ue638" readonly property string confirmation_number: "\ue638" + readonly property string connect_without_contact: "\uf223" + readonly property string connected_tv: "\ue998" + readonly property string connecting_airports: "\ue7c9" + readonly property string construction: "\uea3c" + readonly property string contact_emergency: "\uf8d1" readonly property string contact_mail: "\ue0d0" + readonly property string contact_page: "\uf22e" readonly property string contact_phone: "\ue0cf" readonly property string contact_support: "\ue94c" + readonly property string contactless: "\uea71" readonly property string contacts: "\ue0ba" readonly property string content_copy: "\ue14d" readonly property string content_cut: "\ue14e" readonly property string content_paste: "\ue14f" + readonly property string content_paste_go: "\uea8e" + readonly property string content_paste_off: "\ue4f8" + readonly property string content_paste_search: "\uea9b" + readonly property string contrast: "\ueb37" readonly property string control_camera: "\ue074" readonly property string control_point: "\ue3ba" readonly property string control_point_duplicate: "\ue3bb" + readonly property string conveyor_belt: "\uf867" + readonly property string cookie: "\ueaac" + readonly property string copy_all: "\ue2ec" readonly property string copyright: "\ue90c" + readonly property string coronavirus: "\uf221" + readonly property string corporate_fare: "\uf1d0" + readonly property string cottage: "\ue587" + readonly property string countertops: "\uf1f7" readonly property string create: "\ue150" readonly property string create_new_folder: "\ue2cc" readonly property string credit_card: "\ue870" + readonly property string credit_card_off: "\ue4f4" + readonly property string credit_score: "\ueff1" + readonly property string crib: "\ue588" + readonly property string crisis_alert: "\uebe9" readonly property string crop: "\ue3be" readonly property string crop_16_9: "\ue3bc" readonly property string crop_3_2: "\ue3bd" @@ -245,96 +506,256 @@ QtObject { readonly property string crop_portrait: "\ue3c5" readonly property string crop_rotate: "\ue437" readonly property string crop_square: "\ue3c6" + readonly property string cruelty_free: "\ue799" + readonly property string css: "\ueb93" + readonly property string currency_bitcoin: "\uebc5" + readonly property string currency_exchange: "\ueb70" + readonly property string currency_franc: "\ueafa" + readonly property string currency_lira: "\ueaef" + readonly property string currency_pound: "\ueaf1" + readonly property string currency_ruble: "\ueaec" + readonly property string currency_rupee: "\ueaf7" + readonly property string currency_yen: "\ueafb" + readonly property string currency_yuan: "\ueaf9" + readonly property string curtains: "\uec1e" + readonly property string curtains_closed: "\uec1d" + readonly property string cyclone: "\uebd5" readonly property string dangerous: "\ue99a" + readonly property string dark_mode: "\ue51c" readonly property string dashboard: "\ue871" + readonly property string dashboard_customize: "\ue99b" + readonly property string data_array: "\uead1" + readonly property string data_exploration: "\ue76f" + readonly property string data_object: "\uead3" + readonly property string data_saver_off: "\ueff2" + readonly property string data_saver_on: "\ueff3" + readonly property string data_thresholding: "\ueb9f" readonly property string data_usage: "\ue1af" + readonly property string dataset: "\uf8ee" + readonly property string dataset_linked: "\uf8ef" readonly property string date_range: "\ue916" + readonly property string deblur: "\ueb77" + readonly property string deck: "\uea42" readonly property string dehaze: "\ue3c7" - readonly property string _delete: "\ue872" + readonly property string delete_: "\ue872" readonly property string delete_forever: "\ue92b" readonly property string delete_outline: "\ue92e" readonly property string delete_sweep: "\ue16c" + readonly property string delivery_dining: "\uea72" + readonly property string density_large: "\ueba9" + readonly property string density_medium: "\ueb9e" + readonly property string density_small: "\ueba8" readonly property string departure_board: "\ue576" readonly property string description: "\ue873" + readonly property string deselect: "\uebb6" + readonly property string design_services: "\uf10a" + readonly property string desk: "\uf8f4" + readonly property string desktop_access_disabled: "\ue99d" readonly property string desktop_mac: "\ue30b" readonly property string desktop_windows: "\ue30c" readonly property string details: "\ue3c8" readonly property string developer_board: "\ue30d" + readonly property string developer_board_off: "\ue4ff" readonly property string developer_mode: "\ue1b0" readonly property string device_hub: "\ue335" + readonly property string device_thermostat: "\ue1ff" readonly property string device_unknown: "\ue339" readonly property string devices: "\ue1b1" + readonly property string devices_fold: "\uebde" readonly property string devices_other: "\ue337" + readonly property string dew_point: "\uf879" readonly property string dialer_sip: "\ue0bb" readonly property string dialpad: "\ue0bc" + readonly property string diamond: "\uead5" + readonly property string difference: "\ueb7d" + readonly property string dining: "\ueff4" + readonly property string dinner_dining: "\uea57" readonly property string directions: "\ue52e" readonly property string directions_bike: "\ue52f" readonly property string directions_boat: "\ue532" + readonly property string directions_boat_filled: "\ueff5" readonly property string directions_bus: "\ue530" + readonly property string directions_bus_filled: "\ueff6" readonly property string directions_car: "\ue531" + readonly property string directions_car_filled: "\ueff7" + readonly property string directions_ferry: "\ue532" + readonly property string directions_off: "\uf10f" readonly property string directions_railway: "\ue534" + readonly property string directions_railway_filled: "\ueff8" readonly property string directions_run: "\ue566" readonly property string directions_subway: "\ue533" + readonly property string directions_subway_filled: "\ueff9" + readonly property string directions_train: "\ue534" readonly property string directions_transit: "\ue535" + readonly property string directions_transit_filled: "\ueffa" readonly property string directions_walk: "\ue536" + readonly property string dirty_lens: "\uef4b" + readonly property string disabled_by_default: "\uf230" + readonly property string disabled_visible: "\ue76e" readonly property string disc_full: "\ue610" + readonly property string discord: "\uea6c" + readonly property string discount: "\uebc9" + readonly property string display_settings: "\ueb97" + readonly property string diversity_1: "\uf8d7" + readonly property string diversity_2: "\uf8d8" + readonly property string diversity_3: "\uf8d9" + readonly property string dnd_forwardslash: "\ue611" readonly property string dns: "\ue875" + readonly property string do_disturb: "\uf08c" + readonly property string do_disturb_alt: "\uf08d" + readonly property string do_disturb_off: "\uf08e" + readonly property string do_disturb_on: "\uf08f" readonly property string do_not_disturb: "\ue612" readonly property string do_not_disturb_alt: "\ue611" readonly property string do_not_disturb_off: "\ue643" readonly property string do_not_disturb_on: "\ue644" + readonly property string do_not_disturb_on_total_silence: "\ueffb" + readonly property string do_not_step: "\uf19f" + readonly property string do_not_touch: "\uf1b0" readonly property string dock: "\ue30e" + readonly property string document_scanner: "\ue5fa" readonly property string domain: "\ue7ee" + readonly property string domain_add: "\ueb62" readonly property string domain_disabled: "\ue0ef" + readonly property string domain_verification: "\uef4c" readonly property string done: "\ue876" readonly property string done_all: "\ue877" readonly property string done_outline: "\ue92f" readonly property string donut_large: "\ue917" readonly property string donut_small: "\ue918" + readonly property string door_back: "\ueffc" + readonly property string door_front: "\ueffd" + readonly property string door_sliding: "\ueffe" + readonly property string doorbell: "\uefff" + readonly property string double_arrow: "\uea50" + readonly property string downhill_skiing: "\ue509" + readonly property string download: "\uf090" + readonly property string download_done: "\uf091" + readonly property string download_for_offline: "\uf000" + readonly property string downloading: "\uf001" readonly property string drafts: "\ue151" readonly property string drag_handle: "\ue25d" readonly property string drag_indicator: "\ue945" + readonly property string draw: "\ue746" readonly property string drive_eta: "\ue613" + readonly property string drive_file_move: "\ue675" + readonly property string drive_file_move_outline: "\ue9a1" + readonly property string drive_file_move_rtl: "\ue76d" + readonly property string drive_file_rename_outline: "\ue9a2" + readonly property string drive_folder_upload: "\ue9a3" + readonly property string dry: "\uf1b3" + readonly property string dry_cleaning: "\uea58" + readonly property string duo: "\ue9a5" readonly property string dvr: "\ue1b2" + readonly property string dynamic_feed: "\uea14" + readonly property string dynamic_form: "\uf1bf" + readonly property string e_mobiledata: "\uf002" + readonly property string earbuds: "\uf003" + readonly property string earbuds_battery: "\uf004" + readonly property string east: "\uf1df" + readonly property string eco: "\uea35" + readonly property string edgesensor_high: "\uf005" + readonly property string edgesensor_low: "\uf006" readonly property string edit: "\ue3c9" readonly property string edit_attributes: "\ue578" + readonly property string edit_calendar: "\ue742" + readonly property string edit_document: "\uf88c" readonly property string edit_location: "\ue568" + readonly property string edit_location_alt: "\ue1c5" + readonly property string edit_note: "\ue745" + readonly property string edit_notifications: "\ue525" readonly property string edit_off: "\ue950" + readonly property string edit_road: "\uef4d" + readonly property string edit_square: "\uf88d" + readonly property string egg: "\ueacc" + readonly property string egg_alt: "\ueac8" readonly property string eject: "\ue8fb" + readonly property string elderly: "\uf21a" + readonly property string elderly_woman: "\ueb69" + readonly property string electric_bike: "\ueb1b" + readonly property string electric_bolt: "\uec1c" + readonly property string electric_car: "\ueb1c" + readonly property string electric_meter: "\uec1b" + readonly property string electric_moped: "\ueb1d" + readonly property string electric_rickshaw: "\ueb1e" + readonly property string electric_scooter: "\ueb1f" + readonly property string electrical_services: "\uf102" + readonly property string elevator: "\uf1a0" readonly property string email: "\ue0be" + readonly property string emergency: "\ue1eb" + readonly property string emergency_recording: "\uebf4" + readonly property string emergency_share: "\uebf6" + readonly property string emoji_emotions: "\uea22" + readonly property string emoji_events: "\uea23" + readonly property string emoji_flags: "\uea1a" + readonly property string emoji_food_beverage: "\uea1b" + readonly property string emoji_nature: "\uea1c" + readonly property string emoji_objects: "\uea24" + readonly property string emoji_people: "\uea1d" + readonly property string emoji_symbols: "\uea1e" + readonly property string emoji_transportation: "\uea1f" + readonly property string energy_savings_leaf: "\uec1a" + readonly property string engineering: "\uea3d" + readonly property string enhance_photo_translate: "\ue8fc" readonly property string enhanced_encryption: "\ue63f" readonly property string equalizer: "\ue01d" readonly property string error: "\ue000" readonly property string error_outline: "\ue001" + readonly property string escalator: "\uf1a1" + readonly property string escalator_warning: "\uf1ac" + readonly property string euro: "\uea15" readonly property string euro_symbol: "\ue926" readonly property string ev_station: "\ue56d" readonly property string event: "\ue878" readonly property string event_available: "\ue614" readonly property string event_busy: "\ue615" readonly property string event_note: "\ue616" + readonly property string event_repeat: "\ueb7b" readonly property string event_seat: "\ue903" readonly property string exit_to_app: "\ue879" readonly property string expand: "\ue94f" + readonly property string expand_circle_down: "\ue7cd" readonly property string expand_less: "\ue5ce" readonly property string expand_more: "\ue5cf" readonly property string explicit: "\ue01e" readonly property string explore: "\ue87a" + readonly property string explore_off: "\ue9a8" readonly property string exposure: "\ue3ca" + readonly property string exposure_minus_1: "\ue3cb" + readonly property string exposure_minus_2: "\ue3cc" readonly property string exposure_neg_1: "\ue3cb" readonly property string exposure_neg_2: "\ue3cc" readonly property string exposure_plus_1: "\ue3cd" readonly property string exposure_plus_2: "\ue3ce" readonly property string exposure_zero: "\ue3cf" readonly property string extension: "\ue87b" + readonly property string extension_off: "\ue4f5" readonly property string face: "\ue87c" + readonly property string face_2: "\uf8da" + readonly property string face_3: "\uf8db" + readonly property string face_4: "\uf8dc" + readonly property string face_5: "\uf8dd" + readonly property string face_6: "\uf8de" + readonly property string face_retouching_natural: "\uef4e" + readonly property string face_retouching_off: "\uf007" + readonly property string facebook: "\uf234" + readonly property string fact_check: "\uf0c5" + readonly property string factory: "\uebbc" + readonly property string family_restroom: "\uf1a2" readonly property string fast_forward: "\ue01f" readonly property string fast_rewind: "\ue020" readonly property string fastfood: "\ue57a" readonly property string favorite: "\ue87d" readonly property string favorite_border: "\ue87e" + readonly property string favorite_outline: "\ue87e" + readonly property string fax: "\uead8" readonly property string featured_play_list: "\ue06d" readonly property string featured_video: "\ue06e" + readonly property string feed: "\uf009" readonly property string feedback: "\ue87f" + readonly property string female: "\ue590" + readonly property string fence: "\uf1f6" + readonly property string festival: "\uea68" readonly property string fiber_dvr: "\ue05d" readonly property string fiber_manual_record: "\ue061" readonly property string fiber_new: "\ue05e" @@ -342,7 +763,12 @@ QtObject { readonly property string fiber_smart_record: "\ue062" readonly property string file_copy: "\ue173" readonly property string file_download: "\ue2c4" + readonly property string file_download_done: "\ue9aa" + readonly property string file_download_off: "\ue4fe" + readonly property string file_open: "\ueaf3" + readonly property string file_present: "\uea0e" readonly property string file_upload: "\ue2c6" + readonly property string file_upload_off: "\uf886" readonly property string filter: "\ue3d3" readonly property string filter_1: "\ue3d0" readonly property string filter_2: "\ue3d1" @@ -354,36 +780,74 @@ QtObject { readonly property string filter_8: "\ue3d8" readonly property string filter_9: "\ue3d9" readonly property string filter_9_plus: "\ue3da" + readonly property string filter_alt: "\uef4f" + readonly property string filter_alt_off: "\ueb32" readonly property string filter_b_and_w: "\ue3db" readonly property string filter_center_focus: "\ue3dc" readonly property string filter_drama: "\ue3dd" readonly property string filter_frames: "\ue3de" readonly property string filter_hdr: "\ue3df" readonly property string filter_list: "\ue152" + readonly property string filter_list_alt: "\ue94e" + readonly property string filter_list_off: "\ueb57" readonly property string filter_none: "\ue3e0" readonly property string filter_tilt_shift: "\ue3e2" readonly property string filter_vintage: "\ue3e3" readonly property string find_in_page: "\ue880" readonly property string find_replace: "\ue881" readonly property string fingerprint: "\ue90d" + readonly property string fire_extinguisher: "\uf1d8" + readonly property string fire_hydrant: "\uf1a3" + readonly property string fire_hydrant_alt: "\uf8f1" + readonly property string fire_truck: "\uf8f2" + readonly property string fireplace: "\uea43" readonly property string first_page: "\ue5dc" + readonly property string fit_screen: "\uea10" + readonly property string fitbit: "\ue82b" readonly property string fitness_center: "\ueb43" readonly property string flag: "\ue153" + readonly property string flag_circle: "\ueaf8" + readonly property string flaky: "\uef50" readonly property string flare: "\ue3e4" readonly property string flash_auto: "\ue3e5" readonly property string flash_off: "\ue3e6" readonly property string flash_on: "\ue3e7" + readonly property string flashlight_off: "\uf00a" + readonly property string flashlight_on: "\uf00b" + readonly property string flatware: "\uf00c" readonly property string flight: "\ue539" + readonly property string flight_class: "\ue7cb" readonly property string flight_land: "\ue904" readonly property string flight_takeoff: "\ue905" readonly property string flip: "\ue3e8" + readonly property string flip_camera_android: "\uea37" + readonly property string flip_camera_ios: "\uea38" readonly property string flip_to_back: "\ue882" readonly property string flip_to_front: "\ue883" + readonly property string flood: "\uebe6" + readonly property string flourescent: "\uec31" + readonly property string flourescent2: "\uf00d" + readonly property string fluorescent: "\uec31" + readonly property string flutter_dash: "\ue00b" + readonly property string fmd_bad: "\uf00e" + readonly property string fmd_good: "\uf00f" + readonly property string foggy: "\ue818" readonly property string folder: "\ue2c7" + readonly property string folder_copy: "\uebbd" + readonly property string folder_delete: "\ueb34" + readonly property string folder_off: "\ueb83" readonly property string folder_open: "\ue2c8" readonly property string folder_shared: "\ue2c9" readonly property string folder_special: "\ue617" + readonly property string folder_zip: "\ueb2c" + readonly property string follow_the_signs: "\uf222" readonly property string font_download: "\ue167" + readonly property string font_download_off: "\ue4f9" + readonly property string food_bank: "\uf1f2" + readonly property string forest: "\uea99" + readonly property string fork_left: "\ueba0" + readonly property string fork_right: "\uebac" + readonly property string forklift: "\uf868" readonly property string format_align_center: "\ue234" readonly property string format_align_justify: "\ue235" readonly property string format_align_left: "\ue236" @@ -398,8 +862,10 @@ QtObject { readonly property string format_italic: "\ue23f" readonly property string format_line_spacing: "\ue240" readonly property string format_list_bulleted: "\ue241" + readonly property string format_list_bulleted_add: "\uf849" readonly property string format_list_numbered: "\ue242" readonly property string format_list_numbered_rtl: "\ue267" + readonly property string format_overline: "\ueb65" readonly property string format_paint: "\ue243" readonly property string format_quote: "\ue244" readonly property string format_shapes: "\ue25e" @@ -407,69 +873,153 @@ QtObject { readonly property string format_strikethrough: "\ue246" readonly property string format_textdirection_l_to_r: "\ue247" readonly property string format_textdirection_r_to_l: "\ue248" + readonly property string format_underline: "\ue249" readonly property string format_underlined: "\ue249" + readonly property string fort: "\ueaad" readonly property string forum: "\ue0bf" readonly property string forward: "\ue154" readonly property string forward_10: "\ue056" readonly property string forward_30: "\ue057" readonly property string forward_5: "\ue058" + readonly property string forward_to_inbox: "\uf187" + readonly property string foundation: "\uf200" readonly property string free_breakfast: "\ueb44" + readonly property string free_cancellation: "\ue748" + readonly property string front_hand: "\ue769" + readonly property string front_loader: "\uf869" readonly property string fullscreen: "\ue5d0" readonly property string fullscreen_exit: "\ue5d1" readonly property string functions: "\ue24a" + readonly property string g_mobiledata: "\uf010" readonly property string g_translate: "\ue927" readonly property string gamepad: "\ue30f" readonly property string games: "\ue021" + readonly property string garage: "\uf011" + readonly property string gas_meter: "\uec19" readonly property string gavel: "\ue90e" + readonly property string generating_tokens: "\ue749" readonly property string gesture: "\ue155" readonly property string get_app: "\ue884" readonly property string gif: "\ue908" + readonly property string gif_box: "\ue7a3" + readonly property string girl: "\ueb68" + readonly property string gite: "\ue58b" + readonly property string goat: "\u10fffd" readonly property string golf_course: "\ueb45" + readonly property string gpp_bad: "\uf012" + readonly property string gpp_good: "\uf013" + readonly property string gpp_maybe: "\uf014" readonly property string gps_fixed: "\ue1b3" readonly property string gps_not_fixed: "\ue1b4" readonly property string gps_off: "\ue1b5" readonly property string grade: "\ue885" readonly property string gradient: "\ue3e9" + readonly property string grading: "\uea4f" readonly property string grain: "\ue3ea" readonly property string graphic_eq: "\ue1b8" + readonly property string grass: "\uf205" + readonly property string grid_3x3: "\uf015" + readonly property string grid_4x4: "\uf016" + readonly property string grid_goldenratio: "\uf017" readonly property string grid_off: "\ue3eb" readonly property string grid_on: "\ue3ec" + readonly property string grid_view: "\ue9b0" readonly property string group: "\ue7ef" readonly property string group_add: "\ue7f0" + readonly property string group_off: "\ue747" + readonly property string group_remove: "\ue7ad" readonly property string group_work: "\ue886" + readonly property string groups: "\uf233" + readonly property string groups_2: "\uf8df" + readonly property string groups_3: "\uf8e0" + readonly property string h_mobiledata: "\uf018" + readonly property string h_plus_mobiledata: "\uf019" + readonly property string hail: "\ue9b1" + readonly property string handshake: "\uebcb" + readonly property string handyman: "\uf10b" + readonly property string hardware: "\uea59" readonly property string hd: "\ue052" + readonly property string hdr_auto: "\uf01a" + readonly property string hdr_auto_select: "\uf01b" + readonly property string hdr_enhanced_select: "\uef51" readonly property string hdr_off: "\ue3ed" + readonly property string hdr_off_select: "\uf01c" readonly property string hdr_on: "\ue3ee" + readonly property string hdr_on_select: "\uf01d" + readonly property string hdr_plus: "\uf01e" readonly property string hdr_strong: "\ue3f1" readonly property string hdr_weak: "\ue3f2" + readonly property string headphones: "\uf01f" + readonly property string headphones_battery: "\uf020" readonly property string headset: "\ue310" readonly property string headset_mic: "\ue311" readonly property string headset_off: "\ue33a" readonly property string healing: "\ue3f3" + readonly property string health_and_safety: "\ue1d5" readonly property string hearing: "\ue023" + readonly property string hearing_disabled: "\uf104" + readonly property string heart_broken: "\ueac2" + readonly property string heat_pump: "\uec18" + readonly property string height: "\uea16" readonly property string help: "\ue887" + readonly property string help_center: "\uf1c0" readonly property string help_outline: "\ue8fd" + readonly property string hevc: "\uf021" + readonly property string hexagon: "\ueb39" + readonly property string hide_image: "\uf022" + readonly property string hide_source: "\uf023" readonly property string high_quality: "\ue024" readonly property string highlight: "\ue25f" + readonly property string highlight_alt: "\uef52" readonly property string highlight_off: "\ue888" + readonly property string highlight_remove: "\ue888" + readonly property string hiking: "\ue50a" readonly property string history: "\ue889" + readonly property string history_edu: "\uea3e" + readonly property string history_toggle_off: "\uf17d" + readonly property string hive: "\ueaa6" + readonly property string hls: "\ueb8a" + readonly property string hls_off: "\ueb8c" + readonly property string holiday_village: "\ue58a" readonly property string home: "\ue88a" + readonly property string home_filled: "\ue9b2" + readonly property string home_max: "\uf024" + readonly property string home_mini: "\uf025" + readonly property string home_repair_service: "\uf100" + readonly property string home_work: "\uea09" + readonly property string horizontal_distribute: "\ue014" + readonly property string horizontal_rule: "\uf108" readonly property string horizontal_split: "\ue947" readonly property string hot_tub: "\ueb46" readonly property string hotel: "\ue53a" + readonly property string hotel_class: "\ue743" + readonly property string hourglass_bottom: "\uea5c" + readonly property string hourglass_disabled: "\uef53" readonly property string hourglass_empty: "\ue88b" readonly property string hourglass_full: "\ue88c" + readonly property string hourglass_top: "\uea5b" + readonly property string house: "\uea44" + readonly property string house_siding: "\uf202" + readonly property string houseboat: "\ue584" readonly property string how_to_reg: "\ue174" readonly property string how_to_vote: "\ue175" + readonly property string html: "\ueb7e" readonly property string http: "\ue902" readonly property string https: "\ue88d" + readonly property string hub: "\ue9f4" + readonly property string hvac: "\uf10e" + readonly property string ice_skating: "\ue50b" + readonly property string icecream: "\uea69" readonly property string image: "\ue3f4" readonly property string image_aspect_ratio: "\ue3f5" + readonly property string image_not_supported: "\uf116" readonly property string image_search: "\ue43f" + readonly property string imagesearch_roller: "\ue9b4" readonly property string import_contacts: "\ue0e0" readonly property string import_export: "\ue0c3" readonly property string important_devices: "\ue912" readonly property string inbox: "\ue156" + readonly property string incomplete_circle: "\ue79b" readonly property string indeterminate_check_box: "\ue909" readonly property string info: "\ue88e" readonly property string info_outline: "\ue88f" @@ -481,27 +1031,64 @@ QtObject { readonly property string insert_emoticon: "\ue24e" readonly property string insert_invitation: "\ue24f" readonly property string insert_link: "\ue250" + readonly property string insert_page_break: "\ueaca" readonly property string insert_photo: "\ue251" + readonly property string insights: "\uf092" + readonly property string install_desktop: "\ueb71" + readonly property string install_mobile: "\ueb72" + readonly property string integration_instructions: "\uef54" + readonly property string interests: "\ue7c8" + readonly property string interpreter_mode: "\ue83b" + readonly property string inventory: "\ue179" + readonly property string inventory_2: "\ue1a1" readonly property string invert_colors: "\ue891" readonly property string invert_colors_off: "\ue0c4" + readonly property string invert_colors_on: "\ue891" + readonly property string ios_share: "\ue6b8" + readonly property string iron: "\ue583" readonly property string iso: "\ue3f6" + readonly property string javascript: "\ueb7c" + readonly property string join_full: "\ueaeb" + readonly property string join_inner: "\ueaf4" + readonly property string join_left: "\ueaf2" + readonly property string join_right: "\ueaea" + readonly property string kayaking: "\ue50c" + readonly property string kebab_dining: "\ue842" + readonly property string key: "\ue73c" + readonly property string key_off: "\ueb84" readonly property string keyboard: "\ue312" + readonly property string keyboard_alt: "\uf028" readonly property string keyboard_arrow_down: "\ue313" readonly property string keyboard_arrow_left: "\ue314" readonly property string keyboard_arrow_right: "\ue315" readonly property string keyboard_arrow_up: "\ue316" readonly property string keyboard_backspace: "\ue317" readonly property string keyboard_capslock: "\ue318" + readonly property string keyboard_command: "\ueae0" + readonly property string keyboard_command_key: "\ueae7" + readonly property string keyboard_control: "\ue5d3" + readonly property string keyboard_control_key: "\ueae6" + readonly property string keyboard_double_arrow_down: "\uead0" + readonly property string keyboard_double_arrow_left: "\ueac3" + readonly property string keyboard_double_arrow_right: "\ueac9" + readonly property string keyboard_double_arrow_up: "\ueacf" readonly property string keyboard_hide: "\ue31a" + readonly property string keyboard_option: "\ueadf" + readonly property string keyboard_option_key: "\ueae8" readonly property string keyboard_return: "\ue31b" readonly property string keyboard_tab: "\ue31c" readonly property string keyboard_voice: "\ue31d" + readonly property string king_bed: "\uea45" readonly property string kitchen: "\ueb47" + readonly property string kitesurfing: "\ue50d" readonly property string label: "\ue892" readonly property string label_important: "\ue937" readonly property string label_important_outline: "\ue948" + readonly property string label_off: "\ue9b6" readonly property string label_outline: "\ue893" + readonly property string lan: "\ueb2f" readonly property string landscape: "\ue3f7" + readonly property string landslide: "\uebd7" readonly property string language: "\ue894" readonly property string laptop: "\ue31e" readonly property string laptop_chromebook: "\ue31f" @@ -511,33 +1098,46 @@ QtObject { readonly property string launch: "\ue895" readonly property string layers: "\ue53b" readonly property string layers_clear: "\ue53c" + readonly property string leaderboard: "\uf20c" readonly property string leak_add: "\ue3f8" readonly property string leak_remove: "\ue3f9" + readonly property string leave_bags_at_home: "\uf21b" + readonly property string legend_toggle: "\uf11b" readonly property string lens: "\ue3fa" + readonly property string lens_blur: "\uf029" readonly property string library_add: "\ue02e" + readonly property string library_add_check: "\ue9b7" readonly property string library_books: "\ue02f" readonly property string library_music: "\ue030" + readonly property string light: "\uf02a" + readonly property string light_mode: "\ue518" readonly property string lightbulb: "\ue0f0" + readonly property string lightbulb_circle: "\uebfe" readonly property string lightbulb_outline: "\ue90f" + readonly property string line_axis: "\uea9a" readonly property string line_style: "\ue919" readonly property string line_weight: "\ue91a" readonly property string linear_scale: "\ue260" readonly property string link: "\ue157" readonly property string link_off: "\ue16f" readonly property string linked_camera: "\ue438" + readonly property string liquor: "\uea60" readonly property string list: "\ue896" readonly property string list_alt: "\ue0ee" readonly property string live_help: "\ue0c6" readonly property string live_tv: "\ue639" + readonly property string living: "\uf02b" readonly property string local_activity: "\ue53f" readonly property string local_airport: "\ue53d" readonly property string local_atm: "\ue53e" + readonly property string local_attraction: "\ue53f" readonly property string local_bar: "\ue540" readonly property string local_cafe: "\ue541" readonly property string local_car_wash: "\ue542" readonly property string local_convenience_store: "\ue543" readonly property string local_dining: "\ue556" readonly property string local_drink: "\ue544" + readonly property string local_fire_department: "\uef55" readonly property string local_florist: "\ue545" readonly property string local_gas_station: "\ue546" readonly property string local_grocery_store: "\ue547" @@ -553,19 +1153,30 @@ QtObject { readonly property string local_phone: "\ue551" readonly property string local_pizza: "\ue552" readonly property string local_play: "\ue553" + readonly property string local_police: "\uef56" readonly property string local_post_office: "\ue554" + readonly property string local_print_shop: "\ue555" readonly property string local_printshop: "\ue555" + readonly property string local_restaurant: "\ue556" readonly property string local_see: "\ue557" readonly property string local_shipping: "\ue558" readonly property string local_taxi: "\ue559" readonly property string location_city: "\ue7f1" readonly property string location_disabled: "\ue1b6" + readonly property string location_history: "\ue55a" readonly property string location_off: "\ue0c7" readonly property string location_on: "\ue0c8" + readonly property string location_pin: "\uf1db" readonly property string location_searching: "\ue1b7" readonly property string lock: "\ue897" + readonly property string lock_clock: "\uef57" readonly property string lock_open: "\ue898" readonly property string lock_outline: "\ue899" + readonly property string lock_person: "\uf8f3" + readonly property string lock_reset: "\ueade" + readonly property string login: "\uea77" + readonly property string logo_dev: "\uead6" + readonly property string logout: "\ue9ba" readonly property string looks: "\ue3fc" readonly property string looks_3: "\ue3fb" readonly property string looks_4: "\ue3fd" @@ -577,121 +1188,294 @@ QtObject { readonly property string loupe: "\ue402" readonly property string low_priority: "\ue16d" readonly property string loyalty: "\ue89a" + readonly property string lte_mobiledata: "\uf02c" + readonly property string lte_plus_mobiledata: "\uf02d" + readonly property string luggage: "\uf235" + readonly property string lunch_dining: "\uea61" + readonly property string lyrics: "\uec0b" + readonly property string macro_off: "\uf8d2" readonly property string mail: "\ue158" + readonly property string mail_lock: "\uec0a" readonly property string mail_outline: "\ue0e1" + readonly property string male: "\ue58e" + readonly property string man: "\ue4eb" + readonly property string man_2: "\uf8e1" + readonly property string man_3: "\uf8e2" + readonly property string man_4: "\uf8e3" + readonly property string manage_accounts: "\uf02e" + readonly property string manage_history: "\uebe7" + readonly property string manage_search: "\uf02f" readonly property string map: "\ue55b" + readonly property string maps_home_work: "\uf030" + readonly property string maps_ugc: "\uef58" + readonly property string margin: "\ue9bb" + readonly property string mark_as_unread: "\ue9bc" + readonly property string mark_chat_read: "\uf18b" + readonly property string mark_chat_unread: "\uf189" + readonly property string mark_email_read: "\uf18c" + readonly property string mark_email_unread: "\uf18a" + readonly property string mark_unread_chat_alt: "\ueb9d" readonly property string markunread: "\ue159" readonly property string markunread_mailbox: "\ue89b" + readonly property string masks: "\uf218" readonly property string maximize: "\ue930" + readonly property string media_bluetooth_off: "\uf031" + readonly property string media_bluetooth_on: "\uf032" + readonly property string mediation: "\uefa7" + readonly property string medical_information: "\uebed" + readonly property string medical_services: "\uf109" + readonly property string medication: "\uf033" + readonly property string medication_liquid: "\uea87" readonly property string meeting_room: "\ueb4f" readonly property string memory: "\ue322" readonly property string menu: "\ue5d2" + readonly property string menu_book: "\uea19" + readonly property string menu_open: "\ue9bd" + readonly property string merge: "\ueb98" readonly property string merge_type: "\ue252" readonly property string message: "\ue0c9" + readonly property string messenger: "\ue0ca" + readonly property string messenger_outline: "\ue0cb" readonly property string mic: "\ue029" + readonly property string mic_external_off: "\uef59" + readonly property string mic_external_on: "\uef5a" readonly property string mic_none: "\ue02a" readonly property string mic_off: "\ue02b" + readonly property string microwave: "\uf204" + readonly property string military_tech: "\uea3f" readonly property string minimize: "\ue931" + readonly property string minor_crash: "\uebf1" + readonly property string miscellaneous_services: "\uf10c" readonly property string missed_video_call: "\ue073" readonly property string mms: "\ue618" readonly property string mobile_friendly: "\ue200" readonly property string mobile_off: "\ue201" readonly property string mobile_screen_share: "\ue0e7" + readonly property string mobiledata_off: "\uf034" + readonly property string mode: "\uf097" readonly property string mode_comment: "\ue253" readonly property string mode_edit: "\ue254" + readonly property string mode_edit_outline: "\uf035" + readonly property string mode_fan_off: "\uec17" + readonly property string mode_night: "\uf036" + readonly property string mode_of_travel: "\ue7ce" + readonly property string mode_standby: "\uf037" + readonly property string model_training: "\uf0cf" readonly property string monetization_on: "\ue263" readonly property string money: "\ue57d" readonly property string money_off: "\ue25c" + readonly property string money_off_csred: "\uf038" + readonly property string monitor: "\uef5b" + readonly property string monitor_heart: "\ueaa2" + readonly property string monitor_weight: "\uf039" readonly property string monochrome_photos: "\ue403" readonly property string mood: "\ue7f2" readonly property string mood_bad: "\ue7f3" + readonly property string moped: "\ueb28" readonly property string more: "\ue619" readonly property string more_horiz: "\ue5d3" + readonly property string more_time: "\uea5d" readonly property string more_vert: "\ue5d4" + readonly property string mosque: "\ueab2" + readonly property string motion_photos_auto: "\uf03a" + readonly property string motion_photos_off: "\ue9c0" + readonly property string motion_photos_on: "\ue9c1" + readonly property string motion_photos_pause: "\uf227" + readonly property string motion_photos_paused: "\ue9c2" readonly property string motorcycle: "\ue91b" readonly property string mouse: "\ue323" + readonly property string move_down: "\ueb61" readonly property string move_to_inbox: "\ue168" + readonly property string move_up: "\ueb64" readonly property string movie: "\ue02c" readonly property string movie_creation: "\ue404" + readonly property string movie_edit: "\uf840" readonly property string movie_filter: "\ue43a" + readonly property string moving: "\ue501" + readonly property string mp: "\ue9c3" readonly property string multiline_chart: "\ue6df" + readonly property string multiple_stop: "\uf1b9" + readonly property string multitrack_audio: "\ue1b8" + readonly property string museum: "\uea36" readonly property string music_note: "\ue405" readonly property string music_off: "\ue440" readonly property string music_video: "\ue063" + readonly property string my_library_add: "\ue02e" + readonly property string my_library_books: "\ue02f" + readonly property string my_library_music: "\ue030" readonly property string my_location: "\ue55c" + readonly property string nat: "\uef5c" readonly property string nature: "\ue406" readonly property string nature_people: "\ue407" readonly property string navigate_before: "\ue408" readonly property string navigate_next: "\ue409" readonly property string navigation: "\ue55d" readonly property string near_me: "\ue569" + readonly property string near_me_disabled: "\uf1ef" + readonly property string nearby_error: "\uf03b" + readonly property string nearby_off: "\uf03c" + readonly property string nest_cam_wired_stand: "\uec16" readonly property string network_cell: "\ue1b9" readonly property string network_check: "\ue640" readonly property string network_locked: "\ue61a" + readonly property string network_ping: "\uebca" readonly property string network_wifi: "\ue1ba" + readonly property string network_wifi_1_bar: "\uebe4" + readonly property string network_wifi_2_bar: "\uebd6" + readonly property string network_wifi_3_bar: "\uebe1" + readonly property string new_label: "\ue609" readonly property string new_releases: "\ue031" + readonly property string newspaper: "\ueb81" + readonly property string next_plan: "\uef5d" readonly property string next_week: "\ue16a" readonly property string nfc: "\ue1bb" + readonly property string night_shelter: "\uf1f1" + readonly property string nightlife: "\uea62" + readonly property string nightlight: "\uf03d" + readonly property string nightlight_round: "\uef5e" + readonly property string nights_stay: "\uea46" + readonly property string no_accounts: "\uf03e" + readonly property string no_adult_content: "\uf8fe" + readonly property string no_backpack: "\uf237" + readonly property string no_cell: "\uf1a4" + readonly property string no_crash: "\uebf0" + readonly property string no_drinks: "\uf1a5" readonly property string no_encryption: "\ue641" + readonly property string no_encryption_gmailerrorred: "\uf03f" + readonly property string no_flash: "\uf1a6" + readonly property string no_food: "\uf1a7" + readonly property string no_luggage: "\uf23b" + readonly property string no_meals: "\uf1d6" + readonly property string no_meals_ouline: "\uf229" readonly property string no_meeting_room: "\ueb4e" + readonly property string no_photography: "\uf1a8" readonly property string no_sim: "\ue0cc" + readonly property string no_stroller: "\uf1af" + readonly property string no_transfer: "\uf1d5" + readonly property string noise_aware: "\uebec" + readonly property string noise_control_off: "\uebf3" + readonly property string nordic_walking: "\ue50e" + readonly property string north: "\uf1e0" + readonly property string north_east: "\uf1e1" + readonly property string north_west: "\uf1e2" + readonly property string not_accessible: "\uf0fe" readonly property string not_interested: "\ue033" readonly property string not_listed_location: "\ue575" + readonly property string not_started: "\uf0d1" readonly property string note: "\ue06f" readonly property string note_add: "\ue89c" + readonly property string note_alt: "\uf040" readonly property string notes: "\ue26c" + readonly property string notification_add: "\ue399" readonly property string notification_important: "\ue004" readonly property string notifications: "\ue7f4" readonly property string notifications_active: "\ue7f7" readonly property string notifications_none: "\ue7f5" readonly property string notifications_off: "\ue7f6" + readonly property string notifications_on: "\ue7f7" readonly property string notifications_paused: "\ue7f8" + readonly property string now_wallpaper: "\ue1bc" + readonly property string now_widgets: "\ue1bd" + readonly property string numbers: "\ueac7" readonly property string offline_bolt: "\ue932" readonly property string offline_pin: "\ue90a" + readonly property string offline_share: "\ue9c5" + readonly property string oil_barrel: "\uec15" + readonly property string on_device_training: "\uebfd" readonly property string ondemand_video: "\ue63a" - readonly property string opacity: "\ue91c" + readonly property string online_prediction: "\uf0eb" + readonly property string opacity_: "\ue91c" readonly property string open_in_browser: "\ue89d" + readonly property string open_in_full: "\uf1ce" readonly property string open_in_new: "\ue89e" + readonly property string open_in_new_off: "\ue4f6" readonly property string open_with: "\ue89f" + readonly property string other_houses: "\ue58c" + readonly property string outbond: "\uf228" + readonly property string outbound: "\ue1ca" + readonly property string outbox: "\uef5f" + readonly property string outdoor_grill: "\uea47" + readonly property string outgoing_mail: "\uf0d2" + readonly property string outlet: "\uf1d4" readonly property string outlined_flag: "\ue16e" + readonly property string output: "\uebbe" + readonly property string padding: "\ue9c8" readonly property string pages: "\ue7f9" readonly property string pageview: "\ue8a0" + readonly property string paid: "\uf041" readonly property string palette: "\ue40a" + readonly property string pallet: "\uf86a" readonly property string pan_tool: "\ue925" + readonly property string pan_tool_alt: "\uebb9" readonly property string panorama: "\ue40b" readonly property string panorama_fish_eye: "\ue40c" + readonly property string panorama_fisheye: "\ue40c" readonly property string panorama_horizontal: "\ue40d" + readonly property string panorama_horizontal_select: "\uef60" + readonly property string panorama_photosphere: "\ue9c9" + readonly property string panorama_photosphere_select: "\ue9ca" readonly property string panorama_vertical: "\ue40e" - readonly property string panorama_sphere: "\ue9c9" - readonly property string panorama_sphere_filled: "\ue9ca" + readonly property string panorama_vertical_select: "\uef61" readonly property string panorama_wide_angle: "\ue40f" + readonly property string panorama_wide_angle_select: "\uef62" + readonly property string paragliding: "\ue50f" + readonly property string park: "\uea63" readonly property string party_mode: "\ue7fa" + readonly property string pwd: "\uf042" + readonly property string pattern: "\uf043" readonly property string pause: "\ue034" + readonly property string pause_circle: "\ue1a2" readonly property string pause_circle_filled: "\ue035" readonly property string pause_circle_outline: "\ue036" readonly property string pause_presentation: "\ue0ea" readonly property string payment: "\ue8a1" + readonly property string payments: "\uef63" + readonly property string paypal: "\uea8d" + readonly property string pedal_bike: "\ueb29" + readonly property string pending: "\uef64" + readonly property string pending_actions: "\uf1bb" + readonly property string pentagon: "\ueb50" readonly property string people: "\ue7fb" + readonly property string people_alt: "\uea21" readonly property string people_outline: "\ue7fc" + readonly property string percent: "\ueb58" readonly property string perm_camera_mic: "\ue8a2" + readonly property string perm_contact_cal: "\ue8a3" readonly property string perm_contact_calendar: "\ue8a3" readonly property string perm_data_setting: "\ue8a4" + readonly property string perm_device_info: "\ue8a5" readonly property string perm_device_information: "\ue8a5" readonly property string perm_identity: "\ue8a6" readonly property string perm_media: "\ue8a7" readonly property string perm_phone_msg: "\ue8a8" readonly property string perm_scan_wifi: "\ue8a9" readonly property string person: "\ue7fd" + readonly property string person_2: "\uf8e4" + readonly property string person_3: "\uf8e5" + readonly property string person_4: "\uf8e6" readonly property string person_add: "\ue7fe" + readonly property string person_add_alt: "\uea4d" + readonly property string person_add_alt_1: "\uef65" + readonly property string person_add_disabled: "\ue9cb" + readonly property string person_off: "\ue510" readonly property string person_outline: "\ue7ff" readonly property string person_pin: "\ue55a" readonly property string person_pin_circle: "\ue56a" + readonly property string person_remove: "\uef66" + readonly property string person_remove_alt_1: "\uef67" + readonly property string person_search: "\uf106" + readonly property string personal_injury: "\ue6da" readonly property string personal_video: "\ue63b" + readonly property string pest_control: "\uf0fa" + readonly property string pest_control_rodent: "\uf0fd" readonly property string pets: "\ue91d" + readonly property string phishing: "\uead7" readonly property string phone: "\ue0cd" readonly property string phone_android: "\ue324" readonly property string phone_bluetooth_speaker: "\ue61b" readonly property string phone_callback: "\ue649" + readonly property string phone_disabled: "\ue9cc" + readonly property string phone_enabled: "\ue9cd" readonly property string phone_forwarded: "\ue61c" readonly property string phone_in_talk: "\ue61d" readonly property string phone_iphone: "\ue325" @@ -707,122 +1491,262 @@ QtObject { readonly property string photo: "\ue410" readonly property string photo_album: "\ue411" readonly property string photo_camera: "\ue412" + readonly property string photo_camera_back: "\uef68" + readonly property string photo_camera_front: "\uef69" readonly property string photo_filter: "\ue43b" readonly property string photo_library: "\ue413" readonly property string photo_size_select_actual: "\ue432" readonly property string photo_size_select_large: "\ue433" readonly property string photo_size_select_small: "\ue434" + readonly property string php: "\ueb8f" + readonly property string piano: "\ue521" + readonly property string piano_off: "\ue520" readonly property string picture_as_pdf: "\ue415" readonly property string picture_in_picture: "\ue8aa" readonly property string picture_in_picture_alt: "\ue911" readonly property string pie_chart: "\ue6c4" + readonly property string pie_chart_outline: "\uf044" readonly property string pie_chart_outlined: "\ue6c5" + readonly property string pin: "\uf045" readonly property string pin_drop: "\ue55e" + readonly property string pin_end: "\ue767" + readonly property string pin_invoke: "\ue763" + readonly property string pinch: "\ueb38" + readonly property string pivot_table_chart: "\ue9ce" + readonly property string pix: "\ueaa3" readonly property string place: "\ue55f" + readonly property string plagiarism: "\uea5a" readonly property string play_arrow: "\ue037" + readonly property string play_circle: "\ue1c4" + readonly property string play_circle_fill: "\ue038" readonly property string play_circle_filled: "\ue038" readonly property string play_circle_outline: "\ue039" + readonly property string play_disabled: "\uef6a" readonly property string play_for_work: "\ue906" + readonly property string play_lesson: "\uf047" readonly property string playlist_add: "\ue03b" readonly property string playlist_add_check: "\ue065" + readonly property string playlist_add_check_circle: "\ue7e6" + readonly property string playlist_add_circle: "\ue7e5" readonly property string playlist_play: "\ue05f" + readonly property string playlist_remove: "\ueb80" + readonly property string plumbing: "\uf107" readonly property string plus_one: "\ue800" + readonly property string podcasts: "\uf048" + readonly property string point_of_sale: "\uf17e" + readonly property string policy: "\uea17" readonly property string poll: "\ue801" + readonly property string polyline: "\uebbb" readonly property string polymer: "\ue8ab" readonly property string pool: "\ueb48" readonly property string portable_wifi_off: "\ue0ce" readonly property string portrait: "\ue416" + readonly property string post_add: "\uea20" readonly property string power: "\ue63c" readonly property string power_input: "\ue336" readonly property string power_off: "\ue646" readonly property string power_settings_new: "\ue8ac" + readonly property string precision_manufacturing: "\uf049" readonly property string pregnant_woman: "\ue91e" readonly property string present_to_all: "\ue0df" - readonly property string _print: "\ue8ad" + readonly property string preview: "\uf1c5" + readonly property string price_change: "\uf04a" + readonly property string price_check: "\uf04b" + readonly property string print_: "\ue8ad" + readonly property string print_disabled: "\ue9cf" readonly property string priority_high: "\ue645" - readonly property string _public: "\ue80b" + readonly property string privacy_tip: "\uf0dc" + readonly property string private_connectivity: "\ue744" + readonly property string production_quantity_limits: "\ue1d1" + readonly property string propane: "\uec14" + readonly property string propane_tank: "\uec13" + readonly property string psychology: "\uea4a" + readonly property string psychology_alt: "\uf8ea" + readonly property string public_: "\ue80b" + readonly property string public_off: "\uf1ca" readonly property string publish: "\ue255" readonly property string published_with_changes: "\uf232" + readonly property string punch_clock: "\ueaa8" + readonly property string push_pin: "\uf10d" + readonly property string qr_code: "\uef6b" + readonly property string qr_code_2: "\ue00a" + readonly property string qr_code_scanner: "\uf206" readonly property string query_builder: "\ue8ae" + readonly property string query_stats: "\ue4fc" readonly property string question_answer: "\ue8af" + readonly property string question_mark: "\ueb8b" readonly property string queue: "\ue03c" readonly property string queue_music: "\ue03d" readonly property string queue_play_next: "\ue066" + readonly property string quick_contacts_dialer: "\ue0cf" + readonly property string quick_contacts_mail: "\ue0d0" + readonly property string quickreply: "\uef6c" + readonly property string quiz: "\uf04c" + readonly property string quora: "\uea98" + readonly property string r_mobiledata: "\uf04d" + readonly property string radar: "\uf04e" readonly property string radio: "\ue03e" readonly property string radio_button_checked: "\ue837" + readonly property string radio_button_off: "\ue836" + readonly property string radio_button_on: "\ue837" readonly property string radio_button_unchecked: "\ue836" + readonly property string railway_alert: "\ue9d1" + readonly property string ramen_dining: "\uea64" + readonly property string ramp_left: "\ueb9c" + readonly property string ramp_right: "\ueb96" readonly property string rate_review: "\ue560" + readonly property string raw_off: "\uf04f" + readonly property string raw_on: "\uf050" + readonly property string read_more: "\uef6d" + readonly property string real_estate_agent: "\ue73a" + readonly property string rebase_edit: "\uf846" readonly property string receipt: "\ue8b0" + readonly property string receipt_long: "\uef6e" readonly property string recent_actors: "\ue03f" + readonly property string recommend: "\ue9d2" readonly property string record_voice_over: "\ue91f" + readonly property string rectangle: "\ueb54" + readonly property string recycling: "\ue760" + readonly property string reddit: "\ueaa0" readonly property string redeem: "\ue8b1" readonly property string redo: "\ue15a" + readonly property string reduce_capacity: "\uf21c" readonly property string refresh: "\ue5d5" + readonly property string remember_me: "\uf051" readonly property string remove: "\ue15b" readonly property string remove_circle: "\ue15c" readonly property string remove_circle_outline: "\ue15d" + readonly property string remove_done: "\ue9d3" readonly property string remove_from_queue: "\ue067" + readonly property string remove_moderator: "\ue9d4" readonly property string remove_red_eye: "\ue417" + readonly property string remove_road: "\uebfc" readonly property string remove_shopping_cart: "\ue928" readonly property string reorder: "\ue8fe" + readonly property string repartition: "\uf8e8" readonly property string repeat: "\ue040" + readonly property string repeat_on: "\ue9d6" readonly property string repeat_one: "\ue041" + readonly property string repeat_one_on: "\ue9d7" readonly property string replay: "\ue042" readonly property string replay_10: "\ue059" readonly property string replay_30: "\ue05a" readonly property string replay_5: "\ue05b" + readonly property string replay_circle_filled: "\ue9d8" readonly property string reply: "\ue15e" readonly property string reply_all: "\ue15f" readonly property string report: "\ue160" + readonly property string report_gmailerrorred: "\uf052" readonly property string report_off: "\ue170" readonly property string report_problem: "\ue8b2" + readonly property string request_page: "\uf22c" + readonly property string request_quote: "\uf1b6" + readonly property string reset_tv: "\ue9d9" + readonly property string restart_alt: "\uf053" readonly property string restaurant: "\ue56c" readonly property string restaurant_menu: "\ue561" readonly property string restore: "\ue8b3" readonly property string restore_from_trash: "\ue938" readonly property string restore_page: "\ue929" + readonly property string reviews: "\uf054" + readonly property string rice_bowl: "\uf1f5" readonly property string ring_volume: "\ue0d1" + readonly property string rocket: "\ueba5" + readonly property string rocket_launch: "\ueb9b" + readonly property string roller_shades: "\uec12" + readonly property string roller_shades_closed: "\uec11" + readonly property string roller_skating: "\uebcd" + readonly property string roofing: "\uf201" readonly property string room: "\ue8b4" + readonly property string room_preferences: "\uf1b8" readonly property string room_service: "\ueb49" readonly property string rotate_90_degrees_ccw: "\ue418" + readonly property string rotate_90_degrees_cw: "\ueaab" readonly property string rotate_left: "\ue419" readonly property string rotate_right: "\ue41a" + readonly property string roundabout_left: "\ueb99" + readonly property string roundabout_right: "\ueba3" readonly property string rounded_corner: "\ue920" + readonly property string route: "\ueacd" readonly property string router: "\ue328" readonly property string rowing: "\ue921" readonly property string rss_feed: "\ue0e5" + readonly property string rsvp: "\uf055" + readonly property string rtt: "\ue9ad" + readonly property string rule: "\uf1c2" + readonly property string rule_folder: "\uf1c9" + readonly property string run_circle: "\uef6f" + readonly property string running_with_errors: "\ue51d" readonly property string rv_hookup: "\ue642" + readonly property string safety_check: "\uebef" + readonly property string safety_divider: "\ue1cc" + readonly property string sailing: "\ue502" + readonly property string sanitizer: "\uf21d" readonly property string satellite: "\ue562" + readonly property string satellite_alt: "\ueb3a" readonly property string save: "\ue161" readonly property string save_alt: "\ue171" + readonly property string save_as: "\ueb60" + readonly property string saved_search: "\uea11" + readonly property string savings: "\ue2eb" + readonly property string scale: "\ueb5f" readonly property string scanner: "\ue329" readonly property string scatter_plot: "\ue268" readonly property string schedule: "\ue8b5" + readonly property string schedule_send: "\uea0a" + readonly property string schema: "\ue4fd" readonly property string school: "\ue80c" + readonly property string science: "\uea4b" readonly property string score: "\ue269" + readonly property string scoreboard: "\uebd0" readonly property string screen_lock_landscape: "\ue1be" readonly property string screen_lock_portrait: "\ue1bf" readonly property string screen_lock_rotation: "\ue1c0" readonly property string screen_rotation: "\ue1c1" + readonly property string screen_rotation_alt: "\uebee" + readonly property string screen_search_desktop: "\uef70" readonly property string screen_share: "\ue0e2" + readonly property string screenshot: "\uf056" + readonly property string screenshot_monitor: "\uec08" + readonly property string scuba_diving: "\uebce" + readonly property string sd: "\ue9dd" readonly property string sd_card: "\ue623" + readonly property string sd_card_alert: "\uf057" readonly property string sd_storage: "\ue1c2" readonly property string search: "\ue8b6" + readonly property string search_off: "\uea76" readonly property string security: "\ue32a" + readonly property string security_update: "\uf058" + readonly property string security_update_good: "\uf059" + readonly property string security_update_warning: "\uf05a" + readonly property string segment: "\ue94b" readonly property string select_all: "\ue162" + readonly property string self_improvement: "\uea78" + readonly property string sell: "\uf05b" readonly property string send: "\ue163" + readonly property string send_and_archive: "\uea0c" + readonly property string send_time_extension: "\ueadb" + readonly property string send_to_mobile: "\uf05c" + readonly property string sensor_door: "\uf1b5" + readonly property string sensor_occupied: "\uec10" + readonly property string sensor_window: "\uf1b4" + readonly property string sensors: "\ue51e" + readonly property string sensors_off: "\ue51f" readonly property string sentiment_dissatisfied: "\ue811" readonly property string sentiment_neutral: "\ue812" readonly property string sentiment_satisfied: "\ue813" readonly property string sentiment_satisfied_alt: "\ue0ed" readonly property string sentiment_very_dissatisfied: "\ue814" readonly property string sentiment_very_satisfied: "\ue815" + readonly property string set_meal: "\uf1ea" readonly property string settings: "\ue8b8" + readonly property string settings_accessibility: "\uf05d" readonly property string settings_applications: "\ue8b9" readonly property string settings_backup_restore: "\ue8ba" readonly property string settings_bluetooth: "\ue8bb" readonly property string settings_brightness: "\ue8bd" readonly property string settings_cell: "\ue8bc" + readonly property string settings_display: "\ue8bd" readonly property string settings_ethernet: "\ue8be" readonly property string settings_input_antenna: "\ue8bf" readonly property string settings_input_component: "\ue8c0" @@ -833,211 +1757,490 @@ QtObject { readonly property string settings_phone: "\ue8c5" readonly property string settings_power: "\ue8c6" readonly property string settings_remote: "\ue8c7" + readonly property string settings_suggest: "\uf05e" readonly property string settings_system_daydream: "\ue1c3" readonly property string settings_voice: "\ue8c8" + readonly property string severe_cold: "\uebd3" + readonly property string shape_line: "\uf8d3" readonly property string share: "\ue80d" + readonly property string share_arrival_time: "\ue524" + readonly property string share_location: "\uf05f" + readonly property string shelves: "\uf86e" + readonly property string shield: "\ue9e0" + readonly property string shield_moon: "\ueaa9" readonly property string shop: "\ue8c9" + readonly property string shop_2: "\ue19e" readonly property string shop_two: "\ue8ca" + readonly property string shopify: "\uea9d" + readonly property string shopping_bag: "\uf1cc" readonly property string shopping_basket: "\ue8cb" readonly property string shopping_cart: "\ue8cc" + readonly property string shopping_cart_checkout: "\ueb88" readonly property string short_text: "\ue261" + readonly property string shortcut: "\uf060" readonly property string show_chart: "\ue6e1" + readonly property string shower: "\uf061" readonly property string shuffle: "\ue043" + readonly property string shuffle_on: "\ue9e1" readonly property string shutter_speed: "\ue43d" + readonly property string sick: "\uf220" + readonly property string sign_language: "\uebe5" + readonly property string signal_cellular_0_bar: "\uf0a8" readonly property string signal_cellular_4_bar: "\ue1c8" readonly property string signal_cellular_alt: "\ue202" + readonly property string signal_cellular_alt_1_bar: "\uebdf" + readonly property string signal_cellular_alt_2_bar: "\uebe3" + readonly property string signal_cellular_connected_no_internet_0_bar: "\uf0ac" readonly property string signal_cellular_connected_no_internet_4_bar: "\ue1cd" readonly property string signal_cellular_no_sim: "\ue1ce" + readonly property string signal_cellular_nodata: "\uf062" readonly property string signal_cellular_null: "\ue1cf" readonly property string signal_cellular_off: "\ue1d0" + readonly property string signal_wifi_0_bar: "\uf0b0" readonly property string signal_wifi_4_bar: "\ue1d8" readonly property string signal_wifi_4_bar_lock: "\ue1d9" + readonly property string signal_wifi_bad: "\uf063" + readonly property string signal_wifi_connected_no_internet_4: "\uf064" readonly property string signal_wifi_off: "\ue1da" + readonly property string signal_wifi_statusbar_4_bar: "\uf065" + readonly property string signal_wifi_statusbar_connected_no_internet_4: "\uf066" + readonly property string signal_wifi_statusbar_null: "\uf067" + readonly property string signpost: "\ueb91" readonly property string sim_card: "\ue32b" readonly property string sim_card_alert: "\ue624" + readonly property string sim_card_download: "\uf068" + readonly property string single_bed: "\uea48" + readonly property string sip: "\uf069" + readonly property string skateboarding: "\ue511" readonly property string skip_next: "\ue044" readonly property string skip_previous: "\ue045" + readonly property string sledding: "\ue512" readonly property string slideshow: "\ue41b" readonly property string slow_motion_video: "\ue068" + readonly property string smart_button: "\uf1c1" + readonly property string smart_display: "\uf06a" + readonly property string smart_screen: "\uf06b" + readonly property string smart_toy: "\uf06c" readonly property string smartphone: "\ue32c" readonly property string smoke_free: "\ueb4a" readonly property string smoking_rooms: "\ueb4b" readonly property string sms: "\ue625" readonly property string sms_failed: "\ue626" + readonly property string snapchat: "\uea6e" + readonly property string snippet_folder: "\uf1c7" readonly property string snooze: "\ue046" + readonly property string snowboarding: "\ue513" + readonly property string snowing: "\ue80f" + readonly property string snowmobile: "\ue503" + readonly property string snowshoeing: "\ue514" + readonly property string soap: "\uf1b2" + readonly property string social_distance: "\ue1cb" + readonly property string solar_power: "\uec0f" readonly property string sort: "\ue164" readonly property string sort_by_alpha: "\ue053" + readonly property string sos: "\uebf7" + readonly property string soup_kitchen: "\ue7d3" + readonly property string source: "\uf1c4" + readonly property string south: "\uf1e3" + readonly property string south_america: "\ue7e4" + readonly property string south_east: "\uf1e4" + readonly property string south_west: "\uf1e5" readonly property string spa: "\ueb4c" readonly property string space_bar: "\ue256" + readonly property string space_dashboard: "\ue66b" + readonly property string spatial_audio: "\uebeb" + readonly property string spatial_audio_off: "\uebe8" + readonly property string spatial_tracking: "\uebea" readonly property string speaker: "\ue32d" readonly property string speaker_group: "\ue32e" readonly property string speaker_notes: "\ue8cd" readonly property string speaker_notes_off: "\ue92a" readonly property string speaker_phone: "\ue0d2" + readonly property string speed: "\ue9e4" readonly property string spellcheck: "\ue8ce" + readonly property string splitscreen: "\uf06d" + readonly property string spoke: "\ue9a7" + readonly property string sports: "\uea30" + readonly property string sports_bar: "\uf1f3" + readonly property string sports_baseball: "\uea51" + readonly property string sports_basketball: "\uea26" + readonly property string sports_cricket: "\uea27" + readonly property string sports_esports: "\uea28" + readonly property string sports_football: "\uea29" + readonly property string sports_golf: "\uea2a" + readonly property string sports_gymnastics: "\uebc4" + readonly property string sports_handball: "\uea33" + readonly property string sports_hockey: "\uea2b" + readonly property string sports_kabaddi: "\uea34" + readonly property string sports_martial_arts: "\ueae9" + readonly property string sports_mma: "\uea2c" + readonly property string sports_motorsports: "\uea2d" + readonly property string sports_rugby: "\uea2e" + readonly property string sports_score: "\uf06e" + readonly property string sports_soccer: "\uea2f" + readonly property string sports_tennis: "\uea32" + readonly property string sports_volleyball: "\uea31" + readonly property string square: "\ueb36" + readonly property string square_foot: "\uea49" + readonly property string ssid_chart: "\ueb66" + readonly property string stacked_bar_chart: "\ue9e6" + readonly property string stacked_line_chart: "\uf22b" + readonly property string stadium: "\ueb90" + readonly property string stairs: "\uf1a9" readonly property string star: "\ue838" readonly property string star_border: "\ue83a" + readonly property string star_border_purple500: "\uf099" readonly property string star_half: "\ue839" + readonly property string star_outline: "\uf06f" + readonly property string star_purple500: "\uf09a" + readonly property string star_rate: "\uf0ec" readonly property string stars: "\ue8d0" + readonly property string start: "\ue089" readonly property string stay_current_landscape: "\ue0d3" readonly property string stay_current_portrait: "\ue0d4" readonly property string stay_primary_landscape: "\ue0d5" readonly property string stay_primary_portrait: "\ue0d6" + readonly property string sticky_note_2: "\uf1fc" readonly property string stop: "\ue047" + readonly property string stop_circle: "\uef71" readonly property string stop_screen_share: "\ue0e3" readonly property string storage: "\ue1db" readonly property string store: "\ue8d1" readonly property string store_mall_directory: "\ue563" + readonly property string storefront: "\uea12" + readonly property string storm: "\uf070" + readonly property string straight: "\ueb95" readonly property string straighten: "\ue41c" + readonly property string stream: "\ue9e9" readonly property string streetview: "\ue56e" readonly property string strikethrough_s: "\ue257" + readonly property string stroller: "\uf1ae" readonly property string style: "\ue41d" readonly property string subdirectory_arrow_left: "\ue5d9" readonly property string subdirectory_arrow_right: "\ue5da" readonly property string subject: "\ue8d2" + readonly property string subscript: "\uf111" readonly property string subscriptions: "\ue064" readonly property string subtitles: "\ue048" + readonly property string subtitles_off: "\uef72" readonly property string subway: "\ue56f" + readonly property string summarize: "\uf071" + readonly property string sunny: "\ue81a" + readonly property string sunny_snowing: "\ue819" + readonly property string superscript: "\uf112" readonly property string supervised_user_circle: "\ue939" readonly property string supervisor_account: "\ue8d3" + readonly property string support: "\uef73" + readonly property string support_agent: "\uf0e2" + readonly property string surfing: "\ue515" readonly property string surround_sound: "\ue049" readonly property string swap_calls: "\ue0d7" readonly property string swap_horiz: "\ue8d4" readonly property string swap_horizontal_circle: "\ue933" readonly property string swap_vert: "\ue8d5" + readonly property string swap_vert_circle: "\ue8d6" readonly property string swap_vertical_circle: "\ue8d6" + readonly property string swipe: "\ue9ec" + readonly property string swipe_down: "\ueb53" + readonly property string swipe_down_alt: "\ueb30" + readonly property string swipe_left: "\ueb59" + readonly property string swipe_left_alt: "\ueb33" + readonly property string swipe_right: "\ueb52" + readonly property string swipe_right_alt: "\ueb56" + readonly property string swipe_up: "\ueb2e" + readonly property string swipe_up_alt: "\ueb35" + readonly property string swipe_vertical: "\ueb51" + readonly property string switch_access_shortcut: "\ue7e1" + readonly property string switch_access_shortcut_add: "\ue7e2" + readonly property string switch_account: "\ue9ed" readonly property string switch_camera: "\ue41e" + readonly property string switch_left: "\uf1d1" + readonly property string switch_right: "\uf1d2" readonly property string switch_video: "\ue41f" + readonly property string synagogue: "\ueab0" readonly property string sync: "\ue627" + readonly property string sync_alt: "\uea18" readonly property string sync_disabled: "\ue628" + readonly property string sync_lock: "\ueaee" readonly property string sync_problem: "\ue629" + readonly property string system_security_update: "\uf072" + readonly property string system_security_update_good: "\uf073" + readonly property string system_security_update_warning: "\uf074" readonly property string system_update: "\ue62a" readonly property string system_update_alt: "\ue8d7" + readonly property string system_update_tv: "\ue8d7" readonly property string tab: "\ue8d8" readonly property string tab_unselected: "\ue8d9" + readonly property string table_bar: "\uead2" readonly property string table_chart: "\ue265" + readonly property string table_restaurant: "\ueac6" + readonly property string table_rows: "\uf101" + readonly property string table_view: "\uf1be" readonly property string tablet: "\ue32f" readonly property string tablet_android: "\ue330" readonly property string tablet_mac: "\ue331" + readonly property string tag: "\ue9ef" readonly property string tag_faces: "\ue420" + readonly property string takeout_dining: "\uea74" readonly property string tap_and_play: "\ue62b" + readonly property string tapas: "\uf1e9" + readonly property string task: "\uf075" + readonly property string task_alt: "\ue2e6" + readonly property string taxi_alert: "\uef74" + readonly property string telegram: "\uea6b" + readonly property string temple_buddhist: "\ueab3" + readonly property string temple_hindu: "\ueaaf" + readonly property string terminal: "\ueb8e" readonly property string terrain: "\ue564" + readonly property string text_decrease: "\ueadd" readonly property string text_fields: "\ue262" readonly property string text_format: "\ue165" + readonly property string text_increase: "\ueae2" readonly property string text_rotate_up: "\ue93a" readonly property string text_rotate_vertical: "\ue93b" + readonly property string text_rotation_angledown: "\ue93c" + readonly property string text_rotation_angleup: "\ue93d" readonly property string text_rotation_down: "\ue93e" readonly property string text_rotation_none: "\ue93f" + readonly property string text_snippet: "\uf1c6" readonly property string textsms: "\ue0d8" readonly property string texture: "\ue421" + readonly property string theater_comedy: "\uea66" readonly property string theaters: "\ue8da" + readonly property string thermostat: "\uf076" + readonly property string thermostat_auto: "\uf077" readonly property string thumb_down: "\ue8db" readonly property string thumb_down_alt: "\ue816" + readonly property string thumb_down_off_alt: "\ue9f2" readonly property string thumb_up: "\ue8dc" readonly property string thumb_up_alt: "\ue817" + readonly property string thumb_up_off_alt: "\ue9f3" readonly property string thumbs_up_down: "\ue8dd" + readonly property string thunderstorm: "\uebdb" + readonly property string tiktok: "\uea7e" readonly property string time_to_leave: "\ue62c" readonly property string timelapse: "\ue422" readonly property string timeline: "\ue922" readonly property string timer: "\ue425" readonly property string timer_10: "\ue423" + readonly property string timer_10_select: "\uf07a" readonly property string timer_3: "\ue424" + readonly property string timer_3_select: "\uf07b" readonly property string timer_off: "\ue426" + readonly property string tips_and_updates: "\ue79a" + readonly property string tire_repair: "\uebc8" readonly property string title: "\ue264" readonly property string toc: "\ue8de" readonly property string today: "\ue8df" + readonly property string toggle_off: "\ue9f5" + readonly property string toggle_on: "\ue9f6" + readonly property string token: "\uea25" readonly property string toll: "\ue8e0" readonly property string tonality: "\ue427" + readonly property string topic: "\uf1c8" + readonly property string tornado: "\ue199" readonly property string touch_app: "\ue913" + readonly property string tour: "\uef75" readonly property string toys: "\ue332" readonly property string track_changes: "\ue8e1" readonly property string traffic: "\ue565" readonly property string train: "\ue570" readonly property string tram: "\ue571" + readonly property string transcribe: "\uf8ec" readonly property string transfer_within_a_station: "\ue572" - readonly property string transform: "\ue428" + readonly property string transform_: "\ue428" + readonly property string transgender: "\ue58d" readonly property string transit_enterexit: "\ue579" readonly property string translate: "\ue8e2" + readonly property string travel_explore: "\ue2db" readonly property string trending_down: "\ue8e3" readonly property string trending_flat: "\ue8e4" + readonly property string trending_neutral: "\ue8e4" readonly property string trending_up: "\ue8e5" readonly property string trip_origin: "\ue57b" + readonly property string trolley: "\uf86b" + readonly property string troubleshoot: "\ue1d2" + readonly property string try_: "\uf07c" + readonly property string tsunami: "\uebd8" + readonly property string tty: "\uf1aa" readonly property string tune: "\ue429" + readonly property string tungsten: "\uf07d" + readonly property string turn_left: "\ueba6" + readonly property string turn_right: "\uebab" + readonly property string turn_sharp_left: "\ueba7" + readonly property string turn_sharp_right: "\uebaa" + readonly property string turn_slight_left: "\ueba4" + readonly property string turn_slight_right: "\ueb9a" readonly property string turned_in: "\ue8e6" readonly property string turned_in_not: "\ue8e7" readonly property string tv: "\ue333" readonly property string tv_off: "\ue647" + readonly property string two_wheeler: "\ue9f9" + readonly property string type_specimen: "\uf8f0" + readonly property string u_turn_left: "\ueba1" + readonly property string u_turn_right: "\ueba2" + readonly property string umbrella: "\uf1ad" readonly property string unarchive: "\ue169" readonly property string undo: "\ue166" readonly property string unfold_less: "\ue5d6" + readonly property string unfold_less_double: "\uf8cf" readonly property string unfold_more: "\ue5d7" + readonly property string unfold_more_double: "\uf8d0" + readonly property string unpublished: "\uf236" readonly property string unsubscribe: "\ue0eb" + readonly property string upcoming: "\uf07e" readonly property string update: "\ue923" + readonly property string update_disabled: "\ue075" + readonly property string upgrade: "\uf0fb" + readonly property string upload: "\uf09b" + readonly property string upload_file: "\ue9fc" readonly property string usb: "\ue1e0" + readonly property string usb_off: "\ue4fa" + readonly property string vaccines: "\ue138" + readonly property string vape_free: "\uebc6" + readonly property string vaping_rooms: "\uebcf" + readonly property string verified: "\uef76" readonly property string verified_user: "\ue8e8" readonly property string vertical_align_bottom: "\ue258" readonly property string vertical_align_center: "\ue259" readonly property string vertical_align_top: "\ue25a" + readonly property string vertical_distribute: "\ue076" + readonly property string vertical_shades: "\uec0e" + readonly property string vertical_shades_closed: "\uec0d" readonly property string vertical_split: "\ue949" readonly property string vibration: "\ue62d" readonly property string video_call: "\ue070" + readonly property string video_camera_back: "\uf07f" + readonly property string video_camera_front: "\uf080" + readonly property string video_chat: "\uf8a0" + readonly property string video_collection: "\ue04a" + readonly property string video_file: "\ueb87" readonly property string video_label: "\ue071" readonly property string video_library: "\ue04a" + readonly property string video_settings: "\uea75" + readonly property string video_stable: "\uf081" readonly property string videocam: "\ue04b" readonly property string videocam_off: "\ue04c" readonly property string videogame_asset: "\ue338" + readonly property string videogame_asset_off: "\ue500" readonly property string view_agenda: "\ue8e9" readonly property string view_array: "\ue8ea" readonly property string view_carousel: "\ue8eb" readonly property string view_column: "\ue8ec" + readonly property string view_comfortable: "\ue42a" readonly property string view_comfy: "\ue42a" + readonly property string view_comfy_alt: "\ueb73" readonly property string view_compact: "\ue42b" + readonly property string view_compact_alt: "\ueb74" + readonly property string view_cozy: "\ueb75" readonly property string view_day: "\ue8ed" readonly property string view_headline: "\ue8ee" + readonly property string view_in_ar: "\ue9fe" + readonly property string view_kanban: "\ueb7f" readonly property string view_list: "\ue8ef" readonly property string view_module: "\ue8f0" readonly property string view_quilt: "\ue8f1" + readonly property string view_sidebar: "\uf114" readonly property string view_stream: "\ue8f2" + readonly property string view_timeline: "\ueb85" readonly property string view_week: "\ue8f3" readonly property string vignette: "\ue435" + readonly property string villa: "\ue586" readonly property string visibility: "\ue8f4" readonly property string visibility_off: "\ue8f5" readonly property string voice_chat: "\ue62e" readonly property string voice_over_off: "\ue94a" readonly property string voicemail: "\ue0d9" + readonly property string volcano: "\uebda" readonly property string volume_down: "\ue04d" + readonly property string volume_down_alt: "\ue79c" readonly property string volume_mute: "\ue04e" readonly property string volume_off: "\ue04f" readonly property string volume_up: "\ue050" + readonly property string volunteer_activism: "\uea70" readonly property string vpn_key: "\ue0da" + readonly property string vpn_key_off: "\ueb7a" readonly property string vpn_lock: "\ue62f" + readonly property string vrpano: "\uf082" + readonly property string wallet: "\uf8ff" + readonly property string wallet_giftcard: "\ue8f6" + readonly property string wallet_membership: "\ue8f7" + readonly property string wallet_travel: "\ue8f8" readonly property string wallpaper: "\ue1bc" + readonly property string warehouse: "\uebb8" readonly property string warning: "\ue002" + readonly property string warning_amber: "\uf083" + readonly property string wash: "\uf1b1" readonly property string watch: "\ue334" readonly property string watch_later: "\ue924" + readonly property string watch_off: "\ueae3" + readonly property string water: "\uf084" + readonly property string water_damage: "\uf203" + readonly property string water_drop: "\ue798" + readonly property string waterfall_chart: "\uea00" readonly property string waves: "\ue176" + readonly property string waving_hand: "\ue766" readonly property string wb_auto: "\ue42c" readonly property string wb_cloudy: "\ue42d" readonly property string wb_incandescent: "\ue42e" readonly property string wb_iridescent: "\ue436" + readonly property string wb_shade: "\uea01" readonly property string wb_sunny: "\ue430" + readonly property string wb_twighlight: "\uea02" + readonly property string wb_twilight: "\ue1c6" readonly property string wc: "\ue63d" readonly property string web: "\ue051" readonly property string web_asset: "\ue069" + readonly property string web_asset_off: "\ue4f7" + readonly property string web_stories: "\ue595" + readonly property string webhook: "\ueb92" + readonly property string wechat: "\uea81" readonly property string weekend: "\ue16b" + readonly property string west: "\uf1e6" readonly property string whatshot: "\ue80e" + readonly property string wheelchair_pickup: "\uf1ab" readonly property string where_to_vote: "\ue177" readonly property string widgets: "\ue1bd" + readonly property string width_full: "\uf8f5" + readonly property string width_normal: "\uf8f6" + readonly property string width_wide: "\uf8f7" readonly property string wifi: "\ue63e" + readonly property string wifi_1_bar: "\ue4ca" + readonly property string wifi_2_bar: "\ue4d9" + readonly property string wifi_calling: "\uef77" + readonly property string wifi_calling_3: "\uf085" + readonly property string wifi_channel: "\ueb6a" + readonly property string wifi_find: "\ueb31" readonly property string wifi_lock: "\ue1e1" readonly property string wifi_off: "\ue648" + readonly property string wifi_pwd: "\ueb6b" + readonly property string wifi_protected_setup: "\uf0fc" readonly property string wifi_tethering: "\ue1e2" + readonly property string wifi_tethering_error: "\uead9" + readonly property string wifi_tethering_error_rounded: "\uf086" + readonly property string wifi_tethering_off: "\uf087" + readonly property string wind_power: "\uec0c" + readonly property string window: "\uf088" + readonly property string wine_bar: "\uf1e8" + readonly property string woman: "\ue13e" + readonly property string woman_2: "\uf8e7" + readonly property string woo_commerce: "\uea6d" + readonly property string wordpress: "\uea9f" readonly property string work: "\ue8f9" + readonly property string work_history: "\uec09" readonly property string work_off: "\ue942" readonly property string work_outline: "\ue943" + readonly property string workspace_premium: "\ue7af" + readonly property string workspaces: "\ue1a0" + readonly property string workspaces_filled: "\uea0d" + readonly property string workspaces_outline: "\uea0f" readonly property string wrap_text: "\ue25b" + readonly property string wrong_location: "\uef78" + readonly property string wysiwyg: "\uf1c3" + readonly property string yard: "\uf089" readonly property string youtube_searched_for: "\ue8fa" readonly property string zoom_in: "\ue8ff" + readonly property string zoom_in_map: "\ueb2d" readonly property string zoom_out: "\ue900" readonly property string zoom_out_map: "\ue56b" } From c98e4a12c8cbc7e2c2efda604ad6783589c2585e Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Wed, 20 Dec 2023 09:36:14 +0100 Subject: [PATCH 3/3] Add path to MaterialIcons codepoints file --- meshroom/ui/qml/MaterialIcons/generate_material_icons.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meshroom/ui/qml/MaterialIcons/generate_material_icons.py b/meshroom/ui/qml/MaterialIcons/generate_material_icons.py index 717bbe70c5..d5cf5ecf66 100644 --- a/meshroom/ui/qml/MaterialIcons/generate_material_icons.py +++ b/meshroom/ui/qml/MaterialIcons/generate_material_icons.py @@ -1,7 +1,8 @@ import argparse import os -parser = argparse.ArgumentParser(description='Generate a MaterialIcons.qml singleton from codepoints file.') +parser = argparse.ArgumentParser(description='Generate a MaterialIcons.qml singleton from codepoints file.\n' + 'An example of codepoints file for MaterialIcons: https://github.com/google/material-design-icons/blob/master/font/MaterialIcons-Regular.codepoints.') parser.add_argument('codepoints', type=str, help='Codepoints file.') parser.add_argument('--output', type=str, default='.', help='')