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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
/*
* khexedit - Versatile hex editor
* Copyright (C) 1999 Espen Sand, espensa@online.no
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef _HEX_EDITOR_WIDGET_H_
#define _HEX_EDITOR_WIDGET_H_
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <qvariant.h>
#include <qptrdict.h>
#include <kapplication.h>
#include "hexbuffer.h"
#include "hexviewwidget.h"
#include "progress.h"
class CGotoDialog;
class CFindDialog;
class CReplaceDialog;
class CInsertDialog;
class CFilterDialog;
class COptionDialog;
class CPrinterDialog;
class CStringDialog;
class CCharTableDialog;
class CFileInfoDialog;
class CExportDialog;
class CConverterDialog;
class CFindNavigatorDialog;
class CReplacePromptDialog;
namespace KIO { class Job; }
class CHexEditorWidget : public QWidget
{
Q_OBJECT
public:
enum EProgressMode
{
pg_read = 0,
pg_write,
pg_insert,
pg_print,
pg_encode,
pg_strings,
pg_export,
pg_statistic,
pg_MAX
};
public:
CHexEditorWidget( QWidget *parent = 0, const char *name = 0 );
~CHexEditorWidget( void );
void initialize( void );
void writeConfiguration( KConfig &config );
void readConfiguration( KConfig &config );
bool isOpen( const QString &url, uint &offset );
bool modified( void );
inline int defaultTextWidth( void );
inline CHexViewWidget *view( void );
inline SDisplayLayout &layout( void );
inline SDisplayLine &line( void );
inline SDisplayInputMode &inputMode( void );
inline SDisplayMisc::EOpenFile openFile( void );
inline bool discardRecentFiles( void );
inline bool gotoStartupOffset( void );
inline bool gotoReloadOffset( void );
signals:
void errorLoadFile( const QString &url );
void setProgress( int percent );
void setProgress( int curPage, int maxPage );
void enableProgressText( bool state );
void setProgressText( const QString &msg );
void operationChanged( bool state );
void removeRecentFiles( void );
public slots:
void setHexadecimalMode( void );
void setDecimalMode( void );
void setOctalMode( void );
void setTextMode( void );
void setBinaryMode( void );
void open( const QString &url, bool reloadWhenChanged, uint offset );
void newFile( void );
void newFile( const QByteArray &data );
void stepFile( bool next );
void open( void );
void insertFile( void );
void stop( void );
bool close( void );
bool closeAll( void );
bool backup( void );
bool save( void );
bool saveAs( void );
void reload( void );
void print( void );
void exportDialog( void );
void encode( CConversion::EMode mode );
void undo( void );
void redo( void );
void toggleWriteProtection( void );
void defaultWriteProtection( void );
void toggleResizeLock( void );
void setResizeLock( bool state );
void toggleOffsetColumnVisibility( void );
void toggleTextColumnVisibility( void );
void toggleOffsetAsDecimal( void );
void toggleDataUppercase( void );
void toggleOffsetUppercase( void );
void toggleInsertMode( void );
void benchmark( void );
void copy( void );
void copyText( void );
void paste( void );
void pasteNewFile( void );
void cut( void );
void selectAll( void );
void unselect( void );
void addBookmark( void );
void removeBookmark( void );
void removeAllBookmark( void );
void replaceBookmark( void );
void gotoBookmark( int position );
void gotoNextBookmark( void );
void gotoPrevBookmark( void );
void gotoOffset( void );
void find( void );
void findAgain( void );
void findNext( void );
void findPrevious( void );
void findData( SSearchControl &sc, uint mode, bool navigator );
void replace( void );
void insertPattern( void );
void encoding( void );
void strings( void );
void recordView( void );
void filter( void );
void chart( void );
void converter( void );
void statistics( void );
void options( void );
void favorites( void );
protected slots:
void fontChanged( void );
void paletteChanged( void );
void layoutChanged( const SDisplayLayout &layout );
void inputModeChanged( const SDisplayInputMode &input );
void setLineSize(const SDisplayLine &line );
void setLayout( const SDisplayLayout &layout );
void setCursor( const SDisplayCursor &cursor );
void setColor( const SDisplayColor &color );
void setFont( const SDisplayFont &font );
void setMisc( const SDisplayMisc &misc );
void printPostscript( CHexPrinter & );
void exportText( const SExportText & );
void exportHtml( const SExportHtml & );
void exportCArray( const SExportCArray &ex );
void findNavigator( SSearchControl &sc );
void replaceData( SSearchControl &sc, uint mode );
void replacePrompt( SSearchControl &sc );
void replaceResult( SSearchControl &sc );
void collectStrings( void );
void collectStatistics( SStatisticControl &sc );
protected:
void resizeEvent( QResizeEvent *e );
private:
bool selectDocument( const QString &url, bool reloadWhenChanged );
bool querySave( void );
int readURL( const KURL &url, bool insert );
void writeURL( QString &url );
bool readFile( const QString &diskPath, const QString &url, bool insert );
bool writeFile( const QString &diskPath );
void saveWorkingDirectory( const QString &url );
bool confirmPrintPageNumber( CHexPrinter &printer );
CHexBuffer *documentItem( const QString &url );
CHexBuffer *documentItem( const QString &url, bool next );
bool createBuffer( void );
void removeBuffer( void );
bool askWrap( bool fwd, const QString &header );
bool canFind( bool showError );
void hideReplacePrompt( void );
bool modifiedByAlien( const QString &url );
void enableInputLock( bool inputLock );
int prepareProgressData( EProgressMode mode );
static int progressReceiver( void *clientData, SProgressData &pd );
int progressParse( const SProgressData &pd );
bool busy( bool showWarning );
private:
QString mWorkDir; // Remembers last directroy used by file dialogs
uint mUntitledCount;
QPtrList<CHexBuffer> mDocumentList;
SDisplayState mDisplayState;
CProgress mProgressData;
EProgressMode mProgressMode;
bool mProgressBusy;
bool mProgressStop;
CHexViewWidget *mHexView;
CGotoDialog *mGotoDialog;
CFindDialog *mFindDialog;
CReplaceDialog *mReplaceDialog;
CInsertDialog *mInsertDialog;
CFilterDialog *mFilterDialog;
COptionDialog *mOptionDialog;
CStringDialog *mStringDialog;
CCharTableDialog *mCharTableDialog;
CFileInfoDialog *mFileInfoDialog;
CExportDialog *mExportDialog;
CConverterDialog *mConverterDialog;
CFindNavigatorDialog *mFindNavigatorDialog;
CReplacePromptDialog *mReplacePromptDialog;
};
inline int CHexEditorWidget::defaultTextWidth( void )
{
return( mHexView->defaultWidth() );
}
inline CHexViewWidget *CHexEditorWidget::view( void )
{
return( mHexView );
}
inline SDisplayLayout &CHexEditorWidget::layout( void )
{
return( mDisplayState.layout );
}
inline SDisplayLine &CHexEditorWidget::line( void )
{
return( mDisplayState.line );
}
inline SDisplayInputMode &CHexEditorWidget::inputMode( void )
{
return( mDisplayState.input );
}
inline SDisplayMisc::EOpenFile CHexEditorWidget::openFile( void )
{
return( mDisplayState.misc.openFile );
}
inline bool CHexEditorWidget::discardRecentFiles( void )
{
return( mDisplayState.misc.discardRecent );
}
inline bool CHexEditorWidget::gotoStartupOffset( void )
{
return( mDisplayState.misc.gotoOnStartup );
}
inline bool CHexEditorWidget::gotoReloadOffset( void )
{
return( mDisplayState.misc.gotoOnReload );
}
#endif
|