efl_ui_popup: Fix class names

This commit is contained in:
Jaehyun Cho 2017-12-05 11:19:34 +09:00 committed by Sungtaek Hong
parent 220fa4c178
commit 1f1c3b9b27
11 changed files with 16 additions and 16 deletions

View File

@ -10,7 +10,7 @@
#include "elm_part_helper.h"
#define MY_CLASS EFL_UI_POPUP_ALERT_CLASS
#define MY_CLASS_NAME "Efl.Ui.Popup.Alert"
#define MY_CLASS_NAME "Efl.Ui.Popup_Alert"
static const char PART_NAME_BUTTON[] = "button";
static const char PART_NAME_BUTTON_LAYOUT[EFL_UI_POPUP_ALERT_BUTTON_COUNT][15] =

View File

@ -1,16 +1,16 @@
enum Efl.Ui.Popup.Alert.Button {
enum Efl.Ui.Popup_Alert.Button {
[[Defines the type of the alert button.]]
positive = 0, [[Button having positive meaning. e.g. "Yes"]]
negative, [[Button having negative meaning. e.g. "No"]]
user [[Button having user-defined meaning. e.g. "Cancel"]]
}
struct Efl.Ui.Popup.Alert.Clicked_Event {
struct Efl.Ui.Popup_Alert.Clicked_Event {
[[Information of clicked event]]
button_type: Efl.Ui.Popup.Alert.Button; [[Clicked button type]]
button_type: Efl.Ui.Popup_Alert.Button; [[Clicked button type]]
}
class Efl.Ui.Popup.Alert(Efl.Ui.Popup)
class Efl.Ui.Popup_Alert(Efl.Ui.Popup)
{
[[EFL UI Popup Alert class]]
methods {
@ -19,7 +19,7 @@ class Efl.Ui.Popup.Alert(Efl.Ui.Popup)
[[Set popup buttons.]]
}
keys {
type: Efl.Ui.Popup.Alert.Button; [[Alert popup button type]]
type: Efl.Ui.Popup_Alert.Button; [[Alert popup button type]]
}
values {
text: string; [[Alert string on button]]
@ -32,6 +32,6 @@ class Efl.Ui.Popup.Alert(Efl.Ui.Popup)
Efl.Part.part;
}
events {
clicked: Efl.Ui.Popup.Alert.Clicked_Event; [[Called when alert popup was clicked]]
clicked: Efl.Ui.Popup_Alert.Clicked_Event; [[Called when alert popup was clicked]]
}
}

View File

@ -1,4 +1,4 @@
class Efl.Ui.Popup.Alert.Part (Efl.Ui.Layout.Part_Text)
class Efl.Ui.Popup_Alert.Part (Efl.Ui.Layout.Part_Text)
{
[[Efl UI Popup Alert internal part class]]
data: null;

View File

@ -10,7 +10,7 @@
#include "elm_part_helper.h"
#define MY_CLASS EFL_UI_POPUP_ALERT_SCROLL_CLASS
#define MY_CLASS_NAME "Efl.Ui.Popup.Alert.Scroll"
#define MY_CLASS_NAME "Efl.Ui.Popup_Alert_Scroll"
static const char PART_NAME_SCROLLER[] = "scroller";

View File

@ -1,4 +1,4 @@
class Efl.Ui.Popup.Alert.Scroll(Efl.Ui.Popup.Alert)
class Efl.Ui.Popup_Alert_Scroll(Efl.Ui.Popup_Alert)
{
implements {
Efl.Object.constructor;

View File

@ -1,4 +1,4 @@
class Efl.Ui.Popup.Alert.Scroll.Part (Efl.Ui.Layout.Part_Content, Efl.Ui.Layout.Part_Text)
class Efl.Ui.Popup_Alert_Scroll.Part (Efl.Ui.Layout.Part_Content, Efl.Ui.Layout.Part_Text)
{
[[Efl UI Popup Alert Scroll internal part class]]
data: null;

View File

@ -10,7 +10,7 @@
#include "elm_part_helper.h"
#define MY_CLASS EFL_UI_POPUP_ALERT_TEXT_CLASS
#define MY_CLASS_NAME "Efl.Ui.Popup.Alert.Text"
#define MY_CLASS_NAME "Efl.Ui.Popup_Alert_Text"
static const char PART_NAME_SCROLLER[] = "scroller";
static const char PART_NAME_TEXT[] = "text";

View File

@ -1,4 +1,4 @@
class Efl.Ui.Popup.Alert.Text(Efl.Ui.Popup.Alert, Efl.Text)
class Efl.Ui.Popup_Alert_Text(Efl.Ui.Popup_Alert, Efl.Text)
{
implements {
Efl.Object.constructor;

View File

@ -1,4 +1,4 @@
class Efl.Ui.Popup.Alert.Text.Part (Efl.Ui.Layout.Part_Content, Efl.Ui.Layout.Part_Text)
class Efl.Ui.Popup_Alert_Text.Part (Efl.Ui.Layout.Part_Content, Efl.Ui.Layout.Part_Text)
{
[[Efl UI Popup Alert Text internal part class]]
data: null;

View File

@ -11,7 +11,7 @@
#include "efl_ui_popup_anchor_private.h"
#define MY_CLASS EFL_UI_POPUP_ANCHOR_CLASS
#define MY_CLASS_NAME "Efl.Ui.Popup.Anchor"
#define MY_CLASS_NAME "Efl.Ui.Popup_Anchor"
static void
_anchor_calc(Eo *obj)

View File

@ -1,4 +1,4 @@
class Efl.Ui.Popup.Anchor(Efl.Ui.Popup)
class Efl.Ui.Popup_Anchor(Efl.Ui.Popup)
{
[[EFL UI Popup Anchor class]]
methods {