blob: a5d75a318976039185ee9dd4d2171d581b97e75f (
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
|
//
// 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
{
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
|