summaryrefslogtreecommitdiffstats
path: root/k9author/k9newtitle.h
diff options
context:
space:
mode:
Diffstat (limited to 'k9author/k9newtitle.h')
-rw-r--r--k9author/k9newtitle.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/k9author/k9newtitle.h b/k9author/k9newtitle.h
new file mode 100644
index 0000000..8df44f3
--- /dev/null
+++ b/k9author/k9newtitle.h
@@ -0,0 +1,52 @@
+//
+// 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 <qstring.h>
+
+class k9Import;
+class k9NewTitle : public newTitle
+{
+ Q_OBJECT
+private:
+ k9Import *m_k9Import;
+ QString m_fileName;
+ QImage m_image;
+public:
+ k9NewTitle(QWidget* 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 QString &);
+ virtual void bAddClicked();
+ virtual void rbNumberClicked();
+ virtual void rbLengthClicked();
+ virtual void drawImage (QImage *_image);
+};
+
+#endif
+