[editor] Method to show/hide Add Organisation button.

This commit is contained in:
Alex Zolotarev 2016-04-06 14:00:39 +03:00
parent 690601fd89
commit e1c035e234
2 changed files with 7 additions and 0 deletions

View file

@ -1,6 +1,7 @@
#include "indexer/classificator.hpp"
#include "indexer/cuisines.hpp"
#include "indexer/editable_map_object.hpp"
#include "indexer/ftypes_matcher.hpp"
#include "base/macros.hpp"
@ -9,6 +10,11 @@ namespace osm
bool EditableMapObject::IsNameEditable() const { return m_editableProperties.m_name; }
bool EditableMapObject::IsAddressEditable() const { return m_editableProperties.m_address; }
bool EditableMapObject::ShouldDisplayAddOrganisationButton() const
{
return ftypes::IsBuildingChecker::Instance()(m_types);
}
vector<Props> EditableMapObject::GetEditableProperties() const
{
return MetadataToProps(m_editableProperties.m_metadata);

View file

@ -48,6 +48,7 @@ class EditableMapObject : public MapObject
public:
bool IsNameEditable() const;
bool IsAddressEditable() const;
bool ShouldDisplayAddOrganisationButton() const;
vector<Props> GetEditableProperties() const;
// TODO(AlexZ): Remove this method and use GetEditableProperties() in UI.