forked from IJHack/QtPass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqtpass.h
61 lines (46 loc) · 1.44 KB
/
qtpass.h
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
51
52
53
54
55
56
57
58
59
60
61
#ifndef QTPASS_H
#define QTPASS_H
#include <QObject>
#include <QProcess>
#include <QTimer>
class MainWindow;
class Pass;
class QtPass : public QObject {
Q_OBJECT
public:
QtPass(MainWindow *mainWindow);
~QtPass();
bool init();
void setClippedText(const QString &, const QString &p_output = QString());
void clearClippedText();
void setClipboardTimer();
bool isFreshStart() { return this->freshStart; }
void setFreshStart(const bool &fs) { this->freshStart = fs; }
private:
MainWindow *m_mainWindow;
QProcess fusedav;
QTimer clearClipboardTimer;
QString clippedText;
bool freshStart;
void setMainWindow();
void connectPassSignalHandlers(Pass *pass);
void mountWebDav();
signals:
public slots:
void clearClipboard();
void copyTextToClipboard(const QString &text);
void showTextAsQRCode(const QString &text);
private slots:
void processError(QProcess::ProcessError);
void processErrorExit(int exitCode, const QString &);
void processFinished(const QString &, const QString &);
void passStoreChanged(const QString &, const QString &);
void passShowHandlerFinished(QString output);
void doGitPush();
void finishedInsert(const QString &, const QString &);
void onKeyGenerationComplete(const QString &p_output,
const QString &p_errout);
void showInTextBrowser(QString output, QString prefix = QString(),
QString postfix = QString());
};
#endif // QTPASS_H