diff options
author | George Hazan <george.hazan@gmail.com> | 2013-01-26 20:02:29 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-01-26 20:02:29 +0000 |
commit | eecb95c8e17f3397f64820f36f2a1d2351fe92e0 (patch) | |
tree | 6a1734739dcc35e483cf90ee7e5b59c50c4b6203 /src | |
parent | 4efb047571ea60522a630290459a2ca3d488753e (diff) |
special icon for frames: SKINICON_OTHER_FRAME
git-svn-id: http://svn.miranda-ng.org/main/trunk@3296 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/skin/skinicons.cpp | 1 | ||||
-rw-r--r-- | src/res/icon_frame.ico | bin | 0 -> 1150 bytes | |||
-rw-r--r-- | src/resource.h | 1 | ||||
-rw-r--r-- | src/resource.rc | 1 |
4 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/skin/skinicons.cpp b/src/modules/skin/skinicons.cpp index ee0c54d004..de309707aa 100644 --- a/src/modules/skin/skinicons.cpp +++ b/src/modules/skin/skinicons.cpp @@ -81,6 +81,7 @@ static struct StandardIconDescription mainIcons[] = { SKINICON_OTHER_OFF, LPGEN("Off"), -IDI_OFF },
{ SKINICON_OTHER_LOADEDGRAY, LPGEN("Running core plugin"), -IDI_LOADED_GRAY },
{ SKINICON_OTHER_NOTLOADEDGRAY, LPGEN("Non-loadable plugin"), -IDI_NOTLOADED_GRAY },
+ { SKINICON_OTHER_FRAME, LPGEN("Frames"), -IDI_FRAME },
{ SKINICON_OTHER_VISIBLE_ALL, LPGEN("Always visible"), -IDI_ALWAYSVIS, 0, "Contact List" },
{ SKINICON_OTHER_INVISIBLE_ALL, LPGEN("Always invisible"), -IDI_NEVERVIS, 0, "Contact List" },
{ SKINICON_OTHER_STATUS_LOCKED, LPGEN("Locked status"), -IDI_STATUS_LOCKED, 0, "Status Icons" },
diff --git a/src/res/icon_frame.ico b/src/res/icon_frame.ico Binary files differnew file mode 100644 index 0000000000..342d3dd641 --- /dev/null +++ b/src/res/icon_frame.ico diff --git a/src/resource.h b/src/resource.h index f73866e320..edb82a3860 100644 --- a/src/resource.h +++ b/src/resource.h @@ -39,6 +39,7 @@ #define IDD_MODERNOPT_STATUS 141
#define IDD_MODERNOPT_IDLE 142
#define IDD_MODERNOPT_IGNORE 143
+#define IDI_FRAME 144
#define IDI_DND 158
#define IDI_OCCUPIED 159
#define IDI_USERDETAILS 160
diff --git a/src/resource.rc b/src/resource.rc index b04deaf640..fe1fd72d83 100644 --- a/src/resource.rc +++ b/src/resource.rc @@ -1056,6 +1056,7 @@ IDI_LOADED ICON "res/icon_loaded.ico" IDI_LOADED_GRAY ICON "res/icon_loaded_gray.ico"
IDI_NOTLOADED ICON "res/icon_notloaded.ico"
IDI_NOTLOADED_GRAY ICON "res/icon_notloaded_gray.ico"
+IDI_FRAME ICON "res/icon_frame.ico"
IDI_BLANK ICON "res/_blank.ico"
IDI_UNDO ICON "res/icon_undo.ico"
IDI_WINDOW ICON "res/icon_window.ico"
|