LinkLabel.cs :  » 2.6.4-mono-.net-core » System.Windows.Forms » System » Windows » Forms » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » 2.6.4 mono .net core » System.Windows.Forms 
System.Windows.Forms » System » Windows » Forms » LinkLabel.cs
//
// System.Windows.Forms.LinkLabel.cs
//
// Author:
//   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
//   stub ammended by Jaak Simm (jaaksimm@firm.ee)
//  Dennis Hayes (dennish@raytek.com)
// (C) 2002 Ximian, Inc
//
using System.Collections;
using System.Drawing;
using System.ComponentModel;

namespace System.Windows.Forms{

  // <summary>
  //  This is only a template.  Nothing is implemented yet.
  //
  // </summary>

  public class LinkLabel : Label, IButtonControl {

    //
    //  --- Constructor
    //
    [MonoTODO]
    public LinkLabel()
    {
      throw new NotImplementedException ();
    }

    //
    //  --- Public Properties
    //
    [MonoTODO]
    public Color ActiveLinkcolor {
      get {
        throw new NotImplementedException ();
      }
      set {
        throw new NotImplementedException ();
      }
    }
    [MonoTODO]
    public Color DisabledLinkColor {
      get {
        throw new NotImplementedException ();
      }
      set {
        throw new NotImplementedException ();
      }
    }
    [MonoTODO]
    public LinkArea LinkArea {
      get {
        throw new NotImplementedException ();
      }
      set {
        throw new NotImplementedException ();
      }
    }
    [MonoTODO]
    public LinkBehavior LinkBehavior {
      get {
        throw new NotImplementedException ();
      }
      set {
        throw new NotImplementedException ();
      }
    }
    [MonoTODO]
    public Color LinkColor {
      get {
        throw new NotImplementedException ();
      }
      set {
        throw new NotImplementedException ();
      }
    }
    [MonoTODO]
    public LinkLabel.LinkCollection Links {
      get {
        throw new NotImplementedException ();
      }
    }
    [MonoTODO]
    public bool LinkVisited {
      get {
        throw new NotImplementedException ();
      }
      set {
        throw new NotImplementedException ();
      }
    }
    [MonoTODO]
    public override ISite Site {
      get {
        throw new NotImplementedException ();
      }
      set {
        throw new NotImplementedException ();
      }
    }
    [MonoTODO]
    public override string Text {
      get {
        throw new NotImplementedException ();
      }
      set {
        throw new NotImplementedException ();
      }
    }
    [MonoTODO]
    public Color VisitedLinkColor {
      get {
        throw new NotImplementedException ();
      }
      set {
        throw new NotImplementedException ();
      }
    }

    //
    //  --- Public Methods
    //
    //public IAsyncResult BeginInvoke(Delegate del)
    //{
    //  throw new NotImplementedException ();
    //}
    //public IAsyncResult BeginInvoke(Delegate del, object[] objs)
    //{
    //  throw new NotImplementedException ();
    //}
    //public void Dispose()
    //{
    //  throw new NotImplementedException ();
    //}
    [MonoTODO]
    public override bool Equals(object o)
    {
      throw new NotImplementedException ();
    }

    //public static bool Equals(object o1, object o2)
    //{
    //  throw new NotImplementedException ();
    //}
    [MonoTODO]
    public override int GetHashCode() {
      //FIXME add our proprities
      return base.GetHashCode();
    }
    //public void Invalidate()
    //{
    //  throw new NotImplementedException ();
    //}
    //public void Invalidate(bool val)
    //{
    //  throw new NotImplementedException ();
    //}
    //public void Invalidate(Rectangle rect)
    //{
    //  throw new NotImplementedException ();
    //}
    //public void Invalidate(Region reg)
    //{
    //  throw new NotImplementedException ();
    //}
    //public object Invoke(Delegate del)
    //{
    //  throw new NotImplementedException ();
    //}
    //public object Invoke(Delegate del, object[] objs)
    //{
    //  throw new NotImplementedException ();
    //}
    //public void PerformLayout()
    //{
    //  throw new NotImplementedException ();
    //}
    //public void PerformLayout(Control ctl, string str)
    //{
    //  throw new NotImplementedException ();
    //}
    //public void ResumeLayout()
    //{
    //  throw new NotImplementedException ();
    //}
    //public void ResumeLayout(bool val)
    //{
    //  throw new NotImplementedException ();
    //}
    //public void Scale(float val)
    //{
    //  throw new NotImplementedException ();
    //}
    //public void Scale(float val1, float val2)
    //{
    //  throw new NotImplementedException ();
    //}
    //public override void Select()
    //{
    //  throw new NotImplementedException ();
    //}
    //public override void Select(bool directed, bool forward)
    //{
    //  throw new NotImplementedException ();
    //}
    //public void SetBounds(int b1, int b2, int b3, int b4)
    //{
    //  throw new NotImplementedException ();
    //}
    //public void SetBounds(int b1, int b2, int b3, int b4, int b5, int b6)
    //{
    //  throw new NotImplementedException ();
    //}
    
