summaryrefslogtreecommitdiffstats
path: root/src/usersdialog.h
blob: dd1d9e445e2ca3561b96461b002832a637e60866 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef USERSDIALOG_H_
#define USERSDIALOG_H_

#include "userinfo.h"

#include <QDialog>
#include <QList>

namespace Ui {
class UsersDialog;
}

class QCloseEvent;
class QKeyEvent;
class QListWidgetItem;

/*!
    \class UsersDialog
    \brief Handles listing and editing of GPG users.

    Selection of whom to encrypt to.
 */
class UsersDialog : public QDialog {
  Q_OBJECT

public:
  explicit UsersDialog(QString dir, QWidget *parent = nullptr);
  ~UsersDialog();

public slots:
  void accept();

protected:
  void closeEvent(QCloseEvent *event);
  void keyPressEvent(QKeyEvent *event);

private slots:
  void itemChange(QListWidgetItem *item);
  void on_lineEdit_textChanged(const QString &filter);
  void on_checkBox_clicked();

private:
  Ui::UsersDialog *ui;
  QList<UserInfo> m_userList;
  QString m_dir;

  void populateList(const QString &filter = QString());
};

#endif // USERSDIALOG_H_