/*
* 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.ComponentModel;
using Tizen.NUI.BaseComponents;
namespace Tizen.NUI.Components
{
///
/// RadioButton is the Class that describe the control which can be checked, but not cleared by a user.
///
///
/// RadioButton radio = new RadioButton("C_RadioButton_WhiteText");
/// radio.Size = new Size(200, 64, 0);
/// radio.Position = new Position(500, posY, 0);
/// radio.Text = "RadioButton";
/// radio.Focusable = true;
///
/// 8
public class RadioButton : SelectButton
{
private bool selectedAgain = false;
static RadioButton() { }
///
/// Creates a new instance of a RadioButton.
///
/// 8
public RadioButton() : base() { }
///
/// Creates a new instance of a RadioButton with style.
///
///
/// 8
public RadioButton(string style) : base(style) { }
///
/// Creates a new instance of a RadioButton with style.
///
///
/// 8
public RadioButton(ButtonStyle buttonStyle) : base(buttonStyle) { }
///
/// Initialize AT-SPI object.
///
[EditorBrowsable(EditorBrowsableState.Never)]
public override void OnInitialize()
{
base.OnInitialize();
AccessibilityRole = Role.RadioButton;
}
///
/// Get RadioButtonGroup to which this selections belong.
///
/// 6
/// This will be public opened in tizen_5.5 after ACR done. Before ACR, need to be hidden as inhouse API.
[EditorBrowsable(EditorBrowsableState.Never)]
public new RadioButtonGroup ItemGroup
{
get
{
return base.ItemGroup as RadioButtonGroup;
}
internal set
{
base.ItemGroup = value;
}
}
///
[EditorBrowsable(EditorBrowsableState.Never)]
public override bool OnKey(Key key)
{
if ((IsEnabled == false) || (key == null))
{
return false;
}
if (key.State == Key.StateType.Up)
{
if (key.KeyPressedName == "Return")
{
if (IsSelected == true)
{
selectedAgain = true;
}
}
}
bool ret = base.OnKey(key);
if (selectedAgain == true)
{
IsSelected = true;
selectedAgain = false;
}
return ret;
}
///
[EditorBrowsable(EditorBrowsableState.Never)]
protected override bool HandleControlStateOnTouch(Touch touch)
{
if ((IsEnabled == false) || (touch == null))
{
return false;
}
PointStateType state = touch.GetState(0);
switch (state)
{
case PointStateType.Up:
if (IsSelected == true)
{
selectedAgain = true;
}
break;
default:
break;
}
bool ret = base.HandleControlStateOnTouch(touch);
if (selectedAgain == true)
{
IsSelected = true;
selectedAgain = false;
}
return ret;
}
///
[EditorBrowsable(EditorBrowsableState.Never)]
protected override void OnControlStateChanged(ControlStateChangedEventArgs info)
{
if (info.PreviousState.Contains(ControlState.Selected) != info.CurrentState.Contains(ControlState.Selected))
{
// RadioButton does not invoke SelectedChanged if button or key
// is unpressed while its state is selected.
if (selectedAgain == true)
{
return;
}
base.OnControlStateChanged(info);
}
}
}
}