Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/blame/commit/5952e03b530d66cb93b70d252880b7aea1abaf50/src/gui/UBVideoPlayer.h You should set ROOT_URL correctly, otherwise the web may not work correctly.
новые иконки в OpenBoard
OpenBoard/src/gui/UBVideoPlayer.h

44 lines
715 B

/*
* UBVideoPlayer.h
*
* Created on: 24 sept. 2009
* Author: Luc
*/
#ifndef UBVIDEOPLAYER_H_
#define UBVIDEOPLAYER_H_
#include <QtGui>
#include <phonon/VideoPlayer>
class UBVideoPlayerTransport;
class UBVideoPlayer : public QWidget
{
Q_OBJECT;
public:
UBVideoPlayer(QWidget* pParent = 0);
virtual ~UBVideoPlayer();
Phonon::VideoPlayer* videoPlayer()
{
return mVideoPlayer;
}
protected:
Phonon::VideoPlayer* mVideoPlayer;
QPushButton *mPlayPause;
private slots:
void mediaStateChanged(Phonon::State newstate, Phonon::State oldstate);
void tooglePlayPause();
};
#endif /* UBVIDEOPLAYER_H_ */