In Tizen it's very easy to send signals to my theme (EDC) from C/C++ code by elm_layout_signal_emit
.
I have a genlist named myList
, and I created a custom theme for it (with EDC):
group { "elm/genlist/base/mystyle";
parts { ... }
programs {
program { "myprogram";
source: "app";
signal: "mysignal";
...
}
}
}
I'm applying this theme to myList
: elm_object_style_set(myList, "mystyle")
.
What is the way to run the myprogram
program with this genlist?
I tried
elm_layout_signal_emit
: didn't work, but genlist might not be a layout, I'm not surprised.elm_object_signal_emit
: didn't work, have no clue why notedje_object_signal_emit
: didn't work, also have no clue why