以第二种形式使用QMediaPlayer

时间:2016-09-01 08:18:05

标签: c++ qt linuxmint

我是Qt的新手。我对QMediaPlayer有疑问:我的程序有2个表单(主表单和通知)。因此它有条件,如果是真的,程序必须显示第二种形式并在加载形式上播放音乐。

的main.cpp

#include "mainwindow.h"
#include <QApplication>
#include "dialog.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    Dialog d;
    d.musicPlay();
    d.show();


    return a.exec();
}

dialog.cpp

#include "dialog.h"
#include "ui_dialog.h"
#include <QMediaPlayer>
#include <QUrl>
#include <QDebug>

Dialog::Dialog(QWidget *parent) :
    QDialog(parent),
    uix(new Ui::Dialog)
{
    uix->setupUi(this);
}

void Dialog::musicPlay() const
{
    QMediaPlayer pl;
    pl.setMedia(QUrl::fromLocalFile("/home/jack/01.mp3"));
    pl.setVolume(100);
    pl.play();
    qDebug()<<pl.errorString();
}

Dialog::~Dialog()
{
    delete uix;
}

它不起作用,但如果musicPlay()就像:

uix->label->setText("qwerty");

它会起作用。 你能帮忙解决这个问题吗?也许我必须使用插槽和信号?

1 个答案:

答案 0 :(得分:0)

这不起作用,因为您已将pl变量声明为保存在堆栈中的局部变量。堆栈变量将被破坏,完成功能。

因此,您应该使用pl关键字声明并定义new

QMediaPlayer* pl = new QMediaPlayer;
pl->setMedia(QUrl::fromLocalFile("/home/jack/01.mp3"));
pl->setVolume(100);
pl->play();