Work on the graphical interface for presenting requirements details
This commit is contained in:
@@ -0,0 +1,233 @@
|
||||
#include "requirementDetailPanel.h"
|
||||
|
||||
using namespace std;
|
||||
using namespace gui;
|
||||
//--------------------------------------------------------------
|
||||
/* Constructor */
|
||||
RequirementDetailPanel::RequirementDetailPanel(wxWindow *parentWindow, dBus::Bus &bus)
|
||||
: wxScrolledWindow(parentWindow, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxSIMPLE_BORDER | wxVSCROLL)
|
||||
, m_bus(bus)
|
||||
{
|
||||
// Initialization
|
||||
SetScrollRate(0, 10); // Set the scroll rate for the panel (vertical only)
|
||||
|
||||
// Creating controls
|
||||
createControls();
|
||||
|
||||
// Post initialization
|
||||
}
|
||||
//--------------------------------------------------------------
|
||||
/* Creating controls */
|
||||
void RequirementDetailPanel::createControls()
|
||||
{
|
||||
const auto mainPanel = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxSize(500, -1), wxSIMPLE_BORDER);
|
||||
|
||||
// Controls positioning
|
||||
const auto ctrlSizer = new wxBoxSizer(wxVERTICAL);
|
||||
ctrlSizer->Add(createControls_metadata(mainPanel), wxSizerFlags(0).Expand());
|
||||
ctrlSizer->Add(createControls_details(mainPanel), wxSizerFlags(0).Expand());
|
||||
ctrlSizer->Add(createControls_classification(mainPanel), wxSizerFlags(0).Expand());
|
||||
mainPanel->SetSizer(ctrlSizer);
|
||||
|
||||
const auto mainSizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
mainSizer->Add(mainPanel, wxSizerFlags(0).Expand());
|
||||
mainSizer->AddStretchSpacer(1);
|
||||
|
||||
SetSizer(mainSizer);
|
||||
|
||||
// Set the virtual size to match the size of the child panel,
|
||||
// enabling scrolling if necessary
|
||||
FitInside();
|
||||
|
||||
// Harmonize the sizes of the title controls to ensure they have the same width
|
||||
updateTitleSizes();
|
||||
Layout();
|
||||
}
|
||||
//--------------------------------------------------------------
|
||||
/* Creating controls for requirement metadata (ID, UUID, name, description, etc.) */
|
||||
wxSizer *RequirementDetailPanel::createControls_metadata(wxWindow *owner)
|
||||
{
|
||||
struct Item
|
||||
{
|
||||
wxWindow *titleCtrl;
|
||||
wxWindow *inputCtrl;
|
||||
};
|
||||
std::vector<Item> items;
|
||||
|
||||
{
|
||||
const Item item{ .titleCtrl = createTitle(owner, _T("UUID:")),
|
||||
.inputCtrl = new wxTextCtrl(owner, wxID_ANY) };
|
||||
items.push_back(item);
|
||||
}
|
||||
{
|
||||
const Item item{ .titleCtrl = createTitle(owner, _T("ID:")),
|
||||
.inputCtrl = new wxTextCtrl(owner, wxID_ANY) };
|
||||
items.push_back(item);
|
||||
}
|
||||
{
|
||||
const Item item{ .titleCtrl = createTitle(owner, _("Author:")),
|
||||
.inputCtrl = new wxTextCtrl(owner, wxID_ANY) };
|
||||
items.push_back(item);
|
||||
}
|
||||
{
|
||||
const Item item{ .titleCtrl = createTitle(owner, _("Created at:")),
|
||||
.inputCtrl = new wxTextCtrl(owner, wxID_ANY) };
|
||||
items.push_back(item);
|
||||
}
|
||||
{
|
||||
const Item item{ .titleCtrl = createTitle(owner, _("Updated at:")),
|
||||
.inputCtrl = new wxTextCtrl(owner, wxID_ANY) };
|
||||
items.push_back(item);
|
||||
}
|
||||
|
||||
// Controls positioning
|
||||
const auto ctrlSizer = new wxFlexGridSizer(2, 5, 5);
|
||||
for (const auto &item : items)
|
||||
{
|
||||
ctrlSizer->Add(item.titleCtrl, wxSizerFlags(0).Expand().CenterVertical());
|
||||
ctrlSizer->Add(item.inputCtrl, wxSizerFlags(1).Expand());
|
||||
}
|
||||
ctrlSizer->AddGrowableCol(1, 1);
|
||||
|
||||
// Controls positioning
|
||||
const auto localSizer = new wxStaticBoxSizer(wxVERTICAL, owner, "Metadata");
|
||||
localSizer->Add(ctrlSizer, wxSizerFlags(0).Expand().Border(wxALL, 5));
|
||||
|
||||
return localSizer;
|
||||
}
|
||||
//--------------------------------------------------------------
|
||||
/* Creating controls for requirement details (e.g., custom attributes, child requirements, etc.) */
|
||||
wxSizer *RequirementDetailPanel::createControls_details(wxWindow *owner)
|
||||
{
|
||||
struct Item
|
||||
{
|
||||
wxWindow *titleCtrl;
|
||||
wxWindow *inputCtrl;
|
||||
};
|
||||
std::vector<Item> items;
|
||||
|
||||
{
|
||||
const Item item{ .titleCtrl = createTitle(owner, _("Title:")),
|
||||
.inputCtrl = new wxTextCtrl(owner, wxID_ANY) };
|
||||
items.push_back(item);
|
||||
}
|
||||
{
|
||||
const Item item{ .titleCtrl = createTitle(owner, _("Description:")),
|
||||
.inputCtrl = new wxTextCtrl(owner,
|
||||
wxID_ANY,
|
||||
wxEmptyString,
|
||||
wxDefaultPosition,
|
||||
wxDefaultSize,
|
||||
wxTE_PROCESS_TAB | wxTE_MULTILINE | wxVSCROLL | wxTE_AUTO_URL) };
|
||||
items.push_back(item);
|
||||
|
||||
item.inputCtrl->SetMinSize(wxSize(-1, 200));
|
||||
}
|
||||
{
|
||||
const Item item{ .titleCtrl = createTitle(owner, _("Acceptance criteria:")),
|
||||
.inputCtrl = new wxTextCtrl(owner,
|
||||
wxID_ANY,
|
||||
wxEmptyString,
|
||||
wxDefaultPosition,
|
||||
wxDefaultSize,
|
||||
wxTE_PROCESS_TAB | wxTE_MULTILINE | wxVSCROLL) };
|
||||
items.push_back(item);
|
||||
|
||||
item.inputCtrl->SetMinSize(wxSize(-1, 100));
|
||||
}
|
||||
{
|
||||
const Item item{ .titleCtrl = new wxPanel(owner),
|
||||
.inputCtrl = new wxCheckBox(owner, wxID_ANY, _("S.M.A.R.T.")) };
|
||||
items.push_back(item);
|
||||
}
|
||||
|
||||
// Controls positioning
|
||||
const auto ctrlSizer = new wxFlexGridSizer(2, 5, 5);
|
||||
for (const auto &item : items)
|
||||
{
|
||||
ctrlSizer->Add(item.titleCtrl, wxSizerFlags(0).Expand().CenterVertical());
|
||||
ctrlSizer->Add(item.inputCtrl, wxSizerFlags(1).Expand());
|
||||
}
|
||||
ctrlSizer->AddGrowableCol(1, 1);
|
||||
|
||||
const auto localSizer = new wxStaticBoxSizer(wxVERTICAL, owner, "Details");
|
||||
localSizer->Add(ctrlSizer, wxSizerFlags(0).Expand().Border(wxALL, 5));
|
||||
|
||||
return localSizer;
|
||||
}
|
||||
//--------------------------------------------------------------
|
||||
/* Creating controls for requirement classification (e.g., priority, severity, etc.) */
|
||||
wxSizer *RequirementDetailPanel::createControls_classification(wxWindow *owner)
|
||||
{
|
||||
struct Item
|
||||
{
|
||||
wxWindow *titleCtrl;
|
||||
wxWindow *inputCtrl;
|
||||
};
|
||||
std::vector<Item> items;
|
||||
|
||||
{
|
||||
const Item item{ .titleCtrl = createTitle(owner, "Type:"),
|
||||
.inputCtrl = new wxTextCtrl(owner, wxID_ANY) };
|
||||
items.push_back(item);
|
||||
}
|
||||
{
|
||||
const Item item{ .titleCtrl = createTitle(owner, "Category:"),
|
||||
.inputCtrl = new wxTextCtrl(owner, wxID_ANY) };
|
||||
items.push_back(item);
|
||||
}
|
||||
{
|
||||
const Item item{ .titleCtrl = createTitle(owner, "Priority:"),
|
||||
.inputCtrl = new wxTextCtrl(owner, wxID_ANY) };
|
||||
items.push_back(item);
|
||||
}
|
||||
{
|
||||
const Item item{ .titleCtrl = createTitle(owner, "Status:"),
|
||||
.inputCtrl = new wxTextCtrl(owner, wxID_ANY) };
|
||||
items.push_back(item);
|
||||
}
|
||||
|
||||
// Controls positioning
|
||||
const auto ctrlSizer = new wxFlexGridSizer(2, 5, 5);
|
||||
for (const auto &item : items)
|
||||
{
|
||||
ctrlSizer->Add(item.titleCtrl, wxSizerFlags(0).Expand().CenterVertical());
|
||||
ctrlSizer->Add(item.inputCtrl, wxSizerFlags(1).Expand());
|
||||
}
|
||||
ctrlSizer->AddGrowableCol(1, 1);
|
||||
|
||||
const auto localSizer = new wxStaticBoxSizer(wxVERTICAL, owner, "Classification");
|
||||
localSizer->Add(ctrlSizer, wxSizerFlags(0).Expand().Border(wxALL, 5));
|
||||
|
||||
return localSizer;
|
||||
}
|
||||
//--------------------------------------------------------------
|
||||
/* Helper function to create a section title control */
|
||||
wxStaticText *RequirementDetailPanel::createTitle(wxWindow *owner, const wxString &title)
|
||||
{
|
||||
const auto ctrl = new wxStaticText(owner,
|
||||
wxID_ANY,
|
||||
title,
|
||||
wxDefaultPosition,
|
||||
wxDefaultSize,
|
||||
wxST_NO_AUTORESIZE | wxALIGN_RIGHT);
|
||||
|
||||
m_titleControls.push_back(ctrl);
|
||||
|
||||
return ctrl;
|
||||
}
|
||||
//--------------------------------------------------------------
|
||||
/* Harmonize the sizes of the title controls to ensure they have the same width */
|
||||
void RequirementDetailPanel::updateTitleSizes() const
|
||||
{
|
||||
int maxWidth = 0;
|
||||
for (const auto &ctrl : m_titleControls)
|
||||
{
|
||||
maxWidth = std::max(maxWidth, ctrl->GetSize().GetWidth());
|
||||
}
|
||||
for (const auto &ctrl : m_titleControls)
|
||||
{
|
||||
ctrl->SetMinSize(wxSize(maxWidth, -1));
|
||||
}
|
||||
}
|
||||
//--------------------------------------------------------------
|
||||
Reference in New Issue
Block a user