mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
32 lines
805 B
C++
32 lines
805 B
C++
// SPDX-FileCopyrightText: 2021 Ernie Pasveer <epasveer@att.net>
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QtWidgets/QDialog>
|
|
#include <QtCore/QString>
|
|
|
|
#include "ui_SeerSlashProcDialog.h"
|
|
|
|
class SeerSlashProcDialog : public QDialog, protected Ui::SeerSlashProcDialogForm {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SeerSlashProcDialog (QWidget* parent = 0);
|
|
~SeerSlashProcDialog ();
|
|
|
|
int selectedPid () const;
|
|
QString selectedName () const;
|
|
QString selectedFullname () const;
|
|
QString selectedCommandLine () const;
|
|
|
|
public slots:
|
|
private slots:
|
|
void handlePidSelected ();
|
|
|
|
private:
|
|
};
|
|
|