/
githubmirror
/
x64dbg
Обзор
Документация
Войти
/
githubmirror
/
x64dbg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
development
src/gui/Src/Gui/AttachDialog.h
44 строки
760 B
3rdit
use quint32 instead of duint
20 янв 2026, 20:58
Не верифицирован
20 янв 2026, 20:58
c0ce2d7
Код
Авторство
О чём код?
#pragma once #include <QDialog> class StdIconSearchListView; class QMenu; class QAction; namespace Ui { class AttachDialog; } class AttachDialog : public QDialog { Q_OBJECT public: explicit AttachDialog(QWidget* parent = nullptr); ~AttachDialog(); private slots: void on_btnAttach_clicked(); void on_btnFindWindow_clicked(); void refresh(); void processListContextMenu(QMenu* menu); private: void attachToProcess(quint32 pid); Ui::AttachDialog* ui; StdIconSearchListView* mSearchListView; QAction* mAttachAction; QAction* mRefreshAction; enum { ColPid, ColName, ColTitle, ColPath, ColCommandLine, }; };