mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
22 lines
766 B
C++
22 lines
766 B
C++
#include "VariablesView.h"
|
|
|
|
CVariablesView::CVariablesView(QMdiArea* parent)
|
|
: CTagsView(parent)
|
|
{
|
|
setWindowTitle("Variables");
|
|
{
|
|
Strings strings;
|
|
strings.newTagString = tr("New Variable");
|
|
strings.renameTagString = tr("Rename Variable");
|
|
strings.tagNameString = tr("New Variable Name:");
|
|
strings.tagAddressString = tr("New Variable Address:");
|
|
strings.deleteTagConfirmString = tr("Are you sure you want to delete this variable?");
|
|
strings.deleteModuleTagsConfirmString = tr("Are you sure you want to delete variables from module '%0'?");
|
|
SetStrings(strings);
|
|
}
|
|
}
|
|
|
|
void CVariablesView::SetContext(CMIPS* context, CBiosDebugInfoProvider* biosDebugInfoProvider)
|
|
{
|
|
CTagsView::SetContext(context, &context->m_Variables, biosDebugInfoProvider);
|
|
}
|