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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#include "LocationComponentEditor.h"
#include "../SpecifierType.h"
#include "../Component.h"
#include "i18n.h"
#include <wx/stattext.h>
namespace objectives
{
namespace ce
{
// Registration helper, will register this editor in the factory
LocationComponentEditor::RegHelper LocationComponentEditor::regHelper;
// Constructor
LocationComponentEditor::LocationComponentEditor(wxWindow* parent, Component& component) :
ComponentEditorBase(parent),
_component(&component),
_entSpec(new SpecifierEditCombo(_panel, getChangeCallback())),
_locationSpec(new SpecifierEditCombo(_panel, getChangeCallback(), SpecifierType::SET_LOCATION()))
{
wxStaticText* label = new wxStaticText(_panel, wxID_ANY, _("Entity:"));
label->SetFont(label->GetFont().Bold());
_panel->GetSizer()->Add(label, 0, wxBOTTOM | wxEXPAND, 6);
_panel->GetSizer()->Add(_entSpec, 0, wxBOTTOM | wxEXPAND, 6);
label = new wxStaticText(_panel, wxID_ANY, _("Location:"));
label->SetFont(label->GetFont().Bold());
_panel->GetSizer()->Add(label, 0, wxBOTTOM | wxEXPAND, 6);
_panel->GetSizer()->Add(_locationSpec, 0, wxBOTTOM | wxEXPAND, 6);
// Populate the SpecifierEditCombo with the first specifier
_entSpec->setSpecifier(
component.getSpecifier(Specifier::FIRST_SPECIFIER)
);
_locationSpec->setSpecifier(
component.getSpecifier(Specifier::SECOND_SPECIFIER)
);
}
// Write to component
void LocationComponentEditor::writeToComponent() const
{
if (!_active) return; // still under construction
assert(_component);
_component->setSpecifier(
Specifier::FIRST_SPECIFIER, _entSpec->getSpecifier()
);
_component->setSpecifier(
Specifier::SECOND_SPECIFIER, _locationSpec->getSpecifier()
);
_component->clearArguments();
}
} // namespace ce
} // namespace objectives
|