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.
59 lines
990 B
59 lines
990 B
//
|
|
// C++ Interface: k9title
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2007
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#ifndef K9TITLE_H
|
|
#define K9TITLE_H
|
|
|
|
#include "k9common.h"
|
|
#include <tqobject.h>
|
|
#include <tqptrlist.h>
|
|
#include "k9avifile.h"
|
|
#include "k9menubutton.h"
|
|
/**
|
|
@author Jean-Michel PETIT <k9copy@free.fr>
|
|
*/
|
|
class k9NewDVD;
|
|
class k9Menu;
|
|
|
|
class k9TitleItems : public TQPtrList<k9AviFile> {
|
|
protected:
|
|
virtual int compareItems(TQPtrCollection::Item item1,TQPtrCollection::Item item2);
|
|
};
|
|
|
|
class k9Title : public TQObject {
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
public:
|
|
k9Title(k9NewDVD *parent = 0, const char *name = 0);
|
|
~k9Title();
|
|
|
|
k9TitleItems *getFiles();
|
|
|
|
int getNum() const;
|
|
|
|
void setButton(k9MenuButton* _value);
|
|
|
|
|
|
k9MenuButton* getButton() const;
|
|
|
|
k9Menu* getMenu() const;
|
|
|
|
|
|
|
|
private:
|
|
k9TitleItems m_files;
|
|
int m_num;
|
|
k9MenuButton *m_button;
|
|
k9Menu *m_menu;
|
|
};
|
|
|
|
#endif
|