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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
///////////////////////////////////////////////////////////////////////////////
//
// wxFormBuilder - A Visual Dialog Editor for wxWidgets.
// Copyright (C) 2005 José Antonio Hurtado
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// Written by
// José Antonio Hurtado - joseantonio.hurtado@gmail.com
// Juan Antonio Ortega - jortegalalmolda@gmail.com
//
///////////////////////////////////////////////////////////////////////////////
#include "plugin.h"
void ComponentLibrary::RegisterComponent(const wxString& name, IComponent* component)
{
auto entry = m_components.emplace(name, component);
if (!entry.second) {
// TODO: Since we have to take ownership, just delete the object.
// Would be nice if we could report this situation somehow.
delete component;
}
}
void ComponentLibrary::RegisterMacro(const wxString& macro, int value)
{
m_macros.emplace(macro, value);
}
void ComponentLibrary::RegisterSynonymous(const wxString& synonymous, const wxString& macro)
{
m_synonymous.emplace(synonymous, macro);
}
wxString ComponentLibrary::ReplaceSynonymous(const wxString& synonymous, bool* replaced) const
{
auto entry = m_synonymous.find(synonymous);
const auto found = (entry != m_synonymous.end());
if (replaced) {
*replaced = found;
}
if (found) {
return entry->second;
}
return synonymous;
}
std::vector<std::pair<wxString, IComponent*>> ComponentLibrary::GetComponents() const
{
std::vector<std::pair<wxString, IComponent*>> result;
result.reserve(m_components.size());
for (const auto& entry : m_components) {
result.emplace_back(entry.first, entry.second.get());
}
return result;
}
std::vector<std::pair<wxString, int>> ComponentLibrary::GetMacros() const
{
std::vector<std::pair<wxString, int>> result;
result.reserve(m_macros.size());
result.insert(result.begin(), m_macros.begin(), m_macros.end());
return result;
}
|