whyblocked/src/qt/mainwindow.hpp

73 lines
1.9 KiB
C++
Raw Normal View History

2018-10-06 21:33:02 +02:00
/* This file is part of whyblocked.
* Copyright © 2018, 2019 tastytea <tastytea@tastytea.de>
2018-10-06 21:33:02 +02:00
*
* 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, version 3.
*
* 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/>.
*/
2019-01-14 15:45:05 +01:00
#ifndef MAINWINDOW_HPP
#define MAINWINDOW_HPP
2018-10-06 21:33:02 +02:00
2018-10-07 01:40:04 +02:00
#include <string>
#include <memory>
#include <array>
#include <vector>
2018-10-06 21:33:02 +02:00
#include <QMainWindow>
#include <QStandardItemModel>
2018-10-13 05:07:34 +02:00
#include <QDialog>
#include <QtGui/qevent.h>
2019-01-14 15:45:05 +01:00
#include "../xdgcfg.hpp"
#include "../whyblocked.hpp"
2018-10-06 21:33:02 +02:00
#include "ui_whyblocked.h"
2018-10-07 01:40:04 +02:00
using std::string;
using std::vector;
2018-10-06 21:33:02 +02:00
class MainWindow : public QMainWindow, private Ui::MainWindow
{
Q_OBJECT
public:
explicit MainWindow(QMainWindow *parent = nullptr);
~MainWindow();
2018-10-23 08:29:07 +02:00
void add_row(const QString &user, const int &blocked,
const QString &reason);
2018-10-14 03:53:30 +02:00
public slots:
void remove();
2018-10-14 03:53:30 +02:00
private:
const string urls_to_hyperlinks(const string &text);
void dragEnterEvent(QDragEnterEvent *event);
void dropEvent(QDropEvent *event);
2018-10-14 03:53:30 +02:00
QStandardItemModel *_model;
xdgcfg _config;
std::array<int, 3> _headersize;
Database _database;
std::vector<Database::data> &_dbdata;
2018-10-06 21:33:02 +02:00
private slots:
void add();
void edit();
2018-10-06 21:33:02 +02:00
void about();
2018-10-07 01:40:04 +02:00
void show_details(QModelIndex index);
void populate_tableview(const vector<Database::data> &entries);
2019-01-11 20:50:22 +01:00
void reload();
2019-01-11 18:58:20 +01:00
void find();
void update_search(const QString &text);
void update_search();
2018-10-06 21:33:02 +02:00
2018-10-13 05:07:34 +02:00
};
2019-01-14 15:45:05 +01:00
#endif // MAINWINDOW_HPP