summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Saunders <ben.e.saunders@gmail.com>2017-11-05 13:04:55 -0800
committermujx <mujx@users.noreply.github.com>2017-11-05 23:04:55 +0200
commit5bd5555a51f52293853e4b4f5dc15dd1c7774538 (patch)
treee77e082ff0cd94f1543d64ff10be703c8b452e73
parent4ccb5ed81f1787a3cca12e5ca705fad4e3fa8ca5 (diff)
Use C++11 braced list style (#121)
-rw-r--r--.clang-format2
-rw-r--r--src/Cache.cc10
-rw-r--r--src/EmojiPanel.cc10
-rw-r--r--src/EmojiPickButton.cc2
-rw-r--r--src/EmojiProvider.cc2847
-rw-r--r--src/ImageItem.cc10
-rw-r--r--src/ImageOverlayDialog.cc4
-rw-r--r--src/Login.cc8
-rw-r--r--src/LoginPage.cc2
-rw-r--r--src/MainWindow.cc4
-rw-r--r--src/MatrixClient.cc24
-rw-r--r--src/Register.cc2
-rw-r--r--src/RoomInfoListItem.cc2
-rw-r--r--src/SideBarActions.cc2
-rw-r--r--src/TimelineItem.cc41
-rw-r--r--src/TimelineView.cc8
-rw-r--r--src/TimelineViewManager.cc2
-rw-r--r--src/TopRoomBar.cc2
-rw-r--r--src/TypingDisplay.cc2
-rw-r--r--src/UserInfoWidget.cc6
-rw-r--r--src/UserSettingsPage.cc6
-rw-r--r--src/ui/OverlayModal.cc4
-rw-r--r--src/ui/ScrollBar.cc2
-rw-r--r--src/ui/Theme.cc16
-rw-r--r--src/ui/ToggleButton.cc14
25 files changed, 1517 insertions, 1515 deletions
diff --git a/.clang-format b/.clang-format
index 6dc5274b..059aee19 100644
--- a/.clang-format
+++ b/.clang-format
@@ -1,5 +1,6 @@
---
Language: Cpp
+Standard: Cpp11
AccessModifierOffset: -8
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: true
@@ -10,3 +11,4 @@ IndentCaseLabels: false
IndentWidth: 8
KeepEmptyLinesAtTheStartOfBlocks: false
PointerAlignment: Right
+Cpp11BracedListStyle: true
diff --git a/src/Cache.cc b/src/Cache.cc
index 99267343..dc2c8a9f 100644
--- a/src/Cache.cc
+++ b/src/Cache.cc
@@ -31,11 +31,11 @@ static const lmdb::val NEXT_BATCH_KEY("next_batch");
static const lmdb::val transactionID("transaction_id");
Cache::Cache(const QString &userId)
- : env_{ nullptr }
- , stateDb_{ 0 }
- , roomDb_{ 0 }
- , isMounted_{ false }
- , userId_{ userId }
+ : env_{nullptr}
+ , stateDb_{0}
+ , roomDb_{0}
+ , isMounted_{false}
+ , userId_{userId}
{}
void
diff --git a/src/EmojiPanel.cc b/src/EmojiPanel.cc
index 71e2526c..3f5f8369 100644
--- a/src/EmojiPanel.cc
+++ b/src/EmojiPanel.cc
@@ -26,11 +26,11 @@
EmojiPanel::EmojiPanel(QWidget *parent)
: QWidget(parent)
- , shadowMargin_{ 2 }
- , width_{ 370 }
- , height_{ 350 }
- , animationDuration_{ 100 }
- , categoryIconSize_{ 20 }
+ , shadowMargin_{2}
+ , width_{370}
+ , height_{350}
+ , animationDuration_{100}
+ , categoryIconSize_{20}
{
setStyleSheet("QWidget {background: #fff; color: #e8e8e8; border: none;}"
"QScrollBar:vertical { background-color: #fff; width: 8px; margin: 0px "
diff --git a/src/EmojiPickButton.cc b/src/EmojiPickButton.cc
index a63ca0b2..06aa3db9 100644
--- a/src/EmojiPickButton.cc
+++ b/src/EmojiPickButton.cc
@@ -20,7 +20,7 @@
EmojiPickButton::EmojiPickButton(QWidget *parent)
: FlatButton(parent)
- , panel_{ nullptr }
+ , panel_{nullptr}
{}
void
diff --git a/src/EmojiProvider.cc b/src/EmojiProvider.cc
index ed380ae0..ec053046 100644
--- a/src/EmojiProvider.cc
+++ b/src/EmojiProvider.cc
@@ -20,1451 +20,1446 @@
#include "EmojiProvider.h"
const QList<Emoji> EmojiProvider::people = {
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x80"), ":grinning:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x81"), ":grin:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x82"), ":joy:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xa3"), ":rofl:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x83"), ":smiley:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x84"), ":smile:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x85"), ":sweat_smile:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x86"), ":laughing:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x89"), ":wink:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x8a"), ":blush:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x8b"), ":yum:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x8e"), ":sunglasses:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x8d"), ":heart_eyes:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x98"), ":kissing_heart:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x97"), ":kissing:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x99"), ":kissing_smiling_eyes:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x9a"), ":kissing_closed_eyes:" },
- Emoji{ QString::fromUtf8("\xe2\x98\xba"), ":relaxed:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x82"), ":slight_smile:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x97"), ":hugging:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x94"), ":thinking:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x90"), ":neutral_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x91"), ":expressionless:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xb6"), ":no_mouth:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x84"), ":rolling_eyes:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x8f"), ":smirk:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xa3"), ":persevere:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xa5"), ":disappointed_relieved:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xae"), ":open_mouth:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x90"), ":zipper_mouth:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xaf"), ":hushed:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xaa"), ":sleepy:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xab"), ":tired_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xb4"), ":sleeping:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x8c"), ":relieved:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x93"), ":nerd:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x9b"), ":stuck_out_tongue:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x9c"), ":stuck_out_tongue_winking_eye:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x9d"), ":stuck_out_tongue_closed_eyes:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xa4"), ":drooling_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x92"), ":unamused:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x93"), ":sweat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x94"), ":pensive:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x95"), ":confused:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x83"), ":upside_down:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x91"), ":money_mouth:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xb2"), ":astonished:" },
- Emoji{ QString::fromUtf8("\xe2\x98\xb9"), ":frowning2:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x81"), ":slight_frown:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x96"), ":confounded:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x9e"), ":disappointed:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x9f"), ":worried:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xa4"), ":triumph:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xa2"), ":cry:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xad"), ":sob:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xa6"), ":frowning:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xa7"), ":anguished:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xa8"), ":fearful:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xa9"), ":weary:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xac"), ":grimacing:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xb0"), ":cold_sweat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xb1"), ":scream:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xb3"), ":flushed:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xb5"), ":dizzy_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xa1"), ":rage:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xa0"), ":angry:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x87"), ":innocent:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xa0"), ":cowboy:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xa1"), ":clown:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xa5"), ":lying_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xb7"), ":mask:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x92"), ":thermometer_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x95"), ":head_bandage:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xa2"), ":nauseated_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xa7"), ":sneezing_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\x88"), ":smiling_imp:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xbf"), ":imp:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xb9"), ":japanese_ogre:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xba"), ":japanese_goblin:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\x80"), ":skull:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xbb"), ":ghost:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xbd"), ":alien:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x96"), ":robot:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\xa9"), ":poop:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xba"), ":smiley_cat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xb8"), ":smile_cat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xb9"), ":joy_cat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xbb"), ":heart_eyes_cat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xbc"), ":smirk_cat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xbd"), ":kissing_cat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x80"), ":scream_cat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xbf"), ":crying_cat_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x98\xbe"), ":pouting_cat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xa6"), ":boy:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xa7"), ":girl:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xa8"), ":man:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xa9"), ":woman:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xb4"), ":older_man:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xb5"), ":older_woman:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xb6"), ":baby:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xbc"), ":angel:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xae"), ":cop:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x95\xb5"), ":spy:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\x82"), ":guardsman:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xb7"), ":construction_worker:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xb3"), ":man_with_turban:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xb1"), ":person_with_blond_hair:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x8e\x85"), ":santa:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xb6"), ":mrs_claus:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xb8"), ":princess:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xb4"), ":prince:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xb0"), ":bride_with_veil:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xb5"), ":man_in_tuxedo:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xb0"), ":pregnant_woman:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xb2"), ":man_with_gua_pi_mao:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x8d"), ":person_frowning:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x8e"), ":person_with_pouting_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x85"), ":no_good:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x86"), ":ok_woman:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\x81"), ":information_desk_person:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x8b"), ":raising_hand:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x87"), ":bow:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xa6"), ":face_palm:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xb7"), ":shrug:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\x86"), ":massage:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\x87"), ":haircut:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x9a\xb6"), ":walking:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x8f\x83"), ":runner:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\x83"), ":dancer:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x95\xba"), ":man_dancing:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xaf"), ":dancers:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x97\xa3"), ":speaking_head:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xa4"), ":bust_in_silhouette:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xa5"), ":busts_in_silhouette:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xab"), ":couple:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xac"), ":two_men_holding_hands:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xad"), ":two_women_holding_hands:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\x8f"), ":couplekiss:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\x91"), ":couple_with_heart:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xaa"), ":family:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\xaa"), ":muscle:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\xb3"), ":selfie:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x88"), ":point_left:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x89"), ":point_right:" },
- Emoji{ QString::fromUtf8("\xe2\x98\x9d"), ":point_up:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x86"), ":point_up_2:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x96\x95"), ":middle_finger:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x87"), ":point_down:" },
- Emoji{ QString::fromUtf8("\xe2\x9c\x8c"), ":v:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x9e"), ":fingers_crossed:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x96\x96"), ":vulcan:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x98"), ":metal:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x99"), ":call_me:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x96\x90"), ":hand_splayed:" },
- Emoji{ QString::fromUtf8("\xe2\x9c\x8b"), ":raised_hand:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x8c"), ":ok_hand:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x8d"), ":thumbsup:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x8e"), ":thumbsdown:" },
- Emoji{ QString::fromUtf8("\xe2\x9c\x8a"), ":fist:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x8a"), ":punch:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x9b"), ":left_facing_fist:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x9c"), ":right_facing_fist:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x9a"), ":raised_back_of_hand:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x8b"), ":wave:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x8f"), ":clap:" },
- Emoji{ QString::fromUtf8("\xe2\x9c\x8d"), ":writing_hand:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x90"), ":open_hands:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x8c"), ":raised_hands:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x8f"), ":pray:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa4\x9d"), ":handshake:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\x85"), ":nail_care:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x82"), ":ear:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x83"), ":nose:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xa3"), ":footprints:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x80"), ":eyes:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x81"), ":eye:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x85"), ":tongue:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x84"), ":lips:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\x8b"), ":kiss:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\xa4"), ":zzz:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x93"), ":eyeglasses:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x95\xb6"), ":dark_sunglasses:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x94"), ":necktie:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x95"), ":shirt:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x96"), ":jeans:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x97"), ":dress:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x98"), ":kimono:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x99"), ":bikini:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x9a"), ":womans_clothes:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x9b"), ":purse:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x9c"), ":handbag:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x9d"), ":pouch:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x8e\x92"), ":school_satchel:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x9e"), ":mans_shoe:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x9f"), ":athletic_shoe:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xa0"), ":high_heel:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xa1"), ":sandal:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\xa2"), ":boot:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x91"), ":crown:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x91\x92"), ":womans_hat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x8e\xa9"), ":tophat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x8e\x93"), ":mortar_board:" },
- Emoji{ QString::fromUtf8("\xe2\x9b\x91"), ":helmet_with_cross:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\x84"), ":lipstick:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\x8d"), ":ring:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x8c\x82"), ":closed_umbrella:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\xbc"), ":briefcase:" },
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x80"), ":grinning:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x81"), ":grin:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x82"), ":joy:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xa3"), ":rofl:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x83"), ":smiley:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x84"), ":smile:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x85"), ":sweat_smile:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x86"), ":laughing:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x89"), ":wink:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x8a"), ":blush:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x8b"), ":yum:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x8e"), ":sunglasses:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x8d"), ":heart_eyes:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x98"), ":kissing_heart:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x97"), ":kissing:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x99"), ":kissing_smiling_eyes:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x9a"), ":kissing_closed_eyes:"},
+ Emoji{QString::fromUtf8("\xe2\x98\xba"), ":relaxed:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x82"), ":slight_smile:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x97"), ":hugging:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x94"), ":thinking:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x90"), ":neutral_face:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x91"), ":expressionless:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xb6"), ":no_mouth:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x84"), ":rolling_eyes:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x8f"), ":smirk:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xa3"), ":persevere:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xa5"), ":disappointed_relieved:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xae"), ":open_mouth:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x90"), ":zipper_mouth:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xaf"), ":hushed:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xaa"), ":sleepy:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xab"), ":tired_face:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xb4"), ":sleeping:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x8c"), ":relieved:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x93"), ":nerd:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x9b"), ":stuck_out_tongue:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x9c"), ":stuck_out_tongue_winking_eye:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x9d"), ":stuck_out_tongue_closed_eyes:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xa4"), ":drooling_face:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x92"), ":unamused:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x93"), ":sweat:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x94"), ":pensive:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x95"), ":confused:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x83"), ":upside_down:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x91"), ":money_mouth:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xb2"), ":astonished:"},
+ Emoji{QString::fromUtf8("\xe2\x98\xb9"), ":frowning2:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x81"), ":slight_frown:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x96"), ":confounded:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x9e"), ":disappointed:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x9f"), ":worried:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xa4"), ":triumph:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xa2"), ":cry:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xad"), ":sob:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xa6"), ":frowning:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xa7"), ":anguished:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xa8"), ":fearful:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xa9"), ":weary:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xac"), ":grimacing:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xb0"), ":cold_sweat:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xb1"), ":scream:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xb3"), ":flushed:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xb5"), ":dizzy_face:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xa1"), ":rage:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xa0"), ":angry:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x87"), ":innocent:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xa0"), ":cowboy:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xa1"), ":clown:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xa5"), ":lying_face:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xb7"), ":mask:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x92"), ":thermometer_face:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x95"), ":head_bandage:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xa2"), ":nauseated_face:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xa7"), ":sneezing_face:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\x88"), ":smiling_imp:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xbf"), ":imp:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xb9"), ":japanese_ogre:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xba"), ":japanese_goblin:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\x80"), ":skull:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xbb"), ":ghost:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xbd"), ":alien:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x96"), ":robot:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\xa9"), ":poop:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xba"), ":smiley_cat:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xb8"), ":smile_cat:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xb9"), ":joy_cat:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xbb"), ":heart_eyes_cat:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xbc"), ":smirk_cat:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xbd"), ":kissing_cat:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x80"), ":scream_cat:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xbf"), ":crying_cat_face:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x98\xbe"), ":pouting_cat:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xa6"), ":boy:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xa7"), ":girl:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xa8"), ":man:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xa9"), ":woman:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xb4"), ":older_man:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xb5"), ":older_woman:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xb6"), ":baby:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xbc"), ":angel:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xae"), ":cop:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x95\xb5"), ":spy:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\x82"), ":guardsman:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xb7"), ":construction_worker:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xb3"), ":man_with_turban:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xb1"), ":person_with_blond_hair:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x8e\x85"), ":santa:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xb6"), ":mrs_claus:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xb8"), ":princess:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xb4"), ":prince:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xb0"), ":bride_with_veil:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xb5"), ":man_in_tuxedo:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xb0"), ":pregnant_woman:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xb2"), ":man_with_gua_pi_mao:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x8d"), ":person_frowning:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x8e"), ":person_with_pouting_face:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x85"), ":no_good:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x86"), ":ok_woman:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\x81"), ":information_desk_person:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x8b"), ":raising_hand:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x87"), ":bow:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xa6"), ":face_palm:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xb7"), ":shrug:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\x86"), ":massage:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\x87"), ":haircut:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x9a\xb6"), ":walking:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x8f\x83"), ":runner:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\x83"), ":dancer:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x95\xba"), ":man_dancing:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xaf"), ":dancers:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x97\xa3"), ":speaking_head:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xa4"), ":bust_in_silhouette:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xa5"), ":busts_in_silhouette:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xab"), ":couple:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xac"), ":two_men_holding_hands:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xad"), ":two_women_holding_hands:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\x8f"), ":couplekiss:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\x91"), ":couple_with_heart:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xaa"), ":family:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\xaa"), ":muscle:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\xb3"), ":selfie:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x88"), ":point_left:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x89"), ":point_right:"},
+ Emoji{QString::fromUtf8("\xe2\x98\x9d"), ":point_up:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x86"), ":point_up_2:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x96\x95"), ":middle_finger:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x87"), ":point_down:"},
+ Emoji{QString::fromUtf8("\xe2\x9c\x8c"), ":v:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x9e"), ":fingers_crossed:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x96\x96"), ":vulcan:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x98"), ":metal:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x99"), ":call_me:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x96\x90"), ":hand_splayed:"},
+ Emoji{QString::fromUtf8("\xe2\x9c\x8b"), ":raised_hand:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x8c"), ":ok_hand:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x8d"), ":thumbsup:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x8e"), ":thumbsdown:"},
+ Emoji{QString::fromUtf8("\xe2\x9c\x8a"), ":fist:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x8a"), ":punch:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x9b"), ":left_facing_fist:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x9c"), ":right_facing_fist:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x9a"), ":raised_back_of_hand:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x8b"), ":wave:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x8f"), ":clap:"},
+ Emoji{QString::fromUtf8("\xe2\x9c\x8d"), ":writing_hand:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x90"), ":open_hands:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x8c"), ":raised_hands:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x99\x8f"), ":pray:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\xa4\x9d"), ":handshake:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\x85"), ":nail_care:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x82"), ":ear:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x83"), ":nose:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xa3"), ":footprints:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x80"), ":eyes:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x81"), ":eye:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x85"), ":tongue:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x84"), ":lips:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\x8b"), ":kiss:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\xa4"), ":zzz:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x93"), ":eyeglasses:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x95\xb6"), ":dark_sunglasses:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x94"), ":necktie:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x95"), ":shirt:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x96"), ":jeans:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x97"), ":dress:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x98"), ":kimono:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x99"), ":bikini:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x9a"), ":womans_clothes:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x9b"), ":purse:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x9c"), ":handbag:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x9d"), ":pouch:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x8e\x92"), ":school_satchel:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x9e"), ":mans_shoe:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x9f"), ":athletic_shoe:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xa0"), ":high_heel:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xa1"), ":sandal:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\xa2"), ":boot:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x91"), ":crown:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x91\x92"), ":womans_hat:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x8e\xa9"), ":tophat:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x8e\x93"), ":mortar_board:"},
+ Emoji{QString::fromUtf8("\xe2\x9b\x91"), ":helmet_with_cross:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\x84"), ":lipstick:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\x8d"), ":ring:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x8c\x82"), ":closed_umbrella:"},
+ Emoji{QString::fromUtf8("\xf0\x9f\x92\xbc"), ":briefcase:"},
};
const QList<Emoji> EmojiProvider::nature = {
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x88"), ":see_no_evil:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x89"), ":hear_no_evil:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x99\x8a"), ":speak_no_evil:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\xa6"), ":sweat_drops:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x92\xa8"), ":dash:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xb5"), ":monkey_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x92"), ":monkey:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa6\x8d"), ":gorilla:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xb6"), ":dog:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x95"), ":dog2:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xa9"), ":poodle:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xba"), ":wolf:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa6\x8a"), ":fox:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xb1"), ":cat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x88"), ":cat2:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa6\x81"), ":lion_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xaf"), ":tiger:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x85"), ":tiger2:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x86"), ":leopard:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xb4"), ":horse:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x8e"), ":racehorse:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa6\x8c"), ":deer:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa6\x84"), ":unicorn:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xae"), ":cow:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x82"), ":ox:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x83"), ":water_buffalo:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x84"), ":cow2:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xb7"), ":pig:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x96"), ":pig2:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x97"), ":boar:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xbd"), ":pig_nose:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x8f"), ":ram:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x91"), ":sheep:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x90"), ":goat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xaa"), ":dromedary_camel:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xab"), ":camel:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x98"), ":elephant:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa6\x8f"), ":rhino:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xad"), ":mouse:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x81"), ":mouse2:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x80"), ":rat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xb9"), ":hamster:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xb0"), ":rabbit:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x87"), ":rabbit2:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xbf"), ":chipmunk:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa6\x87"), ":bat:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xbb"), ":bear:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xa8"), ":koala:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xbc"), ":panda_face:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xbe"), ":feet:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\xa6\x83"), ":turkey:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x94"), ":chicken:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\x93"), ":rooster:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xa3"), ":hatching_chick:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xa4"), ":baby_chick:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xa5"), ":hatched_chick:" },
- Emoji{ QString::fromUtf8("\xf0\x9f\x90\xa6"), ":bird:" },
-