efl_mono: Names fixes after the big rename

Summary: Depends on D5997

Reviewers: felipealmeida

Reviewed By: felipealmeida

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D5998
This commit is contained in:
Lauro Moura 2018-04-24 22:46:04 -03:00
parent 5ddc8e4f50
commit a547e82da2
3 changed files with 6 additions and 6 deletions

View File

@ -21,9 +21,9 @@ public class Example
popup_text.SetText($"Error: {message}");
popup.SetContent(popup_text);
popup.SetVisible(true);
popup.SetButton(efl.ui.popup_alert.Button.Positive, "Ok");
popup.SetButton(efl.ui.Popup_Alert_Button.Positive, "Ok");
popup.SetSize(new eina.Size2D(150, 30));
popup.ButtonClickedEvt += (object sender, efl.ui.ButtonClickedEvt_Args e) => {
popup.ButtonClickedEvt += (object sender, efl.ui.Popup_AlertConcrete.ButtonClickedEvt_Args e) => {
popup.SetParent(null);
popup.Del();
};
@ -58,7 +58,7 @@ public class Example
miles_label.SetSize(size);
miles_label.SetVisible(true);
efl.ui.text.Editable miles_input = new efl.ui.text.EditableConcrete(miles_box);
efl.ui.Text_Editable miles_input = new efl.ui.Text_EditableConcrete(miles_box);
miles_input.SetText("");
miles_input.SetScrollable(true);
miles_input.SetSize(size);
@ -84,7 +84,7 @@ public class Example
kms_label.SetSize(size);
kms_label.SetVisible(true);
efl.ui.text.Editable kms_input = new efl.ui.text.EditableConcrete(kms_box);
efl.ui.Text_Editable kms_input = new efl.ui.Text_EditableConcrete(kms_box);
kms_input.SetText("");
kms_input.SetScrollable(true);
kms_input.SetSize(size);

View File

@ -30,7 +30,7 @@ class TestMain
rect.SetSize(size);
rect.SetVisible(true);
canvas.KeyDownEvt += (object sender, efl.input.KeyDownEvt_Args e) => {
canvas.KeyDownEvt += (object sender, efl.input.InterfaceConcrete.KeyDownEvt_Args e) => {
color_index = (color_index + 1) % 3;
Console.WriteLine("Key Down");
Console.WriteLine("Got key obj at {0}", e.arg.raw_handle.ToString("X"));

View File

@ -87,7 +87,7 @@ class TestMain
}
private void On_KeyDown(object sender, efl.input.KeyDownEvt_Args e)
private void On_KeyDown(object sender, efl.input.InterfaceConcrete.KeyDownEvt_Args e)
{
var key = e.arg.GetKey();