X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Fdali-swig%2Fmanual%2Fcsharp%2FKeyboardFocusManager.cs;h=65099668163b8244ce1559fba236354343ec35de;hb=2b8d1a092d8c907339acb33a58604a8f70251ace;hp=59241fbcc50e2f4f265b7e91b56e6886af786603;hpb=0b5d20c961476797f7ffcdfb67026aac3253f94d;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/plugins/dali-swig/manual/csharp/KeyboardFocusManager.cs b/plugins/dali-swig/manual/csharp/KeyboardFocusManager.cs index 59241fb..6509966 100644 --- a/plugins/dali-swig/manual/csharp/KeyboardFocusManager.cs +++ b/plugins/dali-swig/manual/csharp/KeyboardFocusManager.cs @@ -1,3 +1,20 @@ +/* + * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + namespace Dali { using System; @@ -150,7 +167,7 @@ public class PreFocusChangeEventArgs : EventArgs { private Actor _current; private Actor _proposed; - private Control.KeyboardFocus.Direction _direction; + private View.KeyboardFocus.Direction _direction; /** * @brief Actor - is the current focused Actor. @@ -188,7 +205,7 @@ public class PreFocusChangeEventArgs : EventArgs * @brief Direction - is the direction of Focus change. * */ - public Control.KeyboardFocus.Direction Direction + public View.KeyboardFocus.Direction Direction { get { @@ -214,7 +231,7 @@ public class PreFocusChangeEventArgs : EventArgs public delegate Actor PreFocusChangeEventHandler(object source, PreFocusChangeEventArgs e); [UnmanagedFunctionPointer(CallingConvention.StdCall)] - public delegate IntPtr PreFocusChangeEventCallbackDelegate(IntPtr current, IntPtr proposed, Control.KeyboardFocus.Direction direction); + public delegate IntPtr PreFocusChangeEventCallbackDelegate(IntPtr current, IntPtr proposed, View.KeyboardFocus.Direction direction); private PreFocusChangeEventHandler _keyboardFocusManagerPreFocusChangeEventHandler; private PreFocusChangeEventCallbackDelegate _keyboardFocusManagerPreFocusChangeEventCallbackDelegate; @@ -265,7 +282,7 @@ public class PreFocusChangeEventArgs : EventArgs } // Callback for KeyboardFocusManager PreFocusChangeSignal - private IntPtr OnPreFocusChange(IntPtr current, IntPtr proposed, Control.KeyboardFocus.Direction direction) + private IntPtr OnPreFocusChange(IntPtr current, IntPtr proposed, View.KeyboardFocus.Direction direction) { Actor actor = null; PreFocusChangeEventArgs e = new PreFocusChangeEventArgs(); @@ -461,7 +478,7 @@ public class PreFocusChangeEventArgs : EventArgs return ret; } - public bool MoveFocus(Control.KeyboardFocus.Direction direction) { + public bool MoveFocus(View.KeyboardFocus.Direction direction) { bool ret = NDalicManualPINVOKE.KeyboardFocusManager_MoveFocus(swigCPtr, (int)direction); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret;