You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

72 lines
1.9 KiB

/*****************************************************************************
* qvlcapp.hpp : A few helpers
*****************************************************************************
* Copyright (C) 2008 the VideoLAN team
*
* Authors: Jean-Baptiste Kempf <jb@videolan.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef VLC_QT_QVLCAPP_HPP_
#define VLC_QT_QVLCAPP_HPP_
#include <QApplication>
#include <QStyle>
#if defined(Q_OS_WIN)
# include "qt.hpp"
# include <windows.h>
# include "player/player_controller.hpp"
#endif
class QVLCApp : public QApplication
{
Q_OBJECT
private slots:
void doQuit()
{
closeAllWindows();
quit();
}
public:
QVLCApp( int & argc, char ** argv ) : QApplication( argc, argv, true ), m_defaultStyle( style()->objectName() )
{
connect( this, &QVLCApp::quitSignal, this, &QVLCApp::doQuit );
}
static void triggerQuit()
{
QVLCApp *app = qobject_cast<QVLCApp*>( instance() );
if( app )
emit app->quitSignal();
}
QString defaultStyle() const
{
return m_defaultStyle;
}
signals:
void quitSignal();
private:
const QString m_defaultStyle;
};
#endif