some refactoring!
This commit is contained in:
parent
cb4a1399aa
commit
9a2fb74b42
@ -282,7 +282,7 @@ void MessagePreviewer::updateLabels(bool only_clear) {
|
|||||||
for (auto* label : lbls) {
|
for (auto* label : lbls) {
|
||||||
LabelToolbarAction* act_label = new LabelToolbarAction(this);
|
LabelToolbarAction* act_label = new LabelToolbarAction(this);
|
||||||
|
|
||||||
act_label->setIcon(Label::generateIcon(label->color()));
|
act_label->setIcon(IconFactory::generateIcon(label->color()));
|
||||||
act_label->setText(QSL(" ") + label->title());
|
act_label->setText(QSL(" ") + label->title());
|
||||||
act_label->setCheckable(true);
|
act_label->setCheckable(true);
|
||||||
act_label->setChecked(m_message.m_assignedLabelsIds.contains(label->customId()));
|
act_label->setChecked(m_message.m_assignedLabelsIds.contains(label->customId()));
|
||||||
|
@ -33,6 +33,7 @@ SettingsLocalization::SettingsLocalization(Settings* settings, QWidget* parent)
|
|||||||
m_ui->m_treeLanguages->header()->setSectionResizeMode(1, QHeaderView::ResizeMode::ResizeToContents);
|
m_ui->m_treeLanguages->header()->setSectionResizeMode(1, QHeaderView::ResizeMode::ResizeToContents);
|
||||||
m_ui->m_treeLanguages->header()->setSectionResizeMode(2, QHeaderView::ResizeMode::ResizeToContents);
|
m_ui->m_treeLanguages->header()->setSectionResizeMode(2, QHeaderView::ResizeMode::ResizeToContents);
|
||||||
m_ui->m_treeLanguages->header()->setSectionResizeMode(3, QHeaderView::ResizeMode::ResizeToContents);
|
m_ui->m_treeLanguages->header()->setSectionResizeMode(3, QHeaderView::ResizeMode::ResizeToContents);
|
||||||
|
|
||||||
connect(m_ui->m_treeLanguages, &QTreeWidget::currentItemChanged, this, &SettingsLocalization::requireRestart);
|
connect(m_ui->m_treeLanguages, &QTreeWidget::currentItemChanged, this, &SettingsLocalization::requireRestart);
|
||||||
connect(m_ui->m_treeLanguages, &QTreeWidget::currentItemChanged, this, &SettingsLocalization::dirtifySettings);
|
connect(m_ui->m_treeLanguages, &QTreeWidget::currentItemChanged, this, &SettingsLocalization::dirtifySettings);
|
||||||
}
|
}
|
||||||
@ -89,17 +90,9 @@ void SettingsLocalization::loadSettings() {
|
|||||||
item->setText(3, language.m_author);
|
item->setText(3, language.m_author);
|
||||||
item->setIcon(0, qApp->icons()->miscIcon(QSL(FLAG_ICON_SUBFOLDER) + QDir::separator() + language.m_code));
|
item->setIcon(0, qApp->icons()->miscIcon(QSL(FLAG_ICON_SUBFOLDER) + QDir::separator() + language.m_code));
|
||||||
|
|
||||||
if (perc_translated < 40) {
|
QColor col_translated = QColor::fromHsv(perc_translated, 200, 230);
|
||||||
item->setBackground(2,
|
|
||||||
qApp->skins()->colorForModel(SkinEnums::PaletteColors::FgError).value<QColor>().darker(110));
|
item->setIcon(2, IconFactory::generateIcon(col_translated));
|
||||||
}
|
|
||||||
else if (perc_translated < 75) {
|
|
||||||
item->setBackground(2,
|
|
||||||
qApp->skins()->colorForModel(SkinEnums::PaletteColors::FgError).value<QColor>().darker(90));
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
item->setBackground(2, qApp->skins()->colorForModel(SkinEnums::PaletteColors::Allright).value<QColor>());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
m_ui->m_treeLanguages->sortByColumn(0, Qt::SortOrder::AscendingOrder);
|
m_ui->m_treeLanguages->sortByColumn(0, Qt::SortOrder::AscendingOrder);
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
#include "miscellaneous/settings.h"
|
#include "miscellaneous/settings.h"
|
||||||
|
|
||||||
#include <QBuffer>
|
#include <QBuffer>
|
||||||
|
#include <QPainter>
|
||||||
|
|
||||||
IconFactory::IconFactory(QObject* parent) : QObject(parent) {}
|
IconFactory::IconFactory(QObject* parent) : QObject(parent) {}
|
||||||
|
|
||||||
@ -13,6 +14,20 @@ IconFactory::~IconFactory() {
|
|||||||
qDebugNN << LOGSEC_GUI << "Destroying IconFactory instance.";
|
qDebugNN << LOGSEC_GUI << "Destroying IconFactory instance.";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QIcon IconFactory::generateIcon(const QColor& color) {
|
||||||
|
QPixmap pxm(64, 64);
|
||||||
|
|
||||||
|
pxm.fill(Qt::GlobalColor::transparent);
|
||||||
|
|
||||||
|
QPainter paint(&pxm);
|
||||||
|
|
||||||
|
paint.setBrush(color);
|
||||||
|
paint.setPen(Qt::GlobalColor::transparent);
|
||||||
|
paint.drawEllipse(pxm.rect().marginsRemoved(QMargins(2, 2, 2, 2)));
|
||||||
|
|
||||||
|
return pxm;
|
||||||
|
}
|
||||||
|
|
||||||
QIcon IconFactory::fromByteArray(QByteArray array) {
|
QIcon IconFactory::fromByteArray(QByteArray array) {
|
||||||
if (array.isEmpty()) {
|
if (array.isEmpty()) {
|
||||||
return {};
|
return {};
|
||||||
@ -61,14 +76,11 @@ QIcon IconFactory::miscIcon(const QString& name) {
|
|||||||
void IconFactory::setupSearchPaths() {
|
void IconFactory::setupSearchPaths() {
|
||||||
auto paths = QIcon::themeSearchPaths();
|
auto paths = QIcon::themeSearchPaths();
|
||||||
|
|
||||||
paths << APP_THEME_PATH
|
paths << APP_THEME_PATH << qApp->userDataFolder() + QDir::separator() + APP_LOCAL_ICON_THEME_FOLDER
|
||||||
<< qApp->userDataFolder() + QDir::separator() + APP_LOCAL_ICON_THEME_FOLDER
|
|
||||||
<< qApp->applicationDirPath() + QDir::separator() + APP_LOCAL_ICON_THEME_FOLDER;
|
<< qApp->applicationDirPath() + QDir::separator() + APP_LOCAL_ICON_THEME_FOLDER;
|
||||||
|
|
||||||
QIcon::setThemeSearchPaths(paths);
|
QIcon::setThemeSearchPaths(paths);
|
||||||
qDebugNN << LOGSEC_GUI
|
qDebugNN << LOGSEC_GUI << "Available icon theme paths: " << paths;
|
||||||
<< "Available icon theme paths: "
|
|
||||||
<< paths;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void IconFactory::setCurrentIconTheme(const QString& theme_name) {
|
void IconFactory::setCurrentIconTheme(const QString& theme_name) {
|
||||||
@ -88,7 +100,8 @@ void IconFactory::loadCurrentIconTheme() {
|
|||||||
qDebugNN << LOGSEC_GUI << "Installed icon themes are: "
|
qDebugNN << LOGSEC_GUI << "Installed icon themes are: "
|
||||||
<< QStringList(installed_themes)
|
<< QStringList(installed_themes)
|
||||||
.replaceInStrings(QRegularExpression(QSL("^|$")), QSL("\'"))
|
.replaceInStrings(QRegularExpression(QSL("^|$")), QSL("\'"))
|
||||||
.replaceInStrings(QRegularExpression(QSL("^\\'$")), QSL("\'\'")).join(QSL(", "));
|
.replaceInStrings(QRegularExpression(QSL("^\\'$")), QSL("\'\'"))
|
||||||
|
.join(QSL(", "));
|
||||||
|
|
||||||
if (installed_themes.contains(theme_name_from_settings)) {
|
if (installed_themes.contains(theme_name_from_settings)) {
|
||||||
// Desired icon theme is installed and can be loaded.
|
// Desired icon theme is installed and can be loaded.
|
||||||
@ -109,12 +122,10 @@ void IconFactory::loadCurrentIconTheme() {
|
|||||||
// Desired icon theme is not currently available.
|
// Desired icon theme is not currently available.
|
||||||
// Activate "default" or "no" icon theme instead.
|
// Activate "default" or "no" icon theme instead.
|
||||||
#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS)
|
#if defined(Q_OS_UNIX) && !defined(Q_OS_MACOS)
|
||||||
qWarningNN << "Icon theme"
|
qWarningNN << "Icon theme" << QUOTE_W_SPACE(theme_name_from_settings)
|
||||||
<< QUOTE_W_SPACE(theme_name_from_settings)
|
|
||||||
<< "cannot be loaded because it is not installed. Activating \"no\" icon theme.";
|
<< "cannot be loaded because it is not installed. Activating \"no\" icon theme.";
|
||||||
#else
|
#else
|
||||||
qWarningNN << "Icon theme"
|
qWarningNN << "Icon theme" << QUOTE_W_SPACE(theme_name_from_settings)
|
||||||
<< QUOTE_W_SPACE(theme_name_from_settings)
|
|
||||||
<< "cannot be loaded because it is not installed. Activating \"no\" icon theme.";
|
<< "cannot be loaded because it is not installed. Activating \"no\" icon theme.";
|
||||||
QIcon::setThemeName(QSL(APP_NO_THEME));
|
QIcon::setThemeName(QSL(APP_NO_THEME));
|
||||||
#endif
|
#endif
|
||||||
@ -133,9 +144,9 @@ QStringList IconFactory::installedIconThemes() const {
|
|||||||
|
|
||||||
for (const QString& icon_path : icon_themes_paths) {
|
for (const QString& icon_path : icon_themes_paths) {
|
||||||
const QDir icon_dir(icon_path);
|
const QDir icon_dir(icon_path);
|
||||||
auto icon_paths = icon_dir.entryInfoList(QDir::Filter::Dirs | QDir::Filter::NoDotAndDotDot |
|
auto icon_paths =
|
||||||
QDir::Filter::Readable | QDir::Filter::CaseSensitive |
|
icon_dir.entryInfoList(QDir::Filter::Dirs | QDir::Filter::NoDotAndDotDot | QDir::Filter::Readable |
|
||||||
QDir::Filter::NoSymLinks,
|
QDir::Filter::CaseSensitive | QDir::Filter::NoSymLinks,
|
||||||
QDir::SortFlag::Time);
|
QDir::SortFlag::Time);
|
||||||
|
|
||||||
// Iterate all icon themes in this directory.
|
// Iterate all icon themes in this directory.
|
||||||
|
@ -20,6 +20,9 @@ class RSSGUARD_DLLSPEC IconFactory : public QObject {
|
|||||||
explicit IconFactory(QObject* parent = nullptr);
|
explicit IconFactory(QObject* parent = nullptr);
|
||||||
virtual ~IconFactory();
|
virtual ~IconFactory();
|
||||||
|
|
||||||
|
// Generates round icon of given color.
|
||||||
|
static QIcon generateIcon(const QColor& color);
|
||||||
|
|
||||||
// Used to store/retrieve QIcons from/to Base64-encoded
|
// Used to store/retrieve QIcons from/to Base64-encoded
|
||||||
// byte array.
|
// byte array.
|
||||||
static QIcon fromByteArray(QByteArray array);
|
static QIcon fromByteArray(QByteArray array);
|
||||||
|
@ -26,7 +26,7 @@ QColor Label::color() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Label::setColor(const QColor& color) {
|
void Label::setColor(const QColor& color) {
|
||||||
setIcon(generateIcon(color));
|
setIcon(IconFactory::generateIcon(color));
|
||||||
m_color = color;
|
m_color = color;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -93,20 +93,6 @@ QList<Message> Label::undeletedMessages() const {
|
|||||||
return DatabaseQueries::getUndeletedMessagesWithLabel(database, this);
|
return DatabaseQueries::getUndeletedMessagesWithLabel(database, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
QIcon Label::generateIcon(const QColor& color) {
|
|
||||||
QPixmap pxm(64, 64);
|
|
||||||
|
|
||||||
pxm.fill(Qt::GlobalColor::transparent);
|
|
||||||
|
|
||||||
QPainter paint(&pxm);
|
|
||||||
|
|
||||||
paint.setBrush(color);
|
|
||||||
paint.setPen(Qt::GlobalColor::transparent);
|
|
||||||
paint.drawEllipse(pxm.rect().marginsRemoved(QMargins(2, 2, 2, 2)));
|
|
||||||
|
|
||||||
return pxm;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Label::assignToMessage(const Message& msg, bool reload_model) {
|
void Label::assignToMessage(const Message& msg, bool reload_model) {
|
||||||
QSqlDatabase database = qApp->database()->driver()->threadSafeConnection(metaObject()->className());
|
QSqlDatabase database = qApp->database()->driver()->threadSafeConnection(metaObject()->className());
|
||||||
|
|
||||||
|
@ -34,9 +34,6 @@ class RSSGUARD_DLLSPEC Label : public RootItem {
|
|||||||
virtual void updateCounts(bool including_total_count);
|
virtual void updateCounts(bool including_total_count);
|
||||||
virtual QList<Message> undeletedMessages() const;
|
virtual QList<Message> undeletedMessages() const;
|
||||||
|
|
||||||
public:
|
|
||||||
static QIcon generateIcon(const QColor& color);
|
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void assignToMessage(const Message& msg, bool reload_model = true);
|
void assignToMessage(const Message& msg, bool reload_model = true);
|
||||||
void deassignFromMessage(const Message& msg, bool reload_model = true);
|
void deassignFromMessage(const Message& msg, bool reload_model = true);
|
||||||
|
@ -220,7 +220,7 @@ int RootItem::countOfUnreadMessages() const {
|
|||||||
it->kind() == RootItem::Kind::Unread || it->kind() == RootItem::Kind::Labels ||
|
it->kind() == RootItem::Kind::Unread || it->kind() == RootItem::Kind::Labels ||
|
||||||
it->kind() == RootItem::Kind::Probes)
|
it->kind() == RootItem::Kind::Probes)
|
||||||
? 0
|
? 0
|
||||||
: it->countOfUnreadMessages();
|
: std::max(it->countOfUnreadMessages(), 0);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -230,7 +230,7 @@ int RootItem::countOfAllMessages() const {
|
|||||||
it->kind() == RootItem::Kind::Unread || it->kind() == RootItem::Kind::Labels ||
|
it->kind() == RootItem::Kind::Unread || it->kind() == RootItem::Kind::Labels ||
|
||||||
it->kind() == RootItem::Kind::Probes)
|
it->kind() == RootItem::Kind::Probes)
|
||||||
? 0
|
? 0
|
||||||
: it->countOfAllMessages();
|
: std::max(it->countOfAllMessages(), 0);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ QColor Search::color() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Search::setColor(const QColor& color) {
|
void Search::setColor(const QColor& color) {
|
||||||
setIcon(generateIcon(color));
|
setIcon(IconFactory::generateIcon(color));
|
||||||
m_color = color;
|
m_color = color;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -113,20 +113,6 @@ QList<Message> Search::undeletedMessages() const {
|
|||||||
return DatabaseQueries::getUndeletedMessagesForProbe(database, this);
|
return DatabaseQueries::getUndeletedMessagesForProbe(database, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
QIcon Search::generateIcon(const QColor& color) {
|
|
||||||
QPixmap pxm(64, 64);
|
|
||||||
|
|
||||||
pxm.fill(Qt::GlobalColor::transparent);
|
|
||||||
|
|
||||||
QPainter paint(&pxm);
|
|
||||||
|
|
||||||
paint.setBrush(color);
|
|
||||||
paint.setPen(Qt::GlobalColor::transparent);
|
|
||||||
paint.drawEllipse(pxm.rect().marginsRemoved(QMargins(2, 2, 2, 2)));
|
|
||||||
|
|
||||||
return pxm;
|
|
||||||
}
|
|
||||||
|
|
||||||
QString Search::filter() const {
|
QString Search::filter() const {
|
||||||
return m_filter;
|
return m_filter;
|
||||||
}
|
}
|
||||||
|
@ -38,9 +38,6 @@ class RSSGUARD_DLLSPEC Search : public RootItem {
|
|||||||
virtual void updateCounts(bool including_total_count);
|
virtual void updateCounts(bool including_total_count);
|
||||||
virtual QList<Message> undeletedMessages() const;
|
virtual QList<Message> undeletedMessages() const;
|
||||||
|
|
||||||
public:
|
|
||||||
static QIcon generateIcon(const QColor& color);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QString m_filter;
|
QString m_filter;
|
||||||
QColor m_color;
|
QColor m_color;
|
||||||
|
@ -30,7 +30,6 @@ QList<Message> SearchsNode::undeletedMessages() const {
|
|||||||
QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className());
|
QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className());
|
||||||
|
|
||||||
return {};
|
return {};
|
||||||
// return DatabaseQueries::getUndeletedLabelledMessages(database, getParentServiceRoot()->accountId());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Search* SearchsNode::probeById(const QString& custom_id) {
|
Search* SearchsNode::probeById(const QString& custom_id) {
|
||||||
@ -73,6 +72,12 @@ void SearchsNode::updateCounts(bool including_total_count) {
|
|||||||
RootItem::updateCounts(including_total_count);
|
RootItem::updateCounts(including_total_count);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
for (RootItem* child : qAsConst(childItems())) {
|
||||||
|
auto* sear = qobject_cast<Search*>(child);
|
||||||
|
|
||||||
|
sear->setCountOfAllMessages(-1);
|
||||||
|
sear->setCountOfUnreadMessages(-1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -746,6 +746,9 @@ bool ServiceRoot::loadMessagesForItem(RootItem* item, MessagesModel* model) {
|
|||||||
.arg(QString::number(accountId())));
|
.arg(QString::number(accountId())));
|
||||||
}
|
}
|
||||||
else if (item->kind() == RootItem::Kind::Probe) {
|
else if (item->kind() == RootItem::Kind::Probe) {
|
||||||
|
item->updateCounts(true);
|
||||||
|
itemChanged({item});
|
||||||
|
|
||||||
model->setFilter(QSL("Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1 AND "
|
model->setFilter(QSL("Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1 AND "
|
||||||
"(Messages.title REGEXP '%2' OR Messages.contents REGEXP '%2')")
|
"(Messages.title REGEXP '%2' OR Messages.contents REGEXP '%2')")
|
||||||
.arg(QString::number(accountId()), item->toProbe()->filter()));
|
.arg(QString::number(accountId()), item->toProbe()->filter()));
|
||||||
@ -766,7 +769,12 @@ bool ServiceRoot::loadMessagesForItem(RootItem* item, MessagesModel* model) {
|
|||||||
model->setFilter(QSL("Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1")
|
model->setFilter(QSL("Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1")
|
||||||
.arg(QString::number(accountId())));
|
.arg(QString::number(accountId())));
|
||||||
|
|
||||||
qDebugNN << "Displaying messages from account:" << QUOTE_W_SPACE_DOT(accountId());
|
qDebugNN << LOGSEC_CORE << "Displaying messages from account:" << QUOTE_W_SPACE_DOT(accountId());
|
||||||
|
}
|
||||||
|
else if (item->kind() == RootItem::Kind::Probes) {
|
||||||
|
model->setFilter(QSL(DEFAULT_SQL_MESSAGES_FILTER));
|
||||||
|
|
||||||
|
qWarningNN << LOGSEC_CORE << "Showing of all regex queries combined is not supported.";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
QList<Feed*> children = item->getSubTreeFeeds();
|
QList<Feed*> children = item->getSubTreeFeeds();
|
||||||
@ -782,7 +790,7 @@ bool ServiceRoot::loadMessagesForItem(RootItem* item, MessagesModel* model) {
|
|||||||
|
|
||||||
QString urls = textualFeedUrls(children).join(QSL(", "));
|
QString urls = textualFeedUrls(children).join(QSL(", "));
|
||||||
|
|
||||||
qDebugNN << "Displaying messages from feeds IDs:" << QUOTE_W_SPACE(filter_clause)
|
qDebugNN << LOGSEC_CORE << "Displaying messages from feeds IDs:" << QUOTE_W_SPACE(filter_clause)
|
||||||
<< "and URLs:" << QUOTE_W_SPACE_DOT(urls);
|
<< "and URLs:" << QUOTE_W_SPACE_DOT(urls);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user