summaryrefslogtreecommitdiff
path: root/hexGui.hpp
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2008-10-08 19:22:25 +0200
committerTobias Klauser <tklauser@xenon.tklauser.home>2008-10-08 19:22:25 +0200
commit2a441ecbea378da1a2cdea969c48bb7d9e547135 (patch)
tree63e071a86374ad86615c67f4c75534c4df8b6ab3 /hexGui.hpp
parent226f961c4b7fef115ae2c7950abe0e1973efc6a4 (diff)
Import new upstream release 0.42
Diffstat (limited to 'hexGui.hpp')
-rw-r--r--hexGui.hpp97
1 files changed, 0 insertions, 97 deletions
diff --git a/hexGui.hpp b/hexGui.hpp
deleted file mode 100644
index 38b71f0..0000000
--- a/hexGui.hpp
+++ /dev/null
@@ -1,97 +0,0 @@
-/* $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