/* * Copyright(c) 2021 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. * */ using System; using System.ComponentModel; using System.Runtime.InteropServices; namespace Tizen.NUI.BaseComponents { /// /// A control which renders a short text string.
/// Text labels are lightweight, non-editable, and do not respond to the user input.
///
/// 3 public partial class TextLabel { private EventHandler textLabelAnchorClickedEventHandler; private AnchorClickedCallbackDelegate textLabelAnchorClickedCallbackDelegate; private EventHandler textLabelTextFitChangedEventHandler; private TextFitChangedCallbackDelegate textLabelTextFitChangedCallbackDelegate; [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate void AnchorClickedCallbackDelegate(IntPtr textLabel, IntPtr href, uint hrefLength); [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate void TextFitChangedCallbackDelegate(IntPtr textLabel); /// /// The AnchorClicked signal is emitted when the anchor is clicked. /// /// 9 public event EventHandler AnchorClicked { add { if (textLabelAnchorClickedEventHandler == null) { textLabelAnchorClickedCallbackDelegate = (OnAnchorClicked); AnchorClickedSignal().Connect(textLabelAnchorClickedCallbackDelegate); } textLabelAnchorClickedEventHandler += value; } remove { textLabelAnchorClickedEventHandler -= value; if (textLabelAnchorClickedEventHandler == null && AnchorClickedSignal().Empty() == false) { AnchorClickedSignal().Disconnect(textLabelAnchorClickedCallbackDelegate); } } } internal TextLabelSignal AnchorClickedSignal() { TextLabelSignal ret = new TextLabelSignal(Interop.TextLabel.AnchorClickedSignal(SwigCPtr), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } private void OnAnchorClicked(IntPtr textLabel, IntPtr href, uint hrefLength) { // Note: hrefLength is useful for get the length of a const char* (href) in dali-toolkit. // But NUI can get the length of string (href), so hrefLength is not necessary in NUI. AnchorClickedEventArgs e = new AnchorClickedEventArgs(); // Populate all members of "e" (AnchorClickedEventArgs) with real data e.Href = Marshal.PtrToStringAnsi(href); //here we send all data to user event handlers textLabelAnchorClickedEventHandler?.Invoke(this, e); } /// /// An event for the TextFitChanged signal which can be used to subscribe or unsubscribe the event handler /// provided by the user. The TextFitChanged signal is emitted when the text fit properties changes.
///
[EditorBrowsable(EditorBrowsableState.Never)] public event EventHandler TextFitChanged { add { if (textLabelTextFitChangedEventHandler == null) { textLabelTextFitChangedCallbackDelegate = (OnTextFitChanged); TextFitChangedSignal().Connect(textLabelTextFitChangedCallbackDelegate); } textLabelTextFitChangedEventHandler += value; } remove { textLabelTextFitChangedEventHandler -= value; if (textLabelTextFitChangedEventHandler == null && TextFitChangedSignal().Empty() == false) { TextFitChangedSignal().Disconnect(textLabelTextFitChangedCallbackDelegate); } } } internal TextLabelSignal TextFitChangedSignal() { TextLabelSignal ret = new TextLabelSignal(Interop.TextLabel.TextFitChangedSignal(SwigCPtr), false); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } private void OnTextFitChanged(IntPtr textLabel) { // no data to be sent to the user, as in NUI there is no event provide old values. textLabelTextFitChangedEventHandler?.Invoke(this, EventArgs.Empty); } } }