12345678910111213141516171819202122232425 |
- #ifndef CVideoPlayer_H
- #define CVideoPlayer_H
- #include "VideoPlayer.h"
- class CVideoPlayer : public VideoPlayer
- {
- Q_OBJECT
- public:
- CVideoPlayer(QWidget *parent = nullptr);
- ~CVideoPlayer();
- protected:
- /* 双击事件函数 */
- void mouseDoubleClickEvent(QMouseEvent *event) override;
- private:
- };
- #endif // CVideoPlayer_H
|