using System; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; using DevComponents.DotNetBar.SuperGrid.Style; namespace DevComponents.DotNetBar.SuperGrid { /// /// GridCheckBoxEditControl /// [ToolboxItem(false)] public class GridBubbleBarEditControl : BubbleBar, IGridCellEditControl { #region Private variables private GridCell _Cell; private EditorPanel _EditorPanel; private Bitmap _EditorCellBitmap; private bool _ValueChanged; private bool _SuspendUpdate; private StretchBehavior _StretchBehavior = StretchBehavior.Both; #endregion /// /// GridBubbleBarEditControl /// public GridBubbleBarEditControl() { ShowTooltips = false; ButtonClick += EditControlButtonClick; #if !TRIAL LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F"; #endif } #region Hidden properties /// /// ShowTooltips /// [Browsable(false)] [EditorBrowsable(EditorBrowsableState.Never)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] public new bool ShowTooltips { get { return (base.ShowTooltips); } set { base.ShowTooltips = value; } } #endregion #region EditControlButtonClick private void EditControlButtonClick(object sender, ClickEventArgs e) { if (_SuspendUpdate == false) { if (_Cell != null) { _Cell.Value = SelectedTab.Buttons.IndexOf((BubbleButton) sender); _Cell.EditorValueChanged(this); _Cell.EndEdit(); } } } #endregion #region OnInvalidated /// /// OnInvalidated /// /// protected override void OnInvalidated(InvalidateEventArgs e) { base.OnInvalidated(e); if (_Cell != null && _SuspendUpdate == false) _Cell.InvalidateRender(); } #endregion #region OnPaint /// /// OnPaint /// /// protected override void OnPaint(PaintEventArgs e) { _Cell.PaintEditorBackground(e, this); PaintControl(e); } #endregion #region IGridCellEditControl Members #region Public properties #region CanInterrupt /// /// CanInterrupt /// public virtual 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 { return (Text); } } #endregion #region EditorPanel /// /// EditorPanel /// public EditorPanel EditorPanel { get { return (_EditorPanel); } set { if (_EditorPanel != null) _EditorPanel.VisibleChanged -= EditorPanelVisibleChanged; _EditorPanel = value; if (_EditorPanel != null) _EditorPanel.VisibleChanged += EditorPanelVisibleChanged; } } void EditorPanelVisibleChanged(object sender, EventArgs e) { if (_EditorPanel.Visible == false) StopBubbleEffect(); } #endregion #region EditorValue /// /// EditorValue /// public virtual object EditorValue { get { return (_Cell.Value); } set { } } #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 virtual bool SuspendUpdate { get { return (_SuspendUpdate); } set { _SuspendUpdate = value; } } #endregion #region ValueChangeBehavior /// /// ValueChangeBehavior /// public virtual ValueChangeBehavior ValueChangeBehavior { get { return (ValueChangeBehavior.None); } } #endregion #endregion #region GetProposedSize /// /// GetProposedSize /// /// /// /// /// /// public virtual Size GetProposedSize(Graphics g, GridCell cell, CellVisualStyle style, Size constraintSize) { Size size = GetPreferredSize(constraintSize); if (constraintSize.Height == 0) size.Height = Dpi.Height50; return (size); } #endregion #region InitializeContext /// /// InitializeContext /// /// /// public virtual void InitializeContext(GridCell cell, CellVisualStyle style) { _Cell = cell; if (style != null) { Enabled = (_Cell.IsReadOnly == false); Font = style.Font; ForeColor = style.TextColor; } _ValueChanged = false; } #endregion #region Edit support #region BeginEdit /// /// BeginEdit /// /// /// false public virtual bool BeginEdit(bool selectAll) { return (false); } #endregion #region EndEdit /// /// EndEdit /// /// public virtual bool EndEdit() { return (false); } #endregion #region CancelEdit /// /// CancelEdit /// /// false public virtual bool CancelEdit() { return (false); } #endregion #endregion #region CellRender /// /// CellRender /// /// public virtual void CellRender(Graphics g) { _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: return (true); default: return (gridWantsKey == false); } } #endregion #endregion #region Mouse support #region OnCellMouseMove /// /// OnCellMouseMove /// /// public virtual void OnCellMouseMove(MouseEventArgs e) { OnMouseMove(e); } #endregion #region OnCellMouseEnter /// /// OnCellMouseEnter /// /// public virtual void OnCellMouseEnter(EventArgs e) { OnMouseEnter(e); } #endregion #region OnCellMouseLeave /// /// OnCellMouseLeave /// /// public virtual void OnCellMouseLeave(EventArgs e) { OnMouseLeave(e); } #endregion #region OnCellMouseUp /// /// OnCellMouseUp /// /// public virtual void OnCellMouseUp(MouseEventArgs e) { OnMouseUp(e); } #endregion #region OnCellMouseDown /// /// OnCellMouseDown /// /// public virtual void OnCellMouseDown(MouseEventArgs e) { OnMouseDown(e); } #endregion #endregion #endregion } }