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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
|
/***************************************************************************
scanpackager.h - description
-------------------
begin : Fri Dec 17 1999
copyright : (C) 1999 by Klaas Freitag
email : freitag@suse.de
***************************************************************************/
/***************************************************************************
* *
* This file may be distributed and/or modified under the terms of the *
* GNU General Public License version 2 as published by the Free Software *
* Foundation and appearing in the file COPYING included in the *
* packaging of this file. *
*
* As a special exception, permission is given to link this program *
* with any version of the KADMOS ocr/icr engine of reRecognition GmbH, *
* Kreuzlingen and distribute the resulting executable without *
* including the source code for KADMOS in the source distribution. *
*
* As a special exception, permission is given to link this program *
* with any edition of Qt, and distribute the resulting executable, *
* without including the source code for Qt in the source distribution. *
* *
***************************************************************************/
#ifndef SCANPACKAGER_H
#define SCANPACKAGER_H
#include <qlistview.h>
#include <qimage.h>
#include <qpixmap.h>
#include <qdragobject.h>
#include <qmap.h>
#include <klistview.h>
#include <kio/job.h>
#include <kio/global.h>
#include <kio/file.h>
#include <kfiletreeview.h>
/**
*@author Klaas Freitag
*/
class KURL;
class QPopupMenu;
class KFileTreeViewItem;
class KookaImage;
class KookaImageMeta;
class KFileTreeBranch;
typedef enum{ Dummy, NameSearch, UrlSearch } SearchType;
class JobDescription
{
public:
enum JobType { NoJob, ImportJob, RenameJob, ExportJob };
JobDescription():jobType( NoJob ), kioJob(0L), pitem(0L) {}
JobDescription( KIO::Job* kiojob, KFileTreeViewItem *new_item, JobType type ) :
jobType(type), kioJob(kiojob), pitem(new_item) {}
JobType type( void ) { return( jobType ); }
KFileTreeViewItem *item( void ) { return( pitem ); }
KIO::Job* job( void ){ return( kioJob ); }
private:
JobType jobType;
KIO::Job* kioJob;
KFileTreeViewItem* pitem;
};
class ScanPackager : public KFileTreeView
{
Q_OBJECT
public:
ScanPackager( QWidget *parent);
~ScanPackager();
virtual QString getImgName( QString name_on_disk );
QString getCurrImageFileName( bool ) const;
KookaImage* getCurrImage() const;
KFileTreeBranch* openRoot( const KURL&, bool open=false );
QPopupMenu *contextMenu() const { return m_contextMenu; }
void openRoots();
public slots:
void slSelectImage( const KURL& );
void slAddImage( QImage *img, KookaImageMeta* meta = 0 );
void slShowContextMenue(QListViewItem *, const QPoint &, int );
void slotExportFile( );
void slotImportFile();
void slotCanceled(KIO::Job*);
void slotCurrentImageChanged( QImage* );
void slotDecorate( KFileTreeViewItem* );
void slotDecorate( KFileTreeBranch*, const KFileTreeViewItemList& );
void slotSelectDirectory( const QString& );
protected:
virtual void contentsDragMoveEvent( QDragMoveEvent *e );
protected slots:
void slClicked( QListViewItem * );
void slFileRename( QListViewItem*, const QString&, int );
// void slFilenameChanged( KFileTreeViewItem*, const KURL & );
void slImageArrived( KFileTreeViewItem *item, KookaImage* image );
void slotCreateFolder( );
void slotDeleteItems( );
void slotUnloadItems( );
void slotUnloadItem( KFileTreeViewItem *curr );
void slotDirCount( KFileTreeViewItem *item, int cnt );
void slotUrlsDropped( QWidget*, QDropEvent*, KURL::List& urls, KURL& copyTo );
void slotDeleteFromBranch( KFileItem* );
void slotStartupFinished( KFileTreeViewItem * );
signals:
void showImage ( KookaImage* );
void deleteImage( KookaImage* );
void unloadImage( KookaImage* );
void galleryPathSelected( KFileTreeBranch* branch, const QString& relativPath );
void directoryToRemove( KFileTreeBranch *branch, const QString& relativPath );
void showThumbnails( KFileTreeViewItem* );
void aboutToShowImage( const KURL& ); /* starting to load image */
void imageChanged( KFileItem* ); /* the image has changed */
void fileDeleted( KFileItem* );
void fileChanged( KFileItem* );
void fileRenamed( KFileItem*, const KURL& );
private:
QString localFileName( KFileTreeViewItem* it ) const;
void loadImageForItem( KFileTreeViewItem* item );
QCString getImgFormat( KFileTreeViewItem* item ) const;
QString buildNewFilename( QString cmplFilename, QString currFormat ) const;
KFileTreeViewItem *spFindItem( SearchType type, const QString name, const KFileTreeBranch* branch = 0 );
QString itemDirectory( const KFileTreeViewItem*, bool relativ = false ) const;
// int readDir( QListViewItem *parent, QString dir_to_read );
void showContextMenu( QPoint p, bool show_folder = true );
QString m_currImportDir;
QString m_currCopyDir;
QString currSelectedDir;
KIO::Job *copyjob;
int img_counter;
QPopupMenu *m_contextMenu;
// like m_nextUrlToSelect in KFileTreeView but for our own purposes (showing the image)
KURL m_nextUrlToShow;
QPixmap m_floppyPixmap;
QPixmap m_grayPixmap;
QPixmap m_bwPixmap;
QPixmap m_colorPixmap;
KFileTreeBranch *m_defaultBranch;
bool m_startup;
};
#endif
|