├── .gitignore ├── Demo ├── Demo.pro ├── Widget.cpp ├── Widget.h ├── Widget.ui ├── app.ico └── main.cpp ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # C++ objects and libs 2 | *.slo 3 | *.lo 4 | *.o 5 | *.a 6 | *.la 7 | *.lai 8 | *.so 9 | *.dll 10 | *.dylib 11 | 12 | # Qt-es 13 | object_script.*.Release 14 | object_script.*.Debug 15 | *_plugin_import.cpp 16 | /.qmake.cache 17 | /.qmake.stash 18 | *.pro.user 19 | *.pro.user.* 20 | *.qbs.user 21 | *.qbs.user.* 22 | *.moc 23 | moc_*.cpp 24 | moc_*.h 25 | qrc_*.cpp 26 | ui_*.h 27 | *.qmlc 28 | *.jsc 29 | Makefile* 30 | *build-* 31 | 32 | # Qt unit tests 33 | target_wrapper.* 34 | 35 | # QtCreator 36 | *.autosave 37 | 38 | # QtCreator Qml 39 | *.qmlproject.user 40 | *.qmlproject.user.* 41 | 42 | # QtCreator CMake 43 | CMakeLists.txt.user* 44 | -------------------------------------------------------------------------------- /Demo/Demo.pro: -------------------------------------------------------------------------------- 1 | #------------------------------------------------- 2 | # 3 | # Project created by QtCreator 2019-09-08T21:04:00 4 | # 5 | #------------------------------------------------- 6 | 7 | QT += core gui 8 | 9 | greaterThan(QT_MAJOR_VERSION, 4): QT += widgets 10 | 11 | TARGET = Demo 12 | TEMPLATE = app 13 | 14 | win32: RC_ICONS = app.ico 15 | 16 | CONFIG += c++11 17 | 18 | SOURCES += \ 19 | main.cpp \ 20 | Widget.cpp 21 | 22 | HEADERS += \ 23 | Widget.h 24 | 25 | FORMS += \ 26 | Widget.ui 27 | -------------------------------------------------------------------------------- /Demo/Widget.cpp: -------------------------------------------------------------------------------- 1 | #include "Widget.h" 2 | #include "ui_Widget.h" 3 | 4 | Widget::Widget(QWidget *parent) : 5 | QWidget(parent), 6 | ui(new Ui::Widget) 7 | { 8 | ui->setupUi(this); 9 | } 10 | 11 | Widget::~Widget() 12 | { 13 | delete ui; 14 | } 15 | -------------------------------------------------------------------------------- /Demo/Widget.h: -------------------------------------------------------------------------------- 1 | #ifndef WIDGET_H 2 | #define WIDGET_H 3 | 4 | #include 5 | 6 | namespace Ui { 7 | class Widget; 8 | } 9 | 10 | class Widget : public QWidget 11 | { 12 | Q_OBJECT 13 | 14 | public: 15 | explicit Widget(QWidget *parent = nullptr); 16 | ~Widget(); 17 | 18 | private: 19 | Ui::Widget *ui; 20 | }; 21 | 22 | #endif // WIDGET_H 23 | -------------------------------------------------------------------------------- /Demo/Widget.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | Widget 4 | 5 | 6 | 7 | 0 8 | 0 9 | 400 10 | 300 11 | 12 | 13 | 14 | Widget 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Demo/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeagean/QtEmoji/71dc9f31801ccd63fe46fb4b3b278d98674f08a9/Demo/app.ico -------------------------------------------------------------------------------- /Demo/main.cpp: -------------------------------------------------------------------------------- 1 | #include "Widget.h" 2 | #include 3 | 4 | int main(int argc, char *argv[]) 5 | { 6 | QApplication a(argc, argv); 7 | Widget w; 8 | w.resize(480, 340); 9 | w.setWindowTitle(QString::fromLocal8Bit("Qt emoji(5)")); 10 | w.show(); 11 | 12 | return a.exec(); 13 | } 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Qt君 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Qt支持的表情 2 | 3 | ## 第一弹-人物主题 4 | 5 | 😄😆😊😃😏😍😘😚😳😌 6 | 😆😁😉😜😝😀😗😙😛😴 7 | 😟😦😧😮😬😕😯😑😒😅 8 | 😓😥😩😔😞😖😨😰😣😢 9 | 😭😂😲😱😫😠😡😤😪😋 10 | 😷😎😵👿😈😐😶😇👽💛 11 | 💙💜💚💔💆💇💅👦👧👩 12 | 👨👶👵👴👱👲👳👷👮👼 13 | 👸😺😸😻😽😼🙀😿😹😾 14 | 👹👺🙈🙉🙊💂💀🐾👄💋 15 | 💧👂👀👃👅💌👤👥💬💭 16 | 17 | ## 第二弹-自然主题 18 | 19 | ☀️☔️☁️❄️⛄️⚡️🌀🌁🌊🐱 20 | 🐶🐭🐹🐰🐺🐸🐯🐨🐻🐷 21 | 🐽🐮🐗🐵🐒🐴🐎🐫🐑🐘 22 | 🐼🐍🐦🐤🐥🐣🐔🐧🐢🐛 23 | 🐝🐜🐞🐌🐙🐠🐟🐳🐋🐬 24 | 🐄🐏🐀🐃🐅🐇🐉🐐🐓🐕 25 | 🐖🐁🐂🐲🐡🐊🐪🐆🐈🐩 26 | 🐾💐🌸🌷🍀🌹🌻🌺🍁🍃 27 | 🍂🌿🍄🌵🌴🌲🌳🌰🌱🌼 28 | 🌾🐚🌐🌞🌝🌚🌑🌒🌓🌔 29 | 🌕🌖🌗🌘🌜🌛🌙🌍🌎🌏 30 | 🌋🌌⛅️ 31 | 32 | ## 第三弹-物件主题 33 | 34 | 🎍💝🎎🎒🎓🎏🎆🎇🎐🎑 35 | 🎃👻🎅🎄🎁🔔🔕🎋🎉🎊 36 | 🎈🔮💿📀💾📷📹🎥💻📺 37 | 📱☎️📞📟📠💽📼🔉🔈🔇 38 | 📢📣⌛️⏳⏰⌚️📻📡➿🔍 39 | 🔎🔓🔒🔏🔐🔑💡🔦🔆🔅 40 | 🔌🔋📲✉️📫📮🛀🛁🚿🚽 41 | 🔧🔩🔨💺💰💴💵💷💶💳 42 | 💸📧📥📤✉️📨📯📪📬📭 43 | 📦🚪🚬💣🔫🔪💊💉📄📃 44 | 📑📊📈📉📜📋📆📅📇📁 45 | 📂✂️📌📎✒️✏️📏📐📕📗 46 | 📘📙📓📔📒📚🔖📛🔬🔭 47 | 📰🏈🏀⚽️⚾️🎾🎱🏉🎳 48 | ⛳️🚵🚴🏇🏂🏊🏄🎿♠️♥️♣️♦️ 49 | 💎💍🏆🎼🎹🎻👾🎮🃏🎴 50 | 🎲🎯🀄️🎬📝📝📖🎨🎤🎧 51 | 🎺🎷🎸👞👡👠💄👢👕👔 52 | 👚👗🎽👖👘👙🎀🎩👑👒 53 | 👞🌂💼👜👝👛👓🎣☕️🍵 54 | 🍶🍼🍺🍻🍸🍹🍷🍴🍕🍔🍟 55 | 🍗🍖🍝🍛🍤🍱🍣🍥🍙🍘 56 | 🍚🍜🍲🍢🍡🥚🍞🍩🍮🍦 57 | 🍨🍧🎂🍰🍪🍫🍬🍭🍯🍎 58 | 🍏🍊🍋🍒🍇🍉🍓🍑🍈 59 | 🍌🍐🍍🍠🍆🍅🌽 60 | 61 | ## 第四弹-交通主题 62 | 63 | 🏠🏡🏫🏢🏣🏥🏦🏪🏩🏨💒⛪️🏬🏤🌇🌆🏯🏰⛺️🏭🗼🗾🗻🌄🌅🌠🗽🌉🎠🌈🎡⛲️🎢🚢🚤⛵️⛵️🚣⚓️🚀✈️🚁🚂🚊🚞🚲🚡🚟🚠🚜🚙🚘🚗🚗🚕🚖🚛🚌🚍🚨🚓🚔🚒🚑🚐🚚🚋🚉🚆🚅🚄🚈🚝🚃🚎🎫⛽️🚦🚥⚠️🚧🔰🏧🎰🚏💈♨️🏁🎌🏮🗿🎪🎭📍🚩 64 | 65 | ## 第五弹-符号主题 66 | 67 | 🔟🔢⬇️⬅️🔠🔡🔤⬆️⏬⏫🔽🔼🔃🔄⏪⏩ℹ️🆗🔀🔁🔂🆕🔝🆙🆒🆓🆖🎦📶🚻🚹🚺🚼🅿️♿️🚇🛄🚾🚰🚮🛂🛅🛃🆑🆘🆔🚫🔞📵🚯🚱🚳🚷🚭🚸⛔️💟🆚📳📴💹💱⛎🔯❎🅰️🅱️🆎🅾️💠♻️🔚🔙🔛🔜💲❌❗️⭕️✖️➕➖➗💮🕐🕜🕙🕥🕚🕦🕛🕧🕑🕝🕒🕞🕓🕟🕔🕠🕕🕡🕖🕢🕗🕣🕘🕤💯✔️☑️🔘🔗➰🔱 ◾️◽️◼️◻️⬛️⬜️✅🔲🔳⚫️⚪️🔴🔵🔷🔶🔹🔸🔺🔻 68 | 69 | ## 第六弹-人像主题 70 | 71 | 🥇🥈🥉⚗️🏺🛰👟⚛️🥑🥓🏸🥖⚖️🗳⛹⛹️‍🦇🏖🛏🐝🛎🚴🚴‍🏴🖤👱🏹🙇🙇‍🥊🏗🌯🕴🦋🤙📸🏕🕯🛶🗃🗂🥕⛓🍾🧀🐿🏙🗜🏛🥂🌩⛈🌧🌨🤡⚰️🖱👷🛋💑👩‍👨‍💏👩‍🤠🦀🖍🏏🥐🤞⚔️🥒🗡👯‍🕶🦌🏚🏜🏝🖥🕵🕊🤤🥁🦆🦅📩👁👁‍🗨🤕🤒👨‍👦👨‍👦‍👦👨‍👧👨‍👧‍👦👨‍👧‍👧👨‍👨‍👦👨‍👨‍👦‍👦👨‍👨‍👧👨‍👨‍👧‍👦👨‍👨‍👧‍👧👪👨‍👩‍👦‍👦👨‍👩‍👧👨‍👩‍👧‍👦👨‍👩‍👧‍👧👩‍👦👩‍👦‍👦👩‍👧👩‍👧‍👦👩‍👧‍👧👩‍👩‍👦👩‍👩‍👦‍👦👩‍👩‍👧👩‍👩‍👧‍👦👩‍👩‍👧‍👧🕵️‍⛴🏑🗄📽🎞🤛👊✊🤜⚜️🛬🛫🐬🌫👣🖋🦊🖼🍳🙍‍⚱️⚙️🥅🏌🦍🥗💂‍💇⚒🛠🤝🕳🌶🌭🏘🤗🏒⛸🕹🕋⌨️🛴🥝🔪🏷🏮🎚🦁🦎🔊🤥🕵👨‍🎨👨‍🚀🤸‍👨‍🍳🕺🤦‍👨‍🏭👨‍🌾👨‍🚒👨‍⚕🤵👨‍⚖🤹‍👨‍🔧👨‍💼👨‍🤾‍🤽‍👨‍🔬🤷‍👨‍🎤👨‍🎓👨‍🏫👨‍💻🍊🕰🥋💆🎖🏅🤼‍🕎🖕🥛🤑🌔🕌🛥🛵🏍🛣⛰🚵🏔🤶🏞🤢🤓🗞⏭🙅‍🙅🌃🙅‍🛢🙆‍🗝🕉📖🍊🦉🖌🥞🖇⛱🛳⏸🥜🖊🤺⛏🏓🛐🍽⏯👮🍿🥔😡🙎‍📿🤰⏮🤴🖨🏎🛤🏳️‍🌈🤚🖐🙋⏺🎗⛑🦏🗯🤖🤣🙄🏵🚣🏃💁🦂🤳🥘☘️🦈🛡⛩🛍🛒🦐⛷🛌🙁🙂🛩🤧🗣🕷🕸🗓🗒🥄🦑🏟⏹🛑⏱🎙🥙🌥🌦🌤🏄🏊🕍🌮🌡🤔🎟⏲💁‍💁🌪🖲🥃🦃🦄🙃🏐🖖🚶🗑🏋🏳️🥀🌬👩‍🎨👩‍🚀🤸‍👩‍🍳🤦‍👩‍🏭👩‍🌾👩‍🚒👩‍⚕👩‍⚖🤹‍👩‍🔧👩‍💼👩‍🤾‍🤽‍👩‍🔬🤷‍👩‍🎤👩‍🎓👩‍🏫👩‍💻👳‍🤼‍🗺🤐 72 | --------------------------------------------------------------------------------