forked from iGio90/Dwarf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdialog_cs_configs.py
73 lines (57 loc) · 2.54 KB
/
dialog_cs_configs.py
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
"""
Dwarf - Copyright (C) 2019 Giovanni Rocca (iGio90)
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 3 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 <https://www.gnu.org/licenses/>
"""
import capstone
from PyQt5 import QtCore
from PyQt5.QtWidgets import *
class CsConfigsDialog(QDialog):
def __init__(self, parent=None, arch='', mode=''):
super(CsConfigsDialog, self).__init__(parent)
layout = QVBoxLayout(self)
arch_mode_layout = QHBoxLayout()
self.setMinimumWidth(350)
cs_objs = dir(capstone)
self.arch = QComboBox(self)
for w in cs_objs:
if w.startswith('CS_ARCH_'):
self.arch.addItem(w.replace('CS_ARCH_', '').lower())
if getattr(capstone, w) == arch:
self.arch.setCurrentIndex(self.arch.count() - 1)
arch_mode_layout.addWidget(self.arch)
self.mode = QComboBox(self)
for w in cs_objs:
if w.startswith('CS_MODE_'):
self.mode.addItem(w.replace('CS_MODE_', '').lower())
if getattr(capstone, w) == mode:
self.mode.setCurrentIndex(self.mode.count() - 1)
arch_mode_layout.addWidget(self.mode)
layout.addLayout(arch_mode_layout)
buttons = QHBoxLayout()
ok = QPushButton('Ok')
buttons.addWidget(ok)
ok.clicked.connect(self.accept)
cancel = QPushButton('cancel')
cancel.clicked.connect(self.close)
buttons.addWidget(cancel)
layout.addLayout(buttons)
def keyPressEvent(self, event):
super(CsConfigsDialog, self).keyPressEvent(event)
if event.key() == QtCore.Qt.Key_Return:
self.accept()
@staticmethod
def show_dialog(arch='', mode=''):
dialog = CsConfigsDialog(arch=arch, mode=mode)
result = dialog.exec_()
return result == QDialog.Accepted, \
getattr(capstone, 'CS_ARCH_%s' % dialog.arch.currentText().upper()), \
getattr(capstone, 'CS_MODE_%s' % dialog.mode.currentText().upper())