CVideoPlayer.h 348 B

12345678910111213141516171819202122232425
  1. #ifndef CVideoPlayer_H
  2. #define CVideoPlayer_H
  3. #include "VideoPlayer.h"
  4. class CVideoPlayer : public VideoPlayer
  5. {
  6. Q_OBJECT
  7. public:
  8. CVideoPlayer(QWidget *parent = nullptr);
  9. ~CVideoPlayer();
  10. protected:
  11. /* 双击事件函数 */
  12. void mouseDoubleClickEvent(QMouseEvent *event) override;
  13. private:
  14. };
  15. #endif // CVideoPlayer_H