summaryrefslogtreecommitdiffstats
path: root/k9author/k9avifile.h
blob: 83a6f174db0fb9de69a48e7351ae1d2623cd4dcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
//
// C++ Interface: k9avifile
//
// Description: 
//
//
// Author: Jean-Michel PETIT <[email protected]>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef K9AVIFILE_H
#define K9AVIFILE_H

#include <qobject.h>
#include <qdatetime.h>
#include <qimage.h>

/**
	@author Jean-Michel PETIT <[email protected]>
*/
class k9Title;
class k9AviFile : public QObject
{
Q_OBJECT
public:
    k9AviFile(k9Title *parent = 0, const char *name = 0);

    ~k9AviFile();

	void setFileName ( const QString& _value );
	QString getFileName() const;

	void setStart ( const QTime& _value );
	QTime getStart() const;

	void setEnd ( const QTime& _value );
	QTime getEnd() const;

	void setLabel ( const QString& _value );
	QString getLabel() const;

	k9Title* getTitle() const;

	int getNum() const;

	void setPrevious ( k9AviFile* _value );
	k9AviFile* getPrevious() const;

	void setNext ( k9AviFile* _value );
	k9AviFile* getNext() const;

        void setBreakPrevious(bool _state);
        bool getBreakPrevious();

        void setBreakNext(bool _state);
        bool getBreakNext();

	void setImage(const QImage& _value);
	QImage getImage() const;
	

private:
    QString m_fileName;
    QTime m_start;
    QString m_label;
    QTime m_end;
    k9Title *m_title;
    QImage m_image;
    int m_num;
    bool m_breakNext,m_breakPrevious;
    k9AviFile *m_previous;
    k9AviFile *m_next;
    void setTitle ( k9Title* _value );
signals:
    void aviFileUpdated(k9AviFile *_aviFile);
    void imageChanged(const QImage &);
};

#endif