summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2017-11-22 20:25:29 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2017-12-05 10:14:03 +0900
commitd887c4de52ed74b33850ece7ca9ad6477aa48712 (patch)
tree87f622501594e54a1c79ca2e1fce1123c5b76720
parenta787c3cc07b8ddcc3288091a9d1b9e0eb06582bc (diff)
downloadefl-d887c4de52ed74b33850ece7ca9ad6477aa48712.tar.gz
cxx: Add implicit conversion to Eo* pointer
This is part of the experimental stuff. Allows calling C functions without using ._eo_ptr() explicitly. Probably not super useful, assuming the interfaces are done :)
-rw-r--r--src/examples/elementary/calendar_cxx_example_02.cc2
-rw-r--r--src/lib/eolian_cxx/grammar/class_definition.hpp5
2 files changed, 6 insertions, 1 deletions
diff --git a/src/examples/elementary/calendar_cxx_example_02.cc b/src/examples/elementary/calendar_cxx_example_02.cc
index fd001f7184..047f5841f8 100644
--- a/src/examples/elementary/calendar_cxx_example_02.cc
+++ b/src/examples/elementary/calendar_cxx_example_02.cc
@@ -41,7 +41,7 @@ struct appData
void destroy() {
// FIXME: need del() function and no error on unref().
- ::efl_allow_parent_unref_set(m_win._eo_ptr(), true);
+ ::efl_allow_parent_unref_set(m_win, true);
m_win = nullptr;
}
diff --git a/src/lib/eolian_cxx/grammar/class_definition.hpp b/src/lib/eolian_cxx/grammar/class_definition.hpp
index e326c9d0e3..1e21336d9f 100644
--- a/src/lib/eolian_cxx/grammar/class_definition.hpp
+++ b/src/lib/eolian_cxx/grammar/class_definition.hpp
@@ -211,12 +211,17 @@ struct class_definition_generator
// EXPERIMENTAL
if(!as_generator("#ifdef EFL_CXXPERIMENTAL\n").generate(sink, attributes::unused, context)) return false;
+ // For easy wref, operator-> in wref needs to also return a pointer type
if(!as_generator( scope_tab << "const " << string << "* operator->() const { return this; }\n"
).generate(sink, std::make_tuple(cls.cxx_name, cls.cxx_name), context)) return false;
if(!as_generator( scope_tab << string << "* operator->() { return this; }\n"
).generate(sink, std::make_tuple(cls.cxx_name, cls.cxx_name), context)) return false;
+ // For easy interfacing with C: no need to use _eo_ptr()
+ if(!as_generator( scope_tab << "operator Eo*() const { return _eo_ptr(); }\n"
+ ).generate(sink, attributes::unused, context)) return false;
if(!as_generator("#endif \n").generate(sink, attributes::unused, context)) return false;
+ // eo_concrete
if(!as_generator( scope_tab << "::efl::eo::concrete const& _get_concrete() const { return *this; }\n"
<< scope_tab << "::efl::eo::concrete& _get_concrete() { return *this; }\n"
).generate(sink, attributes::unused, context)) return false;