首页 > 其他 > 详细

wmv 播放器

时间:2019-03-14 21:50:52      阅读:174      评论:0      收藏:0      [点我收藏+]

技术分享图片技术分享图片

部分代码如下

QAction *openFile = new QAction(QIcon(QString(":/Res/open.png")), tr("打开文件"), this);

    connect(openFile, SIGNAL(triggered()), this, SLOT(openFileSource()));

    QAction *showSet = new QAction(QIcon(QString(":/Res/set.png")), tr("设置"), this);
    connect(showSet, SIGNAL(triggered()), this, SLOT(showSet()));

    m_labelcount = new QLabel(this);
    m_labelcount->setText("        0:0:0");

    m_labelTotal = new QLabel(this);
    m_labelTotal->setText("/ 0:0:0");

    QPalette pl = m_labelcount->palette();
    p.setColor(QPalette::WindowText , Qt::green);
    m_labelTotal->setPalette(pl);

    connect( mediaObject, SIGNAL(totalTimeChanged(qint64)), this, SLOT(toolTimeSet(qint64)) );
    connect( mediaObject, SIGNAL(tick(qint64)), this, SLOT(tickTimeSet(qint64)) );

 

 

QVBoxLayout *mainLayout = new QVBoxLayout;

    videoWidget->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
    mainLayout->addWidget(videoWidget);
    mainLayout->addWidget(seekSlider);
    mainLayout->addWidget(toolBar);
    mainLayout->addWidget(ui->frame);
    setLayout(mainLayout);

    ui->frame->hide();

    videoWidget->setBackgroundRole(QPalette::Dark);

    setContextMenuPolicy(Qt::CustomContextMenu);
    videoWidget->setContextMenuPolicy(Qt::CustomContextMenu);
    connect(videoWidget, SIGNAL(customContextMenuRequested(const QPoint &)), SLOT(showContextMenu(const QPoint &)));
    connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), SLOT(showContextMenu(const QPoint &)));

    createContextMenu();

    this->setWindowTitle(tr("wmv player "));
    resize(1290, 840);

 

wmv 播放器

原文:https://www.cnblogs.com/xiaowulang/p/10533632.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!