Files
GoldenCheetah/src/VideoWindow.h
Joern 6bd11c4290 AthleteDirectory - Folder Structure Part 1
... introduce new "home" Folder structure object representing the
previous flat-folder
... adjust relevant QDir home - access to use the sub-folder method of
the new object

Note: the new structure is not yet active ! - everything is written to
the main folder still

To Do:
... add upgrade procedure for existing folder content to merge to the
new folders
2014-10-25 19:08:27 +02:00

214 lines
5.2 KiB
C++

/*
* Copyright (c) 2009 Mark Liversedge (liversedge@gmail.com)
*
* 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 _GC_VideoWindow_h
#define _GC_VideoWindow_h 1
#include "GoldenCheetah.h"
// We need to determine what options the user has chosen
// for compiling, which differ for Mac vs Win/Linux
//
// Options are, GC_VIDEO_xxxx where xxxx is one of:
// GC_VIDEO_VLC
// GC_VIDEO_QUICKTIME
// GC_VIDEO_NONE
// GC_VIDEO_QT5
//
// If the user hasn't set one of the above then we determine
// which one should apply !
//----------------------------------------------------------------------
// MAC VIDEO OPTION SETTING
//----------------------------------------------------------------------
#ifdef Q_OS_MAC
// if we aint chosen one or the other then use quicktime
#if !defined GC_VIDEO_QUICKTIME && !defined GC_VIDEO_NONE && !defined GC_VIDEO_QT5
#define GC_VIDEO_QUICKTIME
#endif
// but qt5 and vlc are not valid options !
#if defined GC_VIDEO_VLC
#error "VLC is not a support on Mac OS X builds of GoldenCheetah"
#endif
// but qt5 *is* supported, but use at your own risk!
#if defined GC_VIDEO_QT5
#if QT_VERSION >= 0x050201
#warning "QT 5 video is supported experimentally in this version"
#else
#error "QT5 video is only supported with QT 5.2.1 or higher"
#endif
#endif // GC_VIDEO_QT5
#endif //Q_OS_MAC
//----------------------------------------------------------------------
// LINUX AND WINDOWS
//----------------------------------------------------------------------
#if defined Q_OS_LINUX || defined Q_OS_WIN
// did the user specify location for VLC but not GC_VIDEO_XXXX
#if defined GC_HAVE_VLC && !defined GC_VIDEO_NONE && !defined GC_VIDEO_QT5
#if !defined GC_VIDEO_VLC
#define GC_VIDEO_VLC
#endif
#endif
// if we aint chosen one or the other then use VLC QT < 5.2.1 or QT5 >= 5.2.1
#if !defined GC_VIDEO_NONE && !defined GC_VIDEO_QT5 && !defined GC_VIDEO_VLC
#if QT_VERSION < 0x50201
#define GC_VIDEO_VLC
#else
#define GC_VIDEO_QT5
#endif
#endif // !defined NONE,QT5,VLC
// now check for stupid settings
#if defined GC_VIDEO_QUICKTIME
#error "QuickTime is only supported on Mac OS X"
#endif
// but qt5 *is* supported, but use at your own risk!
#if defined GC_VIDEO_QT5 && QT_VERSION < 0x050201
#error "QT5 video is only supported with QT 5.2.1 or higher"
#endif // GC_VIDEO_QT5
#endif // Q_OS_LINUX || Q_OS_WIN
//----------------------------------------------------------------------
// Now options are set lets pull in the headers we need then
//----------------------------------------------------------------------
#ifdef GC_VIDEO_VLC // VLC Video used
// for vlc
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
extern "C" {
#include <vlc/vlc.h>
#include <vlc/libvlc_media.h>
}
#endif // VLC
#ifdef GC_VIDEO_QT5 // QT5 Video Stuff
#include <QVideoWidget>
#include <QMediaPlayer>
#include <QMediaContent>
#endif
// QT stuff etc
#include <QtGui>
#include <QTimer>
#include "Context.h"
#include "DeviceConfiguration.h"
#include "DeviceTypes.h"
#include "RealtimeData.h"
#include "TrainSidebar.h"
// Linux container changed in QT5
#if (defined Q_OS_LINUX) && (QT_VERSION < 0x050000)
#include <QX11EmbedContainer>
#endif
// regardless we always have a media helper
class MediaHelper
{
public:
MediaHelper();
~MediaHelper();
// get a list of supported media
// found in the supplied directory
QStringList listMedia(QDir directory);
bool isMedia(QString filename);
private:
QStringList supported;
#ifdef GC_VIDEO_VLC
libvlc_instance_t * inst;
#endif
};
class VideoWindow : public GcWindow
{
Q_OBJECT
G_OBJECT
public:
VideoWindow(Context *);
~VideoWindow();
public slots:
void startPlayback();
void stopPlayback();
void pausePlayback();
void resumePlayback();
void seekPlayback(long ms);
void mediaSelected(QString filename);
protected:
void resizeEvent(QResizeEvent *);
// passed from Context *
Context *context;
bool m_MediaChanged;
#ifdef GC_VIDEO_VLC
// vlc for older QT
libvlc_instance_t * inst;
//libvlc_exception_t exceptions;
libvlc_media_player_t *mp;
libvlc_media_t *m;
#endif
#ifdef GC_VIDEO_QT5
// QT native
QMediaContent mc;
QVideoWidget *wd;
QMediaPlayer *mp;
#endif
#ifdef Q_OS_LINUX
#if QT_VERSION > 0x050000
QWidget *x11Container;
#else
QX11EmbedContainer *x11Container;
#endif
#endif
#ifdef WIN32
QWidget *container;
#endif
bool init; // we initialised ok ?
};
#endif // _GC_VideoWindow_h