using System; using System.ComponentModel; using System.Drawing; using System.Text; using System.Windows.Forms; using DevComponents.AdvTree; using DevComponents.DotNetBar.SuperGrid.Style; using DevComponents.DotNetBar.Controls; namespace DevComponents.DotNetBar.SuperGrid { /// /// GridComboTreeEditControl /// [ToolboxItem(false)] public class GridComboTreeEditControl : ComboTree, IGridCellEditControl { #region Private variables private GridCell _Cell; private EditorPanel _EditorPanel; private Bitmap _EditorCellBitmap; private bool _ValueChanged; private bool _SuspendUpdate; private bool _PanelShown; private string _ValueText; private StretchBehavior _StretchBehavior = StretchBehavior.None; #endregion /// /// GridComboTreeEditControl /// public GridComboTreeEditControl() { BindingContext = new BindingContext(); ButtonDropDown.Visible = true; } #region Dispose /// /// Dispose /// /// protected override void Dispose(bool disposing) { BindingContext = null; base.Dispose(disposing); } #endregion #region OnTextChanged /// /// OnTextChanged /// /// protected override void OnTextChanged(EventArgs e) { if (IsDisposed == false) { if (_Cell != null && _SuspendUpdate == false) _Cell.EditorValueChanged(this); } base.OnTextChanged(e); } #endregion #region OnSelectedIndexChanged /// /// OnSelectedIndexChanged /// /// protected override void OnSelectedIndexChanged(EventArgs e) { if (IsDisposed == false) { if (_Cell != null && _SuspendUpdate == false) { _Cell.EditorValueChanged(this); EditorValueChanged = true; } } base.OnSelectedIndexChanged(e); } #endregion #region OnInvalidated /// /// OnInvalidated /// /// protected override void OnInvalidated(InvalidateEventArgs e) { base.OnInvalidated(e); if (_Cell != null && _SuspendUpdate == false) _Cell.InvalidateRender(); } #endregion #region GetValue /// /// GetValue /// /// /// public virtual object GetValue(object value) { GridPanel panel = _Cell.GridPanel; if (value == null || (panel.NullValue == NullValue.DBNull && value == DBNull.Value)) { return (""); } if (_Cell.IsValueExpression == true) value = _Cell.GetExpValue((string)value); return (value); } #endregion #region SetValue private void SetValue(object o) { if (o == null) { _ValueText = ""; SelectedIndex = -1; } else { _ValueText = o.ToString(); if (string.IsNullOrEmpty(ValueMember) == false) { try { SelectedValue = o; if (SelectedValue != null) _ValueText = Text; } catch { Text = ""; } } else { SelectedIndex = -1; string s = o.ToString(); if (string.IsNullOrEmpty(s) == false) { Node node = AdvTree.FindNodeByCellText(s); if (node != null) { SelectedNode = node; if (string.IsNullOrEmpty(SelectedDisplayMember) == false) _ValueText = GetSelectedDisplayMemberText(node); } else { Text = s; } } } } } #endregion #region IGridCellEditControl Members #region Public properties #region CanInterrupt /// /// CanInterrupt /// public bool CanInterrupt { get { return (true); } } #endregion #region CellEditMode /// /// CellEditMode /// public CellEditMode CellEditMode { get { return (CellEditMode.Modal); } } #endregion #region EditorCell /// /// EditorCell /// public GridCell EditorCell { get { return (_Cell); } set { _Cell = value; } } #endregion #region EditorCellBitmap /// /// EditorCellBitmap /// public Bitmap EditorCellBitmap { get { return (_EditorCellBitmap); } set { if (_EditorCellBitmap != null) _EditorCellBitmap.Dispose(); _EditorCellBitmap = value; } } #endregion #region EditorFormattedValue /// /// EditorFormattedValue /// public virtual string EditorFormattedValue { get { if (_Cell != null && _Cell.IsValueNull == true) return (_Cell.NullString); return (_ValueText); } } #endregion #region EditorPanel /// /// EditorPanel /// public EditorPanel EditorPanel { get { return (_EditorPanel); } set { _EditorPanel = value; } } #endregion #region EditorValue /// /// EditorValue /// public virtual object EditorValue { get { if (string.IsNullOrEmpty(ValueMember) == false) return (SelectedValue); return (Text); } set { SetValue(GetValue(value)); } } #endregion #region EditorValueChanged /// /// EditorValueChanged /// public virtual bool EditorValueChanged { get { return (_ValueChanged); } set { if (_ValueChanged != value) { _ValueChanged = value; if (value == true) _Cell.SetEditorDirty(this); } } } #endregion #region EditorValueType /// /// EditorValueType /// public virtual Type EditorValueType { get { return (typeof(string)); } } #endregion #region StretchBehavior /// /// StretchBehavior /// public virtual StretchBehavior StretchBehavior { get { return (_StretchBehavior); } set { _StretchBehavior = value; } } #endregion #region SuspendUpdate /// /// SuspendUpdate /// public bool SuspendUpdate { get { return (_SuspendUpdate); } set { _SuspendUpdate = value; } } #endregion #region ValueChangeBehavior /// /// ValueChangeBehavior /// public virtual ValueChangeBehavior ValueChangeBehavior { get { return (ValueChangeBehavior.InvalidateRender); } } #endregion #endregion #region InitializeContext /// /// InitializeContext /// /// /// public virtual void InitializeContext(GridCell cell, CellVisualStyle style) { _Cell = cell; if (style != null) { Enabled = (_Cell.ReadOnly == false); Font = style.Font; ForeColor = style.TextColor; } SetValue(GetValue(_Cell.Value)); _ValueChanged = false; } #endregion #region GetProposedSize /// /// GetProposedSize /// /// /// /// /// /// public virtual Size GetProposedSize(Graphics g, GridCell cell, CellVisualStyle style, Size constraintSize) { eTextFormat tf = eTextFormat.NoPadding | eTextFormat.NoClipping | eTextFormat.WordEllipsis | eTextFormat.NoPrefix; if (style.AllowWrap == Tbool.True) tf |= eTextFormat.WordBreak; string s = String.IsNullOrEmpty(Text) ? " " : Text; Size size = (constraintSize.IsEmpty == true) ? TextHelper.MeasureText(g, s, style.Font, new Size(10000, 0), tf) : TextHelper.MeasureText(g, s, style.Font, constraintSize, tf); if (size.Height < Dpi.Height22) size.Height = Dpi.Height22; return (size); } #endregion #region Edit support #region BeginEdit /// /// BeginEdit /// /// /// public virtual bool BeginEdit(bool selectAll) { UpdateTreeSize(); return (false); } #endregion #region EndEdit /// /// EndEdit /// /// public virtual bool EndEdit() { return (false); } #endregion #region CancelEdit /// /// CancelEdit /// /// public virtual bool CancelEdit() { return (false); } #endregion #endregion #region CellRender /// /// CellRender /// /// public virtual void CellRender(Graphics g) { if (_PanelShown == false) { _EditorPanel.Show(); _EditorPanel.Hide(); _PanelShown = true; } _Cell.CellRender(this, g); } #endregion #region Keyboard support #region CellKeyDown /// /// CellKeyDown /// public virtual void CellKeyDown(KeyEventArgs e) { Focus(); switch (e.KeyData) { default: OnKeyDown(e); break; } } #endregion #region WantsInputKey /// /// WantsInputKey /// /// /// /// public virtual bool WantsInputKey(Keys key, bool gridWantsKey) { switch (key & Keys.KeyCode) { case Keys.Space: case Keys.Up: case Keys.Down: return (true); default: return (gridWantsKey == false); } } #endregion #endregion #region Mouse support #region OnCellMouseMove /// /// OnCellMouseMove /// /// public virtual void OnCellMouseMove(MouseEventArgs e) { } #endregion #region OnCellMouseEnter /// /// OnCellMouseEnter /// /// public virtual void OnCellMouseEnter(EventArgs e) { } #endregion #region OnCellMouseLeave /// /// OnCellMouseLeave /// /// public virtual void OnCellMouseLeave(EventArgs e) { } #endregion #region OnCellMouseUp /// /// OnCellMouseUp /// /// public virtual void OnCellMouseUp(MouseEventArgs e) { } #endregion #region OnCellMouseDown /// /// OnCellMouseDown /// /// public virtual void OnCellMouseDown(MouseEventArgs e) { } #endregion #endregion #endregion } }