//
// ComboBox.cs: ComboBox control
//
// Authors:
// Ross Ferguson (ross.c.ferguson@btinternet.com)
//
using System;
using System.Collections;
using System.Collections.Generic;
using NStack;
namespace Terminal.Gui {
///
/// ComboBox control
///
public class ComboBox : View {
IListDataSource source;
///
/// Gets or sets the backing this , enabling custom rendering.
///
/// The source.
///
/// Use to set a new source.
///
public IListDataSource Source {
get => source;
set {
source = value;
// Only need to refresh list if its been added to a container view
if(SuperView != null && SuperView.Subviews.Contains(this)) {
Search_Changed ("");
SetNeedsDisplay ();
}
}
}
///
/// Sets the source of the to an .
///
/// An object implementing the IList interface.
///
/// Use the property to set a new source and use custome rendering.
///
public void SetSource (IList source)
{
if (source == null) {
Source = null;
} else {
listview.SetSource (source);
Source = listview.Source;
}
}
///
/// Changed event, raised when the selection has been confirmed.
///
///
/// Client code can hook up to this event, it is
/// raised when the selection has been confirmed.
///
public event EventHandler SelectedItemChanged;
IList searchset;
ustring text = "";
readonly TextField search;
readonly ListView listview;
bool autoHide = true;
///
/// Public constructor
///
public ComboBox () : base ()
{
search = new TextField ("");
listview = new ListView () { LayoutStyle = LayoutStyle.Computed, CanFocus = true };
Initialize ();
}
///
/// Public constructor
///
///
public ComboBox (ustring text) : base ()
{
search = new TextField ("");
listview = new ListView () { LayoutStyle = LayoutStyle.Computed, CanFocus = true };
Initialize ();
Text = text;
}
///
/// Public constructor
///
///
///
public ComboBox (Rect rect, IList source) : base (rect)
{
search = new TextField ("") { Width = rect.Width };
listview = new ListView (rect, source) { LayoutStyle = LayoutStyle.Computed };
Initialize ();
SetSource (source);
}
private void Initialize ()
{
ColorScheme = Colors.Base;
search.TextChanged += Search_Changed;
search.MouseClick += Search_MouseClick;
listview.Y = Pos.Bottom (search);
listview.OpenSelectedItem += (ListViewItemEventArgs a) => Selected ();
this.Add (listview, search);
this.SetFocus (search);
// On resize
LayoutComplete += (LayoutEventArgs a) => {
if (!autoHide && search.Frame.Width != Bounds.Width ||
autoHide && search.Frame.Width != Bounds.Width - 1) {
search.Width = Bounds.Width;
listview.Width = listview.Width = autoHide ? Bounds.Width - 1 : Bounds.Width;
listview.Height = CalculatetHeight ();
search.SetRelativeLayout (Bounds);
listview.SetRelativeLayout (Bounds);
}
};
listview.SelectedItemChanged += (ListViewItemEventArgs e) => {
if (searchset.Count > 0) {
SetValue (searchset [listview.SelectedItem]);
}
};
Added += (View v) => {
// Determine if this view is hosted inside a dialog
for (View view = this.SuperView; view != null; view = view.SuperView) {
if (view is Dialog) {
autoHide = false;
break;
}
}
ColorScheme = autoHide ? Colors.Base : ColorScheme = null;
SetNeedsLayout ();
Search_Changed (Text);
if (autoHide) {
listview.ColorScheme = Colors.Menu;
} else {
search.ColorScheme = Colors.Menu;
}
};
}
bool isShow = false;
private void Search_MouseClick (MouseEventArgs me)
{
if (me.MouseEvent.X == Bounds.Right - 1 && me.MouseEvent.Y == Bounds.Top && me.MouseEvent.Flags == MouseFlags.Button1Pressed
&& search.Text == "" && autoHide) {
if (isShow) {
HideList ();
isShow = false;
} else {
// force deep copy
foreach (var item in Source.ToList()) {
searchset.Add (item);
}
ShowList ();
isShow = true;
}
} else {
SuperView.SetFocus (search);
}
}
///
public override bool OnEnter ()
{
if (!search.HasFocus) {
this.SetFocus (search);
}
search.CursorPosition = search.Text.RuneCount;
return true;
}
///
/// Invokes the SelectedChanged event if it is defined.
///
///
public virtual bool OnSelectedChanged ()
{
// Note: Cannot rely on "listview.SelectedItem != lastSelectedItem" because the list is dynamic.
// So we cannot optimize. Ie: Don't call if not changed
SelectedItemChanged?.Invoke (this, search.Text);
return true;
}
///
public override void Redraw (Rect bounds)
{
base.Redraw (bounds);
if (!autoHide) {
return;
}
Move (Bounds.Right - 1, 0);
Driver.AddRune (Driver.DownArrow);
}
///
public override bool ProcessKey (KeyEvent e)
{
if (e.Key == Key.Tab) {
base.ProcessKey (e);
return false; // allow tab-out to next control
}
if (e.Key == Key.Enter && listview.HasFocus) {
Selected ();
return true;
}
if (e.Key == Key.CursorDown && search.HasFocus && searchset.Count > 0) { // jump to list
this.SetFocus (listview);
SetValue (searchset [listview.SelectedItem]);
return true;
}
if (e.Key == Key.CursorUp && search.HasFocus) { // stop odd behavior on KeyUp when search has focus
return true;
}
if (e.Key == Key.CursorUp && listview.HasFocus && listview.SelectedItem == 0 && searchset.Count > 0) // jump back to search
{
search.CursorPosition = search.Text.RuneCount;
this.SetFocus (search);
return true;
}
if(e.Key == Key.PageDown) {
listview.MovePageDown ();
return true;
}
if (e.Key == Key.PageUp) {
listview.MovePageUp ();
return true;
}
if (e.Key == Key.Esc) {
this.SetFocus (search);
search.Text = text = "";
OnSelectedChanged ();
return true;
}
// Unix emulation
if (e.Key == Key.ControlU) {
Reset ();
return true;
}
return base.ProcessKey (e);
}
///
/// The currently selected list item
///
public new ustring Text {
get {
return text;
}
set {
search.Text = text = value;
}
}
private void SetValue (object text)
{
search.TextChanged -= Search_Changed;
this.text = search.Text = text.ToString();
search.CursorPosition = 0;
search.TextChanged += Search_Changed;
}
private void Selected ()
{
if (listview.Source.Count == 0 || searchset.Count == 0) {
text = "";
return;
}
SetValue (searchset [listview.SelectedItem]);
search.CursorPosition = search.Text.RuneCount;
Search_Changed (search.Text);
OnSelectedChanged ();
Reset (keepSearchText: true);
}
///
/// Reset to full original list
///
private void Reset (bool keepSearchText = false)
{
if (!keepSearchText) {
search.Text = text = "";
}
ResetSearchSet ();
listview.SetSource (searchset);
listview.Height = CalculatetHeight ();
this.SetFocus (search);
}
private void ResetSearchSet (bool noCopy = false)
{
if (searchset == null) {
searchset = new List