summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2016-07-05 14:21:03 +0000
committerGeorge Hazan <george.hazan@gmail.com>2016-07-05 14:21:03 +0000
commit94ed647bd8f3c21baf568c1fe46e797f68b16e6f (patch)
tree233f60dd55f52bf415acbaf70462c49fb98f369a
parentcd7031447b2c05ebf443f84a5c8852ccf25daf0f (diff)
expanded facebook icons
git-svn-id: http://svn.miranda-ng.org/main/trunk@17059 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--protocols/FacebookRM/res/angry.icobin0 -> 4286 bytes
-rw-r--r--protocols/FacebookRM/res/facebook.rc15
-rw-r--r--protocols/FacebookRM/res/haha.icobin0 -> 4286 bytes
-rw-r--r--protocols/FacebookRM/res/like.icobin0 -> 4286 bytes
-rw-r--r--protocols/FacebookRM/res/love.icobin0 -> 4286 bytes
-rw-r--r--protocols/FacebookRM/res/sad.icobin0 -> 4286 bytes
-rw-r--r--protocols/FacebookRM/res/wow.icobin0 -> 4286 bytes
-rw-r--r--protocols/FacebookRM/src/resource.h6
-rw-r--r--protocols/FacebookRM/src/theme.cpp24
9 files changed, 27 insertions, 18 deletions
diff --git a/protocols/FacebookRM/res/angry.ico b/protocols/FacebookRM/res/angry.ico
new file mode 100644
index 0000000000..212b152a68
--- /dev/null
+++ b/protocols/FacebookRM/res/angry.ico
Binary files differ
diff --git a/protocols/FacebookRM/res/facebook.rc b/protocols/FacebookRM/res/facebook.rc
index aa5ef179e8..7cbfe04d71 100644
--- a/protocols/FacebookRM/res/facebook.rc
+++ b/protocols/FacebookRM/res/facebook.rc
@@ -50,24 +50,21 @@ END
// Icon
//
-// Icon with lowest ID value placed first to ensure application icon
-// remains consistent on all systems.
IDI_FACEBOOK ICON "facebook.ico"
-
IDI_MIND ICON "mind.ico"
-
IDI_POKE ICON "poke.ico"
-
IDI_NOTIFICATION ICON "notification.ico"
-
IDI_NEWSFEED ICON "feeds.ico"
-
IDI_FRIENDS ICON "friends.ico"
-
IDI_CONVERSATION ICON "conversation.ico"
-
IDI_READ ICON "read.ico"
+IDI_ANGRY ICON "angry.ico"
+IDI_HAHA ICON "haha.ico"
+IDI_LIKE ICON "like.ico"
+IDI_LOVE ICON "love.ico"
+IDI_SAD ICON "sad.ico"
+IDI_WOW ICON "wow.ico"
/////////////////////////////////////////////////////////////////////////////
//
diff --git a/protocols/FacebookRM/res/haha.ico b/protocols/FacebookRM/res/haha.ico
new file mode 100644
index 0000000000..fca966b859
--- /dev/null
+++ b/protocols/FacebookRM/res/haha.ico
Binary files differ
diff --git a/protocols/FacebookRM/res/like.ico b/protocols/FacebookRM/res/like.ico
new file mode 100644
index 0000000000..bd19c39de2
--- /dev/null
+++ b/protocols/FacebookRM/res/like.ico
Binary files differ
diff --git a/protocols/FacebookRM/res/love.ico b/protocols/FacebookRM/res/love.ico
new file mode 100644
index 0000000000..feea230b45
--- /dev/null
+++ b/protocols/FacebookRM/res/love.ico
Binary files differ
diff --git a/protocols/FacebookRM/res/sad.ico b/protocols/FacebookRM/res/sad.ico
new file mode 100644
index 0000000000..3584d1f385
--- /dev/null
+++ b/protocols/FacebookRM/res/sad.ico
Binary files differ
diff --git a/protocols/FacebookRM/res/wow.ico b/protocols/FacebookRM/res/wow.ico
new file mode 100644
index 0000000000..8d9052ffd9
--- /dev/null
+++ b/protocols/FacebookRM/res/wow.ico
Binary files differ
diff --git a/protocols/FacebookRM/src/resource.h b/protocols/FacebookRM/src/resource.h
index 2c43b7a224..e3632de574 100644
--- a/protocols/FacebookRM/src/resource.h
+++ b/protocols/FacebookRM/src/resource.h
@@ -20,6 +20,12 @@
#define IDI_READ 132
#define IDI_KEYS 133
#define IDD_GUARD 134
+#define IDI_ANGRY 135
+#define IDI_HAHA 136
+#define IDI_LIKE 137
+#define IDI_LOVE 138
+#define IDI_SAD 139
+#define IDI_WOW 140
#define IDC_UN 1001
#define IDC_PW 1002
#define IDC_NEWACCOUNTLINK 1003
diff --git a/protocols/FacebookRM/src/theme.cpp b/protocols/FacebookRM/src/theme.cpp
index 42d1b6d8e8..8eaf1858cd 100644
--- a/protocols/FacebookRM/src/theme.cpp
+++ b/protocols/FacebookRM/src/theme.cpp
@@ -38,15 +38,21 @@ HGENMENU g_hContactMenuVisitConversation;
static IconItem icons[] =
{
- { LPGEN("Facebook icon"), "facebook", IDI_FACEBOOK },
- { LPGEN("Mind"), "mind", IDI_MIND },
- { LPGEN("Poke"), "poke", IDI_POKE },
- { LPGEN("Notification"), "notification", IDI_NOTIFICATION },
- { LPGEN("Newsfeed"), "newsfeed", IDI_NEWSFEED },
- { LPGEN("Friendship details"), "friendship", IDI_FRIENDS },
- { LPGEN("Conversation"), "conversation", IDI_CONVERSATION },
- { LPGEN("Message read"), "read", IDI_READ },
- { LPGEN("Captcha form icon"), "key", IDI_KEYS }
+ { LPGEN("Facebook icon"), "facebook", IDI_FACEBOOK },
+ { LPGEN("Mind"), "mind", IDI_MIND },
+ { LPGEN("Poke"), "poke", IDI_POKE },
+ { LPGEN("Notification"), "notification", IDI_NOTIFICATION },
+ { LPGEN("Newsfeed"), "newsfeed", IDI_NEWSFEED },
+ { LPGEN("Friendship details"), "friendship", IDI_FRIENDS },
+ { LPGEN("Conversation"), "conversation", IDI_CONVERSATION },
+ { LPGEN("Message read"), "read", IDI_READ },
+ { LPGEN("Captcha form icon"), "key", IDI_KEYS },
+ { LPGEN("Angry"), "angry", IDI_ANGRY },
+ { LPGEN("Haha"), "haha", IDI_HAHA },
+ { LPGEN("Like"), "like", IDI_LIKE },
+ { LPGEN("Love"), "love", IDI_LOVE },
+ { LPGEN("Sad"), "sad", IDI_SAD },
+ { LPGEN("Wow"), "wow", IDI_WOW },
};
void InitIcons(void)