| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876 |
- // 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-2005 Novell, Inc.
- //
- // Authors:
- // Jordi Mas i Hernandez, [email protected]
- //
- // Based on work by:
- // Daniel Carrera, [email protected] (stubbed out)
- // Jaak Simm ([email protected]) (stubbed out)
- //
- // COMPLETE
- using System.ComponentModel;
- using System.Collections;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- namespace System.Windows.Forms
- {
- [DefaultEvent("LinkClicked")]
- public class LinkLabel : Label, IButtonControl
- {
- /* Encapsulates a piece of text (regular or link)*/
- internal class Piece
- {
- public string text;
- public int start;
- public int end;
- public LinkLabel.Link link; // Empty link indicates regular text
- public Rectangle rect;
- public bool clicked;
- public bool focused;
- public Piece ()
- {
- start = end = 0;
- link = null;
- clicked = false;
- focused = false;
- }
- }
- private Color active_link;
- private Color disabled_link;
- private Color link_color;
- private Color visited_color;
- private LinkArea link_area;
- private LinkBehavior link_behavior;
- private LinkCollection link_collection;
- private bool link_visited;
- private bool link_click;
- internal Piece[] pieces;
- internal int num_pieces;
- internal Font link_font;
- private Cursor override_cursor;
- private DialogResult dialog_result;
- #region Events
- public event LinkLabelLinkClickedEventHandler LinkClicked;
- #endregion // Events
- public LinkLabel ()
- {
- LinkArea = new LinkArea (0, -1);
- link_behavior = LinkBehavior.SystemDefault;
- link_visited = false;
- link_click = false;
- pieces = null;
- num_pieces = 0;
- link_font = null;
- ActiveLinkColor = Color.Red;
- DisabledLinkColor = ThemeEngine.Current.ColorGrayText;
- LinkColor = Color.FromArgb (255, 0, 0, 255);
- VisitedLinkColor = Color.FromArgb (255, 128, 0, 128);
- SetStyle (ControlStyles.Selectable, false);
- SetStyle (ControlStyles.Opaque, true);
- }
- #region Public Properties
- public Color ActiveLinkColor {
- get { return active_link;}
- set {
- if (active_link == value)
- return;
- active_link = value;
- Refresh ();
- }
- }
- public Color DisabledLinkColor {
- get { return disabled_link;}
- set {
- if (disabled_link == value)
- return;
- disabled_link = value;
- Refresh ();
- }
- }
- public Color LinkColor {
- get { return link_color;}
- set {
- if (link_color == value)
- return;
- link_color = value;
- Refresh ();
- }
- }
- public Color VisitedLinkColor {
- get { return visited_color;}
- set {
- if (visited_color == value)
- return;
- visited_color = value;
- Refresh ();
- }
- }
- [Localizable (true)]
- [Editor ("System.Windows.Forms.Design.LinkAreaEditor, " + Consts.AssemblySystem_Design, typeof (System.Drawing.Design.UITypeEditor))]
- public LinkArea LinkArea {
- get { return link_area;}
- set {
- if (value.Start <0 || value.Length < -1)
- throw new ArgumentException ();
- if (!value.IsEmpty)
- Links.Add (value.Start, value.Length);
- link_area = value;
- Refresh ();
- }
- }
-
- [DefaultValue (LinkBehavior.SystemDefault)]
- public LinkBehavior LinkBehavior {
- get { return link_behavior;}
- set {
- if (link_behavior == value)
- return;
- link_behavior = value;
- Refresh ();
- }
- }
-
- [Browsable (false)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public LinkLabel.LinkCollection Links {
- get {
- if (link_collection == null)
- link_collection = new LinkCollection (this);
-
- return link_collection;
- }
- }
- [DefaultValue (false)]
- public bool LinkVisited {
- get { return link_visited;}
- set {
- if (link_visited == value)
- return;
- link_visited = value;
- Refresh ();
- }
- }
-
- protected Cursor OverrideCursor {
- get { return override_cursor;}
- set { override_cursor = value;}
- }
- [RefreshProperties(RefreshProperties.Repaint)]
- public override string Text {
- get { return base.Text; }
- set {
- if (base.Text == value)
- return;
- base.Text = value;
- CreateLinkPieces ();
- }
- }
- #endregion // Public Properties
- DialogResult IButtonControl.DialogResult {
- get { return dialog_result; }
- set { dialog_result = value; }
- }
- void IButtonControl.NotifyDefault (bool value)
- {
- }
- void IButtonControl.PerformClick ()
- {
-
- }
- #region Public Methods
- protected override AccessibleObject CreateAccessibilityInstance ()
- {
- return base.CreateAccessibilityInstance();
- }
- protected override void CreateHandle ()
- {
- base.CreateHandle ();
- CreateLinkFont ();
- CreateLinkPieces ();
- }
- protected override void OnEnabledChanged (EventArgs e)
- {
- base.OnEnabledChanged (e);
- Refresh ();
- }
- protected override void OnFontChanged (EventArgs e)
- {
- base.OnFontChanged (e);
- CreateLinkFont ();
- CreateLinkPieces ();
- }
- protected override void OnGotFocus (EventArgs e)
- {
- base.OnGotFocus (e);
-
- // Set focus to the first enabled link piece
- for (int i = 0; i < num_pieces; i++) {
- if (pieces[i].link != null && pieces[i].link.Enabled) {
- pieces[i].focused = true;
- Invalidate (pieces[i].rect);
- break;
- }
- }
- }
- protected override void OnKeyDown (KeyEventArgs e)
- {
- base.OnKeyDown(e);
-
- // Set focus to the next link piece
- if (e.KeyCode == Keys.Tab || e.KeyCode == Keys.Right) {
- for (int i = 0; i < num_pieces; i++) {
- if (pieces[i].focused) {
- pieces[i].focused = false;
- Invalidate (pieces[i].rect);
-
- for (int n = i + 1; n < num_pieces; n++) {
- if (pieces[n].link != null && pieces[n].link.Enabled) {
- pieces[n].focused = true;
- e.Handled = true;
- Invalidate (pieces[n].rect);
- return;
- }
- }
- }
- }
- } else if (e.KeyCode == Keys.Return) {
- for (int i = 0; i < num_pieces; i++) {
- if (pieces[i].focused && pieces[i].link != null) {
- OnLinkClicked (new LinkLabelLinkClickedEventArgs (pieces[i].link));
- break;
- }
- }
- }
- }
- protected virtual void OnLinkClicked (LinkLabelLinkClickedEventArgs e)
- {
- if (LinkClicked != null)
- LinkClicked (this, e);
- }
- protected override void OnLostFocus (EventArgs e)
- {
- base.OnLostFocus (e);
-
- // Clean focus in link pieces
- for (int i = 0; i < num_pieces; i++) {
- if (pieces[i].focused) {
- pieces[i].focused = false;
- }
- }
-
- Refresh ();
- }
- protected override void OnMouseDown (MouseEventArgs e)
- {
- if (!Enabled) return;
- base.OnMouseDown (e);
- this.Capture = true;
- for (int i = 0; i < num_pieces; i++) {
- if (pieces[i].rect.Contains (e.X, e.Y)) {
- if (pieces[i].link!= null) {
- pieces[i].clicked = true;
- Invalidate (pieces[i].rect);
- }
- break;
- }
- }
- }
- protected override void OnMouseLeave(EventArgs e)
- {
- if (!Enabled) return;
- base.OnMouseLeave (e);
- }
- protected override void OnMouseMove (MouseEventArgs e)
- {
- base.OnMouseMove (e);
-
- Link link = PointInLink (e.X, e.Y);
-
- if (link == null) {
- Cursor = Cursors.Default;
- bool changed = false;
- if (link_behavior == LinkBehavior.HoverUnderline) {
- for (int i = 0; i < Links.Count; i++) {
- if (Links[i].Hoovered == true) {
- changed = true;
- Links[i].Hoovered = false;
- }
- }
- if (changed == true)
- Refresh ();
- }
- return;
- }
-
- if (link_behavior == LinkBehavior.HoverUnderline) {
- if (link.Hoovered != true) {
- link.Hoovered = true;
- Refresh ();
- }
- }
-
- Cursor = Cursors.Hand;
- }
- protected override void OnMouseUp (MouseEventArgs e)
- {
- if (!Enabled) return;
- base.OnMouseUp (e);
- this.Capture = false;
- for (int i = 0; i < num_pieces; i++) {
- if (pieces[i].link!= null && pieces[i].clicked == true) {
- OnLinkClicked (new LinkLabelLinkClickedEventArgs (pieces[i].link));
- pieces[i].clicked = false;
- Invalidate (pieces[i].rect);
- break;
- }
- }
- }
- protected override void OnPaint (PaintEventArgs pevent)
- {
- ThemeEngine.Current.DrawLinkLabel (pevent.Graphics, pevent.ClipRectangle, this);
- DrawImage (pevent.Graphics, Image, ClientRectangle, image_align);
- // Do not call base.OnPaint since it's the Label class
- }
- protected override void OnPaintBackground (PaintEventArgs e)
- {
- base.OnPaintBackground (e);
- }
- protected override void OnTextAlignChanged (EventArgs e)
- {
- base.OnTextAlignChanged (e);
- CreateLinkPieces ();
- }
- protected override void OnTextChanged (EventArgs e)
- {
- base.OnTextChanged (e);
- }
-
- protected Link PointInLink (int x, int y)
- {
- for (int i = 0; i < num_pieces; i++) {
- if (pieces[i].rect.Contains (x,y) && pieces[i].link != null)
- return pieces[i].link;
- }
- return null;
- }
- protected override bool ProcessDialogKey (Keys keyData)
- {
- return base.ProcessDialogKey (keyData);
- }
- protected override void Select (bool directed, bool forward)
- {
- base.Select (directed, forward);
- }
- protected override void SetBoundsCore (int x, int y, int width, int height, BoundsSpecified specified)
- {
- base.SetBoundsCore (x, y, width, height, specified);
- }
- protected override void WndProc (ref Message m)
- {
- base.WndProc (ref m);
- }
- #endregion //Public Methods
- #region Private Methods
- internal void CreateLinkPieces ()
- {
- if (Links.Count == 0 || IsHandleCreated == false || Text.Length == 0)
- return;
- int cur_piece = 0;
- num_pieces = 0;
- if (Links.Count == 1 && Links[0].Start == 0 && Links[0].Length == -1) {
- Links[0].Length = Text.Length;
- }
- pieces = new Piece [(Links.Count * 2) + 1];
- pieces[cur_piece] = new Piece();
- pieces[cur_piece].start = 0;
- for (int i = 0; i < Text.Length; i++) { /* Every char on the text*/
- for (int l = 0; l < Links.Count; l++) { /* Every link that we know of*/
- if (Links[l].Start == i) {
- if (i > 0) {
- /*Push prev. regular text*/
- pieces[cur_piece].end = i;
- pieces[cur_piece].text = Text.Substring (pieces[cur_piece].start,
- pieces[cur_piece].end - pieces[cur_piece].start);
- cur_piece++;
- /* New link*/
- pieces[cur_piece] = new Piece ();
- }
-
- int end;
-
- if (Links[l].Start + Links[l].Length > Text.Length) {
- end = Text.Length - Links[l].Start;
- }
- else {
- end = Links[l].Length;
- }
-
- pieces[cur_piece].start = Links[l].Start;
- pieces[cur_piece].end = Links[l].Start + end;
- pieces[cur_piece].link = Links[l];
-
- pieces[cur_piece].text = Text.Substring (pieces[cur_piece].start, end);
- cur_piece++; /* Push link*/
- pieces[cur_piece] = new Piece();
- i+= Links[l].Length;
- pieces[cur_piece].start = i;
- }
- }
- }
- if (pieces[cur_piece].end == 0 && pieces[cur_piece].start < Text.Length) {
- pieces[cur_piece].end = Text.Length;
- pieces[cur_piece].text = Text.Substring (pieces[cur_piece].start, pieces[cur_piece].end - pieces[cur_piece].start);
- cur_piece++;
- }
-
- num_pieces = cur_piece;
- CharacterRange[] charRanges = new CharacterRange [num_pieces];
- for (int i = 0; i < num_pieces; i++)
- charRanges[i] = new CharacterRange (pieces[i].start, pieces[i].end - pieces[i].start);
- Region[] charRegions = new Region [num_pieces];
- string_format.SetMeasurableCharacterRanges (charRanges);
- // BUG: This sizes do not match the ones used later when drawing
- charRegions = DeviceContext.MeasureCharacterRanges (Text, link_font, ClientRectangle, string_format);
-
- RectangleF rect;
- for (int i = 0; i < num_pieces; i++) {
- rect = charRegions[i].GetBounds (DeviceContext);
- pieces[i].rect = Rectangle.Ceiling (rect);
- charRegions[i].Dispose ();
- }
- if (Visible && IsHandleCreated)
- Refresh ();
- }
- /* Check if the links overlap */
- internal void CheckLinks ()
- {
- for (int i = 0; i < Links.Count; i++) {
- for (int l = 0; l < Links.Count; l++) {
- if (i==l) continue;
- if (((Links[i].Start + Links[i].Length) >= Links[l].Start &&
- Links[i].Start + Links[i].Length <= Links[l].Start + Links[l].Length) ||
- (Links[i].Start >= Links[l].Start &&
- Links[i].Start <= Links[l].Start + Links[l].Length))
- throw new InvalidOperationException ("Overlapping link regions.");
- }
- }
- }
-
- internal Font GetPieceFont (Piece piece)
- {
- switch (link_behavior) {
- case LinkBehavior.AlwaysUnderline:
- case LinkBehavior.SystemDefault: // Depends on IE configuration
- {
- if (piece.link == null) {
- return Font;
- } else {
- return link_font;
- }
- }
- case LinkBehavior.HoverUnderline:
- {
- if (piece.link != null && piece.link.Hoovered) {
- return link_font;
- } else {
- return Font;
- }
- }
-
- case LinkBehavior.NeverUnderline:
- default:
- return Font;
- }
-
- }
-
- internal Color GetLinkColor (Piece piece, int i)
- {
- Color color;
- if (Enabled == false ||
- (piece.link != null && piece.link.Enabled == false))
- color = DisabledLinkColor;
- else
- if (piece.clicked == true)
- color = ActiveLinkColor;
- else
- if ((LinkVisited == true && i == 0) ||
- (piece.link != null && piece.link.Visited == true))
- color = VisitedLinkColor;
- else
- color = LinkColor;
- return color;
- }
- private void CreateLinkFont ()
- {
- if (link_font != null)
- link_font.Dispose ();
-
- link_font = new Font (Font.FontFamily, Font.Size, Font.Style | FontStyle.Underline,
- Font.Unit);
- }
- #endregion // Private Methods
- //
- // System.Windows.Forms.LinkLabel.Link
- //
- public class Link
- {
- private bool enabled;
- internal int length;
- private object linkData;
- private int start;
- private bool visited;
- private LinkLabel owner;
- private bool hoovered;
- internal Link ()
- {
- enabled = true;
- visited = false;
- length = start = 0;
- linkData = null;
- owner = null;
- }
- internal Link (LinkLabel owner)
- {
- enabled = true;
- visited = false;
- length = start = 0;
- linkData = null;
- this.owner = owner;
- }
- public bool Enabled {
- get { return enabled; }
- set {
- if (enabled == value)
- return;
- enabled = value;
-
- if (owner != null)
- owner.Refresh ();
- }
- }
- public int Length {
- get {
- if (length == -1) {
- return owner.Text.Length;
- }
-
- return length;
- }
- set {
- if (length == value)
- return;
-
- length = value;
- if (owner != null)
- owner.CreateLinkPieces ();
- }
- }
- public object LinkData {
- get { return linkData; }
- set { linkData = value; }
- }
- public int Start {
- get { return start; }
- set {
- if (start == value)
- return;
- start = value;
- if (owner != null)
- owner.CreateLinkPieces ();
- }
- }
- public bool Visited {
- get { return visited; }
- set {
- if (visited == value)
- return;
- visited = value;
-
- if (owner != null)
- owner.Refresh ();
- }
- }
-
- internal bool Hoovered {
- get { return hoovered; }
- set { hoovered = value; }
- }
- }
- //
- // System.Windows.Forms.LinkLabel.Link
- //
- public class LinkCollection : IList, ICollection, IEnumerable
- {
- private LinkLabel owner;
- private ArrayList collection = new ArrayList();
- public LinkCollection (LinkLabel owner)
- {
- if (owner==null)
- throw new ArgumentNullException ();
- this.owner = owner;
- }
- [Browsable (false)]
- public int Count {
- get { return collection.Count; }
- }
- public bool IsReadOnly {
- get { return false; }
- }
- public virtual LinkLabel.Link this[int index] {
- get {
- if (index < 0 || index >= Count)
- throw new ArgumentOutOfRangeException();
- return (LinkLabel.Link) collection[index];
- }
- set {
- if (index < 0 || index >= Count)
- throw new ArgumentOutOfRangeException();
- collection[index] = value;
- }
- }
- public Link Add (int start, int length)
- {
- return Add (start, length, null);
- }
- public Link Add (int start, int length, object o)
- {
- Link link = new Link (owner);
- int idx;
- if (Count == 1 && this[0].Start == 0
- && this[0].length == -1) {
- Clear ();
- }
- link.Length = length;
- link.Start = start;
- link.LinkData = o;
- idx = collection.Add (link);
- owner.CheckLinks ();
- owner.CreateLinkPieces ();
- return (Link) collection[idx];
- }
- public virtual void Clear ()
- {
- collection.Clear();
- owner.CreateLinkPieces ();
- }
- public bool Contains (LinkLabel.Link link)
- {
- return collection.Contains (link);
- }
- public IEnumerator GetEnumerator ()
- {
- return collection.GetEnumerator ();
- }
- public int IndexOf (LinkLabel.Link link)
- {
- return collection.IndexOf (link);
- }
- public void Remove (LinkLabel.Link value)
- {
- collection.Remove (value);
- owner.CreateLinkPieces ();
- }
- public void RemoveAt (int index)
- {
- if (index >= Count)
- throw new ArgumentOutOfRangeException ("Invalid value for array index");
- collection.Remove (collection[index]);
- owner.CreateLinkPieces ();
- }
- bool IList.IsFixedSize {
- get {return false;}
- }
- object IList.this[int index] {
- get { return collection[index]; }
- set { collection[index] = value; }
- }
- object ICollection.SyncRoot {
- get {return this;}
- }
- bool ICollection.IsSynchronized {
- get {return false;}
- }
- void ICollection.CopyTo (Array dest, int index)
- {
- collection.CopyTo (dest, index);
- }
- int IList.Add (object control)
- {
- int idx = collection.Add (control);
- owner.CheckLinks ();
- owner.CreateLinkPieces ();
- return idx;
- }
- bool IList.Contains (object control)
- {
- return collection.Contains (control);
- }
- int IList.IndexOf (object control)
- {
- return collection.IndexOf (control);
- }
- void IList.Insert (int index, object value)
- {
- collection.Insert (index, value);
- owner.CheckLinks ();
- owner.CreateLinkPieces ();
- }
- void IList.Remove (object control)
- {
- collection.Remove (control);
- owner.CreateLinkPieces ();
- }
- }
- }
- }
|