    // --- IButtonControl members:
    DialogResult IButtonControl.DialogResult {
      [MonoTODO] get { throw new NotImplementedException (); }
      [MonoTODO] set { throw new NotImplementedException (); }
    }

    [MonoTODO]
    void IButtonControl.NotifyDefault(bool value) 
    {
      throw new NotImplementedException ();
    }
    
    [MonoTODO]
    void IButtonControl.PerformClick() 
    {
      throw new NotImplementedException ();
    }
    // --- end of IButtonControl members

    
    //  --- Public Events
    //
    [MonoTODO]
    public event LinkLabelLinkClickedEventHandler LinkClicked;

    //
    //  --- Protected Properties
    //
    [MonoTODO]
    protected override ImeMode DefaultImeMode {
      get {
        throw new NotImplementedException ();
      }
    }

    //
    //  --- Protected Methods
    //
    [MonoTODO]
    protected override AccessibleObject CreateAccessibilityInstance()
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void CreateHandle()
    {
      throw new NotImplementedException ();
    }

    //inherited
    //protected override virtual void Dispose(bool val)
    //{
    //  throw new NotImplementedException ();
    //}


    [MonoTODO]
    protected override void OnEnabledChanged(EventArgs e)
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void OnFontChanged( EventArgs e)
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void OnGotFocus( EventArgs e)
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void OnKeyDown (KeyEventArgs e)
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void OnLostFocus (EventArgs e)
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void OnMouseDown (MouseEventArgs e)
    {
      throw new NotImplementedException ();
    }
    // I think that this should be 'MouseEventArgs' 
    // but the documentation says EventArgs.
    [MonoTODO]
    protected override void OnMouseLeave(EventArgs e)
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void OnMouseMove (MouseEventArgs e)
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void OnMouseUp (MouseEventArgs e)
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void OnPaint (PaintEventArgs e)
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void OnPaintBackground(PaintEventArgs e)
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void OnTextAlignChanged( EventArgs e)
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void OnTextChanged( EventArgs e)
    {
      throw new NotImplementedException ();
    }

    [MonoTODO]
    protected override bool ProcessDialogKey(Keys keyData)
    {
      throw new NotImplementedException ();
    }
    //protected ContentAlignment RtlTranslateAlignment(ContentAlignment align)
    //{
    //  throw new NotImplementedException ();
    //}
    //protected HorizontalAlignment RtlTranslateAlignment( HorizontalAlignment align)
    //{
    //  throw new NotImplementedException ();
    //}
    //protected LeftRightAlignment RtlTranslateAlignment( LeftRightAlignment align)
    //{
    //  throw new NotImplementedException ();
    //}
    [MonoTODO]
    protected override void Select(bool val1, bool val2)
    {
      throw new NotImplementedException ();
    }
    [MonoTODO]
    protected override void SetBoundsCore(
      int x, 
      int y, 
      int width, 
      int height, 
      BoundsSpecified specified) {

      throw new NotImplementedException ();
    }
    //protected void UpdateBounds()
    //{
    //  throw new NotImplementedException ();
    //}
    //protected void UpdateBounds(int val1, int val2, int val3, int val4)
    //{
    //  throw new NotImplementedException ();
    //}
    //protected void UpdateBounds(int val1, int val2, int val3, int val4, int val5, int val6)
    //{
    //  throw new NotImplementedException ();
    //}
    [MonoTODO]
    protected override void WndProc(ref Message msg)
    {
      throw new NotImplementedException ();
    }

    
    
    
    /// System.Windows.Forms.LinkLabel.Link
    /// <summary>Represents a link within a LinkLabel control.</summary>
    ///
    /// stubbed out by Jaak Simm (jaaksimm@firm.ee)
    [MonoTODO]
    public class Link {
      bool enabled;
      int length;
      object linkData;
      int start;
      bool visited;
      
