-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleanup and fixed a few bugs like keep same position etc.
- Loading branch information
Showing
17 changed files
with
716 additions
and
560 deletions.
There are no files selected for viewing
25 changes: 14 additions & 11 deletions
25
plugins/netlist_modifier/include/netlist_modifier/ini_settings_popup.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,28 @@ | ||
#pragma once | ||
|
||
#include <QDialog> | ||
|
||
#include <QPushButton> | ||
#include <QRadioButton> | ||
#include <QSpinBox> | ||
#include <QPushButton> | ||
|
||
namespace hal{ | ||
class IniSettingsPopup : public QDialog { | ||
namespace hal | ||
{ | ||
class IniSettingsPopup : public QDialog | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit IniSettingsPopup(QWidget *parent = nullptr); | ||
explicit IniSettingsPopup(QWidget* parent = nullptr); | ||
int get_selected_probing_model(); | ||
int get_probe_limit(); | ||
|
||
private: | ||
QRadioButton *t_probe_option; | ||
QRadioButton *scan_chain_option; | ||
QSpinBox *probe_limit; | ||
QPushButton *okButton; | ||
QPushButton *cancelButton; | ||
QRadioButton* t_probe_option; | ||
QRadioButton* scan_chain_option; | ||
QSpinBox* probe_limit; | ||
QPushButton* okButton; | ||
QPushButton* cancelButton; | ||
|
||
void acceptSelection(); | ||
}; | ||
} | ||
} // namespace hal |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.