~ubuntu-branches/ubuntu/oneiric/phonon/oneiric-201108111512

« back to all changes in this revision

Viewing changes to demos/simpleplayer/main.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Romain Perier
  • Date: 2011-03-29 18:52:38 UTC
  • mfrom: (0.5.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110329185238-zsdke31jv37427js
Tags: 4:4.7.0really4.5.0-0ubuntu1
* New upstream release, LP: #750480
* Create new package libphonon4-designer for the Qt4 Designer plugin
* Add libqzeitgeist to build dependencies
* debian/libphononexperimental4.install:
  Change library name to libphononexperimental4.so.4.*
* Update symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  This file is part of the KDE project
 
2
    Copyright (C) 2010 Trever Fischer <tdfischer@fedoraproject.org>
 
3
 
 
4
    This library is free software; you can redistribute it and/or
 
5
    modify it under the terms of the GNU Lesser General Public
 
6
    License as published by the Free Software Foundation; either
 
7
    version 2.1 of the License, or (at your option) version 3, or any
 
8
    later version accepted by the membership of KDE e.V. (or its
 
9
    successor approved by the membership of KDE e.V.), Nokia Corporation
 
10
    (or its successors, if any) and the KDE Free Qt Foundation, which shall
 
11
    act as a proxy defined in Section 6 of version 3 of the license.
 
12
 
 
13
    This library is distributed in the hope that it will be useful,
 
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
    Lesser General Public License for more details.
 
17
 
 
18
    You should have received a copy of the GNU Lesser General Public
 
19
    License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 
20
*/
 
21
 
 
22
#include <QtGui/QApplication>
 
23
 
 
24
#include <phonon/Mrl>
 
25
 
 
26
#include "player.h"
 
27
 
 
28
int main(int argc, char **argv)
 
29
{
 
30
    QApplication app(argc, argv);
 
31
 
 
32
    //On most platforms, this tells the audio system the name of the application responsible for which stream
 
33
    app.setApplicationName("simpleplayer");
 
34
 
 
35
    Player p;
 
36
    p.show();
 
37
 
 
38
    //Not passing an argument of what to play will prompt for a file inside Player::load(), called by Player::playPause()
 
39
    QStringList args = QApplication::arguments();
 
40
    if (args.size() > 1) {
 
41
        p.load(Phonon::Mrl(args[1]));
 
42
    }
 
43
 
 
44
    return app.exec();
 
45
}