mirror of
https://github.com/epasveer/seer.git
synced 2026-08-31 09:30:41 +08:00
Add a PID browser dialog when connecting to an external program.
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
#include "SeerSlashProcDialog.h"
|
||||
|
||||
SeerSlashProcDialog::SeerSlashProcDialog (QWidget* parent) : QDialog(parent) {
|
||||
|
||||
// Set up the UI.
|
||||
setupUi(this);
|
||||
|
||||
// Setup the widgets
|
||||
|
||||
// Connect things.
|
||||
}
|
||||
|
||||
SeerSlashProcDialog::~SeerSlashProcDialog () {
|
||||
}
|
||||
|
||||
int SeerSlashProcDialog::selectedPid () const {
|
||||
|
||||
return slashProcWidget->selectedPid();
|
||||
}
|
||||
|
||||
QString SeerSlashProcDialog::selectedName () const {
|
||||
|
||||
return slashProcWidget->selectedName();
|
||||
}
|
||||
|
||||
QString SeerSlashProcDialog::selectedCommandLine () const {
|
||||
|
||||
return slashProcWidget->selectedCommandLine();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user