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.7 KiB
72 lines
1.7 KiB
/*************************************************************************** |
|
* Copyright (C) 2008 by Pino Toscano <pino@kde.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. * |
|
***************************************************************************/ |
|
|
|
#ifndef _OKULAR_MOVIE_H_ |
|
#define _OKULAR_MOVIE_H_ |
|
|
|
#include <okular/core/global.h> |
|
#include <okular/core/okular_export.h> |
|
|
|
#include <QtCore/QSize> |
|
|
|
namespace Okular { |
|
|
|
/** |
|
* @short Contains information about a movie object. |
|
* |
|
* @since 0.8 (KDE 4.2) |
|
*/ |
|
class OKULAR_EXPORT Movie |
|
{ |
|
public: |
|
/** |
|
* Creates a new movie object with the given external @p fileName. |
|
*/ |
|
explicit Movie( const QString& fileName ); |
|
|
|
/** |
|
* Destroys the movie object. |
|
*/ |
|
~Movie(); |
|
|
|
/** |
|
* Returns the url of the movie. |
|
*/ |
|
QString url() const; |
|
|
|
/** |
|
* Sets the size for the movie. |
|
*/ |
|
void setSize( const QSize &aspect ); |
|
|
|
/** |
|
* Returns the size of the movie. |
|
*/ |
|
QSize size() const; |
|
|
|
/** |
|
* Sets the @p rotation of the movie. |
|
*/ |
|
void setRotation( Rotation rotation ); |
|
|
|
/** |
|
* Returns the rotation of the movie. |
|
*/ |
|
Rotation rotation() const; |
|
|
|
private: |
|
class Private; |
|
Private* const d; |
|
|
|
Q_DISABLE_COPY( Movie ) |
|
}; |
|
|
|
} |
|
|
|
#endif
|
|
|