basic plugin support

This commit is contained in:
Sen66
2026-02-08 23:24:57 +01:00
parent da40ba4106
commit 209fa5e0b6
14 changed files with 1076 additions and 5 deletions

View File

@@ -22,6 +22,7 @@ class ProcessPicker : public QDialog
public:
explicit ProcessPicker(QWidget *parent = nullptr);
explicit ProcessPicker(const QList<ProcessInfo>& customProcesses, QWidget *parent = nullptr);
~ProcessPicker();
uint32_t selectedProcessId() const;
@@ -41,6 +42,7 @@ private:
uint32_t m_selectedPid = 0;
QString m_selectedName;
QList<ProcessInfo> m_allProcesses;
bool m_useCustomList = false;
};
#endif // PROCESSPICKER_H