Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs/class
diff options
context:
space:
mode:
authorDennis Hayes <dennis@mono-cvs.ximian.com>2002-10-15 05:13:47 +0400
committerDennis Hayes <dennis@mono-cvs.ximian.com>2002-10-15 05:13:47 +0400
commitbc3ac058f58075044c6d6fc8cd446b519d8af314 (patch)
tree4fcfe01cfd24151db94f3df74df34e76136cd96f /mcs/class
parent9a0f017e3c5c3d43c4af5c8d549a92f554aa48e8 (diff)
2002-10-13 DennisHayes <dennish@raytek.com>
*Application.cs *AxHost.cs *ChangeLog *CheckedListBox.cs *ComboBox.cs *CurrencyManager.cs *DateTimePicker.cs *DomainUpDown.cs *FolderBrowserDialog.cs *ListBox.cs *logfile.txt *StatusBarDrawItemEventArgs.cs *TabControl.cs *TextBox.cs *TrackBar.cs *UpDownBase.cs * Updated to match .NET V1.1 Beta svn path=/trunk/mcs/; revision=8274
Diffstat (limited to 'mcs/class')
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/AxHost.cs5
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/ChangeLog21
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/CheckedListBox.cs18
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/ComboBox.cs4
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/CurrencyManager.cs6
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/DateTimePicker.cs8
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/DomainUpDown.cs2
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/FolderBrowserDialog.cs130
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/ListBox.cs10
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/StatusBarDrawItemEventArgs.cs12
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/TabControl.cs56
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/TextBox.cs23
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/TrackBar.cs10
-rw-r--r--mcs/class/System.Windows.Forms/System.Windows.Forms/UpDownBase.cs13
14 files changed, 301 insertions, 17 deletions
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/AxHost.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/AxHost.cs
index d4add3cf584..df7497483f2 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/AxHost.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/AxHost.cs
@@ -242,6 +242,11 @@ namespace System.Windows.Forms {
protected override bool ProcessMnemonic(char charCode) {
throw new NotImplementedException ();
}
+
+ [MonoTODO]
+ protected override bool ProcessProcessdialogKey(Keys keyData) { // .NET V1.1 Beta
+ throw new NotImplementedException ();
+ }
[MonoTODO]
protected void SetAboutBoxDelegate(AxHost.AboutBoxDelegate d) {
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/ChangeLog b/mcs/class/System.Windows.Forms/System.Windows.Forms/ChangeLog
index 1b9c1c9b013..c0dd0f3109d 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/ChangeLog
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/ChangeLog
@@ -1,3 +1,24 @@
+2002-10-13 DennisHayes <dennish@raytek.com>
+
+ *Application.cs
+ *AxHost.cs
+ *ChangeLog
+ *CheckedListBox.cs
+ *ComboBox.cs
+ *CurrencyManager.cs
+ *DateTimePicker.cs
+ *DomainUpDown.cs
+ *FolderBrowserDialog.cs
+ *ListBox.cs
+ *logfile.txt
+ *StatusBarDrawItemEventArgs.cs
+ *TabControl.cs
+ *TextBox.cs
+ *TrackBar.cs
+ *UpDownBase.cs
+
+ * Updated to match .NET V1.1 Beta
+
2002-9-2 DennisHayes <dennish@raytek.com>
* AccessibleObject.cs
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/CheckedListBox.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/CheckedListBox.cs
index 1ac299d1276..3fcde06aee9 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/CheckedListBox.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/CheckedListBox.cs
@@ -72,7 +72,25 @@ namespace System.Windows.Forms {
public CheckedListBox.ObjectCollection Items {
get { throw new NotImplementedException (); }
}
+
+ [MonoTODO]
+ public new object DataSource { // .NET V1.1 Beta. needs implmented
+ get { return base.DataSource; }
+ set { base.DataSource = value; }
+ }
+ [MonoTODO]
+ public new string DisplayMember { // .NET V1.1 Beta. needs implmented
+ get { return base.DisplayMember; }
+ set { base.DisplayMember = value; }
+ }
+
+ [MonoTODO]
+ public new string ValueMember { // .NET V1.1 Beta. needs implmented
+ get { return base.DisplayMember; }
+ set { base.DisplayMember = value; }
+ }
+
public override SelectionMode SelectionMode {
set {
if (value!=SelectionMode.One && value!=SelectionMode.None)
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/ComboBox.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/ComboBox.cs
index cd15d126417..ac21c6fad54 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/ComboBox.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/ComboBox.cs
@@ -56,7 +56,7 @@ namespace System.Windows.Forms {
sorted = false;
backgroundImage = null;
text = "";
- Region
+
}
// --- Properties ---
@@ -280,7 +280,7 @@ namespace System.Windows.Forms {
/// --- Methods ---
/// internal .NET framework supporting methods, not stubbed out:
- /// - protected virtual void OnSelectedItemChanged(EventArgs e);
+ protected override void OnSelectedItemChanged(EventArgs e); // .NET V1.1 Beta
/// - protected override void SetItemCore(int index,object value);
[MonoTODO]
protected virtual void AddItemsCore(object[] value)
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/CurrencyManager.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/CurrencyManager.cs
index dd6a79ed624..0cce2bf04cd 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/CurrencyManager.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/CurrencyManager.cs
@@ -148,10 +148,8 @@ namespace System.Windows.Forms {
#region Events
[MonoTODO]
- public event ItemChangedEventHandler ItemChanged {
- add { throw new NotImplementedException (); }
- remove { throw new NotImplementedException (); }
- }
+ public event ItemChangedEventHandler ItemChanged;
+ public event EventHandler MetaDataChanged; // .NET V1.1 Beta
#endregion
}
}
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/DateTimePicker.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/DateTimePicker.cs
index f2f94a080b2..d1224f57321 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/DateTimePicker.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/DateTimePicker.cs
@@ -156,6 +156,7 @@ namespace System.Windows.Forms {
// SystemColorsChanged(this, e);
//}
}
+
[MonoTODO]
protected virtual void OnValueChanged(EventArgs e)
{
@@ -164,11 +165,18 @@ namespace System.Windows.Forms {
ValueChanged(this, e);
}
}
+
+ [MonoTODO]
+ protected override void Dispose(bool disposing) { // .NET V1.1 Beta
+ throw new NotImplementedException ();
+ }
+
[MonoTODO]
protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified)
{
throw new NotImplementedException ();
}
+
[MonoTODO]
protected override void WndProc(ref Message m)
{
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/DomainUpDown.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/DomainUpDown.cs
index d59c501400e..8d23795d93b 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/DomainUpDown.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/DomainUpDown.cs
@@ -83,7 +83,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
[MonoTODO]
- protected override void WndProc(ref Message m)
+ protected virtual void WndProc(Message m) // override changed to virtual in .NET V.1. Beta
{
throw new NotImplementedException ();
}
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/FolderBrowserDialog.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/FolderBrowserDialog.cs
new file mode 100644
index 00000000000..285a4925665
--- /dev/null
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/FolderBrowserDialog.cs
@@ -0,0 +1,130 @@
+//
+// System.Windows.Forms.FolderBrowserDialog.cs
+//
+// Author:
+// Dennis Hayes (dennish@raytek.com)
+//
+// (C) 2002 Ximian, Inc
+//
+
+namespace System.Windows.Forms {
+
+ // <summary>
+ // This is only a template. Nothing is implemented yet.
+ //
+ // </summary>
+
+ public class FolderBrowserDialog {
+
+ //
+ // --- Constructor
+ //
+ [MonoTODO]
+ public FolderBrowserDialog() {
+ throw new NotImplementedException ();
+ }
+
+ //
+ // --- Public Fields
+ //
+
+ [MonoTODO]
+ public virtual ObjRef CreateObjRef(Type requstedType){
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public virtual object GetLifetimeService(){
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ protected virtual object GetService(Type service){
+ throw new NotImplementedException ();
+ }
+
+
+ [MonoTODO]
+ public Type GetType(){
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ protected virtual IntPtr HookProc(IntPtr hWnd, int msg, IntPtr wparam, IntPtr lparam){
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ public virtual object InitializeLifetimeService(){
+ throw new NotImplementedException ();
+ }
+
+
+ public virtual void Dispose(){
+ base.Dispose();
+ }
+
+ public virtual void Dispose(){
+ base.Dispose();
+ }
+
+ [MonoTODO]
+ ~FolderBrowserDialog(){
+ }
+
+ /// <summary>
+ /// Equals Method
+ /// </summary>
+ ///
+ /// <remarks>
+ /// Checks equivalence of this FolderBrowserDialog and another object.
+ /// </remarks>
+
+ public override bool Equals (object obj) {
+ if (!(obj is FolderBrowserDialog))
+ return false;
+
+ return (this == (FolderBrowserDialog) obj);
+ }
+
+ /// <summary>
+ /// GetHashCode Method
+ /// </summary>
+ ///
+ /// <remarks>
+ /// Calculates a hashing value.
+ /// </remarks>
+
+ public override int GetHashCode () {
+ unchecked{//FIXME Add our proprities to the hash
+ return base.GetHashCode();
+ }
+ }
+
+ /// <summary>
+ /// ToString Method
+ /// </summary>
+ ///
+ /// <remarks>
+ /// Formats the FolderBrowserDialog as a string.
+ /// </remarks>
+
+ public override string ToString () {
+ //FIXME do a better tostring
+ return base.ToString() + "FolderBrowserDialog";
+ }
+
+
+ public virtual void Dispose(bool disposing){
+ base.Dispose(disposing);
+ }
+
+ //
+ // --- Public Properties
+ //
+
+ public event EventHandler Disposed;
+ public event EventHandler HelpRequest;
+
+ }
+} \ No newline at end of file
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/ListBox.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/ListBox.cs
index e0b72af4d19..9a8ae89ee52 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/ListBox.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/ListBox.cs
@@ -360,9 +360,19 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
+ [MonoTODO]
+ protected override void OnSelectedValueChanged(EventArgs e) {
+ throw new NotImplementedException ();
+ }
+
protected override void RefreshItem(int index) {
throw new NotImplementedException ();
}
+
+ public override void Refresh() { // .NET V1.1 Beta
+ base.Refresh();
+ }
+
//Inherited
//protected ContentAlignment RtlTranslateAlignment(ContentAlignment align) {
// throw new NotImplementedException ();
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/StatusBarDrawItemEventArgs.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/StatusBarDrawItemEventArgs.cs
index cf5cf819c70..b2b317408cc 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/StatusBarDrawItemEventArgs.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/StatusBarDrawItemEventArgs.cs
@@ -18,8 +18,16 @@ namespace System.Windows.Forms {
private StatusBarPanel panel;
/// --- Constructor ---
- public StatusBarDrawItemEventArgs(Graphics g, Font font, Rectangle r, int itemId, DrawItemState itemState, StatusBarPanel panel)
- : base(g, font, r, itemId, itemState) {
+ public StatusBarDrawItemEventArgs(Graphics g, Font font,
+ Rectangle r, int itemId, DrawItemState itemState,
+ StatusBarPanel panel, Color foreColor, Color backColor)
+ : base(g, font, r, itemId, itemState, foreColor, backColor) {
+ this.panel = panel;
+ }
+
+ public StatusBarDrawItemEventArgs(Graphics g, Font font,
+ Rectangle r, int itemId, DrawItemState itemState, StatusBarPanel panel)
+ : base(g, font, r, itemId, itemState) {
this.panel = panel;
}
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/TabControl.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/TabControl.cs
index d9fad6afd05..84e93329ed9 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/TabControl.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/TabControl.cs
@@ -28,6 +28,7 @@ namespace System.Windows.Forms {
public TabControl() {
throw new NotImplementedException ();
}
+
[MonoTODO]
public TabAlignment Alignment {
get {
@@ -37,6 +38,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public TabAppearance Appearance {
get {
@@ -46,6 +48,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public override Color BackColor {
get {
@@ -55,6 +58,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public override Image BackgroundImage {
get {
@@ -64,12 +68,14 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public override Rectangle DisplayRectangle {
get {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public TabDrawMode DrawMode {
get {
@@ -79,6 +85,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public override Color ForeColor {
get {
@@ -88,6 +95,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public bool HotTrack {
get {
@@ -97,6 +105,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public ImageList ImageList {
get {
@@ -106,6 +115,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public Size ItemSize {
get {
@@ -115,6 +125,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public bool Multiline {
get {
@@ -124,6 +135,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public Point Padding {
get {
@@ -133,12 +145,14 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public int RowCount {
get {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public int SelectedIndex {
get {
@@ -148,6 +162,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public TabPage SelectedTab {
get {
@@ -157,6 +172,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public bool ShowToolTips {
get {
@@ -166,6 +182,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public TabSizeMode SizeMode {
get {
@@ -175,18 +192,21 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public int TabCount {
get {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public TabControl.TabPageCollection TabPages {
get {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public override string Text {
get {
@@ -203,6 +223,7 @@ namespace System.Windows.Forms {
public Rectangle GetTabRect(int index) {
throw new NotImplementedException ();
}
+
[MonoTODO]
public override string ToString() {
throw new NotImplementedException ();
@@ -221,6 +242,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
protected override Size DefaultSize {
get {
@@ -234,58 +256,77 @@ namespace System.Windows.Forms {
protected override Control.ControlCollection CreateControlsInstance() {
throw new NotImplementedException ();
}
+
[MonoTODO]
protected override void CreateHandle() {
throw new NotImplementedException ();
}
+
+ [MonoTODO]
+ protected override void Dispose(bool disposing) { // .NET V1.1 Beta. .needs implmentation
+ base.Dispose(disposing);
+ }
+
[MonoTODO]
protected override bool IsInputKey(Keys keyData) {
throw new NotImplementedException ();
}
+
[MonoTODO]
protected virtual void OnDrawItem(DrawItemEventArgs e) {
throw new NotImplementedException ();
}
+
[MonoTODO]
protected override void OnFontChanged(EventArgs e) {
throw new NotImplementedException ();
}
+
[MonoTODO]
protected override void OnHandleCreated(EventArgs e) {
throw new NotImplementedException ();
}
+
[MonoTODO]
protected override void OnHandleDestroyed(EventArgs e) {
throw new NotImplementedException ();
}
+
[MonoTODO]
protected override void OnKeyDown(KeyEventArgs ke) {
throw new NotImplementedException ();
}
+
[MonoTODO]
protected override void OnResize(EventArgs e) {
throw new NotImplementedException ();
}
+
[MonoTODO]
protected virtual void OnSelectedIndexChanged(EventArgs e) {
throw new NotImplementedException ();
}
+
[MonoTODO]
protected override void OnStyleChanged(EventArgs e) {
throw new NotImplementedException ();
}
+
[MonoTODO]
protected override bool ProcessKeyPreview(ref Message m) {
throw new NotImplementedException ();
}
+
[MonoTODO]
protected void RemoveAll() {
throw new NotImplementedException ();
}
+
[MonoTODO]
protected override void WndProc(ref Message m) {
throw new NotImplementedException ();
}
+
//FIXME DONT COMPILE
// [MonoTODO]
// public class ControlCollection {//: Control.ControlCollection {
@@ -296,6 +337,7 @@ namespace System.Windows.Forms {
// public override void Add(Control value) {
// throw new NotImplementedException ();
// }
+//
// [MonoTODO]
// public override void Remove(Control value) {
// throw new NotImplementedException ();
@@ -318,12 +360,14 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public bool IsReadOnly {
get {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public virtual TabPage this[int index] {
get {
@@ -340,34 +384,42 @@ namespace System.Windows.Forms {
public void Add(TabPage value) {
throw new NotImplementedException ();
}
+
[MonoTODO]
public void AddRange(TabPage[] pages) {
throw new NotImplementedException ();
}
+
[MonoTODO]
public virtual void Clear() {
throw new NotImplementedException ();
}
+
[MonoTODO]
public bool Contains(TabPage page) {
throw new NotImplementedException ();
}
+
[MonoTODO]
public IEnumerator GetEnumerator() {
throw new NotImplementedException ();
}
+
[MonoTODO]
public int IndexOf(TabPage page) {
throw new NotImplementedException ();
}
+
[MonoTODO]
public void Remove(TabPage value) {
throw new NotImplementedException ();
}
+
[MonoTODO]
public void RemoveAt(int index) {
throw new NotImplementedException ();
}
+
/// <summary>
/// IList Interface implmentation.
/// </summary>
@@ -377,6 +429,7 @@ namespace System.Windows.Forms {
return false;
}
}
+
bool IList.IsFixedSize{
get{
// We allow addition and removeal of items after creation of the list.
@@ -437,16 +490,19 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
bool ICollection.IsSynchronized{
get{
throw new NotImplementedException ();
}
}
+
object ICollection.SyncRoot{
get{
throw new NotImplementedException ();
}
}
+
void ICollection.CopyTo(Array array, int index){
throw new NotImplementedException ();
}
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/TextBox.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/TextBox.cs
index 80a00c9c686..cad7d3c1a15 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/TextBox.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/TextBox.cs
@@ -99,15 +99,24 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
- [MonoTODO]
- protected override ImeMode DefaultImeMode {
- get
- {
- throw new NotImplementedException ();
- }
- }
+ [MonoTODO]
+ protected override ImeMode DefaultImeMode {
+ get {
+ throw new NotImplementedException ();
+ }
+ }
+ [MonoTODO]
+ protected override int SelectionLength {
+ get {
+ throw new NotImplementedException ();
+ }
+ set {
+ throw new NotImplementedException ();
+ }
+ }
// --- Protected Members
+
protected override bool IsInputKey(Keys keyData)
{
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/TrackBar.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/TrackBar.cs
index 0d3834f06c9..4bd5068575d 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/TrackBar.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/TrackBar.cs
@@ -39,6 +39,7 @@ namespace System.Windows.Forms {
throw new NotImplementedException ();
}
}
+
[MonoTODO]
public override Image BackgroundImage {
get {
@@ -211,18 +212,25 @@ namespace System.Windows.Forms {
{
throw new NotImplementedException ();
}
+
[MonoTODO]
protected virtual void OnScroll(EventArgs e)
{
throw new NotImplementedException ();
}
+
+ [MonoTODO]
+ protected override void OnMouseWheel(MouseEventArgs e) { // .NET V1.1 Beta.
+ throw new NotImplementedException ();
+ }
+
[MonoTODO]
protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified)
{
throw new NotImplementedException ();
}
[MonoTODO]
- protected override void WndProc(ref Message m)
+ protected override void WndProc(ref Message m)
{
throw new NotImplementedException ();
}
diff --git a/mcs/class/System.Windows.Forms/System.Windows.Forms/UpDownBase.cs b/mcs/class/System.Windows.Forms/System.Windows.Forms/UpDownBase.cs
index c2ae7414007..1a3fd795578 100644
--- a/mcs/class/System.Windows.Forms/System.Windows.Forms/UpDownBase.cs
+++ b/mcs/class/System.Windows.Forms/System.Windows.Forms/UpDownBase.cs
@@ -309,6 +309,19 @@ namespace System.Windows.Forms {
{
throw new NotImplementedException ();
}
+
+ [MonoTODO]
+
+ //FIXME shoould this be (ref message m)??
+ protected override void WndProc(Message m) { // .NET V1.1 Beta
+ throw new NotImplementedException ();
+ }
+
+ [MonoTODO]
+ protected override void Dispose(bool Disposing) { // .NET V1.1 Beta
+ throw new NotImplementedException ();
+ }
+
#endregion // Protected Methods
}