mirror of
https://github.com/gamecreature/QtAwesome.git
synced 2025-12-16 19:57:03 +03:00
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
static const fa::QtAwesomeNamedIcon faCommonIconArray[] = {
|
|
<% icons_common.each_with_index do |(name, _unicode), index| -%>
|
|
{ <%= string_name(name) %>, <%= namespaced_id_name(name) %> } <%= index < icons_common.length - 1 ? ',' : '' %>
|
|
<% end %>
|
|
};
|
|
|
|
static const fa::QtAwesomeNamedIcon faBrandsIconArray[] = {
|
|
<% icons_brands.each_with_index do |(name, _unicode), index| -%>
|
|
{ <%= string_name(name) %>, <%= namespaced_id_name(name) %> } <%= index < icons_brands.length - 1 ? ',' : '' %>
|
|
<% end %>
|
|
};
|
|
|
|
#if defined(FONT_AWESOME_PRO)
|
|
|
|
static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
|
<% icons_pro.each_with_index do |(name, _unicode), index| -%>
|
|
{ <%= string_name(name) %>, <%= namespaced_id_name(name) %> } <%= index < icons_pro.length - 1 ? ',' : '' %>
|
|
<% end %>
|
|
};
|
|
|
|
#elif defined(FONT_AWESOME_PRO_PLUS)
|
|
|
|
static const fa::QtAwesomeNamedIcon faProIconArray[] = {
|
|
<% icons_pro.each_with_index do |(name, _unicode), index| -%>
|
|
{ <%= string_name(name) %>, <%= namespaced_id_name(name) %> } <%= index < icons_pro.length - 1 ? ',' : '' %>
|
|
<% end %>
|
|
};
|
|
|
|
#else
|
|
|
|
static const fa::QtAwesomeNamedIcon faRegularFreeIconArray[] = {
|
|
<% icons_regular_free.each_with_index do |(name, _unicode), index| -%>
|
|
{ <%= string_name(name) %>, <%= namespaced_id_name(name) %> } <%= index < icons_pro.length - 1 ? ',' : '' %>
|
|
<% end %>
|
|
};
|
|
#endif
|