Add a PID browser dialog when connecting to an external program.

This commit is contained in:
Ernie Pasveer
2021-10-16 18:37:11 -05:00
parent 8617bf70ac
commit 689ee4333d
11 changed files with 624 additions and 0 deletions
+30
View File
@@ -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();
}