Work on labels.
This commit is contained in:
parent
580457ae12
commit
26e4431d3b
@ -5,6 +5,7 @@
|
||||
#include <QColorDialog>
|
||||
#include <QPainter>
|
||||
#include <QPainterPath>
|
||||
#include <QRandomGenerator>
|
||||
|
||||
ColorToolButton::ColorToolButton(QWidget* parent) : QToolButton(parent), m_color(Qt::GlobalColor::black) {
|
||||
connect(this, &ColorToolButton::clicked, this, [this]() {
|
||||
@ -29,6 +30,14 @@ void ColorToolButton::setColor(const QColor& color) {
|
||||
repaint();
|
||||
}
|
||||
|
||||
void ColorToolButton::setRandomColor() {
|
||||
auto rnd_color = QRandomGenerator::global()->bounded(0xFFFFFF);
|
||||
auto rnd_color_name = QString("#%1").arg(QString::number(rnd_color, 16));
|
||||
|
||||
setColor(rnd_color_name);
|
||||
emit colorChanged(rnd_color_name);
|
||||
}
|
||||
|
||||
void ColorToolButton::paintEvent(QPaintEvent* e) {
|
||||
Q_UNUSED(e)
|
||||
QPainter p(this);
|
||||
@ -46,6 +55,5 @@ void ColorToolButton::paintEvent(QPaintEvent* e) {
|
||||
QPainterPath path;
|
||||
|
||||
path.addRoundedRect(QRectF(rect), 3, 3);
|
||||
|
||||
p.fillPath(path, m_color);
|
||||
}
|
||||
|
@ -14,6 +14,9 @@ class ColorToolButton : public QToolButton {
|
||||
QColor color() const;
|
||||
void setColor(const QColor& color);
|
||||
|
||||
public slots:
|
||||
void setRandomColor();
|
||||
|
||||
signals:
|
||||
void colorChanged(const QColor& new_color);
|
||||
|
||||
|
@ -2,18 +2,40 @@
|
||||
|
||||
#include "gui/dialogs/formaddeditlabel.h"
|
||||
|
||||
#include "gui/guiutilities.h"
|
||||
#include "miscellaneous/application.h"
|
||||
#include "miscellaneous/iconfactory.h"
|
||||
#include "services/abstract/label.h"
|
||||
|
||||
FormAddEditLabel::FormAddEditLabel(QWidget* parent) : QDialog(parent), ui(new Ui::FormAddEditLabel) {
|
||||
ui->setupUi(this);
|
||||
}
|
||||
FormAddEditLabel::FormAddEditLabel(QWidget* parent) : QDialog(parent) {
|
||||
m_ui.setupUi(this);
|
||||
m_ui.m_txtName->lineEdit()->setPlaceholderText(tr("Name for your label"));
|
||||
|
||||
FormAddEditLabel::~FormAddEditLabel() {
|
||||
delete ui;
|
||||
connect(m_ui.m_txtName->lineEdit(), &QLineEdit::textChanged, this, [this](const QString& text) {
|
||||
m_ui.m_buttonBox->button(QDialogButtonBox::StandardButton::Ok)->setEnabled(!text.isEmpty());
|
||||
|
||||
if (text.isEmpty()) {
|
||||
m_ui.m_txtName->setStatus(LineEditWithStatus::StatusType::Error, tr("Label's name cannot be empty."));
|
||||
}
|
||||
else {
|
||||
m_ui.m_txtName->setStatus(LineEditWithStatus::StatusType::Ok, tr("Perfect!"));
|
||||
}
|
||||
});
|
||||
|
||||
m_ui.m_txtName->lineEdit()->setText(tr("Hot stuff"));
|
||||
}
|
||||
|
||||
Label* FormAddEditLabel::execForAdd() {
|
||||
auto exit_code = exec();
|
||||
GuiUtilities::applyDialogProperties(*this, qApp->icons()->fromTheme(QSL("tag-properties")), tr("Create new label"));
|
||||
m_ui.m_btnColor->setRandomColor();
|
||||
|
||||
return nullptr;
|
||||
auto exit_code = exec();
|
||||
auto xxx = m_ui.m_btnColor->color().name();
|
||||
|
||||
if (exit_code == QDialog::DialogCode::Accepted) {
|
||||
return new Label(m_ui.m_txtName->lineEdit()->text(), m_ui.m_btnColor->color());
|
||||
}
|
||||
else {
|
||||
return nullptr;
|
||||
}
|
||||
}
|
||||
|
@ -18,13 +18,12 @@ class FormAddEditLabel : public QDialog {
|
||||
|
||||
public:
|
||||
explicit FormAddEditLabel(QWidget* parent = nullptr);
|
||||
~FormAddEditLabel();
|
||||
|
||||
public slots:
|
||||
Label* execForAdd();
|
||||
|
||||
private:
|
||||
Ui::FormAddEditLabel* ui;
|
||||
Ui::FormAddEditLabel m_ui;
|
||||
};
|
||||
|
||||
#endif // FORMADDEDITLABEL_H
|
||||
|
@ -6,35 +6,29 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>400</width>
|
||||
<height>300</height>
|
||||
<width>224</width>
|
||||
<height>97</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Dialog</string>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout">
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string>Name</string>
|
||||
</property>
|
||||
</widget>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<widget class="ColorToolButton" name="m_btnColor">
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="LineEditWithStatus" name="m_txtName" native="true"/>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="LineEditWithStatus" name="widget" native="true"/>
|
||||
</item>
|
||||
<item row="3" column="0" colspan="2">
|
||||
<widget class="QDialogButtonBox" name="buttonBox">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="standardButtons">
|
||||
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0" colspan="2">
|
||||
<item>
|
||||
<spacer name="verticalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
@ -47,17 +41,13 @@
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QLabel" name="label_2">
|
||||
<property name="text">
|
||||
<string>Color</string>
|
||||
<item>
|
||||
<widget class="QDialogButtonBox" name="m_buttonBox">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="ColorToolButton" name="toolButton">
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
<property name="standardButtons">
|
||||
<set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -76,37 +66,40 @@
|
||||
<header>colortoolbutton.h</header>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
<tabstops>
|
||||
<tabstop>m_btnColor</tabstop>
|
||||
</tabstops>
|
||||
<resources/>
|
||||
<connections>
|
||||
<connection>
|
||||
<sender>buttonBox</sender>
|
||||
<sender>m_buttonBox</sender>
|
||||
<signal>accepted()</signal>
|
||||
<receiver>FormAddEditLabel</receiver>
|
||||
<slot>accept()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>248</x>
|
||||
<y>254</y>
|
||||
<x>214</x>
|
||||
<y>132</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>157</x>
|
||||
<y>274</y>
|
||||
<y>141</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
<connection>
|
||||
<sender>buttonBox</sender>
|
||||
<sender>m_buttonBox</sender>
|
||||
<signal>rejected()</signal>
|
||||
<receiver>FormAddEditLabel</receiver>
|
||||
<slot>reject()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>316</x>
|
||||
<y>260</y>
|
||||
<x>214</x>
|
||||
<y>132</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>286</x>
|
||||
<y>274</y>
|
||||
<x>223</x>
|
||||
<y>141</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
|
@ -31,6 +31,25 @@
|
||||
#include <QUrl>
|
||||
#include <QVariant>
|
||||
|
||||
bool DatabaseQueries::createLabel(const QSqlDatabase& db, Label* label, int account_id) {
|
||||
QSqlQuery q(db);
|
||||
|
||||
q.setForwardOnly(true);
|
||||
q.prepare("INSERT INTO Labels (name, color, custom_id, account_id) "
|
||||
"VALUES (:name, :color, :custom_id, :account_id);");
|
||||
q.bindValue(QSL(":name"), label->title());
|
||||
q.bindValue(QSL(":color"), label->color().name());
|
||||
q.bindValue(QSL(":custom_id"), label->customId());
|
||||
q.bindValue(QSL(":account_id"), account_id);
|
||||
auto res = q.exec();
|
||||
|
||||
if (res && q.lastInsertId().isValid()) {
|
||||
label->setId(q.lastInsertId().toInt());
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
||||
bool DatabaseQueries::markImportantMessagesReadUnread(const QSqlDatabase& db, int account_id, RootItem::ReadStatus read) {
|
||||
QSqlQuery q(db);
|
||||
|
||||
|
@ -7,6 +7,7 @@
|
||||
|
||||
#include "core/messagefilter.h"
|
||||
#include "services/abstract/category.h"
|
||||
#include "services/abstract/label.h"
|
||||
#include "services/abstract/serviceroot.h"
|
||||
#include "services/standard/standardfeed.h"
|
||||
|
||||
@ -17,6 +18,9 @@
|
||||
class DatabaseQueries {
|
||||
public:
|
||||
|
||||
// Label operators.
|
||||
static bool createLabel(const QSqlDatabase& db, Label* label, int account_id);
|
||||
|
||||
// Message operators.
|
||||
static bool markImportantMessagesReadUnread(const QSqlDatabase& db, int account_id, RootItem::ReadStatus read);
|
||||
static bool markMessagesReadUnread(const QSqlDatabase& db, const QStringList& ids, RootItem::ReadStatus read);
|
||||
|
@ -2,6 +2,37 @@
|
||||
|
||||
#include "services/abstract/label.h"
|
||||
|
||||
Label::Label(RootItem* parent_item) : RootItem(parent_item), m_name(QString()), m_backColor(QColor()) {
|
||||
setKind(RootItem::Kind::Labels);
|
||||
#include <QPainter>
|
||||
#include <QPainterPath>
|
||||
|
||||
Label::Label(const QString& name, const QColor& color, RootItem* parent_item) : RootItem(parent_item) {
|
||||
setColor(color);
|
||||
setTitle(name);
|
||||
}
|
||||
|
||||
Label::Label(RootItem* parent_item) : RootItem(parent_item) {
|
||||
setKind(RootItem::Kind::Label);
|
||||
}
|
||||
|
||||
QColor Label::color() const {
|
||||
return m_color;
|
||||
}
|
||||
|
||||
void Label::setColor(const QColor& color) {
|
||||
setIcon(generateIcon(color));
|
||||
m_color = color;
|
||||
}
|
||||
|
||||
QIcon Label::generateIcon(const QColor& color) {
|
||||
QPixmap pxm(64, 64);
|
||||
|
||||
pxm.fill(Qt::GlobalColor::transparent);
|
||||
|
||||
QPainter paint(&pxm);
|
||||
QPainterPath path;
|
||||
|
||||
path.addRoundedRect(QRectF(pxm.rect()), 10, 10);
|
||||
paint.fillPath(path, color);
|
||||
|
||||
return pxm;
|
||||
}
|
||||
|
@ -11,11 +11,16 @@ class Label : public RootItem {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit Label(const QString& name, const QColor& color, RootItem* parent_item = nullptr);
|
||||
explicit Label(RootItem* parent_item = nullptr);
|
||||
|
||||
QColor color() const;
|
||||
void setColor(const QColor& color);
|
||||
|
||||
static QIcon generateIcon(const QColor& color);
|
||||
|
||||
private:
|
||||
QString m_name;
|
||||
QColor m_backColor;
|
||||
QColor m_color;
|
||||
};
|
||||
|
||||
#endif // LABEL_H
|
||||
|
@ -4,6 +4,8 @@
|
||||
|
||||
#include "gui/dialogs/formaddeditlabel.h"
|
||||
#include "miscellaneous/application.h"
|
||||
#include "miscellaneous/databasefactory.h"
|
||||
#include "miscellaneous/databasequeries.h"
|
||||
#include "miscellaneous/iconfactory.h"
|
||||
#include "services/abstract/serviceroot.h"
|
||||
|
||||
@ -31,6 +33,13 @@ QList<QAction*> LabelsNode::contextMenuFeedsList() {
|
||||
|
||||
void LabelsNode::createLabel() {
|
||||
FormAddEditLabel frm(qApp->mainFormWidget());
|
||||
Label* new_lbl = frm.execForAdd();
|
||||
|
||||
frm.execForAdd();
|
||||
if (new_lbl != nullptr) {
|
||||
QSqlDatabase db = qApp->database()->connection(metaObject()->className());
|
||||
|
||||
DatabaseQueries::createLabel(db, new_lbl, getParentServiceRoot()->accountId());
|
||||
|
||||
getParentServiceRoot()->requestItemReassignment(new_lbl, this);
|
||||
}
|
||||
}
|
||||
|
@ -502,6 +502,18 @@ bool ServiceRoot::loadMessagesForItem(RootItem* item, MessagesModel* model) {
|
||||
model->setFilter(QString("Messages.is_important = 1 AND Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1")
|
||||
.arg(QString::number(accountId())));
|
||||
}
|
||||
else if (item->kind() == RootItem::Kind::Label) {
|
||||
// Show messages with particular label.
|
||||
model->setFilter(QString("Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1 AND "
|
||||
"(SELECT COUNT(*) FROM LabelsInMessages WHERE account_id = %1 AND message = Messages.custom_id AND label = %2) > 0")
|
||||
.arg(QString::number(accountId()), QString::number(item->id())));
|
||||
}
|
||||
else if (item->kind() == RootItem::Kind::Labels) {
|
||||
// Show messages with any label.
|
||||
model->setFilter(QString("Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1 AND "
|
||||
"(SELECT COUNT(*) FROM LabelsInMessages WHERE account_id = %1 AND message = Messages.custom_id) > 0")
|
||||
.arg(QString::number(accountId())));
|
||||
}
|
||||
else {
|
||||
QList<Feed*> children = item->getSubTreeFeeds();
|
||||
QString filter_clause = textualFeedIds(children).join(QSL(", "));
|
||||
|
@ -143,6 +143,9 @@ void StandardServiceRoot::loadFromDatabase() {
|
||||
appendChild(recycleBin());
|
||||
appendChild(importantNode());
|
||||
appendChild(new LabelsNode(this));
|
||||
|
||||
// TODO: Load all labels and append.
|
||||
|
||||
updateCounts(true);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user