Merge branch 'master' of https://github.com/redsky17/nheko
@ -1,118 +1,112 @@ |
|||||||
language: cpp |
language: cpp |
||||||
sudo: required |
sudo: required |
||||||
dist: trusty |
dist: trusty |
||||||
|
|
||||||
notifications: |
notifications: |
||||||
email: false |
|
||||||
webhooks: |
webhooks: |
||||||
urls: |
urls: |
||||||
- https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MHJlZF9za3klM0FvY2Vhbi5qb2Vkb25vZnJ5LmNvbS8lMjFldkFxa1BIWnVQSElHZWVuaGklM0FvY2Vhbi5qb2Vkb25vZnJ5LmNvbQ |
- https://scalar.vector.im/api/neb/services/hooks/dHJhdmlzLWNpLyU0MHJlZF9za3klM0FvY2Vhbi5qb2Vkb25vZnJ5LmNvbS8lMjFldkFxa1BIWnVQSElHZWVuaGklM0FvY2Vhbi5qb2Vkb25vZnJ5LmNvbQ |
||||||
on_success: always |
on_success: always |
||||||
on_failure: always |
on_failure: always |
||||||
on_start: never |
on_start: never |
||||||
|
email: false |
||||||
|
|
||||||
matrix: |
matrix: |
||||||
include: |
include: |
||||||
- os: osx |
- os: osx |
||||||
osx_image: xcode9 |
compiler: clang |
||||||
compiler: clang |
osx_image: xcode9 |
||||||
env: |
env: |
||||||
- DEPLOYMENT=1 |
- DEPLOYMENT=1 |
||||||
- USE_BUNDLED_BOOST=0 |
- USE_BUNDLED_BOOST=0 |
||||||
- USE_BUNDLED_CMARK=0 |
- USE_BUNDLED_CMARK=0 |
||||||
- os: linux |
- os: linux |
||||||
compiler: gcc |
compiler: gcc |
||||||
env: |
env: |
||||||
- CXX_COMPILER=g++-5 |
- CXX_COMPILER=g++-5 |
||||||
- C_COMPILER=gcc-5 |
- C_COMPILER=gcc-5 |
||||||
- QT_VERSION="-5.10.1" |
- QT_VERSION="-5.10.1" |
||||||
- QT_PKG=510 |
- QT_PKG=510 |
||||||
- DEPLOYMENT=1 |
- DEPLOYMENT=1 |
||||||
- USE_BUNDLED_BOOST=1 |
- USE_BUNDLED_BOOST=1 |
||||||
- USE_BUNDLED_CMARK=1 |
- USE_BUNDLED_CMARK=1 |
||||||
addons: |
addons: |
||||||
apt: |
apt: |
||||||
sources: |
sources: ["ubuntu-toolchain-r-test"] |
||||||
- ubuntu-toolchain-r-test |
packages: ["g++-5", "ninja-build"] |
||||||
packages: |
- os: linux |
||||||
- g++-5 |
compiler: gcc |
||||||
- ninja-build |
env: |
||||||
- os: linux |
- CXX_COMPILER=g++-8 |
||||||
compiler: gcc |
- C_COMPILER=gcc-8 |
||||||
env: |
- QT_VERSION=571 |
||||||
- CXX_COMPILER=g++-8 |
- QT_PKG=57 |
||||||
- C_COMPILER=gcc-8 |
- USE_BUNDLED_BOOST=1 |
||||||
- QT_VERSION=571 |
- USE_BUNDLED_CMARK=1 |
||||||
- QT_PKG=57 |
addons: |
||||||
- USE_BUNDLED_BOOST=1 |
apt: |
||||||
- USE_BUNDLED_CMARK=1 |
sources: ["ubuntu-toolchain-r-test"] |
||||||
addons: |
packages: ["g++-8", "ninja-build"] |
||||||
apt: |
- os: linux |
||||||
sources: |
compiler: clang |
||||||
- ubuntu-toolchain-r-test |
env: |
||||||
packages: |
- CXX_COMPILER=clang++-5.0 |
||||||
- g++-8 |
- C_COMPILER=clang-5.0 |
||||||
- ninja-build |
- QT_VERSION=592 |
||||||
- os: linux |
- QT_PKG=59 |
||||||
compiler: clang |
- USE_BUNDLED_BOOST=1 |
||||||
env: |
- USE_BUNDLED_CMARK=1 |
||||||
- CXX_COMPILER=clang++-5.0 |
addons: |
||||||
- C_COMPILER=clang-5.0 |
apt: |
||||||
- QT_VERSION=592 |
sources: ["ubuntu-toolchain-r-test", "llvm-toolchain-trusty-5.0"] |
||||||
- QT_PKG=59 |
packages: ["clang-5.0", "g++-7", "ninja-build"] |
||||||
- USE_BUNDLED_BOOST=1 |
|
||||||
- USE_BUNDLED_CMARK=1 |
|
||||||
addons: |
|
||||||
apt: |
|
||||||
sources: |
|
||||||
- ubuntu-toolchain-r-test |
|
||||||
- llvm-toolchain-trusty-5.0 |
|
||||||
packages: |
|
||||||
- clang-5.0 |
|
||||||
- g++-7 |
|
||||||
- ninja-build |
|
||||||
before_install: |
before_install: |
||||||
- export CXX=${CXX_COMPILER} |
- export CXX=${CXX_COMPILER} |
||||||
- export CC=${C_COMPILER} |
- export CC=${C_COMPILER} |
||||||
|
# Use TRAVIS_TAG if defined, or the short commit SHA otherwise |
||||||
|
- export VERSION=${TRAVIS_TAG:-$(git rev-parse --short HEAD)} |
||||||
install: |
install: |
||||||
- "./.ci/install.sh" |
- ./.ci/install.sh |
||||||
- export PATH=/usr/local/bin:${PATH} |
- export PATH=/usr/local/bin:${PATH} |
||||||
|
|
||||||
script: |
script: |
||||||
- "./.ci/script.sh" |
- ./.ci/script.sh |
||||||
- sed -i -e "s/VERSION_NAME_VALUE/${TRAVIS_TAG}/g" ./.ci/bintray-release.json || true |
- sed -i -e "s/VERSION_NAME_VALUE/${VERSION}/g" ./.ci/bintray-release.json || true |
||||||
- cp ./.ci/bintray-release.json . |
- cp ./.ci/bintray-release.json . |
||||||
deploy: |
deploy: |
||||||
- provider: bintray |
- provider: bintray |
||||||
user: redsky17 |
user: "redsky17" |
||||||
key: |
|
||||||
secure: CAVzWZPxYSOTollo9bpD4tvEbfxXjqelc32aApV48GKyJrMQljQ+mvSe25BuUtnDehxnw8affgGX23AYXmvG8P7w4hM2d7//8Lgan1zCmusV8JE432jknev6X641B4cvrywqSe0Dj3l0kS9Xgirq4BGavlI0y2vUjeJfQEv0y8GYoI72LwgyH0i82v/1Qi92Fh8429IJIb0eKmC1wGWXCmo2kd8StZRL5mSlc4TmyWI0SHpA5GrLMiQwLAuD7DjDl5mpaK2yQx+H4vBcI2SUMvmlHGgVjXikJG5gURlHbnIaaBFvO67INc1/65KtMokWuMP12zxqJiaMPtsAskOpQv4FLAYDfnigH3NxufyOIGp2cxS5RhJDQhbNsxHEDnUo1kHcO23ZYNWCuC1yUdn0RXzKhWcUsz8mKF8KJs22Ty4VjfUMZ+vqK/AbHyq4rkl8DizVRZqKF1KjSWrSv/2sT4itnHk9pmcgxAYfGuALcjrJJveI4MTwDhzXB62CKnMOqLq3sAMqvE0+BdA0BykQr7qrKtptuyP2/OFx6RDbfHQl5Klkb6cSOjxm0oUzh/8iaxgsVdCrhfE67eqkhFZ+a8lJkB/rZ4zSK1Q2Cp4nLtnxenUCW+Ptk2l7zZN6kXM1/+tcgqVROChYJ6asMUpsjFOOAVQ8SZ4TcxX1rq+pxlA= |
|
||||||
skip_cleanup: true |
|
||||||
overwrite: true |
|
||||||
file: bintray-release.json |
|
||||||
on: |
|
||||||
condition: "$DEPLOYMENT == 1" |
|
||||||
repo: Nheko-Reborn/nheko |
|
||||||
tags: true |
|
||||||
deploy: |
|
||||||
- skip_cleanup: true |
|
||||||
overwrite: true |
|
||||||
provider: releases |
|
||||||
api_key: |
|
||||||
secure: JROFCxI1Dj0j8GKftCk1M16PovGmbCQb/i6JKm+YKWIhoYoMJBFl3TzhN0D0KlT8VeClZ0WV4MOom6elAkxlYTGR1kcoJ5ESt/AS0B1ULxq2exbmqzqJgJJBb65JVo4nglLHZPnUHOY5s/QGtg05nPeexcK8b3lFvhMRI+Y5jqX9i4FGsEBk6tG2OLfXB0odU8f6rhEeIGWgJw1LVyiTk3VoQcJtBi7Vsg3p4othMaLDlkVHsepNY+xSO14NbNpUjXSzYWZJEM9HqCOaOlAjZR5Q0Ad365TqN9zj6NOVwxEdN4Zl3/Ux838Or6TobhdhGjqqO2JmWt6C+xV4XJ9wX+8LPb+hYYVBrItp32g3grtW/e4nNsp4j3nm1P87kzKPxC4oAaskyn0dlwC4Vo3LH67beQiceAIuM9ywej4Zwr94+MeKjIVtqI6Qz7Tjlt1pFGI1lmfkKQOXiFlkwPbyCPV3smpJ1WSOC4Npkht6tFPBlLV2DFySYUMRAdH2RwBxWhjzwsSJlx/dEKUUL5yffKtg2tANM6aCCyXMEqEXXVkFe9e9ymPbGmmQuf56xo3rYQj5BcQWA9JHAancqLkxoR0rbRBBmai5qDQP7rBss/HR7Uec5xSnYkS6YYI9zpZ+FTfPa7lnVI3c8hj+ukua1EnsYytB8F8l95jrO8fnTxU= |
|
||||||
file_glob: true |
|
||||||
file: |
|
||||||
- nheko-${TRAVIS_TAG}-x86_64.AppImage |
|
||||||
on: |
|
||||||
condition: "$TRAVIS_OS_NAME == linux && $DEPLOYMENT == 1" |
|
||||||
repo: Nheko-Reborn/nheko |
|
||||||
tags: true |
|
||||||
- skip_cleanup: true |
|
||||||
overwrite: true |
|
||||||
provider: releases |
|
||||||
api_key: |
|
||||||
secure: JROFCxI1Dj0j8GKftCk1M16PovGmbCQb/i6JKm+YKWIhoYoMJBFl3TzhN0D0KlT8VeClZ0WV4MOom6elAkxlYTGR1kcoJ5ESt/AS0B1ULxq2exbmqzqJgJJBb65JVo4nglLHZPnUHOY5s/QGtg05nPeexcK8b3lFvhMRI+Y5jqX9i4FGsEBk6tG2OLfXB0odU8f6rhEeIGWgJw1LVyiTk3VoQcJtBi7Vsg3p4othMaLDlkVHsepNY+xSO14NbNpUjXSzYWZJEM9HqCOaOlAjZR5Q0Ad365TqN9zj6NOVwxEdN4Zl3/Ux838Or6TobhdhGjqqO2JmWt6C+xV4XJ9wX+8LPb+hYYVBrItp32g3grtW/e4nNsp4j3nm1P87kzKPxC4oAaskyn0dlwC4Vo3LH67beQiceAIuM9ywej4Zwr94+MeKjIVtqI6Qz7Tjlt1pFGI1lmfkKQOXiFlkwPbyCPV3smpJ1WSOC4Npkht6tFPBlLV2DFySYUMRAdH2RwBxWhjzwsSJlx/dEKUUL5yffKtg2tANM6aCCyXMEqEXXVkFe9e9ymPbGmmQuf56xo3rYQj5BcQWA9JHAancqLkxoR0rbRBBmai5qDQP7rBss/HR7Uec5xSnYkS6YYI9zpZ+FTfPa7lnVI3c8hj+ukua1EnsYytB8F8l95jrO8fnTxU= |
|
||||||
file: nheko-${TRAVIS_TAG}.dmg |
|
||||||
on: |
|
||||||
condition: "$TRAVIS_OS_NAME == osx && $DEPLOYMENT == 1" |
|
||||||
repo: Nheko-Reborn/nheko |
|
||||||
tags: true |
|
||||||
key: |
key: |
||||||
secure: q4V4k6mAEDBgA/13NiCw+5/Jh7/xmtRBybFSr/0I6JTatkaLs2pj4zIRyHIrBVZtOd1oFVmq6aDHXXR+fbSo1Euj3s5Eo+7TTAqKAlyRMcme/+0S0bfZfisA+6LskZcmacq1FzEkAXd5OjMXB6rIakDC1sgkgo5bpM9w5r/9ZFXXgCfDzW07LJOypDyph0Gg4rlU22o5fAcKmuglTgbJWceznv46HcHvW1s2JzkJQugpAh8LkpiEkuNnH1wZ0WDI1wQQFI+ti5GSBkHicS2kgkOL3IlCvfzS0ym85XF1FTncqDEClxudwWOhVm3qpSOm28I+lB4i0ha1LNzsl4S8ClVTxJRJMJBHmLmkh3lOasAn6v8Vc2WASygfnTC2VGMaRWYMfphLm7e1CcT8OPfoNcEJLvR6YTxgm7AadomOV4f8q9FUwvrkyJkbR+sV+DkJ5yQ/uF1pDOMnUUzjDYpCfYXEECqh8gH8iUXhWabrJyaFlzZaOsai/ujyepLOkUtJaGcOrnCHlOQlfXgBhmOCUFau8ByJhSrHGGlBPb9JhC/jzWq++dmN/5zn1coc4kNqKB55h1AFVtTTW7t14RzNKER2/opl7LFoywvyMyERusmxHfGzNihFHO4GoBY+WtEpphCAdqCjLaJM95w9spQ0sgR0/qy4883MhTWBctT9K6s= |
secure: "2C+ESOClZdNCDzfUfE8Rcdn9+BM3/5x1lebGS0qRxICMAuylx50C8RAxlqKIFNI1J+IMnj5xhK+1oWsLg6wUdo8B3JocvM6P1NbC/WwfY5UJVwtSmzcqvEC+IjM90Bng8OoM5f6ED3IAUyYPBgo8J14+2l5Oruvr99t0mrpniLXDf66TJrI9u/+05JYa2pm0EWlQkDVaziI+96zAt1pMIX9Z/ToTmUbq2OAlHaN8H4hR5aBRmYuF11FQVyARK64eqRsBV4RXKJ9DjW7BR+pQV008hQUoXrCxK8xIf/Qph9h1fz63961NJxfru62LeuZ4Z8MUcV9L+p0HYZzkhNdn5Z3QFf3SXbrVCYs6LK6+uKHpmYS7vB5XwjDx9SWc2szsd5OVKJg3YEdBcC4KUSL3VEbBHDSQ3GFsVKoBsZvopwHkyCmPotY47HtEiPBLdEcsOvcVyeU5Gfq9EOp9dB+nJbNrujBgav1l13CorkBG2rgD+NRivV1otclXnPsIj85ySrc6xk0VDN3zogLAdLw0f+fNOaK17N8GmhPbCu/iX2Vjem/fdjh4NPC4pSNDei2MoWUfqGBmoTxuQEsZeywigwV2c51W9RZuwo8X810N3ehVcBmmNyLjbKmYT+8Kp+dJbaf/ErFnvdZl06mX2bgyxFakv5iQY3dwX4WYHvl77c4=" |
||||||
|
skip_cleanup: true |
||||||
|
overwrite: true |
||||||
|
file: bintray-release.json |
||||||
|
on: |
||||||
|
condition: "$DEPLOYMENT == 1" |
||||||
|
repo: Nheko-Reborn/nheko |
||||||
|
tags: false |
||||||
|
all_branches: true |
||||||
|
deploy: |
||||||
|
- skip_cleanup: true |
||||||
|
overwrite: true |
||||||
|
provider: releases |
||||||
|
api_key: |
||||||
|
secure: "JROFCxI1Dj0j8GKftCk1M16PovGmbCQb/i6JKm+YKWIhoYoMJBFl3TzhN0D0KlT8VeClZ0WV4MOom6elAkxlYTGR1kcoJ5ESt/AS0B1ULxq2exbmqzqJgJJBb65JVo4nglLHZPnUHOY5s/QGtg05nPeexcK8b3lFvhMRI+Y5jqX9i4FGsEBk6tG2OLfXB0odU8f6rhEeIGWgJw1LVyiTk3VoQcJtBi7Vsg3p4othMaLDlkVHsepNY+xSO14NbNpUjXSzYWZJEM9HqCOaOlAjZR5Q0Ad365TqN9zj6NOVwxEdN4Zl3/Ux838Or6TobhdhGjqqO2JmWt6C+xV4XJ9wX+8LPb+hYYVBrItp32g3grtW/e4nNsp4j3nm1P87kzKPxC4oAaskyn0dlwC4Vo3LH67beQiceAIuM9ywej4Zwr94+MeKjIVtqI6Qz7Tjlt1pFGI1lmfkKQOXiFlkwPbyCPV3smpJ1WSOC4Npkht6tFPBlLV2DFySYUMRAdH2RwBxWhjzwsSJlx/dEKUUL5yffKtg2tANM6aCCyXMEqEXXVkFe9e9ymPbGmmQuf56xo3rYQj5BcQWA9JHAancqLkxoR0rbRBBmai5qDQP7rBss/HR7Uec5xSnYkS6YYI9zpZ+FTfPa7lnVI3c8hj+ukua1EnsYytB8F8l95jrO8fnTxU=" |
||||||
|
file_glob: true |
||||||
|
file: |
||||||
|
- nheko-${VERSION}-x86_64.AppImage |
||||||
|
on: |
||||||
|
condition: "$TRAVIS_OS_NAME == linux && $DEPLOYMENT == 1" |
||||||
|
repo: Nheko-Reborn/nheko |
||||||
|
tags: true |
||||||
|
- skip_cleanup: true |
||||||
|
overwrite: true |
||||||
|
provider: releases |
||||||
|
api_key: |
||||||
|
secure: "JROFCxI1Dj0j8GKftCk1M16PovGmbCQb/i6JKm+YKWIhoYoMJBFl3TzhN0D0KlT8VeClZ0WV4MOom6elAkxlYTGR1kcoJ5ESt/AS0B1ULxq2exbmqzqJgJJBb65JVo4nglLHZPnUHOY5s/QGtg05nPeexcK8b3lFvhMRI+Y5jqX9i4FGsEBk6tG2OLfXB0odU8f6rhEeIGWgJw1LVyiTk3VoQcJtBi7Vsg3p4othMaLDlkVHsepNY+xSO14NbNpUjXSzYWZJEM9HqCOaOlAjZR5Q0Ad365TqN9zj6NOVwxEdN4Zl3/Ux838Or6TobhdhGjqqO2JmWt6C+xV4XJ9wX+8LPb+hYYVBrItp32g3grtW/e4nNsp4j3nm1P87kzKPxC4oAaskyn0dlwC4Vo3LH67beQiceAIuM9ywej4Zwr94+MeKjIVtqI6Qz7Tjlt1pFGI1lmfkKQOXiFlkwPbyCPV3smpJ1WSOC4Npkht6tFPBlLV2DFySYUMRAdH2RwBxWhjzwsSJlx/dEKUUL5yffKtg2tANM6aCCyXMEqEXXVkFe9e9ymPbGmmQuf56xo3rYQj5BcQWA9JHAancqLkxoR0rbRBBmai5qDQP7rBss/HR7Uec5xSnYkS6YYI9zpZ+FTfPa7lnVI3c8hj+ukua1EnsYytB8F8l95jrO8fnTxU=" |
||||||
|
file: nheko-${VERSION}.dmg |
||||||
|
on: |
||||||
|
condition: "$TRAVIS_OS_NAME == osx && $DEPLOYMENT == 1" |
||||||
|
repo: Nheko-Reborn/nheko |
||||||
|
tags: true |
@ -0,0 +1,17 @@ |
|||||||
|
#ifndef JDENTICONINTERFACE_H |
||||||
|
#define JDENTICONINTERFACE_H |
||||||
|
|
||||||
|
#include <QString> |
||||||
|
|
||||||
|
class JdenticonInterface |
||||||
|
{ |
||||||
|
public: |
||||||
|
virtual ~JdenticonInterface() {} |
||||||
|
virtual QString generate(const QString &message, uint16_t size) = 0; |
||||||
|
}; |
||||||
|
|
||||||
|
#define JdenticonInterface_iid "redsky17.Qt.JdenticonInterface" |
||||||
|
|
||||||
|
Q_DECLARE_INTERFACE(JdenticonInterface, JdenticonInterface_iid) |
||||||
|
|
||||||
|
#endif // JDENTICONINTERFACE_H
|
@ -0,0 +1,202 @@ |
|||||||
|
|
||||||
|
Apache License |
||||||
|
Version 2.0, January 2004 |
||||||
|
http://www.apache.org/licenses/ |
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION |
||||||
|
|
||||||
|
1. Definitions. |
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction, |
||||||
|
and distribution as defined by Sections 1 through 9 of this document. |
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by |
||||||
|
the copyright owner that is granting the License. |
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all |
||||||
|
other entities that control, are controlled by, or are under common |
||||||
|
control with that entity. For the purposes of this definition, |
||||||
|
"control" means (i) the power, direct or indirect, to cause the |
||||||
|
direction or management of such entity, whether by contract or |
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the |
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity. |
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity |
||||||
|
exercising permissions granted by this License. |
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications, |
||||||
|
including but not limited to software source code, documentation |
||||||
|
source, and configuration files. |
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical |
||||||
|
transformation or translation of a Source form, including but |
||||||
|
not limited to compiled object code, generated documentation, |
||||||
|
and conversions to other media types. |
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or |
||||||
|
Object form, made available under the License, as indicated by a |
||||||
|
copyright notice that is included in or attached to the work |
||||||
|
(an example is provided in the Appendix below). |
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object |
||||||
|
form, that is based on (or derived from) the Work and for which the |
||||||
|
editorial revisions, annotations, elaborations, or other modifications |
||||||
|
represent, as a whole, an original work of authorship. For the purposes |
||||||
|
of this License, Derivative Works shall not include works that remain |
||||||
|
separable from, or merely link (or bind by name) to the interfaces of, |
||||||
|
the Work and Derivative Works thereof. |
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including |
||||||
|
the original version of the Work and any modifications or additions |
||||||
|
to that Work or Derivative Works thereof, that is intentionally |
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner |
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of |
||||||
|
the copyright owner. For the purposes of this definition, "submitted" |
||||||
|
means any form of electronic, verbal, or written communication sent |
||||||
|
to the Licensor or its representatives, including but not limited to |
||||||
|
communication on electronic mailing lists, source code control systems, |
||||||
|
and issue tracking systems that are managed by, or on behalf of, the |
||||||
|
Licensor for the purpose of discussing and improving the Work, but |
||||||
|
excluding communication that is conspicuously marked or otherwise |
||||||
|
designated in writing by the copyright owner as "Not a Contribution." |
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity |
||||||
|
on behalf of whom a Contribution has been received by Licensor and |
||||||
|
subsequently incorporated within the Work. |
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of |
||||||
|
this License, each Contributor hereby grants to You a perpetual, |
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable |
||||||
|
copyright license to reproduce, prepare Derivative Works of, |
||||||
|
publicly display, publicly perform, sublicense, and distribute the |
||||||
|
Work and such Derivative Works in Source or Object form. |
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of |
||||||
|
this License, each Contributor hereby grants to You a perpetual, |
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable |
||||||
|
(except as stated in this section) patent license to make, have made, |
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work, |
||||||
|
where such license applies only to those patent claims licensable |
||||||
|
by such Contributor that are necessarily infringed by their |
||||||
|
Contribution(s) alone or by combination of their Contribution(s) |
||||||
|
with the Work to which such Contribution(s) was submitted. If You |
||||||
|
institute patent litigation against any entity (including a |
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work |
||||||
|
or a Contribution incorporated within the Work constitutes direct |
||||||
|
or contributory patent infringement, then any patent licenses |
||||||
|
granted to You under this License for that Work shall terminate |
||||||
|
as of the date such litigation is filed. |
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the |
||||||
|
Work or Derivative Works thereof in any medium, with or without |
||||||
|
modifications, and in Source or Object form, provided that You |
||||||
|
meet the following conditions: |
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or |
||||||
|
Derivative Works a copy of this License; and |
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices |
||||||
|
stating that You changed the files; and |
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works |
||||||
|
that You distribute, all copyright, patent, trademark, and |
||||||
|
attribution notices from the Source form of the Work, |
||||||
|
excluding those notices that do not pertain to any part of |
||||||
|
the Derivative Works; and |
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its |
||||||
|
distribution, then any Derivative Works that You distribute must |
||||||
|
include a readable copy of the attribution notices contained |
||||||
|
within such NOTICE file, excluding those notices that do not |
||||||
|
pertain to any part of the Derivative Works, in at least one |
||||||
|
of the following places: within a NOTICE text file distributed |
||||||
|
as part of the Derivative Works; within the Source form or |
||||||
|
documentation, if provided along with the Derivative Works; or, |
||||||
|
within a display generated by the Derivative Works, if and |
||||||
|
wherever such third-party notices normally appear. The contents |
||||||
|
of the NOTICE file are for informational purposes only and |
||||||
|
do not modify the License. You may add Your own attribution |
||||||
|
notices within Derivative Works that You distribute, alongside |
||||||
|
or as an addendum to the NOTICE text from the Work, provided |
||||||
|
that such additional attribution notices cannot be construed |
||||||
|
as modifying the License. |
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and |
||||||
|
may provide additional or different license terms and conditions |
||||||
|
for use, reproduction, or distribution of Your modifications, or |
||||||
|
for any such Derivative Works as a whole, provided Your use, |
||||||
|
reproduction, and distribution of the Work otherwise complies with |
||||||
|
the conditions stated in this License. |
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise, |
||||||
|
any Contribution intentionally submitted for inclusion in the Work |
||||||
|
by You to the Licensor shall be under the terms and conditions of |
||||||
|
this License, without any additional terms or conditions. |
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify |
||||||
|
the terms of any separate license agreement you may have executed |
||||||
|
with Licensor regarding such Contributions. |
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade |
||||||
|
names, trademarks, service marks, or product names of the Licensor, |
||||||
|
except as required for reasonable and customary use in describing the |
||||||
|
origin of the Work and reproducing the content of the NOTICE file. |
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or |
||||||
|
agreed to in writing, Licensor provides the Work (and each |
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS, |
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or |
||||||
|
implied, including, without limitation, any warranties or conditions |
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A |
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the |
||||||
|
appropriateness of using or redistributing the Work and assume any |
||||||
|
risks associated with Your exercise of permissions under this License. |
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory, |
||||||
|
whether in tort (including negligence), contract, or otherwise, |
||||||
|
unless required by applicable law (such as deliberate and grossly |
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be |
||||||
|
liable to You for damages, including any direct, indirect, special, |
||||||
|
incidental, or consequential damages of any character arising as a |
||||||
|
result of this License or out of the use or inability to use the |
||||||
|
Work (including but not limited to damages for loss of goodwill, |
||||||
|
work stoppage, computer failure or malfunction, or any and all |
||||||
|
other commercial damages or losses), even if such Contributor |
||||||
|
has been advised of the possibility of such damages. |
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing |
||||||
|
the Work or Derivative Works thereof, You may choose to offer, |
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity, |
||||||
|
or other liability obligations and/or rights consistent with this |
||||||
|
License. However, in accepting such obligations, You may act only |
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf |
||||||
|
of any other Contributor, and only if You agree to indemnify, |
||||||
|
defend, and hold each Contributor harmless for any liability |
||||||
|
incurred by, or claims asserted against, such Contributor by reason |
||||||
|
of your accepting any such warranty or additional liability. |
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS |
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work. |
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following |
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]" |
||||||
|
replaced with your own identifying information. (Don't include |
||||||
|
the brackets!) The text should be enclosed in the appropriate |
||||||
|
comment syntax for the file format. We also recommend that a |
||||||
|
file or class name and description of purpose be included on the |
||||||
|
same "printed page" as the copyright notice for easier |
||||||
|
identification within third-party archives. |
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner] |
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
you may not use this file except in compliance with the License. |
||||||
|
You may obtain a copy of the License at |
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0 |
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software |
||||||
|
distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
See the License for the specific language governing permissions and |
||||||
|
limitations under the License. |
After Width: | Height: | Size: 603 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 416 B |
After Width: | Height: | Size: 824 B |
After Width: | Height: | Size: 537 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 667 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 606 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 581 B |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 504 B |
After Width: | Height: | Size: 1001 B |
After Width: | Height: | Size: 439 B |
After Width: | Height: | Size: 840 B |
@ -0,0 +1,90 @@ |
|||||||
|
/*
|
||||||
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr> |
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#include <QPainter> |
||||||
|
#include <QScrollBar> |
||||||
|
#include <QStyleOption> |
||||||
|
|
||||||
|
#include "Config.h" |
||||||
|
|
||||||
|
#include "emoji/Category.h" |
||||||
|
|
||||||
|
using namespace emoji; |
||||||
|
|
||||||
|
Category::Category(QString category, std::vector<Emoji> emoji, QWidget *parent) |
||||||
|
: QWidget(parent) |
||||||
|
{ |
||||||
|
mainLayout_ = new QVBoxLayout(this); |
||||||
|
mainLayout_->setMargin(0); |
||||||
|
mainLayout_->setSpacing(0); |
||||||
|
|
||||||
|
emojiListView_ = new QListView(); |
||||||
|
itemModel_ = new QStandardItemModel(this); |
||||||
|
|
||||||
|
delegate_ = new ItemDelegate(this); |
||||||
|
data_ = new Emoji; |
||||||
|
|
||||||
|
emojiListView_->setItemDelegate(delegate_); |
||||||
|
emojiListView_->setModel(itemModel_); |
||||||
|
emojiListView_->setViewMode(QListView::IconMode); |
||||||
|
emojiListView_->setFlow(QListView::LeftToRight); |
||||||
|
emojiListView_->setResizeMode(QListView::Adjust); |
||||||
|
emojiListView_->verticalScrollBar()->setEnabled(false); |
||||||
|
emojiListView_->horizontalScrollBar()->setEnabled(false); |
||||||
|
|
||||||
|
const int cols = 7; |
||||||
|
const int rows = emoji.size() / 7; |
||||||
|
|
||||||
|
// TODO: Be precise here. Take the parent into consideration.
|
||||||
|
emojiListView_->setFixedSize(cols * 50 + 20, rows * 50 + 20); |
||||||
|
emojiListView_->setGridSize(QSize(50, 50)); |
||||||
|
emojiListView_->setDragEnabled(false); |
||||||
|
emojiListView_->setEditTriggers(QAbstractItemView::NoEditTriggers); |
||||||
|
|
||||||
|
for (const auto &e : emoji) { |
||||||
|
data_->unicode = e.unicode; |
||||||
|
|
||||||
|
auto item = new QStandardItem; |
||||||
|
item->setSizeHint(QSize(24, 24)); |
||||||
|
|
||||||
|
QVariant unicode(data_->unicode); |
||||||
|
item->setData(unicode.toString(), Qt::UserRole); |
||||||
|
|
||||||
|
itemModel_->appendRow(item); |
||||||
|
} |
||||||
|
|
||||||
|
QFont font; |
||||||
|
font.setWeight(QFont::Medium); |
||||||
|
|
||||||
|
category_ = new QLabel(category, this); |
||||||
|
category_->setFont(font); |
||||||
|
category_->setStyleSheet("margin: 20px 0 20px 8px;"); |
||||||
|
|
||||||
|
mainLayout_->addWidget(category_); |
||||||
|
mainLayout_->addWidget(emojiListView_); |
||||||
|
|
||||||
|
connect(emojiListView_, &QListView::clicked, this, &Category::clickIndex); |
||||||
|
} |
||||||
|
|
||||||
|
void |
||||||
|
Category::paintEvent(QPaintEvent *) |
||||||
|
{ |
||||||
|
QStyleOption opt; |
||||||
|
opt.init(this); |
||||||
|
QPainter p(this); |
||||||
|
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this); |
||||||
|
} |
@ -0,0 +1,59 @@ |
|||||||
|
/*
|
||||||
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr> |
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#include <QLabel> |
||||||
|
#include <QLayout> |
||||||
|
#include <QListView> |
||||||
|
#include <QStandardItemModel> |
||||||
|
|
||||||
|
#include "ItemDelegate.h" |
||||||
|
|
||||||
|
namespace emoji { |
||||||
|
|
||||||
|
class Category : public QWidget |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
|
||||||
|
public: |
||||||
|
Category(QString category, std::vector<Emoji> emoji, QWidget *parent = nullptr); |
||||||
|
|
||||||
|
signals: |
||||||
|
void emojiSelected(const QString &emoji); |
||||||
|
|
||||||
|
protected: |
||||||
|
void paintEvent(QPaintEvent *event) override; |
||||||
|
|
||||||
|
private slots: |
||||||
|
void clickIndex(const QModelIndex &index) |
||||||
|
{ |
||||||
|
emit emojiSelected(index.data(Qt::UserRole).toString()); |
||||||
|
}; |
||||||
|
|
||||||
|
private: |
||||||
|
QVBoxLayout *mainLayout_; |
||||||
|
|
||||||
|
QStandardItemModel *itemModel_; |
||||||
|
QListView *emojiListView_; |
||||||
|
|
||||||
|
emoji::Emoji *data_; |
||||||
|
emoji::ItemDelegate *delegate_; |
||||||
|
|
||||||
|
QLabel *category_; |
||||||
|
}; |
||||||
|
} // namespace emoji
|
@ -0,0 +1,48 @@ |
|||||||
|
/*
|
||||||
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr> |
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#include <QDebug> |
||||||
|
#include <QPainter> |
||||||
|
|
||||||
|
#include "emoji/ItemDelegate.h" |
||||||
|
|
||||||
|
using namespace emoji; |
||||||
|
|
||||||
|
ItemDelegate::ItemDelegate(QObject *parent) |
||||||
|
: QStyledItemDelegate(parent) |
||||||
|
{ |
||||||
|
data_ = new Emoji; |
||||||
|
} |
||||||
|
|
||||||
|
ItemDelegate::~ItemDelegate() { delete data_; } |
||||||
|
|
||||||
|
void |
||||||
|
ItemDelegate::paint(QPainter *painter, |
||||||
|
const QStyleOptionViewItem &option, |
||||||
|
const QModelIndex &index) const |
||||||
|
{ |
||||||
|
Q_UNUSED(index); |
||||||
|
|
||||||
|
QStyleOptionViewItem viewOption(option); |
||||||
|
|
||||||
|
auto emoji = index.data(Qt::UserRole).toString(); |
||||||
|
|
||||||
|
// QFont font("Emoji One");
|
||||||
|
QFont font; |
||||||
|
painter->setFont(font); |
||||||
|
painter->drawText(viewOption.rect, Qt::AlignCenter, emoji); |
||||||
|
} |
@ -0,0 +1,43 @@ |
|||||||
|
/*
|
||||||
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr> |
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#include <QModelIndex> |
||||||
|
#include <QStandardItemModel> |
||||||
|
#include <QStyledItemDelegate> |
||||||
|
|
||||||
|
#include "Provider.h" |
||||||
|
|
||||||
|
namespace emoji { |
||||||
|
|
||||||
|
class ItemDelegate : public QStyledItemDelegate |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
|
||||||
|
public: |
||||||
|
explicit ItemDelegate(QObject *parent = nullptr); |
||||||
|
~ItemDelegate(); |
||||||
|
|
||||||
|
void paint(QPainter *painter, |
||||||
|
const QStyleOptionViewItem &option, |
||||||
|
const QModelIndex &index) const override; |
||||||
|
|
||||||
|
private: |
||||||
|
Emoji *data_; |
||||||
|
}; |
||||||
|
} // namespace emoji
|
@ -0,0 +1,236 @@ |
|||||||
|
/*
|
||||||
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr> |
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#include <QPushButton> |
||||||
|
#include <QScrollBar> |
||||||
|
#include <QVBoxLayout> |
||||||
|
|
||||||
|
#include "ui/DropShadow.h" |
||||||
|
#include "ui/FlatButton.h" |
||||||
|
|
||||||
|
#include "emoji/Category.h" |
||||||
|
#include "emoji/Panel.h" |
||||||
|
|
||||||
|
using namespace emoji; |
||||||
|
|
||||||
|
Panel::Panel(QWidget *parent) |
||||||
|
: QWidget(parent) |
||||||
|
, shadowMargin_{2} |
||||||
|
, width_{370} |
||||||
|
, height_{350} |
||||||
|
, categoryIconSize_{20} |
||||||
|
{ |
||||||
|
setStyleSheet("QWidget {border: none;}" |
||||||
|
"QScrollBar:vertical { width: 0px; margin: 0px; }" |
||||||
|
"QScrollBar::handle:vertical { min-height: 30px; }"); |
||||||
|
|
||||||
|
setAttribute(Qt::WA_ShowWithoutActivating, true); |
||||||
|
setWindowFlags(Qt::Tool | Qt::FramelessWindowHint | Qt::NoDropShadowWindowHint); |
||||||
|
|
||||||
|
auto mainWidget = new QWidget(this); |
||||||
|
mainWidget->setMaximumSize(width_, height_); |
||||||
|
|
||||||
|
auto topLayout = new QVBoxLayout(this); |
||||||
|
topLayout->addWidget(mainWidget); |
||||||
|
topLayout->setMargin(shadowMargin_); |
||||||
|
topLayout->setSpacing(0); |
||||||
|
|
||||||
|
auto contentLayout = new QVBoxLayout(mainWidget); |
||||||
|
contentLayout->setMargin(0); |
||||||
|
contentLayout->setSpacing(0); |
||||||
|
|
||||||
|
auto emojiCategories = new QFrame(mainWidget); |
||||||
|
|
||||||
|
auto categoriesLayout = new QHBoxLayout(emojiCategories); |
||||||
|
categoriesLayout->setSpacing(0); |
||||||
|
categoriesLayout->setMargin(0); |
||||||
|
|
||||||
|
QIcon icon; |
||||||
|
|
||||||
|
auto peopleCategory = new FlatButton(emojiCategories); |
||||||
|
icon.addFile(":/icons/icons/emoji-categories/people.png"); |
||||||
|
peopleCategory->setIcon(icon); |
||||||
|
peopleCategory->setIconSize(QSize(categoryIconSize_, categoryIconSize_)); |
||||||
|
|
||||||
|
auto natureCategory_ = new FlatButton(emojiCategories); |
||||||
|
icon.addFile(":/icons/icons/emoji-categories/nature.png"); |
||||||
|
natureCategory_->setIcon(icon); |
||||||
|
natureCategory_->setIconSize(QSize(categoryIconSize_, categoryIconSize_)); |
||||||
|
|
||||||
|
auto foodCategory_ = new FlatButton(emojiCategories); |
||||||
|
icon.addFile(":/icons/icons/emoji-categories/foods.png"); |
||||||
|
foodCategory_->setIcon(icon); |
||||||
|
foodCategory_->setIconSize(QSize(categoryIconSize_, categoryIconSize_)); |
||||||
|
|
||||||
|
auto activityCategory = new FlatButton(emojiCategories); |
||||||
|
icon.addFile(":/icons/icons/emoji-categories/activity.png"); |
||||||
|
activityCategory->setIcon(icon); |
||||||
|
activityCategory->setIconSize(QSize(categoryIconSize_, categoryIconSize_)); |
||||||
|
|
||||||
|
auto travelCategory = new FlatButton(emojiCategories); |
||||||
|
icon.addFile(":/icons/icons/emoji-categories/travel.png"); |
||||||
|
travelCategory->setIcon(icon); |
||||||
|
travelCategory->setIconSize(QSize(categoryIconSize_, categoryIconSize_)); |
||||||
|
|
||||||
|
auto objectsCategory = new FlatButton(emojiCategories); |
||||||
|
icon.addFile(":/icons/icons/emoji-categories/objects.png"); |
||||||
|
objectsCategory->setIcon(icon); |
||||||
|
objectsCategory->setIconSize(QSize(categoryIconSize_, categoryIconSize_)); |
||||||
|
|
||||||
|
auto symbolsCategory = new FlatButton(emojiCategories); |
||||||
|
icon.addFile(":/icons/icons/emoji-categories/symbols.png"); |
||||||
|
symbolsCategory->setIcon(icon); |
||||||
|
symbolsCategory->setIconSize(QSize(categoryIconSize_, categoryIconSize_)); |
||||||
|
|
||||||
|
auto flagsCategory = new FlatButton(emojiCategories); |
||||||
|
icon.addFile(":/icons/icons/emoji-categories/flags.png"); |
||||||
|
flagsCategory->setIcon(icon); |
||||||
|
flagsCategory->setIconSize(QSize(categoryIconSize_, categoryIconSize_)); |
||||||
|
|
||||||
|
categoriesLayout->addWidget(peopleCategory); |
||||||
|
categoriesLayout->addWidget(natureCategory_); |
||||||
|
categoriesLayout->addWidget(foodCategory_); |
||||||
|
categoriesLayout->addWidget(activityCategory); |
||||||
|
categoriesLayout->addWidget(travelCategory); |
||||||
|
categoriesLayout->addWidget(objectsCategory); |
||||||
|
categoriesLayout->addWidget(symbolsCategory); |
||||||
|
categoriesLayout->addWidget(flagsCategory); |
||||||
|
|
||||||
|
scrollArea_ = new QScrollArea(this); |
||||||
|
scrollArea_->setWidgetResizable(true); |
||||||
|
scrollArea_->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); |
||||||
|
|
||||||
|
auto scrollWidget = new QWidget(this); |
||||||
|
auto scrollLayout = new QVBoxLayout(scrollWidget); |
||||||
|
|
||||||
|
scrollLayout->setMargin(0); |
||||||
|
scrollLayout->setSpacing(0); |
||||||
|
scrollArea_->setWidget(scrollWidget); |
||||||
|
|
||||||
|
auto peopleEmoji = |
||||||
|
new Category(tr("Smileys & People"), emoji_provider_.people, scrollWidget); |
||||||
|
scrollLayout->addWidget(peopleEmoji); |
||||||
|
|
||||||
|
auto natureEmoji = |
||||||
|
new Category(tr("Animals & Nature"), emoji_provider_.nature, scrollWidget); |
||||||
|
scrollLayout->addWidget(natureEmoji); |
||||||
|
|
||||||
|
auto foodEmoji = new Category(tr("Food & Drink"), emoji_provider_.food, scrollWidget); |
||||||
|
scrollLayout->addWidget(foodEmoji); |
||||||
|
|
||||||
|
auto activityEmoji = new Category(tr("Activity"), emoji_provider_.activity, scrollWidget); |
||||||
|
scrollLayout->addWidget(activityEmoji); |
||||||
|
|
||||||
|
auto travelEmoji = |
||||||
|
new Category(tr("Travel & Places"), emoji_provider_.travel, scrollWidget); |
||||||
|
scrollLayout->addWidget(travelEmoji); |
||||||
|
|
||||||
|
auto objectsEmoji = new Category(tr("Objects"), emoji_provider_.objects, scrollWidget); |
||||||
|
scrollLayout->addWidget(objectsEmoji); |
||||||
|
|
||||||
|
auto symbolsEmoji = new Category(tr("Symbols"), emoji_provider_.symbols, scrollWidget); |
||||||
|
scrollLayout->addWidget(symbolsEmoji); |
||||||
|
|
||||||
|
auto flagsEmoji = new Category(tr("Flags"), emoji_provider_.flags, scrollWidget); |
||||||
|
scrollLayout->addWidget(flagsEmoji); |
||||||
|
|
||||||
|
contentLayout->addWidget(scrollArea_); |
||||||
|
contentLayout->addWidget(emojiCategories); |
||||||
|
|
||||||
|
connect(peopleEmoji, &Category::emojiSelected, this, &Panel::emojiSelected); |
||||||
|
connect(peopleCategory, &QPushButton::clicked, [this, peopleEmoji]() { |
||||||
|
this->showCategory(peopleEmoji); |
||||||
|
}); |
||||||
|
|
||||||
|
connect(natureEmoji, &Category::emojiSelected, this, &Panel::emojiSelected); |
||||||
|
connect(natureCategory_, &QPushButton::clicked, [this, natureEmoji]() { |
||||||
|
this->showCategory(natureEmoji); |
||||||
|
}); |
||||||
|
|
||||||
|
connect(foodEmoji, &Category::emojiSelected, this, &Panel::emojiSelected); |
||||||
|
connect(foodCategory_, &QPushButton::clicked, [this, foodEmoji]() { |
||||||
|
this->showCategory(foodEmoji); |
||||||
|
}); |
||||||
|
|
||||||
|
connect(activityEmoji, &Category::emojiSelected, this, &Panel::emojiSelected); |
||||||
|
connect(activityCategory, &QPushButton::clicked, [this, activityEmoji]() { |
||||||
|
this->showCategory(activityEmoji); |
||||||
|
}); |
||||||
|
|
||||||
|
connect(travelEmoji, &Category::emojiSelected, this, &Panel::emojiSelected); |
||||||
|
connect(travelCategory, &QPushButton::clicked, [this, travelEmoji]() { |
||||||
|
this->showCategory(travelEmoji); |
||||||
|
}); |
||||||
|
|
||||||
|
connect(objectsEmoji, &Category::emojiSelected, this, &Panel::emojiSelected); |
||||||
|
connect(objectsCategory, &QPushButton::clicked, [this, objectsEmoji]() { |
||||||
|
this->showCategory(objectsEmoji); |
||||||
|
}); |
||||||
|
|
||||||
|
connect(symbolsEmoji, &Category::emojiSelected, this, &Panel::emojiSelected); |
||||||
|
connect(symbolsCategory, &QPushButton::clicked, [this, symbolsEmoji]() { |
||||||
|
this->showCategory(symbolsEmoji); |
||||||
|
}); |
||||||
|
|
||||||
|
connect(flagsEmoji, &Category::emojiSelected, this, &Panel::emojiSelected); |
||||||
|
connect(flagsCategory, &QPushButton::clicked, [this, flagsEmoji]() { |
||||||
|
this->showCategory(flagsEmoji); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
void |
||||||
|
Panel::showCategory(const Category *category) |
||||||
|
{ |
||||||
|
auto posToGo = category->mapToParent(QPoint()).y(); |
||||||
|
auto current = scrollArea_->verticalScrollBar()->value(); |
||||||
|
|
||||||
|
if (current == posToGo) |
||||||
|
return; |
||||||
|
|
||||||
|
// HACK
|
||||||
|
// If we want to go to a previous category and position the label at the top
|
||||||
|
// the 6*50 offset won't work because not all the categories have the same
|
||||||
|
// height. To ensure the category is at the top, we move to the top and go as
|
||||||
|
// normal to the next category.
|
||||||
|
if (current > posToGo) |
||||||
|
this->scrollArea_->ensureVisible(0, 0, 0, 0); |
||||||
|
|
||||||
|
posToGo += 6 * 50; |
||||||
|
this->scrollArea_->ensureVisible(0, posToGo, 0, 0); |
||||||
|
} |
||||||
|
|
||||||
|
void |
||||||
|
Panel::paintEvent(QPaintEvent *event) |
||||||
|
{ |
||||||
|
Q_UNUSED(event); |
||||||
|
|
||||||
|
QStyleOption opt; |
||||||
|
opt.init(this); |
||||||
|
QPainter p(this); |
||||||
|
style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this); |
||||||
|
|
||||||
|
DropShadow::draw(p, |
||||||
|
shadowMargin_, |
||||||
|
4.0, |
||||||
|
QColor(120, 120, 120, 92), |
||||||
|
QColor(255, 255, 255, 0), |
||||||
|
0.0, |
||||||
|
1.0, |
||||||
|
0.6, |
||||||
|
width(), |
||||||
|
height()); |
||||||
|
} |
@ -0,0 +1,66 @@ |
|||||||
|
/*
|
||||||
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr> |
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#include <QScrollArea> |
||||||
|
|
||||||
|
#include "Provider.h" |
||||||
|
|
||||||
|
namespace emoji { |
||||||
|
|
||||||
|
class Category; |
||||||
|
|
||||||
|
class Panel : public QWidget |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
|
||||||
|
public: |
||||||
|
Panel(QWidget *parent = nullptr); |
||||||
|
|
||||||
|
signals: |
||||||
|
void mouseLeft(); |
||||||
|
void emojiSelected(const QString &emoji); |
||||||
|
|
||||||
|
protected: |
||||||
|
void leaveEvent(QEvent *event) override |
||||||
|
{ |
||||||
|
emit leaving(); |
||||||
|
QWidget::leaveEvent(event); |
||||||
|
} |
||||||
|
|
||||||
|
void paintEvent(QPaintEvent *event) override; |
||||||
|
|
||||||
|
signals: |
||||||
|
void leaving(); |
||||||
|
|
||||||
|
private: |
||||||
|
void showCategory(const Category *category); |
||||||
|
|
||||||
|
Provider emoji_provider_; |
||||||
|
|
||||||
|
QScrollArea *scrollArea_; |
||||||
|
|
||||||
|
int shadowMargin_; |
||||||
|
|
||||||
|
// Panel dimensions.
|
||||||
|
int width_; |
||||||
|
int height_; |
||||||
|
|
||||||
|
int categoryIconSize_; |
||||||
|
}; |
||||||
|
} // namespace emoji
|
@ -0,0 +1,82 @@ |
|||||||
|
/*
|
||||||
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr> |
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#include <QDebug> |
||||||
|
|
||||||
|
#include "emoji/Panel.h" |
||||||
|
#include "emoji/PickButton.h" |
||||||
|
|
||||||
|
using namespace emoji; |
||||||
|
|
||||||
|
// Number of milliseconds after which the panel will be hidden
|
||||||
|
// if the mouse cursor is not on top of the widget.
|
||||||
|
constexpr int HIDE_TIMEOUT = 300; |
||||||
|
|
||||||
|
PickButton::PickButton(QWidget *parent) |
||||||
|
: FlatButton(parent) |
||||||
|
, panel_{nullptr} |
||||||
|
{ |
||||||
|
connect(&hideTimer_, &QTimer::timeout, this, &PickButton::hidePanel); |
||||||
|
connect(this, &QPushButton::clicked, this, [this]() { |
||||||
|
if (panel_ && panel_->isVisible()) { |
||||||
|
hidePanel(); |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
showPanel(); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
void |
||||||
|
PickButton::hidePanel() |
||||||
|
{ |
||||||
|
if (panel_ && !panel_->underMouse()) { |
||||||
|
hideTimer_.stop(); |
||||||
|
panel_->hide(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
void |
||||||
|
PickButton::showPanel() |
||||||
|
{ |
||||||
|
if (panel_.isNull()) { |
||||||
|
panel_ = QSharedPointer<Panel>(new Panel(this)); |
||||||
|
connect(panel_.data(), &Panel::emojiSelected, this, &PickButton::emojiSelected); |
||||||
|
connect(panel_.data(), &Panel::leaving, this, [this]() { panel_->hide(); }); |
||||||
|
} |
||||||
|
|
||||||
|
if (panel_->isVisible()) |
||||||
|
return; |
||||||
|
|
||||||
|
QPoint pos(rect().x(), rect().y()); |
||||||
|
pos = this->mapToGlobal(pos); |
||||||
|
|
||||||
|
auto panel_size = panel_->sizeHint(); |
||||||
|
|
||||||
|
auto x = pos.x() - panel_size.width() + horizontal_distance_; |
||||||
|
auto y = pos.y() - panel_size.height() - vertical_distance_; |
||||||
|
|
||||||
|
panel_->move(x, y); |
||||||
|
panel_->show(); |
||||||
|
} |
||||||
|
|
||||||
|
void |
||||||
|
PickButton::leaveEvent(QEvent *e) |
||||||
|
{ |
||||||
|
hideTimer_.start(HIDE_TIMEOUT); |
||||||
|
FlatButton::leaveEvent(e); |
||||||
|
} |
@ -0,0 +1,55 @@ |
|||||||
|
/*
|
||||||
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr> |
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#include <QEvent> |
||||||
|
#include <QTimer> |
||||||
|
#include <QWidget> |
||||||
|
|
||||||
|
#include "ui/FlatButton.h" |
||||||
|
|
||||||
|
namespace emoji { |
||||||
|
|
||||||
|
class Panel; |
||||||
|
|
||||||
|
class PickButton : public FlatButton |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
public: |
||||||
|
explicit PickButton(QWidget *parent = nullptr); |
||||||
|
|
||||||
|
signals: |
||||||
|
void emojiSelected(const QString &emoji); |
||||||
|
|
||||||
|
protected: |
||||||
|
void leaveEvent(QEvent *e) override; |
||||||
|
|
||||||
|
private: |
||||||
|
void showPanel(); |
||||||
|
void hidePanel(); |
||||||
|
|
||||||
|
// Vertical distance from panel's bottom.
|
||||||
|
int vertical_distance_ = 10; |
||||||
|
|
||||||
|
// Horizontal distance from panel's bottom right corner.
|
||||||
|
int horizontal_distance_ = 70; |
||||||
|
|
||||||
|
QSharedPointer<Panel> panel_; |
||||||
|
QTimer hideTimer_; |
||||||
|
}; |
||||||
|
} // namespace emoji
|