mirror of
https://github.com/gamecreature/QtAwesome.git
synced 2024-11-15 13:35:44 +08:00
Updated to Font Awesome 3.2.1 (added the icon_gear and icon_gears aliasses)
This commit is contained in:
parent
9075414590
commit
2d3253aeb8
@ -211,6 +211,7 @@ bool QtAwesome::initFontAwesome( )
|
|||||||
m.insert( "off", icon_off );
|
m.insert( "off", icon_off );
|
||||||
m.insert( "signal", icon_signal );
|
m.insert( "signal", icon_signal );
|
||||||
m.insert( "cog", icon_cog );
|
m.insert( "cog", icon_cog );
|
||||||
|
m.insert( "gear", icon_gear );
|
||||||
m.insert( "trash", icon_trash );
|
m.insert( "trash", icon_trash );
|
||||||
m.insert( "home", icon_home );
|
m.insert( "home", icon_home );
|
||||||
m.insert( "file_alt", icon_file_alt );
|
m.insert( "file_alt", icon_file_alt );
|
||||||
@ -328,6 +329,7 @@ bool QtAwesome::initFontAwesome( )
|
|||||||
m.insert( "camera-retro", icon_camera_retro );
|
m.insert( "camera-retro", icon_camera_retro );
|
||||||
m.insert( "key", icon_key );
|
m.insert( "key", icon_key );
|
||||||
m.insert( "cogs", icon_cogs );
|
m.insert( "cogs", icon_cogs );
|
||||||
|
m.insert( "gears", icon_gears );
|
||||||
m.insert( "comments", icon_comments );
|
m.insert( "comments", icon_comments );
|
||||||
m.insert( "thumbs-up-alt", icon_thumbs_up_alt );
|
m.insert( "thumbs-up-alt", icon_thumbs_up_alt );
|
||||||
m.insert( "thumbs-down-alt", icon_thumbs_down_alt );
|
m.insert( "thumbs-down-alt", icon_thumbs_down_alt );
|
||||||
|
@ -38,6 +38,7 @@ enum QtFontAwesomeName {
|
|||||||
icon_off = 0xf011,
|
icon_off = 0xf011,
|
||||||
icon_signal = 0xf012,
|
icon_signal = 0xf012,
|
||||||
icon_cog = 0xf013,
|
icon_cog = 0xf013,
|
||||||
|
icon_gear = icon_cog,
|
||||||
icon_trash = 0xf014,
|
icon_trash = 0xf014,
|
||||||
icon_home = 0xf015,
|
icon_home = 0xf015,
|
||||||
icon_file_alt = 0xf016,
|
icon_file_alt = 0xf016,
|
||||||
@ -153,6 +154,7 @@ enum QtFontAwesomeName {
|
|||||||
icon_camera_retro = 0xf083,
|
icon_camera_retro = 0xf083,
|
||||||
icon_key = 0xf084,
|
icon_key = 0xf084,
|
||||||
icon_cogs = 0xf085,
|
icon_cogs = 0xf085,
|
||||||
|
icon_gears = icon_cogs,
|
||||||
icon_comments = 0xf086,
|
icon_comments = 0xf086,
|
||||||
icon_thumbs_up_alt = 0xf087,
|
icon_thumbs_up_alt = 0xf087,
|
||||||
icon_thumbs_down_alt = 0xf088,
|
icon_thumbs_down_alt = 0xf088,
|
||||||
|
@ -10,7 +10,7 @@ iconfont you want.
|
|||||||
|
|
||||||
The class can also be used to manage your own dynamic code-drawn icons, by adding named icon-painters.
|
The class can also be used to manage your own dynamic code-drawn icons, by adding named icon-painters.
|
||||||
|
|
||||||
The current Font Awesome version is Version 3.2.0
|
The current Font Awesome version is Version 3.2.1
|
||||||
|
|
||||||
|
|
||||||
Installation
|
Installation
|
||||||
|
Loading…
Reference in New Issue
Block a user