1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
#include "ReadableClosedComponentEditor.h"
#include "../SpecifierType.h"
#include "../Component.h"
#include "i18n.h"
#include "string/string.h"
#include <wx/stattext.h>
namespace objectives {
namespace ce {
// Registration helper, will register this editor in the factory
ReadableClosedComponentEditor::RegHelper ReadableClosedComponentEditor::regHelper;
// Constructor
ReadableClosedComponentEditor::ReadableClosedComponentEditor(wxWindow* parent, Component& component) :
ComponentEditorBase(parent),
_component(&component),
_readableSpec(new SpecifierEditCombo(_panel, getChangeCallback(), SpecifierType::SET_READABLE()))
{
wxStaticText* label = new wxStaticText(_panel, wxID_ANY, _("Readable:"));
label->SetFont(label->GetFont().Bold());
_panel->GetSizer()->Add(label, 0, wxBOTTOM | wxEXPAND, 6);
_panel->GetSizer()->Add(_readableSpec, 0, wxBOTTOM | wxEXPAND, 6);
// Populate the SpecifierEditCombo with the first specifier
_readableSpec->setSpecifier(
component.getSpecifier(Specifier::FIRST_SPECIFIER)
);
}
// Write to component
void ReadableClosedComponentEditor::writeToComponent() const
{
if (!_active) return; // still under construction
assert(_component);
_component->setSpecifier(
Specifier::FIRST_SPECIFIER, _readableSpec->getSpecifier()
);
_component->clearArguments();
}
} // namespace ce
} // namespace objectives
|