You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
272 lines
6.2 KiB
272 lines
6.2 KiB
/*
|
|
* 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 _OPTION_DIALOG_H_
|
|
#define _OPTION_DIALOG_H_
|
|
|
|
|
|
class TQComboBox;
|
|
class TQFrame;
|
|
class TQCheckBox;
|
|
class TQLabel;
|
|
class TQLineEdit;
|
|
class TQPushbutton;
|
|
class TQRadioButton;
|
|
class TQSpinBox;
|
|
class TQComboBox;
|
|
class KFontChooser;
|
|
|
|
|
|
#include <kdialogbase.h>
|
|
#include <klistbox.h>
|
|
#include "hexeditstate.h"
|
|
|
|
|
|
|
|
class CColorListBox : public KListBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
CColorListBox( TQWidget *parent=0, const char * name=0, WFlags f=0 );
|
|
void setColor( uint index, const TQColor &color );
|
|
const TQColor color( uint index );
|
|
|
|
public slots:
|
|
virtual void setEnabled( bool state );
|
|
|
|
protected:
|
|
void dragEnterEvent( TQDragEnterEvent *e );
|
|
void dragLeaveEvent( TQDragLeaveEvent *e );
|
|
void dragMoveEvent( TQDragMoveEvent *e );
|
|
void dropEvent( TQDropEvent *e );
|
|
|
|
private slots:
|
|
void newColor( int index );
|
|
|
|
private:
|
|
int mCurrentOnDragEnter;
|
|
|
|
signals:
|
|
void dataChanged();
|
|
};
|
|
|
|
|
|
class CColorListItem : public TQListBoxItem
|
|
{
|
|
public:
|
|
CColorListItem( const TQString &text, const TQColor &color=TQt::black );
|
|
const TQColor &color( void );
|
|
void setColor( const TQColor &color );
|
|
|
|
protected:
|
|
virtual void paint( TQPainter * );
|
|
virtual int height( const TQListBox * ) const;
|
|
virtual int width( const TQListBox * ) const;
|
|
|
|
private:
|
|
TQColor mColor;
|
|
int mBoxWidth;
|
|
};
|
|
|
|
|
|
|
|
|
|
class COptionDialog : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
enum EPage
|
|
{
|
|
page_layout = 0,
|
|
page_cursor,
|
|
page_font,
|
|
page_color,
|
|
page_file,
|
|
page_misc,
|
|
page_max
|
|
};
|
|
|
|
COptionDialog( TQWidget *parent = 0, char *name = 0, bool modal = false );
|
|
~COptionDialog( void );
|
|
|
|
void setLayout( SDisplayLayout &layout, SDisplayLine &line );
|
|
void setCursor( SDisplayCursor &cursor );
|
|
void setColor( SDisplayColor &color );
|
|
void setFont( SDisplayFont &font );
|
|
void setFile( SDisplayMisc &misc );
|
|
void setMisc( SDisplayMisc &misc );
|
|
void setState( SDisplayState &state );
|
|
|
|
protected:
|
|
virtual void showEvent( TQShowEvent *e );
|
|
|
|
protected slots:
|
|
void slotModeSelectorChanged( int index );
|
|
void slotLineSizeChanged( int value );
|
|
void slotColumnSizeChanged( int value );
|
|
void slotColumnSepCheck( bool state );
|
|
void slotBlinkIntervalCheck( bool state );
|
|
void slotBlockCursorCheck( bool state );
|
|
void slotFontSystem( bool state );
|
|
void slotColorSystem( bool state );
|
|
void slotThresholdConfirm( void );
|
|
|
|
virtual void slotDefault( void );
|
|
virtual void slotOk( void );
|
|
virtual void slotApply( void );
|
|
void slotChanged();
|
|
|
|
private:
|
|
struct SLayoutWidgets
|
|
{
|
|
TQComboBox *formatCombo;
|
|
TQSpinBox *lineSizeSpin;
|
|
TQSpinBox *columnSizeSpin;
|
|
TQCheckBox *lockLineCheck;
|
|
TQCheckBox *lockColumnCheck;
|
|
TQCheckBox *columnCheck;
|
|
TQComboBox *gridCombo;
|
|
TQLabel *leftSepLabel;
|
|
TQLabel *rightSepLabel;
|
|
TQSpinBox *leftSepWidthSpin;
|
|
TQSpinBox *rightSepWidthSpin;
|
|
TQSpinBox *separatorSpin;
|
|
TQSpinBox *edgeSpin;
|
|
TQLabel *columnSepLabel;
|
|
TQSpinBox *columnSepSpin;
|
|
|
|
};
|
|
struct SCursorWidgets
|
|
{
|
|
TQCheckBox *blinkCheck;
|
|
TQSpinBox *blinkSpin;
|
|
TQLabel *blinkLabel;
|
|
TQCheckBox *blockCheck;
|
|
TQCheckBox *thickCheck;
|
|
TQRadioButton *stopRadio;
|
|
TQRadioButton *hideRadio;
|
|
TQRadioButton *nothingRadio;
|
|
};
|
|
struct SColorWidgets
|
|
{
|
|
enum colorType
|
|
{
|
|
FirstTextBg = 0,
|
|
SecondTextBg,
|
|
OffsetBg,
|
|
InactiveBg,
|
|
EvenColumnFg,
|
|
OddColumnFg,
|
|
NonPrintFg,
|
|
OffsetFg,
|
|
SecondaryFg,
|
|
MarkedBg,
|
|
MarkedFg,
|
|
CursorBg,
|
|
CursorFg,
|
|
BookmarkBg,
|
|
BookmarkFg,
|
|
SeparatorFg,
|
|
GridFg,
|
|
MAX_COLOR
|
|
};
|
|
|
|
TQCheckBox *checkSystem;
|
|
CColorListBox *colorList;
|
|
};
|
|
struct SFontWidgets
|
|
{
|
|
TQCheckBox *checkSystem;
|
|
KFontChooser *chooser;
|
|
TQLineEdit *nonPrintInput;
|
|
};
|
|
struct SFileWidgets
|
|
{
|
|
TQComboBox *openCombo;
|
|
TQCheckBox *gotoOffsetCheck;
|
|
TQCheckBox *reloadOffsetCheck;
|
|
TQCheckBox *writeProtectCheck;
|
|
TQCheckBox *backupCheck;
|
|
TQCheckBox *discardRecentCheck;
|
|
};
|
|
struct SMiscWidgets
|
|
{
|
|
TQSpinBox *undoSpin;
|
|
TQCheckBox *inputCheck;
|
|
TQCheckBox *fatalCheck;
|
|
TQCheckBox *autoCheck;
|
|
TQCheckBox *insertCheck;
|
|
TQCheckBox *confirmWrapCheck;
|
|
TQCheckBox *cursorJumpCheck;
|
|
TQCheckBox *thresholdCheck;
|
|
TQCheckBox *bookmarkColumnCheck;
|
|
TQCheckBox *bookmarkEditorCheck;
|
|
TQLabel *thresholdLabel;
|
|
TQSpinBox *thresholdSpin;
|
|
};
|
|
|
|
private:
|
|
void setupLayoutPage( void );
|
|
void setupCursorPage( void );
|
|
void setupColorPage( void );
|
|
void setupFontPage( void );
|
|
void setupFilePage( void );
|
|
void setupMiscPage( void );
|
|
SDisplayCursor::EFocusMode cursorFocusMode( void );
|
|
|
|
|
|
signals:
|
|
void lineSizeChoice( const SDisplayLine &lineSize );
|
|
void layoutChoice( const SDisplayLayout &layout );
|
|
void cursorChoice( const SDisplayCursor &cursor );
|
|
void colorChoice( const SDisplayColor &color );
|
|
void fontChoice( const SDisplayFont &font );
|
|
void miscChoice( const SDisplayMisc &misc );
|
|
void removeRecentFiles( void );
|
|
|
|
private:
|
|
SDisplayState mDisplayState;
|
|
SLayoutWidgets mLayout;
|
|
SCursorWidgets mCursor;
|
|
SColorWidgets mColor;
|
|
SFontWidgets mFont;
|
|
SFileWidgets mFile;
|
|
SMiscWidgets mMisc;
|
|
bool configChanged;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|