File: Configuration.h

package info (click to toggle)
edb-debugger 1.3.0-2.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,124 kB
  • sloc: cpp: 46,241; xml: 4,998; ansic: 3,088; sh: 52; asm: 33; makefile: 5
file content (124 lines) | stat: -rw-r--r-- 2,701 bytes parent folder | download | duplicates (4)
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
/*
Copyright (C) 2006 - 2015 Evan Teran
                          evan.teran@gmail.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, 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, see <http://www.gnu.org/licenses/>.
*/

#ifndef CONFIGURATION_H_20061031_
#define CONFIGURATION_H_20061031_

#include "API.h"
#include "IBreakpoint.h"
#include <QList>
#include <QObject>
#include <QString>

class EDB_EXPORT Configuration : public QObject {
	Q_OBJECT
public:
	Configuration(QObject *parent = nullptr);
	~Configuration() override;

public:
	void sendChangeNotification();

Q_SIGNALS:
	void settingsUpdated();

public:
	enum Syntax {
		Intel,
		Att
	};

	enum CloseBehavior {
		Detach,
		Kill,
		KillIfLaunchedDetachIfAttached
	};

	enum InitialBreakpoint {
		EntryPoint,
		MainSymbol
	};

	enum StartupWindowLocation {
		SystemDefault,
		Centered,
		Restore
	};

public:
	// general tab
	CloseBehavior close_behavior;

	// appearance tab
	bool show_address_separator;
	QString stack_font;
	QString registers_font;
	QString disassembly_font;
	QString data_font;
	bool data_show_address;
	bool data_show_hex;
	bool data_show_ascii;
	bool data_show_comments;
	int data_word_width;
	int data_row_width;
	StartupWindowLocation startup_window_location;
	bool function_offsets_in_hex;
	bool show_jump_arrow;
	QString theme_name;

	// debugging tab
	InitialBreakpoint initial_breakpoint;
	bool warn_on_no_exec_bp;
	bool find_main;
	bool tty_enabled;
	bool remove_stale_symbols;
	bool disableASLR;
	bool disableLazyBinding;
	bool break_on_library_load;
	IBreakpoint::TypeId default_breakpoint_type;
	QString tty_command;

	// disassembly tab
	Syntax syntax;
	bool show_register_badges;
	bool syntax_highlighting_enabled;
	bool zeros_are_filling;
	bool uppercase_disassembly;
	bool small_int_as_decimal;
	bool tab_between_mnemonic_and_operands;
	bool show_local_module_name_in_jump_targets;
	bool show_symbolic_addresses;
	bool simplify_rip_relative_targets;

	// directories tab
	QString symbol_path;
	QString plugin_path;
	QString session_path;

	int min_string_length;

	// Exceptions tab
	bool enable_signals_message_box;
	QList<qlonglong> ignored_exceptions;

protected:
	void readSettings();
	void writeSettings();
};

#endif