mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
31 lines
569 B
C++
31 lines
569 B
C++
|
|
#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();
|
||
|
|
}
|
||
|
|
|