-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmainwindow.h
44 lines (37 loc) · 957 Bytes
/
mainwindow.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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "aqiniuapi.h"
#include "asettingwidget.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
protected:
void closeEvent(QCloseEvent *);
void dragEnterEvent(QDragEnterEvent *event);
void dropEvent(QDropEvent *event);
private:
AQiniuApi *qiniu;
QString m_localFilePath;
QString m_remotePicUrl;
ASettingWidget *settingObject;
void showFilePreview(void);
void setClipboardText(QString data);
void autoDup();
private slots:
void on_pushButtonOpenFile_clicked();
void on_pushButtonSetting_clicked();
void on_pushButtonOriginCopy_clicked();
void on_pushButtonMarkdownCopy_clicked();
public slots:
void showStatusMessage(QString message,int timeout = 0);
private:
Ui::MainWindow *ui;
};
#endif // MAINWINDOW_H