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
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIWin32.cs')
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIWin32.cs152
1 files changed, 1 insertions, 151 deletions
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIWin32.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIWin32.cs
index cdc4f8d0178..c40259a828c 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIWin32.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/XplatUIWin32.cs
@@ -23,157 +23,7 @@
// Peter Bartok pbartok@novell.com
//
//
-// $Revision: 1.43 $
-// $Modtime: $
-// $Log: XplatUIWin32.cs,v $
-// Revision 1.43 2004/11/08 20:55:33 pbartok
-// - Added argument to SetTopmost method
-// - Fixed broken ClientToScreen function
-//
-// Revision 1.42 2004/10/20 03:58:05 pbartok
-// - Small sanity check
-//
-// Revision 1.41 2004/10/18 05:17:32 pbartok
-// - Removed VirtualKeys to XplatUIStructs
-// - Implemented SetTopMost method
-// - Implemented EnableWindow method
-// - Bugfix in ScreenToClient()
-// - Bugfixes in ClientToScreen()
-//
-// Revision 1.40 2004/10/13 20:18:21 pbartok
-// - Added code to destroy a window
-//
-// Revision 1.39 2004/10/06 09:59:05 jordi
-// removes warnings from compilation
-//
-// Revision 1.38 2004/10/02 19:08:38 pbartok
-// - Added Win32EnableWindow method (test for implementing modal dialogs)
-// - Added ClientToScreen method and imports
-//
-// Revision 1.37 2004/09/21 04:14:29 pbartok
-// - Fixed accessibility level for Idle handler
-//
-// Revision 1.36 2004/09/21 00:54:15 jackson
-// New message loop that uses poll so we don't get a busy loop
-//
-// Revision 1.35 2004/09/16 23:45:09 pbartok
-// - Fixed sending a window to the front
-// - Added overload for SetWindowPos to avoid casting
-//
-// Revision 1.34 2004/09/13 21:18:32 pbartok
-// - Added Z-Ordering methods
-//
-// Revision 1.33 2004/09/11 00:57:35 pbartok
-// - Added method to retrieve text from window
-//
-// Revision 1.32 2004/08/25 18:33:08 pbartok
-// - Fixed timer handling, now seems to work
-// - Improved error message for window creation
-//
-// Revision 1.31 2004/08/24 17:17:27 pbartok
-// - Implemented SetTimer() and KillTimer()
-//
-// Revision 1.30 2004/08/24 11:29:44 jackson
-// Move timers to the driver level. On X they are queued by the driver and checked on idle.
-//
-// Revision 1.29 2004/08/24 00:19:36 ravindra
-// Removed the unwanted destructor.
-//
-// Revision 1.28 2004/08/23 19:39:30 pbartok
-// - Added method to move mouse cursor
-//
-// Revision 1.27 2004/08/21 20:51:27 pbartok
-// - Added method to get default display size
-//
-// Revision 1.26 2004/08/21 20:23:56 pbartok
-// - Added method to query current grab state
-// - Added argument to allow confining a grab to a window
-//
-// Revision 1.25 2004/08/21 18:35:38 pbartok
-// - Fixed bug with Async message handling
-// - Implemented getting the ModifierKeys
-//
-// Revision 1.24 2004/08/21 17:31:21 pbartok
-// - Drivers now return proper mouse state
-//
-// Revision 1.23 2004/08/20 20:39:07 pbartok
-// - Added jackson's Async code from X11 to Win32
-//
-// Revision 1.22 2004/08/20 20:02:45 pbartok
-// - Added method for setting the background color
-// - Added handling for erasing the window background
-//
-// Revision 1.21 2004/08/20 19:14:35 jackson
-// Expose functionality to send async messages through the driver
-//
-// Revision 1.20 2004/08/20 01:37:47 pbartok
-// - Added generation of MouseEnter, MouseLeave and MouseHover events
-// - Added cleanup on EndPaint
-//
-// Revision 1.19 2004/08/18 19:16:53 jordi
-// Move colors to a table
-//
-// Revision 1.18 2004/08/17 21:24:03 pbartok
-// - Finished IsVisible
-// - Added Win32GetWindowPlacement
-//
-// Revision 1.17 2004/08/13 21:42:15 pbartok
-// - Changed signature for GetCursorPos
-//
-// Revision 1.16 2004/08/13 19:00:15 jordi
-// implements PointToClient (ScreenToClient)
-//
-// Revision 1.15 2004/08/13 18:53:57 pbartok
-// - Changed GetWindowPos to also provide client area size
-// - Fixed broken prototypes for several win32 functions
-//
-// Revision 1.14 2004/08/12 22:59:03 pbartok
-// - Implemented method to get current mouse position
-//
-// Revision 1.13 2004/08/11 22:20:59 pbartok
-// - Signature fixes
-//
-// Revision 1.12 2004/08/11 19:41:38 jordi
-// Fixes ClientRect
-//
-// Revision 1.11 2004/08/11 19:19:44 pbartok
-// - We had SetWindowPos and MoveWindow to set window positions and size,
-// removed MoveWindow. We have GetWindowPos, so it made sense to keep
-// SetWindowPos as matching counterpart
-// - Added some X11 sanity checking
-//
-// Revision 1.10 2004/08/11 18:55:46 pbartok
-// - Added method to calculate difference between decorated window and raw
-// client area
-//
-// Revision 1.9 2004/08/10 18:47:16 jordi
-// Calls InvalidateRect before UpdateWindow
-//
-// Revision 1.8 2004/08/10 17:36:17 pbartok
-// - Implemented several methods
-//
-// Revision 1.7 2004/08/09 20:55:59 pbartok
-// - Removed Run method, was only required for initial development
-//
-// Revision 1.6 2004/08/09 20:51:25 pbartok
-// - Implemented GrabWindow/ReleaseWindow methods to allow pointer capture
-//
-// Revision 1.5 2004/08/09 16:05:16 jackson
-// These properties are handled by the theme now.
-//
-// Revision 1.4 2004/08/06 15:53:39 jordi
-// X11 keyboard navigation
-//
-// Revision 1.3 2004/08/04 20:11:24 pbartok
-// - Added Invalidate handling
-//
-// Revision 1.2 2004/07/21 16:19:17 jordi
-// LinkLabel control implementation
-//
-// Revision 1.1 2004/07/09 05:21:25 pbartok
-// - Initial check-in
-//
-//
+
// NOT COMPLETE