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
|
/* $Id: hexGui.hpp,v 1.5 2006-11-05 04:42:43 ganzhorn Exp $
* This file is part of lfhex.
* Copyright (C) 2006 Salem Ganzhorn <eyekode@yahoo.com>
*
* 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 version 2.
*
* 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 _GUI_HPP_
#define _GUI_HPP_
#include <QMainWindow>
#include <QLabel>
#include <QCloseEvent>
#include "hexEditor.hpp"
#include "conversionDlg.hpp"
#include "local.h"
class QScrollBar;
class QMenu;
class QString;
class QLabel;
//class QProgressBar;
class HexGui : public QMainWindow {
Q_OBJECT
public:
HexGui( QWidget * parent = 0 );
~HexGui();
const QString& filename(void) const;
// see through call to isModified in hexEditor
bool isModified() const {return hexEditor->isModified();}
// public access functions
off_t offset() const;
Reader * reader();
signals:
void offsetChanged(off_t offset);
public slots:
// sets selection to [start,stop)
void setSelection(off_t start, off_t stop);
bool browseLoadFile();
bool browseLoadFileNew();
bool open(const char * filename);
void gotoOffset(off_t offset);
void setOffsetFromStatusBar(void);
bool save();
bool saveAs();
void setScrollBarRange(off_t low, off_t high);
void setScrollBarValue(off_t pos);
void setOffsetLabel(off_t pos);
void closeEvent(QCloseEvent *ce);
// had to trivially overload closeFile() == closeFile(false) for Qt slots
int closeFile();
int closeFile(bool force);
void searchForwards();
void searchBackwards();
protected:
void search( bool forwards );
protected:
enum ActionID_e {
UndoAction,
RedoAction,
SaveAction,
SaveAsAction,
TotalActions
};
QLabel *statusLabel;
QLineEdit *offsetLineEdit;
// QProgressBar *progressBar;
HexEditor *hexEditor;
ConversionDlg *conversionDlg;
QScrollBar *vsb;
QAction* actions[TotalActions];
QMenu *fileMenu;
QMenu *editMenu;
QMenu *viewMenu;
};
#endif
|