MCPcopy Create free account
hub / github.com/D4stiny/PeaceMaker / InitializeProcessInfoTable

Method InitializeProcessInfoTable

PeaceMakerGUI/InvestigateProcessWindow.cpp:29–46  ·  view source on GitHub ↗

* @brief InvestigateProcessWindow::InitializeProcessInfoTable - Initialize properties for the process info table. */

Source from the content-addressed store, hash-verified

27 * @brief InvestigateProcessWindow::InitializeProcessInfoTable - Initialize properties for the process info table.
28 */
29void InvestigateProcessWindow::InitializeProcessInfoTable()
30{
31 this->ui->ProcessInformationTable->setColumnCount(2);
32 this->ProcessInfoTableSize = 0;
33
34 AddProcessInfoItem("Process Id");
35 AddProcessInfoItem("Path");
36 AddProcessInfoItem("Command Line");
37 AddProcessInfoItem("Execution Time");
38 AddProcessInfoItem("Caller Process Id");
39 //AddProcessInfoItem("Caller Path");
40 AddProcessInfoItem("Parent Process Id");
41 AddProcessInfoItem("Parent Path");
42
43 this->ui->ProcessInformationTable->horizontalHeader()->hide();
44 this->ui->ProcessInformationTable->setVerticalScrollBarPolicy(Qt::ScrollBarPolicy::ScrollBarAlwaysOff);
45 InitializeCommonTable(this->ui->ProcessInformationTable);
46}
47
48/**
49 * @brief InvestigateProcessWindow::InitializeStackHistoryTable - Initialize properties for the stack history table.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected