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
|
/*
* khexdit - a little hex editor
* Copyright (C) 1996,97,98 Stephan Kulow
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#ifndef _HEXWIDGET_H
#define _HEXWIDGET_H
#include <qmenubar.h>
#include <qlist.h>
#include <qpopmenu.h>
#include <kfm.h>
#include <kapp.h>
#include <kurl.h>
#include <klocale.h>
class HexFile;
class HexWidget : public KTopLevelWidget {
Q_OBJECT
public:
enum KIND_OF_OPEN {
READONLY, READWRITE
};
enum action { GET, PUT };
HexWidget();
HexWidget(const char*);
~HexWidget();
void open(const char*, KIND_OF_OPEN kind);
void open(const char *fileName, const char *url, KIND_OF_OPEN);
void openURL(const char *fileName, KIND_OF_OPEN kind);
protected slots:
void menuCallback(int);
void slotDropEvent( KDNDDropZone * _dropZone );
virtual void saveProperties(KConfig*);
virtual void readProperties(KConfig*);
void unsaved(bool flag);
/// Gets signals from KFM
void slotKFMFinished();
private:
QList<HexFile> files;
HexFile *CurrentFile;
int winID;
QString netFile;
KToolBar *toolbar;
KMenuBar *menu;
KDNDDropZone * dropZone;
/**
Only one KFM connection should be opened at once. Otherwise kedit could get
confused. If this is 0L, you may create a new connection to kfm.
*/
KFM * kfm;
/**
If KEdit is waiting for some internet task to finish, this is the
file that is involved. Mention that it is a complete URL like
"file:/tmp/mist.txt".
*/
QString tmpFile;
/**
If this is for example GET, then KFM loads a file from the net
to the local file system.
*/
action kfmAction;
protected:
static QList<HexWidget> windowList;
int initMenu();
//void paintEvent(QPaintEvent *pa);
void closeEvent ( QCloseEvent *e);
int scrollVWidth,scrollHHeight;
void initGeometry();
};
#endif
|