From b4b6d3f5ca9751df27287684fa1fc21170e62d59 Mon Sep 17 00:00:00 2001 From: op2786 Date: Mon, 31 Oct 2022 13:17:40 +0100 Subject: added string list for triage view --- examples/triage/view.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'examples/triage/view.cpp') diff --git a/examples/triage/view.cpp b/examples/triage/view.cpp index dafd41bf..87cdb61a 100644 --- a/examples/triage/view.cpp +++ b/examples/triage/view.cpp @@ -9,6 +9,7 @@ #include "fileinfo.h" #include "librariesinfo.h" #include "headers.h" +#include "strings.h" #include "fontsettings.h" #include @@ -96,6 +97,12 @@ TriageView::TriageView(QWidget* parent, BinaryViewRef data) : QScrollArea(parent if (sectionsWidget->GetSections().size() == 0) sectionsGroup->hide(); + QGroupBox* stringsGroup = new QGroupBox("Strings", container); + QVBoxLayout* stringsLayout = new QVBoxLayout(); + stringsLayout->addWidget(new StringsWidget(stringsGroup, this, m_data)); + stringsGroup->setLayout(stringsLayout); + layout->addWidget(stringsGroup); + QHBoxLayout* buttonLayout = new QHBoxLayout(); buttonLayout->addStretch(1); m_fullAnalysisButton = new QPushButton("Start Full Analysis"); -- cgit v1.3.1