      public bool Enabled {
        get { return enabled; }
        set { enabled=value; }
      }
      
      public int Length {
        get { return length; }
        set { length=value; }
      }
      
      public object LinkData {
        get { return linkData; }
        set { linkData=value; }
      }
      
      public int Start {
        get { return start; }
        set { start=value; }
      }
      
      public bool Visited {
        get { return visited; }
        set { visited=value; }
      }
    }
    
//
// System.Windows.Forms.LinkLabel.LinkCollection.cs
//
// Author:
//   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
//
// (C) 2002 Ximian, Inc
//

      // <summary>
      //  This is only a template.  Nothing is implemented yet.
      //
      // </summary>

    public class LinkCollection :  IList, ICollection, IEnumerable {

      //
      //  --- Constructor
      //
      [MonoTODO]
      public LinkCollection(LinkLabel owner)
      {
        throw new NotImplementedException ();
      }

      //
      //  --- Public Properties
      //
      [MonoTODO]
      public int Count {
        get {
          throw new NotImplementedException ();
        }
      }
      [MonoTODO]
      public bool IsReadOnly {
        get {
          throw new NotImplementedException ();
        }
      }
      [MonoTODO]
      public virtual LinkLabel.Link this[ int index]  {
        get {
          throw new NotImplementedException ();
        }
        set {
          throw new NotImplementedException ();
        }
      }

      //
      //  --- Public Methods
      //
      [MonoTODO]
      public Link Add(int val1, int val2)
      {
        throw new NotImplementedException ();
      }
      [MonoTODO]
      public Link Add(int val1, int val2, object o)
      {
        throw new NotImplementedException ();
      }
      [MonoTODO]
      public virtual void Clear()
      {
        throw new NotImplementedException ();
      }
      // Inherited
      //public override bool Contains(LinkLabel.Link link)
      //{
      //  throw new NotImplementedException ();
      //}
      [MonoTODO]
      public override bool Equals(object o)
      {
        throw new NotImplementedException ();
      }

      //public static bool Equals(object o1, object o2)
      //{
      //  throw new NotImplementedException ();
      //}
      [MonoTODO]
      public override int GetHashCode() {
        //FIXME add our proprities
        return base.GetHashCode();
      }
      [MonoTODO]
      public IEnumerator GetEnumerator()
      {
        throw new NotImplementedException ();
      }
      [MonoTODO]
      public int IndexOf(LinkLabel.Link link)
      {
        throw new NotImplementedException ();
      }
      [MonoTODO]
      public void Remove(LinkLabel.Link value)
      {
        throw new NotImplementedException ();
      }
      [MonoTODO]
      public void RemoveAt(int index)
      {
        throw new NotImplementedException ();
      }
      
      /// --- LinkLabel.IList properties ---
      bool IList.IsFixedSize {
        [MonoTODO] get { throw new NotImplementedException (); }
      }
      
      object IList.this[int index] {

        [MonoTODO] get { throw new NotImplementedException (); }
        [MonoTODO] set { throw new NotImplementedException (); }
      }
  
      object ICollection.SyncRoot {

        [MonoTODO] get { throw new NotImplementedException (); }
      }
  
      bool ICollection.IsSynchronized {

        [MonoTODO] get { throw new NotImplementedException (); }
      }
      
      [MonoTODO]
      void ICollection.CopyTo(Array dest,int index) 
      {
        throw new NotImplementedException ();
      }
      
      /// --- LinkLabel.IList methods ---
      [MonoTODO]
      int IList.Add(object control) 
      {
        throw new NotImplementedException ();
      }
    
      [MonoTODO]
      bool IList.Contains(object control) 
      {
        throw new NotImplementedException ();
      }
    
      [MonoTODO]
      int IList.IndexOf(object control) 
      {
        throw new NotImplementedException ();
      }
    
      [MonoTODO]
      void IList.Insert(int index,object value) 
      {
        throw new NotImplementedException ();
      }
    
      [MonoTODO]
      void IList.Remove(object control) 
      {
        throw new NotImplementedException ();
      }
    }//End of subclass
  }// End of Class
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.