Refactored, cosmetic
parent
6692ab8e0c
commit
e9be4a1e90
|
@ -57,7 +57,8 @@ void MainWindow::populate_tableview()
|
||||||
statusBar()->showMessage(tr("Database loaded."));
|
statusBar()->showMessage(tr("Database loaded."));
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::add_row(const QString &user, const int &blocked, const QString &reason)
|
void MainWindow::add_row(const QString &user, const int &blocked,
|
||||||
|
const QString &reason)
|
||||||
{
|
{
|
||||||
QList<QStandardItem*> items;
|
QList<QStandardItem*> items;
|
||||||
items.append(new QStandardItem(user));
|
items.append(new QStandardItem(user));
|
||||||
|
@ -150,7 +151,8 @@ void MainWindow::about()
|
||||||
|
|
||||||
void MainWindow::show_details(QModelIndex index)
|
void MainWindow::show_details(QModelIndex index)
|
||||||
{
|
{
|
||||||
const string user = index.sibling(index.row(), 0).data().toString().toStdString();
|
const string user = index.sibling(index.row(), 0).data()
|
||||||
|
.toString().toStdString();
|
||||||
result_details result;
|
result_details result;
|
||||||
string text = "";
|
string text = "";
|
||||||
|
|
||||||
|
@ -207,7 +209,8 @@ const void DialogAdd::set_data(const Dialogdata &data)
|
||||||
text_reason->setText(QString::fromStdString(data.reason));
|
text_reason->setText(QString::fromStdString(data.reason));
|
||||||
for (const string &receipt : data.receipts)
|
for (const string &receipt : data.receipts)
|
||||||
{
|
{
|
||||||
QListWidgetItem *item = new QListWidgetItem(QString::fromStdString(receipt));
|
QListWidgetItem *item =
|
||||||
|
new QListWidgetItem(QString::fromStdString(receipt));
|
||||||
item->setFlags(item->flags() | Qt::ItemIsEditable);
|
item->setFlags(item->flags() | Qt::ItemIsEditable);
|
||||||
list_receipts->insertItem(list_receipts->count(), item);
|
list_receipts->insertItem(list_receipts->count(), item);
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,8 @@ class MainWindow : public QMainWindow, private Ui::MainWindow
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit MainWindow(QMainWindow *parent = nullptr);
|
explicit MainWindow(QMainWindow *parent = nullptr);
|
||||||
void add_row(const QString &user, const int &blocked, const QString &reason);
|
void add_row(const QString &user, const int &blocked,
|
||||||
|
const QString &reason);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void remove();
|
void remove();
|
||||||
|
|
|
@ -48,7 +48,8 @@ const bool Text::askblocked()
|
||||||
{
|
{
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
const string blocked = get_answer(tr("Blocked or silenced?") + " [b/s]");
|
const string blocked = get_answer(tr("Blocked or silenced?") +
|
||||||
|
" [b/s]");
|
||||||
if (blocked[0] == 'b' || blocked[0] == 'B')
|
if (blocked[0] == 'b' || blocked[0] == 'B')
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -142,10 +142,12 @@ const bool database::details(const string &user, result_details &result)
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
sqlite::connection con(get_filepath());
|
sqlite::connection con(get_filepath());
|
||||||
sqlite::query q_blocks(con, "SELECT * FROM blocks WHERE user = \'" + user + "\';");
|
sqlite::query q_blocks(con,
|
||||||
|
"SELECT * FROM blocks WHERE user = \'" + user + "\';");
|
||||||
sqlite::result_type res_blocks = q_blocks.get_result();
|
sqlite::result_type res_blocks = q_blocks.get_result();
|
||||||
|
|
||||||
sqlite::query q_urls(con, "SELECT * FROM urls WHERE user = \'" + user + "\';");
|
sqlite::query q_urls(con,
|
||||||
|
"SELECT * FROM urls WHERE user = \'" + user + "\';");
|
||||||
sqlite::result_type res_urls = q_urls.get_result();
|
sqlite::result_type res_urls = q_urls.get_result();
|
||||||
|
|
||||||
if (!res_blocks->next_row())
|
if (!res_blocks->next_row())
|
||||||
|
|
Loading…
Reference in New Issue