mirror of
https://github.com/brmlab/microview.git
synced 2025-06-09 12:04:00 +02:00
init
This commit is contained in:
commit
f6403176a7
9 changed files with 302 additions and 0 deletions
21
software/videoview.h
Normal file
21
software/videoview.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef VIDEOVIEW_H
|
||||
#define VIDEOVIEW_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QMouseEvent>
|
||||
#include <QWheelEvent>
|
||||
|
||||
class VideoView : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit VideoView(QWidget *parent = 0);
|
||||
void mouseMoveEvent(QMouseEvent *event);
|
||||
void wheelEvent(QWheelEvent *event);
|
||||
signals:
|
||||
|
||||
public slots:
|
||||
|
||||
};
|
||||
|
||||
#endif // VIDEOVIEW_H
|
Loading…
Add table
Add a link
Reference in a new issue