aboutsummaryrefslogtreecommitdiff
path: root/source/ShiftUI/ListView/ColumnHeader.cs
diff options
context:
space:
mode:
authorMichael VanOverbeek <[email protected]>2016-07-25 12:57:52 -0400
committerGitHub <[email protected]>2016-07-25 12:57:52 -0400
commit46c1c31302f111a1f3ec23a70e6f3986a9aa2a27 (patch)
treef00af7ea3f6ad2641fb26fa1d310fd8b7179b39c /source/ShiftUI/ListView/ColumnHeader.cs
parentaf48e774189596b8d7a058c564a7d6d75205ca03 (diff)
parent6fa16209519896de09949a27425dff00ebf2970a (diff)
downloadshiftos-c--46c1c31302f111a1f3ec23a70e6f3986a9aa2a27.tar.gz
shiftos-c--46c1c31302f111a1f3ec23a70e6f3986a9aa2a27.tar.bz2
shiftos-c--46c1c31302f111a1f3ec23a70e6f3986a9aa2a27.zip
Merge pull request #17 from MichaelTheShifter/shiftui_integration
Shiftui integration
Diffstat (limited to 'source/ShiftUI/ListView/ColumnHeader.cs')
-rw-r--r--source/ShiftUI/ListView/ColumnHeader.cs398
1 files changed, 398 insertions, 0 deletions
diff --git a/source/ShiftUI/ListView/ColumnHeader.cs b/source/ShiftUI/ListView/ColumnHeader.cs
new file mode 100644
index 0000000..118d9a6
--- /dev/null
+++ b/source/ShiftUI/ListView/ColumnHeader.cs
@@ -0,0 +1,398 @@
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+// Copyright (c) 2004 Novell, Inc. (http://www.novell.com)
+//
+// Author:
+// Ravindra ([email protected])
+//
+
+
+// COMPLETE
+
+
+using System.ComponentModel;
+using System.Drawing;
+using System;
+
+namespace ShiftUI
+{
+ [DefaultProperty ("Text")]
+ [DesignTimeVisible (false)]
+ [ToolboxItem (false)]
+ [TypeConverter (typeof (ColumnHeaderConverter))]
+ public class ColumnHeader : Component, ICloneable
+ {
+ #region Instance Variables
+ private StringFormat format = new StringFormat ();
+ private string text = "ColumnHeader";
+ private HorizontalAlignment text_alignment = HorizontalAlignment.Left;
+ private int width = ThemeEngine.Current.ListViewDefaultColumnWidth;
+ private int image_index = -1;
+ private string image_key = String.Empty;
+ private string name = String.Empty;
+ private object tag;
+ private int display_index = -1;
+
+ // internal variables
+ Rectangle column_rect = Rectangle.Empty;
+ bool pressed = false;
+ ListView owner;
+ #endregion // Instance Variables
+
+ #region Internal Constructor
+ internal ColumnHeader (ListView owner, string text,
+ HorizontalAlignment alignment, int width)
+ {
+ this.owner = owner;
+ this.text = text;
+ this.width = width;
+ this.text_alignment = alignment;
+ CalcColumnHeader ();
+ }
+
+ internal ColumnHeader (string key, string text, int width, HorizontalAlignment textAlign)
+ {
+ Name = key;
+ Text = text;
+ this.width = width;
+ this.text_alignment = textAlign;
+ CalcColumnHeader ();
+ }
+ #endregion // Internal Constructor
+
+ #region Public Constructors
+ public ColumnHeader () { }
+
+ public ColumnHeader (int imageIndex)
+ {
+ ImageIndex = imageIndex;
+ }
+
+ public ColumnHeader (string imageKey)
+ {
+ ImageKey = imageKey;
+ }
+ #endregion // Public Constructors
+
+ #region Private Internal Methods Properties
+ internal bool Pressed {
+ get { return pressed; }
+ set { pressed = value; }
+ }
+
+ internal int X {
+ get { return column_rect.X; }
+ set { column_rect.X = value; }
+ }
+
+ internal int Y {
+ get { return column_rect.Y; }
+ set { column_rect.Y = value; }
+ }
+
+ internal int Wd {
+ get { return column_rect.Width; }
+ set { column_rect.Width = value; }
+ }
+
+ internal int Ht {
+ get { return column_rect.Height; }
+ set { column_rect.Height = value; }
+ }
+
+ internal Rectangle Rect {
+ get { return column_rect; }
+ set { column_rect = value; }
+ }
+
+ internal StringFormat Format {
+ get { return format; }
+ }
+
+ internal int InternalDisplayIndex {
+ get { return display_index; }
+ set { display_index = value; }
+ }
+
+ internal void CalcColumnHeader ()
+ {
+ if (text_alignment == HorizontalAlignment.Center)
+ format.Alignment = StringAlignment.Center;
+ else if (text_alignment == HorizontalAlignment.Right)
+ format.Alignment = StringAlignment.Far;
+ else
+ format.Alignment = StringAlignment.Near;
+ format.LineAlignment = StringAlignment.Center;
+ format.Trimming = StringTrimming.EllipsisCharacter;
+ // text is wrappable only in LargeIcon and SmallIcon views
+ format.FormatFlags = StringFormatFlags.NoWrap;
+
+ if (owner != null)
+ column_rect.Height = ThemeEngine.Current.ListViewGetHeaderHeight (owner, owner.Font);
+ else
+ column_rect.Height = ThemeEngine.Current.ListViewGetHeaderHeight (null, ThemeEngine.Current.DefaultFont);
+
+ column_rect.Width = 0;
+
+ if (width >= 0) // manual width
+ column_rect.Width = width;
+ else if (Index != -1) { // automatic width, either -1 or -2
+ // try to expand if we are the last column
+ bool expand_to_right = Index == owner.Columns.Count - 1 && width == -2;
+ Rectangle visible_area = owner.ClientRectangle;
+
+ column_rect.Width = owner.GetChildColumnSize (Index).Width;
+ width = column_rect.Width;
+
+ // expand only if we have free space to the right
+ if (expand_to_right && column_rect.X + column_rect.Width < visible_area.Width) {
+ width = visible_area.Width - column_rect.X;
+ if (owner.v_scroll.Visible)
+ width -= owner.v_scroll.Width;
+
+ column_rect.Width = width;
+ }
+ }
+ }
+
+ internal void SetListView (ListView list_view)
+ {
+ owner = list_view;
+ }
+
+ #endregion // Private Internal Methods Properties
+
+ #region Public Instance Properties
+
+ [Localizable (true)]
+ [RefreshProperties (RefreshProperties.Repaint)]
+ public int DisplayIndex {
+ get {
+ if (owner == null)
+ return display_index;
+
+ return owner.GetReorderedColumnIndex (this);
+ }
+ set {
+ if (owner == null) {
+ display_index = value;
+ return;
+ }
+ if (value < 0 || value >= owner.Columns.Count)
+ throw new ArgumentOutOfRangeException ("DisplayIndex");
+
+ owner.ReorderColumn (this, value, false);
+ }
+ }
+
+ [DefaultValue (-1)]
+ //[DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+ //[Editor ("ShiftUI.Design.ImageIndexEditor, " + Consts.AssemblySystem_Design,
+ //"System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
+ [RefreshProperties (RefreshProperties.Repaint)]
+ [TypeConverter (typeof (ImageIndexConverter))]
+ public int ImageIndex {
+ get {
+ return image_index;
+ }
+ set {
+ if (value < -1)
+ throw new ArgumentOutOfRangeException ("ImageIndex");
+
+ image_index = value;
+ image_key = String.Empty;
+
+ if (owner != null)
+ owner.header_control.Invalidate ();
+ }
+ }
+
+ [DefaultValue ("")]
+ //[DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
+ //[Editor ("ShiftUI.Design.ImageIndexEditor, " + Consts.AssemblySystem_Design,
+ //"System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
+ [RefreshProperties (RefreshProperties.Repaint)]
+ [TypeConverter (typeof (ImageKeyConverter))]
+ public string ImageKey {
+ get {
+ return image_key;
+ }
+ set {
+ image_key = value == null ? String.Empty : value;
+ image_index = -1;
+
+ if (owner != null)
+ owner.header_control.Invalidate ();
+ }
+ }
+
+ [Browsable (false)]
+ public ImageList ImageList {
+ get {
+ if (owner == null)
+ return null;
+
+ return owner.SmallImageList;
+ }
+ }
+
+ [Browsable (false)]
+ public int Index {
+ get {
+ if (owner != null)
+ return owner.Columns.IndexOf (this);
+
+ return -1;
+ }
+ }
+
+ [Browsable (false)]
+ public ListView ListView {
+ get { return owner; }
+ }
+
+ [Browsable (false)]
+ public string Name {
+ get {
+ return name;
+ }
+ set {
+ name = value == null ? String.Empty : value;
+ }
+ }
+
+ [DefaultValue (null)]
+ [BindableAttribute (true)]
+ [LocalizableAttribute (false)]
+ [TypeConverter (typeof (StringConverter))]
+ public object Tag {
+ get {
+ return tag;
+ }
+ set {
+ tag = value;
+ }
+ }
+
+ [Localizable (true)]
+ public string Text {
+ get { return text; }
+ set {
+ if (text != value) {
+ text = value;
+ if (owner != null)
+ owner.Redraw (true);
+
+ // UIA Framework: Raising Value changed event
+ OnUIATextChanged ();
+ }
+ }
+ }
+
+ [DefaultValue (HorizontalAlignment.Left)]
+ [Localizable (true)]
+ public HorizontalAlignment TextAlign {
+ get { return text_alignment; }
+ set {
+ text_alignment = value;
+ if (owner != null)
+ owner.Redraw (true);
+ }
+ }
+
+ [DefaultValue (60)]
+ [Localizable (true)]
+ public int Width {
+ get { return width; }
+ set {
+ if (width != value) {
+ width = value;
+ if (owner != null) {
+ owner.Redraw (true);
+ owner.RaiseColumnWidthChanged (this);
+ }
+ }
+ }
+ }
+ #endregion // Public Instance Properties
+
+ #region Public Methods
+ public void AutoResize (ColumnHeaderAutoResizeStyle headerAutoResize)
+ {
+ switch (headerAutoResize) {
+ case ColumnHeaderAutoResizeStyle.None:
+ break;
+ case ColumnHeaderAutoResizeStyle.ColumnContent:
+ Width = -1;
+ break;
+ case ColumnHeaderAutoResizeStyle.HeaderSize:
+ Width = -2;
+ break;
+ default:
+ throw new InvalidEnumArgumentException ("headerAutoResize", (int) headerAutoResize,
+ typeof (ColumnHeaderAutoResizeStyle));
+ }
+ }
+
+ public object Clone ()
+ {
+ ColumnHeader columnHeader = new ColumnHeader ();
+ columnHeader.text = text;
+ columnHeader.text_alignment = text_alignment;
+ columnHeader.width = width;
+ columnHeader.owner = owner;
+ columnHeader.format = (StringFormat) Format.Clone ();
+ columnHeader.column_rect = Rectangle.Empty;
+ return columnHeader;
+ }
+
+ public override string ToString ()
+ {
+ return string.Format ("ColumnHeader: Text: {0}", text);
+ }
+ #endregion // Public Methods
+
+ #region Protected Methods
+ protected override void Dispose (bool disposing)
+ {
+ base.Dispose (disposing);
+ }
+ #endregion // Protected Methods
+
+
+ #region UIA Framework: Methods, Properties and Events
+
+ static object UIATextChangedEvent = new object ();
+
+ internal event EventHandler UIATextChanged {
+ add { Events.AddHandler (UIATextChangedEvent, value); }
+ remove { Events.RemoveHandler (UIATextChangedEvent, value); }
+ }
+
+ private void OnUIATextChanged ()
+ {
+ EventHandler eh = (EventHandler) Events [UIATextChangedEvent];
+ if (eh != null)
+ eh (this, EventArgs.Empty);
+ }
+
+ #endregion
+ }
+}