加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mainwindow.h 1.62 KB
一键复制 编辑 原始数据 按行查看 历史
icybee 提交于 2014-05-21 00:48 . 完成阅览功能
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include<QPainter>
#include<windows.h>
#include <QKeyEvent>
//#include<QDragEnterEvent>
//#include<QDragLeaveEvent>
//#include<QDropEvent>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
QPixmap pic;
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
void paintEvent(QPaintEvent *);
void keyPressEvent(QKeyEvent * e);
void mousePressEvent(QMouseEvent *event);
void mouseMoveEvent(QMouseEvent *event);
void mouseReleaseEvent(QMouseEvent *event);
void wheelEvent(QWheelEvent *event);
void mydialog();
void mouseDoubleClickEvent(QMouseEvent * event);
void write_to_clickboard(char* str);
QString get_name(int kind);
//bool MainWindow::winEventFilter(MSG *message, long *result);
//bool winEvent(MSG* pMsg);
bool KEY_PRESSED,MOUSE_PRESSED,MOUSE_MOVE,MOUSE_RELEASED,MOUSE_SHIFT,BUFFER_FULL,WHEEL_PRESSED,RIGHT_PRESSED,FILE_DRAGGED;
bool CTRL_ROOLUP,CTRL_ROOLDOWN,MOUSE_DOUBLECLICK,FULL,TO_GET_FILENAME;
int KEY_NUM,MOUSE_X,MOUSE_Y,ROOL_NUM,WINDOW_X,WINDOW_Y,GLOBAL_X,GLOBAL_Y,filekind;
char string[1024]={0};
char file[1024]={0};
char* board;
QPainter * painter;
QString filename;
private:
Ui::MainWindow *ui;
bool WINDOW_DRAGGED;
protected:
//bool winEventFilter(MSG *message,long * result);
bool nativeEvent(const QByteArray & eventType, void * message, long * result);
void dragEnterEvent(QDragEnterEvent *event);
void dropEvent(QDropEvent *event);
public slots:
void slot1(QString q);
};
#endif // MAINWINDOW_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化