Mercurial > minori
annotate src/gui/widgets/clickable_label.cc @ 187:9613d72b097e
*: multiple performance improvements
like marking `static const` when it makes sense...
date: change old stupid heap-based method to a structure which should
make copying the thing actually make a copy.
also many performance-based changes, like removing the std::tie
dependency and forward-declaring nlohmann json
*: replace every instance of QString::fromUtf8 to Strings::ToQString.
the main difference is that our function will always convert exactly
what is in the string, while some other times it would only convert
up to the nearest NUL byte
| author | Paper <mrpapersonic@gmail.com> |
|---|---|
| date | Wed, 06 Dec 2023 13:43:54 -0500 |
| parents | 9b2b41f83a5e |
| children | 4d461ef7d424 |
| rev | line source |
|---|---|
|
67
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
1 #include "gui/widgets/clickable_label.h" |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
2 /* NOTE: this can likely be moved to poster.cpp, as |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
3 it's really the only place this will ever be used */ |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
4 |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
5 ClickableLabel::ClickableLabel(QWidget* parent) : QLabel(parent) { |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
6 setCursor(Qt::PointingHandCursor); |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
7 } |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
8 |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
9 ClickableLabel::~ClickableLabel() { |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
10 } |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
11 |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
12 void ClickableLabel::mousePressEvent(QMouseEvent*) { |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
13 emit clicked(); |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
14 } |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
15 |
|
442065432549
poster: make posters link to AniList
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
16 #include "gui/widgets/moc_clickable_label.cpp" |
