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.
54 lines
969 B
54 lines
969 B
//
|
|
// C++ Interface:
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2007
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
|
|
#ifndef K9NEWTITLE_H
|
|
#define K9NEWTITLE_H
|
|
|
|
#include "k9common.h"
|
|
#include "../k9author/newTitle.h"
|
|
#include "k9lvitemimport.h"
|
|
#include <tqstring.h>
|
|
|
|
class k9Import;
|
|
class k9NewTitle : public newTitle
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
private:
|
|
k9Import *m_k9Import;
|
|
TQString m_fileName;
|
|
TQImage m_image;
|
|
public:
|
|
k9NewTitle(TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
|
|
~k9NewTitle();
|
|
void setK9Import ( k9Import* _value );
|
|
|
|
/*$PUBLIC_FUNCTIONS$*/
|
|
|
|
public slots:
|
|
/*$PUBLIC_SLOTS$*/
|
|
|
|
protected:
|
|
/*$PROTECTED_FUNCTIONS$*/
|
|
|
|
protected slots:
|
|
/*$PROTECTED_SLOTS$*/
|
|
virtual void fileSelected(const TQString &);
|
|
virtual void bAddClicked();
|
|
virtual void rbNumberClicked();
|
|
virtual void rbLengthClicked();
|
|
virtual void drawImage (TQImage *_image);
|
|
};
|
|
|
|
#endif
|
|
|