CVideoPlayer.cpp 315 B

12345678910111213141516171819202122232425
  1. #include "CVideoPlayer.h"
  2. #include <QMouseEvent>
  3. CVideoPlayer::CVideoPlayer(QWidget *parent) : VideoPlayer(parent)
  4. {
  5. }
  6. CVideoPlayer::~CVideoPlayer()
  7. {
  8. }
  9. /* 双击事件函数 */
  10. void CVideoPlayer::mouseDoubleClickEvent(QMouseEvent *event)
  11. {
  12. if(event->button() == Qt::LeftButton)
  13. {
  14. }
  15. }