(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Windows.Forms / WINELib / tooltip.cs
blobe81a2949e646fb72675bfd470707ecb6ef952313
1 //
2 // System.Windows.Forms.ToolTip
3 //
4 // Author:
5 // stubbed out by Jackson Harper (jackson@latitudegeo.com)
6 // Dennis Hayes (dennish@raytek.com)
7 //
8 // (C) 2002 Ximian, Inc
9 //
10 using System.ComponentModel;
11 namespace System.Windows.Forms {
13 // <summary>
14 // This is only a template. Nothing is implemented yet.
16 // </summary>
18 public sealed class ToolTip : Component, IExtenderProvider {
21 // --- Public Constructors
23 [MonoTODO]
24 public ToolTip() {
25 throw new NotImplementedException ();
27 [MonoTODO]
28 public ToolTip(IContainer cont) {
29 throw new NotImplementedException ();
32 // --- Public Properties
34 [MonoTODO]
35 public bool Active {
36 get {
37 throw new NotImplementedException ();
39 set {
40 throw new NotImplementedException ();
43 [MonoTODO]
44 public int AutomaticDelay {
45 get {
46 throw new NotImplementedException ();
48 set {
49 throw new NotImplementedException ();
52 [MonoTODO]
53 public int AutoPopDelay{
54 get {
55 throw new NotImplementedException ();
57 set {
58 throw new NotImplementedException ();
61 [MonoTODO]
62 public int InitialDelay {
63 get {
64 throw new NotImplementedException ();
66 set {
67 throw new NotImplementedException ();
70 [MonoTODO]
71 public int ReshowDelay {
72 get {
73 throw new NotImplementedException ();
75 set {
76 throw new NotImplementedException ();
79 [MonoTODO]
80 public bool ShowAlways {
81 get {
82 throw new NotImplementedException ();
84 set {
85 throw new NotImplementedException ();
89 // --- Public Methods
91 [MonoTODO]
92 public void RemoveAll() {
93 throw new NotImplementedException ();
95 [MonoTODO]
96 public void SetToolTip(Control control, string caption) {
97 throw new NotImplementedException ();
99 [MonoTODO]
100 public override string ToString() {
101 throw new NotImplementedException ();
104 // --- Protected Methods
107 //inherited
108 //protected override void Dispose(bool disposing) {
109 // throw new NotImplementedException ();
111 [MonoTODO]
112 ~ToolTip() {
113 throw new NotImplementedException ();
115 bool IExtenderProvider.CanExtend(object extendee){
116 throw new NotImplementedException ();