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.
|
|
|
//
|
|
|
|
// C++ Interface:
|
|
|
|
//
|
|
|
|
// Description:
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2006
|
|
|
|
//
|
|
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef K9TITLEFACTOR_H
|
|
|
|
#define K9TITLEFACTOR_H
|
|
|
|
|
|
|
|
#include "k9common.h"
|
|
|
|
#include "titlefactor.h"
|
|
|
|
#include "k9dvd.h"
|
|
|
|
#include "k9dvdtitle.h"
|
|
|
|
|
|
|
|
|
|
|
|
class k9TitleFactor : public titleFactor
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
k9TitleFactor(TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
|
|
|
|
~k9TitleFactor();
|
|
|
|
/*$PUBLIC_FUNCTIONS$*/
|
|
|
|
private :
|
|
|
|
k9DVDTitle *m_current;
|
|
|
|
k9DVD *m_dvd;
|
|
|
|
bool m_slFactorPressed;
|
|
|
|
bool m_withMenus;
|
|
|
|
bool m_useDvdAuthor;
|
|
|
|
float m_factor;
|
|
|
|
bool m_updating;
|
|
|
|
public slots:
|
|
|
|
/*$PUBLIC_SLOTS$*/
|
|
|
|
virtual void ckAutoClicked(bool _checked);
|
|
|
|
virtual void slFactorReleased();
|
|
|
|
virtual void slFactorPressed();
|
|
|
|
virtual void slFactor_valueChanged( int );
|
|
|
|
virtual void SelectionChanged( k9DVD *_dvd,bool _withMenus);
|
|
|
|
virtual void changedTitle(k9DVDTitle *_title);
|
|
|
|
virtual void setUseDvdAuthor(bool _value);
|
|
|
|
protected:
|
|
|
|
/*$PROTECTED_FUNCTIONS$*/
|
|
|
|
void setMinFactor();
|
|
|
|
float getFactor();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|