94 lines
1.9 KiB
C#
94 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace F4SD_AdaptableIcon.Enums
|
|
{
|
|
public enum enumInternIcons
|
|
{
|
|
none = 0,
|
|
fasd,
|
|
f4sd,
|
|
f4sd_outline,
|
|
f4sd_speedo,
|
|
f4sd_product_logo,
|
|
|
|
//Lock
|
|
lock_closed,
|
|
lock_closedHover,
|
|
lock_open,
|
|
lock_openHover,
|
|
|
|
//MenuBar
|
|
menuBar_copy,
|
|
menuBar_details,
|
|
menuBar_mail,
|
|
menuBar_more,
|
|
menuBar_nexThink,
|
|
menuBar_refresh,
|
|
menuBar_refresh_request,
|
|
menuBar_remote,
|
|
menuBar_screenShot,
|
|
menuBar_search,
|
|
menuBar_search_noResults,
|
|
menuBar_settings,
|
|
|
|
//miscellaneous
|
|
misc_pin,
|
|
misc_pinned,
|
|
misc_copy_bolt,
|
|
misc_chevron_left,
|
|
misc_chevron_right,
|
|
misc_chevron_mid,
|
|
misc_chevron_down,
|
|
misc_check,
|
|
misc_computer,
|
|
misc_computer_disabled,
|
|
misc_directConnection,
|
|
misc_dot,
|
|
misc_functionMarker,
|
|
misc_functionBolt,
|
|
misc_heart,
|
|
misc_play,
|
|
misc_plus,
|
|
misc_screwdriver,
|
|
misc_ticket,
|
|
misc_time,
|
|
misc_tool,
|
|
misc_user,
|
|
misc_user_disabled,
|
|
|
|
//StatusIcons
|
|
status_bad,
|
|
status_danger,
|
|
status_empty,
|
|
status_good,
|
|
status_info,
|
|
|
|
//Style
|
|
style_moon,
|
|
style_moonFilled,
|
|
style_sun,
|
|
style_sunFilled,
|
|
|
|
//Window
|
|
window_close,
|
|
window_dock_left,
|
|
window_dock_right,
|
|
window_fullscreen,
|
|
window_fullscreenExit,
|
|
window_minimize,
|
|
window_toSlim
|
|
}
|
|
|
|
public enum enumInternGif
|
|
{
|
|
none,
|
|
partyPopper,
|
|
loadingSpinner,
|
|
loadingPoints
|
|
}
|
|
}
|