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.
k9copy/k9author/k9import.h

81 lines
1.9 KiB

//
// C++ Interface:
//
// Description:
//
//
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef K9IMPORT_H
#define K9IMPORT_H
#include "k9common.h"
#include <tqlistview.h>
#include "k9copy.h"
#include "../k9author/import.h"
#include "../k9author/k9newdvd.h"
class k9AviFile;
class k9MenuButton;
class k9MenuEdit;
class k9Import : public import {
Q_OBJECT
private:
TQListViewItem *m_root;
k9NewDVD m_newDVD;
KMdiToolViewAccessor *m_toolView;
KDockWidget *m_dockWidget;
k9Copy *m_parent;
TQPtrList <k9CdDrive> recorderList;
k9CdDrives *drives;
k9MenuEdit *m_menuEdit;
public:
k9Import(TQWidget* parent = 0, const char* name = 0,k9CdDrives *_drives=0 );
~k9Import();
/*$PUBLIC_FUNCTIONS$*/
void init();
void execute();
TQListViewItem* getRoot() const;
k9NewDVD *getNewDVD() {
return &m_newDVD;
}
public slots:
/*$PUBLIC_SLOTS$*/
void aviFileUpdated(k9AviFile *_aviFile);
void buttonUpdated(k9MenuButton *_button, const TQImage &_image);
void setMenuEdit(k9MenuEdit* _value);
void setEnableCreate(bool _state);
void updateTotalTime();
void titleAdded();
protected:
/*$PROTECTED_FUNCTIONS$*/
void setProgressWindow(TQWidget *_widget);
void removeProgressWindow();
void readDrives();
void addDrive (k9CdDrive *_drive);
protected slots:
/*$PROTECTED_SLOTS$*/
void lvDVDItemSelected (TQListViewItem *);
void cbFormatActivated(const TQString &_format);
virtual void deviceAdded(k9CdDrive *_drive);
virtual void deviceRemoved(k9CdDrive *_drive);
virtual void volumeChanged(const TQString &device,const TQString &volumeName);
signals:
void aviFileSelected(k9AviFile *_aviFile);
void titleSelected(k9Title *);
void rootSelected(k9NewDVD *);
};
#endif