(self, folder_icon)
| 71 | self._on_load_payload_changed() |
| 72 | |
| 73 | def _create_bin_group(self, folder_icon): |
| 74 | bin_group = QGroupBox('Shellcode') |
| 75 | bin_layout = QHBoxLayout() |
| 76 | self.bin_box = BinComboBox() |
| 77 | bin_btn = QPushButton(folder_icon, '') |
| 78 | bin_btn.setToolTip('Select shellcode file') |
| 79 | bin_btn.setFixedWidth(32) |
| 80 | bin_btn.clicked.connect(lambda: self.bin_box.choose_file(self)) |
| 81 | bin_layout.addWidget(self.bin_box) |
| 82 | bin_layout.addWidget(bin_btn) |
| 83 | bin_group.setLayout(bin_layout) |
| 84 | return bin_group |
| 85 | |
| 86 | def _create_bin_and_payload_group(self, folder_icon): |
| 87 | widget = QWidget() |
nothing calls this directly
no test coverage detected