New test.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2
3         * PageSetupDialog.cs: Validate the margins and set them in
4         PageSettings. 
5         * NumericTextBox.cs: New class to mimic the behavior of the
6         textboxes used in the printing dialogs.
7
8 2006-11-29  Andreia Gaita  <avidigal@novell.com>
9         
10         * Form.cs: Revert previous change (remove call UpdateBounds
11         from form constructor), because it messes with the handle creation
12         order, and that one needs lots and lots of love.
13         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
14         for valid printer and throw InvalidPrinterException if document
15         is set but printer not valid), adding a MonoTODO. Once 
16         handle creation is done properly, we can put this back in.
17
18 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
19
20         * MenuItem.cs: Create a invalidate method for menu item, to be
21         calling from set text, it make text changes to imadiate update
22         on screen. Fixes #80013. 
23         
24 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
25
26         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
27         fixes bug #80070 and some other problem on toolbar buttons
28         layout.
29
30 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
31
32         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
33         with dotted brush.      Fixes #79564
34         
35 2006-11-28  Andreia Gaita  <avidigal@novell.com>
36
37         * Form.cs: Removed call to UpdateBounds on Form
38         constructor, it was causing a call to CreateHandle
39         before it was supposed to.
40         * PrintControllerWithStatusDialog: Applied patch
41         by Chris Toshok to hide controller when there are
42         no printers available.
43         PrintDialog.cs: initialize printer settings to 
44         null - correct DefaultValues test #5
45         * PrintPreviewControl.cs: Move PrintController
46         initialization to GeneratePreview
47         * PrintPreviewDialog.cs: 
48         - Remove Preview generation     from Document_set(). It is 
49         called on OnPaint
50         - Throw InvalidPrinterException on CreateHandle if
51         a Document is set but there are no printers or 
52         printer is not valid.
53         * ThemeWin32Classic: don't paint PrintPreviewControl
54         if there is nothing to paint    
55
56 2006-11-28  Miguel de Icaza  <miguel@novell.com>
57
58         * Form.cs: Add another popular method.
59
60         * TabPage.cs: ditto.
61
62 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
63
64         * MenuItem.cs: Fixed a warning.
65         * InternalWindowManager: Fixed a warning.
66
67 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
68
69         * MenuItem.cs:
70         - When cloning a menu also clone MdiList and clone the 
71           window menu items properly (as the forms and menuitems
72           are kept in an internal hashtable, these need updating 
73           as well)
74         - Rewrote the window menu code, menu items are added in the
75           order the forms were added to their parent, and they are
76           updated every time the window menu is shown (before the
77           list was only generated once, in the current order of the
78           forms, and would never be updated). A checkmark is shown
79           next to the item corresponding to the active mdi child.
80
81 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
82
83         * XplatUIStructs.cs: 
84         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
85         
86         * XplatUIWin32.cs: 
87         - Added TME_NONCLIENT to TMEFlags.
88         - Handles WM_NCMOUSEMOVE in GetMessage to 
89           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
90
91         * MdiWindowManager:
92         - Now merges mdi child menu to parent menu when maximized.
93         - Recalculate NC areas of both mdi child and mdi parent. 
94           Fixes #79757 (4).
95           on window state and size changes.Fixes #79844 (3).
96         - Handle WM_NCCALCSIZE to properly calculate borders.
97
98         * Form.cs:
99         - Add/remove to the mdi containers list of mdi children 
100           in the order they are added.
101         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
102           to the maximized mdi child.
103         
104         * InternalWindowManager.cs:
105         - Only execute a click on the control buttons on the mouse up,
106           not on the mouse down. Show the state of the button 
107           (was only showing Normal state, never Pressed state). The
108           pressed button now follows the mouse (if you click the Close 
109           button and move the mouse over the Maximize button, the 
110           Maximize button will be shown as pressed). Since Win32 does
111           not generate WM_NCLBUTTONUP if you release the button outside
112           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
113           it as a mouse up.
114         
115         * ThemeWin32Classic.cs:
116         - Draw a missing border around mdi child forms. Fixes #79844 (2).
117
118         * MdiClient.cs:
119         - Added a list of forms which contains the order the forms are
120           added to the mdi parent.
121         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
122         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
123         - If the active form changes set the scrollbars to the top
124           of the Z order, otherwise the form could hide them.
125         - Scrollbars are now sized according to ClientSize, not 
126           to Size, and they take into account the other scrollbar
127           to determine maximum.
128         
129 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
130         
131         * XplatUI.cs:
132         * XplatUIDriver.cs:
133         * XplatUIX11.cs:
134         * XplatUIWin32.cs:
135         * XplatUIOSX.cs:
136         - Added RequestAdditionalWM_NCMessages for windows to 
137           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
138           Currently only implemented in XplatUIWin32.
139
140 2006-11-27  Chris Toshok  <toshok@ximian.com>
141
142         * Hwnd.cs: only add the hwnd to the windows hash in
143         set_WholeWindow and set_ClientWindow if whole_window/client_window
144         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
145
146 2006-11-27  Mike Kestner  <mkestner@novell.com>
147
148         * ComboBox.cs: remove redundant OnDropDown call.  It is called
149         from the ComboListBox.ShowWindow code. Fixes #79969.
150
151 2006-11-27  Chris Toshok  <toshok@ximian.com>
152
153         * Hwnd.cs: remove the setters for ExposePending and
154         NCExposePending - noone uses them.
155
156 2006-11-27  Jackson Harper  <jackson@ximian.com>
157
158         * TextBoxBase.cs: Set the selection to the caret after the caret
159         is moved, otherwise they get out of sync.
160
161 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
162
163         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
164         it fixes #80015
165
166 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
167
168         * ThemeWin32Classic.cs: 
169         - Fix toolbar drop down arrow position.
170         - Fix drop down appearance when ToolBar.Appearance is normal,
171         it fixes #80018.
172         
173 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
174
175         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
176         * Control.cs: Same.
177         * UpDownBase.cs: Same.
178         * ButtonBase.cs: Same.
179         * ScrollBar.cs: Same.
180         * TrackBar.cs: Same.
181         * PictureBox.cs: Same.
182         * UserControl.cs: Same.
183         * Label.cs: Same.
184         * ListControl.cs: Same.
185         * TextBoxBase.cs: Same.
186         * ListView.cs: Same.
187         * RichTextBox.cs: Same.
188         * TreeView.cs: Same.
189
190 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
191
192         * PrintDialog.cs:
193         - Text label for where 
194         - Text label comment was not shown
195
196 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
197
198         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
199
200 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
201
202         * InternalWindowManager.cs: 
203         - Handle WM_PARENTNOTIFY to activate the form
204         if any child control is clicked.
205         - The form is only sizable if not minimized.
206
207         * MdiWindowManager.cs:
208         - Save the IconicBounds if the form is moved.
209         - Rework SetWindowState, now the window bounds 
210         are stored only if the old window state is Normal.
211         
212         * MdiClient.cs:
213         - In SetWindowStates store the old window state if 
214         the window is maximized and restore window state if
215         the window looses focus.
216         - Don't handle any scrollbar value changes if 
217         initializing the scroll bars. Fixes #79771.
218         - Reworked ArrangeIconicWindows. Current algorithm
219         tests bounds agains all other minimized windows, if
220         any intersections create new bounds (going left to 
221         right, bottom to top) and then test again. When 
222         successful the bounds are saved and never computed
223         again. Fixes #79774.
224
225 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
226
227         * InternalWindowManager.cs: Added HandleTitleBarUp.
228
229 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
230
231         * NumericUpDown.cs: In .NET 1.1, user entered text is still
232         hexadecimal in ParseUserEdit.
233
234         
235 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
236
237         * MdiWindowManager.cs: 
238         - Handle a click on the form's icon to show the 
239         system menu (when maximized). Fixes #79775.
240         - Change the existing click handler for the form's
241         icon when not maximized to show on MouseUp.
242         Fixes #79776.
243
244         * Form.cs: In OnResize only layout the mdi child's
245         parent if it actually has a parent. Might not if
246         the window is closing.
247
248
249 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
250
251         * MdiClient.cs: Ignore active MDI client for text of parent, if
252         child has no text set.
253
254 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
255
256         * ToolBar.cs: Fixed ToString to match MS.
257
258 2006-11-22  Andreia Gaita  <avidigal@novell.com>
259
260         * NumericUpDown: 
261         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
262         update inner values on set. Fixes #79966.
263         - Override OnLostFocus to update value on NET 2. Fixes #79950.
264         - Fix hexadecimal parsing.
265         
266         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
267         parent. Fixes #79957
268
269 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
270
271         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
272         the actual size has to be queried, since if height /
273         width is negative Win32 changes it to 0. 
274         Fixes #79999 on Windows.
275         
276         * XplatUIX11.cs: Set height / width to 0 if negative
277         in SetWindowPos. Fixes #79999 on Linux.
278         
279 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
280
281         * ThemeWin32Classic.cs: Fix text redenring when button is
282         pressed.
283
284 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
285
286         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
287         and later navigate by mouse. Fixes #79528.
288
289 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
290
291         * ToolBar.cs: Set default value for TabStop to false in
292         constructor, it fixes remaining behavior of bug #79863.
293
294 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
295
296         * MdiWindowManager.cs:
297         * InternalWindowManager.cs:
298         - Moved a few methods specific to Mdi from 
299         InternalWindowManager to MdiWindowManager.
300         Fixes #79996.
301         
302 2006-11-21  Chris Toshok  <toshok@ximian.com>
303
304         * XplatUIOSX.cs: stub out InvalidateNC.
305
306         * XplatUIWin32.cs: implement InvalidateNC using the call I found
307         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
308
309         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
310
311         * XplatUIDriver.cs: add InvalidateNC abstract method.
312
313         * XplatUI.cs: add InvalidateNC.
314
315 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
316
317         * ToolBar.cs: Invalidate complete button area when pressed status 
318         was changed.
319         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
320         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
321         by 1 when button is pressed.
322
323 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
324
325         * ToolButton.cs: Invalidate middle of DropDown button when
326         ToolBar theres DropDownArrows.
327         * ThemeWin32Classic.cs: Change position of DropDown arrow and
328         fix DropDown drawing operations.
329
330 2006-11-20  Chris Toshok  <toshok@ximian.com>
331
332         * NativeWindow.cs: fix the formatting of functions ('{' on the
333         following line), and enable the thread exception dialog.
334
335         * Application.cs: remove the duplicate exception catching from
336         here.
337
338 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
339
340         * Toolbar.cs: Triggers button click event when click on icon
341         of dropdown ToolBarButton. Fixes #79912.
342         
343 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
344
345         * Theme.cs:
346         * ThemeWin32Classic.cs:
347         - Added a property WindowBorderFont to enable themeing
348           of mdi child windows' Text.
349           
350 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
351
352         * InternalWindowManager.cs:
353         * Form.cs:
354         * MdiClient.cs:
355         * MdiWindowManager.cs: 
356         - If mdi child is maximized, set mdi parent's
357           text to "Parent - [Child]". Fixes #79770.
358         - If there is any maximized mdi child windows, only the active 
359           window (and any new windows) is maximized, the rest are normal.
360         - On a WindowState change only save mdi child's window bounds 
361           if the old window state was normal. Fixes #79774.
362         - The scroll bars are now calculated on hopefully all
363           necessary events. Fixed #79771 / #79844->6 / #79906.
364         - MdiClient.SizeScrollBars() now takes into account docked 
365           controls in the parent when calculating available space.
366         - InternalWindowManager now always repaints the entire title
367           area. Fixes #79844->1/4/5.
368         - Added RequestNCRecalc on mdi child windowstate changes.
369           Fixes #79772.
370
371 2006-11-20  Mike Kestner  <mkestner@novell.com>
372
373         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
374         in the MouseUp handler of the listbox and move the return handling
375         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
376
377 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
378
379         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
380
381 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
382
383         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
384           working in 1.2.x anymore. So, updated.
385
386 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
387
388         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
389         NumberGroupSeparator of current culture instead of assuming en-US.
390         Fixed bug #79967.
391
392 2006-11-17  Mike Kestner  <mkestner@novell.com>
393
394         * Control.cs: Add the concept of implicit bounds setting so that
395         dock/undock round trips preserve explicitly set size/locations.
396         Fixes #79313.
397
398 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
399
400         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
401           can't handle those filters. (Fixes bug #79961)
402
403 2006-11-17  Chris Toshok  <toshok@ximian.com>
404
405         [ fixes the exit/crashes associated with #79835.  it's clearly
406         suboptimal though, we need to figure out a better way to solve
407         this. ]
408         
409         * PrintPreviewControl.cs: deal with the new invalid printer
410         exceptions.
411
412         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
413         and return false (so CommonDialog.ShowDialog doesn't actually show
414         the form.)
415
416         * PrintDialog.cs: enable/disable the Ok button depending on
417         whether or not the printer is valid.
418
419         * CommonDialog.cs (ShowDialog): only actually show the form if
420         RunDialog returns true.
421
422 2006-11-17  Jackson Harper  <jackson@ximian.com>
423
424         * TextControl.cs: When soft splitting a line, mark it as a soft
425         split line. Also carry over the current line break to the next
426         line.
427
428 2006-11-17  Chris Toshok  <toshok@ximian.com>
429
430         * XplatUIX11.cs: when scrolling a window with an invalid area, we
431         only want to shift the part of the invalid area that overlaps the
432         area we're scrolling.  we also don't want to clear the invalid
433         area unless the invalid area was entirely contained within the
434         scrolling area.
435
436 2006-11-16  Chris Toshok  <toshok@ximian.com>
437
438         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
439         also make sure to free the memory returned by XGetWindowProperty
440         in GetText().
441
442         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
443
444 2006-11-16  Chris Toshok  <toshok@ximian.com>
445
446         * XplatUI.cs: add a new super secret way to get at the totally
447         unsupported X11 backend.
448
449 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
450
451         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
452
453 2006-11-16  Jackson Harper  <jackson@ximian.com>
454
455         * TreeView.cs: Allow more explicit setting of top node position
456         for scrollbars. Slower algo, but more accurate.
457         - CollapseAll should maintain the current top node.
458         * TextBoxBase.cs: When positioning the caret, use the line, pos
459         method, since the x, y method does not grab the correct tag, and
460         the caret height never gets set correctly. (Maybe I should just do
461         away with the caret having its own height, and always use the
462         carets current tag for height).
463
464 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
465
466         [Fixes 79778, 79923]
467
468         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
469         Parent to the FosterParent instead.
470
471 2006-11-16  Jackson Harper  <jackson@ximian.com>
472
473         * TreeView.cs: Need to recalc the topnode when we expand or
474         collapse. The scrolling methods can't handle this on their own,
475         since they use differences between the last scroll position, and
476         those difference get completely messed up since we are expanding
477         nodes.  This problem should probably be fixed in the scrolling
478         methods, so they can figure out exactly where they are, but this
479         will slow things down a little.
480         * ThemeWin32Classic.cs: Special case for groupboxes with empty
481         strings, makes nunit-gui look a lot nicer.
482
483 2006-11-16  Chris Toshok  <toshok@ximian.com>
484
485         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
486         the broken multithreaded event handling we have in here.  File
487         this entry under "Why we should move to the new X11 backend".
488
489         Any thread can make it into UpdateMessageQueue, which gets events
490         from the X socket - some of which could belong to hwnds being
491         managed by a different thread.  We can also have multiple threads
492         in UpdateMessageQueue at the same time, with each one reading from
493         the X socket.  This leads to many problems, with the following
494         solutions:
495
496         We can't use hwnd.Queue.Enqueue anywhere in here and must use
497         EnqueueLocked.
498
499         The MotionNotify compression we do can't work across threads
500         (without locking the entire queue, perhaps) since we call
501         hwnd.Queue.Peek, so we just punt and don't compress motion events
502         unless the owning thread is the one which got the X event.
503
504         ConfigureNotify is another fun one, since it modifies the hwnd's
505         bounds and then enqueues the event.  We add a lock to Hwnd which
506         is held when setting configure_pending to true (and enqueuing the
507         event).
508
509         There is a race wrt the wake socket.  we need to make sure that
510         only 1 thread is waiting on that socket, or else a thread could
511         sleep waiting for data that never comes.  It's difficult (but not
512         impossible) to make happen, because it seems to require something
513         like the following:
514
515             1. Thread 1 polls on wake_receive
516         
517             2. poll returns saying there's data to be read on
518                wake_receive.
519         
520             3. Thread 2 polls on wake_receive and immediately returns
521                saying there's data to be read.
522
523             4. Thread 2 reads the wakeup byte from wake_receive
524
525             5. Thread 1 attempts to read the wakeup byte from
526                wake_receive.
527
528             6. Thread 2 exits (due to a form closing, perhaps).
529
530             7. Thread 1 blocks forever.
531         
532         Fun, eh?
533
534         Fixing the Expose handling isn't done yet, and the races inherent
535         in that piece of code are responsible for the drawing mistakes you
536         see when generating expose events in a MT app (like NPlot).  This
537         one is the likely to be the hardest to bandaid, and it doesn't
538         appear to cause anything but drawing problems.  The other issues
539         caused apps to exit or hang.
540
541         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
542         called from a different thread than the one that should be calling
543         these functions.
544
545         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
546
547 2006-11-15  Chris Toshok  <toshok@ximian.com>
548
549         * Application.cs: null out the context's MainForm when we exit
550         RunLoop.  Fixes a newly checked in unit test as well as the last
551         ODE from bug #79933.
552
553 2006-11-15  Chris Toshok  <toshok@ximian.com>
554
555         * Form.cs (set_Owner): allow a null value so we can clear the
556         form's owner.
557         (Dispose): set all our owned_form's Owner properties to null, and
558         clear the owned_forms collection.
559         (WM_CLOSE): clean up this a little bit.. still not right though.
560
561         * ApplicationContext.cs: OnMainFormClosed should only call
562         ExitThreadCore if the main form isn't recreating.  Fixes unit
563         test.
564
565 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
566
567         [Fixes 78346]
568
569         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
570
571 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
572
573         [Fixes 79433]
574
575         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
576         keep popup window types from stealing focus from the main form
577         on Windows.
578
579         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
580
581         * MenuAPI.cs: Set above flag to true.
582
583 2006-11-15  Chris Toshok  <toshok@ximian.com>
584
585         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
586         the button being released is not in wParam.
587
588 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
589
590         * Form.cs: Add the released button to MouseEventArgs.Button
591         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
592         on Win32.
593
594 2006-11-15  Chris Toshok  <toshok@ximian.com>
595
596         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
597         GetText().  untested because it's unused in our implementation.
598         Control.Text always caches the text, even if
599         ControlStyles.CacheText is not set.
600
601         fixes bug #79939.
602
603 2006-11-15  Chris Toshok  <toshok@ximian.com>
604
605         [ fixes #79933 ]
606         
607         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
608         message.  no hiding, no disposing.
609
610         in the WM_CLOSE handler, hide the form if it's modal.
611
612 2006-11-15  Chris Toshok  <toshok@ximian.com>
613
614         * XplatUIX11.cs: use AddExpose instead of sending a message.
615         fixes textbox border drawing.
616
617 2006-11-15  Chris Toshok  <toshok@ximian.com>
618
619         * PropertyGridView.cs: keep from crashing on mouse move/down when
620         the property grid is empty.
621
622 2006-11-14  Jackson Harper  <jackson@ximian.com>
623
624         * TextControl.cs: Make PageUp and PageDown more like the MS
625         versions.
626         * TextBoxBase.cs: When we set the text property position the
627         cursor at the beginning of the document.
628
629 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
630
631         * Form.cs: if a mdi child's WindowState has changed
632         before it's creation, it would display wrong control
633         buttons.
634         
635 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
636
637         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
638           (Fixes bug #79927)
639
640 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
641
642         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
643         the window gets to paint its borders even if the window is
644         getting smaller.
645         
646         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
647         otherwise the old control buttons would still be painted 
648         if the window gets bigger.
649         
650         * PaintEventArgs.cs: add an internal method so that the clip 
651         rectangle can be changed.
652         
653 2006-11-13  Chris Toshok  <toshok@ximian.com>
654
655         [ fixes bug #79745 ]
656         
657         * NotifyIcon.cs: lots of cleanup.
658
659         * X11Structs.cs: add an enum for XEMBED messages.
660
661         * XplatUIX11.cs: reindent one of the giant switch statements, it
662         was taking up an additional tab stop, and this file is already way
663         too wide for my laptop's screen.
664
665         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
666         we get it, resize the hwnd to the WMNormalHints max_width/height.
667
668 2006-11-13  Jackson Harper  <jackson@ximian.com>
669
670         * TextBoxBase.cs: Compute the value changes for the mouse wheel
671         teh simple way.
672
673 2006-11-13  Chris Toshok  <toshok@ximian.com>
674
675         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
676         #79898.  force a reference to the Region to stick around so the
677         unmanaged object isn't collected (rendering our handle in the MSG
678         stale).
679
680 2006-11-13  Chris Toshok  <toshok@ximian.com>
681
682         * XplatUIX11.cs: fix #79917 for window managers which support
683
684         using XStoreName on the raw utf8, and we need to convert to
685         COMPOUND_TEXT if it's non-latin1.
686
687 2006-11-13  Chris Toshok  <toshok@ximian.com>
688
689         * Form.cs (set_DialogResult): we need to set closing to false if
690         we're setting our result to None.  fixes bug #79908.
691
692 2006-11-13  Jackson Harper  <jackson@ximian.com>
693
694         * TextControl.cs: When formatting text, compute the adjusted tag
695         lengths correctly, using FindTag for the end tag instead of trying
696         to figure it out outselves.
697         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
698         the item, ItemHeight doesn't work, because trees with large
699         imagelists use those for their height
700         * TreeView.cs: ActualItemHeight factors in the image height
701         - compute left edge of checkboxes correctly
702         - when expanding/collapsing move the bottom down one pixel, so we
703         aren't moving part of the node
704
705 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
706
707         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
708         stack in PaintEventStart so that it won't get disposed by the gc
709         before reaching PaintEventEnd.
710
711 2006-11-13  Jackson Harper  <jackson@ximian.com>
712
713         * TextBoxBase.cs: Don't select the word if we are on a line with
714         no text.
715         - We don't need to position the caret on mouse up, since the mouse
716         move handler should be doing this
717         - When double clicking a blank line, the caret is advanced to the
718         next line.
719
720 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
721
722         * TreeNodeCollection.cs: Avoid duplicating indexer code.
723
724 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
725
726         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
727         Fixes part of bug #79910.
728
729 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
730
731         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
732           (bug #79903). Some minor string updates to match ms.
733
734 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
735
736         * FileDialog.cs: Don't add an extension if the filename
737           already ends with that extension.
738
739 2006-11-10  Jackson Harper  <jackson@ximian.com>
740
741         * TreeView.cs: Use the currently highlighted node for the
742         BeforeSelect event.
743         * TextBoxBase.cs: There is no need to expand selection on
744         MouseMove.
745         - CanUndo means 'is there any undo operations', not 'is undo
746         allowed on this textcontrol. Fixed ClearUndo unit test.
747
748 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
749
750         * Button.cs: only perform click when button is Selectable (so as 
751         not to activate default buttons when they're disabled)
752         
753         * Control.cs: Rewrite of the SelectNextControl and related 
754         methods. HandleClick now selects next control if the current one
755         is being disabled.
756         
757         * Form.cs: OnActivated selects next active control only if Load 
758         has already occurred. If Load hasn't run, there's no point in 
759         selecting here, Load might change the state of controls.
760         
761         * FocusTest.cs: Tests marked as working again for these fixes
762
763 2006-11-10  Chris Toshok  <toshok@ximian.com>
764
765         * XplatUIX11.cs: a couple of fixes.
766
767         - use XInternAtoms with almost all the atoms we need to register,
768         instead of many, many calls to XInternAtom.  should help a bit on
769         startup time, at the expense of making the code look a little
770         worse.
771
772         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
773         isn't reparented (which seems to be a clue that we're running fon
774         compiz) and they have an Owner form.  This fixes the tool windows
775         in paint.net when running under compiz.
776
777         - when setting the opacity of a window, support both the case
778         where the window has been reparented and also when it hasn't been.
779         Since compiz/beryl doesn't seem to reparent windows, and these are
780         the only window managers which support translucency, I'm not sure
781         why we need the hwnd.reparented case at all.. but leave it in.
782         now we get translucent windows in paint.net under compiz/beryl.
783
784 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
785
786         * FileDialog.cs: Always return the value for FilterIndex that
787           was set. Internally convert it to values that make sense.
788
789 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
790         
791         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
792
793 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
794
795         * Toolbar.cs: Change default value of DropDownArrows to true, the 
796         signature still using false to make it compatible with MS but the 
797         initial value is true. Fixes #79855.
798
799 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
800
801         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
802           only available on Linux.
803
804 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
805
806         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
807         reduce number of calls to redraw method during toolbar creation.
808
809 2006-11-09  Mike Kestner  <mkestner@novell.com>
810
811         * ListView.cs : raise SelectedIndexChanged when an item is selected
812         programmatically via the Item.Selected property.  Gert's nice 
813         ListViewSelectedIndexChanged test fixture now runs clean.
814
815 2006-11-09  Mike Kestner  <mkestner@novell.com>
816
817         * ListView.cs : raise SelectedIndexChanged when a selected item is
818         removed from the item collection using Remove or RemoveAt.
819
820 2006-11-09  Mike Kestner  <mkestner@novell.com>
821
822         * ListView.cs : raise SelectedIndexChanged once per selected item
823         for compat with MS.  Fixes #79849+.
824
825 2006-11-09  Chris Toshok  <toshok@ximian.com>
826
827         * TabControl.cs: initialize row_count to 0, and set it to 1 when
828         we need to (if we have any tab pages).  Fixes unit test.
829
830 2006-11-09  Chris Toshok  <toshok@ximian.com>
831
832         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
833         width is 0, not 3.  Fixes a unit test.
834
835 2006-11-09  Mike Kestner  <mkestner@novell.com>
836
837         * ListView.cs : use Implicit scrollbars so that focus isn't 
838         stolen from the listview when they are clicked. Fixes #79850.
839
840 2006-11-09  Chris Toshok  <toshok@ximian.com>
841
842         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
843         have a root item.  Fixes #79879.
844
845 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
846
847         * FileDialog.cs:
848           - Fix ToString ()
849           - An ArgumentException is now thrown if a wrong filter
850             is applied (matches ms). The previous filter doesn't change
851             anymore if an exception is thrown.
852           - Changing the FileName property also affects FileNames
853         * ColorDialog.cs: The length of the CustomColors array is always
854           16. It doesn't matter if we use a smaller array or null to update
855           or change the custom colors property.
856         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
857           for RootFolder if we get a undefined value.
858
859 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
860
861         * StatusBarPanel.cs: 
862         - Width is set to MinWidth if Width is smaller than
863         MinWidth. Fixes #79842.
864         - MinWidth now always overrides Width (MSDN says MinWidth
865         is set to Width when AutoSize = None, but they do not 
866         behave like that).
867         - Style has now the the correct default value.
868         
869 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
870  
871         * TrackBar.cs: 
872         - The control is completely invalidated on 
873         Got/LostFocus to draw the focus rectangle correctly.
874         - When AutoSize then height is always 45 (width for 
875         vertical controls).
876         
877         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
878         on the mouse when moved and it doesn't move when grabbed
879         until the mouse moves as well. Also fixed some wrong 
880         calculations when clicking on the thumb (control thought
881         click was outside of thumb and didn't grab it).
882         Fixes some of the issues in #79718.
883
884 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
885
886         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
887
888 2006-11-08  Chris Toshok  <toshok@ximian.com>
889
890         * PropertyGridView.cs: only call ToggleValue if the item is not
891         readonly.
892
893 2006-11-08  Jackson Harper  <jackson@ximian.com>
894
895         * TextBoxBase.cs: The RichTextBox and textbox have very different
896         word selection methods.  Implement the textbox's simple word
897         selection here, and let the RichTextBox override and provide it's
898         own.
899         - Don't do extra selection on mouseup
900         * RichTextBox.cs: Use the documents word selection algorithm, I
901         think ideally, this function will be pulled into the
902         RichTextBox.cs code someday.
903
904 2006-11-08  Chris Toshok  <toshok@ximian.com>
905
906         * RootGridEntry.cs: new class to represent GridItemType.Root.
907
908         * CategoryGridEntry.cs: reformat, and add boilerplate.
909         
910         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
911         returns the UI parent anyway, and we need special handling to
912         implement the GetTarget method in the face of it.  Also, implement
913         Select().
914
915         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
916         a root grid item, and use that instead of PropertyGrid.grid_items.
917         Also, make use of TypeConverters (and add limitted support for
918         ICustomTypeDescriptors) when initially populating the grid.
919         Arrays now show up more or less properly.
920
921 2006-11-08  Chris Toshok  <toshok@ximian.com>
922
923         * Application.cs: set the modal dialog to non modal after we close
924         it.  Fixes bug #79866.
925
926 2006-11-08  Jackson Harper  <jackson@ximian.com>
927
928         * TextControl.cs: When combining lines carry over the line end
929         style from the end line.
930         - Invalidate the selected area when setting it, if it is visible.
931         * TextBoxBase.cs: Only rich text box can do full line selects.
932         - Make sure to set the cursor position when there is a click,
933         otherwise two clicks in separate areas could cause a large chunk
934         to be selected.
935
936 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
937
938         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
939         Fixes #79863.
940
941 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
942
943         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
944         time. Remove tooltips when ToolButton click events.  Fixes #79856.
945
946 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
947
948         * MenuAPI.cs: Ignore right click for menu actions and fixes
949         menu border when clicked.  Fixes #79846.
950
951 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
952
953         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
954         MouseState after create wParam for message, this fixes mouse button 
955         equal none in mouse up events.
956         
957 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
958
959         * Control.cs : Focus() now calls Select to set the Container's
960         Active Control and to give it focus. To avoid infinite recursion
961         (because ActiveControl also calls Focus at one point), a check 
962         is made in Focus with the help of a new internal variable
963         is_focusing.
964
965 2006-11-07  Mike Kestner  <mkestner@novell.com>
966
967         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
968         if there's a selection.  Fixes #79849.
969
970 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
971
972         * PropertyGrid.cs: Avoid fixed height of help description label.
973         Fixes part of bug #79829.
974
975 2006-11-07  Chris Toshok  <toshok@ximian.com>
976
977         * XplatUIX11.cs: fix #79790 again, by using the
978         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
979
980 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
981
982         * ToolBar.cs: Fix left click checking.
983
984 2006-11-07  Chris Toshok  <toshok@ximian.com>
985
986         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
987
988 2006-11-07  Chris Toshok  <toshok@ximian.com>
989
990         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
991         PropertyManager unit tests.
992
993         * PropertyManager.cs: make property_name internal.
994
995 2006-11-07  Chris Toshok  <toshok@ximian.com>
996
997         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
998         pass a unit test.  Also, don't set image_index to anything in
999         response to setting the ImageList property.
1000
1001 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
1002
1003         * ToolBar.cs: Ignore click events when mouse button is not a
1004         left button, only accepts other button for dropdown menus.  
1005         Fixes #79854.
1006
1007 2006-11-07  Chris Toshok  <toshok@ximian.com>
1008
1009         * DataGrid.cs: make the back and parent row buttons a little less
1010         ugly.
1011
1012 2006-11-07  Jackson Harper  <jackson@ximian.com>
1013
1014         * TextBoxBase.cs: When converting to Text don't put line breaks in
1015         for soft line breaks.
1016         * TextControl.cs: There is an initial "fake" line in the document,
1017         this is now a soft break line, so that an extra line feed doesn't
1018         get added to the end of documents.
1019
1020 2006-11-07  Chris Toshok  <toshok@ximian.com>
1021
1022         [ fix bug #79778 ]
1023         
1024         * CurrencyManager.cs: if the list is readonly, don't bother
1025         checking if IBindingList.AllowNew is true.
1026
1027         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
1028         for non-DataRowView datasources..  or rather, make it not crash.
1029         (DataGridPaintRelationRow): make sure we limit the row painting to
1030         the area not covered by the row header, and make our cell width at
1031         least large enough to cover the relation area.  This allows grids
1032         that have relations but no rows to render correctly.
1033         (DataGridPaintRowContents): same type of changes here.
1034         (SetDataSource): move back to always calling
1035         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
1036         navigating back through relations.
1037         (HitTest): handle the case where we have no cells but have
1038         relations.  Right now we generate a hit in cell 0 of whatever the
1039         row is, not sure if this is strictly correct, but it works for our
1040         purposes.
1041         
1042         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
1043         bother doing anything.
1044
1045 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
1046
1047         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
1048         early version of StatusStrip.  Not responsible for eaten
1049         application or firstborn children.
1050
1051 2006-11-06  Chris Toshok  <toshok@ximian.com>
1052
1053         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
1054         call GetTabRect with a -1 index.  Fixes #79847.
1055
1056 2006-11-06  Jackson Harper  <jackson@ximian.com>
1057
1058         * TreeNodeCollection.cs: Update scrollbars after clearing.
1059
1060 2006-11-06  Chris Toshok  <toshok@ximian.com>
1061
1062         * NumericUpDown.cs: fix the ToString method for some unit test
1063         love.
1064
1065 2006-11-06  Chris Toshok  <toshok@ximian.com>
1066
1067         * PropertyGrid.cs:
1068         - set the initial SelectedGridItem if we can.
1069
1070         - Exclude non-mergable properties only if we're merging > 1
1071         object.  Merging 1 object isn't really merging, obviously.
1072
1073         - Handle PropertySort.NoSort just like Alphabetical, which is
1074         wrong of course, but at least gets things on the screen.
1075         
1076         * PropertyGridView.cs:
1077         - Add method "FindFirstItem" which finds the first property grid
1078         item, so we can select it by default.
1079
1080         - make use of GridEntry.CanResetValue.
1081
1082         - Don't call RedrawBelowItemOnExpansion here anymore, the
1083         individual GridEntry's will do that.
1084
1085         - Remove the ITypeDescriptorContextImpl internal class.
1086         
1087         * GridEntry.cs:
1088         - this class needs to implement ITypeDescriptorContext, as it's
1089         what MS's PropertyDescriptorGridEntry does, which means we can
1090         remove the ITypeDescriptorContextImpl internal class from
1091         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
1092
1093         - keep a reference to our PropertyGridView, and move the call to
1094         RedrawBelowItemOnExpansion here from PGV.  This means
1095         programmaticly setting Expanded actually does something visible.
1096
1097         - add a CanResetValue() function which takes into account our
1098         possibly multiple "selected_objects" in the merged case.  Shifting
1099         PropertyGridView to use this method fixes another unreported
1100         crasher found running the test for #79829.
1101
1102         - when Top or Bounds is updated, make sure the PropertyGridTextBox
1103         is updated to reflect this.
1104
1105         * CategoryGridEntry.cs: the ctor takes the PGV now.
1106         
1107 2006-11-06  Jackson Harper  <jackson@ximian.com>
1108
1109         * TextControl.cs: These are 1 based.
1110         * TextBoxBase.cs: When setting the selected text, don't change the
1111         selected text tags, this is done by ReplaceText, just position the
1112         cursor at the end of the new text.
1113
1114 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
1115
1116         * ListView.cs: Allow label edit only when, when LabelEdit is
1117           set to true.
1118
1119 2006-11-06  Jackson Harper  <jackson@ximian.com>
1120
1121         * TextControl.cs: If a suitable wrapping position isn't found,
1122         just wrap right in the middle of a word.
1123
1124 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
1125
1126         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
1127           bug #79820.
1128
1129 2006-11-06  Jackson Harper  <jackson@ximian.com>
1130
1131         * TreeView.cs: Can't use the VisibleCount property when setting
1132         scrollbar heights, because this doesn't take into account whether
1133         or not the horz scrollbar just came visible.
1134
1135 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
1136
1137         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
1138         activated.  Fixes #79369, #79832.
1139
1140 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
1141
1142         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
1143           had to remove support for links that point to a directory. FileInfo
1144           returns no usefull information (means, the directory they point to)
1145           for such links. Replaced some empty string ("") with String.Empty.
1146
1147 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
1148
1149         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
1150         NullReferenceException when attempting to remove node that is not in
1151         collection. Throw NullReferenceException when null is passed to 
1152         Remove. Allow first element of the collection to be removed. Fixes
1153         bug #79831.  In GetEnumerator ().Current return null if positioned 
1154         before the first element of the collection. In GetEnumerator ().Reset,
1155         position before first element of the collection.
1156
1157 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
1158
1159         * PropertyGrid.cs: To match MS, remove default title and description
1160         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
1161         buttons.
1162
1163 2006-11-04  Chris Toshok  <toshok@ximian.com>
1164
1165         * Theme.cs: add a Clamp method, just for kicks.
1166
1167         * ThemeWin32Classic.cs: clamp all color components to [0..255].
1168
1169 2006-11-04  Chris Toshok  <toshok@ximian.com>
1170
1171         * Form.cs: if the form isn't visible, Close() does nothing.
1172
1173 2006-11-03  Chris Toshok  <toshok@ximian.com>
1174
1175         * Form.cs (Close): if the form is modal, don't Dispose of it, only
1176         Hide it.
1177         (WndProc): don't Dispose after handling the WM_CLOSE message.
1178
1179         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
1180         them as such, instead of using casts from Control to Form.  Also,
1181         don't Dispose of the modal dialog when we fall out of the loop -
1182         Close() it instead.
1183
1184         fixes bug #79813.
1185
1186 2006-11-03  Chris Toshok  <toshok@ximian.com>
1187
1188         * Control.cs (Dispose): only go through the dispose thing if we're
1189         @disposing, and we haven't already been disposed.  Fixes bug
1190         #79814.
1191
1192         * Form.cs: no reason to call "base.Dispose()" here instead of
1193         "Dispose()".
1194
1195 2006-11-03  Mike Kestner  <mkestner@novell.com>
1196
1197         * ComboBox.cs : use ToString instead of casts in AddItem for
1198         sorting functionality.  Fixes #79812.
1199
1200 2006-11-03  Chris Toshok  <toshok@ximian.com>
1201
1202         * Application.cs: pave the way for actually using the thread
1203         exception dialog.  it's ifdefed out at the moment.
1204
1205 2006-11-03  Chris Toshok  <toshok@ximian.com>
1206
1207         * ThreadExceptionDialog.cs: until we get a better layout, actually
1208         hide the details textbox and label when we shouldn't see them.
1209
1210 2006-11-03  Jackson Harper  <jackson@ximian.com>
1211
1212         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
1213         multiline textboxes anymore.  This method also determines the
1214         width/height of a textboxes canvas area.
1215         - Sorta a revert of the last patch.  For multiline just position
1216         the controls, then bail.  This way the scrollbar width won't be
1217         altered.
1218
1219 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
1220
1221         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
1222         it dont need.  Fixes #79537.
1223
1224 2006-11-02  Jackson Harper  <jackson@ximian.com>
1225
1226         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
1227         send the status after firing the DndOver event.
1228
1229 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1230
1231         * TrackBar.cs: Now orientation only switches height / width if
1232         the control's handle is created (Win32 does it like this). Also 
1233         fixed a typo in ToString() for a test to pass, changed the 
1234         exception thrown in set_LargeChange and set_SmallChange to 
1235         match Win32 behaviour, and added TrackBar tests to the unit 
1236         tests.
1237
1238 2006-11-02  Chris Toshok  <toshok@ximian.com>
1239
1240         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
1241         not _NET_WM_STATE_NO_TASKBAR.
1242
1243 2006-11-02  Jackson Harper  <jackson@ximian.com>
1244
1245         * TextControl.cs: Increment count by one, since in the update view
1246         count - 1 is used.
1247
1248 2006-11-02  Jackson Harper  <jackson@ximian.com>
1249
1250         * TextBoxBase.cs: Use client rectangle not bounds for checking if
1251         the mouse is in the client rectangle (duh).
1252
1253 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1254         
1255         * TrackBar.cs: Fixed trackbar jumping around when clicking
1256         on it - the trackbar was not detecting correctly at which
1257         side of the thumb the click was done. (fixes #79718)
1258
1259 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
1260
1261         * ListBox.cs: scroll visible area when change SelectedIndex to
1262         a non visible area.  Fixes #79481.
1263
1264 2006-11-01  Jackson Harper  <jackson@ximian.com>
1265
1266         * TextControl.cs: When replacing the selection move the selection
1267         start/end/anchor to the end of the new text.
1268
1269 2006-11-01  Jackson Harper  <jackson@ximian.com>
1270
1271         * XplatUIWin32.cs: When setting the parent change the controls
1272         visibility to it's visibility flag, not to it's old parents
1273         visibility (.Visible walks the parent chain).
1274
1275 2006-11-01  Chris Toshok  <toshok@ximian.com>
1276
1277         * XplatUIX11.cs: revert the #79790 fix, as the simple.
1278         XSetTransientForHint fix breaks paint .net's tool windows.  more
1279         work needed for that one.
1280
1281 2006-11-01  Chris Toshok  <toshok@ximian.com>
1282
1283         * ScrollBar.cs: throw ArgumentException instead of Exception in
1284         LargeChange/SmallChange setters.  fixes unit tests.
1285
1286 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
1287
1288         * ContainerControl.cs: reverted rev.67183 (which was itself
1289         a reversion of rev.66853... eh).
1290         
1291         * Control.cs: Fixes Reflector hang by changing Focus() call
1292         to what it was before rev.66643 (calling Select() here sets 
1293         ActiveControl, which in some situations calls back Focus and 
1294         eventually does a stack overflow). Temp fix.    
1295         Changes to GetNextControl() to not look for children to select when
1296         parent cannot be selectable (so it looks for siblings instead)  
1297         
1298 2006-10-31  Mike Kestner  <mkestner@novell.com>
1299
1300         * CheckedListBox.cs : off by one error in returned index from
1301         ObjectCollection.Add.  Fixes #79758.
1302
1303 2006-10-31  Chris Toshok  <toshok@ximian.com>
1304
1305         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
1306         calls for the textbox/spinner, to keep from recursing to the point
1307         where we crash.  Fixes #79760.
1308
1309 2006-10-31  Chris Toshok  <toshok@ximian.com>
1310
1311         * ListControl.cs (set_SelectedValue): don't throw exceptions on
1312         null/"" value, just return.  matches ms's behavior and fixes some
1313         failing tests.
1314
1315 2006-10-31  Chris Toshok  <toshok@ximian.com>
1316
1317         * Control.cs (set_Capture): make a logic a little easier to
1318         follow.
1319
1320         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
1321         if it's being destroyed.  A necessary fix surely, but a bandaid
1322         also, to fix the stuck capture problem in bug #78413.
1323
1324 2006-10-31  Chris Toshok  <toshok@ximian.com>
1325
1326         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
1327         convention of clearing hwnd.ClientRect when we set the
1328         width/height (so it'll be recalculated by Hwnd).
1329
1330 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
1331
1332         * ContainerControl.cs: reversed Contains check from
1333         ActiveControl due to hanging problems. This fix
1334         partly regresses #79667 (button does not have
1335         initial focus), so this might be a symptom for 
1336         a larger parenting problem (set_ActiveControl
1337         is being called but the child control does
1338         not have the parent set yet?)   
1339         
1340 2006-10-31  Mike Kestner  <mkestner@novell.com>
1341
1342         * MenuAPI.cs : fix keynav when menu is click activated.
1343
1344 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
1345
1346         * ToolStrip*: Version 0.2.
1347
1348         * MenuStrip.cs: Version 0.1.
1349
1350         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
1351
1352 2006-10-30  Chris Toshok  <toshok@ximian.com>
1353
1354         [ fixes the oversized notify icon issue in bug #79745 ]
1355         
1356         * NotifyIcon.cs: scale the icon down to the size we're given by
1357         the XplatUI layer (this would be faster if we did it once instead
1358         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
1359         since it's never invoked.
1360
1361         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
1362         pixels high by default, so let's hardcode our systray icon to that
1363         size.  The SYSTEM_TRAY protocol should really have a way for
1364         client apps to query for the correct icon size.. but oh well.  A
1365         couple of patches to deal with the screwy client_window ==
1366         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
1367         instance, and also make sure we don't XSelectInput twice).
1368
1369 2006-10-30  Chris Toshok  <toshok@ximian.com>
1370
1371         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
1372         recreating forms.  Control recreation is the bane of my existence.
1373         Fix it in a way that keeps everyone happy.
1374
1375 2006-10-30  Chris Toshok  <toshok@ximian.com>
1376
1377         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
1378         just non-CHILD ones.  otherwise sometimes scrollbars end up with
1379         client_windows not being resized to the proper size (ReportBuilder
1380         shows this extremely well).
1381
1382 2006-10-30  Chris Toshok  <toshok@ximian.com>
1383
1384         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
1385         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
1386         showing up in the gnome taskbar.  Fixes bug #79790.
1387
1388 2006-10-30  Chris Toshok  <toshok@ximian.com>
1389
1390         * ApplicationContext.cs: guard against a NRE.
1391
1392         * Application.cs: null out the old MainForm for the context, so we
1393         don't try to use it again once it's disposed.  Fixes bug #79783.
1394
1395 2006-10-30  Chris Toshok  <toshok@ximian.com>
1396
1397         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
1398         BindingContext, set the data source directly, otherwise do the
1399         lazy approach - the actual ListManager will be created when we get
1400         a BindingContext. Fixes bug #79700.
1401
1402 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
1403
1404         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
1405           XplatUIX11.cs: Remove old 2 parameter SetVisible.
1406
1407         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
1408
1409 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
1410
1411         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
1412         of SetVisible that allows a window to be shown, but not activated.
1413         This is needed on Windows for MenuStrip, and can probably be used
1414         with MainMenu and ComboBox to fix the focus stealing issues on
1415         Windows.
1416
1417         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
1418
1419 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
1420
1421         * PictureBox.cs: Fix the output of the ToString method.
1422
1423 2006-10-29  Chris Toshok  <toshok@ximian.com>
1424
1425         * Control.cs (get_TopLevelControl): fix bug #79781.
1426
1427 2006-10-29  Chris Toshok  <toshok@ximian.com>
1428
1429         * ListControl.cs (set_DataSource): throw Exception here, not
1430         ArgumentException, to match MS behavior.
1431
1432 2006-10-29  Chris Toshok  <toshok@ximian.com>
1433
1434         * Form.cs: remove the try-catch's around calls to GetWindowState.
1435         We can just check the return value.
1436
1437         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
1438         Instead return -1.
1439
1440         * XplatUI.cs: Add note about additional return value for
1441         GetWindowState.
1442
1443 2006-10-29  Chris Toshok  <toshok@ximian.com>
1444
1445         * Control.cs (CreateHandle): when we create our handle, we also
1446         create the handles of our child controls.  Fixes one of the
1447         Control unit tests (CH11).
1448
1449 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
1450
1451         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
1452
1453 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
1454
1455         * ThemeClearlooks.cs: A little speedup.
1456
1457 2006-10-27  Chris Toshok  <toshok@ximian.com>
1458
1459         * Control.cs: implement Control.FromChildHandle in a way that
1460         matches the docs (and fixes the failed test.)
1461
1462 2006-10-27  Chris Toshok  <toshok@ximian.com>
1463
1464         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
1465         comments).
1466
1467         * DataGrid.cs: implement ResetForeColor such that the tests
1468         succeed.
1469         
1470 2006-10-27  Chris Toshok  <toshok@ximian.com>
1471
1472         * ToolBarButton.cs: setting text/tooltiptext to null results in it
1473         being set to "".  Fixes bug #79759.
1474
1475 2006-10-27  Jackson Harper  <jackson@ximian.com>
1476
1477         * TextControl.cs: We need to clear the entire selection area when
1478         setting the start, otherwise multiline selections are still
1479         visible.
1480
1481 2006-10-26  Chris Toshok  <toshok@ximian.com>
1482
1483         * PropertyGridView.cs: 
1484
1485         - ifdef all the code specific to the double
1486         buffer case, and provide some alternatives in the non-doublebuffer
1487         code, which makes heavy use of XplatUI.ScrollWindow to move things
1488         around without having to invalidate (and cause flicker).  There
1489         are still some drawing problems in the non-doublebuffered case, so
1490         DOUBLEBUFFER is defined by default.
1491
1492         - Fix the way dropdowns are handled.  now we explicitly watch for
1493         the events which might cause the dropdown to close, and break out
1494         of the nested event loop there.  This gets rid of all Capture
1495         code, at the expense of the Msg special casing.  Seems to work,
1496         though, and fixes bug #79743.
1497
1498 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
1499         * Control.cs: SetIsRecreating now recreates implicitly added
1500         child controls as well. Finally fixes #79629. The flag passed to 
1501         SetIsRecreating has also been removed since it wasn't used.
1502         
1503 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1504
1505         * PageSetupDialog.cs: Clean some code, fix some bits, 
1506         add some checks, and add a printer sub-dialog.
1507
1508 2006-10-26  Chris Toshok  <toshok@ximian.com>
1509
1510         * PropertyGrid.cs: make set_SelectedObject call
1511         set_SelectedObjects, and move the duplicate logic to the
1512         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
1513
1514         * PropertyGridView.cs: hide the textbox when we get a
1515         SelectedObjectsChanged event.
1516
1517         Fixes bug #79748.
1518
1519 2006-10-26  Chris Toshok  <toshok@ximian.com>
1520
1521         * PropertyGridView.cs: deal with the type converter not supporting
1522         GetStandardValues() or GetStandardValues() returning null, which
1523         is does in the default case.  Fixes #79742.
1524
1525 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
1526
1527         * CheckedListBox.cs: nunit no longer crashes when selecting 
1528         Project/Edit menu option
1529         
1530 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
1531
1532         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
1533         is no menu selected. fixes #79739
1534
1535 2006-10-25  Chris Toshok  <toshok@ximian.com>
1536
1537         * PropertyGridView.cs: factor out the splitter invalidation code
1538         into the SplitterPercent setter, and for kicks implement the
1539         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
1540         amount in either direction.
1541
1542 2006-10-25  Chris Toshok  <toshok@ximian.com>
1543
1544         * PropertyGridView.cs: do some cleanup of the brush used to draw
1545         text - read only fields should be grayed out.  not sure how to do
1546         this with the textbox, though.  but the textbox's should also be
1547         readonly now at least.  Also, hide/show the textbox when resizing
1548         the control.
1549         
1550         * CursorConverter.cs: use System.Reflection when getting the
1551         properties of Cursors, as TypeDescriptor.GetProperties isn't
1552         returning static properties.
1553
1554 2006-10-25  Chris Toshok  <toshok@ximian.com>
1555
1556         * PropertyGridView.cs: factor out the up/down handling, and reuse
1557         it for page up/down.  also add End/Home support.
1558
1559 2006-10-25  Chris Toshok  <toshok@ximian.com>
1560
1561         * PropertyGridView.cs:
1562
1563         - ensure the selected grid item is visible in the scrolled area,
1564         fixes bug #79572.
1565
1566         - fix Keys.Down handling when you're on the last item in the
1567         propertygrid.
1568
1569 2006-10-25  Mike Kestner  <mkestner@novell.com>
1570
1571         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
1572         clicks too.  Fixes #79725.
1573
1574 2006-10-24  Chris Toshok  <toshok@ximian.com>
1575
1576         * PropertyGrid.cs: use property.Converter instead of
1577         TypeDescriptor.GetConverter(property.PropertyType), so we catch
1578         TypeConverters declared on the property as well as on the
1579         PropertyType.  Fixes bug #79678.
1580
1581 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
1582
1583         * MimeIcon.cs, Mime.cs:
1584           Fallback to the default platform handler if no shared mime info
1585           stuff exists (fixes #79693).
1586
1587 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
1588         * ContainerControl.cs: Incorrect contains check in ActiveControl 
1589         from previous fix (duh).
1590
1591 2006-10-20  Chris Toshok  <toshok@ximian.com>
1592
1593         * PropertyGridView.cs: the dropdown should be MIN(number of items
1594         in list, 15).  Fixes #79551.
1595
1596 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
1597         Fixes #79384, #79394, #79652, #79667
1598         * Application.cs: 
1599         
1600         - Modal windows are now destroyed in the proper order for windows
1601         
1602         * ContainerControl.cs:
1603         
1604         - ActiveControl setter has more conditions on when to return:
1605                 - if we're reselecting the active control, but it actually
1606                 didn't have focus (window hidden or some such), it runs
1607                 - if the active control being selected doesn't actually 
1608                 exist in the container, it returns
1609         
1610         * Form.cs
1611         
1612         - The ShowDialog now gets the current form as the owner when
1613         invoking without parameters, and correctly activates the owner 
1614         when returning
1615         
1616         * MessageBox.cs
1617         
1618         - MessageBox now catches the Escape key to exit
1619
1620 2006-10-20  Chris Toshok  <toshok@ximian.com>
1621
1622         * PropertyGridView.cs: fix a number of issues (bug #78565, and
1623         most of bug #79676):
1624
1625         - you can navigate around the property grid with the arrow keys.
1626
1627         - the dropdown is sized properly when the pg has a vertical
1628         scrollbar.
1629
1630         - fix the indentation for subentries, and properly select the
1631         entire label rect.
1632
1633         - fix the gray bar's drawing (only draw it to the last element,
1634         not for the height of the control.  Also make sure we draw that
1635         last horizontal grid line.
1636
1637         - use the same mechanism the datagrid uses wrt the editing textbox
1638         when scrolling/resizing/etc.  Namely, we hide it first, do the
1639         operation, then show it again (if it's still visible).
1640         
1641         - aggressively remove a lot of unnecessary refreshes (and also
1642         calls to Invalidate(). call more limited variants, and only redraw
1643         what we need.)
1644         
1645         * PropertyGrid.cs:
1646
1647         - when we're populating the merged collection, fill in the UI
1648         parent with either the passed in item, or the category item we
1649         create.
1650
1651         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
1652
1653         * GridItem.cs: drop some fully qualified names.
1654         
1655         * GridEntry.cs: add a "UIParent", which is basically the parent
1656         treenode.
1657
1658         * GridItemCollection.cs: add an IndexOf method.
1659
1660 2006-10-20  Mike Kestner  <mkestner@novell.com>
1661
1662         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
1663         a working win32 NC invalidation mechanism, we can't invalidate
1664         menus.  [Fixes #79705]
1665
1666 2006-10-20  Mike Kestner  <mkestner@novell.com>
1667
1668         * ListBox.cs : don't update the VScrollbar if the list is empty,
1669         just hide it.  [Fixes #79692]
1670
1671 2006-10-20  Jackson Harper  <jackson@ximian.com>
1672
1673         * RichTextBox.cs: Handle some special chars better, and don't skip
1674         the entire group when we encounter a special char that we don't
1675         handle correctly.
1676
1677 2006-10-18  Chris Toshok  <toshok@ximian.com>
1678
1679         * PropertyGridView.cs: address a number of issues from bug #79676,
1680         mostly of the cosmetic variety.
1681
1682         - The highlight rectangle for indented items not extends all the
1683         way to the left.
1684
1685         - Indented items aren't indented so much.
1686
1687         - the dropdown is properly sized width-wise if the pg has a
1688         vertical scrollbar.
1689
1690 2006-10-18  Chris Toshok  <toshok@ximian.com>
1691
1692         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
1693         systray stuff is rather convoluted to begin with.
1694
1695         systray icons are a single window for some reason (that I haven't
1696         figured out yet), and for them, client_window == whole_window.
1697         Given the way the tests are structured elsewhere to determine
1698         which paints are pending (client vs. nc), that situation will
1699         always yield PAINT, not NCPAINT.  So, if we have a pending
1700         nc_expose and no pending expose, remove the hwnd from the paint
1701         queue, and also set nc_expose_pending to false, to keep us from
1702         blocking further expose's adding the hwnd to the paint queue.
1703
1704         phew.  like i said, a rather convoluted change.  Fixes the
1705         notifyicon repaint issues in bug #79645.
1706
1707 2006-10-18  Chris Toshok  <toshok@ximian.com>
1708
1709         * Form.cs: when getting the backcolor of the form, don't get
1710         base.BackColor, as this allows parents to influence the background
1711         color.  This breaks mdi forms.  Instead, if the background_color
1712         is empty, return the default.
1713
1714 2006-10-18  Chris Toshok  <toshok@ximian.com>
1715
1716         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
1717         to being private instead of internal static.
1718
1719         * Control.cs: remove all the stupid ParentWaitingOnRecreation
1720         crap, it wasn't working for more deeply nested controls anyway,
1721         and we already have the is_recreating flag - use that instead.
1722         Before calling DestroyHandle in RecreateHandle, recurse through
1723         the control tree setting it to true.  this returns the recreate
1724         code to much of its original simplicity, while now guaranteeing we
1725         actually recreate everything we're supposed to.  This change gets
1726         fyireporting actually showing mdi children.
1727
1728 2006-10-17  Chris Toshok  <toshok@ximian.com>
1729
1730         * Form.cs: remove some debug spew, and collapse some duplicate
1731         code at the end of SetClientSizeCore.
1732
1733         * XplatUIX11.cs: 
1734         - add some more debug spew here too wrt Destroy handling.
1735         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
1736         in Control's handling of WM_DESTROY.
1737         - Remove the handling of zombie window DestroyNotifies from the
1738         event loop - we don't need it.  Now the only DestroyNotifies we
1739         actually handle are ones generated by X.
1740         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
1741         match gtk's (functioning) handling of this. This keep metacity
1742         from leaving droppings in the form of wm borders with no window
1743         contents all over the place.
1744
1745         * Control.cs:
1746         - add a bunch of debug spew wrt control recreation.
1747         - fix a bug where we weren't tracking Visible properly on
1748         recreated hwnds.
1749         - fixed the WM_PAINT double buffer handling to support re-entrant
1750         calls (yes, i know it's gross, but it's happening to us).
1751
1752 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1753         * ThemeWin32Classic.cs: changed drawing of selected days
1754         to make them look better.
1755
1756 2006-10-16  Chris Toshok  <toshok@ximian.com>
1757
1758         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
1759         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
1760
1761         * XplatUIX11.cs: move away from using hwnd.client_dc and
1762         hwnd.non_client_dc and on to a stack of dc's (and in window's
1763         case, PAINTSTRUCT's), so we can deal with nested Paint calls
1764         without puking or not disposing of Graphics objects.
1765
1766         * XplatUIOSX.cs: same.
1767
1768         * XplatUIWin32.cs: same.
1769
1770 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
1771
1772         * FileDialog.cs: Don't call on_directory_changed inside
1773           OnSelectedIndexChanged (it changes the SelectedIndex too).
1774           Instead move it to OnSelectionChangeCommitted.
1775
1776 2006-10-13  Chris Toshok  <toshok@ximian.com>
1777
1778         * XplatUIX11.cs: more Destroy work.  the current code does the
1779         following things, in order:
1780
1781         1. Enumerates all handles of all controls at or below the one
1782         being destroyed, in pre-order.  As it is doing this, it marks the
1783         handles as zombie and clears all references to them.
1784         
1785         2. calls XDestroyWindow on the window passed in.
1786
1787         3. SendMessage's WM_DESTROY to all he handles in the accumulated
1788         list.
1789
1790 2006-10-13  Chris Toshok  <toshok@ximian.com>
1791
1792         * XplatUIX11.cs: set hwnd.zombie to true before calling
1793         SendMessage (WM_DESTROY).  this keeps us from marking the new
1794         window a zombie, and also keeps us from calling sendmessage at
1795         all.
1796
1797 2006-10-13  Jackson Harper  <jackson@ximian.com>
1798
1799         * TextControl.cs: Do not show the caret and selection at the same
1800         time.  Reduces ugliness by 35%.
1801
1802 2006-10-13  Chris Toshok  <toshok@ximian.com>
1803
1804         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
1805         zombie after we do the recursive call, so we actually do call
1806         SendMessage on the children controls.
1807         (GetMessage): if we find a pending paint event for a zombie hwnd,
1808         remove the hwnd from the paint queue, or else it will always be
1809         there (and we'll effectively loop infinitely)
1810
1811 2006-10-13  Mike Kestner  <mkestner@novell.com>
1812
1813         * MenuItem.cs : add Selected format under keynav too.
1814         Fixes #79528.
1815
1816 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1817
1818         * PropertyGrid.cs: Fixed some NRE's and small difference between our
1819         implementation and that of MS.
1820
1821 2006-10-13  Chris Toshok  <toshok@ximian.com>
1822
1823         * Control.cs (OnInvalidated) only futz with the invalid_region if
1824         the control is double buffered.  this fixes the apparent hang in
1825         the ListView unit tests.  Someone needs to make the
1826         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
1827
1828 2006-10-13  Chris Toshok  <toshok@ximian.com>
1829
1830         * PropertyGridView.cs:
1831
1832         - do a little refactoring so that only one place calls
1833         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
1834         else call that.  Also make it Refresh, since there are redraw bugs
1835         otherwise (we should take a look at that...)
1836
1837         - do a little more refactoring work to share the body of code
1838         involved with the drop down.  it was duplicated in the code
1839         dealing with the listbox handling and in the code dealing with the
1840         UITypeEditors.
1841
1842         - add a Capture to the dropdown form's control once it's
1843         displayed, and add a MouseDown handler that checks to make sure
1844         the position is inside the control.  If it's not, close the
1845         dropdown.  This fixes #78190.
1846
1847         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
1848         if the value is different than the initial value.
1849         
1850 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
1851
1852         * Control.cs: see #78650
1853         - Fixed GetNextControl for several cases:
1854                 - Changed FindFlatForward to return 
1855                 correct sibling control when more than one
1856                 control has same TabIndex as the currently 
1857                 focused one.
1858                 - Changed FindFlatBackward to loop children
1859                 from last to first and apply same logic as in
1860                 FindFlatForward
1861                 - Changed FindControlForward to search for
1862                 children when control is not a container
1863                 but has children, or search for siblings if
1864                 control is a container...
1865                 - Changed FindControlBackward   to continue
1866                 searching for child controls when hitting 
1867                 Panel-like parents
1868                 
1869         - Fixed Focus method to update ActiveControl
1870         (FocusTest.FocusSetsActive failure)
1871         
1872         * TabControl.cs:
1873         - Focus rectangle now refreshes when gaining
1874         or losing focus
1875         - Removed grab for Tab key on IsInputKey that 
1876         was keeping tab navigation from working (#78650)
1877
1878 2006-10-13  Chris Toshok  <toshok@ximian.com>
1879
1880         * PropertyGridView.cs:
1881         - Rewrite SetPropertyValue to loop over SelectedGridItem's
1882         SelectedObjects.
1883
1884         - Deal with GridItem.Value == null a few places.
1885
1886         * PropertyGrid.cs: 
1887         - replace the PopulateGridItemCollection with a pair of methods
1888         which compute the intersection of all the properties in the
1889         SelectedObjects array.  Fixes #79615.
1890
1891         - Throw ArgumentException from set_SelectedObjects if there's a
1892         null in the array.
1893
1894         - Add GetTarget method which can be used to traverse up the
1895         GridItem.Parent chain.  It depends on the assumption that
1896         selected_objects for different GridEntries are always in the same
1897         order (a safe assumption).  Use this method and loop over all the
1898         selected objects in the entry when calling RemoveValueChanged and
1899         AddValueChanged.
1900         
1901         * GridEntry.cs: Make this handle multiple selected objects.
1902         .Value returns null if not all the selected objects share the same
1903         value.
1904
1905 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
1906         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
1907           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
1908           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
1909           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
1910           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
1911         add additional functionality.
1912
1913 2006-10-12  Mike Kestner  <mkestner@novell.com>
1914
1915         * ErrorProvider.cs : new ToolTipWindow ctor sig.
1916         * HelpProvider.cs : new ToolTipWindow ctor sig.
1917         * ToolTip.cs : remove ToolTip param from Window sig since it is
1918         not used.
1919         * ToolBar.cs : add tooltip support.  Fixes #79565.
1920
1921 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1922
1923         * ComboBox.cs: move the events in set_SelectedIndex to 
1924         after the call to HighlightIndex in order to avoid 
1925         possible recursion and subsequent problems with the call
1926         to HighlightIndex and include a range check in 
1927         set_HighlightIndex. Fixes #79588
1928         
1929 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1930
1931         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
1932         to ui thread's settings instead of sunday. 
1933         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
1934
1935 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1936
1937         * DateTimePicker.cs
1938         * MonthCalendar.cs
1939         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
1940         and implement missing functionality (selecting different parts 
1941         of the date and edit them individually with the keyboard).
1942         
1943 2006-10-11  Chris Toshok  <toshok@ximian.com>
1944
1945         * Control.cs (OnInvalidated): fix NRE relating to last change.
1946
1947 2006-10-11  Chris Toshok  <toshok@ximian.com>
1948
1949         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
1950         atoms in _NET_WM_STATE here if the window is maximized.  We need
1951         to do this because we're *replacing* the existing _NET_WM_STATE
1952         property, so those atoms will be lost otherwise, and any further
1953         call to GetWindowState will return Normal for a window which is
1954         actually maximized.  Fixes #79338.
1955
1956 2006-10-11  Jackson Harper  <jackson@ximian.com>
1957
1958         * TextControl.cs: Special case for setting selection end to
1959         selection start, we basically kill the anchor.
1960         - some todo comments.
1961
1962 2006-10-11  Chris Toshok  <toshok@ximian.com>
1963
1964         * Control.cs: switch to using an "invalid_region" to track which
1965         parts of the image buffer need updating.  This is more code than
1966         the simple fix from r66532.  That version just attempted to always
1967         fill the entire buffer on redraw, which turns out to be
1968         inefficient when invalidating small rectangles.  This version
1969         simply adds the invalid rectangle to the invalid region.  When we
1970         get any WM_PAINT message we see if it can be filled using the
1971         image buffer, and if it can't (if the paint event's clip rectangle
1972         is visible in the invalid region) we first fill the image buffer.
1973         So, the image buffer is still a cache, we just fill it lazily.
1974
1975         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
1976         need it any longer.
1977
1978 2006-10-11  Chris Toshok  <toshok@ximian.com>
1979
1980         * XplatUIX11.cs (SetWindowPos): we need to update both position as
1981         well as size after calling XMoveResizeWindow.  This keeps us from
1982         ignoring future SetWindowPos calls.  Fixes the disappearing
1983         DateTimePicker in the ToolBarDockExample from bug #72499.
1984
1985 2006-10-11  Chris Toshok  <toshok@ximian.com>
1986
1987         * TextBoxBase.cs: reorder things a bit when it comes to
1988         resizing-causing-recalculation.  we were recalculating the
1989         document when our position was changed, which shouldn't happen.
1990         We only care about size changes.  Clear up some more redundant
1991         recalculation calls while I'm at it.  This makes the toolbar dock
1992         example snappy when you're just dragging toolbars around (since it
1993         causes a relayout whenever you move one.)
1994
1995 2006-10-11  Chris Toshok  <toshok@ximian.com>
1996
1997         * ToolBarButton.cs (get_Rectangle): this only returns
1998         Rectangle.Empty if Visible == false, or Parent == null.
1999         Parent.Visible doesn't matter.
2000
2001 2006-10-10  Chris Toshok  <toshok@ximian.com>
2002
2003         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
2004         by .net 1.1, so switch to an internal method instead.
2005
2006 2006-10-10  Chris Toshok  <toshok@ximian.com>
2007
2008         * Control.cs (WM_PAINT): when a control is double buffered we draw
2009         initially to the ImageBuffer and then copy from there.  But when a
2010         parent control which has child controls is double buffered, the
2011         initial drawing doesn't encompass the entire ClientRectangle of
2012         the parent control, so we end up with uninitialized bits (this is
2013         easily seen by dragging the top toolbar in
2014         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
2015         manually set the ClipRectangle of the paint_event (only the one we
2016         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
2017         of the nastiness in bug #72499.
2018
2019         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
2020         which we use in Control.cs's WM_PAINT handling.
2021
2022 2006-10-10  Jackson Harper  <jackson@ximian.com>
2023
2024         * TextBoxBase.cs: Finish off the autoscrolling stuff.
2025
2026 2006-10-10  Chris Toshok  <toshok@ximian.com>
2027
2028         * Cursor.cs: Apply a slightly different patch to the one suggested
2029         in #79609.
2030
2031 2006-10-10  Jackson Harper  <jackson@ximian.com>
2032
2033         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
2034         not the parent form.
2035         * TextControl.cs: use difference in old line count vs new count to
2036         calculate how many lines were added, this takes into account soft
2037         line breaks properly.
2038
2039 2006-10-10  Chris Toshok  <toshok@ximian.com>
2040
2041         * LinkLabel.cs: don't call MeasureCharacterRanges against a
2042         rectangle located at 0,0 and the size of the text.  Use
2043         ClientRectangle instead.  This fixes rendering of non-left aligned
2044         link labels.
2045
2046 2006-10-10  Jackson Harper  <jackson@ximian.com>
2047
2048         * TextBoxBase.cs: When we set the selection start position the
2049         caret.
2050         * TextControl.cs: Need to update the caret when we decrement it to
2051         zero.
2052         - Make sure that the selection_visible flag gets reset to false if
2053         the selection isn't visible.  Before this you could get it set to
2054         visible by changing the selection start, then changing the end to
2055         equal the start.
2056
2057 2006-10-09  Jackson Harper  <jackson@ximian.com>
2058
2059         * TreeView.cs: Don't update scrollbars when we aren't visible.
2060         * TreeNodeCollection.cs: Only need to update scrollbars if being
2061         added to an expanded visible node or the root node.
2062
2063 2006-10-09  Chris Toshok  <toshok@ximian.com>
2064
2065         * XplatUIX11.cs (SendMessage): fix NRE.
2066
2067 2006-10-09  Jackson Harper  <jackson@ximian.com>
2068
2069         * TextBoxBase.cs: Implement horizontal autoscrolling.
2070         * TextControl.cs: Add a movement types that allows moving forward
2071         and backwards without wrapping.
2072
2073 2006-10-09  Mike Kestner  <mkestner@novell.com>
2074
2075         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
2076         with focus "expansion" of labels.  Fixes #79532 and then some.
2077         * ThemeWin32Classic.cs : add LineLimit to ListView label format
2078         when wrapping.
2079
2080 2006-10-09  Jackson Harper  <jackson@ximian.com>
2081
2082         * TextBoxBase.cs: Set the default max values to MaxValue since
2083         we use the scrollbar for autoscrolling and the default value is
2084         100.  If we don't do this the caret won't keep up with typing
2085         after about 18 characters.
2086         * TextControl.cs: Make sure the selection is offset by the
2087         viewport x.  This fixes selection when using auto scrolling.
2088
2089 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
2090         
2091         * Form.cs: The active control should be selected after the 
2092         OnLoad so that any child control initialization that affects
2093         the selection is done. Fixes #79406
2094
2095 2006-10-06  Chris Toshok  <toshok@ximian.com>
2096
2097         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
2098         to have no evil effects.
2099
2100         - Stop selecting StructureNotifyMask on non-toplevel windows.
2101
2102           The only way children should be resized is by using the SWF api,
2103           and we already send WM_WINDOWPOSCHANGED messages in those cases.
2104           Toplevel windows can be interacted with via the window manager,
2105           and so we keep the input mask there.
2106
2107           The other event StructureNotifyMask gives us (that we care
2108           about) is DestroyNotify.  The code is already structured such
2109           that it assumes we won't be getting a DestroyNotify event for
2110           the window we pass to XDestroyWindow (which is what
2111           StructureNotifyMask is supposed to guarantee.)  So, that code
2112           shouldn't be affected by this either.
2113
2114         - Stop selecting VisibilityChangeMask altogether.
2115
2116           We weren't doing anything with the resulting events anyway.
2117         
2118         This vastly reduces the number of X requests and events we see
2119         when resizing/laying out a large ui.
2120
2121 2006-10-06  Chris Toshok  <toshok@ximian.com>
2122
2123         * ScrollableControl.cs (DisplayRectangle): we need to take into
2124         account the DockPadding regardless of whether or not auto_scroll
2125         == true.  rework this slightly to this effect, and fix bug #79606,
2126         and part of #72499 (you can now see the drag handles and drag
2127         toolbars around).
2128
2129 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
2130
2131         * ListViewItem.cs: Collections of selected and checked items are now
2132         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
2133         we mark the collection "dirty".
2134         * ListView.cs: Marked collections readonly. Modified UpdateSelection
2135         to only clear SelectedItems when a new item is selected and MultiSelect
2136         is enabled. CheckedItems and SelectedItems now subscribe to Changed
2137         event of ListViewItemCollection, and mark its list dirty whenever
2138         that event is fire. This allows us to return selected/checked items 
2139         in the same order as they are in the Items collection. This matches
2140         the MS behavior.
2141
2142 2006-10-06  Chris Toshok  <toshok@ximian.com>
2143
2144         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
2145         right mouse clicks.  Fixes bug #79593.
2146
2147 2006-10-06  Chris Toshok  <toshok@ximian.com>
2148
2149         * Splitter.cs: doh, fix splitters that don't want to cancel the
2150         movement when you drag them.  Also, impose the limits on the
2151         values we send to the SplitterMovingEvent.  Fixes #79598.
2152
2153 2006-10-06  Jackson Harper  <jackson@ximian.com>
2154
2155         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
2156         since we use this for auto scrolling also.
2157
2158 2006-10-05  Chris Toshok  <toshok@ximian.com>
2159
2160         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
2161         beginning to think that most datagrid column types don't need this
2162         method.  Fixes bug #79392.
2163
2164 2006-10-05  Chris Toshok  <toshok@ximian.com>
2165
2166         * DataGrid.cs: move back to a more lazy scheme for creating the
2167         CurrencyManager, so we aren't updating it every time you set
2168         either DataSource or DataMember.  Also, don't call
2169         RecreateDataGridRows if the currency manager hasn't changed.
2170
2171 2006-10-05  Chris Toshok  <toshok@ximian.com>
2172
2173         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
2174         emitted, SelectedIndex should already be updated.  Fixes bug
2175         #78929.
2176
2177 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
2178
2179         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
2180           ToolStripTextBox.cs: Initial commit.
2181         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
2182
2183 2006-10-05  Jackson Harper  <jackson@ximian.com>
2184
2185         * TabControl.cs: We need to invalidate the tab control area when
2186         new ones are added (duh).
2187
2188 2006-10-03  Chris Toshok  <toshok@ximian.com>
2189
2190         * Form.cs (ProcessDialogKey): if the focused control is in this
2191         form and is a button, call its PerformClick method here.  Fixes
2192         #79534.
2193
2194 2006-10-04  Jackson Harper  <jackson@ximian.com>
2195
2196         * TabPage.cs: Ignore setting of Visible, and add an internal
2197         method for setting the controls visibility.  TabPage's Visible
2198         property is a little strange on MS, this seems to make us
2199         compatible, and fixes cases where people set all the tab pages to
2200         visible.
2201         * TabControl.cs: Use the new internal setting on tab pages
2202         visibility.
2203
2204 2006-10-03  Mike Kestner  <mkestner@novell.com>
2205
2206         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
2207
2208 2006-10-03  Mike Kestner  <mkestner@novell.com>
2209
2210         * ListView.cs : use is_visible instead of Visible to check if 
2211         scrollbars should be placed/sized.  Also some max_wrap_width
2212         love for LargeIcon view.  [Fixes #79533]
2213
2214 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
2215
2216         * TextControl.cs :
2217           Make set_TextAlign() do actually update the align. Fixed #78403.
2218
2219 2006-10-03  Chris Toshok  <toshok@ximian.com>
2220
2221         * DataGrid.cs: fix a crash when switching datasources if the
2222         vertical scrollbar is at someplace other than Value = 0.  Also,
2223         reduce the number of recalculation passes we do in SetDataSource
2224         from 2 to 1.
2225
2226 2006-10-03  Jackson Harper  <jackson@ximian.com>
2227
2228         * TextBoxBase.cs: Move the if value the same bail check up, we
2229         don't want to empty the document if it is already empty, this
2230         seems to severly mess up the caret.  TODO: I should probably fix
2231         the empty statement to update teh caret somehow.
2232
2233 2006-10-03  Chris Toshok  <toshok@ximian.com>
2234
2235         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
2236         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
2237         reflection, an internal row type, properties on said type, etc.)
2238         will work with our datagrid.  Fixes #79531.
2239
2240 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
2241
2242         * FileDialog.cs: Don't crash if a path is not accessible
2243           (System.UnauthorizedAccessException). Fixes #79569.
2244         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
2245           a ':' too. Return unknown icon for those paths/files.
2246
2247 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
2248
2249         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
2250         GetContainerControl returns null.
2251
2252 2006-10-02  Chris Toshok  <toshok@ximian.com>
2253
2254         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
2255         call to XGetWindowAttributes instead of "handle".  fixes an X
2256         error using notifyicon after the NotifyIconWindow to Form base
2257         class switch.
2258
2259 2006-10-02  Chris Toshok  <toshok@ximian.com>
2260
2261         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
2262         server grab and looping we need to do to get down to the most
2263         deeply nested child window.
2264         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
2265         QueryPointer again after the WarpPointer so we can generate a
2266         proper (fake) MotionNotify event to be enqueued in the destination
2267         window's queue.
2268         (GetCursorPos): call QueryPointer.
2269
2270         Fixes #79556.
2271
2272 2006-10-02  Jackson Harper  <jackson@ximian.com>
2273
2274         * NotifyIcon.cs: Derive the notify icon from a form, so things
2275         like FindForm work on it.
2276         - Swallow the WM_CONTEXTMENU message, since that is generated on
2277         mouse down, and context menu is a mouse up kinda guy.  I believe
2278         the correct fix here is probably to make the notify icon entirely
2279         NC area, but this seems to work fine for anyone not manipulating
2280         WndProc.
2281
2282 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
2283
2284         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
2285           ToolStripItemCollection.cs, ToolStripLabel.cs,
2286           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
2287           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
2288           Initial implementation.
2289         * TextRenderer.cs: Provide padding to MeasureText.
2290
2291 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
2292
2293         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
2294         of ButtonBaseAccessibleObject. Fix bug #79552.
2295
2296 2006-10-02  Jackson Harper  <jackson@ximian.com>
2297
2298         * MdiWindowManager.cs: When maximizing use the containers client
2299         rect, not it's bounds, so nc area is accounted correctly.
2300         - Use the parent form's size for the menu position, since the
2301         client isn't always the full form size.
2302
2303 2006-10-01  Chris Toshok  <toshok@ximian.com>
2304
2305         * ScrollableControl.cs: make sure neither right_edge or
2306         bottom_edge are < 0, since they're used as LargeChange for the
2307         horiz/vert scrollbars respectively.  Fixes #79539.
2308
2309 2006-10-01  Chris Toshok  <toshok@ximian.com>
2310
2311         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
2312         the xplatuix11 code can cause us to destroy/recreate our handle.
2313
2314         * XplatUIX11.cs
2315         (SystrayAdd):
2316         - this code can be invoked many times for the same Hwnd.  Make
2317           sure we only destroy the client window once (the first time this
2318           method is called).  This fixes bug #79544.
2319         - Remove the call to the improperly bound XSync.  why we had two
2320           bindings to this, I will never know, but this call resulted in
2321           events being discarded from the queue(!).
2322         - correct a misunderstanding of _XEMBED_INFO - the second atom is
2323           not our current state but the state we wish to be in.  So, 0 if
2324           we don't want to be mapped.  Change it to 1.
2325         (SystrayRemove): The XEMBED spec makes mention of the fact that
2326         gtk doesn't support the reparent of client windows away from the
2327         embedder.  Looking at gtksocket-x11.c seems to agree with this.
2328         The only avenue we have for removing systray icons is to destroy
2329         them.  We don't want the handle to go away for good, though, so
2330         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
2331         #79545.
2332         
2333 2006-10-01  Chris Toshok  <toshok@ximian.com>
2334
2335         * Form.cs (WndProc): inline the native_enabled variable usage into
2336         the cases in which it's used.  Fixes #79536.
2337
2338 2006-09-29  Mike Kestner  <mkestner@novell.com>
2339
2340         * ListView.cs : toggle the selection state for ctrl clicks in 
2341         multiselect mode. [Fixes #79417]
2342
2343 2006-09-29  Mike Kestner  <mkestner@novell.com>
2344
2345         * ListView.cs : kill CanMultiSelect and refactor the selection
2346         code to support multiselection in the absence of mod keys. Steal
2347         arrow/home/end keys by overriding InternalPreProcessMessage to
2348         restore regressed keynav behavior.
2349         [Fixes #79416]
2350
2351 2006-09-29  Jackson Harper  <jackson@ximian.com>
2352
2353         * MdiClient.cs: Repaint the titlebars when the active window is
2354         changed.
2355
2356 2006-09-29  Chris Toshok  <toshok@ximian.com>
2357
2358         * Application.cs: when entering a runloop with a modal, make sure
2359         the hwnd is enabled.  Fixes #79480.
2360
2361 2006-09-29  Chris Toshok  <toshok@ximian.com>
2362
2363         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
2364         when ListManager.CanAddRows == false, bump us back one.
2365
2366         * DataGridColumnStyle.cs (ParentReadOnly): remove the
2367         listmanager.CanAddRows check.  This makes ArrayLists uneditable
2368         using a datagrid, which is not right.
2369         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
2370         is an IEditable, but call property_descriptor.SetValue regardless.
2371         fixes #79435.
2372
2373 2006-09-29  Chris Toshok  <toshok@ximian.com>
2374
2375         * DataGridBoolColumn.cs: we need to test equality in the face of
2376         possible null values (as is the case with the default NullValue).
2377         This patch keeps us from crashing in that case.
2378
2379 2006-09-29  Jackson Harper  <jackson@ximian.com>
2380
2381         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
2382         here, since it will get called for every node collection in the
2383         tree. This is now done in the treeview once the sorting is
2384         finished.
2385         * TreeView.cs: Recalculate the visible order, and update the
2386         scrollbars after sorting, set the top nope to the root so that the
2387         recalc actually works.
2388
2389 2006-09-29  Chris Toshok  <toshok@ximian.com>
2390
2391         * LinkLabel.cs: more handling of the default link collection in
2392         the face of LinkArea manipulation.  The default link collection
2393         contains 1 element (start=0,length=-1).  If the user sets LinkArea
2394         to anything and the links collection is the default, clear it.
2395         Then only add the link if its nonempty.  Fixes #79518.
2396
2397 2006-09-29  Chris Toshok  <toshok@ximian.com>
2398
2399         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
2400         piece correctly when we hit a '\n'.  Fixes #79517.
2401
2402 2006-09-29  Chris Toshok  <toshok@ximian.com>
2403
2404         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
2405         change the binding of gdk_init_check to take two IntPtr's, and
2406         pass IntPtr.Zero for both of them.  Fixes #79520.
2407
2408 2006-09-29  Mike Kestner  <mkestner@novell.com>
2409
2410         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
2411         [Fixes #78779]
2412
2413 2006-09-28  Jackson Harper  <jackson@ximian.com>
2414
2415         * XplatUIX11.cs: When translating NC messages make sure we go from
2416         whole window to screen, not client window to screen.
2417         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
2418         method doesn't exist
2419         - Skip over controls that aren't forms when arranging.
2420
2421 2006-09-28  Jackson Harper  <jackson@ximian.com>
2422
2423         * XplatUIWin32.cs: Clip the rect to the parent window.
2424         * XplatUIStructs.cs: Add clipping modes struct.
2425         * InternalWindowManager.cs: New private method that factors title
2426         bar heights in when calculating the pos of an NC mouse message.
2427         - Use SendMessage to force a paint when the form's size is changed
2428         instead of painting the decorations immediately.
2429         - Don't let the NC button click messages get to DefWndProc,
2430         because they will attempt to handle windowing themself, and this
2431         messes up z-order (it will put them in front of the scrollbars).
2432         * XplatUIX11.cs: Make sure that we don't reset window managers if
2433         we already have one (ie the window is an MDI window).
2434
2435 2006-09-28  Chris Toshok  <toshok@ximian.com>
2436
2437         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
2438         menu code really needs going over.
2439
2440 2006-09-27  Chris Toshok  <toshok@ximian.com>
2441
2442         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
2443         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
2444         window is maximizable.  So, we need to make sure that even if we
2445         clear the border/wm frame of those functions, they're still
2446         available (basically, we remove the decoration without removing
2447         the function).  Half the fix for #79338.
2448
2449 2006-09-27  Chris Toshok  <toshok@ximian.com>
2450
2451         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
2452         Fixes bug #79515.
2453
2454 2006-09-27  Chris Toshok  <toshok@ximian.com>
2455
2456         * Splitter.cs: reorder things a bit so that we don't actually
2457         draw/move the splitter until after calling OnSplitterMoving.  This
2458         lets users cancel/disallow the movement by explicitly setting
2459         event.SplitX/SplitY.  Fixes #79372.
2460
2461 2006-09-27  Jackson Harper  <jackson@ximian.com>
2462
2463         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
2464         because it is most likely on a window being destroyed, and that
2465         will give us an X11 error.
2466
2467 2006-09-27  Chris Toshok  <toshok@ximian.com>
2468
2469         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
2470         the dropdown button now toggles between showing and hiding the
2471         dropdown.  Also, get rid of dropdown_form_showing and just use
2472         dropdown_form.Visible.  We still don't do a grab, but I'll leave
2473         that part to someone who has handled Capture-fu before.
2474
2475 2006-09-27  Chris Toshok  <toshok@ximian.com>
2476
2477         * DataGrid.cs: return false if alt isn't pressed when '0' is
2478         pressed.  this keeps the '0' key from being swallowed, and fixes
2479         bug #79350.
2480
2481 2006-09-27  Chris Toshok  <toshok@ximian.com>
2482
2483         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
2484         Calling Refresh (in response to a scrollbar event) screws up the
2485         scrollbar painting.  Fixes bug #78923.
2486
2487 2006-09-27  Chris Toshok  <toshok@ximian.com>
2488
2489         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
2490         then insert into hashtable" blocks threadsafe.
2491
2492 2006-09-27  Chris Toshok  <toshok@ximian.com>
2493
2494         * MessageBox.cs (CreateParams): the styles should be |'ed with our
2495         baseclass's, since otherwise the
2496         ControlBox/MinimizeBox/MaximizeBox assignments above have no
2497         effect.  This gets the close button back in messageboxes.
2498
2499 2006-09-27  Chris Toshok  <toshok@ximian.com>
2500
2501         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
2502         flag, not just != 0.  this makes flags that are actually multiple
2503         bits (like WS_CAPTION) work.  fixes bug #79508.
2504
2505 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
2506
2507         * PageSetupDialog.cs: add support for getting and settings the 
2508         paper size, source and orientation.
2509
2510 2006-09-26  Chris Toshok  <toshok@ximian.com>
2511
2512         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
2513         and caption == "", we need to remove the resize handles as well as
2514         the title bar.
2515
2516         * Control.cs (set_Text): turns out that setting Text on a form
2517         should change the WM styles on the window, since if ControlBox ==
2518         false, the only way to get a window border is to have a non-""
2519         Text property.  check winforms/forms/text.cs for an example.  so,
2520         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
2521         update both window styles and title.  This fixes a lot of dialogs
2522         (including the preferences dialog in MonoCalendar.)
2523
2524 2006-09-26  Chris Toshok  <toshok@ximian.com>
2525
2526         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
2527         control isn't a Form), call Win32ShowWindow to hide the window,
2528         but don't update the control Visible property.  When we reparent
2529         back to a parent control, call SetVisible in order for the
2530         window's visibility to be reinstated.
2531
2532         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
2533         the FosterParent.
2534
2535         * Control.cs (ControlCollection.Remove): remove that value.Hide()
2536         call for good, since it breaks MonoCalendar (and other things I'm
2537         sure.) Also, set all_controls to null *after* the owner calls,
2538         which end up regenerating it.
2539         (ChangeParent): allow new_parent to be == null, passing
2540         IntPtr.Zero down to XplatUI.
2541
2542         this fixes #79294 the right way.
2543
2544 2006-09-26  Mike Kestner  <mkestner@novell.com>
2545
2546         * GridEntry.cs : internal SetParent method.
2547         * PropertyGrid.cs : attach to property changed on the proper
2548         target if we have a hierarchical grid with subobjects. Setup
2549         GridItem.Parent for hierarchical items.
2550         * PropertyGridView.cs : Set value on the correct target for
2551         hierarchical grids. [Fixes #78903]
2552
2553 2006-09-26  Chris Toshok  <toshok@ximian.com>
2554
2555         * Control.cs (ChildNeedsRecreating): this should return true if
2556         either we're being recreated and the child is in our list, or our
2557         parent is waiting for our recreation.
2558
2559 2006-09-26  Chris Toshok  <toshok@ximian.com>
2560
2561         * Control.cs (ControlCollection.Remove): reinstate the
2562         value.Hide() call as suggested in bug #79294.
2563
2564 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
2565
2566         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
2567         coordinates (versus a relative move).
2568
2569 2006-09-26  Chris Toshok  <toshok@ximian.com>
2570
2571         * Control.cs: rework child recreation a little bit.  It turns out
2572         that we race between the DestroyNotify the WM_DESTROY message.  If
2573         the parent gets its DestroyNotify before the child gets the
2574         WM_DESTROY message, the child ends up not recreating (since the
2575         parent finishes its recreation on DestroyNotify, and the child
2576         checks ParentIsRecreating.)
2577
2578         So, instead we store off a list of all the child controls which
2579         need to be recreated when the parent control starts to recreate
2580         itself.  Then, when child controls get their WM_DESTROY message we
2581         check to see if they're in the parent's pending recreation list,
2582         and if so, we recreate.  This removes all dependency on ordering
2583         from the code and fixes the initial MonoCalendar upgrade dialog.
2584         
2585 2006-09-26  Jackson Harper  <jackson@ximian.com>
2586
2587         * TextControl.cs: Use the Line to get the length of the line,
2588         since soft line breaks can change the end line.
2589
2590 2006-09-26  Chris Toshok  <toshok@ximian.com>
2591
2592         * Control.cs (ControlCollection.AddImplicit): don't add the
2593         control again if it's already in one of our lists.  This keeps us
2594         from adding controls over and over again for comboboxes when their
2595         handle gets recreated (as the combobox adds implicit controls in
2596         OnHandleCreated).  Fixes the X11 errors in bug #79480.
2597
2598 2006-09-26  Jackson Harper  <jackson@ximian.com>
2599
2600         * TextControl.cs: When deleting characters make sure that any
2601         orphaned zero lengthed tags get deleted.
2602         - Fix ToString for zero lengthed tags.
2603
2604 2006-09-25  Jackson Harper  <jackson@ximian.com>
2605
2606         * TextControl.cs: When getting a tag at the location there can be
2607         multiple tags at the same spot, these are 0-lengthed tags that
2608         appear when extra formatting has been stuck in a location.  We
2609         need to pull out the last of these 0 lengthed tags.
2610
2611 2006-09-25  Jackson Harper  <jackson@ximian.com>
2612
2613         * TextControl.cs: Fix print out in debug method.
2614         * TextBoxBase.cs: When text is set bail if we are setting to the
2615         previous value.
2616         
2617 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
2618
2619         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
2620           It is now possible to change the selected index in a FontXXXListBox
2621           with the up and down arrow keys from the FontXXXTextBoxes.
2622           Also, send the FontXXXTextBox mouse wheel event to the corresponding
2623           FontXXXListBoxes to match ms.
2624
2625 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
2626
2627         * SystemInformation.cs: Return a clone of the theme's MenuFont because
2628         anyone can dispose it, anytime. All other properties returns enums, 
2629         structs or basic types so they don't need such tricks.
2630
2631 2006-09-22  Jackson Harper  <jackson@ximian.com>
2632
2633         * XplatUI.cs:
2634         * XplatUIWin32.cs:
2635         * Clipboard.cs:
2636         * DataFormats.cs:
2637         * XplatUIOSX.cs:
2638         * XplatUIDriver.cs: Update interface to add a primary selection
2639         flag, so the driver can use the primary selection buffer if
2640         needed.
2641         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
2642
2643         * RichTextBox.cs: We need to supply the data object to paste now
2644         (so we can choose to supply CLIPBOARD or PRIMARY).
2645         * TextBoxBase.cs: Supply data object to paste (see above).
2646         - Middle click uses the primary selection data object.
2647         
2648 2006-09-21  Chris Toshok  <toshok@ximian.com>
2649
2650         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
2651         of SetWMStyles.  It's still a rat's nest and is largely
2652         order-dependent which I dislike immensely.  This also fixes the X
2653         button disappearing from toplevel forms.
2654
2655 2006-09-21  Mike Kestner <mkestner@novell.com>
2656
2657         * ListBox.cs: move Jordi's click/dblclick raising code to the
2658         mouse up handler.
2659
2660 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
2661
2662         * ListBox.cs: Fixes 79450
2663
2664 2006-09-21  Mike Kestner <mkestner@novell.com>
2665
2666         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
2667         to deal with people updating the TreeNodeCollection after the tree
2668         is disposed.  "Fixes" 79330.
2669
2670 2006-09-20  Jackson Harper <jackson@ximian.com>
2671
2672         * TextControl.cs: Push the cursor record onto the undo stack
2673         before the delete action. This fixes 78651.
2674
2675 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
2676
2677         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
2678         CreateParams. Fixes 79329.
2679
2680 2006-09-19  Chris Toshok  <toshok@ximian.com>
2681
2682         * XplatUIX11.cs: a couple of blanket code massage passes to clean
2683         things up a bit.  First, get rid of the NetAtoms array (and the NA
2684         enum), and just embed the atoms as static fields.  Also, add a
2685         couple of functions (StyleSet and ExStyleSet) to clean up all the
2686         bitmask testing of styles.
2687
2688         * X11Structs.cs: remove the NA enum, not needed anymore.
2689         
2690 2006-09-19  Chris Toshok  <toshok@ximian.com>
2691
2692         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
2693         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
2694         added cleanup to get MessageBox titles appearing again, which were
2695         broken by my earlier fix for caption-less/ControlBox-less windows.
2696
2697 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
2698
2699         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
2700           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
2701           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
2702           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
2703           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
2704           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
2705           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
2706           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
2707           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
2708           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
2709           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
2710             Inital import.
2711         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
2712           ToolStripButton.cs: Stubs needed for above.
2713         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
2714
2715 2006-09-15  Chris Toshok  <toshok@ximian.com>
2716
2717         * XplatUIX11.cs:
2718         - make the MessageQueues hashtable Synchronized.
2719         
2720         - SendMessage: if the Hwnd is owned by a different thread, use the
2721         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
2722         thread.  Fixes bug #79201.
2723
2724 2006-09-15  Chris Toshok  <toshok@ximian.com>
2725
2726         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
2727         ControlBox == false, we disallow maximize/minimize/close.  If the
2728         form Caption is "" we also disallow move (and get rid of the Title
2729         decoration).  Unfortunately, regardless of how things are set,
2730         we're stuck with the Title and WM menu.
2731
2732 2006-09-15  Chris Toshok  <toshok@ximian.com>
2733
2734         * Application.cs: add locking around the static message_filters
2735         ArrayList, part of #79196.
2736
2737 2006-09-15  Chris Toshok  <toshok@ximian.com>
2738
2739         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
2740         Form.ControlBox == false, the window has no titlebar nor resize
2741         handles.  fixes bug #79368.
2742
2743 2006-09-15  Chris Toshok  <toshok@ximian.com>
2744
2745         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
2746         >= 0.  Fixes bug #79370.
2747
2748 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
2749         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
2750         * Control.cs:
2751             Add properties: LayoutEngine, Margin, DefaultMargin.
2752             Add method: GetPreferredSize.
2753             Move layout logic from PerformLayout to layout engines. 
2754
2755 2006-09-13  Chris Toshok  <toshok@ximian.com>
2756
2757         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
2758         fix for #79326 broke #78718, so this change addresses that.
2759
2760         - in SendWMDestroyMessages remove the call to
2761         CleanupCachedWindows, since we might be recreating the control and
2762         need to maintain the references to right Hwnd handles.  Also, set
2763         the zombie flag to true for each of the children in the hierarchy
2764         instead of calling hwnd.Dispose.  This will cause GetMessage to
2765         ignore all events for the window except for DestroyNotify.
2766
2767         - In GetMessage, ignore messages except for DestroyNotify for
2768         zombie hwnds.
2769         
2770         * Control.cs: revert the is_recreating fix from the last
2771         ChangeLog.  It's definitely "right", but it breaks switching from
2772         an MDI form to a non-MDI form.  Will need to revisit that.
2773
2774         * Hwnd.cs: add a zombie flag, which means "the
2775         client_window/whole_window handles are invalid, but we're waiting
2776         for the DestroyNotify event to come in for them".  Set the flag to
2777         false explicitly if setting WholeWindow/ClientWindow, and also
2778         when Disposing.
2779         
2780 2006-09-13  Chris Toshok  <toshok@ximian.com>
2781
2782         * XplatUIX11.cs: rework window destruction slightly.
2783
2784         - when destroying the windows associated with a control, we don't
2785         need 2 separate XDestroyWindow calls.  Just the one for the
2786         whole_window (or for client_window if whole_window is somehow
2787         IntPtr.Zero -- can this happen?) is enough.
2788
2789         - reworked SendWMDestroyMessages slightly, so we always dispose
2790         the child control hwnd's after sending the messages.
2791         
2792         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
2793         the two places it was used (one was even using hwnd.Handle and the
2794         other hwnd.client_window.  ugh), adding another call in
2795         SendWMDestroyMessages.  We need this new call because now the
2796         DestroyNotify events in the queue will be ignored for the child
2797         controls (as their hwnd's were disposed, and the window id's
2798         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
2799
2800         - this fixes bug #79326.
2801
2802 2006-09-13  Chris Toshok  <toshok@ximian.com>
2803
2804         * Control.cs: don't always set is_recreating to false at the end
2805         of RecreateHandle, since sometimes we're not done (and won't be
2806         until WndProc handles the WM_DESTROY message).  Also, set
2807         is_recreating to false in the WM_DESTROY handling code.  Part of
2808         the fix for bug #79326.
2809
2810 2006-09-13  Miguel de Icaza  <miguel@novell.com>
2811
2812         * X11DesktopColors.cs: Start the droppage of debugging messages.
2813
2814         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
2815
2816 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
2817
2818         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
2819
2820 2006-09-12  Chris Toshok  <toshok@ximian.com>
2821
2822         * DataGrid.cs (get_ListManager): if the list_manager is null, try
2823         to create it using SetDataSource.  Fixes bug #79151.
2824
2825 2006-09-11  Chris Toshok  <toshok@ximian.com>
2826
2827         * XEventQueue.cs: add a DispatchIdle property.
2828
2829         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
2830         either the queue is null, or the queue has DispatchIdle set to
2831         true.
2832         (DoEvents): set queue.DispatchIdle to false around the
2833         peek/translate/dispatch message loop in this method.  This keeps
2834         Application.Doevents from emitting idle events.  Part of the fix
2835         for #78823.
2836
2837 2006-09-11  Chris Toshok  <toshok@ximian.com>
2838
2839         * DataGrid.cs (set_DataSource): make this work for both the
2840         winforms/datagrid test and ReportBuilder.  It seems as though when
2841         we've created a ListManager (or maybe it's if we have a
2842         BindingContext?), when we set the DataSource it clears the
2843         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
2844         #79333.
2845
2846 2006-09-11  Chris Toshok  <toshok@ximian.com>
2847
2848         * XplatUIX11.cs: deal with queue being null, which happens in all
2849         the Clipboard functions.  Fixes one of the two problems mentioned
2850         in #78612.
2851
2852 2006-09-11  Chris Toshok  <toshok@ximian.com>
2853
2854         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
2855         button on various spots (including outside the menu) works closer
2856         to MS, and doesn't crash.  Fixes #79343.
2857
2858 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
2859
2860         * ListView.cs: Do not initialize item_sorter in init. To match MS,
2861         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
2862         and the internal comparer is set. When a new ListViewItemSorter is set,
2863         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
2864         was specified. No further processing is necessary if SortOrder is set
2865         to it's current value. If Sorting is modified to None, and View is
2866         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
2867         (either custom or our internal ItemComparer) to null, on 1.0 profile
2868         only set item_sorter to null if its our internal IComparer. If Sorting
2869         is modified to Ascending or Descending, then use our internal IComparer
2870         if none is set, and if the current IComparer is our internal one then:
2871         on 2.0 profile always replace it with one for new Sorting, and on 1.0
2872         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
2873         Enum.IsDefined to verify whether a valid View value is specified in
2874         its setter. Automatically sort listview items when listview is
2875         created. In Sort, do nothing if ListView is not yet created, or if
2876         no item_sorter is set (no Sorting was set, Sorting was explicitly set
2877         to None or ListViewItemSorter was set to null). Added Sort overload
2878         taking a bool to indicate whether the ListView should be redrawn when
2879         items are sorted (we use this in ListViewItemCollection to avoid double
2880         redraws). Modified our internal IComparer to take the sort order into
2881         account. In Add and AddRange methods of ListViewItemCollection, also
2882         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
2883         view), but use overload with noredraw option to avoid double redraw.
2884         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
2885         true when View is Tile, and do the same when attempting to set View to
2886         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
2887         for selected/checked indices, as it involves overhead when sorting is
2888         done while these collections are not used all that often. Instead
2889         we'll build the indices on demand. Modified IList implementation of
2890         CheckedIndexCollection to use public methods if object is int.
2891         Modified CheckedListViewItemCollection to hide checked items if
2892         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
2893         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
2894         IList implementation in SelectedIndexCollection to use public methods
2895         if object is int. Modified SelectedListViewItemCollection to hide
2896         selected items if listview is not yet created.
2897         * ListViewItem.cs: CheckedIndices list no longer needs to be
2898         maintained separately (see ListView changes). Also clone font, fixes
2899         test failure.
2900
2901 2006-09-11  Mike Kestner  <mkestner@novell.com>
2902
2903         * ComboBox.cs: if we are updating the contents of the currently
2904         selected index, refresh the control or the textbox selection.
2905         [Fixes #79066]
2906
2907 2006-09-11  Mike Kestner  <mkestner@novell.com>
2908
2909         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
2910         the 'specified' logic has been moved there.  This seems like a bug 
2911         in Control.cs, since our current SetBoundsCore completely ignores 
2912         the specified parameter.  Peter's commit seems to indicate that is 
2913         the way the MS control implementation works.  [Fixes #79325]
2914
2915 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
2916
2917         * XplatUI.cs: Set default_class_name to be composed
2918         of current domain id. This allows MWF to be loaded in multiple
2919         domains on Win32.
2920
2921 2006-09-09  Miguel de Icaza  <miguel@novell.com>
2922
2923         * X11Keyboard.cs: If we are unable to obtain the input method, do
2924         not call CreateXic to create the input context.   Should fix
2925         #78944/79276.
2926
2927 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
2928
2929         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
2930           Simplified gnome support by adding more pinvokes to get the
2931           icon for a file or mime type.
2932
2933 2006-09-08  Jackson Harper  <jackson@ximian.com>
2934
2935         * MenuAPI.cs: Deslect popup context menu items before closing the
2936         window, so that you don't see the previously selected item
2937         selected when you reopen the menu.
2938         * TextControl.cs: Update the cursor position even if we don't have
2939         focus.  This fixes typing in things like the ComboBox.  I'm not
2940         totally sure we should always set the visibility if we don't have
2941         focus, but couldn't find any corner cases where the cursor showed
2942         up when it shouldn't.
2943
2944 2006-09-08  Chris Toshok  <toshok@ximian.com>
2945
2946         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
2947         our arrays are length 256.  & 0xff before indexing.  Fixes the
2948         crash in bug #78077.
2949         
2950 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2951
2952         * ThemeWin32Classic.cs: 
2953         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
2954         is true. Handle that check box too.
2955
2956 2006-09-07  Chris Toshok  <toshok@ximian.com>
2957
2958         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
2959         79244.
2960
2961 2006-09-07  Chris Toshok  <toshok@ximian.com>
2962
2963         * Control.cs: in set_BackColor only do the work if
2964         background_color != value.
2965
2966         * XplatUIX11.cs: move the clearing of invalid areas (both client
2967         and nc) to the same block of code where we set (nc_)expose_pending
2968         to false.  That is, move it from PaintEventEnd to PaintEventStart,
2969         so things that cause invalidates from within OnPaint will trigger
2970         another call to OnPaint.  Fixes bug #79262.
2971
2972 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
2973
2974         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
2975         * FileDialog.cs: Fix typo
2976
2977 2006-09-07  Jackson Harper  <jackson@ximian.com>
2978
2979         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
2980         for tab pages if they have any.
2981
2982 2006-09-06  Mike Kestner  <mkestner@novell.com>
2983
2984         * Splitter.cs: use the "current" rect when finishing drag handle
2985         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
2986
2987 2006-09-06  Mike Kestner  <mkestner@novell.com>
2988
2989         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
2990         support offset splitters. [Fixes #79298]
2991
2992 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
2993
2994         * Mime.cs: Fixed a bug that could override the global mime type
2995           result.
2996
2997 2006-09-05  Jackson Harper  <jackson@ximian.com>
2998
2999         * TabControl.cs: Better calculation method for setting the slider
3000         pos. Prevents crashes on really wide tabs.
3001         - Draw Image on tab pages if an image list is used.
3002
3003 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3004
3005         * MonthCalendar.cs: When Font changes, the Size should be
3006         updated to fit the new font's space requirements.
3007
3008 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
3009
3010         * ListBox.cs: If the items are cleared with Items.Clear set
3011           top_index to 0.
3012
3013 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3014
3015         * MonthCalendar.cs: Handle arrow keys as input keys. Also
3016         fire DateChanged event instead of DateSelected event when
3017         the date was changed by keyboard interaction.
3018
3019 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3020
3021         * DateTimePicker.cs: Handle DateChanged for the associated
3022         month_calendar control, and set month_calendar.Font from 
3023         OnFontChanged method, as well as resize the height of the
3024         control when needed. Make PreferredHeight proportional.
3025
3026 2006-09-01  Chris Toshok  <toshok@ximian.com>
3027
3028         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
3029         properties.
3030
3031         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
3032
3033 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
3034
3035         * FileDialog.cs: Set ClientSize instead of window size, to allow space
3036           for decorations (Fixes #79219)
3037
3038 2006-09-01  Mike Kestner  <mkestner@novell.com>
3039
3040         * ComboBox.cs: first stab at sorting plus some selection handling
3041         fixes to bring us more in line with MS behavior.  Also switches back
3042         to index based selection.  Alternative patches for index-based 
3043         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
3044         and latency@gmx.de on bug 78848.  I assume they were similar to this
3045         code I've had simmering in my tree forever.
3046         [Fixes #78848]
3047
3048 2006-09-01  Chris Toshok  <toshok@ximian.com>
3049
3050         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
3051         when setting list position guard against ending up with a -1 index
3052         (the other part of the fix for #78812).  Should probably make sure
3053         we don't need the analogous fix in the ItemDeleted case.
3054
3055         * DataGrid.cs:
3056         - in SetDataSource, work around the fact that the way
3057         OnBindingContextChanged is invoked will cause us to re-enter this
3058         method.  I'll remove the hack once I investigate
3059         OnBindingContextChanged.
3060
3061         - fix the logic in set_DataSource and set_DataMember (basically
3062         what to do if the other of the two is null.)
3063         
3064         - in OnListManagerItemChanged, we need to take into account the
3065         edit row when deciding whether or not to call RecreateDataGridRows
3066         (part of the fix for #78812).
3067
3068 2006-09-01  Jackson Harper  <jackson@ximian.com>
3069
3070         * Splitter.cs: Don't do anything if there is no control to affect
3071         (prevents us from crashing in weird tet cases).
3072         * TreeView.cs: Bounding box for the mouse movement reverting
3073         focus/selection back to previously selected node.  This matches
3074         MS, and makes the tree a lot more useable.
3075         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
3076         use clipping so they are not drawn.  This fixes when the control
3077         is set to have a transparent background, or if it was over an
3078         image.
3079
3080 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
3081
3082         * MimeIcon.cs: Improved handling for reading default icons when
3083           using gnome (2.16 made it necessary). Check and read svg icons
3084           first, then 48x48 and then 32x32 icons.
3085
3086 2006-08-31  Chris Toshok  <toshok@ximian.com>
3087
3088         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
3089         visible.
3090
3091         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
3092         ProcessKeyPreview.  Fixes part of #77806.
3093
3094         * DataGrid.cs: big patch.
3095
3096         - revert the queueing up of DataSource/DataMember if inside
3097         BeginInit/EndInit calls.  That's not the way the datagrid achieves
3098         its delayed databinding.  Instead, call SetDataSource in
3099         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
3100         #78811.
3101
3102         - Also, it wasn't mentioned in #78811, but the test case exhibits
3103         behavior that was lacking in our datagrid implementation - Columns
3104         that have mapping names that don't exist in the datasource's
3105         properties aren't shown.  Yuck.  To fix this I added the bound
3106         field to the column style, and basically any calculation to figure
3107         out anything about columns uses a loop to find the bound columns.
3108         still need to investigate if I can cache an array of the bound
3109         columns or if the indices must be the same.
3110
3111         - When setting CurrentCell, we no longer abort if the cell being
3112         edited was in the add row.  This fixes the other part of #77806.
3113
3114         - The new code also fixes #78807.
3115         
3116         * ThemeWin32Classic.cs: perpetrate the same disgusting
3117         column.bound field hack, and only render bound fields.
3118
3119 2006-08-31  Chris Toshok  <toshok@ximian.com>
3120
3121         * DataGridColumnStyle.cs: add bound field.  this field is true if
3122         the datasource has a property corresponding to the mapping name.
3123
3124         * DataGridTableStyle.cs: set the bound field on the column styles
3125         depending on whether or not we have a column for that property.
3126
3127 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
3128
3129         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
3130           splitter control (fixes #79228)
3131
3132 2006-08-31  Chris Toshok  <toshok@ximian.com>
3133
3134         * DataGridColumnStyle.cs: we need to delay the assignment of
3135         property descriptor until the last possible moment due to the lazy
3136         databinding stuff in the datagrid.  Also, fix the exceptions
3137         thrown by CheckValidDataSource to match MS.
3138
3139 2006-08-31  Jackson Harper  <jackson@ximian.com>
3140
3141         * Form.cs: When activated select the active control, if there is
3142         no active control, we select the first control.
3143         * XplatUIX11.cs: If there is no focus control when we get a
3144         FocusIn event, find the toplevel form and activate it.  This
3145         occurs when you popup a window, it becomes the focus window, then
3146         you close that window, giving focus back to the main window.
3147
3148 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3149
3150         * MonthCalendar.cs: 
3151         * ThemeWin32Classic.cs: Cache Font in bold style, as well
3152         as StringFormat with Center alignments in MonthCalendar,
3153         instead of creating new ones when drawing the control. 
3154         Also, draw the month name in bold style.
3155
3156 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
3157
3158         * Control.cs:
3159           - PerformLayout(): It would seem MS performs the fill even if the 
3160             control is not visible (part of #79218 fix)
3161           - ResetBackColor(): Use the setter to reset the color, to allow
3162             overriders to catch the change.
3163         * Form.cs:
3164           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
3165           - CreateHandle(): dito (part of $79218 fix)
3166           - Don't set an icon if we have a dialog
3167         * ScrollableControl.cs:
3168           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
3169           - ScrollIntoView(): No need to scroll if control is already visible
3170             (resolves fixme and fixes #79218)
3171
3172 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3173
3174         * MonthCalendar.cs: Change proportions in SingleMonthSize
3175         to match the aspect of the original control.
3176
3177 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
3178
3179         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
3180           get updated when they get maximized.
3181
3182 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
3183
3184         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
3185
3186 2006-08-29  Chris Toshok  <toshok@ximian.com>
3187
3188         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
3189
3190 2006-08-29  Jackson Harper  <jackson@ximian.com>
3191
3192         * TreeView.cs: Need to track selected node and highlighted node,
3193         they aren't always the same thing, when the mouse is down on a
3194         node it is hilighted, but not selected yet.
3195         - Do the HideSelection stuff right
3196         - Need to focus on rbutton mouse down. And redraw selection when
3197         right click is mouse upped.
3198
3199 2006-08-29  Mike Kestner  <mkestner@novell.com>
3200
3201         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
3202         when SubItems.Count < Columns.Count.  [Fixes #79167]
3203
3204 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
3205
3206         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
3207
3208 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
3209
3210         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
3211           from X. Only send based on ConfigureNotify if we don't have the
3212           correct location in hwnd (if the window manager moved us)
3213
3214 2006-08-28  Mike Kestner  <mkestner@novell.com>
3215
3216         * ListView.cs: remove a TODO. 
3217         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
3218         [Fixes ListView part of #79166]
3219
3220 2006-08-28  Mike Kestner  <mkestner@novell.com>
3221
3222         * ListView.cs: move wheel handler to parent since it is focused
3223         instead of the item_control now.  [Fixes #79177]
3224
3225 2006-08-28  Mike Kestner  <mkestner@novell.com>
3226
3227         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
3228         when the control is focused. [Fixes #79171]
3229
3230 2006-08-28  Mike Kestner  <mkestner@novell.com>
3231
3232         * ListView.cs: size the item and header controls for empty and
3233         unscrollable views.
3234         * ThemeWin32Classic.cs: draw disabled backgrounds.
3235         [Fixes #79187]
3236
3237 2006-08-28  Chris Toshok  <toshok@ximian.com>
3238
3239         * Form.cs: remove unused "active_form" static field.
3240
3241         * Hwnd.cs: lock around accesses to static windows collection.
3242
3243         * Application.cs: lock threads in Exit ().
3244
3245 2006-08-28  Chris Toshok  <toshok@ximian.com>
3246
3247         * NativeWindow.cs: lock around accesses to window_collection.
3248         
3249 2006-08-28  Chris Toshok  <toshok@ximian.com>
3250
3251         * Control.cs: err, fix this the right way, by locking on controls
3252         when using it.  not by making it synchronized.
3253
3254 2006-08-28  Chris Toshok  <toshok@ximian.com>
3255
3256         * Control.cs: make the static "controls" field synchronized, as it
3257         gets updated from multiple threads.
3258
3259 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
3260
3261         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
3262           Prevent other threads from exiting when calling thread sets quit state.
3263         * XEventQueue.cs: Added PostQuitState property
3264
3265 2006-08-27  Chris Toshok  <toshok@ximian.com>
3266
3267         * AsyncMethodData.cs: add a slot for the window handle.
3268
3269         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
3270         window (the destination control's window, not the foster window).
3271
3272         * Control.cs (BeginInvokeInternal): store the window's handle in
3273         the AsyncMethodData.
3274         
3275
3276 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
3277
3278         * XplatUIX11.cs:
3279           - PostQuitMessage: Removed resetting S.D display handle, we might have
3280             another loop started after calling PostQuitMessage (Fixes #79119)
3281           - Created destructor to reset S.D handle
3282
3283 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
3284
3285         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
3286
3287 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3288
3289         * TextControl.cs (Insert): Update the caret position even if we don't
3290           have a handle yet, just don't call the driver in that case.
3291         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
3292           to the end of the new selection text (Fixes #79184)
3293
3294 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3295
3296         * Form.cs (Activate): Only activate if the handle is created)
3297         * Control.c:
3298           - Mark window as invisible when it's disposed
3299           - Check if window handle is created when setting window visible, 
3300             instead of relying just on the is_created variable
3301           - Check if object is disposed when creating the control (Fixes #79155)
3302
3303 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3304
3305         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
3306           when allowing layout again. Otherwise we re-generate the anchoring 
3307           distance to the border again and actually alter what the user wanted
3308           This is ugly, it'd be better if we used DisplayRectangle instead of
3309           ClientRectangle for Control.UpdateDistances, but that causes us to
3310           have other problems (initial anchoring positons would be wrong)
3311           (Fixes #78835)
3312
3313 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3314
3315         * Control.cs:
3316           - The size and location setters shouldn't go directly to 
3317             SetBoundsCore, but to SetBounds, which triggers layout on the
3318             parent, then calls SetBoundsCore. (Related to fix for #78835)
3319           - SetBounds: Moved actual location update code into this function
3320             from SetBoundsCore, to match MS. Added call to PerformLayout if
3321             we have a parent (to trigger resizing of anchored parents if the 
3322             child size has changed (see testcase for #78835) 
3323         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
3324           new control code
3325         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
3326
3327 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3328
3329         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
3330           System.Drawing when a toplevel window gets closed; there might
3331           be other toplevel windows belonging to the same app (Fixes #78052)
3332
3333 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
3334
3335         * FileDialog.cs: After reading FileDialog settings from mwf_config
3336           use Desktop prefix only if a real folder doesn't exist anymore.
3337         * FontDialog.cs: Added char sets.
3338           It is now possible to select the font, size or style with the
3339           textboxes.
3340
3341 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
3342
3343         * PrintPreviewDialog.cs: Use assembly name constants.
3344
3345 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3346
3347         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
3348           scrollbar from whacking it's buttons)
3349
3350 2006-08-24  Chris Toshok  <toshok@ximian.com>
3351
3352         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
3353         in this patch (aggregating setting Left/Top/Width/Height to
3354         setting Bounds on the scrollbars), but the crux of the fix is in
3355         Recalculate, where we scroll by the remaining scroll_position if
3356         we're hiding a scrollbar.  The 2*$5 reward in the comment is
3357         serious.
3358
3359 2006-08-24  Jackson Harper  <jackson@ximian.com>
3360
3361         * MdiClient.cs:
3362         * MdiWindowManager.cs: If the form is made a non-mdi window we
3363         need to remove the form closed event so that closing forms works
3364         correctly.
3365
3366 2006-08-24  Jackson Harper  <jackson@ximian.com>
3367
3368         * Control.cs: Make IsRecreating internal so that the driver can
3369         check it
3370         - Temporarily remove the Hide when controls are removed, its
3371         making a whole bunch of things not work because visibility isn't
3372         getting reset elsewhere correctly
3373         * Form.cs: Need to do a full handle recreation when the mdi parent
3374         is set.
3375         * XplatUIX11.cs: If we are recreating handles don't dispose the
3376         HWNDs.  What was happening is the handles were being recreated in
3377         SendWMDestroyMessages, but then flow continued on in that method
3378         and destroyed the new handles.
3379
3380 2006-08-23  Jackson Harper  <jackson@ximian.com>
3381
3382         * Form.cs: MdiClient is always at the back of the bus
3383         * Control.cs: When the order of items in the collection is changed
3384         we need to reset the all_controls array
3385         - do the same sorta setup thats done when adding a control when a
3386         control is set on the collection.
3387
3388 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
3389
3390         * TextBoxBase.cs (get_Text): Return an empty array if our document
3391           is empty (fixes #79052)
3392
3393 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3394
3395         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
3396           on WM_SYSCHAR messages (fixes #79053)
3397
3398 2006-08-23  Chris Toshok  <toshok@ximian.com>
3399
3400         * DataGrid.cs: fix flickering when scrolling vertically.
3401
3402 2006-08-23  Chris Toshok  <toshok@ximian.com>
3403
3404         * DataGrid.cs (EndEdit): only invalidate the row header when we
3405         need to.
3406
3407 2006-08-23  Chris Toshok  <toshok@ximian.com>
3408
3409         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
3410         methods.  fixes the flicker when scrolling around.
3411
3412 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3413
3414         * FileDialog.cs: Making sure the control is created before we get a 
3415           chance to use it with BeginInvoke (Fixes #79096)
3416
3417 2006-08-23  Chris Toshok  <toshok@ximian.com>
3418
3419         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
3420         width to use when painting the rows.
3421
3422 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
3423
3424         * TextBoxBase.cs:
3425           - Throw ArgumentException if a negative value is passed to SelectionLength
3426           - Update the selection end if start is moved. end needs to be always
3427             after start. (Fixes #79095)
3428           - Track selection length; MS keeps the selection length even if start
3429             is changed; reset on all other operations affection selection
3430
3431 2006-08-22  Jackson Harper  <jackson@ximian.com>
3432
3433         * TreeView.cs: Make sure both scrollbars get displayed and sized
3434         correctly when the other bar is visible.
3435         - Use the original clip rectangle for checking if the area between
3436         the two scrollbars is visible, not the viewport adjusted clipping
3437         rectangle.
3438
3439 2006-08-22  Jackson Harper  <jackson@ximian.com>
3440
3441         * Binding.cs: We don't use IsBinding because it requires the
3442         control to be created, which really shouldn't be necessary just to
3443         set a property on the control.
3444
3445 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3446
3447         * ComboBox.cs: Some CB.ObjectCollection methods must throw
3448         ArgumentNullReferenceException when the argument is null.
3449
3450 2006-08-21  Jackson Harper  <jackson@ximian.com>
3451
3452         * Timer.cs: Track the thread that the timer is started in (NOT
3453         CREATED), this way messages for it will only be triggered on its
3454         queue.
3455         * XEventQueue.cs: Track the timers here, this makes timers per
3456         thread, like MS.
3457         * XplatUIX11.cs: The timers are moved to the XEventQueue.
3458
3459 2006-08-19  Chris Toshok  <toshok@ximian.com>
3460
3461         * XplatUIX11.cs: after further communication with pdb, we get the
3462         best of both worlds.  SetZOrder working for un-Mapped windows, and
3463         no X errors for un-mapped windows.
3464
3465 2006-08-19  Chris Toshok  <toshok@ximian.com>
3466
3467         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
3468         as it was causing pdn toolbars to not have the correct stacking.
3469
3470 2006-08-18  Mike Kestner  <mkestner@novell.com> 
3471
3472         * ListView.cs : guard against negative ClientArea.Width in scrollbar
3473         calculation.  Not sure why control should ever be setting a negative
3474         width though.  Fixes #78931.
3475
3476 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3477
3478         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
3479         null items in ObjectCollection class.
3480         * ListBox.cs.: Likewise.
3481
3482 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
3483
3484         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
3485           as the base method in ThemeWin32Classic should work fine.
3486           Fixed bug #78607.
3487
3488 2006-08-18  Jackson Harper  <jackson@ximian.com>
3489
3490         * Binding.cs: When validating if the value entered doesn't convert
3491         properly reset to the old value.
3492         * RadioButton.cs: Don't fire click when we get focus.
3493
3494 2006-08-18  Jackson Harper  <jackson@ximian.com>
3495
3496         * FileDialog.cs: Paint the selection on the directory combobox the
3497         same way as on MS. 
3498
3499 2006-08-17  Jackson Harper  <jackson@ximian.com>
3500
3501         * ErrorProvider.cs: Don't allow the error control to be selected.
3502         * Control.cs: Don't send the SetFocus messages, the control
3503         activation will do this, and if we do it blindly here validation
3504         does not work.
3505
3506 2006-08-17  Jackson Harper  <jackson@ximian.com>
3507
3508         * Control.cs:
3509         * ContainerControl.cs: Make validation events fire in the correct
3510         order.  TODO: For some reason the first validation event is not
3511         getting fired.
3512
3513 2006-08-17  Mike Kestner  <mkestner@novell.com> 
3514
3515         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
3516
3517 2006-08-17  Mike Kestner  <mkestner@novell.com> 
3518
3519         * ComboBox.cs : implement scroll wheel support for popped-down
3520         state. Fixes #78945. 
3521
3522 2006-08-17  Jackson Harper  <jackson@ximian.com>
3523
3524         * TreeView.cs: Specify treeview actions (old patch that didn't get
3525         committed for some reason).
3526         - Don't let the mouse wheel scroll us too far.  Just want to make
3527         the bottom node visible, not scroll it all the ways to the top.
3528
3529 2006-08-17  Jackson Harper  <jackson@ximian.com>
3530
3531         * XplatUIX11.cs: Mouse wheel events go to the focused window.
3532
3533 2006-08-17  Mike Kestner  <mkestner@novell.com> 
3534
3535         * ComboBox.cs : don't do mouseover selection in simple mode.
3536
3537 2006-08-16  Jackson Harper  <jackson@ximian.com>
3538
3539         * Form.cs: Fire the closing events for all the mdi child windows
3540         when a window is closed.  If the cancel args are set to true, the
3541         main window still gets the event fired, but it doesn't not close.
3542         * MdiWindowManager.cs: Do this closing cleanup in a Closed
3543         handler, instead of when the button is clicked, so cancelling the
3544         close works correctly.
3545         * ComboBox.cs: Send the mouse down to the scrollbar.
3546
3547 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3548
3549         * ListBox.cs: When passing 'null' to SelectedItem,
3550         set SelectedIndex to -1, to unselect items. This is the
3551         observed behaviour in .Net.
3552
3553 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
3554
3555         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
3556           MS flags saying there won't be any. (fixes #78800)
3557         * Control.cs (HandleClick): Made virtual
3558
3559 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
3560
3561         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
3562           cultures. Fixed bug #78399.
3563
3564 2006-08-16  Jackson Harper  <jackson@ximian.com>
3565
3566         * Form.cs: Use the MdiClients MdiChildren property to access
3567         MdiChildren instead of creating the array from the child controls.
3568         * MdiClient.cs: Maintain a separate array of the mdi children, so
3569         that insertion order is maintained when the Z-order is changed.
3570
3571 2006-08-16  Mike Kestner  <mkestner@novell.com> 
3572
3573         * ListView.cs : add an ItemComparer and default to it for sorting.
3574         Fixes #79076, but sorting needs a complete overhaul to be compat with
3575         MS.
3576
3577 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
3578
3579         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
3580
3581 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
3582
3583         * Hwnd.cs (Mapped): Properly traverse the tree
3584
3585 2006-08-15  Chris Toshok  <toshok@ximian.com>
3586
3587         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
3588         pass manager.Current.GetType() to ParseData.  It has to be the
3589         property type.  So, hold off doing the ParseData until we're in
3590         SetPropertyValue where we know the type.  This fixes the crash in
3591         #78821 but the textbox is still empty.
3592
3593 2006-08-15  Chris Toshok  <toshok@ximian.com>
3594
3595         * DataGrid.cs:
3596         - when we're scrolling, only call Edit() again if the
3597         current cell is still unobscured. Fixes bug #78927.
3598         - when handling mousedown on a cell, ensure the cell is visible
3599         before calling Edit.
3600         - remove the properties from DataGridRow, and remove the
3601         DataGridParentRow class altogether.
3602         
3603
3604 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
3605
3606         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
3607           fire OnTextChanged by ourselves. There's no point calling base,
3608           we don't set the base value anywhere else. Fixes #78773.
3609
3610 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3611
3612         * ListBox.cs: Call CollectionChanged when modifying
3613         an item from Items indexer, to update the actual items
3614         in the list box.
3615
3616 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3617
3618         * PrintDialog.cs: Small fixes for focus and a pair of checks,
3619         to match .Net behaviour.
3620
3621 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
3622
3623         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
3624
3625 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
3626
3627         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
3628
3629 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
3630
3631         * MessageBox.cs: Prevent potential NRE exception.
3632         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
3633
3634 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
3635
3636         * MessageBox.cs: Calculate the owner of a messagebox, also make
3637           it topmost. Fixes #78753
3638
3639 2006-08-14  Chris Toshok  <toshok@ximian.com>
3640
3641         * XplatUIX11.cs: A couple of fixes so that metacity will let us
3642         programmatically move windows.  first, set the PPosition hint as
3643         well as the USPosition hint.  Second include some code from pdb
3644         that sets the window type to NORMAL when we set the transient for
3645         hint.  This is because, in the absence of a window type, metacity
3646         thinks any window with TransientFor set is a dialog, and refuses
3647         to let us move it programmatically.  fascists.
3648
3649 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
3650
3651         * XplatUIX11.cs: When setting normal hints, take into consideration
3652           an different hints previously set so we don't delete them (fixes #78866)
3653
3654 2006-08-12  Chris Toshok  <toshok@ximian.com>
3655
3656         * ToolBarButton.cs: make Layout return a boolean, if something to
3657         do with the button's layout changed.
3658
3659         * ToolBar.cs:
3660         - add another parameter to Redraw, @force, which all existing
3661           calls set to true.
3662         - make the Layout function return a boolean which is true if the
3663           layout has actually changed.  Redraw now uses this (and @force)
3664           to determine when to invalidate.  At present the only place
3665           where @force can be false is the call from OnResize, when
3666           background_image == null.  So, resizing a toolbar when the
3667           layout doesn't change results in no drawing.
3668
3669 2006-08-12  Chris Toshok  <toshok@ximian.com>
3670
3671         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
3672         the VScrollBar and HScrollbar reversed.  oops.
3673
3674         * DataGrid.cs: fix the logic that assigns sizes to the implicit
3675         scrollbars.  we were assigning them twice (once in
3676         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
3677         therefore causing two scrollbar resizes (and redraws?) to happen
3678         per grid resize.
3679
3680 2006-08-12  Chris Toshok  <toshok@ximian.com>
3681
3682         * ToolBarButton.cs: redraw the entire button if the theme tells us
3683         to.
3684
3685         * Theme.cs: add ToolBarInvalidateEntireButton.
3686
3687         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
3688         buttons, just the border.
3689
3690         * ThemeNice.cs: redraw the entire toolbar button since we need to
3691         draw the highlight image.
3692
3693         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
3694         we need to redraw the entire button (not just the border).
3695
3696 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
3697
3698         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
3699           for vertical bars. Fixes the mismatches shown by #78513
3700
3701 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
3702
3703         * FileDialog.cs: If a saved/remembered path doesn't exist
3704           anymore, fall back to "Desktop".
3705
3706 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
3707
3708         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
3709           parent. It's apparently legal to not have one
3710         * XplatUIX11.cs:
3711           - SetZOrder: Don't try to set Z-Order on an unmapped window
3712           - CreateWindow: 0,0 are legal coordinates for a window. don't move
3713             it unless the coordinates are negative
3714
3715 2006-08-10  Mike Kestner  <mkestner@novell.com>
3716
3717         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
3718         when setting to null per msdn docs.  Fixes #78854.
3719
3720 2006-08-10  Chris Toshok  <toshok@ximian.com>
3721
3722         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
3723         flickering by setting a clip rectangle on the Graphics when we
3724         need to redraw just a particular menuitem.  Also, rename "OnClick"
3725         to "OnMouseDown" to reflect what it actually is.
3726         
3727         * Form.cs: track the OnMouseDown change.
3728
3729 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
3730
3731         * CommonDialog.cs: Properly inherit the CreateParams from the form
3732           and only change what we need. Fixes #78865
3733
3734 2006-08-10  Chris Toshok  <toshok@ximian.com>
3735
3736         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
3737         flickering in flat mode (and most of the flickering in general) by
3738         only invalidating the button border (and not the entire rectangle)
3739         when the state changes.  A couple of cases still flicker:
3740         ToggleButtons, and the dropdown arrow case when the user mouse
3741         ups.
3742
3743 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
3744
3745         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
3746           for german keyboards. Numlock state shouldn't affect the behaviour
3747           of the Del key. Fixes bug #78291.
3748
3749 2006-08-10  Chris Toshok  <toshok@ximian.com>
3750
3751         * ListControl.cs: remove the items.Clear line from BindDataItems,
3752         as this is the first thing done by both subclasses in their
3753         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
3754         passed -1, refresh the list.  This gets databinding working when
3755         the datasource is set on the list before the datasource is
3756         populated (as in wf-apps/ReportBuilder.)
3757
3758         * ComboBox.cs: remove the argument to BindDataItems.  This call
3759         should really go away, and be initiated by the ListControl code.
3760
3761         * ListBox.cs: same.
3762
3763 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
3764
3765         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
3766           if no data is in the document when the control is displayed
3767
3768 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
3769
3770         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
3771           yes (fixes #78806)
3772         * TextControl.cs: 
3773           - PositionCaret: Allow positioning of caret but don't call methods 
3774             requiring a handle if the window isn't created yet
3775           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
3776           - owner_HandleCreated: Don't position the caret, just update it's 
3777             location. User might have already set a different position
3778
3779 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
3780
3781         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
3782           windows. Screws up the returned coordinates for child windows. 
3783           Fixes #78825. I'm hoping this doesn't break something, since the
3784           code was explicitly put in 8 months ago, but no bug was attached.
3785           Menus still seem to work properly.
3786
3787 2006-08-08  Chris Toshok  <toshok@ximian.com>
3788
3789         * DataGrid.cs: make BeginInit/EndInit actually do what they're
3790         supposed to do - delay data binding until the EndInit call.  Also,
3791         make the table style collection's CollectionChangeAction.Refresh
3792         work properly.
3793
3794         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
3795         (with action = Refresh) when a consituent table's MappingName is
3796         changed.
3797
3798 2006-08-08  Chris Toshok  <toshok@ximian.com>
3799
3800         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
3801         Invalidate, since changing the text can change the size of the all
3802         toolbar buttons.
3803
3804 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
3805
3806         * Form.cs (AddOwnedForm): Still need to add the form to our listif
3807           we don't have it yet
3808
3809 2006-08-08  Chris Toshok  <toshok@ximian.com>
3810
3811         * PrintControllerWithStatusDialog.cs: don't .Close() the status
3812         dialog, as this causes X errors later on, since we actually
3813         destroy the window.  Instead, .Hide() it.
3814
3815 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
3816
3817         * ComboBox.cs: Added focus reflection for popup window
3818         * XplatUIX11.cs: 
3819           - Removed transient setting for non-app windows for now, not sure it
3820             was needed
3821           - Fixed logic checking if we have captions when deciding 
3822             override_redirect, WS_CAPTION is two bits and a 0 check was not
3823             sufficient
3824           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
3825             complicated
3826         * Form.cs: 
3827           - AddOwnedForm: Don't just add the form to the list, call the property
3828             to ensure the driver is informed about the ownership as well
3829           - CreateHandle: Set the TopMost status in the driver if we have an owner
3830         * XplatUI.cs: Fixed debug statement
3831
3832 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
3833         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
3834           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
3835           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
3836           TrackBarRenderer.cs: Make constructor private.
3837         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
3838         * ProfessionalColorTable.cs: Make properties virtual.
3839
3840 2006-08-06  Duncan Mak  <duncan@novell.com>
3841
3842         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
3843         is not changing.
3844
3845 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3846         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
3847           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
3848           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
3849           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
3850           Initial import of new 2.0 classes.
3851
3852 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3853         * Application.cs: Add 2.0 VisualStyles properties.
3854
3855 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3856         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
3857           XplatUIX11.cs: Create property to allow access to existing private
3858           variable "themes_enabled"
3859
3860 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3861
3862         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
3863         file size, as otherwise our class libraries fail using windows. Fixes
3864         bug #78759.
3865
3866 2006-08-04  Jackson Harper  <jackson@ximian.com>
3867
3868         * Form.cs:
3869         * XplatUIX11.cs: Move the toolwindow window manager creation into
3870         the X11 driver, this way on win32 we can let windows create/handle
3871         the toolwindows.
3872
3873 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3874
3875         * PrintDialog.cs: Remove some redundant checks, add some others,
3876         clean some code, and move the focus to the text boxes when the
3877         values are incorrect.
3878
3879 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
3880
3881         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
3882
3883 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
3884
3885         * NumericUpDown.cs: Setting the Minimum and Maximum is now
3886           handled correctly. Fixes bug #79001.
3887
3888 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3889
3890         * PrintDialog.cs: The "Copies" numeric up down must have
3891         set the Minimum property to 1; only if the value is bigger
3892         than 1, activate "Collate" check box. This is the behaviour of .Net.
3893         Also modify the Document elements only if it is not null.
3894
3895 2006-08-03  Jackson Harper  <jackson@ximian.com>
3896
3897         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
3898         length. (We have a larger array then actual node count).
3899                 
3900 2006-08-03  Jackson Harper  <jackson@ximian.com>
3901
3902         * ComboBox.cs: Don't show selection by default.
3903         - The SelectAll isn't needed here, since the focus code should do
3904         that
3905         - DDL style lists to manual selection drawing, so when they
3906         get/lose focus they have to invalidate.
3907
3908 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
3909
3910         * TextBoxBase.cs: Don't always show all selections by default.
3911
3912 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
3913         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
3914           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
3915           Fixed various typos.
3916
3917 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
3918
3919         * Control.cs: Removing the controls in a ControlCollection with
3920           Clear now hides the controls as expected. Fixes bug #78804. 
3921
3922 2006-08-03  Jackson Harper  <jackson@ximian.com>
3923
3924         * Control.cs: Revert previous focus patch, it breaks reflector.
3925
3926 2006-08-03  Jackson Harper  <jackson@ximian.com>
3927
3928         * ComboBox.cs: Cleanup selection and focus with the combobox.
3929         This also eliminates some duplicated keyboard code, since now
3930         everything is handled by the main class.
3931         - Make list selection work on mouse up instead of down, to match
3932         MS.
3933
3934 2006-08-02  Jackson Harper  <jackson@ximian.com>
3935
3936         * Control.cs: Setting focus needs to go through the whole
3937         selection mechanism.
3938
3939 2006-08-02  Chris Toshok  <toshok@ximian.com>
3940
3941         * PrintPreviewDialog.cs: change MinimumSize to use
3942         base.MinimumSize so it works.
3943
3944 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
3945
3946         * TextControl.cs:
3947           - UpdateCaret: Added sanity check in case caret isn't defined yet
3948           - Line.Delete: Now updating selection and caret markers if we're
3949             transfering a node (Properly fixes #78323)
3950           - SetSelectionEnd: Added sanity check
3951         * TextBoxBase.cs: Removed broken attempt to fix #78323
3952
3953 2006-08-01  Chris Toshok  <toshok@ximian.com>
3954
3955         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
3956         Close() call is handled in Form, not here.
3957
3958 2006-08-01  Chris Toshok  <toshok@ximian.com>
3959
3960         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
3961         layout/rendering.
3962
3963         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
3964         for sizes < 100% zoom.  The code now aggressively attempts to keep
3965         from calling document.Print (), and tries not to use the scaling
3966         g.DrawImage whenever possible (it still does if you scale to >
3967         100%, since usually that involves huge images).
3968
3969         * PrintPreviewControl.cs: hook up the close button.
3970
3971 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
3972         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
3973           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
3974           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
3975           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
3976           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
3977           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
3978           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
3979           Removed [Serializable] for 2.0 Event Handlers.
3980
3981 2006-07-31  Jackson Harper  <jackson@ximian.com>
3982
3983         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
3984         * TextControl.cs: Uncomment out the body of this method.
3985
3986 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
3987
3988         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
3989           standard cursors.
3990
3991 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3992
3993         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
3994           that embed TextBox and need selections visible even if textbox is not
3995           focused to enforce that behaviour.
3996         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
3997           selection drawing
3998
3999 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4000
4001         * TextControl.cs:
4002           - Added new SetSelectionStart/SetSelectionEnd overloads
4003           - Fixed viewport width assignment to be accurate
4004           - Adjusted alignment line shift calculations to allow cursor on right
4005             aligned lines to be always visible at the right border (like MS)
4006         * TextBoxBase.cs:
4007           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
4008           - TextBoxBase_SizeChanged: recalculating canvas on size changes
4009           - CalculateScrollBars: Use ViewPort size instead of window size, to
4010             properly consider space occupied by the border and scrollbars 
4011             (Fixes #78661)
4012           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
4013             calculations; no longer leaves artifacts
4014           - CaretMoved: Adjusted window scrolling to match MS and fixed several
4015             calculation bugs (Still missing right/center align calculations)
4016
4017 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
4018
4019         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
4020           use of both scroll rect and clip rect, as they do the same.
4021
4022 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
4023
4024         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
4025           in the event handler (fixes #78912)
4026
4027 2006-07-31  Chris Toshok  <toshok@ximian.com>
4028
4029         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
4030         grid.ListManager.Count, since grid.ListManager might be null.
4031         This of course begs the question "why are we drawing rows for a
4032         grid with no list manager (and therefor no rows)?"  Fixes the
4033         crash in bug #78929.
4034
4035 2006-07-31  Chris Toshok  <toshok@ximian.com>
4036
4037         * RelatedPropertyManager.cs: Don't always chain up to the parent
4038         ctor.  instead, call SetDataSource if the parent's position is !=
4039         -1.  Fixes the crash in #78822.
4040
4041 2006-07-31  Chris Toshok  <toshok@ximian.com>
4042
4043         * DataGrid.cs (get_ListManager): use field instead of property
4044         accessors for datasource and datamember.
4045         (RowsCount): make internal again.
4046         (OnMouseDown): end edits before resizing columns/rows.
4047         (OnMouseUp): restart edits after resizing columns/rows.
4048
4049 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
4050
4051         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
4052           This fixes the situation where the last set cursor is displayed
4053           whenever the mouse is over scrollbars.
4054
4055 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4056
4057         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
4058         Document properties, as well as initial values.
4059
4060 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
4061
4062         * XplatUIWin32.cs (SetBorderStyle): Setting both border
4063           and ClientEdge results in a 3-pixel border, which is
4064           wrong.
4065
4066 2006-07-28  Jackson Harper  <jackson@ximian.com>
4067
4068         * TreeNodeCollection.cs: Fix the clear method.
4069         - Fix the Shrink also
4070
4071 2006-07-27  Jackson Harper  <jackson@ximian.com>
4072
4073         * TreeView.cs: Make sure the visible order is computed when we
4074         attempt to size the scrollbars (for trees that mess with the
4075         scrolling when they shouldn't.
4076         - Make sure to give the scrollbars valid values.
4077
4078 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
4079
4080         * XplatUIX11.cs: Move motion compression code to where it
4081           has less performance impact
4082
4083 2006-07-26  Jackson Harper  <jackson@ximian.com>
4084
4085         * UpDownBase.cs: When the control is selected make the child
4086         controls non selectable, so that a click on them won't do a
4087         focus/unfocus cycle.
4088         - Don't give focus to the text box when the spinner is selected.
4089         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
4090
4091 2006-07-26  Chris Toshok  <toshok@ximian.com>
4092
4093         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
4094         satisfied with this solution.  If the bitmaps are small, we should
4095         just cache them in the PrintPreviewDialog and draw them here.
4096         Also, the layout is broken for the 2-up and 3-up cases.
4097
4098         * Theme.cs: add PrintPReviewControlPaint.
4099
4100         * PrintPreviewDialog.cs: first pass implementation.
4101
4102         * PrintPreviewControl.cs: first pass implementation.  No
4103         scrollbars yet.
4104
4105         * PrintDialog.cs: only validate fields if that particular portion
4106         of the UI is enabled.  Also, set the document's controller to a
4107         PrintControllerWithStatusDialog wrapping the document's print
4108         controller.
4109
4110         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
4111         bring up a SaveFileDialog (i hope we don't want to match the
4112         behavior of the crappy windows file entry) and set the
4113         PrinterSettings.PrintFileName accordingly.
4114
4115 2006-07-26  Jackson Harper  <jackson@ximian.com>
4116
4117         * ContainerControl.cs: Add a field that disables auto selecting
4118         the next control in a container when the container is activated.
4119         * UpDownBase.cs: Don't select the text box when the up down is
4120         selected.
4121
4122 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
4123
4124         * XEventQueue.cs: Added methods for peeking (used for compression
4125           of successive events)
4126         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
4127           mouse move events (fixes #78732)
4128
4129 2006-07-25  Jackson Harper  <jackson@ximian.com>
4130
4131         * UpDownBase.cs: Use an internal class for the textbox so that we
4132         can control focus.  the updown control should always have focus,
4133         if either the text area or the buttons are clicked.
4134         - Send the key messages to the textbox, since it never actually
4135         has focus
4136         - Activate and decativate the textbox caret.
4137
4138 2006-07-24  Jackson Harper  <jackson@ximian.com>
4139
4140         * Control.cs: Use the directed select when selecting a control,
4141         this way the container controls override will get called and the
4142         whole ActiveControl chain will get triggered.  TODO: probably need
4143         to make sure this gets done everywhere instead of the old
4144         Select(Control).
4145         * ContainerControl.cs: Implement the directed Select method to
4146         find and activate the correct child control.    
4147         
4148 2006-07-22  Mike Kestner  <mkestner@novell.com>
4149
4150         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
4151         menu handling code so that clicks without a grab work too.
4152         [Fixes #78914]
4153
4154 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
4155
4156         * FileDialog.cs: Enable the BackButton when dirstack has one element.
4157           Added some small optimizations.
4158
4159 2006-07-21  Matt Hargett  <matt@use.net>
4160
4161         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
4162
4163 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
4164
4165         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
4166           tests pass and match MS in some strange border cases.
4167
4168 2006-07-21  Chris Toshok  <toshok@ximian.com>
4169
4170         * ThemeWin32Classic.cs: handle drawing of the relation links and
4171         parent row buttons.
4172
4173         * Theme.cs: change args to DataGridPaintParentRow.
4174
4175         * DataGrid.cs: Don't use controls for the relation links and
4176         parent buttons, so we have to handle all their interactions in
4177         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
4178         when we're navigating through child tables, so we can reinstate
4179         selection, expanded state, current cell, etc.
4180
4181 2006-07-20  Chris Toshok  <toshok@ximian.com>
4182
4183         * ToolBar.cs: When we redraw a button, for whatever reason,
4184         there's no reason to redraw the entire toolbar.  Also, don't call
4185         Control.Refresh from within Redraw, as it's much heavier than
4186         Invalidate (which is really what we want).
4187
4188 2006-07-20  Chris Toshok  <toshok@ximian.com>
4189
4190         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
4191         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
4192         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
4193         traces from within a debug IBindingList datasource
4194         (in mono/winforms/datagrid) for *days*, I've finally gotten things
4195         to work in a similar fashion.
4196
4197 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4198
4199         * ListBox.cs: Don't call Sort () when setting 
4200         the Sorted property to false (avoid an unnecessary sort).
4201
4202 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4203
4204         * ListControl.cs: DataSource should throw an ArgumentException
4205         instead of a normal exception when the argument is not of the 
4206         correct type.
4207
4208 2006-07-20  Mike Kestner  <mkestner@novell.com>
4209
4210         * Control.cs: add InternalPreProcessMessage to allow us to steal
4211         key events before MWF gets its paws on them.  Adapted from a
4212         suggestion by eno.
4213         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
4214         up/down/left/right navigation. Override the new internal control
4215         method to steal the events since they never make it to WndProc.
4216         * ToolBarButton.cs: don't worry about pushed when setting hilight
4217         since the drawing code prefers pushed to hilight. Invalidate on 
4218         Hilight changes. Fixes #78547 and #78525.
4219
4220 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
4221
4222         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
4223           the canvas size. Fixes #78868
4224
4225 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
4226
4227         * Splitter.cs: Track requested split position until first layout
4228           is performed. Fixes #78871
4229
4230 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
4231
4232         * Application.cs: Removed code that forces 1.x for the version
4233           number if the version started with 0. Not sure why that code was
4234           there and I couldn't find any bugs that indicated we needed it.
4235           Fixes #78869
4236
4237 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
4238
4239         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
4240           ResetDefaults(), just write some output to the console until it's
4241           implemented. Fixes bug #78907 for now. Eliminated two warnings.
4242
4243 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
4244
4245         * PropertyGridView.cs: set StartPosition of drop down forms
4246         so they appear in correct initial spot.  Fixes #78190.
4247
4248 2006-07-19  Mike Kestner  <mkestner@novell.com>
4249
4250         * ThemeWin32Classic.cs: use parent background color when drawing
4251         flat toolbars.  Restructure the conditionals to make sure non-flat
4252         non-Divider toolbars are filled too.  Fixes #78837.
4253
4254 2006-07-19  Mike Kestner  <mkestner@novell.com>
4255
4256         * ListBox.cs: Sort on collection changes even if the handle
4257         isn't created yet.  Fixes #78813.
4258
4259 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4260
4261         * ListControl.cs: DisplayMember should never be null,
4262         and now we assign String.Empty when null is passed to it (this
4263         is the .Net way).
4264
4265 2006-07-17  Mike Kestner  <mkestner@novell.com>
4266
4267         * ListViewItem.cs: restructure Font and subitem Font handling 
4268         to hold a specific font and refer back to owner on null.
4269         Fixes #78761.
4270
4271 2006-07-17  Mike Kestner  <mkestner@novell.com>
4272
4273         * ToolBar.cs: bandaid for side-effect of previous patch which was
4274         discarding explicit heights for non-AutoSize toolbars.  Need to
4275         extend my format tester to deal with AutoSize=false. Fixes #78864.
4276
4277 2006-07-15  Jackson Harper  <jackson@ximian.com>
4278
4279         * LabelEditTextBox.cs:
4280         * TreeView.cs: Use a new LabelEdit class for node editing, this
4281         class automatically 'closes' itself when it gets the enter key or
4282         loses focus.
4283         - Use the client rectangle when setting the trees scrollbars, so
4284         border style is taken into account.
4285         
4286 2006-07-14  Jackson Harper  <jackson@ximian.com>
4287
4288         * TreeNode.cs:
4289         * TreeView.cs: Make the editing work similar to MSs, firing the
4290         events correctly and ending edits correctly.
4291
4292 2006-07-14  Mike Kestner  <mkestner@novell.com>
4293
4294         * ToolBarButton.cs:
4295         * ToolBar.cs: layout restructuring and redraw enhancements to support
4296         formatting changes gracefully, like setting TextAlign, ImageList, 
4297         ButtonSize, and Appearance.  Handles explicit button sizing quirks
4298         of the MS controls.  Things like flat toolbars ignoring button size
4299         but becoming constant sized at the largest button's size.  Normal
4300         toolbars with an image set cannot be shrunk smaller than the image,
4301         but text can be clipped/ignored.
4302         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
4303         is zero.  Seems like DrawString should be smart enough to not put
4304         anything on screen though. Also trim labels and ellipsize at the char
4305         boundary, not word.
4306         Fixes #78711 and #78483.
4307
4308 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
4309
4310         * FolderBrowserDialog.cs: Disable "New Folder" button and
4311           "New Folder" contextmenu menuitem if a folder like "My Computer"
4312           is selected.
4313
4314 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
4315
4316         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
4317         * FolderBrowserDialog.cs:
4318           - Use MWFConfig to store and read size and position settings
4319           - Added code to create a new folder (button or context menu).
4320             Use TreeView labeledit to change the name of the new folder.
4321
4322 2006-07-14  Jackson Harper  <jackson@ximian.com>
4323
4324         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
4325         when the tree is scrolled we end editing.
4326
4327 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
4328
4329         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
4330           Down arrows
4331
4332 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
4333
4334         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
4335         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
4336         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
4337         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
4338         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
4339         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
4340         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
4341         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
4342         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
4343         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
4344         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
4345         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
4346         ListViewItemSelectionChangedEventHandler.cs,
4347         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
4348         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
4349         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
4350         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
4351         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
4352         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
4353         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
4354         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
4355         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
4356         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
4357         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
4358         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
4359         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
4360         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
4361         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
4362         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
4363         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
4364         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
4365         WebBrowserNavigatingEventHandler.cs, 
4366         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
4367
4368 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
4369
4370         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
4371         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
4372         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
4373         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
4374         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
4375         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
4376         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
4377         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
4378         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
4379         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
4380         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
4381         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
4382         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
4383         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
4384         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
4385         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
4386         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
4387         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
4388         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
4389         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
4390         ListViewItemStates.cs, MaskFormat.cs: Added
4391
4392 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
4393
4394         * PropertyGridView.cs: Fix keyboard navigation of drop down.
4395         Patch from eno for bug 78558.
4396         
4397 2006-07-13  Jackson Harper  <jackson@ximian.com>
4398
4399         * TreeView.cs: When an edit is finished make sure that the
4400         selected node is visible.
4401         - When setting the top/bottom use the scrollbars is_visible, so
4402         everything will be set correctly even if the tree isn't visible
4403         yet.
4404
4405 2006-07-13  Jackson Harper  <jackson@ximian.com>
4406
4407         * ComboBox.cs: Revert the item->index part of my previous patch.
4408         * TreeView.cs: Use LostFocus instead of Leave for detecting when
4409         the edit box has lost focus (duh).
4410         - Just make the edit box not visible when we get return, that will
4411         take the focus, which will call EndEdit
4412         * TreeNode.cs When we start editing, notify the treeview.
4413
4414 2006-07-12  Jackson Harper  <jackson@ximian.com>
4415
4416         * ComboBox.cs: Clear out old items before setting the item list.
4417         This prevents databound controls from having their items added
4418         twice.
4419         - Switch the combobox to use indices whereever possible instead of
4420         using Item's.  This allows usto navigate through lists that have
4421         more then one item with the same string value (ie a, b, b, a).
4422         - Scroll the listboxes scrollbar when a non visible item is
4423         highlighted
4424         - Allow keypress to cycle through all the possible values. For
4425         example if you have b1, b2, b3 and hold down the B key all the
4426         values will be cycled through.
4427         
4428 2006-07-12  Jackson Harper  <jackson@ximian.com>
4429
4430         * TextBoxBase.cs:
4431         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
4432         this using the internal methods.
4433         * Control.cs: Add OnGotFocusInternal.  A new method that allows
4434         controls to "override" OnGotFocus and change focus behavior if
4435         needed.
4436         - Same thing for LostFocus
4437         * ComboBox.cs: Pass off focus to the text control properly.
4438
4439 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
4440
4441         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
4442         * FolderBrowserDialog.cs: Almost a complete rewrite.
4443           - Better support for Environment.Specialfolders
4444           - Added support for MWFVFS
4445           - Made setting SelectedPath work
4446
4447 2006-07-12  Jackson Harper  <jackson@ximian.com>
4448
4449         * Control.cs: Optimze getting all the controls.
4450
4451 2006-07-11  Jackson Harper  <jackson@ximian.com>
4452
4453         * ContainerControl.cs: Override SETFOCUS in the container control,
4454         so that it is not selected on mouse click.
4455
4456 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
4457
4458         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
4459           Hopefully we will have a better way once all of focus is complete.
4460
4461 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
4462
4463         * ThemeWin32Classic.cs: Commented out some debug code and fixed
4464           a compile error with csc.
4465
4466 2006-07-11  Jackson Harper  <jackson@ximian.com>
4467
4468         * Control.cs: When hiding a control only select the next control
4469         if the current control was focused.
4470         - Don't handle enter/leave when setting/killing focus, this is
4471         done by the container control.
4472         - Remove is_selected, it's not needed anymore.
4473         - Add utility methods for selecting a child control, and for
4474         firing the Enter/Leave events.
4475         * ContainerControl.cs: When a control is activated fire the
4476         enter/leave events.
4477         - Don't wrap when processing the tab key, so that focus can be
4478         moved outside of the container.
4479         - Use the correct active control
4480
4481 2006-07-11  Jackson Harper  <jackson@ximian.com>
4482
4483         * ComboBox.cs: Remove some debug code that was blinding me.
4484         * UpDownBase.cs: These controls actually aren't implicit, they are
4485         visible to the user.
4486
4487 2006-07-10  Chris Toshok  <toshok@ximian.com>
4488
4489         * DataGrid.cs: move back to the is_adding boolean field.  god i
4490         hate this is_editing/is_adding/is_changing stuff.
4491
4492 2006-07-10  Chris Toshok  <toshok@ximian.com>
4493
4494         * DataGridTableStyle.cs: just check if the property type is bool.
4495         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
4496         Don't use CanRenderType.
4497
4498         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
4499         if our text == NullText.  Remove CanRenderType.
4500
4501         * DataGridBoolColumn.cs: nuke CanRenderType.
4502
4503         * DataGrid.cs: reenable some code to end the current edit inside
4504         of set_CurrentCell.  This fixes the other 1.1.16 regression.
4505         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
4506         Also, remove the visible_row_count arg from CalcRowHeaders, since
4507         we don't need to worry about the actual height of the area.
4508
4509 2006-07-10  Chris Toshok  <toshok@ximian.com>
4510
4511         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
4512         mode, just return.
4513
4514         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
4515         the real sense of the IsInEditOrNavigateMode property (true =
4516         navigate, false = edit).  Also, update OnKeyPress to reflect this.
4517
4518         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
4519         column style exists, we still need to set its property descriptor
4520         to match up with our list manager.
4521
4522 2006-07-10  Chris Toshok  <toshok@ximian.com>
4523
4524         * ThemeWin32Classic.cs: implement the new row/header painting
4525         approach.  The parent row painting will likely go away and
4526         replaced with label controls, but the rest seems to work ok (and
4527         efficiently).
4528
4529         * Theme.cs: change the way we draw datagrid rows.  we don't draw
4530         the row headers as a block now.  Instead we draw them in the
4531         normal draw-row loop.  Add some calls for drawing parent rows and
4532         relation rows.
4533
4534         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
4535         a default table style.  Set the defaults from ThemeEngine.Current,
4536         not SystemColors.  Fix lots of misc issues with property setters.
4537
4538         * DataGrid.cs: move loads of style information out of this class
4539         as it's being duplicated with DataGridTableStyle.  keep track of a
4540         special DataGridTableStyle for the properties we used to mirror
4541         here.  Switch all the style properties to access this table style
4542         instead of instance fields of this class.  Also add a internal
4543         class to represent parent rows (more needs to be stored here, like
4544         the selection state from the parent table, as well as the
4545         expansion state.)  Also, for datasources with relations, do the
4546         right thing for collapse/expand, and add support for the
4547         navigation/parent row buttons.
4548
4549         Lastly, fix the crash in the 1.1.16 build.
4550
4551         * GridTableStylesCollection.cs: make the explicit interface
4552         implementations call the class's methods as opposed to duplicating
4553         them.
4554
4555         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
4556         0 so the text doesn't jump around when we move the cursor.
4557
4558 2006-07-10  Jackson Harper  <jackson@ximian.com>
4559
4560         * TextBoxBase.cs:
4561         * ListBox.cs: Match MS's ToString (this makes debugging focus
4562         stuff infinitely easier).
4563
4564 2006-07-10  Jackson Harper  <jackson@ximian.com>
4565
4566         * Control.cs (SelectNextControl): When checking the control's
4567         parent use this instead of ctrl.parent so that null can be passed
4568         to SelectNextControl. (I have unit tests for this).
4569         - Remove unused var.
4570
4571 2006-07-10  Chris Toshok  <toshok@ximian.com>
4572
4573         * CurrencyManager.cs: correct one regression, the removal of the
4574         finalType field.  Also, add a MonoTODO on CanAddRows, implement
4575         Refresh() correctly, and fix some event emission in
4576         ListChangedHandler.
4577
4578 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
4579
4580         * FileDialog.cs: Don't use brackets for new folders if they exist
4581           under *nix. Instead use -(number of existing folders +1).
4582
4583 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
4584
4585         * FileDialog.cs:
4586           - Fixed really nasty bug #78771
4587           - Don't block the whole GUI when reading directories with a lot of
4588             entries. Use an other thread instead and call BeginInvoke to
4589             update the ListView in MWFFileView
4590
4591 2006-07-07  Chris Toshok  <toshok@ximian.com>
4592
4593         * Control.cs (Dispose): release any Capture when disposing.
4594
4595 2006-07-07  Chris Toshok  <toshok@ximian.com>
4596
4597         * LinkLabel.cs (Select): if we chain up to the parent, set
4598         focused_index to -1 so we'll search for the first available link
4599         the next time the user tabs into us.  Also, if the direction is
4600         backward and focused_index == -1, start the search from the last
4601         element.
4602
4603 2006-07-07  Chris Toshok  <toshok@ximian.com>
4604
4605         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
4606         is beyond the end of the text, don't do anything.
4607         (CreateLinkPieces): set our ControlStyles.Selectable based on
4608         whether or not we have any links.
4609         (Link.Invalidate): use a loop instead of foreach.
4610         (Link.set_Start): null out owner.sorted_links so it'll be
4611         recreated by CreateLinkPieces.
4612
4613 2006-07-06  Chris Toshok  <toshok@ximian.com>
4614
4615         * LinkLabel.cs: revert the SetStyle change.
4616
4617 2006-07-06  Chris Toshok  <toshok@ximian.com>
4618
4619         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
4620         (OnEnableChanged): s/Refresh/Invalidate
4621         (OnGotFocus): if we have a focused index already, refocus it (so
4622         if we mouse out/in to the window it'll focus the right link).
4623         (OnKeyDown): move the tab handling out of here.
4624         (OnLostFocus): don't set focused_index to -1, so we can refocus it
4625         when we lose focus.
4626         (OnMouseDown): don't Capture here - Control handles it.  Also,
4627         focus the active link.
4628         (OnMouseUp): don't deal with Capture.
4629         (OnPaintBackgroundInternal): remove.
4630         (OnTextAlignChanged): CreateLinkPieces before calling the
4631         superclass's method.
4632         (OnTextChanged): call CreateLinkPieces before calling superclass's
4633         method.
4634         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
4635         move around.
4636         (Select): implement this, moving the selection between different
4637         links, and call parent.SelectNextControl if we don't have another
4638         link to focus in the given direction.
4639         (CreateLinkPieces): call Invalidate instead of Refresh.
4640         
4641 2006-07-06  Chris Toshok  <toshok@ximian.com>
4642
4643         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
4644         new LinkLabel internals.
4645
4646         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
4647         over pieces looking for active/focused/etc links.  also, deal with
4648         runs of text (and links) with embedded \n's in them, and use
4649         MeasureCharacterRanges instead of MeasureString to figure out the
4650         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
4651         two-step.
4652
4653 2006-07-04  Jackson Harper  <jackson@ximian.com>
4654
4655         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
4656         XKB or key auto repeat, do it manually.  Without key auto repeat,
4657         when a key is held down we get key press, key release, key press,
4658         key release, ... with auto repeat we get key press, key press, key
4659         press ..., and then a release when the key is actually released.
4660
4661 2006-07-03  Jackson Harper  <jackson@ximian.com>
4662
4663         * TabControl.cs:
4664         * ThemeWin32Classic.cs: Tabs do not obey normal background color
4665         rules, they are always control color regardless of the background
4666         color.
4667
4668 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
4669
4670         * FileDialog.cs: Added internal class MWFConfig.
4671           Removed Registry support and replaced it with support for the new
4672           MWFConfig class. See MWFConfig comments for more information.
4673
4674 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
4675
4676         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
4677           rectangle. Added some patches from eno from bug #78490 and fixed
4678           the arrow position for small up and down CPDrawScrollButtons.
4679
4680 2006-06-30  Jackson Harper  <jackson@ximian.com>
4681
4682         * InternalWindowManager.cs: Remove some debug code.
4683         * Form.cs: When an MdiParent is set to null, the window is
4684         "detatched" and becomes a normal window.
4685         * MdiClient.cs: Don't bring the new child form to the front until
4686         it is activated (setting it as active does this), this makes the
4687         previously active forms titlebar get redrawn as inactive.
4688
4689 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
4690
4691         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
4692           with later controls
4693
4694 2006-06-29  Mike Kestner  <mkestner@novell.com>
4695
4696         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
4697         arrow in keynav state.  Fixes #78682.
4698
4699 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
4700
4701         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
4702           order (fixes #78393)
4703
4704 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
4705
4706         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
4707           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
4708           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
4709           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
4710           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
4711           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
4712           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
4713           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
4714           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
4715           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
4716           enumerations (FlagsAttribute, SerializableAttribute, added/removed
4717           values)
4718
4719 2006-06-28  Mike Kestner  <mkestner@novell.com>
4720
4721         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
4722
4723 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
4724
4725         * PropertyGrid.cs,
4726           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
4727           item lines from other area (It also makes BackColor consistent and
4728           compatible with .NET). Fixed bug #78564.
4729
4730 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
4731
4732         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
4733         Patch from Eno for #78555.
4734
4735 2006-06-27  Chris Toshok  <toshok@ximian.com>
4736
4737         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
4738
4739         * DataGridColumnStyle.cs: same.
4740
4741         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
4742         
4743         * DataGridDrawingLogic.cs: nuke.
4744
4745 2006-06-27  Chris Toshok  <toshok@ximian.com>
4746
4747         * DataGridTableStyle.cs: clean up the constructors, and build the
4748         list of child relations for this table.  I have no idea if this is
4749         where we should be doing it (it probably isn't), but since we're
4750         already iterating over the properties..
4751
4752         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
4753         struct and array for keeping track of row information, similar to
4754         what's shown in a hack on
4755         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
4756
4757         * Theme.cs: be consistent about the naming of DataGrid methods,
4758         prefering ColumnWidths and RowHeights over columnsWidths and
4759         RowsHeights.
4760
4761         * ThemeWin32Classic.cs: same, and also add support for variable
4762         sized rows (and the +/- expansion icons for related rows).
4763
4764 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
4765
4766         * TextBoxBase.cs: Applied Eno's patch from #78660
4767
4768 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
4769
4770         * Form.cs (ScaleCore): We don't want to scale our form if it's
4771           state is minimized or maximized, but we still need to scale our
4772           child windows. Also, added try/finally block to ensure layout
4773           gets reset (Fixes #78697)
4774
4775 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
4776
4777         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
4778
4779 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
4780
4781         * Form.cs: Fixed c+p error and added check to resize form if minimum
4782           size is bigger than current size (Fixes #78709)
4783
4784 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
4785
4786         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
4787
4788 2006-06-26  Mike Kestner  <mkestner@novell.com>
4789
4790         * ComboBox.cs: only do Keypress handling in the combo when there  
4791         are items in the collection. Fixes #78710.
4792
4793 2006-06-26  Chris Toshok  <toshok@ximian.com>
4794
4795         * Binding.cs: make this work bi-directionally.  also, clear up
4796         other mixups between Push/Pull Data (e.g. we're supposed to pull
4797         data when validating).
4798
4799         * BindingManagerBase.cs: trim some fully qualified collection
4800         types.
4801
4802         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
4803
4804 2006-06-23  Chris Toshok  <toshok@ximian.com>
4805
4806         * PropertyManager.cs: It appears (according to the unit tests)
4807         that PropertyManager doesn't use
4808         PropertyDescriptor.AddValueChanged to track propery value changes
4809         in its datasource, but uses the same scheme as Binding, where it
4810         looks for a <Property>Changed event and binds to it.
4811
4812         Also, according to the docs, IsSuspended always returns false for
4813         a property manager with a non-null datasource.
4814
4815 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
4816
4817         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
4818           need to update the actual DialogResult. (Fixes #78613)
4819
4820 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
4821
4822         * Form.cs (ShowDialog): Release any captures before running the
4823           new message pump (fixes #78680)
4824
4825 2006-06-22  Mike Kestner  <mkestner@novell.com>
4826
4827         * ListView.cs: Layout column widths properly in details mode even 
4828         if HeaderStyle.None is set.  Fixes #78691.
4829
4830 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
4831
4832         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
4833
4834 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
4835
4836         * Control.cs (ContainsFocus): Using new driver method to get focused
4837           window, instead of trying to use internal tracking var, which can
4838           recursion issues (Fixes #78685)
4839         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
4840           XplatUIWin32.cs: Added GetFocus method to return focused window
4841
4842 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4843
4844         * ColorDialog.cs: when the mouse button is pressed inside the color
4845         matrix, don't let the cursor move out of it until the button is
4846         released, which is the behavior on windows. Changed 'colours' by
4847         'colors' to use the same word consistently.
4848
4849 2006-06-21  Chris Toshok  <toshok@ximian.com>
4850
4851         * DataGrid.cs: add in some basic navigation stuff (navigating to a
4852         child relation and back, using a stack).  Also, remove
4853         GetDataSource and the code that calls it - it's not needed.  Also,
4854         track CurrencyManager.ListName's removal.
4855
4856 2006-06-21  Chris Toshok  <toshok@ximian.com>
4857
4858         * CurrencyManager.cs: push some of the original type checking from
4859         BindingContext.CreateBindingManager to here, and remove some of
4860         the finalType stuff.  Need more tests to make sure I've got the
4861         ListName part right, and we might need more in SetDataSource.
4862
4863         * PropertyManager.cs: add a ctor that takes just the datasource,
4864         and no property name.  Make SetDataSource work with a null
4865         property_name, and make Current return the data_source if the
4866         property descriptor is null.  this makes 'string foo = "hi";
4867         BindingContext[foo].Current' return "hi" as it should.
4868
4869         * RelatedCurrencyManager.cs: make this code more generic - there's
4870         no reason the parent manager has to be CurrencyManager, and
4871         there's no reason to pass the DataRelation.  It suffices to use a
4872         BindingManagerBase and PropetyDescriptor.
4873
4874         * RelatedPropertyManager.cs: make a similar change here.
4875         
4876         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
4877         flower I knew it could be.
4878
4879 2006-06-20  Chris Toshok  <toshok@ximian.com>
4880
4881         * PropertyManager.cs: the PropertyChangedHandler is invoked when
4882         data in the source has changed and we need to update the control,
4883         so s/PullData/PushData.
4884
4885         * CurrencyManager.cs: Refresh is meant to update the control from
4886         data in the datasource.  So, s/PullData/PushData.
4887
4888         * BindingContext.cs: add more ugliness (we weren't handling the
4889         case where data_source = DataTable and data_member = column_name).
4890
4891         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
4892         from the perspective of the datasource.  PullData pulls from the
4893         control, PushData pushes to the control.
4894
4895 2006-06-20  Chris Toshok  <toshok@ximian.com>
4896
4897         * BindingContext.cs: rewrite the CreateBindingManager code to
4898         handle navigation paths more or less properly.  This could
4899         definitely stand some more work, in particular to push the
4900         recursion up to the toplevel.  But that relies on fixes in other
4901         places (System.Data comes to mind).
4902
4903         Also, move to a flat hashtable (and encode the twolevel nature of
4904         the dictionary into the hash key).  This lets us implement the
4905         IEnumerable.GetEnumerator method.
4906
4907         * RelatedCurrencyManager.cs: new class.  Update our view based on
4908         our relation and our parent CurrencyManager's position.
4909
4910         * CurrencyManager.cs: split out some logic from the ctor into
4911         SetView, so it can be called from the new RelatedCurrencyManager
4912         subclass.
4913
4914         * RelatedPropertyManager.cs: new class.  Update our datasource
4915         based on the position of our parent CurrencyManager.
4916
4917         * PropertyManager.cs: split out some logic from the ctor into
4918         SetDataSource, so it can be called from the new RelatedDataSource
4919         subclass.  Also, make the Current getter return the value
4920         of the PropertyDescriptor, not the data_source.
4921
4922         * Binding.cs: no need to duplicate the string splitting code here.
4923
4924 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
4925
4926         * Control.cs:
4927           - set_Enabled: OnEnabledChanged is not called if the inherited state 
4928             of the control is not altered, even though  we might be changing the
4929             internal state of the control (#78458)
4930           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
4931             OnEnabledChanged, to allow easy altering of any child window state
4932           - OnEnabledChanged: Added code to enable/disable driver window state
4933           - OnParentEnabledChanged: Instead of firing the event, call 
4934             OnEnabledChanged, which will fire the event and also a) set driver
4935             window state and pass the enabled state to any grandchildren (#78458)
4936
4937 2006-06-19  Jackson Harper  <jackson@ximian.com>
4938
4939         * InternalWindowManager.cs: We don't set the cursor explicitly
4940         thats done via the response to NCHITTESTs.
4941         - Don't need to adjust for titlebar heights anymore, the
4942         coordinates are coming in the correct coordinates now (see peters
4943         last patch).
4944
4945
4946 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
4947
4948         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
4949           being translated relative to whole window, instead of client window.
4950           That caused broken offsets on mouseclick (and caused gas for our
4951           InternalWindowManager)
4952
4953 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
4954
4955         * TextControl.cs:
4956           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
4957           - Undo(): Added replay of cursor move on DeleteChars action; added
4958             calling Undo() again if a recorded cursor move is invalid (to
4959             ensure that some action is performed on Undo)
4960         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
4961
4962 2006-06-16  Jackson Harper  <jackson@ximian.com>
4963
4964         * MdiClient.cs: Instead of just sizing maximized windows when
4965         there is a resize we also have to adjust the Y of minimized
4966         windows, so they stay pinned to the bottom of the mdi container.
4967         - Eliminate separate tracking of the active control, we can just
4968         get this from the controls collection.
4969         - Paint the decorations for the newly activated titlebar so we get
4970         a pretty blue bar.
4971         * InternalWindowManager.cs:
4972         * ThemeWin32Classic.cs: Minimized windows get all three buttons
4973         even if they are a tool window.
4974         
4975 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
4976
4977         * TextControl.cs (Undo): Handle non-existent cursor locations in the
4978           undo buffer, these can happen when text was deleted and the cursor
4979           was recorded first. Since we will also have a recorded cursor
4980           after the delete this is not an issue. (Fixes #78651)
4981
4982 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
4983
4984         * AccessibleObject.cs: Remove dependence on Control.is_selected;
4985           instead properly track control states internally (allows us to
4986           remove is_selected from Control)
4987
4988 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4989
4990         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
4991         whose width is not a multiple of 8.
4992
4993 2006-06-13  Jackson Harper  <jackson@ximian.com>
4994
4995         * MdiClient.cs:  Only maximize the next child if the current one
4996         is maximized.
4997
4998 2006-06-13  Chris Toshok  <toshok@ximian.com>
4999
5000         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
5001         modified.  Also, guard against grid or grid_drawing being null in
5002         Invalidate.
5003
5004         * DataGrid.cs: Reformat tons of getters/setters.  In the
5005         DataMember setter, just call SetNewDataSource instead of
5006         duplicating some of its functionality.  In SetNewDataSource, don't
5007         check ListManager for null, since the property getter creates the
5008         object if needed.
5009
5010         * DataGridTableStyle.cs: don't set TableStyle or call
5011         SetDataGridInternal on the column here, it's done in
5012         GridColumnStylesCollection.Add.
5013
5014         * GridColumnStylesCollection.cs: fix all the explicit interface
5015         implementations to just call our methods.  Nuke AddInternal() and
5016         move the body of it to Add().  Also, add a call to
5017         column.SetDataGridInternal to Add().
5018
5019         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
5020         base()+duplicate code.  Also, use the Format property instead of
5021         format to generate an Invalidate ala MS.  Lastly, create the
5022         textbox here, unconditionally.
5023         (set_Format): call Invalidate.
5024         (get_TextBox): no need to call EnsureTextBox.
5025         (Commit): remove the message box.
5026         (Edit) remove the call to EnsureTextBox.
5027         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
5028         (EnterNullValue): no need to check textbox for null.
5029         (HideEditBox): no need to check textbox for null.
5030         (SetDataGridInColumn): add the textbox to the grid's controls.
5031         (EnsureTextBox): nuke.
5032         
5033 2006-06-13  Jackson Harper  <jackson@ximian.com>
5034
5035         * MdiWindowManager.cs: Hook up to the maximized menus paint event
5036         and redraw the buttons when needed. Unhook when the window is
5037         unmaximized.
5038         * MainMenu.cs: Add an internal Paint event, the mdi window manager
5039         needs this so that it can redraw its buttons when the menu is
5040         repainted.
5041         * InternalWindowManager.cs:
5042         * Form.cs: The method order has changed for DrawMaximizedButtons,
5043         so that it can be a PaintEventHandler.
5044         
5045 2006-06-13  Jackson Harper  <jackson@ximian.com>
5046
5047         * MdiClient.cs: When we close a maximized mdi window, the next mdi
5048         window is activated and maximized, even if it wasn't before.
5049         - When  a new window is activated repaint the decorations of the
5050         old one, so that it no longer has the Active "look" (the blue
5051         titlebar).
5052         * InternalWindowManager.cs: Open up CreateButtons to base classes
5053         so they can recreate the buttons on state changes.
5054         - If a window is maximized give it all three buttons
5055         * MdiWindowManager.cs: Create the titlebar buttons when the state
5056         is changed, this is needed because a toolwindow will not have all
5057         three buttons until it is maximized.
5058
5059 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
5060
5061         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
5062           Fixed bug #78609.
5063
5064 2006-06-12  Jackson Harper  <jackson@ximian.com>
5065
5066         * KeysConverter.cs: Make sure we handle the Ctrl special case
5067         if its the only key.
5068         
5069 2006-06-12  Jackson Harper  <jackson@ximian.com>
5070
5071         * Theme.cs: Add a method to get the size of a managed window
5072         toolbar button.
5073         * InternalWindowManager.cs: Remove the ButtonSize property, this
5074         should be retrieved from the theme.
5075         * MdiWindowManager.cs: Get the button size from the theme
5076         * ThemeWin32Classic.cs: Make the method to get the managed window
5077         titlebar button size public.
5078         - Handle the different button sizes of maximized toolwindows
5079         (should match any maximized window).
5080         - Get the titlebar height from the theme, not the WM (which gets
5081         it from the theme).
5082
5083 2006-06-12  Jackson Harper  <jackson@ximian.com>
5084
5085         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
5086         event down to the mdi window manager.
5087         - Expose some extra stuff to base classes
5088         - Make sure to end the Capture on an NC Mouse up, so that we can
5089         get double clicks properly, and the sizing doens't stick.
5090         - When doing PointToClient contain it in the workable desktop
5091         area, this prevents windows from changing size when the cursor is
5092         pulled outside of the working area while sizing.
5093         * MdiWindowManager.cs: When we get a double click maximize the
5094         window.
5095         - Reset the cursor after handling mode changes.
5096
5097 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
5098
5099         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
5100           current desktop, instead of just assuming a 0, 0 origin. This
5101           is needed for our internal window manager, to know the top
5102           margin of the desktop
5103
5104 2006-06-12  Chris Toshok  <toshok@ximian.com>
5105
5106         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
5107         we need this to get rid of the selected background in the bool
5108         column.
5109         (CancelEditing): move the ConcedeFocus call to above the Abort
5110         call.  Also, set is_changing to false and invalidate the row
5111         header if we were changing before.
5112         (ProcessKeyPreviewInternal): remove, since noone outside this
5113         class calls it anymore.  Roll the code into ProcessKeyPreview.
5114         (EndEdit): remove the internal version.
5115         (InvalidateCurrentRowHeader): make private.
5116
5117         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
5118         Keys.Escape handling (and with it the last call to
5119         DataGrid.EndEdit from outside the class.)
5120
5121
5122 2006-06-12  Chris Toshok  <toshok@ximian.com>
5123
5124         * DataGridTextBox.cs (.ctor): isedit defaults to false.
5125         (OnKeyPress): set isedit to true.
5126         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
5127         already handled by the grid.
5128
5129         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
5130         right.  ugh.
5131         (set_DataSource): SetDataSource always returns true, so stop
5132         putting it in an if statement.
5133         (EndEdit): get rid of some {}'s
5134         (ProcessGridKey): return true in case Keys.Escape.
5135         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
5136         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
5137         PositionChanged, stopped connecting to CurrentChanged.
5138         (GetDataSource): simplify this a bunch.
5139         (SetDataSource): change return type from bool to void.
5140         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
5141         to this, and make sure we don't set ListManager.Position inside
5142         set_CurrentCell.
5143         (OnListManagerItemChanged): if we're passed an actual index,
5144         redraw that row.
5145
5146         * CurrencyManager.cs (set_Position): don't call PullData here.
5147
5148 2006-06-09  Jackson Harper  <jackson@ximian.com>
5149
5150         * TreeNode.cs:  Recalculate the visible order before doing the
5151         Expand/Collapse Below calls, because those calls generate an
5152         expose.
5153         - Reduce calls to the TreeView property, which is mildly expensive
5154         by using a local var.
5155         * Form.cs: Layout the MDI child windows when creating the parent
5156         form.
5157         - Don't use the internal constructor anymore
5158         * MdiClient.cs: use the parent form width/height (if available)
5159         when laying out the child windows, we do this because the
5160         mdiclient isn't docked yet when the initial layout is done.
5161         - Don't need an internal constructor anymore.
5162
5163 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5164
5165         * FileDialog.cs: handle access errors when trying to create a folder
5166         or changing to a directory. No need to initialize out parameters.
5167
5168 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5169
5170         * FileDialog.cs: Append a number when creating a new folder if the
5171           folder already exists (use parenthesis instead of square brackets)
5172
5173 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5174
5175         * FileDialog.cs:
5176           - Disabled registry support for windows and added better registry
5177             error checking for other systems (need to investigate why it
5178             works perfectly on my system)
5179           - If a folder already exist show an error MessageBox instead of
5180             trying to create an indexed name.
5181           - Fixed a non intentional typo.
5182
5183 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5184
5185         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
5186
5187 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5188
5189         * FileDialog.cs: When creating a new folder don't crash if the
5190           folder already exists.
5191
5192 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5193
5194         * FileDialog.cs: Allmost a complete rewrite.
5195           - added a "virtual" file system that handles the differences
5196             between unix and windows file systems (especially the directory
5197             structure). Moved most of the directory and file handling code
5198             into the vfs.
5199             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
5200             UnixFileSystem and FSEntry.
5201           - Recently used folder/directory, size, location and used file names
5202             (file name ComboBox) are now stored in the registry and get read
5203             before the dialog shows up (fixes part 6 of bug #78446).
5204           - Creation of new folders/directories is now possible (context menu
5205             or ToolBar). Added TextEntryDialog for this that fills in the gap
5206             until ListView.LabelEdit works.
5207           - Fixed cursor handling (bug #78527) and focus handling for
5208             PopupButtonPanel
5209           - Various "Search in" ComboBox enhancements. The content of the
5210             dropdown listbox now almost matches ms.
5211           - Changed the behaviour when the user switches to SpecialFolder
5212             Recent to show the ListView in View.Details.
5213           - Beside using the ToolBar to change the View property of the
5214             file ListView it is now possible to use the context menu too.
5215
5216 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
5217
5218         * ComboBox.cs: Don't create a new ObjectCollection when an item
5219           gets inserted. Just insert the item in the existing object_items
5220           ArrayList.
5221
5222 2006-06-08  Jackson Harper  <jackson@ximian.com>
5223
5224         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
5225         that the treeview and root node checks are done also, this fixes a
5226         regression i caused in the unit tests.
5227
5228 2006-06-07  Wade Berrier <wberrier@novell.com> 
5229
5230         * RichTextBox.cs: More ISO8859-1 -> unicode
5231
5232 2006-06-07  Mike Kestner  <mkestner@novell.com>
5233
5234         * ComboBox.cs : use items to hold highlight/selection so that
5235         collection insertions don't require synchronization.
5236
5237 2006-06-07  Jackson Harper  <jackson@ximian.com>
5238
5239         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
5240         routine.  We now always keep the sized edge at the cursor instead
5241         of computing movement and adjusting rects.  There is one buglet
5242         with this method though when the cursor is moved over area that
5243         the window can not expand too (such as the toolbars on the desktop).
5244
5245 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5246
5247         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
5248         here. Fixes crash on startup in AlbumSurfer.
5249
5250 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
5251
5252         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
5253           values
5254
5255 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5256
5257         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
5258         statement to avoid calling XNextEvent which will block if another thread
5259         took the event that we were expecting. Fixes bug #78605.
5260
5261 2006-06-07  Mike Kestner  <mkestner@novell.com>
5262
5263         * ListView.cs : isolated checkbox clicking from the selection logic.
5264         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
5265
5266 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5267
5268         * Form.cs: Check that the value passed to Form.DialogResult
5269         is a valid enum value.
5270
5271 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5272
5273         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
5274         Computer'. Clicking it in the network view goes to 'My Computer'.
5275         Added CIFS filesystem type. Display the mount point of filesystems.
5276         Avoid duplicate mount points (happens for me with CIFS);
5277
5278 2006-06-06  Jackson Harper  <jackson@ximian.com>
5279
5280         * InternalWindowManager.cs: Draw the maximized windows buttons
5281         when resizing.
5282
5283 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5284
5285         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
5286         all other dialogs. Fixes bug #78585.
5287
5288 2006-06-06  Mike Kestner  <mkestner@novell.com>
5289
5290         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
5291         Only invalidate checkbox on checkstate changes to avoid flicker.
5292         * ListBox.cs : avoid unselect/select when clicking selected item.
5293         avoid reselection flicker for already multiselected items.
5294         Fixes #78382.
5295
5296 2006-06-06  Jackson Harper  <jackson@ximian.com>
5297
5298         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
5299         the parent form so that the menu is removed if needed.
5300
5301 2006-06-06  Mike Kestner  <mkestner@novell.com>
5302
5303         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
5304         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
5305
5306 2006-06-06  Mike Kestner  <mkestner@novell.com>
5307
5308         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
5309
5310
5311 2006-06-06  Jackson Harper  <jackson@ximian.com>
5312
5313         * Control.cs: Use the property (instead of the field) to get the
5314         default cursor so it is instantiated correctly.
5315         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
5316         resizes so we need to manually repaint the window decorations here.
5317         - Set the titlebar button locations as soon as they are created,
5318         otherwise they are not set correctly on win32.
5319         
5320 2006-06-06  Chris Toshok  <toshok@ximian.com>
5321
5322         * CurrencyManager.cs (set_Position): call PullData before
5323         OnCurrentChanged.
5324         (AddNew): after calling IBindingList.AddNew, update our
5325         listposition, and call OnCurrentChanged/OnPositionChanged (without
5326         calling PullData).
5327         (OnCurrentChanged): remove the call to PullData from here.
5328         (OnItemChanged): remove the call to PushData from here.
5329         (OnPositionChanged): change the test from == null to != null to
5330         match the other methods.
5331         (ListChangedHandler): the grossest part of the patch.  Implement
5332         this such that it passes the unit tests in CurrencyManagerTest and
5333         the output more or less matches that of MS's implementation.
5334  
5335 2006-06-06  Mike Kestner  <mkestner@novell.com>
5336
5337         * ListView.cs : only update check state on single click.
5338         * ThemeWin32Classic.cs : fix focus drawing for details view without
5339         fullrowselect.  Fixes #78454.
5340         * XplatUIX11.cs : fix for double click emission.
5341
5342 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
5343
5344         * PropertyGridView.cs : Applied Atsushi's patch to fix
5345         font dialog bug  (#78197).
5346
5347 2006-06-05  Jackson Harper  <jackson@ximian.com>
5348
5349         * TreeNode.cs: Compute the next node for expanding/collapsing
5350         correctly. We now factor in nodes without a NextNode
5351         correctly. (Fixes somes cases in nunit-gui).
5352         * InternalWindowManager.cs: Set the bounds when updating the
5353         virtual position of a tool window.
5354         
5355 2006-06-05  Chris Toshok  <toshok@ximian.com>
5356
5357         * DataGrid.cs: rename cached_currencymgr to list_manager.
5358         (set_CurrentCell): move SetCurrentCell code here, and clean it up
5359         some.
5360         (CurrentRow, CurrentColumn): single accessors so we can make the
5361         cursor movement code a lot easier to understand.
5362         (CurrentRowIndex): implement this in terms of CurrentRow.
5363         (BeginEdit): clean this up a bit.
5364         (CancelEditing): sort out the is_editing/is_changing/is_adding
5365         stuff a little.
5366         (EndEdit): minor changes.
5367         (OnKeyDown): add a comment about a (most likely) unnecessary
5368         check.
5369         (OnMouseDown): cancel editing when we click on a row header.  And
5370         use the CurrentRow setter, not CurrentCell.
5371         (ProcessDialogKey): directly call ProcessGridKey.
5372         (UpdateSelectionAfterCursorMove): factor out this common block of
5373         code (it's used everywhere that we move the cursor by updating row
5374         or column).
5375         (ProcessGridKey): pretty substantial overhaul.  Use the
5376         CurrentRow/CurrentColumn properties to make the code a lot more
5377         readable.  Only use the CurrentCell property when we have to
5378         modify both row and column at once.  Tab behavior is still broken,
5379         and Delete is untested.
5380         (Select): if we have no selected rows, set selection_start to
5381         @row.
5382         (EditCurrentCell): rename EditCell this.  It was only ever invoked
5383         with CurrentCell as the arg, so drop the arg and rename it.
5384
5385         * DataGridColumnStyle.cs: clean up the constructors a little, and
5386         drop CommonConstructor().
5387
5388         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
5389         actually get notified when the user hits it.
5390         (ProcessKeyMessage): *substantially* simplify this method.
5391         There's no reason (that I can see) for the textbox to be making
5392         calls into the datagrid at all.  Remove all of them but the ones
5393         for Enter handling.  those will take some more work.
5394
5395         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
5396         calling HideEditBox.
5397         (HideEditBox): if we have an active textbox, render it invisible
5398         without causing a re-layout of the datagrid.
5399
5400 2006-06-05  Mike Kestner  <mkestner@novell.com>
5401
5402         * ListView.cs : fix NRE crasher when focuseditem is cleared by
5403         collection changes by resetting it to Items[0].  Fixes #78587.
5404
5405 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5406
5407         * MessageBox.cs: if the height of the text is larger than the icon_size,
5408         use that. Fixes bug #78575.
5409
5410 2006-06-05  Jackson Harper  <jackson@ximian.com>
5411
5412         * TreeView.cs: Fix line drawing when scrolling.  To do this each
5413         node is basically responsible for drawing its entire horizontal
5414         area.  When drawing a node it draws its parent node lines if
5415         needed.
5416         - Adjust the clip area to the viewport rectangle
5417         - Fix Left/Right key handling to match MS. (It expand/collapses
5418         and moves to parents/first child but does not move selection to
5419         sibling nodes).
5420         - Fix SetTop to work with new bound calculation code
5421         - When scrollbars are no longer needed we need to reset scrolling
5422         vars and recalculate the visible order so the redraw is correct
5423         * TreeNode.cs: We can't expand/collapse nodes with no children.
5424
5425 2006-06-03  John Luke  <john.luke@gmail.com> 
5426
5427         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
5428         so the colors work without dev packages
5429         
5430 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
5431
5432         * Control.cs 
5433           - Select: Implemented to just use activate. Seems to match MS 
5434             behaviour closest. Documented to only do actual control walking 
5435             based on it's parameters if in a container control so I moved 
5436             the code there.
5437           - Removed selection check logic from our internal Select() method
5438         * ContainerControl.cs:
5439           - Select: Moved selection logic from Control here, since MS documents
5440             that containers obey the bool arguments. No longer calling base
5441
5442 2006-06-02  Jackson Harper  <jackson@ximian.com>
5443
5444         * TreeView.cs: If the selected node isn't changed when we get
5445         focus update the previously selected node so that we see the
5446         selection box.
5447
5448 2006-06-02  Mike Kestner  <mkestner@novell.com>
5449
5450         * ComboBox.cs: restructure grab and general mouse event handling.
5451         Make the composite control raise mouse events like it was a single
5452         control for leaves/enters/motion/up/down events.  fix dropdown list
5453         coordinate mangling and refactor it into the scrollbar subclass to
5454         reduce code duplication.  Fixes #78282 #78361 and #78457.
5455
5456 2006-06-02  Mike Kestner  <mkestner@novell.com>
5457
5458         * ScrollBar.cs: remove Capture setting/clearing, as it happens
5459         automatically in the Control.WndProc.
5460
5461 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5462
5463         * FileDialog.cs: fix crash when running SharpChess, which sets the
5464         FilterIndex to 2 with only one Filter.
5465
5466 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5467
5468         * ToolBar.cs: add SizeSpecified property.
5469         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
5470         try to figure out our real size, otherwise fallback to what the
5471         container says.
5472
5473 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
5474
5475         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
5476         * Control.cs (WndProc): MS always calls the DefWndProc to pass
5477           up the event
5478
5479 2006-06-01  Mike Kestner  <mkestner@novell.com>
5480
5481         * ListView.cs: revamp the focus management in ListView.  It still
5482         causes churn of LostFocus/GotFocus emissions on clicks, but it's
5483         better than not handling focus at all.  Will revisit when pdb feels
5484         the general focus handling is solid.  Fixes #78526.
5485
5486 2006-06-01  Jackson Harper  <jackson@ximian.com>
5487
5488         * TreeView.cs: Set the default border style in the constructor.
5489         - Move painting to use OnPaintInternal instead of capturing
5490         WM_PAINT, this is the correct way of doing things
5491         - UpdateBelow shouldn't invalidate the scrollbar area
5492         - Cap the top on update below in case the node was above the top
5493         of the viewport rectangle.
5494         - ExpandBelow and Collapse below need to obey Begin/End Update.
5495         * TreeNode.cs: Make is_expanded internal so the treenode
5496         collection can change it without firing the whole event chain.
5497         * TreeNodeCollection.cs: When clearing all the child nodes make
5498         sure to recalc the visible order.
5499         - Improve algo for remove the top node
5500
5501 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
5502
5503         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
5504           SendMessage directly calling window procedures, which in turn might
5505           call SetFocus()
5506
5507 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
5508
5509         * Control.cs: Don't handle WM_SETFOCUS if the same window already
5510           has focus (works around X11 sending a FocusIn after our SetFocus)
5511         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
5512
5513 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
5514
5515         * Mime.cs: Fix for the NET_2_0 build.
5516           NameValueCollection needs StringComparer now.
5517
5518 2006-05-31  Chris Toshok  <toshok@ximian.com>
5519
5520         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
5521         return (via an out parameter) the starting X of the column.
5522         (UpdateVisibleColumn): track change to FromPixelToColumn.
5523         (HitTest): add a ColumnResize case here.
5524         (DrawResizeLine): new function, probably poorly named.
5525
5526         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
5527         only need to keep one reference.
5528         (set_ListManager): same.
5529         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
5530         Also, add support for HitTestType.ColumnResize.
5531         (OnMouseMove): add column resize behavior here, and change the
5532         cursor to the correct one as we move around the datagrid.
5533         (OnMouseUp): terminate the column resize if we're resizing.
5534         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
5535         for the current cell.
5536         (ConnectListManagerEvents): use cached_currencymgr.
5537         (DisconnectListManagerEvents): fill this in, using
5538         cached_currencymgr.
5539         (SetCurrentCell): remove cached_currencymgr_events handling.
5540         (SetDataMember): only call DisconnectListManagerEvents if
5541         cached_currencymgr is != null.
5542         (SetDataSource): same.
5543         (OnListManagerCurrentChanged): cached_currencymgr_events ->
5544         cached_currencymgr.
5545
5546 2006-05-31  Jackson Harper  <jackson@ximian.com>
5547
5548         * BindingManagerBase.cs: Remove somedebug code that creeped into
5549         SVN.
5550         * TreeNode.cs: We get the indent level dynamically right now, so
5551         don't track it as a member.
5552         * TreeNodeCollection.cs: Make sure all nodes added to the list
5553         have parents, treeviews/topnodes setup properly.
5554         - Don't attempt to track indent level.
5555
5556 2006-05-30  Jackson Harper  <jackson@ximian.com>
5557
5558         * BindingContext.cs: Create the currency manager tables here.
5559         This allows us to more easily create null tables (when bad data
5560         members are used), and more easily create related currency
5561         managers.
5562         * CurrencyManager.cs: All the table creation stuff is done by the
5563         binding context now.
5564         - Current should throw an exception if listposition is -1.
5565         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
5566         been bound yet.
5567
5568 2006-05-30  Mike Kestner  <mkestner@novell.com>
5569
5570         * ListView.cs: allow reexpansion of zero-width column headers.
5571         Fixes #78528.
5572
5573 2006-05-28  Chris Toshok  <toshok@ximian.com>
5574
5575         * CurrencyManager.cs (get_Current): after the late binding
5576         listposition = -1 fix, we need to guard against it here and return
5577         null, otherwise we raise an exception (which is swallowed
5578         elsewhere, and breaks datagrid databinding.)
5579
5580 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
5581
5582         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
5583           than WM_SYSKEY, don't throw if get something unexpected (#78507)
5584
5585 2006-05-26  Jackson Harper  <jackson@ximian.com>
5586
5587         * ControlPaint.cs:
5588         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
5589         values, it's faster and it's all we care about (we don't care if
5590         the names aren't equal).
5591         * KeyboardLayouts.cs: Eliminate some dead code.
5592         - Lazy init things
5593         * X11Keyboard.cs: Lazy init keyboard detection.
5594         - Cleanup access modifiers a little.
5595
5596 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
5597
5598         * XplatUIX11.cs: Once again, attempting to get layout just right.
5599
5600 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
5601
5602         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
5603           the sizes of each link section, that will result in sizes that
5604           match DrawString's layout (Fixes #78391)
5605
5606 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
5607
5608         * FileDialog.cs: If AddExtension property is true autocomplete the
5609           extensions in SaveFileDialog correctly. Fixes bug #78453.
5610           Set MyNetwork and MyComputer to "C:\" for windows. This should
5611           fix part 8 of bug #78446 for now.
5612
5613 2006-05-26  Chris Toshok  <toshok@ximian.com>
5614
5615         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
5616         invalidate the current row header if we need to, but presumably
5617         we'll invalidate the row corrsponding to the bounds or
5618         editingControl.
5619         (GridHScrolled): switch back to this method, as it's part of the
5620         public api.  *sigh*.
5621         (GridVScrolled): same.
5622         (OnMouseWheel): hack up something that more or less works.  Call
5623         GridHScrolled/GridVScrolled directly, instead of duplicating much
5624         of their code here.
5625         (EnsureCellVisibility): reinstate a bunch of this code, since we
5626         can't just set the scrollbar Value and expect to do all the work
5627         in the ValueChanged handler.  Also, Call Update() after scrolling
5628         in one direction so the other XplatX11.ScrollWindow call has the
5629         proper stuff in the proper places.
5630         (EditCell): set is_editing to true before calling .Edit.
5631
5632         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
5633         don't bother comparing first.
5634         (OnKeyPress): call grid.ColumnStartedEditing before calling
5635         base.OnKeyPress.  this will set is_changing and invalidate the row
5636         header if necessary.
5637         (ProcessKeyMessage): for WM_CHAR messages, call
5638         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
5639         and WM_KEYDOWN.
5640         
5641         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
5642         it's done in the DataGrid.
5643         (NextState): call grid.ColumnStartedEditing, which takes care of
5644         invalidating the row header (and setting is_changing).
5645
5646         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
5647         here.  it's done in the DataGrid.
5648
5649 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5650
5651         * Control.cs: allow changing the cursor when the mouse position is
5652         out of bounds but Capture is set.
5653         * LinkLabel.cs: handle the case when the mouse button is pressed on the
5654         linklabel but released somewhere else.
5655
5656 2006-05-25  Jackson Harper  <jackson@ximian.com>
5657
5658         * TreeView.cs: When we get focus if there is no selected node make
5659         it the top node
5660         - Remove some uneeded setup code from Draw.
5661         * TreeNodeCollection.cs: If the tree doesn't have a top node when
5662         a new node is inserted make the new node the top.
5663         * XplatUIX11.cs:
5664         * Timer.cs: Use Utc time so that no local time zone stuff needs to
5665         be used (should be faster).
5666         
5667 2006-05-25  Chris Toshok  <toshok@ximian.com>
5668
5669         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
5670         problem with the last commit.
5671
5672 2006-05-25  Chris Toshok  <toshok@ximian.com>
5673
5674         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
5675         need the invalidate call here, while scrolling right-to-left via
5676         the left arrow key (i.e. moving the editing cell while scrolling).
5677
5678         * DataGrid.cs (.ctor): remove the initialization of
5679         ctrl_pressed/shift_pressed.  We no longer track them using key
5680         up/down handlers, but by using Control.ModifierKeys.  Also, switch
5681         to using ValueChanged handlers on the scrollbars instead of
5682         Scrolled event handlers.  This simplifies a bunch of the scrolling
5683         code.
5684         (GridHValueChanged): rename from GridHScrolled, and change it to
5685         work with the new event args.
5686         (GridVValueChanged): same.
5687         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
5688         (OnMouseWheel): actually scroll the datagrid.  Don't change the
5689         selected cell.
5690         (ProcessGridKey): correct all the keyboard navigation stuff I
5691         could find.  Ctrl up/down/left/right/home/end work now.
5692         (EnsureCellVisibility): correct method name spelling.  Also,
5693         simplify this a touch by not explicitly calling the
5694         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
5695         scrollbar value.
5696         (OnKeyUpDG): no need for this method now.
5697         
5698 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5699
5700         * LinkLabel.cs: display the OverrideCursor when hovering the label.
5701         Fixes bug #78392.
5702
5703 2006-05-25  Chris Toshok  <toshok@ximian.com>
5704
5705         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
5706         r61019.
5707
5708 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
5709
5710         * Application.cs: Moved setting of is_modal and closing to before
5711           we create the control, to allow the event handlers called as a
5712           result of creation affect closing. Also removed Gonzalo's previous
5713           change to setting DialogResult, the behaviour has been moved to 
5714           Form.ShowDialog()
5715         * Form.cs: 
5716           - ShowDialog(): Removed explicit creation of the form, let RunLoop
5717             handle it instead
5718           - ShowDialog(): If no dialog result is set, we need to return Cancel
5719           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
5720             the close is cancelled
5721
5722 2006-05-25  Jackson Harper  <jackson@ximian.com>
5723
5724         * StatusBar.cs: We only need to update the sizes of the other
5725         panels when we have auto size contents.  Also we are only updating
5726         the contents of the panel, not the borders, so compensate for the
5727         border width (TODO: get this width from the theme somehow).
5728         * TreeView.cs: Scrollable is true by default
5729         - Use invalidate instead of refresh where needed
5730         - Factor the scrollable value into scrollbar updating
5731         - Update the scrollbars if the Scrollable property is altered
5732         - Update the selected node if its ImageIndex is changed
5733         - Handle null nodes in UpdateNode (mainly so we don't have to
5734         check if selected is null when updating it
5735         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
5736         are factored into the visible count
5737         - Use VisibleCount for clarity in the code
5738         - When the font is changed we need to recurse through all the
5739         nodes and invalidate their sizes
5740         
5741 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5742
5743         * Application.cs: set the DialogResult to fixed when the main form is
5744         hidden or destroyed while being modal.
5745
5746 2006-05-25  Miguel de Icaza  <miguel@novell.com>
5747
5748         * Theme.cs: Use Tangoified messagebox icons. 
5749
5750         (GetSizedResourceImage): Also cope with width = 0 and do not
5751         trigger a warning in that case (0 means "give me your icon from
5752         the resouce, no special size needed).
5753
5754 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
5755
5756         * Application.cs: Leave runloop if the the main modal form is 
5757           hidden (fixes #78484)
5758
5759 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5760
5761         * BindingContext.cs : reject null datasource in Contains() and
5762           Item[].
5763         * CurrencyManager.cs : check data_member validity when data_source
5764           is dataset. When it is late binding, the initial position is -1.
5765
5766 2006-05-24  Jackson Harper  <jackson@ximian.com>
5767
5768         * TreeNodeCollection.cs: Dont't recalculate the visible order on
5769         inserted nodes that aren't visible.  This changes the
5770         max_visible_order which confuses scrollbar settings.
5771         - Use the enumerator to get the prev node instead of duplicating
5772         code.
5773         * TreeView.cs: Use new method for setting scrollbar values
5774         - Don't set the bounds every time the scrollbar is updated
5775         - When updating below the root node use an invalidate instead of a
5776         refresh to prevent the child controls (scrollbars) from being
5777         refreshed. (UpdateBelow still needs to be reworked anyways).
5778         - Reenable SetBottom now that visible orders are set correctly,
5779         added some debug code incase we ever get bad values there again.
5780         - Set the scrollbar max to 2 less then the max value, this
5781         compensates for the max value being one above the node count, and
5782         for scrollbars adding one extra "notch".
5783         - When drawing image nodes if there is an imagelist we draw the
5784         first image in the list if the supplied image index is out of the
5785         image list's bounds.
5786         
5787 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
5788
5789         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
5790           we receive a size change from the WM (Fixes #78503)
5791
5792 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
5793
5794         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
5795           rectangle (Fixes #78501)
5796
5797 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
5798
5799         * ButtonBase.cs: 
5800           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
5801             as a bitfield.
5802           - Fixed MouseMove to no longer switch pressed state unless the left
5803             mouse button is pressed. Atsushi provided the original patch (#78485)
5804           
5805 2006-05-24  Jackson Harper  <jackson@ximian.com>
5806
5807         * ScrollBar.cs: New internal methods that allow us to change a
5808         couple values on the scrollbar (the most common case is maximum
5809         and large change) without getting multiple invalidates.
5810
5811 2006-05-24  Chris Toshok  <toshok@ximian.com>
5812
5813         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
5814         (Edit): save off the original state in oldState, and set
5815         grid.is_editing to true.
5816         (OnKeyDown): abort editing if escape is pressed.  also, call
5817         NextState if space is pressed.
5818         (OnMouseDown): call NextState.
5819         (NextState): factor out shared code from OnKeyDown and OnMouseDown
5820         here.  Also, only invalidate the row header once (on the initial
5821         is_changing switch) to save on redraws.
5822
5823 2006-05-24  Chris Toshok  <toshok@ximian.com>
5824
5825         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
5826         if the value in the cell is different than it was before.  This
5827         keeps us from triggering a layout when we move around a datarid
5828         with a highlighted cell.
5829         (Edit): suspend layout when creating/positining the text box, and
5830         resume passing false so we don't ever actually re-layout.
5831         (ReleaseHostedControl): same.
5832         (EnsureTextBox): reformat slightly, and set WordWrap to false.
5833
5834         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
5835         control-key sequences should go to the datagrid - remove that
5836         lock.  Also, modify the conditions under which we move between
5837         cells when moving the cursor within a cell, and remove the "this"
5838         and "base" from field accesses.  We weren't even consistent, given
5839         they all were in the base class.
5840
5841 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
5842
5843         * Binding.cs : (.ctor)
5844           An obvious NRE fix for BindingTest.CtorNullTest().
5845
5846 2006-05-23  Chris Toshok  <toshok@ximian.com>
5847
5848         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
5849         them between lines.  This fixes some quirks editing cells in the
5850         datagrid.
5851
5852 2006-05-23  Jackson Harper  <jackson@ximian.com>
5853
5854         * TreeView.cs: Use begin/end update when doing expand/collapse all
5855         so that we don't get flicker on the scrollbar.
5856
5857 2006-05-23  Jackson Harper  <jackson@ximian.com>
5858
5859         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
5860         treenode calculations to be independant of the painting code. To
5861         do this nodes track a visible order which is calculated by the
5862         treeview.
5863         - Call new methods for expanding/collapsing nodes.  These methods
5864         use scrollwindow so we don't have to update everything below the
5865         node.
5866         * TreeView.cs: Refactored drawing and scrolling code.  We don't
5867         need to update nodes when drawing anymore or calculate scrollbar
5868         stuff.
5869         - Added new methods for expanding/collapsing nodes. These methods
5870         use ScrollWindow so as to not have to redraw all the nodes below.
5871         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
5872         we add/remove nodes or sort.
5873         - Handle removing the selected and the top node properly.
5874
5875 2006-05-23  Chris Toshok  <toshok@ximian.com>
5876
5877         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
5878         maybe this should actually happen in the datagrid code?
5879         (EndEdit): no need to invalidate anything, given that
5880         ReleaseHostedControl causes the datagrid to relayout, which
5881         invalidates everything anyway.
5882
5883         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
5884         in SetCurrentCell).
5885         (set_SelectionBackColor): call InvalidateSelection instead of
5886         Refresh.
5887         (set_SelectionForeColor): same.
5888         (BeginEdit): Flesh this out a bit.
5889         (CancelEditing): only do any of this if we're editing/adding.
5890         (EndEdit): same.
5891         (OnMouseDown): there's no need to cancel editing here, it's done
5892         in SetCurrentCell.
5893         (SetCurrentCell): only invalidate the current row header if it's a
5894         different row than the new one.
5895         (ShiftSelection): fix this to work like MS does.
5896         (ResetSelection): factor out the invalidation of selected_rows to
5897         InvalidateSelection.
5898         (SetDataSource): cancel any editing that's going on.
5899
5900         * DataGridColumnStyle.cs
5901         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
5902         call the non-interface version.
5903
5904         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
5905         header rectangle with the clip rectangle so we don't redraw the
5906         entire header for just a small area.  Gets rid of the last flicker
5907         when horizontally scrolling.
5908         (DataGridPaintRow): same.
5909
5910 2006-05-23  Mike Kestner  <mkestner@novell.com>
5911
5912         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
5913         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
5914         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
5915         Critical bug report.
5916
5917 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
5918
5919         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
5920           and this fixes #78493
5921
5922 2006-05-23  Miguel de Icaza  <miguel@novell.com>
5923
5924         * Theme.cs (GetSizedResourceImage): Scale images if the proper
5925         size is not found.  
5926         
5927         * FileDialog.cs: Do not change the background for the side bar as
5928         it wont work nicely with the theme, and also reduces the artifacts
5929         in rendering the icons (which I want to fix too).
5930
5931         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
5932         resources, not resgen resources. 
5933
5934         (PlatformDefaultHandler): Pull images using the new API.
5935
5936 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
5937
5938         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
5939           a reference to the hwnd and will not remove it unless there are
5940           no pending exposures (fixes #78341)
5941         * XplatUI.cs: Improved debug
5942
5943 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
5944
5945         * MenuAPI.cs : don't handle OnClick event when it was not the left
5946           button. Fixed bug #78487.
5947
5948 2006-05-23  Mike Kestner  <mkestner@novell.com>
5949
5950         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
5951         prefer submenus to the top menu for item lookup, to avoid popping down
5952         top-row items.
5953
5954 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
5955
5956         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
5957           Graphics.FillRectangle as the visual results are really bad (even
5958           on win). We now draw perfect arrows (and perfect shadows when the
5959           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
5960           Pen.DashPattern to draw the dots of each line.
5961
5962 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
5963
5964         * FileDialog.cs: Update the filename combobox when navigating through
5965           the ListView with the cursor keys. Fixes part 7 of bug #78446.
5966
5967 2006-05-22  Mike Kestner  <mkestner@novell.com>
5968
5969         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
5970         Fixes #78463.
5971
5972 2006-05-22  Mike Kestner  <mkestner@novell.com>
5973
5974         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
5975         requests. Fix a misspelled parameter and a copy paste exception error
5976         in Select.
5977
5978 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
5979
5980         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
5981           to get the same width/height (5/13) on X11 as the default font has on
5982           win32. This means that our DefaultFont emSize is smaller than the 
5983           the MS SWF equivalent (even thought the width/height stays the same)
5984
5985 2006-05-20  Jackson Harper  <jackson@ximian.com>
5986
5987         * MdiClient.cs:
5988         * MdiWindowManager.cs:
5989         * InternalWindowManager.cs: Make sure to use the border width from
5990         the theme.
5991
5992 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
5993
5994         * PrintDialog.cs: Implements printer details
5995
5996 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
5997
5998         * FileDialog.cs: Added focus handling for PopupButtonPanel.
5999           Fixes part 1 and 2 of bug #78446
6000
6001 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
6002
6003         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
6004           instead of sticking to the first ever calculated value
6005
6006 2006-05-19  Mike Kestner  <mkestner@novell.com>
6007
6008         * ComboBox.cs: fix mouse motion selection to use MousePosition and
6009         PointToClient, since Capture is set. Fixes #78344.
6010
6011 2006-05-19  Mike Kestner  <mkestner@novell.com>
6012
6013         * ListView.cs: match MS behavior in Details view where items are not
6014         drawn if Columns.Count == 0. 
6015         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
6016         Use a separate pen to draw the check, since changing the width affects
6017         the box as well.  Fixes #78454.
6018
6019 2006-05-18  Miguel de Icaza  <miguel@novell.com>
6020
6021         * ListView.cs: ArgumentOutOfRangeException, single versions of the
6022         exception should throw the name of the invalid argument.
6023
6024         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
6025         there are no files listed. 
6026
6027 2006-05-18  Jackson Harper  <jackson@ximian.com>
6028
6029         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
6030         up.
6031
6032 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
6033
6034         * Control.cs: Brought back our old UpdateZOrder method as a private
6035           function and switched our calls from UpdateZOrder to the new one.
6036           This fixes the Paint.Net canvas disappearing bug.
6037
6038 2006-05-18  Jackson Harper  <jackson@ximian.com>
6039
6040         * Theme.cs:
6041         * ThemeWin32Classic.cs:
6042         * InternalWindowManager.cs: Move the drawing into the theme,
6043         expose everything the theme should need from the window manager.
6044
6045 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
6046
6047         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
6048           from the call to NativeWindow to avoid walking up the parent chain
6049           further than needed (speeds up setting cursors and avoids setting
6050           the wrong cursor if a parent has another cursor defined)
6051         * Cursor.cs: When loading an icon as cursor, MS uses the center of
6052           the icon as hotspot, not what's contained as hotspot in the icon
6053           file. This fixes the perceived drawing offset seen with Paint.Net
6054         
6055 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
6056
6057         * XplatUIX11.cs: 
6058           - Store the calculated rectangle in Hwnd object and use it when 
6059             setting the client size
6060           - Force Toolwindows to always be type Dock, to ensure they're on top
6061
6062 2006-05-18  Mike Kestner  <mkestner@novell.com>
6063
6064         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
6065         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
6066         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
6067         Substantial refactoring to remove confusing nested classes. Coding
6068         standard and Get+Set->property refactorings.  Shift to index based
6069         highlighting in ComboListBox instead of constantly using IndexOf and
6070         Items[]. Add invalidations on resize for DropDownList to fix ugliness
6071         in FileDialog growth.  Draw borders manually since Simple mode needs
6072         to look like two independent controls.  Make listbox border
6073         conditional to DropDownStyle.  Improved OwnerDraw support.
6074
6075 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
6076
6077         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
6078         Don't set the disposed graphics to null, so we can throw the "right"
6079         exception if the graphics is reused later (added a flag to avoid 
6080         double disposing). Some behaviours are different under 2.0 and are
6081         filled under bug #78448.
6082
6083 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
6084
6085         * Control.cs: When double-buffering is enabled, we need to reset
6086           our graphics context between paint calls. Otherwise, any 
6087           transformations and other alterations on the context will 
6088           become cumulative (#77734)
6089
6090 2006-05-18  Mike Kestner  <mkestner@novell.com>
6091
6092         * ListView.cs: do focused item selection like MS on clicks. 
6093         Rework focus handling for ItemControl so LostFocus invalidates as
6094         well.
6095         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
6096         the ListView ItemControl has focus.
6097
6098 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
6099
6100         * XplatUIX11.cs: If client_window ends up being width or height zero
6101           due to border settings, move it off window inside whole_window (#78433)
6102
6103 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
6104
6105         * Mime.cs: Shrink the mime file cache correctly.
6106
6107 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
6108
6109         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
6110
6111 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
6112
6113         * XplatUIX11.cs (AddExpose): More sanity checks
6114
6115 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6116
6117         * XplatUIX11.cs:
6118           - AddExpose: Don't add expose ranges outside the size of our
6119             window
6120           - Cast opacity values to Int32 to avoid crashes with certain
6121             values
6122           - Added disabled code paths that protect against illegal cross-
6123             thread painting (Developers.exe)
6124
6125 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
6126
6127         * ProgressBar.cs: Invalidate the control when it's resized
6128           since block size is based on control size. (#78388)
6129
6130 2006-05-16  Miguel de Icaza  <miguel@novell.com>
6131
6132         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
6133         of setting the incoming argument to the "reset" value, we set the
6134         this.datamember to string.empty (before we were invalidating the
6135         incoming data).   
6136
6137         Fixes 78420
6138
6139 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6140
6141         * Form.cs: Only apply transparency settings after the form
6142           is created. (Fixes #77800)
6143
6144 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
6145
6146         * ApplicationContext.cs: Grab the HandleDestroyed event so
6147           we know when to fire OnMainFormClosed 
6148
6149 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6150
6151         * Application.cs: Introduced sub-class to allow tracking of
6152           threads and centralized triggering of the event mess for
6153           ThreadExit, AppExit, etc..  (#76156)
6154
6155 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
6156
6157         * MimeIcon.cs:
6158           - Do not return a null icon index value for a mime subclass.
6159             Instead try the main mime type class too.
6160           - Seems that some newer distributions don't have a link to some
6161             gnome default icons anymore. So check the default gnome dir too.
6162           
6163
6164 2006-05-16  Jackson Harper  <jackson@ximian.com>
6165
6166         * MdiClient.cs: Don't paint the parent background image if we have
6167         our own background image.
6168
6169 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
6170
6171         * Control.cs:
6172           - PerformLayout: Do not shrink space filled by DockStyle.Fill
6173             controls, all filled controls are supposed to overlap (#78080)
6174           - UpdateZOrder is supposed to update the control's z-order in the
6175             parent's z-order chain. Fixed to behave like that
6176           - BringToFront: Removed obsolete code
6177           - SendToBack: Simplyfied
6178           - SetChildIndex: Trigger layout calculations when Z-order changes
6179             since layout is done by z-order
6180
6181 2006-05-16  Chris Toshok  <toshok@ximian.com>
6182
6183         [ fixes bug #78410 ]
6184         * DataGrid.cs (set_AlternatingBackColor): use
6185         grid_drawing.InvalidateCells instead of Refresh().
6186         (set_BackColor): call grid_drawing.InvalidateCells.
6187         (set_BackgroundColor): use Invalidate instead of Refresh.
6188
6189         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
6190         invalidate the cell area.
6191
6192 2006-05-15  Chris Toshok  <toshok@ximian.com>
6193
6194         [ fixes bug #78011 ]
6195         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
6196         on to DataGridPaintRow.
6197         (DataGridPaintRow): take a clip argument, and only draw the cells
6198         which intersect it.  same with the not_usedarea.
6199
6200         * Theme.cs (DataGridPaintRow) add @clip parameter.
6201
6202         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
6203         XplatUI.ScrollWindow.
6204         (ScrollToRow): same.
6205
6206         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
6207         with last column which was causing a gray swath to appear with the
6208         XplatUI.ScrollWindow code.
6209
6210 2006-05-15  Chris Toshok  <toshok@ximian.com>
6211
6212         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
6213         use XplatUI.ScrollWindow.
6214         (VerticalScrollEvent): use XplatUI.ScrollWindow.
6215
6216 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
6217
6218         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
6219
6220 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
6221
6222         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
6223           file since there are no equivalent X11 cursors
6224
6225 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
6226
6227         * MonthCalendar.cs : DateTimePicker should reflect selected date
6228           on mouse*up*, not mouse*down*. Fixed originally reported part of
6229           bug #76474.
6230
6231 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
6232
6233         * TabControl.cs : When argument index is equal or more than tab
6234           count, just ignore. Fixed bug #78395.
6235
6236 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
6237
6238         * Control.cs: Dispose all child controls when control is diposed (#78394)
6239
6240 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
6241
6242         * ColorDialog.cs: Finally it is possible to select the color with
6243           the text boxes
6244
6245 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
6246
6247         * PrintDialog.cs: Fix typo
6248
6249 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
6250
6251         * PrintDialog.cs: PrintDialog is not resizable
6252         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
6253           color. Made some ToolBar drawing methods protected virtual.
6254
6255 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
6256
6257         * PrintDialog.cs: Implementation of the PrintDialog
6258
6259 2006-05-12  Chris Toshok  <toshok@ximian.com>
6260
6261         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
6262         thumb, instead use MoveThumb.  This has the side effect of making
6263         most of the other thumb moving machinery use MoveThumb as well.
6264         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
6265         need to actually invalidate the rectangle where the new thumb will
6266         go.
6267         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
6268         We force an Update() after, so it's not as fast as it could be,
6269         but at least there's zero flicker and no droppings.
6270         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
6271         (UpdateThumbPos): add another argument (dirty), which says whether
6272         or not to calculate/add dirty regions which we later invalidate.
6273         For cases where we know we're going to use MoveThumb, we pass
6274         false for this.  Otherwise, pass true.
6275
6276 2006-05-12  Jackson Harper  <jackson@ximian.com>
6277
6278         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
6279         the status bar.
6280         
6281 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
6282
6283         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
6284           and GetClipRegion methods and UserClipWontExposeParent property.
6285         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
6286           overriding UserClipWontExposeParent property, setting to false, since
6287           Win32 handles the required expose messages to draw our clipped parent
6288           areas internally
6289         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
6290           PaintEventStart to set the user clip region if set.
6291         * Control.cs: 
6292           - Now internally tracking the Region for the control since we need to
6293             store it if the handle is not yet created and only set it when it
6294             becomes created. Before setting the region forced handle creation
6295           - Added code to draw the parents underneath a user-clipped region
6296         * Hwnd.cs: Added UserClip property
6297
6298 2006-05-12  Chris Toshok  <toshok@ximian.com>
6299
6300         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
6301         (set_Maximum): same.
6302         (set_Minimum): same.
6303         (set_SmallChange): same.
6304         (OnMouseUpSB): remove the call to refresh when releasing the
6305         thumb.  We shouldn't need it.
6306         
6307 2006-05-12  Miguel de Icaza  <miguel@novell.com>
6308
6309         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
6310         AutoSize set to None, we do not need to relayout everything, we
6311         just need to invalidate the current region.
6312
6313         (Draw): Do not draw the entire ClientArea, just redraw the
6314         clip area being passed.
6315
6316         * MdiClient.cs: Make MdiClient constructor with the Form argument
6317         internal. 
6318
6319 2006-05-12  Jackson Harper  <jackson@ximian.com>
6320
6321         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
6322         parents background image,  but strangely not their own.
6323         - (DrawStatusBarPanel): Take into account horizontal alignment
6324         when drawing the strings and icons.
6325
6326 2006-05-12  Mike Kestner  <mkestner@novell.com>
6327
6328         * ListBox.cs: avoid invalidations for focus when the collection is
6329         empty. 
6330
6331 2006-05-12  Chris Toshok  <toshok@ximian.com>
6332
6333         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
6334         invalidate the entire thumb area.  Call InvalidateDirty which
6335         limits the redraw to the thumb itself and surrounding pixels.
6336
6337         * XplatUIX11.cs (ScrollWindow): optimize copying.
6338         
6339 2006-05-12  Chris Toshok  <toshok@ximian.com>
6340
6341         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
6342         Figure out the positioning/layout in a single pass instead of
6343         multiple recursive invocations.  Speeds up the initial display of
6344         the data grid.  Also, make many things private that were
6345         originally public but unused outside this class.
6346
6347 2006-05-11  Jackson Harper  <jackson@ximian.com>
6348
6349         * MdiClient.cs: Improved layout code.
6350
6351 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
6352
6353         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
6354           not SelectedObject.
6355
6356 2006-05-11  Chris Toshok  <toshok@ximian.com>
6357
6358         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
6359         union of that will always be {0,0,width,height}.
6360
6361 2006-05-11  Jackson Harper  <jackson@ximian.com>
6362
6363         * Form.cs: Match MS's DefaultSize for forms (they must have
6364         changed the size in sp2).
6365
6366 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
6367
6368         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
6369
6370 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
6371
6372         * TextControl.cs : Fixed bug #78109. This incorrect position
6373           comparison caused crash on automatic line split.
6374         * TextBoxBase.cs : reduce duplicate code.
6375
6376 2006-05-10  Jackson Harper  <jackson@ximian.com>
6377
6378         * MdiClient.cs: Active form is only sent to the back when using
6379         the Next form functionality, when a form is clicked the current
6380         active shouldn't be sent to the back.
6381         - Layout the mdi windows when the container is first made visible.
6382         * Form.cs: Give the MdiClient a ref to the containing form when we
6383         create it.
6384         
6385 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
6386
6387         * LinkLabel.cs : link_font could be uninitialized, so populate one
6388           before actual use. Fixed bug #78340.
6389
6390 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
6391
6392         * XplatUIX11.cs : clipboard format native value is IntPtr.
6393           Fixed bug #78283.
6394
6395 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
6396
6397         * Control.cs: 
6398           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
6399             which is passed up the parent chain by DefWndProc
6400           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
6401             to DefWndProc (#77956)
6402         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
6403
6404 2006-05-10  Jackson Harper  <jackson@ximian.com>
6405
6406         * MdiClient.cs: We need to remove the controls from the mdi
6407         collection, when we close the window.
6408         * MdiWindowManager.cs: Special handling of closing mdi windows.
6409         * InternalWindowManager.cs: Make the close method virtual so the
6410         mdi window manager can handle it specially.
6411
6412 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
6413
6414         * DataGrid.cs:
6415           - Recalculate grid when the data source has changed
6416           - Matches styles provided by user from all data sources types
6417         * DataGridTableStyle.cs: For columns that provided by the user set the
6418         with the preferred value is there was unassigned.
6419         * CurrencyManager.cs: throw OnItemChanged event
6420
6421 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
6422
6423         * PictureBox.cs: Don't animate until handle is created. Start animation
6424           when handle is created.
6425
6426 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
6427
6428         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
6429           current codebase.
6430         * XEventQueue.cs: We don't need to provide the extra info
6431
6432 2006-05-10  Jackson Harper  <jackson@ximian.com>
6433
6434         * MdiClient.cs: If the mdi clients parent form has a background
6435         image set, we draw that background image for the mdi area's
6436         background.
6437
6438 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
6439
6440         * TextBoxBase.cs: Set IBeam cursor (#78347)
6441
6442 2006-05-10  Mike Kestner  <mkestner@novell.com>
6443
6444         * ToolBar.cs: fix some text padding issues with ButtonSize
6445         calculation. Update the default size to match MS documentation.
6446         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
6447         button size. Fixes #78296.
6448
6449 2006-05-10  Mike Kestner  <mkestner@novell.com>
6450
6451         * ListBox.cs: use is_visible for scrollbar positioning in case the
6452         control isn't on screen yet.  Fix off by one with Right vs Width
6453         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
6454         
6455 2006-05-10  Jackson Harper  <jackson@ximian.com>
6456
6457         * X11Dnd.cs: Drop to a control with another control on top of it.
6458         * ToolBar.cs: Work on a copy of the buttons list, so that it can
6459         be modified in click handlers. TODO: Look for similar problems in
6460         other controls.
6461
6462 2006-05-09  Jackson Harper  <jackson@ximian.com>
6463
6464         * Form.cs: Window managers need the old window state when setting
6465         window state now.
6466         * InternalWindowManager.cs: Allow the base mdi window manager to
6467         handle more of the MDI only stuff (like maximize buttons).
6468         * MdiWindowManager.cs: Fix some snafus in changing the window
6469         state.  Add all the menu functionality, for both popup and
6470         maximized menus.
6471         * MdiClient.cs: When a new form is selected the currently
6472         activated form is sent to the back, this matches MS.
6473         - Implement a new method to activate the next mdi child window.
6474
6475 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
6476
6477         * Control.cs: 
6478           - Added new InternalCapture method to allow controls to prevent
6479             the capture behaviour on the click handlers
6480           - Switched to use InternalCapture
6481         * ComboBox.cs:
6482           - Using InternalCapture to prevent mouse captures from being released
6483             on mouse button release (Fixes #78100)
6484         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
6485           returns Form borders if a caption is present. (Fixes #78310)
6486
6487 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
6488
6489         * TreeNode.cs: Changed serialization .ctor to not require every field
6490           to be present. (#78265)
6491         * OwnerDrawPropertyBag.cs: Added serialization .ctor
6492
6493 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
6494
6495         * MimeIcon.cs: for is faster than foreach for strings.
6496
6497 2006-05-05  Mike Kestner  <mkestner@novell.com>
6498
6499         * CheckedListBox.cs: update check handling code to not use selected.
6500         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
6501         behavior for visual feedback, motion response, shift/ctrl handling,
6502         and properly deal with all 4 selection modes. Updates to bounds
6503         handling logic.  Add scroll wheel support. [Fixes #77842]
6504
6505 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
6506
6507         * ListView.cs:
6508           - Moved adding of Implicit controls into .ctor. That way, subsequent
6509             creation of the controls will not cause them to think they are 
6510             toplevel windows (fixes #78200 header problem)
6511           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
6512           - Switched visibility setting of header control to use internal field
6513             to avoid triggering handle creation
6514           - Now checking if handle is created before causing a refresh when items
6515             are added (This makes us now match handle creation time with MS)
6516         * Splitter.cs: Removed loading of private splitter cursor, switched to
6517           Cursors version now that that is loading the right ones
6518         * Cursors.cs: Load proper splitter cursors from resources
6519         * Cursor.cs: Added second method of loading resource cursors for the 
6520           VS.Net users amongst us
6521
6522 2006-05-05  Mike Kestner  <mkestner@novell.com>
6523
6524         * ListView.cs: give header_control a minimum size based on the
6525         ListView size.
6526
6527 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
6528
6529         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
6530           window seems to do that with metacity, so set that type. (#78120)
6531
6532 2006-05-05  Mike Kestner  <mkestner@novell.com>
6533
6534         * ListViewItem.cs: fix Details mode checkbox layout bug.
6535         * ThemeWin32Classic.cs: draw a ListView column header for unused space
6536         at the end of the header, if it exists. [Fixes for #78200]
6537
6538 2006-05-04  Jackson Harper  <jackson@ximian.com>
6539
6540         * MdiClient.cs: Add a helper property to get the container form.
6541         * MdiWindowManager.cs: We have to make sure to use the menu origin
6542         when drawing the icons and buttons, this fixes maximized window
6543         icons/buttons on win32.
6544         * InternalWindowManager.cs: Reset the restore captions when a
6545         window goes from Maximized to Minimized and vice versa. Move the
6546         DrawMaximizedButtons into the MdiWindowManager source, tool
6547         windows can't be maximized. NOTE: This could use a little
6548         refactoring if time ever permits.
6549         
6550 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
6551
6552         * TextBox.cs: Add MWFCategoryAttributes
6553         * TextBoxBase.cs: Add MWFCategoryAttributes
6554         * Form.cs: Add MWFCategoryAttributes
6555
6556 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
6557
6558         * Control.cs: Add MWFCategoryAttributes
6559         * ScrollableControl.cs: Add MWFCategoryAttributes
6560
6561 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
6562
6563         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
6564           Divider is true. Fix a little glitch in PropertyToolBar
6565           drawing code
6566
6567 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
6568
6569         * Control.cs:
6570           - Dispose: Call base.Dispose, this causes the disposed event
6571             to be fired (and probably other, more important stuff)
6572           - SetVisibleCore: Set is_visible to true after creating the
6573             window so that the window still gets created invisible (if
6574             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
6575             to generate a WM_ACTIVE message
6576         * Form.cs: Call Dispose when we want to destroy the window, instead of
6577           just destroying the handle (Dispose will do that for us)
6578         * XplatUIX11.cs:
6579           - RootWindow also needs a queue, so we can properly process the
6580             property change events from RootWindow (like Activate)
6581           - Generatic synthetic WM_ACTIVE message when the active window is
6582             being destroyed
6583
6584 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
6585
6586         * LinkLabel.cs: Trigger a recalc of our label dimensions when
6587           bounds are changed
6588
6589 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
6590
6591         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
6592           for determining width and height (image might not be assigned if
6593           we're drawing an imagelist)
6594
6595 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
6596
6597         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
6598         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
6599           height from system
6600         * Theme.cs: No longer returns hardcoded menu height, instead calls
6601           new driver method
6602         * Form.cs (OnLoad): Scaling happens before triggering Load events 
6603           on MS (# 78257)
6604
6605 2006-05-01  Mike Kestner  <mkestner@novell.com>
6606
6607         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
6608
6609 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
6610
6611         * TextBoxBase.cs: Removed Fixme
6612         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
6613
6614 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
6615
6616         * XplatUIX11.cs:
6617           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
6618             the rectangle relative to the parent, considering borders. We
6619             don't really want that.
6620           - ScrollWindow: Fixed warning to be more understandable
6621         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
6622           scrollbars and scroll only the visible area
6623         * RichTextBox.cs: Removed debug output
6624
6625 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
6626
6627         * NumericUpDown.cs (Text): Just use base
6628         * UpDownBase.cs: Ensure txtView is created before using it
6629
6630 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
6631
6632         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
6633           casting to IntPtr to avoid 64bit overflow errors
6634
6635 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
6636
6637         * Control.cs:
6638           - AllowDrop: Don't force handle creation.
6639           - CreateHandle: Added call to tell driver if we're allowed to drop
6640
6641 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
6642
6643         * FileDialog.cs: Remember the last directory not only for the
6644           current instance but also for new FileDialog instances.
6645
6646 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
6647         
6648         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
6649           broke sending async messages
6650
6651 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
6652
6653         * XplatUIX11.cs:
6654           - ScrollWindow: Fixed method. We finally generate expose events again
6655             for scrolled areas. This was causing 'garbage' when scrolling
6656             textbox and other controls that used ScrollWindow
6657           - Switched from using the regular queue for paint events to the MS 
6658             model of 'generating' paint events when the queue is empty.
6659             We use the new XQueueEvent.Paint subclass to store which windows
6660             need painting.
6661           - AddExpose now takes the x/y/width/height of the exposed area
6662             and inserts the window into the paint queue if not already there
6663           - InvalidateWholeWindow: Switched to use new AddExpose method
6664           - UpdateMessageQueue: Added which queue to monitor for paint events
6665           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
6666             the unlikely case nothing above handles it. We reset the expose
6667             pending states to get them off the queue.
6668           - GetMessage: Now pulls a paint event if no other events are in the
6669             queue
6670           - Invalidate: Switched to new AddExpose method
6671           - PeekMessage: Updated to understand pending paint events
6672           - UpdateWindow: Fixed logic bug. We were only updating if the window
6673             didn't need updating. Also switched to sending WM_PAINT directly,
6674             like MS does.
6675         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
6676           and random access Remove(). The random access is needed to handle
6677           UpdateWindow() where a WM_PAINT is sent directly without accessing
6678           the queue.
6679         * ScrollBar.cs: Added Update() calls to cause immediate updates to
6680           allow for better feedback when scrolling. Scrollbars are small and
6681           the immediate update should make it 'feel' more responsive without
6682           slowing things down. ScrollBar still needs it's invaliate logic
6683           updated to not always invalidate the whole bar on certain changes.
6684
6685 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6686
6687         * Control.cs:
6688         (BackColor): if the control does not support a transparent background,
6689         return the default backcolor when the parent backcolor is transparent.
6690
6691 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
6692
6693         * Application.cs: Updated to new StartLoop/GetMessage API
6694         * RichTextBox.cs: Provide some output on RTF parsing errors
6695         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
6696           new queue_id argument to GetMessage and PeekMessage to allow faster
6697           handling of per-thread queues in drivers.
6698         * Hwnd.cs: Added Queue tracking and property
6699         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
6700         * XEventQueue.cs: Added thread trackingA
6701         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
6702         * XplatUIX11.cs:
6703           - Implemented new per-thread queue
6704           - GetMessage: Fixed return/break behaviour on several cases. We were
6705             returning stale messages in some cases, instead of just processing
6706             the next message
6707
6708 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
6709
6710         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
6711
6712 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
6713
6714         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
6715           fixed off-by-one comparisons between Width/Height and Right/Bottom.
6716
6717 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
6718
6719         * PropertyGridView.cs: Fix drop down width.
6720
6721 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
6722
6723         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
6724           a mess in DrawToolBar, so I removed one of them.
6725
6726 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
6727
6728         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
6729           needed (clip). Otherwise we get artifacts.
6730
6731 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
6732
6733         * FixedSizeTextBox.cs: Added constructor to allow specifying which
6734           dimension is fixed
6735         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
6736           and switched FixedSizeTextBox to only be fixed vertical (#78116)
6737         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
6738           if it matches the scale base font (avoids unneeded scaling)
6739
6740 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
6741
6742         * X11DesktopColors.cs: One gtk_init_check should be enough
6743
6744 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
6745
6746         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
6747           match MS behaviour
6748
6749 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
6750
6751         * TextBoxBase.cs: 
6752           - Generate OnTextChanged for Backspace even if we're only deleting
6753             the current selection
6754           - When setting the Text property, only select all text if the
6755             control does not have focus when it is being set. Otherwise
6756             just place the cursor at the beginning of the control
6757
6758 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
6759
6760         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
6761           Added a little helper to draw PropertyGrid ToolBar with a different
6762           border and a different BackColor.
6763         * PropertyGrid.cs: Some background parts didn't get painted with the
6764           correct background color. Added a class that helps us to draw the
6765           correct border for PropertyGridView and a class that helps us to
6766           draw ToolBars with a different backcolor
6767         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
6768
6769 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
6770
6771         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
6772         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
6773
6774 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
6775
6776         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
6777           into the palette entries. Also, since we're working on a copy
6778           we needed to copy the palette back onto the bitmap.
6779         * Cursor.cs: Same fix as XplatUIWin32.cs.
6780
6781 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
6782
6783         * ImageListStreamer.cs: Need to read the var (or we're off)
6784
6785 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
6786
6787         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
6788           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
6789           TextBoxBase.cs: Unused var fixes
6790         * AxHost.cs: Small 2.0 fix
6791         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
6792           as it seems that is what at least Metacity expects. This will make
6793           icons show up on 64bit platforms. We still have some 64bit size
6794           issues, though, since the startup app window size still won't match.
6795
6796 2006-04-25  Mike Kestner  <mkestner@novell.com>
6797
6798         * *.cs: cleanup newly reported exception var unused warnings.
6799
6800 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6801
6802         * ThemeWin32Classic.cs: Button image alignment now matches exactly
6803           ms
6804
6805 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6806
6807         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
6808           image. The image position is always the same, no matter if the
6809           button is pressed or not.
6810
6811 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6812
6813         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
6814           selection and set the correct filename for SaveFileDialog.
6815           Patch by Emery Conrad.
6816
6817 2006-04-24  Mike Kestner  <mkestner@novell.com>
6818
6819         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
6820         check for item.X outside the ClientRect instead of item.Y. Fixes
6821         #78151.
6822
6823 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6824
6825         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
6826         trust that value blindly and do some sanity check. Fixes bug #77814.
6827
6828 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6829
6830         * ImageListStreamer.cs: save the mask as a 1bpp image.
6831
6832 2006-04-21  Mike Kestner  <mkestner@novell.com>
6833
6834         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
6835         pass Checked and Indeterminate to the Theme Engine. Improve
6836         encapsulation with ListBox.
6837         * ListBox.cs: Keep a StringFormat instead of calculating it every item
6838         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
6839         nested types.  Move all CheckState functionality to CheckedListBox.
6840         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
6841         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
6842         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
6843         single base list. Fix scrollbar sizing and placement to mirror MS.
6844         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
6845         used.
6846         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
6847         for CheckedListBox by using new DrawItemState info.  Center the
6848         checkboxes on the items. Use new StringFormat property.
6849
6850 2006-04-18  Jackson Harper  <jackson@ximian.com>
6851
6852         * Form.cs: MdiChildren don't do default locations the same way as
6853         regular forms.  This prevents a crash when trying to position the
6854         mdi windows.
6855
6856 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
6857
6858         * PropertyGridTextBox.cs: Formatting, copyright
6859         * PropertiesTab.cs: Formatting
6860         * PropertyGrid.cs: Formatting
6861         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
6862           click toggling of values
6863           
6864 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
6865
6866         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
6867         * Control.cs (.ctor): verify_thread_handle is static, don't reset
6868           every time a control is created
6869         * Application.cs: Removed obsolete EnableRTLMirroring method
6870
6871 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
6872
6873         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
6874         SelectedIndex to -1. Fixes bug #78121.
6875
6876 2006-04-17  Jackson Harper  <jackson@ximian.com>
6877
6878         * Binding.cs: Handle null values for Current and BindingContext.
6879         This occurs when binding is a little delayed.
6880         * CurrencyManager.cs: return null for Current when there are no
6881         items in the list.
6882         - Hookup to the listchanged event on the DataView and update
6883         bindings when the list is changed.  This fixes late binding of
6884         controls.
6885
6886 2006-04-17  Jackson Harper  <jackson@ximian.com>
6887
6888         * X11Dnd.cs:
6889         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
6890         Ringenbach.
6891
6892 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
6893
6894         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
6895           place
6896         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
6897           with the correct ButtonState
6898
6899 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
6900
6901         * XplatUIX11.cs: Improved distinguishing between window types to
6902           tell the WM a type closer to what the app wants (Fixes #78107)
6903
6904 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
6905
6906         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
6907           GrabHandle
6908
6909 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
6910
6911         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
6912           drawing code to reflect the size grip changes
6913
6914 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6915
6916         * ImageListStreamer.cs: fix handling of the mask that follows the main
6917         bitmap when deserializing and serialize it properly. The generated mask
6918         should better be a 1bpp image, but I'll do that later.
6919
6920 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
6921
6922         * FileDialog.cs: Show something in the DirComboBox on *nix if the
6923           path doesn't fit into some of our Current.Places
6924
6925 2006-04-13  Jackson Harper  <jackson@ximian.com>
6926
6927         * ComboBox.cs: Use borders instead of drawing our own decorations,
6928         try to obey correct rules for heights.
6929         * Theme.cs:
6930         * ThemeNice.cs:
6931         * ThemeClearLooks.cs:
6932         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
6933         this is now handled by borders.
6934         - Remove unused DrawListBoxDecorationSize method.
6935         
6936 2006-04-13  Mike Kestner  <mkestner@novell.com>
6937
6938         * MenuAPI.cs: null guarding for the disbled click check fixes crash
6939         reported by Alex.
6940
6941 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
6942
6943         * ThemeWin32Classic.cs: 
6944           - Fixed CPDrawStringDisabled
6945           - Corrected drawing of disabled menu items
6946           - Fixed drawing of disabled radio buttons (bug #78095)
6947           - Draw check in a disabled CheckBox with color ControlDark 
6948
6949 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6950
6951         * Form.cs: Use the provided width when calculating the menu size;
6952           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
6953           and ClientSize.Width won't be updated yet
6954         * Application.cs: Use Visible instead of Show() to make form visible,
6955           this way we create the handle later and menusize is considered
6956
6957 2006-04-12  Mike Kestner  <mkestner@novell.com>
6958
6959         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
6960         reporting.
6961
6962 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6963
6964         * TextBox.cs: Implemented context menu
6965
6966 2006-04-12  Mike Kestner  <mkestner@novell.com>
6967
6968         * ListView.cs: implement box selection. fixes #77838.
6969         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
6970
6971 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
6972
6973         * XplatUIX11.cs: Added setting of window type when transient window
6974           is created (metacity would move it otherwise)
6975         * X11Structs.cs: Added WINDOW_TYPE atoms
6976         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
6977           background (the control is Opaque but still wants transparent
6978           backgrounds)
6979
6980 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6981
6982         * Control.cs: Added OnPaintBackgroundInternal to allow controls
6983           that set Opaque but don't mean it (like all ButtonBase-derived
6984           controls) to still draw their background
6985         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
6986           the background
6987
6988 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
6989
6990         * Control.cs (PaintControlBackground): Set the graphics object
6991           on our PaintEvent to null to prevent it from being disposed
6992           when the PaintEvent gets disposed
6993
6994 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
6995
6996         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
6997         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
6998
6999 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
7000
7001         * Control.cs: 
7002           - Added transparency check to BackColor property. Transparent
7003             backgrounds are only allowed if the control styles permit it
7004           - Added recursive painting of parent control background and
7005             foreground if a control with a transparent backcolor is drawn
7006             (Thanks to Tim Ringenback for providing his 'hack' as a base
7007              for this patch) Fixes #77985 and #78026.
7008           - Added Opaque style check before calling OnPaintBackground, no
7009             need to draw the background if the control is opaque
7010           - Removed ControlAccessibleObject owner variable (inherited from
7011             base, no need to define again)
7012           - Added some documentation links explaining the drawing events
7013             and styles
7014
7015 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
7016
7017         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
7018           that the affected control is the located at the left border of our
7019           parent (Fixes #77936)
7020
7021 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7022
7023         * TextBoxBase.cs: When rendering disabled or readonly controls,
7024           draw the background with 'Control' instead of 'Window' color as
7025           long as the user hasn't specifically set a color
7026
7027 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
7028
7029         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
7030           since that won't be updated if the user types text (only if it's
7031           programatically set)
7032
7033 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7034
7035         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
7036           layout changes do to app-triggered resizes will have the proper
7037           display rectangle for layout
7038
7039 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
7040
7041         * ThemeWin32Classic.cs:
7042           - Make use of the SystemBrushes and SystemPens wherever possible
7043           - Corrected some highlight colors
7044           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
7045             drawing
7046         * Theme.cs: Added Empty field to CPColor struct
7047
7048 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
7049
7050         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
7051           is displayed when calculating the display rectangle. Thanks to Mike
7052           for teaching me the err of my ways.
7053
7054 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
7055
7056         * ScrollableControl.cs:
7057           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
7058             (instead of 0,0) and we now return the real width/height instead of
7059             just the clientrectangle, adjusted for padding. The rectangle is
7060             now cached and created by the new CalculateDisplayRectangle method.
7061           - Created new CalculateDisplayRectange method, which basically does
7062             what get_DisplayRectangle() did originally, but now using the 
7063             right edge instead of DisplayRectangle to determine the size of
7064             our scrollbars
7065           - get_Canvas(): Fixed it to properly calculate canvas for 
7066             right/bottom controls which seem to be placed to the right/bottom
7067             of any controls that have a fixed location
7068           - Removed TODO that's taken care of
7069           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
7070             and SetDisplayRectLocation according to new MSDN2 docs
7071           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
7072             event when that is called, this is added for compatibility
7073           - ScrollControlIntoView(): Implemented.
7074           - Switched scrollbars to be implicit, they shouldn't be selectable
7075         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
7076           call it when the active control is set/changed
7077         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
7078         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
7079           implicit_control variable (used for native Win32 message generation)
7080         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
7081           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
7082         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
7083         * XplatUIStructs.cs: Added ScrollBarCommands enum
7084
7085 2006-04-10  Jackson Harper  <jackson@ximian.com>
7086
7087         * ButtonBase.cs:
7088         * CheckedListBox.cs:
7089         * ComboBox.cs:
7090         * DataGrid.cs:
7091         * DataGridView.cs:
7092         * Form.cs:
7093         * GroupBox.cs:
7094         * ListBox.cs:
7095         * PrintPreviewControl.cs:
7096         * ProgressBar.cs:
7097         * PropertyGrid.cs:
7098         * Splitter.cs:
7099         * StatusBar.cs:
7100         * TrackBar.cs:
7101         * UpDownBase.cs: Fixup base event overrides.
7102         
7103 2006-04-06  Mike Kestner  <mkestner@novell.com>
7104
7105         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
7106         all user-initiated value changes to min <= value <= max-thumbsz+1.
7107         (set_Value): check for vert/horiz when calculating new thumb position.
7108         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
7109         like MS does.
7110         (OnMouseMoveSB): refactor the thumb dragging code and refine
7111         invalidation logic to reduce flicker.
7112         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
7113         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
7114         (UpdateThumbPosition): small code readability cleanup
7115
7116 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
7117
7118         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
7119           different
7120
7121 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
7122
7123         * ThemeNice.cs: Use a better graphics effect when a button is pressed
7124
7125 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
7126
7127         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
7128         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
7129           This dramatically reduces the number of Pen.Dispose calls. 
7130           Where possible call ResPool methods only once instead of calling it
7131           over and over again (for example for the same color).
7132
7133 2006-04-06  Mike Kestner  <mkestner@novell.com>
7134
7135         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
7136         Also remove an unused private field on the collection. Fixes #77972.
7137
7138 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
7139
7140         * ThemeNice.cs: Added ToolBar drawing code
7141
7142 2006-04-06  Mike Kestner  <mkestner@novell.com>
7143
7144         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
7145         I'm assuming that means we need to look up the toplevel for the
7146         provided control. Fixes the crash trace in #77911 but exposes another
7147         crash in some strange reflection usage in NDocGui.
7148
7149 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
7150
7151         * ThemeNice.cs: Gave it a little silver touch and added Images
7152           method
7153         * FontDialog.cs: FontDialog is not resizable
7154         * FileDialg.cs: Added SizeGripStyle.Show
7155
7156 2006-04-05  Jackson Harper  <jackson@ximian.com>
7157
7158         * KeyboardLayouts.cs: Remove warning.
7159
7160 2006-04-05  Jackson Harper  <jackson@ximian.com>
7161
7162         * Control.cs: Enable OnPaintInternal so we can use it for drawing
7163         all of our controls instead of Paint +=.
7164         * ListBox.cs:
7165         * ListView.cs:
7166         * MenuAPI.cs:
7167         * MessageBox.cs:
7168         * NotifyIcon.cs:
7169         * ProgressBar.cs:
7170         * ScrollBar.cs:
7171         * Splitter.cs:
7172         * StatusBar.cs:
7173         * TabControl.cs:
7174         * TextBoxBase.cs:
7175         * ToolBar.cs:
7176         * TrackBar.cs:
7177         * UpDownBase.cs:
7178         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
7179         use OnPaintInternal. Remove Width/Height and Visible checks in
7180         paint handler, this is done at a higher level now.
7181         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
7182         * PaintEventArgs.cs: Add a handled flag so controls that don't
7183         want anymore painting after OnPaintInternal can make sure OnPaint
7184         isn't called.
7185
7186 2006-04-05  Mike Kestner  <mkestner@novell.com>
7187
7188         * Form.cs: fix the menu WndProc hacks to respect the native enabled
7189         state of the form, so that we don't process events when Modal dialogs
7190         are up. Fixes #77922.
7191
7192 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
7193
7194         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
7195           checking is done.
7196
7197 2006-04-05  Mike Kestner  <mkestner@novell.com>
7198
7199         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
7200
7201 2006-04-05  Mike Kestner  <mkestner@novell.com>
7202
7203         * ListView.cs (HeaderMouseMove): null guarding for the over column
7204         when setting up the drag_to_index.  Fixes #78015.
7205
7206 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
7207
7208         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
7209           in the taskbar. Transient windows seem to accomplish that.
7210
7211 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
7212
7213         * Form.cs:
7214           - Re-enabled CreateParams.X/Y code for FormStartPosition
7215           - Added code for manual placement when creating the Control
7216           - Incomplete patch to treat MDI forms differently when
7217             setting the ClientSizeCore. (Still need to figure out handling
7218             x/y coords there)
7219         * XplatUIX11.cs:
7220           - When we're explicitly setting the X/Y position of a non-Child
7221             window, let the WM know. Metacity really wants this.
7222
7223 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
7224
7225         * ThemeNice.cs: Added CPDrawButton
7226
7227 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
7228
7229         * ThemeNice.cs: Changed the color for focused buttons and activated
7230           the arrows for small scroll buttons.
7231
7232 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
7233
7234         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
7235           anymore. Changed some method modifiers to protected (virtual)
7236         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
7237           changes
7238         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
7239           Updated drawing of menus, buttons and progressbars; added
7240           CPDrawBorder3D 
7241
7242 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7243
7244         * ImageListStreamer.cs: implemented serialization/deserialization
7245         of the images.
7246
7247 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
7248
7249         * ThemeWin32Classic.cs:
7250           - Removed all the DrawFrameControl stuff; CPDrawButton,
7251             CPDrawCheckBox and CPDrawRadioButton are now handled directly
7252             inside the methods
7253           - Updated and corrected the drawing code of CPDrawButton,
7254             CPDrawCheckBox and CPDrawRadioButton to better match ms
7255           - Updated theme checkbox and radiobutton code to use the CP*
7256             methods
7257
7258 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
7259
7260         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
7261           bug is fixed
7262
7263 2006-03-31  Jackson Harper  <jackson@ximian.com>
7264
7265         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
7266         sometimes.
7267         * UpDownBase.cs: Don't CreateGraphics manually, use a
7268         Refresh. Ideally we would invalidate the correct areas here.
7269
7270 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
7271
7272         * XplatUIX11.cs: 
7273           - We now track the mapping state of windows. If a window (or 
7274             one of it's parents) is not mapped we no longer permit
7275             WM_PAINT messages to be generated since we'd otherwise get 
7276             lots of BadMatch X errors. Jackson did all the work figuring
7277             out the problem.
7278           - Destroying the caret if the window it's contained in is 
7279             destroyed. Can't use regular DestroyCaret method since it
7280             might fall into a drawing function (trying to remove the
7281             caret) and with that generate new BadMatch errors. Again,
7282             Jackson tracked this down.
7283           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
7284             make sure we send the messages to all windows. (The old code
7285             would send the WM_DESTROY to the window, and then all child
7286             windows would be 'gone' because the WM_DESTROY handle lookup
7287             would no longer find the destroyed window)
7288         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
7289         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
7290
7291 2006-03-31  Jackson Harper  <jackson@ximian.com>
7292
7293         * ScrollableControl.cs: Dont recalc if we are not visible.
7294
7295 2006-03-31  Mike Kestner  <mkestner@novell.com>
7296
7297         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
7298         the visibility branch.
7299
7300 2006-03-31  Jackson Harper  <jackson@ximian.com>
7301
7302         * ScrollBar.cs: Cap values when incrementing/decrementing.
7303
7304 2006-03-31  Mike Kestner  <mkestner@novell.com>
7305
7306         * MenuAPI.cs: setup menu.tracker for popup/context menus.
7307         * ToolTip.cs: guard against timer expirations with no active control.
7308         Not sure why it happened.
7309
7310 2006-03-31  Mike Kestner  <mkestner@novell.com>
7311
7312         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
7313         text.
7314         * ToolTip.cs: Position the tooltip based on where the cursor is at
7315         popup time, not at MouseEnter time.  Add a Down state so that we don't
7316         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
7317         positioning offset. Lookup DisplaySize at positioning time, since it
7318         can theoretically change during invocation.
7319         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
7320         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
7321
7322 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
7323
7324         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
7325           Fixes behaviour when the Text property of the box is String.Empty
7326
7327 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
7328
7329         * XplatUIX11.cs: Only send mouseleave for our client windows, not
7330           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
7331           a window)
7332
7333 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
7334
7335         * FileDialog.cs: Visual enhancement for the popup buttons in 
7336           PopupButtonPanel
7337
7338 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
7339
7340         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
7341           code
7342
7343 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
7344
7345         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
7346           highlighted menu items to match ms
7347
7348 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
7349
7350         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
7351
7352 2006-03-30  Mike Kestner  <mkestner@novell.com>
7353
7354         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
7355         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
7356         go active to account for HotLight to Selected transition.
7357         * MenuItem.cs: add internal Selected prop. Fill out the Status
7358         property by calculating it from item info. Add HotLight,
7359         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
7360
7361 2006-03-30  Mike Kestner  <mkestner@novell.com>
7362
7363         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
7364
7365 2006-03-29  Jackson Harper  <jackson@ximian.com>
7366
7367         * Form.cs: Implement TODO.
7368
7369 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
7370
7371         * PrintPreviewDialog.cs: Implemented missing methods and events; still
7372           missing proper dialog setup in the constructor
7373
7374 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
7375
7376         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
7377         * Control.cs:
7378           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
7379           - Fixed ResetBindings and removed TODO
7380           - Added check for cross-thread calls to get_Handle()
7381           - Added Marshaller attribute for set_Font to satisfy class status
7382         * FontDialog.cs: Removed TODOs that seemed implemented
7383         * UpDownBase.cs: Removed unneeded TODO and Fixme
7384         * MessageBox.cs: Implemented support for Default button and removed TODO
7385         * FileDialog.cs: Removed obsolete TODO
7386         * DomainUpDown.cs: Removed obsolete TODO
7387         * ButtonBase.cs: Removed obsolete TODO
7388         * XplatUIWin32.cs: Removed obsolete TODO
7389         * Form.cs:
7390           - Removed obsolete TODO
7391           - Calling CheckAcceptButton when the acceptbutton is changed to allow
7392             internal status updates
7393           - Making sure the active control is selected when the control is created
7394         * CurrencyManager.cs: Removed obsolete TODO
7395
7396 2006-03-29  Mike Kestner  <mkestner@novell.com>
7397
7398         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
7399         of PrintPreviewDialog and RichTextBox.
7400
7401 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
7402
7403         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
7404           DarkDark, Light and LightLight colors for a specific color
7405         * ThemeWin32Classic.cs:
7406           - Use Button drawing code to draw RadioButtons and CheckBoxes with
7407             Appearance = Button 
7408           - Make use of the new ResPool helper CPColor
7409           - Draw ProgressBar and StatusBar with correct 3D borders
7410
7411 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
7412
7413         * ColorDialog.cs: Return selected color. Fixes bug #77940.
7414
7415 2006-03-28  Mike Kestner  <mkestner@novell.com>
7416
7417         * ListView.cs: fix Icon layout to plan for scrollbar widths when
7418         calculating col/row counts.
7419
7420 2006-03-28  Mike Kestner  <mkestner@novell.com>
7421
7422         * ColumnHeader.cs:
7423         * ListView.cs:
7424         * ListViewItem.cs:
7425         * Menu.cs: 
7426         switch to explicit interface method implementation for some methods
7427         corcompare identifies as inconsistent with MS.
7428
7429 2006-03-28  Mike Kestner  <mkestner@novell.com>
7430
7431         * MainMenu.cs: 
7432         * Menu.cs:
7433         add a few missing methods from the class status output.
7434
7435 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
7436
7437         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
7438           correct.
7439
7440 2006-03-28  Mike Kestner  <mkestner@novell.com>
7441
7442         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
7443
7444 2006-03-27  Mike Kestner  <mkestner@novell.com>
7445
7446         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
7447         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
7448
7449 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
7450
7451         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
7452
7453 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
7454
7455         * ThemeWin32Classic.cs:
7456           - GroupBox: Inserted a little gap between the text and the lines
7457             on the right side
7458           - Made the code in CPDrawBorder3D more readable
7459           - Corrected the drawing location of the up and down arrows in 
7460             CPDrawScrollButton
7461
7462 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
7463
7464         * ControlPaint.cs: Corrected line widths in DrawBorder for
7465           ButtonBorderStyle Inset and Outset
7466
7467 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
7468
7469         * ThemeWin32Classic.cs:
7470           - Rewrote the totally broken CPDrawBorder3D method. That was
7471             one of the main problems for the terrific ThemeWin32Classic
7472             look
7473           - Updated and corrected Button drawing
7474           - Correct the dimensions of the SizeGrip to match ms ones
7475           - Removed a small drawing glitch in DrawComboBoxEditDecorations
7476         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
7477           Border3DStyle.Sunken to match ms.
7478
7479 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
7480
7481         * ThemeWin32Classic.cs: First small part of the "de-uglify
7482           ThemeWin32Classic" effort, SizeGrip
7483
7484 2006-03-24  Jackson Harper  <jackson@ximian.com>
7485
7486         * XplatUIX11.cs: Give a max idle time of one second, this matches
7487         MS and forces an Idle event every second when there are no other
7488         events in the queue.
7489
7490 2006-03-24  Mike Kestner  <mkestner@novell.com>
7491
7492         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
7493         * ListView.Item.cs: fix layout issues with null image lists and images
7494         smaller than checkbox size.
7495         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
7496         mode like MS does.  It's weird, but consistent.  ;-)
7497         Fixes #77890.
7498
7499 2006-03-24  Mike Kestner  <mkestner@novell.com>
7500
7501         * ListView.cs: Scroll wheel support for the item control.  Fixes
7502         #77839.
7503
7504 2006-03-23  Jackson Harper  <jackson@ximian.com>
7505
7506         * ScrollableControl.cs: Special case negative sized areas, not
7507         zero.
7508         * MonthCalendar.cs: Save the rect of the clicked date so we can
7509         use it for invalidation.
7510         - Try to cut down on the number of invalidates
7511         - Invalidate the rect the mouse is over and was over when moving
7512         the mouse, so we get the focus box following the cursor.
7513
7514 2006-03-23  Mike Kestner  <mkestner@novell.com>
7515
7516         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
7517         focus rectangle drawing. Fixes #77835.
7518
7519 2006-03-23  Mike Kestner  <mkestner@novell.com>
7520
7521         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
7522         the if and else if and reverting back to the original == check on the
7523         None conditional.
7524
7525 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
7526
7527         * FontDialog.cs: Update the example panel if the selected index of
7528           the fontListBox changes.
7529
7530 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
7531
7532         * FileDialog.cs: Make FileDialog remember which directory it was in
7533           last in the same execution.
7534
7535 2006-03-22  Mike Kestner  <mkestner@novell.com>
7536
7537         * FileDialog.cs: make the DropDownMenu on the toolbar display
7538         RadioChecks since they are mutually exclusive and that's what MS does.
7539
7540 2006-03-22  Mike Kestner  <mkestner@novell.com>
7541
7542         * Theme.cs: add Color param to CPDrawMenuGlyph.
7543         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
7544         checks and radio marks and arrows are visible on highlighted items.
7545         * ControlPaint.cs: update to use new Theme signature.
7546
7547 2006-03-22  Mike Kestner  <mkestner@novell.com>
7548
7549         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
7550         is active. Fixes #77870.
7551
7552 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
7553
7554         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
7555           to be focused/selected after startup
7556
7557 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
7558
7559         * ColorDialog.cs: 
7560           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
7561             CustomColors and ShowHelp properties
7562           - Some internal rewrites to get better results when using the
7563             ColorMatrix
7564
7565 2006-03-22  Mike Kestner  <mkestner@novell.com>
7566
7567         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
7568         HoverSelection.  Fixes #77836.
7569
7570 2006-03-22  Mike Kestner  <mkestner@novell.com>
7571
7572         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
7573         ToggleButtons.  (De)Sensitize the Back button around a stack count of
7574         1, not 0.  Update ButtonSize based on a pixel count of the win32
7575         control.  Adjust the toolbar size/location for new button size.
7576
7577 2006-03-22  Jackson Harper  <jackson@ximian.com>
7578
7579         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
7580         true.
7581         * ScrollBar.cs: When doing increments and decrements we need to
7582         set the Value property so that ValueChanged gets raised. A
7583         possible optimization here would be to make an internal SetValue
7584         that doesn't invalidate immediately.
7585         * ToolTip.cs: Tooltips get added to their container (when
7586         supplied) so they get disposed when the container is disposed.
7587         - Don't create tooltips for String.Empty. This prevents all these
7588         little 2-3 pixel windows from showing up when running nunit-gui
7589         and driving me mad.
7590         * Form.cs: Don't set topmost when setting the owner if the handles
7591         haven't been created yet.  The topmost set will happen when the
7592         handles are created.
7593
7594 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
7595
7596         * XplatUIX11.cs:
7597           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
7598           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
7599             visible (to allow them to recalculate their sizes)
7600
7601 2006-03-21  Mike Kestner  <mkestner@novell.com>
7602
7603         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
7604         methods. Removed a ton of redundant code.  Still not really happy with
7605         the border rendering, but I think that's mainly because of the
7606         ControlDarkDark being black instead of a dark grey. Depending on how 
7607         close we want to be, we might want to revisit those color choices.
7608         Among the new features added during the refactor were DropDownArrow
7609         pressed rendering, Disabled image rendering.  Proper flat appearance
7610         boundary rendering.  Removed the Divider and Wrapping dividers since I
7611         can't figure out any combination of themes and conditions to make the
7612         MS control draw a horizontal line on a toolbar despite what the
7613         Divider property docs indicate.
7614         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
7615         conditions and incorrect layout.  Updated to coding standard.
7616         * ToolBarButton.cs: refactored layout and positioning code from
7617         ToolBar to here.  Invalidate wherever possible instead of forcing
7618         redraws of the whole toolbar. 
7619         (Known remaining issues: explicit ButtonSize smaller than provided
7620         images.)
7621
7622 2006-03-21  Mike Kestner  <mkestner@novell.com>
7623
7624         * ContextMenu.cs (Show): use the position parameter instead of just
7625         showing at the MousePosition.
7626
7627 2006-03-21  Jackson Harper  <jackson@ximian.com>
7628
7629         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
7630         control handle this.
7631         * TreeNodeCollection.cs: If we are clearing the root node we need
7632         to reset top_node so calcs can still happen.
7633         * ThemeWin32Classic.cs: This is a Flags so we need to check
7634         properly.
7635         
7636 2006-03-21  Jackson Harper  <jackson@ximian.com>
7637
7638         * DataGrid.cs: Create columns when the binding context has been
7639         changed.
7640         * X11Structs.cs: Keysyms are uints.
7641         - Add size to fix build.
7642
7643 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
7644
7645         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
7646           XplatUIOSX.cs: 
7647           - Added ResetMouseHover method to allow controls to retrigger
7648             hovering if they need it more than once
7649           - Implemented MouseHoverTime and MouseHoverSize properties
7650         * Timer.cs: Start() must reset the interval
7651         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
7652           properties
7653
7654 2006-03-21  Jackson Harper  <jackson@ximian.com>
7655
7656         * X11Keyboard.cs: improved layout detection. Move the nonchar
7657         tables into this file.
7658         * KeyboardLayouts.cs: Move the tables into resource files.
7659
7660 2006-03-21  Mike Kestner  <mkestner@novell.com>
7661
7662         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
7663
7664 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
7665
7666         * Mime.cs: Various speed optimizations. Looking up mime types
7667           is now 2 times faster than before
7668
7669 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
7670
7671         * CreateParams.cs: Added internal menu field
7672         * Control.cs: 
7673           - Switched call order for UpdateBounds; now we always call
7674             the one that also takes ClientSize, and we're calculating the 
7675             client size via driver method in the others. The previous
7676             method of tracking client size by difference wasn't working
7677             for forms where even the starting client size wouldn't match
7678             the overall form size (due to borders) (Part of fix for #77729)
7679           - CreateParams(): Do not use parent.Handle unless the handle is
7680             already created. Causes havoc with Nexxia and throws off our
7681             creation of controls
7682         * XplatUIX11.cs:
7683           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
7684           - Switched handling of ConfigureNotify over to new PerformNCCalc 
7685             method (consolidates code)
7686           - Changed RequestNCRecalc to use new PerformNCCalc method
7687           - Added calls to RequestNCRecalc when menus and borders are changed
7688             to allow app to set NC size. (Part of fix for #77729) This matches
7689             when MS send a WM_NCRECALC on Win32 windows.
7690           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
7691             (Part of fix for #77729). This matches what MS does, they also
7692             send that message when the form is made visible.
7693           - XException.GetMessage: Improved usability of X errors by including
7694             a translation of the window into Hwnd and Control class
7695           - Improved debug info for window creation, reparenting and destruction
7696           - Created helper method WindowIsMapped() [Currently not used]
7697         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
7698         * Form.cs:
7699           - CreateParams: Now setting our menu on the new internal menu field
7700           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
7701             avoid calculating the same property twice
7702         * Hwnd.cs:
7703           - Improved usability of ToString() for debugging purposes
7704           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
7705             determine the height of the menu, instead of just the font. This
7706             required to also create a graphics context and to keep a bmp 
7707             around (for performance reasons)
7708
7709 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
7710
7711         * MenuAPI.cs: Added OnMouseUp method
7712         * Form.cs:
7713           - Now remembering the requested client size, avoids size errors
7714           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
7715             instead of base if the menu is active. This is required due to
7716             control now capturing and releasing on down/up and it would
7717             prematurely release our menu capture
7718
7719 2006-03-17  Jackson Harper  <jackson@ximian.com>
7720
7721         * KeyboardLayouts.cs: Add the czech layouts.
7722
7723 2006-03-16  Jackson Harper  <jackson@ximian.com>
7724
7725         * Control.cs: Use the viewport space when sizing not the controls
7726         client size, so things like ScrollableControl that effect the
7727         viewport size (when scrollbars are added) are computed correctly.
7728         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
7729         of ManagerEntrys.
7730         - Handle creating BindingManagers for null data sources.
7731         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
7732         source, otherwise when rows are added they are added to the 'fake'
7733         datasource and we will crash when trying to set the position in
7734         those rows.
7735         - Use Implicit scrollbars on the datagrid so they arent
7736         selectable.
7737         
7738 2006-03-16  Jackson Harper  <jackson@ximian.com>
7739
7740         * Binding.cs:
7741         * InternalWindowManager.cs:
7742         * MdiWindowManager.cs:
7743         * X11Keyboard.cs: I really want Mike to love me again (fix
7744         compiler warnings).
7745
7746 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
7747
7748         * DataGrid.cs:
7749           - OnMouseDown: Switch to editing mode when clicking on the cell
7750                          even if we're clicking on the cell that's currently 
7751                          selected
7752           - ProcessGridKey: Left/Right now wrap like MS.Net does
7753           - ProcessGridKey: Tab now knows to add a new row when tab is
7754                             pressed in the cell of the last column of the 
7755                             last row
7756           - ProcessGridKey: Enter now adds another row  if pressed in the last
7757                             row and selectes the new row, same column cell
7758           - ProcessGridKey: Home/End navigate columns, not rows, like 
7759                             originally implemented
7760           - Broke ProcessKeyPreview code out into an extra Internal method
7761             so it can be called from the edit code
7762         * DataGridTextBox.cs (ProcessKeyMessage):
7763           - Switched to accept Tab keypresses
7764           - Added F2 handling to allow jumping to the end of the edited cell
7765           - Added logic to allow moving caret left/right inside edited cell
7766             and making the edited cell jump when the caret hits cell borders
7767           - Tab and Enter are now passed to the datagrid after being handled
7768         * TextBoxBase.cs:
7769           - Removed capture code now that Control handles it
7770           - set_SelectionStart now ensures caret is visible
7771
7772 2006-03-16  Jackson Harper  <jackson@ximian.com>
7773
7774         * TrackBar.cs: Debackwards the increment/decrement for handling
7775         mouse clicks on the bar with vertical trackbars.
7776         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
7777         bottom to match MS.
7778
7779 2006-03-16  Mike Kestner  <mkestner@novell.com>
7780
7781         * ListView.cs: make shift/ctrl keyboard and mouse selection 
7782         consistent with the MS control. Fix a bug in
7783         SelectedListViewItemCollection.Clear that was pissing me off for the
7784         better part of a day because the collection was being altered
7785         underneath us as we walked the list.
7786
7787 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
7788
7789         * Control.cs: Not sure how we could miss this so long, but it seems
7790           that MS.Net has Capture set all the way from before calling 
7791           OnMouseDown through sending the mouse events until after
7792           OnMouseUp. This will fix DataGrid's selection being set to end
7793           at the location of the MouseUp.
7794
7795 2006-03-15  Jackson Harper  <jackson@ximian.com>
7796
7797         * BindingContext.cs: Check the binding after its added so that it
7798           can initialize the binding managers and hookup to events.
7799         * Binding.cs: Data members seem to sometimes include rows/cols in
7800           the format Row.Column we now take this into account.
7801           - Hookup to the position changed event so we can update the
7802           control when the position has changed in the data set.
7803         * CurrencyManager.cs: Take into account the row/col naming
7804           convention when creating dataset tables.
7805         * BindingContext.cs: Using a newer better way of storing
7806           datasource/datamember pairs.  Hopefully this better matches MS for
7807           looking up binding managers.
7808
7809
7810 2006-03-15  Jackson Harper  <jackson@ximian.com>
7811
7812         * BindingContext.cs: The currency manager needs the data member
7813         name, if the member is a data set we use the name to find the
7814         correct table.
7815         * CurrencyManager.cs: When creating the list prefer an IList over
7816         an IListSource.
7817         - Attempt to create a DataTable from a DataSet (TODO: might need
7818         some better error checking here, although MS doesn't seem to have much)
7819         - If we have a DataTable create a view and use it as our list.
7820
7821 2006-03-15  Mike Kestner  <mkestner@novell.com>
7822
7823         * ListView.cs: keep a matrix of the icon mode layout to facilitate
7824         keyboard navigation. Support Up/Down/Left/Right selection correctly
7825         for all 4 View modes.
7826         * ListViewItem.cs: add internal row/col fields for icon layouts.
7827
7828 2006-03-15  Jackson Harper  <jackson@ximian.com>
7829
7830         * TabControl.cs: Redraw the tabs when we resize so their newly
7831         calculated sizes are drawn on screen.
7832         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
7833         composite characters.
7834         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
7835         - filter events so that composite characters can be created
7836         patches by peter
7837         * X11Structs.cs: Add XIMProperties enum.
7838
7839 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
7840
7841         * Control.cs (BringToFront, SendToBack): Don't use window or handle
7842           unless it's created
7843
7844 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
7845
7846         * Control.cs (PerformLayout): We don't need to consider visiblity
7847           for anchoring, only for docking. This fixes 'whacky' alignment
7848           in listbox and other controls that use implicit scrollbars after
7849           the previous PerformLayout patch
7850         * ListBox.cs: Switched to use implicit scrollbars
7851           
7852 2006-03-14  Mike Kestner  <mkestner@novell.com>
7853
7854         * ToolBar.cs: 
7855         * VScrollBar.cs:
7856         - chain up the "new event" overrides to base and use
7857         OnEvent to raise them.  Part of fix for bug #76509.
7858
7859 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
7860
7861         * FileDialog.cs: Do not select an item in the parent directory
7862           on backspace
7863
7864 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
7865
7866         * Control.cs (PerformLayout): It would seem that we considered
7867           invisible windows for our layout. Not quite the right thing
7868           to do. Now we don't any longer, thereby fixing bug #76889.
7869
7870 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
7871
7872         * Control.cs (CanFocus): I goofed. A control can have focus 
7873           even though it's not selectable. Made it match MS docs.
7874
7875 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7876
7877         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
7878           center by default (fixes #76895)
7879         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
7880           all uses of Border3DSides.All with the explicit ORd together
7881           Left|Right|Top|Bottom because I assume that nobody was aware 
7882           that All also implies a center fill. Most places I checked had
7883           a fill right above.
7884         * ProgressBarStyle.cs: Added
7885
7886 2006-03-13  Mike Kestner  <mkestner@novell.com>
7887
7888         * ListView.cs: fix breakage in drag shadow header positioning 
7889         from Peter's csc compilation fix.
7890
7891 2006-03-13  Mike Kestner  <mkestner@novell.com>
7892
7893         * ListView.cs: fix NRE produced by backspacing twice in a focused
7894         FileDialog.
7895
7896 2006-03-13  Mike Kestner  <mkestner@novell.com>
7897
7898         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
7899
7900 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7901
7902         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
7903           be changed
7904         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
7905           the allowed size before making programmatic size changes
7906
7907 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
7908
7909         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
7910           set, metacity is broken and will still use the emty sizes in 
7911           the struct. (Fix for #77089)
7912
7913 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7914
7915         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
7916           WindowExStyles and marked both enums as Flags
7917         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
7918           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
7919           to match WindowStyles split
7920         * XplatUIX11.cs:
7921           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
7922           - Updated to match WindowStyles split
7923         * XplatUIWin32.cs:
7924           - Fixed FosterParent creation, was using ExStyle on the Style field
7925             (This should help with Popup focus issues)
7926           - Updated to match WindowStyles split
7927
7928 2006-03-13  Jackson Harper  <jackson@ximian.com>
7929
7930         * MdiWindowManager.cs: Use the system menu height. Fixes some
7931         strange sizing issues.
7932
7933 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
7934
7935         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
7936         * TextBoxBase.cs:
7937           - Scroll to caret after inserting text (#77672)
7938           - Make scroll range one pixel higher, fixes off-by-one error (and
7939             makes underlines visible on the last line)
7940
7941 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
7942
7943         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
7944           the keyboard state from being stuck with keys in 'pressed' state when
7945           focus is switched away via keyboard
7946         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
7947           reset the keyboard if no X11 KeyUp events are expected to come
7948         * X11Structs.cs: Switched type of Visible to bool to match driver
7949
7950 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
7951
7952         * TextControl.cs:
7953           - Switched caret to be just 1 pixel wide, matches MS and looks less
7954             clunky
7955           - Moved caret display 1 pixel down from the top of the control
7956             to improve view
7957           - InsertCharAtCharet: Update the selection start if moving the caret
7958             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
7959           - No longer always creating the caret when the caret methods are
7960             called. Only the actual ShowCaret/HideCaret will do that now
7961           - Only setting caret visible if the owner control has focus
7962           - UpdateView: Added invalidation-shortcut logic for center and right 
7963             aligned text. Previously we'd update all according to the left
7964             logic which caused drawing errors. Also fixed height of invalidated
7965             areas, now properly invalidating the whole area (was off-by-one)
7966           - owner_HandleCreated: Always generate the document when the
7967             handle is created; this ensures that 
7968         * TextBoxBase.cs:
7969           - Fixed situation where caret would disappear under the right
7970             window border, also improved scrolling behaviour on left-
7971             aligned textboxes
7972           - Fixed right-aligned textboxes to have a border to the
7973             right instead of the caret being under the right border
7974         * XplatUIX11.cs:
7975           - Switched from 'nested' to simple visible/not visible tracking 
7976             for caret (part of fix for #77671)
7977           - No longer passing through translated FocusIn/FocusOut messages
7978             since we were notifying too often and the wrong windows. Instead
7979             we just notify our focussed window of receiving or loosing focus
7980         * XplatUIWin32.cs: Switched from 'nested' show/hide 
7981           counting for caret to simple visible yes/no behaviour (part of 
7982           fix for #77671)
7983
7984 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
7985
7986         * Mime.cs: Remove debug code...
7987
7988 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
7989
7990         * MimeGenerated.cs: Removed
7991         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
7992           and subclasses) from /usr/(local/)share/mime and
7993           $HOME/.local/share/mime.
7994
7995 2006-03-10  Jackson Harper  <jackson@ximian.com>
7996
7997         * MdiWindowManager.cs: Recalc the NC area when a window is
7998         maximized/restored so that the menu area is drawn on forms that
7999         don't have a menu.
8000
8001 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8002
8003         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
8004           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
8005           us to force a WM_NCCALCRESIZE message being sent. This is needed
8006           for MDI maximizing.
8007
8008 2006-03-10  Jackson Harper  <jackson@ximian.com>
8009
8010         * Form.cs: We need to use the ActiveMenu when calculating menu
8011         height.
8012         - Fix nullref when the window manager hasn't been created yet.
8013         * Control.cs: Fix nullref when we try to bring a control to the
8014         front that has no parent.
8015         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
8016         height.
8017         - Add a dummy item to the maximized menu so it always has the
8018         correct height. Otherwise when there are no menus we don't get our
8019         icon and buttons.
8020         
8021
8022 2006-03-10  Jackson Harper  <jackson@ximian.com>
8023
8024         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
8025         stuff.
8026         * Form.cs: Make the window_state internal so the window managers
8027         can track it.
8028         - When an MDI child is maximized let its window manager create the
8029         main menu (so it can add its icon).
8030         - Notify the window managers of state changes
8031         - Let the window manager paint its buttons and handle button
8032         clicks on the menu when it is maximized.
8033         * InternalWindowManager.cs: Move the prev_bounds into the mdi
8034         window manager, since tool windows don't use it, only mdi windows.
8035         - Tell the main form that we don't want it to handle NCPAINT
8036         itself to avoid extra painting.
8037         - Handle clicks on a maximized windows menu.
8038         - Handle window state changes
8039         - Handle minimize/maximize clicks correctly by setting the window state.
8040         * MdiWindowManager.cs: Add an icon menu that (the menu you get
8041         when clicking on the forms icon).
8042         - New method to create a forms maximized menu. This is its normal
8043         menu + an icon.
8044         - Handle window state changes.
8045         - Handle sizing of maximized windows.  Maximized windows are just
8046         drawn bigger then the parent visible area. All controls are still
8047         there, they are just outside the visible area (this matches windows).
8048         * MdiClient.cs: No scrollbars when a child window is maximized.
8049         - Let the children windows figure out how big they should be when
8050         sizing maximized windows.
8051         - Implement a version of ArrangeIconicWindows somewhat similar to
8052         Windows version.  There are some little differences, but I don't
8053         think any app will rely on the layout of minimized mdi windows.
8054
8055 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8056
8057         * Padding.cs: Several fixes to allow compiling with csc 2.0
8058
8059 2006-03-09  Jackson Harper  <jackson@ximian.com>
8060
8061         * Menu.cs:
8062         * MenuItem.cs: Cheap hack so we can add items to the list without
8063         the events being raised.  This allows adding mdi items during
8064         drawing. TODO: Should probably find a better time to add the items.
8065
8066 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8067
8068         * ThemeWin32Classic.cs:
8069           - CheckBox_DrawText: Added logic to not wrap if not enough space
8070             is available (Fix for bug #77727)
8071           - RadioButton_DrawText: Added logic not to wrap if not enough
8072             space is available (Fix for bug #77727). Also removed some
8073             duplicate code, DrawString always drawing the regular text
8074             before hitting the if statement.
8075
8076 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
8077
8078         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
8079
8080 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
8081
8082         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
8083         * ContainerControl.cs: Partial implementation of some 2.0 scaling
8084           methods. Moved the new 2.0 properties into alphabetical order with
8085           other properties and added MonoTODO tags
8086
8087 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8088
8089         * AutoScaleMode.cs: Added. Fix build.
8090
8091 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8092
8093         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
8094           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
8095           and was requiring premature handle creation for calls from above
8096         * Form.cs, Control.cs: Removed handle arguments from calls to
8097           CalculateClientRect()
8098
8099 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8100
8101         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
8102           drag_column.column_rect is MarshalByRef and can't be used that way
8103
8104 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8105
8106         * AxHost.cs: Added deserialization constructor for 
8107           AxHost+State (fixes 77743)
8108
8109 2006-03-09  Mike Kestner  <mkestner@novell.com>
8110
8111         * ListView.cs: 
8112         - Added column drag reordering for details view.
8113         - fixed behavior when mouse is dragged off column and
8114         AllowColumnReorder is false.
8115         * ColumnHeader.cs: clone the format too in Clone.
8116         * Theme.cs: add DrawListViewHeaderDragDetails method.
8117         * ThemeWin32Classic.cs:
8118         - impl new method for drawing drag column shadows and targets.
8119         - support column offset for details mode in DrawListViewItem.
8120
8121 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8122
8123         * TextControl.cs: Reset the char_count when the document is cleared
8124           (Fixes bug reported on mono-winforms mailing list)
8125
8126 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
8127
8128         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
8129           of calling base we simply process the key ourselves, since both
8130           DefWindowProc and the handled method would set m.Result. 
8131           (Fixes #77732)
8132
8133 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
8134
8135         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
8136           method also moves the window; instead implemented a copy of
8137           Control.ScaleCore (Part of fix for #77456)
8138         * TextBoxBase.cs: 
8139           - Created new CreateGraphicsInternal method to allow providing
8140             a graphics context when no handle is created without triggering
8141             handle creation. (Part of fix for #77456)
8142           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
8143         * TextControl.cs: 
8144           - Switched Constructor to require TextBoxBase instead of Control (to
8145             allow uncast access to CreateGraphicsInternal)
8146           - Safeguarded use of owner.Handle property. No longer accessing it
8147             unless the handle is already created.
8148           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
8149           - Now triggering a recalc when owning control becomes visible
8150         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
8151           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
8152           premature handle creation (Part of fix for #77456)
8153         * Control.cs:
8154           - We now only destroy our double-buffering buffers when the
8155             control is resized or disposed, but not when visibility
8156             changes. (The code even re-created them twice every time)
8157           - Now requiring a redraw of the buffer on visibility changes
8158             (fixes bug 77654 part 2)
8159           - Not passing OnParentVisibleChanged up unless the control
8160             is visible
8161           - CanFocus: Fixed to match MS documentation
8162           - Focus: Fixed to return actual focus state and to check if
8163             setting focus is legal before setting it
8164
8165 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
8166
8167         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
8168           when to draw focus rectangle by looking at parent focus and
8169           selected state instead. This fixes TabPages on Linux sometimes
8170           having none or multiple focus rectangles.
8171         * XplatUIX11.cs (SetFocus): 
8172           - Don't set the focus if the same window already has focus
8173           - Use SendMessage instead of PostMessage (like it's Win32
8174             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
8175             to match MS behaviour
8176         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
8177           are not selectable.
8178
8179 2006-03-07  Jackson Harper  <jackson@ximian.com>
8180
8181         * PictureBox.cs: Revert line I accidently committed last week.
8182
8183 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
8184
8185         * Control.cs: 
8186           - Added new IsRecreating and ParentIsRecreating properties to
8187             allow testing if RecreateHandle has been called on ourselves
8188             or one of our parents
8189           - WndProc(WM_DESTROY): If our control handle is being recreated
8190             we immediately need to create the handle when receiving the
8191             destroy, that way our child windows find a valid parent handle
8192             when they themselves are being recreated upon WM_DESTROY receipt
8193             (fix for bug #77654 part 1)
8194         * XplatUIX11.cs:
8195           - DestroyWindow: WM_DESTROY must be sent to our own window before
8196             notifying any child windows. MS documents that child windows
8197             are still valid when WM_DESTROY is received. (Control now relies on
8198             this behaviour)
8199           - Added some fine-grain debug options
8200
8201 2006-03-06  Jackson Harper  <jackson@ximian.com>
8202
8203         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
8204         box and base calculations off this.
8205         * MdiChildContext.cs:
8206         * MdiWindowManager.cs: Don't need to ensure scrollbars here
8207         anymore.
8208         
8209 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
8210
8211         * Splitter.cs: In situations where the affected control is added
8212           to the parent's control list after the splitter, we would not
8213           populate affected. Now we try populating it on mousedown, if
8214           it's not already set, and force it to be re-set whenever our
8215           parent changes.
8216
8217 2006-03-03  Matt Hargett  <matt@use.net>
8218
8219         * Control.cs: implement Control.Padding
8220         * Padding.cs: -Padding.All returns -1 when constructing with the
8221         implicit default ctor
8222         -Padding.ToString() matches MS.NET
8223         * ContainerControl.cs: implement
8224         ContainerControl.AutoScaleDimensions
8225         * ListControl.cs: implement ListControl.FormattingEnabled
8226         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
8227         * ButtonBase.cs:
8228         * TabPage.cs: Implement UseVisualStyleBackColor.
8229         * PictureBox.cs: Implement PictureBox.InitialImage.
8230
8231 2006-03-03  Mike Kestner  <mkestner@novell.com>
8232
8233         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
8234         event declarations to proxy to base event.
8235         * ListViewItem.cs: update to use ItemControl.
8236         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
8237         * ThemeWin32Classic.cs: update to new ListView theme API and fix
8238         column header label rendering for 0 width columns.
8239
8240 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
8241
8242         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
8243           that causes the control to be created. Fixes #77476.
8244
8245 2006-03-02  Jackson Harper  <jackson@ximian.com>
8246
8247         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
8248         expose_pending.
8249
8250 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
8251
8252         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
8253           passed in for the EventArgs (fixes #77690)
8254
8255 2006-03-01  Jackson Harper  <jackson@ximian.com>
8256
8257         * ScrollBar.cs: Refresh afterbeing resized.
8258
8259 2006-02-28  Mike Kestner  <mkestner@novell.com>
8260
8261         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
8262         Clean up a tracker compile warning.
8263         * MenuItem.cs: add internal PerformPopup method.
8264         [Fixes #77457]
8265
8266 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
8267
8268         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
8269           implicit expose) when the text is set to null
8270
8271 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
8272
8273         * RichTextBox.cs (FlushText): When newline is true, we always
8274           need to split the line, even if no text is on it and we may
8275           never eat newlines. (Fixes #77669)
8276
8277 2006-02-28  Mike Kestner  <mkestner@novell.com>
8278
8279         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
8280         and set Selected instead.
8281         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
8282         collections.
8283
8284 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
8285
8286         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
8287
8288 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
8289
8290         * FontDialog.cs:
8291           - Got rid of the panel. All controls are now directly added to
8292             the dialog form
8293           - It is now possible to set a font with the Font property
8294           - MinSize and MaxSize property do now what they should
8295           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
8296           - Searching and selecting a font with the font textbox works now,
8297             the same applies to the style and size textbox
8298           - Draw the correct 3D border in the example panel
8299           - Fixed a little mem leak (unused fonts didn't get disposed)
8300           - Many other internal updates/rewrites...
8301           - Fix typo
8302
8303 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
8304
8305         * TextControl.cs: 
8306           - InsertRTFFromStream: Added 'number of characters inserted' argument
8307           - set_SelectedRTF: Now using the number of characters to calculate
8308             the new location for the selection and cursor (x/y cannot be used
8309             due to potentially already wrapped text)
8310
8311 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
8312
8313         * TextControl.cs: Added property and implemented means to allow 
8314           disabling recalculation of a document (can be used to speed up
8315           multiple inserts and is needed to make RTF inserts predictable, see
8316           bug #77659)
8317         * RichTextBox.cs: Using the new NoRecalc property of Document to
8318           keep x/y insert locations predictable. Also makes it faster inserting
8319           large chunks of RTF
8320
8321 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
8322
8323         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
8324           it's easier for a child control to handle the other messages without
8325           having to duplicate the special functionality
8326         * TextBoxBase.cs
8327           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
8328             code to handle processing the key ourselves, in order to get 
8329             access to the result of KeyEventArgs.Handled. We now only call 
8330             ProcessKey if they key hasn't been handled already. Fixes #77526.
8331           - set_Text: If null or empty string is given, just clear the 
8332             document. Fixes part of #77526
8333
8334 2006-02-27  Jackson Harper  <jackson@ximian.com>
8335
8336         * SizeGrip.cs: Paint the background color before painting the grip
8337         so things look right.
8338         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
8339
8340 2006-02-27  Mike Kestner  <mkestner@novell.com>
8341
8342         * ListView.cs:
8343           - Restructure layout and invalidation model to remove a ton of
8344           flicker from the control and speed up performance in general.
8345           - Add manual column resize, flickers like crazy, but I already have
8346           some ideas on how I'll fix that. (#76822)
8347           - Merge the three Icon-based views into a single layout method.
8348           - Move item selection interaction logic from the item since 
8349           interaction with the collections is more appropriate to the view.
8350           - Deselection on non-item clicks.
8351         * ListViewItem.cs:
8352           - Encapsulate most of the layout. Add some internal props to trigger
8353           layout.  Move to a model where Items invalidate themselves instead
8354           of just invalidating the whole control every time something changes.
8355           - Invalidate on Text/Caption changes.
8356           - switch to an offset based layout model to avoid having to absolute
8357           position every element on item moves.
8358           - correct checkbox layout to conform to MS layout.
8359         * ThemeWin32Classic.cs:
8360           - refactor some column header drawing code.
8361           - fix string justification for column headers (#76821)
8362           - make SmallIcon labels top justified for compat with MS impl.
8363         * ThemeClearlooks.cs:
8364           - adjust to new ListViewItem internal checkbox bounds api.
8365
8366 2006-02-27  Jackson Harper  <jackson@ximian.com>
8367
8368         * Control.cs:  Change where implicit controls fall in the zorder.
8369         They are now on top of all children.
8370         - Synced AddImplicit code with Add
8371         - Removed unused enumerator.
8372         * SizeGrip.cs: Remove the TODO as its been TODONE.
8373
8374 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
8375
8376         * TextControl.cs(Insert): Combine the last lines unless the insertion
8377           string ends with \n\n, otherwise we leave one line too many (Fixes
8378           something I noticed with the testapp for #77526; the bug itself was
8379           already fixed in the previous checkin)
8380
8381 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
8382
8383         * RichTextBox.cs:
8384           - SelectionColor and SelectionFont methods no longer set absolute
8385             styles. Instead, the keep font or color respectively (This 
8386             resolves a long-standing FIXME in the code)
8387           - When flushing RTF text, the insert code now considers text trailing
8388             behind the insertion point (Fixes the bug where when replacing
8389             the selected text via SelectedRTF the remainder of the line behind 
8390             the selection would stay on the first insertion line)
8391         * TextBoxBase.cs:
8392           - AppendText now updates the selection points after inserting text
8393           - AppendText now ensures that the last tag (sometimes 0-length) of
8394             the document is used for the style information (Fixes part of 
8395             bug #77220)
8396         * TextControl.cs:
8397           - Created new FontDefiniton class to allow describing partial style
8398             changes
8399           - StreamLine() now takes a lines argument, to allow it to decide
8400             whether an encountered zero-length tag is the last in the document
8401             (which must be kept to not loose the font/color contained in it,
8402             for later appends)
8403           - Created Combine() and Split() methods for Marker structs, to 
8404             support marker updates due to reformatted documents (soft line
8405             wraps)
8406           - Implemented Document.CaretTag setter
8407           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
8408             of the last line (Not the cause, but also exposed by bug #77220)
8409           - Added LineTag argument to InsertString method, to allow callers
8410             to force a certain tag to be used (required to force use of the
8411             trailing zero-length tag of a document)
8412           - Now updating markers in Combine(), to avoid stale tag markers
8413           - Added some method descriptions to aid maintenance
8414           - Implemented new FormatText concept, allowing additive/subtractive
8415             formatting by only specifying the components that are to be 
8416             changed. This was needed for resolving the RTB.SelectedColor/
8417             RTB.SelectedFont fixmes
8418           - Added Break() support method to allow breaking up linetags (used
8419             for partial formatting)
8420           - Added GenerateTextFormat() method. It is used for partial 
8421             formatting and allows to generate a full font/color from given
8422             attributes and an existing tag.
8423
8424 2006-02-26  Jackson Harper  <jackson@ximian.com>
8425
8426         * XplatUIX11.cs:  Use the correct caption height.
8427         - Translate hittest coordinates to screen coords to match MS.
8428         * XplatUIWin32.cs: When we create MDI windows we need to reset
8429         some of the style flags, so we get a nice blank window, and can
8430         draw all the decorations ourselves.
8431         - Set a clipping rectangle on the non client paint event, the
8432         window manager drawing code needs one.
8433         * Form.cs: The window manager needs to know when the window state
8434         has been updated.
8435         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
8436         don't need to factor in border and title sizes in these
8437         methods. TODO: Remove the args and fix the call points.
8438         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
8439         properly.
8440         - Let the driver set the cursors.
8441         - Improve active window handling
8442         - Correct sizes for title bars and buttons.
8443         - Match MS drawing better
8444         * MdiWindowManager.cs: We don't need to handle border style
8445         updates specially anymore.
8446         - Check for scrollbars when windows are done moving
8447         - Handle Active properly.
8448         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
8449         correctly. I am spewing the exception though, so we don't hide the
8450         bugs.
8451         
8452 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
8453
8454         * DataGridViewRowPostPaintEventArgs.cs,
8455           DataGridViewCellPaintingEventArgs.cs,
8456           DataGridViewRowCollection.cs,
8457           DataGridViewRowPrePaintEventArgs.cs,
8458           DataGridViewCell.cs: Clear a few warnings and implement a few
8459           exceptions that should be thrown.
8460
8461 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
8462
8463         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
8464           'inheriting' our parent's (non-default) cursor. (Part of
8465            the fix for #77479)
8466
8467 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
8468
8469         * XplatUIX11.cs: Fixed cast to make csc happy
8470
8471 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
8472
8473         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
8474           it's for the client area (part of fix for #77479 and needed
8475           for MDI window cursor handling)
8476         * XplatUIX11.cs
8477           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
8478             the appropriate default cursors and also passing the message
8479             up the parent chain 
8480           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
8481             for non-client areas
8482
8483 2006-02-15  Jackson Harper  <jackson@ximian.com>
8484
8485         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
8486         is a real MDI window
8487
8488 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
8489
8490         * X11DesktopColors.cs: Instead of checking the desktop session
8491           string for "KDE" check if it starts with "KDE"
8492
8493 2006-02-10  Jackson Harper  <jackson@ximian.com>
8494
8495         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
8496         systems).
8497
8498 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
8499
8500         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
8501           errors
8502         * ColorDialog.cs:
8503           - Got rid of the panel. All controls are now directly added to
8504             the dialog form
8505           - Changed to mono coding style
8506
8507 2006-02-10  Jackson Harper  <jackson@ximian.com>
8508
8509         * InternalWindowManager.cs: We don't need the set visibility to
8510         false hack anymore now that peter has written beautiful shutdown
8511         code.
8512
8513 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
8514
8515         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
8516           where already explicitly destroyed
8517
8518 2006-02-10  Jackson Harper  <jackson@ximian.com>
8519
8520         * MdiClient.cs: Handle the case where windows are too high or to
8521         the left and we need scrollbars.
8522
8523 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
8524
8525         * MimeIcon.cs: Added some icons
8526         * FileDialog.cs:
8527           - Fixed bug #77477
8528           - Got rid of the panel. All controls are now directly added to
8529             the dialog form
8530           - Changed to mono coding style
8531           - On Linux "My Computer" and "My Network" will now show some
8532             more usefull information. A new class, MasterMount, gathers
8533             this information from /proc/mount. Updated MWFFileView to make
8534             use of this information
8535           - Fixed a bug that caused FileDialog to crash when
8536             ".recently_used" file had a zero size
8537           - FilterIndex does now what it should
8538           - Some Refactoring
8539         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
8540             FileDialog changes
8541
8542 2006-02-09  Jackson Harper  <jackson@ximian.com>
8543
8544         * ComboBox.cs: Don't touch if null.
8545
8546 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
8547
8548         * Cursor.cs: 64bit safeness fix
8549         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
8550
8551 2006-02-09  Jackson Harper  <jackson@ximian.com>
8552
8553         * Form.cs: If a form is made into an MDI form update the styles so
8554         all the props can get set correctly.
8555         - Kill the mdi_container when we dont need it anymore.
8556         * InternalWindowManager.cs: Add missing NOT
8557
8558 2006-02-08  Jackson Harper  <jackson@ximian.com>
8559
8560         * InternalWindowManager.cs: Respek clipping when drawing MDi
8561         decorations.
8562
8563 2006-02-08  Jackson Harper  <jackson@ximian.com>
8564
8565         * Hwnd.cs: Add bits to track non client expose events.
8566         * XplatUIX11.cs: Track non client expose events on the hwnd. This
8567         gives us a proper invalid rect and will allow for some nice
8568         optimizations with NC client drawing
8569         - MDI windows are children windows, so move their style handling
8570         into the child window block.
8571         * InternalWindowManager.cs: Remove a state reset that was
8572         getting invoked at the wrong time. Fixes managed windows getting
8573         into a 'stuck' captured state.
8574
8575 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
8576
8577         * TextControl.cs (Document.ctor): Now initializing 
8578           selection_anchor. Fixes #77493
8579
8580 2006-02-07  Jackson Harper  <jackson@ximian.com>
8581
8582         * TrackBar.cs: The increment/decrements were backwards.
8583
8584 2006-02-07  Mike Kestner  <mkestner@novell.com>
8585
8586         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
8587         to the instance itself.
8588
8589 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
8590
8591         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
8592           on ulongs and pointers, the size differs between 32bit and 64bit
8593           systems. 
8594
8595 2006-02-07  Mike Kestner  <mkestner@novell.com>
8596
8597         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
8598         for 64 bit platforms to work around a metacity bug. 
8599
8600 2006-02-07  Jackson Harper  <jackson@ximian.com>
8601
8602         * TrackBar.cs: Process the input keys we need, and hookup to
8603         KeyDown instead of using WndProc, so we get key messages.
8604
8605 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
8606
8607         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
8608           machine we're on. 
8609         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
8610           we need to translate the XdndVersion atoms array before sending it
8611
8612 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
8613
8614         * XplatUIX11.cs: 
8615           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
8616             number of bits for the property, not the number of bytes. The
8617             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
8618             but would not crash since it specified 8 bits instead of 4 bits)
8619           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
8620             defined as XID -> long in the C headers)
8621           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
8622             references since those are now IntPtr to begin with
8623           - Switched all Atom.XXX 'int' casts to IntPtr casts
8624           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
8625           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
8626           - Added XChangeActivePointerGrab DllImport (for X11DnD)
8627         * X11Structs.cs:
8628           - Changed 'int' type for Atoms in XEvent structures to IntPtr
8629           - Changed atom in HoverStruct to be IntPtr
8630         * X11DnD.cs:
8631           - Removed local DllImports, switched code to use those from XplatUIX11
8632           - Removed/fixed casts related to the switch of Atom to be a IntPtr
8633
8634 2006-02-06  Mike Kestner  <mkestner@novell.com>
8635
8636         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
8637         method signatures in the import region.  There may still be some
8638         lingering struct marshaling issues, as I didn't drill down into those.
8639         Yet.
8640
8641 2006-02-06  Jackson Harper  <jackson@ximian.com>
8642
8643         * ComboBox.cs: Dont manually set the top_item, this is computed
8644         when the scrollbar position is set.
8645
8646 2006-02-06  Mike Kestner  <mkestner@novell.com>
8647
8648         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
8649         startup crashes on amd64.  There's other fixes needed.  All pinvoke
8650         usage of Atom needs to be mapped to IntPtr for example.  And there are
8651         likely other int/long issues to be addressed.
8652
8653 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
8654
8655         * FileDialog.cs: One more...
8656
8657 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
8658
8659         * FileDialog.cs: Next try
8660
8661 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
8662
8663         * FileDialog.cs: First part of fix for #77464
8664
8665 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
8666
8667         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
8668           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
8669           AcceptButton border drawing.
8670
8671 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
8672
8673         * Form.cs: Moved positioning of form after auto scaling is applied,
8674           otherwise it would possibly use wrong form size.
8675
8676 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
8677
8678         * Control.cs (RecreateHandle): No need to re-create any child
8679           controls, the child windows will get destroyed automatically by
8680           the windowing system or driver, and re-created when the handle
8681           is being accessed the first time. Fixes #77456
8682         * Form.cs: No longer setting the form to closing if the handle is 
8683           being recreated. This seems like the right thing to do, don't
8684           have a bug or testcase for this, though.
8685
8686 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
8687
8688         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
8689           controls to avoid unwanted side effects
8690
8691 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
8692
8693         * Control.cs: 
8694           - ScaleCore needs to scale the bounds, not the ClientSize of the 
8695             control. Fixes #77416.
8696           - DefaultSize is 0,0 for control
8697         * TextBoxBase.cs: 
8698           - DefaultSize is 100, 20
8699           - SetBoundsCore: Now enforcing the height, no matter if the provided
8700             height is more or less than the preferred one, as long as AutoSize
8701             is on
8702         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
8703
8704 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
8705
8706         * Control.cs:
8707           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
8708             call unless both performLayout is true *and* we have a pending
8709             layout change
8710           - ResumeLayout: MS does not completely nest Suspend and Resume,
8711             they bottom out at 0, fixed our code to match that.
8712           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
8713             SetBoundsCore, we were updating even when we shouldn't. This fixes
8714             swf-anchors mis-anchoring when resizing the app fast and lots.
8715           - UpdateDistances: Now only setting the left and top distance if 
8716             we have a parent and are not suspended, this is based on
8717             a suggestion by Don Edvaldson in bug #77355.
8718           - OnVisibleChanged: Fixed logic when to create the control. We may
8719             not create the control if we have no parent or if it's not visible;
8720             switched to using Visible property instead of is_visible field 
8721             since the property also considers parent states. This fixes a bug
8722             when starting Paint.Net
8723
8724 2006-02-02  Jackson Harper  <jackson@ximian.com>
8725
8726         * Form.cs: If the forms handle hasn't been created yet don't call
8727         into xplatui to make it top most, just set the topmost flag on the
8728         form in CreateParams
8729         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
8730
8731 2006-02-01  Jackson Harper  <jackson@ximian.com>
8732
8733         * ScrollableControl.cs: Refactored the Recalculate method a
8734         little, this wasn't handling all the variants of bottom and right
8735         bars needed to be added and added/removed based on their
8736         counterparts being added/removed (which changes the drawable
8737         size). Also we special case client widths and heights of 0 and
8738         don't add the scrollbar for those.
8739
8740 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
8741
8742         * XplatUIX11.cs: 
8743           - Added method to get AbsoluteGeometry(); currently unused, but might
8744             be used in the future, if we try again to figure out toplevel
8745             coordinates with some more crappy window managers
8746           - Added FrameExtents() method to retrieve the WM set decoration size
8747           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
8748             to deal with at least KDE, FVWM and metacity (Fixes #77092)
8749         * Hwnd.cs: 
8750           - Added whacky_wm tracking var for metacity
8751           - Added logic to have default menu height if the actual menu height
8752             has not yet been calculated (part of fix for #77426)
8753         * Form.cs: Keep track whether client size has been set and re-set 
8754           it if a menu is added/removed afterwards (Fixes #77426)
8755
8756 2006-01-31  Jackson Harper  <jackson@ximian.com>
8757
8758         * Control.cs: When a new Site is set on the component attempt to
8759         pull the AmbientProperties from it.
8760
8761 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
8762
8763         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
8764           in the background of the owning form. Fixes #77332
8765
8766 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
8767
8768         * MimeIcon.cs: Fix for #77409
8769
8770 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
8771
8772         * XplatUIX11GTK.cs: Initial import
8773
8774 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
8775
8776         * FixedSizeTextBox: fixes class signature
8777
8778 2006-01-30  Jackson Harper  <jackson@ximian.com>
8779
8780         * FixedSizeTextBox.cs: New internal class that represents a
8781         textBox that will not be scaled.
8782         * TreeView.cs:
8783         * ComboBox.cs:
8784         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
8785         standard TextBox.
8786                 
8787 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
8788
8789         * XplatUIX11.cs: Retrieve default screen number instead of
8790           assuming 0. Attempted fix for #77318
8791
8792 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
8793
8794         * XplatUIWin32.cs: 
8795           - GetWindowPos: When a window is parented by FosterParent, use 
8796             the desktop instead of FosterParent as the base to get coordinates
8797           - CreateWindow: Don't make FosterParent the parent window for Popups
8798             if we don't want a taskbar entry, Popups automatically don't get one
8799         * Hwnd.cs: Need to call remove to actually remove the key from the
8800           hash table
8801
8802 2006-01-30  Mike Kestner  <mkestner@novell.com>
8803
8804         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
8805
8806 2006-01-30  Jackson Harper  <jackson@ximian.com>
8807
8808         * TreeView.cs:
8809         * TreeNode.cs: Raise events no matter how the treenode is
8810         checked. Patch by Don Edvalson.
8811
8812 2006-01-30  Jackson Harper  <jackson@ximian.com>
8813
8814         * TreeNode.cs: Signature fix.
8815
8816 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
8817
8818         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
8819
8820 2006-01-20  Mike Kestner  <mkestner@novell.com>
8821
8822         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
8823         event forwarding when menus are active.
8824         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
8825         Most of the patch is pdb's with a little rework.
8826
8827 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
8828
8829         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
8830           Removed GetMenuDC and ReleaseMenuDC methods; replaced
8831           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
8832         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
8833         * InternalWindowManager.cs: Added use of PaintEventStart/End to
8834           handling of WM_NCPAINT message, now passing the PaintEventArgs to
8835           the PaintWindowDecorations method
8836         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
8837         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
8838         * MenuAPI.cs: Made tracker window invisible
8839         * XplatUIWin32.cs:
8840           - Removed GetMenuDC and ReleaseMenuDC methods
8841           - Implemented the client=false path for PaintEventStart and
8842             PaintEventEnd
8843
8844 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
8845
8846         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
8847         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
8848           styles
8849         * Form.cs: 
8850           - MaximizeBox, MinimizeBox: Recreate the handle when setting
8851             the style
8852           - CreateParams: Reworked the styles to match MS look'n'feel,
8853             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
8854             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
8855
8856 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
8857
8858         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
8859           window is not mapped, since otherwise every form that's being 
8860           created is considered minimized, which is wrong.
8861         * Form.cs: Catching the exception and returning our internal value
8862           instead
8863
8864 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
8865
8866         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
8867           SetWindowMinMax() to have means to tell the driver about the minimum,
8868           maximum and maximized state window sizes. (Part of the fix for #76485)
8869         * Form.cs:
8870           - Implemented tracking of minimum and maximum window size, now calling
8871             new SetWindowMinMax() driver method to tell the driver (Part of the
8872             fix for #76485)
8873           - Finished handling of WM_GETMINMAXINFO method, now setting all values
8874             (Completes fix for #76485)
8875           - Calling new SetWindowMinMax driver method when the handle for a 
8876             form is created, to make sure the driver knows about it even if
8877             the values have been set before the window was created
8878           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
8879             to avoid messing up our anchoring calculations (partial fix
8880             for #77355)
8881         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
8882         * XplatUIX11.cs:
8883           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
8884           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
8885             (and presumably other freedesktop.org compliant WMs). Left the
8886             assumption unmapped=minimized, needed for SetVisible to work.
8887           - Now setting the window state when creating windows
8888           - Fixed SetVisible to consider/set the window state when mapping
8889             a Form. We cannot set the state before it's mapped, and we cannot
8890             use Form.WindowState once it's mapped (since it would ask the
8891             driver and get 'normal'. Therefore, we grab the state before
8892             mapping, map, and then set state.
8893           - Implmemented SetWindowMinMax method; Metacity does not seem to
8894             honor the ZoomHints, though.
8895         * XplatUIWin32.cs:
8896           - Removed MINMAXINFO (moved to XplatUIStructs)
8897           - Added SetWindowMinMax stub (on Win32 the only way to set that
8898             information is in response to the WM_GETMINMAXINFO message, which
8899             is handled in Form.cs)
8900           - Added logic to SetVisible to set the proper window state when a 
8901             form is made visible (fixes #75720)
8902
8903 2006-01-26  Jackson Harper  <jackson@ximian.com>
8904
8905         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
8906         same way we handle them with Invoke.
8907
8908 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
8909
8910         * Form.cs:
8911           - Added tracking of window state so CreateParams can return
8912             the appropriate style
8913           - Moved setting of WS_CAPTION style in CreateParams to allow
8914             styles without caption
8915         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
8916           control if the TextBox property is accessed. Fixes #77345
8917         * Control.cs:
8918           - get_Created: now uses is_disposed and is_created to determine
8919             return value (suggested by Jackson)
8920           - CreateHandle: No longer exits if the handle is being recreated
8921           - RecreateHandle: If the handle is not yet created call the 
8922             appropriate method to create either control or handle. If the
8923             control is already created CreateHandle will simply exit instead
8924             of just creating the handle
8925         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
8926           now SendMessage WM_DESTROY directly to the control when DestroyWindow
8927           is called.
8928         * XplatUIX11.cs: 
8929           - When DestroyWindow is called, instead of waiting for the 
8930             DestroyNotification from X11, we directly post it to the WndProc
8931             and immediately dispose the hwnd object.
8932             Same applies to DestroyChildWindows, and this obsoletes the
8933             expose_pending tracking. Contrary to Win32 behaviour we destroy our
8934             child windows before our own, to avoid X11 errors.
8935           - Removed the direct sending of WM_PAINT on UpdateWindow
8936         * XplatUIWin32.cs:
8937           - Reworked DoEvents and GetMessage to allow access to internal queue
8938             even when trying non-blocking access to the queue.  Fixes #77335. 
8939             Based on a patch suggestion by Don Edvalson. The new private
8940             GetMessage can now also be used as a backend for a PeekMessage
8941             frontend version.
8942         * XplatUI.cs: Improved debug output for CreateWindow
8943
8944 2006-01-25  Jackson Harper  <jackson@ximian.com>
8945
8946         * Help.cs: Allow param to be null. Patch by Don Edvalson.
8947
8948 2006-01-24  Jackson Harper  <jackson@ximian.com>
8949
8950         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
8951         when we have a MaxDropItems lower then the selected index.
8952
8953 2006-01-24  Jackson Harper  <jackson@ximian.com>
8954
8955         * Control.cs: Don't allow selection of non visible controls, allow
8956         selection of controls without parents.
8957
8958 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
8959
8960         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
8961         * DataGridDrawingLogic.cs: Add editing row only when is necessary
8962
8963 2006-01-23  Jackson Harper  <jackson@ximian.com>
8964
8965         * UpDownBase.cs: Make the textbox handle all the selection and
8966         tabbing. This fixes tabing to updown controls.
8967
8968 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
8969
8970         * TextBoxBase.cs: fixes exception thown the object was null
8971
8972 2006-01-23  Jackson Harper  <jackson@ximian.com>
8973
8974         * ButtonBase.cs: Just use the base CreateParams. They set
8975         visibility and enabled correctly.
8976         * ComboBox.cs:
8977         * TrackBar.cs:
8978         * MonthCalendar.cs: Lets let the base set as much of the
8979         createparams as possible so we don't have duplicate code all over
8980         the place.
8981
8982 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
8983
8984         * ThemeGtk.cs: Added TrackBar and some experimental code to
8985           get double buffering back
8986
8987 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
8988
8989         * DataGrid.cs: Allows row number set internally higher than the last
8990         when creating a new row. Restores the editing functionality.
8991
8992 2006-01-20  Mike Kestner  <mkestner@novell.com>
8993
8994         * MimeIcon.cs: delay Image creation until the icons are accessed
8995         instead of creating 190 scaled images on GnomeHandler startup.
8996
8997 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
8998
8999         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
9000           first call base before processing the event. Fixes #77279
9001
9002 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
9003
9004         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
9005           that the stride for the GDI bitmap would match the stride of
9006           a DIB or a Cursor.
9007
9008 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
9009
9010         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
9011
9012 2006-01-19  Jackson Harper  <jackson@ximian.com>
9013
9014         * ComboBox.cs: Hookup the text controls keydown event so we get
9015         those when the text control has the focus.
9016
9017 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
9018
9019         * Label.cs: Now using the base events instead of defining new ones;
9020           this allows us to just call the base properties without having to
9021           duplicate all base property logic 
9022
9023 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
9024
9025         * Label.cs: A label by default is not a tabstop (Fixes one of our
9026           failing nunit tests)
9027
9028 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
9029
9030         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
9031         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
9032
9033 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
9034
9035         * Cursor.cs: Reimplemented creating cursor bitmaps without using
9036           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
9037           This fixes #77218
9038         * XplatUIWin32.cs: 
9039           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
9040             constructor creates images that can't be saved. Part of the fix
9041             for #76103
9042           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
9043           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
9044             bug fix for handling window state in forms properly)
9045
9046 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9047
9048         * ThemeGtk.cs: Simplify ScrollBar drawing
9049
9050 2006-01-18  Jackson Harper  <jackson@ximian.com>
9051
9052         * Splitter.cs: Set the default dock style for the splitter control
9053         in the constructor.
9054
9055 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9056
9057         * ThemeGtk.cs: Corrected StateType and ShadowType for
9058           gtk_paint_box
9059
9060 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9061
9062         * Control.cs: Make use of Theme.DoubleBufferingSupported
9063         * ThemeGtk.cs:
9064           - Added drawing for flat style buttons
9065           - Added ScrollBar drawing
9066
9067 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
9068
9069         * ThemeClearlooks.cs: Removed some unneeded code.
9070         * ThemeGtk.cs: First part of ThemeGtk enhancements.
9071
9072 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
9073
9074         * LinkLabel.cs: We need to update the hover drawing when
9075           leaving the control as well.
9076
9077 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
9078
9079         * DataGrid.cs: Clicking on non empty areas in the columns
9080            area was giving an exception
9081
9082 2006-01-17  Jackson Harper  <jackson@ximian.com>
9083
9084         * ThemeWin32Classic.cs:
9085         * ListView.cs: Do not draw/clip the headers when the header style
9086         is None.
9087
9088 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
9089
9090         * DataGrid.cs: Fixes 77260
9091         
9092 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
9093
9094         * DataGrid.cs: Clicking on a column on a empty grid was giving
9095           an exception
9096
9097 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
9098
9099         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
9100           or any keypress will crash the grid.
9101
9102 2006-01-17  Mike Kestner  <mkestner@novell.com>
9103
9104         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
9105         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
9106         invisible/previously-visible items.
9107         [Fixes #76909]
9108
9109 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
9110
9111         * ThemeClearlooks.cs:
9112         - Added CL_Draw_Button method; now other theme controls that are 
9113           not derived from button or do not have a button can draw buttons
9114           too
9115         - Updated ComboBox drawing
9116         - Beautified RadioButton drawing
9117         - Corrected drawing of bottom and left tabs
9118         - Beautified DateTimePicker and MonthCalendar
9119         - Added CPDrawButton and CPDrawRadioButton
9120
9121 2006-01-16  Jackson Harper  <jackson@ximian.com>
9122
9123         * ComboBox.cs: Set the initial value of the scrollbar to the
9124         current index. Reduce the numbers of refreshs and IndexOfs called.
9125
9126 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
9127
9128         * FileDialog.cs: When the file listview is focused hitting the
9129           backspace key moves the fileview to the parent directory
9130
9131 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
9132
9133         * Form.cs: 
9134           - Added RecreateHandle call when changing taskbar visibility to 
9135             trigger reparenting in Win32 driver (Fixes #75719)
9136           - If a window has minimize or maximize buttons, it cannot have
9137             a help button
9138         * XplatUIWin32.cs:
9139           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
9140             the toplevel form with FosterParent (A toolwindow not on the
9141             taskbar) (Fixes #75719)
9142           - Made FosterParent a toolwindow
9143
9144 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
9145
9146         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
9147
9148 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
9149
9150         * ToolTip.cs: If SetToolTip is called from a control and the mouse
9151           is currently over that control, make sure that tooltip_window.Text
9152           gets updated
9153
9154 2006-01-13  Mike Kestner  <mkestner@novell.com>
9155
9156         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
9157
9158 2006-01-13  Jackson Harper  <jackson@ximian.com>
9159
9160         * TreeView.cs: On MS GetNodeAt never actually factors in the X
9161         value passed.  Also redraw the selected node when we recieve
9162         focus, so tabbing between trees works correctly.
9163
9164 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
9165
9166         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
9167           ~/.gconf/%gconf-tree.xml, so use
9168           .gconf/desktop/gnome/interface/%gconf.xml
9169
9170 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
9171
9172         * TextControl.cs: Draw text in gray if control is disabled
9173
9174 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
9175
9176         * TreeView.cs: Draw the focus rectangle outside the highlight, to
9177           make sure it's always visible. Fixes #76680.
9178
9179 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
9180
9181         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
9182
9183 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
9184
9185         * PageSetupDialog.cs: Added.
9186         * PrintDialog.cs: Attributes.
9187         * PrintPreviewControl.cs: Updates.
9188         * PrintPreviewDialog.cs: Updates.
9189         
9190 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
9191
9192         * Control.cs: Undid my selection check fix, since it's not needed
9193         * TextBoxBase.cs:
9194           - Now considering the presence of hscroll/vscroll when sizing
9195             vscroll/hscroll respectively. Fixed bug #77077
9196           - Added Left/Up/Down/Right to IsInputKey list to prevent
9197             ContainerControl from stealing them. This fixes what I broke
9198             with my last checkin.
9199
9200 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
9201
9202         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
9203           I finally understand how the property can be set without a setter :-)
9204
9205 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
9206
9207         * Application.cs:
9208           - Switched RunLoop to use static Message.Create to create a 
9209             Message object
9210           - Added PreProcessMessage call in runloop for keyboard events; this
9211             is part of the fix for #77219, I overlooked this originally in the
9212             MSDN doc for PreProcessMessage
9213         * Control.cs:
9214           - Removed call to PreProcessMessage from handling of keyboard 
9215             messages; it's supposed to be done in the message pump
9216           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
9217             per MSDN documentation.
9218           - IsInputChar: All chars are input chars by default; removed the 
9219             parent calling chain, MS does not document that
9220           - PreProcessMessage: If IsInputChar is true, we want to return false
9221             to allow dispatching of the message
9222           - When selecting the next control, now also check that we're not
9223             selecting ourselves again and therefore return a false positive.
9224         * TextBoxBase.cs:
9225           - Tried to match return values for IsInputKey and ProcessDialogKey
9226             to what MS returns; moved processing of our special keys outside
9227             ProcessDialogKey since MS does not seem to return true on those.
9228           - Moved code that previously was in ProcessDialogKey into new private
9229             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
9230           - Reworked handling of WM_CHAR to not have to duplicate code from
9231             Control.cs anymore, instead we simply call down to base.
9232            
9233 2006-01-12  Jackson Harper  <jackson@ximian.com>
9234
9235         * ComboBox.cs: We always need to refresh the text area when
9236         EndUpdate is called. Fixes the combobox in the file dialog.
9237         * Control.cs: Don't create the creator_thread until the controls
9238         handle is created.  Also in InvokeRequired we check if the
9239         creator_thread is null. This gives the effect of InvokeRequired
9240         returning true if the controls handle is not created yet, and
9241         matches MS.
9242
9243 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
9244
9245         * XplatUI.cs:
9246           - Added StartLoop() driver method. This is used to allow drivers to
9247             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
9248             loop for a particular thread
9249           - Added EndLoop() driver method. This is called once the message
9250             pump for the thread is shut down
9251           - Added SupportsTransparency method to allow the driver to indicate
9252             opacity support for windows
9253         * Form.cs:
9254           - Removed TODO attribute, completed AllowTransparency property
9255           - Added documented logic to Opacity
9256         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
9257           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
9258           versions of CompatibleTextRendering
9259         * X11Structs.cs: Added opacity atom to our atom enumeration
9260         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
9261           of a form might be set before it's reparented by the WM, and we need
9262           the opacity value without calling up to Form)
9263         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
9264           SupportsTransparency() driver methods
9265         * Application.cs: Now calling StartLoop and EndLoop driver methods
9266         * XplatUIX11.cs:
9267           - Added opacity atom registration
9268           - Added StartLoop()/EndLoop() methods. They're empty right now but
9269             will need to get implemented when we switch to a per-thread queue
9270           - Implemented SupportsTransparency() method
9271           - Implemented SetWindowTransparency() method
9272           - Added support for setting the opacity value when a window is
9273             reparented (since the opacity needs to be set on the WM frame)
9274         * XplatUIOSX.cs, XplatUIWin32.cs:
9275           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
9276
9277 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
9278
9279         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
9280
9281 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
9282
9283         * FileDialog.cs: Added ToolTip for MWFFileView
9284         * MimeIcon.cs: Rewrote GnomeHandler.
9285           - Get currently used gnome icon theme from
9286             ($HOME)/.gconf/%gconf-tree.xml
9287           - Make use of inherited icon themes
9288           - Support SVG icon themes like Tango via librsvg
9289
9290 2006-01-12  Miguel de Icaza  <miguel@novell.com>
9291
9292         Revert's Jackson's revert which broke 2.0 builds.   Fix both
9293         builds. 
9294         
9295         * Application.cs: Move the use_compatible_text_rendering outside
9296         the NET_2_0 define.  If we ever need to use the
9297         use_compatible_text_rendering on the individual controls they will
9298         access the variable from the common shared code paths.
9299
9300 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
9301
9302         * XplatUI.cs:
9303           - Added more granular debug options
9304           - Added method to print both window text and id
9305           - Switched debug output to use new Window() debug method
9306           - Added IsEnabled() driver method
9307           - Added EnableWindow() driver method
9308         * Form.cs:
9309           - Removed end_modal; no longer needed, new loop handles termination
9310             via 'closing' variable
9311           - If form is modal, setting DialogResult will now initiate loop
9312             termination via 'closing' variable
9313           - Added support for is_enabled/WS_DISABLED to CreateParams
9314           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
9315             does all the work
9316           - Removed code that's now in RunLoop from ShowDialog()
9317           - Added various documented sanity checks to ShowDialog()
9318           - Added handling of WM_DESTROY message; we set 'closing' on getting
9319             the message to indicate the message pump to terminate
9320           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
9321             send by the Application.ExitThread method. (We send the message
9322             to destroy the window after all other events have been
9323             processed through the queue, instead of destroying the handle 
9324             directly)
9325           - Moved code from Close() method to WM_CLOSE handler; added logic
9326             to only send close-related events if the form is not displayed
9327             modal
9328         * Splitter.cs (..ctor): Fixed typo in resource name
9329         * Control.cs:
9330           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
9331             brush now
9332           - set_Cursor: Now only setting calling into XplatUI if the handle for
9333             the control is already created; this avoids implict handle creation
9334             or crashes if it's not created
9335           - set_Enabled: Now setting the enabled state via the new driver method
9336             instead of just tracking it
9337           - CreateParams: Added logic to set WS_DISABLED based on enabled state
9338           - CreateControl: Reordered event firing and method calls to more
9339             closely fire events in the order MS does. Now setting the
9340             enabled state in the driver when creating the control.
9341           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
9342             match MS order
9343         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
9344           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
9345         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
9346         * Hwnd.cs:
9347           - Added tracking of window enabled state (get_Enabled/set_Enabled)
9348           - Added EnabledHwnd property to easily allow a driver to find the
9349             handle of the first enabled window in the parent chain (this is
9350             used by drivers to pass up input events of disabled windows)
9351         * XplatUIDriver.cs: Added IsEnabled() method
9352         * Application.cs:
9353           - Removed crude and obsolete exiting tracking variable
9354           - Removed internal ModalRun(); replaced by RunLoop()
9355           - Implemented private CloseForms() method to allow closing all 
9356             windows owned by a particular (or all) threads
9357           - Exit() now properly closes all windows without forcing the message
9358             pump to quit
9359           - Removed obsolete InternalExit() method
9360           - Changed Run() methods to use new RunLoop() message pump
9361           - Implemented new RunLoop() method for both modal and non-modal forms
9362         * CommonDialog.cs:
9363           - get_CreateParams: Added setting of WS_DISABLED
9364           - Simplified ShowDialog(); now all the work is done in RunLoop(),
9365             invoked via Form.ShowDialog()
9366         * NativeWindow.cs: We don't remove the window from the collection when
9367           the handle is destroyed; there might still be messages for it in the
9368           queue (mainly the resulting WM_DESTROY); instead it will be removed
9369           when Control calls InvalidateHandle in the WM_DESTROY handler
9370         * XplatUIX11.cs:
9371           - CreateWindow: Added logic to handle the WS_DISABLED window style
9372           - EnableWindow: Implemented based on Hwnd.Enabled
9373           - GetMessage: Reset PostQuitState so the method can be called again
9374           - Implemented support for disabled windows (passing messages to the
9375             first enabled parent) in handling all input messages
9376           - Added optimizations for handling Expose events
9377           - Implemeted new driver method IsEnabled()
9378           - Now always resetting paint pending tracking vars when we start paint
9379           - Re-implemented UpdateWindow via just sending a WM_PAINT message
9380         * XplatUIOSX.cs: Added IsEnabled method stub
9381         * XplatUIWin32.cs: Implemented new IsEnabled() method
9382
9383 2006-01-11  Jackson Harper  <jackson@ximian.com>
9384
9385         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
9386         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
9387         variables a little.
9388         * ColorDialog.cs: Clear out the old form before adding the new
9389         panel.  
9390
9391 2006-01-11  Jackson Harper  <jackson@ximian.com>
9392
9393         * X11Dnd.cs: Make sure to add all the text formats when adding
9394         strings to the data object.
9395         * TreeNodeCollection.cs: When adding to a sorted tree we need to
9396         do some redrawing too.  Also change the UpdateNode to an
9397         UpdateBelow so the newly added node gets painted.
9398         
9399 2006-01-11  Miguel de Icaza  <miguel@novell.com>
9400
9401         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
9402         LinkLabel.cs, PropertyGrid.cs: Implement the
9403         UseCompatibleTextRendering property for 2.x
9404
9405         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
9406
9407 2006-01-11  Jackson Harper  <jackson@ximian.com>
9408
9409         * TreeView.cs: Use the property for setting the selected node so
9410         the correct events get raised.
9411         * TreeNode.cs: Update the tree when the fore/back colours of a
9412         node are set.
9413
9414 2006-01-10  Jackson Harper  <jackson@ximian.com>
9415
9416         * TreeView.cs: Allow setting SelectedNode to null.
9417
9418 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9419
9420         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
9421
9422 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9423
9424         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
9425
9426 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9427
9428         * PrintDialog.cs: Added attributes and set default property values.
9429
9430 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9431
9432         * PrintControllerWithStatusDialog.cs: 
9433         Added PrintControllerWithStatusDialog.
9434
9435 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9436
9437         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
9438         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
9439
9440 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
9441
9442         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
9443
9444 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
9445
9446         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
9447         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
9448
9449 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
9450
9451         * MimeIcon.cs: Added internal class SVGUtil.
9452
9453 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
9454
9455         * FileDialog.cs: Don't crash if there are two files with the
9456           same name but different locations.
9457
9458 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
9459
9460         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
9461         dates across multiple month grids. Used to not highlight entire 
9462         month, but does now.
9463         
9464 2006-01-06  Jackson Harper  <jackson@ximian.com>
9465
9466         * MonthCalendar.cs: Removed DoEvents call to prevent a running
9467         message loop. Change timer intervals to numbers that seem more
9468         natural.
9469
9470 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
9471
9472         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
9473           object for location info since screen object is now implemented.
9474
9475 2006-01-05  Jackson Harper  <jackson@ximian.com>
9476
9477         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
9478         * AsyncMethodResult.cs: We no longer use a WeakReference for the
9479         AsyncMethodResult, this is because we ALWAYS want the
9480         ManualResetEvent to get set.
9481         * Control.cs: When disposing use an async invoke to call shutdown
9482         code, so that thigns don't block on the finalizer thread.  Also
9483         check if we even have a message loop before trying to send
9484         messages, if we don't then don't bother sending messages.
9485         - No more weak references for async methods
9486         * XplatUIDriver.cs: No more weak references for async methods.
9487
9488 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
9489
9490         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
9491           returns two FontFamily with the same name
9492
9493 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
9494
9495         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
9496           drawing disabled text. Instead using the ColorGrayText color
9497
9498 2006-01-04  Jackson Harper  <jackson@ximian.com>
9499
9500         * TreeNode.cs: redraw the node when its image index is changed.
9501
9502 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
9503
9504         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
9505           time I checked there are no others like it.
9506
9507 2006-01-04  Jackson Harper  <jackson@ximian.com>
9508
9509         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
9510         this gives the behavoir I was looking for.
9511         * Control.cs: Special case Invoking EventHandlers, this matches MS
9512         and fixes part of bug #76326.
9513
9514 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
9515
9516         * ThemeClearlooks.cs, FileDialog.cs:
9517           - Reflect the latest Theme class changes
9518           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
9519             with DateTime
9520             
9521 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
9522
9523         * Theme.cs: Cache UI resource images and resize them if needed
9524
9525 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
9526
9527         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
9528           is called. This fixes the crash in Nexxia when setting the font
9529           attributes in the chat. [However, RTF needs a look-over to make sure
9530           that all SelectionXXX methods handle the special case that selection
9531           is empty and therefore the change must be applied to all text starting
9532           at the cursor/selection start]
9533
9534 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
9535
9536         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
9537           XplatUIOSX.cs: Added SendMessage and PostMessage methods
9538         * X11Keyboard.cs: Switched to new way of calling PostMessage
9539
9540 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
9541
9542         * Theme.cs: Added theme interface for images to allow the theme to
9543           control what images are used for things like FileDialog, MessageBox
9544           icons, etc.
9545         * MessageBox.cs: Now uses the new Theme icon/image interfaces
9546
9547 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
9548
9549         * FileDialog.cs:
9550           - Removed some dead code
9551           - Opening a recently used file does work now
9552           - Small UI enhancements
9553           - Refactoring
9554
9555 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
9556
9557         * FileDialog.cs: Forgot too add __MonoCS__
9558
9559 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
9560
9561         * FileDialog.cs: We are able to read recently used files now let's
9562           go on and write them.
9563
9564 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
9565
9566         * FileDialog.cs: Breathe some life into "last open"/"recently used"
9567           button
9568         * MimeIcon.cs: Do a check for the top level media type also
9569
9570 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
9571
9572         * ThemeClearlooks.cs:
9573           - Added CPDrawStringDisabled
9574           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
9575             some chars if the text doesn't fit into text_rect
9576           - DrawListViewItem: If View = View.LargeIcon center the image;
9577             rewrote the drawing of ListViewItem.Text if View = 
9578             View.LargeIcon
9579
9580 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
9581
9582         * MimeIcon.cs: Use default KDE icon theme if there is no
9583           "48x48" directory for the current icon theme, fixes #77114
9584         * Mime.cs: Disable not working and actually not used code. 
9585         * ThemeWin32Classic.cs:
9586           - Replace "new SolidBrush" in GetControlBackBrush and
9587             GetControlForeBrush with ResPool.GetSolidBrush
9588           - Changed DrawListViewItem from private to protected virtual
9589         * FileDialog.cs:
9590           - Added form.MaximizeBox = true
9591           - Don't throw an exception if there is a broken symbolic link
9592
9593 2005-12-23  Jackson Harper  <jackson@ximian.com>
9594
9595         * TabControl.cs: Give the panels focus, keyboard navigation is
9596         fixed so this works correctly now.
9597         - We need these key events also.
9598         * ToolBar.cs: Remove some of the poor mans double buffering.
9599         
9600 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
9601
9602         * ComboBox.cs: The internal TextBox now returns the focus.
9603
9604 2005-12-23  Jackson Harper  <jackson@ximian.com>
9605
9606         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
9607
9608 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
9609
9610         * Control.cs: Removed debug code
9611         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
9612           implicit children
9613
9614 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
9615
9616         * Control.cs: When creating the control, update the Z-order after
9617           all it's children are created, too. (Fixes nexxia not showing
9618           picturebox bug)
9619
9620 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
9621
9622         * Control.cs: Do not update the anchoring distances if layout is
9623           suspended, instead do it once layout is resumed
9624
9625 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
9626
9627         * Control.cs: 
9628           - After many hours of debugging, for both Jackson and
9629             myself, it turns out that it helps to set the parent of a control
9630             if you want to actually see it onscreen. In the spirit of that
9631             discovery, we're now setting the parent of the control and
9632             it's children when the control's handle is created. This fix
9633             will make Lutz Roeder's Reflector run happily. 
9634           - now just creating the handle instead of the whole control when
9635             getting a graphics context for the control.
9636
9637 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
9638
9639         * ScrollableControl.cs: When calculating the canvas, don't consider
9640           the scrollbar widths. Instead, predict if horizontal scrollbar
9641           will affect canvas when deciding on vertical display and vice versa.
9642
9643 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
9644
9645         * RichTextBox.cs: Set default RTF font for documents that don't
9646           have a font table (Fixes #77076)
9647
9648 2005-12-22  Jackson Harper  <jackson@ximian.com>
9649
9650         * TextBoxBase.cs: It's difficult to do, but you can have an empty
9651         clipboard. This prevents a NullRef in that case.
9652         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
9653         clipboard. PRIMARY is for the currently selected text only. (We
9654         should implement PRIMARY at some point.
9655
9656 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
9657
9658         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
9659           a Unicode function with a structure that was defined in Ansi way.
9660           This fixes #76942.
9661
9662 2005-12-21  Jackson Harper  <jackson@ximian.com>
9663
9664         * StatusBar.cs: Statusbar handles its fore/back colours on it's
9665         on. Because thats how it rolls. (and this avoids it using ambient
9666         colours).
9667         * ThemeWin32Classic.cs: Use the proper back color for filling.
9668         * Menu.cs: Use the system menu bar color for drawing menu
9669         bars. Using the window back color will bring ambient colours into
9670         the picture.
9671
9672 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
9673
9674         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
9675           Bitmaps were created and not disposed.
9676
9677 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
9678
9679         * Control.cs (CreateControl): Don't do anything if the control is
9680           already created, otherwise we'd fire the OnCreated event more than
9681           once
9682
9683 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
9684
9685         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
9686           will always match. Instead return -1. Fixes #76464.
9687
9688 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
9689
9690         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
9691           neither the beginning nor the end of the line (Fixes bug #76479)
9692
9693 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
9694
9695         * Control.cs:
9696           - ControlNativeWindow.ControlFromHandle(): Now handling situation
9697             where handle is invalid
9698           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
9699             instead of slower linear search
9700         * NativeWindow.cs: Don't remove the window from the hashtable until
9701           after the driver has destroyed it (since the driver might use
9702           Control.FromHandle to lookup the control object
9703         * Hwnd.cs: Added DestroyPending property to track if a window is 
9704           already destroyed as far as the driver is concerned and only hasn't
9705           yet notified the control
9706         * XplatUIX11.cs:
9707           - Activate(): Check if the window is still valid before using the 
9708             handle
9709           - Implemented DestroyChildWindow() method to mark child windows as
9710             destroyed when a window is destroyed. This prevents situations 
9711             where we might call an X method based on queued events for a
9712             window that already has been destroyed but we haven't yet pulled
9713             the destroy method from the queue.
9714           - Added a call to the new DestroyChildWindow() method to the drivers
9715             DestroyWindow code. Also now marking the destroyed window itself
9716             as pending
9717
9718 2005-12-20  Jackson Harper  <jackson@ximian.com>
9719
9720         * StatusBar.cs:
9721         * StatusBarPanel.cs: Don't calculate panel sizes on draw
9722         anymore. Just do them when needed, also track the rects of panels
9723         so that we can optimize refreshing more in the future.
9724
9725 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
9726
9727         * ColorDialog.cs: Fixed focus drawing in small color controls
9728
9729 2005-12-19  Jackson Harper  <jackson@ximian.com>
9730
9731         * InternalWindowManager.cs:
9732         * MdiWindowManager.cs: Cleanup some coordinate system changes so
9733         moving windows works properly.
9734
9735 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
9736
9737         * Control.cs: 
9738           - Removed call to InitLayout() from SetBoundsCore(); doc says
9739             it's only called when a control is added to a container
9740           - Split InitLayout logic, moved to separate UpdateDistances() method
9741             since we need to perform those calculations more often than just
9742             when adding the control to a container. (Needed to fix #77022)
9743           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
9744           - Reduced the OnBindingContextChanged events count, don't send them
9745             unless the control is created, we still aren't totally matching
9746             MS, but I can't quite figure out some of their rules
9747
9748 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9749
9750         * ThemeClearlooks.cs: Corrected distance between ProgressBar
9751           stripes
9752
9753 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9754
9755         * ThemeClearlooks.cs:
9756           - Updated ProgressBar drawing
9757           - Corrected drawing of ScrollBars and scroll buttons
9758           - Some temporary fixes for minor pixel artefacts
9759
9760 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
9761
9762         * Control.cs:
9763           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
9764             cause events to be sent in the same order as MS does.
9765           - Added ChangeParent() method to trigger various OnXXXChanged events
9766             that need to be fired when a parent changes (This is a reworking
9767             of the patch from r54254, with the X11 errors fixed)
9768           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
9769             since on MS we get OnLayoutChanged events when calling Clear()
9770           - Changed Enabled property to consider parent state as well, if a
9771             parent is not enabled, the control will not be either
9772           - Changed Parent property to simply call Controls.Add() since that
9773             now does all the work required, this way we avoid code duplication
9774           - Threw in a few OnBindingsContextChanged calls to try and match
9775             when MS sends them. We seem to send a few too many, though.
9776           - Added call to CreateControl when adding the control to a parent.
9777             We were never calling CreateControl. Still needs some work, in
9778             some places we treat HandleCreated and ControlCreated as equal, 
9779             which is wrong
9780           - Removed obsolete commented out code from UpdateZOrder()
9781
9782 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9783
9784         * ThemeClearlooks.cs: Updated TrackBar drawing.
9785
9786 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
9787
9788         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
9789
9790 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
9791
9792         * FileDialog.cs: Add the Help button and the open readonly
9793           checkbox only if needed
9794
9795 2005-12-16  Jackson Harper  <jackson@ximian.com>
9796
9797         * Control.cs: Make sure we have an active menu before trying to
9798         process commands on it. Prevents menu-less forms from crashing
9799         when Alt is pressed.
9800         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
9801         Dieter Bremes.
9802         * RichTextBox.cs: Expand statement to help out gmcs and fix the
9803         2.0 build.
9804
9805 2005-12-16  Jackson Harper  <jackson@ximian.com>
9806
9807         * InternalWindowManager.cs: Don't translate tool windows screen
9808         coordinates. This fixes windows 'bouncing' around when being moved.
9809
9810 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
9811
9812         * TextBoxBase.cs:
9813           - MaxLength now treats 2^31-1 equal to unlimited length (this is
9814             not quite MS compatible, MS uses that number only for single line
9815             and 2^32-1 for multi-line, but I figure it won't hurt keeping
9816             the limit at 2GB)
9817           - Now enforcing the MaxLength limit when entering characters
9818           - Added argument to internal Paste() method to track if it's called
9819             from programatically or via keyboard, since keyboard driven pastes
9820             need to enforce max-length
9821           - Added logic to Paste to only paste as many chars as MaxLength 
9822             allows
9823         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
9824         * TextControl.cs:
9825           - Added Length property to return number of characters in document
9826           - Added private CharCount property which only tracks actual chars
9827             in the document (no linefeeds) and fires event when CharCount
9828             changes
9829           - Added tracking of character count to all methods that alter it
9830           - Added LengthChanged event to allow applications to subscribe
9831             to any changes to the document
9832
9833 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
9834
9835         * TextBox.cs: 
9836           - Removed local password_char field (moved to TextBoxBase)
9837           - Now setting the document's password var when password is
9838             set
9839         * TextBoxBase.cs:
9840           - Added password_char field (needed here so MultiLine can
9841             access it)
9842           - Added logic to MultiLine property setter to set the document's
9843             variable when password display is allowed
9844           - Removed debug code and made some debug code conditional
9845         * TextControl.cs:
9846           - Added RecalculatePasswordLine() method to handle special password
9847             char only lines
9848           - Added PasswordChar property, also added related tracking vars
9849           - Draw() method now uses local text var for grabbing text to draw,
9850             this var is set to line.text unless we're doing password display,
9851             then it is set to the pre-generated all-password-chars line
9852           - Added calling RecalculatePasswordLine() method for password lines
9853
9854 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
9855
9856         * Hwnd.cs: 
9857           - Added Reparented property to allow tracking of Window Manager
9858             reparenting actions (which affect X/Y calculations of toplevel 
9859             windows)
9860           - Made ToString() print window handles in hex
9861         * XplatUIX11.cs:
9862           - AddConfigureNotify(): Now uses reparented state off Hwnd to
9863             determine if X/Y needs offsetting
9864           - AddConfigureNotify(): Fixed offset calculations
9865           - Now adds ReparentNotify messages into the queue
9866           - Now processes ReparentNotify messages and causes a 
9867             WM_WINDOWPOSCHANGED message to be sent upstream if a window
9868             is reparented (as most likely it's X/Y coordinates are changed
9869             due to that)
9870
9871 2005-12-14  Jackson Harper  <jackson@ximian.com>
9872
9873         * XplatUIX11.cs: Tool windows still need to respek focus.
9874
9875 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
9876
9877         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
9878           have a working release
9879
9880 2005-12-13  Jackson Harper  <jackson@ximian.com>
9881
9882         * Form.cs: Update styles after setting the border style regardless
9883         of whether or not the window is using a window manager.
9884
9885 2005-12-13  Jackson Harper  <jackson@ximian.com>
9886
9887         * Form.cs: We now hook into an internal window manager instead of just an
9888         MDI subsystem, this is so we can have properly behaving tool windows.
9889         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
9890         * InternalWindowManager.cs: New internal class that acts as a
9891         window manager for tool windows and as a base for mdi windows.
9892         * MdiWindowManager.cs: New class that acts as a window manager for
9893         mdi windows.
9894
9895 2005-12-12  Jackson Harper  <jackson@ximian.com>
9896
9897         * Control.cs: Updates so we match behavoir for for implicit
9898         controls. Fixes explosions in MDI.
9899
9900 2005-12-12  Jackson Harper  <jackson@ximian.com>
9901
9902         * Control.cs: Implement Invalidate (Region).
9903
9904 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
9905
9906         * Control.cs: 
9907           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
9908             the same events as MS does. MS fires events for each property 
9909             except, for unknown reasons, Cursor, when the control is reparented. 
9910             I can't seem to totally match add/remove since MS also fires some 
9911             VisibleChanged events, which makes no sense. Consolidated the
9912             parenting code into a separate method so it can be called from
9913             both Add and Remove. set_Parent no longer needs any special logic
9914             as it calls the parent's add method which implicitly fires
9915             all events
9916           - Removed some obsolete code and debug output
9917           - Enabled state is inherited from parents, if this is enabled
9918
9919 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
9920
9921         * Form.cs: Removed commented out code
9922
9923 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
9924
9925         * Control.cs:
9926           - Added internal version of Invoke, with additional argument 
9927             indicating if we're calling it from a Dispose() handler. That
9928             way we can avoid BeginInvoke throwing an exception if we're
9929             calling for an already destroyed window.
9930           - Added a dispose argument to BeginInvokeInternal, and made the
9931             check if a valid window handle chain exists conditional on
9932             it not being a dispose call
9933           - Removed code in DestroyHandle to destroy our children. Since we
9934             now handle the WM_DESTROY message we will catch all our children
9935             being destroyed.
9936           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
9937         * Form.cs:
9938           - Added a field to track the application context of the form.
9939           - No need to set closing variable as response to WM_CLOSE, instead
9940             we destroy the window. We also call PostQuitMessage if the form
9941             has an application context (which makes it the main app form,
9942             which, when closed terminates the app)
9943         * XplatUI.cs:
9944           - Dropped Exit() method, it's naming was confusing
9945           - Added PostQuitMessage() which causes GetMessage to return false
9946             once the message queue is empty
9947         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
9948           PostQuitMessage()
9949         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
9950           no longer a valid XplatUI method, but left it in since it's used
9951           internally. Added empty PostQuitMessage() method.
9952         * MenuAPI.cs: Replaced call to Exit() with call to
9953           PostQuitMessage, even though this is probably no longer needed.
9954         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
9955         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
9956         * Application.cs:
9957           - Replaced call to XplatUI.Exit() with PostQuitMessage()
9958           - Removed old debug code that would call XplatUI for exception
9959             display, enabled standard exception handling (Still not enabled
9960             though, until NativeWindow's ExternalExceptionHandler define
9961             is removed
9962         * NativeWindow.cs:
9963           - Added internal method to allow control to update NativeWindow
9964             after a window has been destroyed
9965           - Added handling of already destroyed windows when calling i
9966             DestroyWindow
9967           - Added removal of handle from list on ReleaseHandle
9968         * XplatUIX11.cs:
9969           - Dropped GetMessageResult var and related code
9970           - Added PostQuitState to field to track if PostQuitMessage has been
9971             called
9972           - Dropped Exit() method
9973           - Added PostQuitMessage() method
9974           - GetMessage now will return false if PostQuitState is set and no
9975             more messages are in the queue.
9976           - Expose handler will no longer generate WM_PAINT messages if we are
9977             in PostQuitState since it's very likely any windows have already
9978             been destroyed, and since Hwnd won't get updated until we have
9979             processed the DestroyNotify we'd be causing X errors.
9980         
9981 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9982
9983         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
9984           Thanks to Mike for pointing out the err of my ways.
9985
9986 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9987
9988         * Control.cs(PreProcessMessage): Moved menu handling back, but
9989           after all other key handling, to match MS (who handles Menu in
9990           DefWndProc)
9991         * Menu.cs (WndProc): Removed my brainfart
9992
9993 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9994
9995         * Control.cs(PreProcessMessage): Removed special menu handling 
9996         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
9997
9998 2005-12-07  Mike Kestner  <mkestner@novell.com>
9999
10000         * Control.cs : special case SYSKEYUP so that we can adjust keynav
10001         state according in tracker.
10002         * Menu.cs : promote tracker field to base class and provide a tracker
10003         lookup capability.  Add/Remove shortcuts dynamically if the top menu
10004         has a tracker. Unparent items that are removed from the collection.
10005         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
10006         * Theme*.cs: add always_show_hotkeys field to support configurability
10007         of mnemonic display.  win32 doesn't show mnemonics until Alt is
10008         pressed.
10009
10010 2005-12-07  Jackson Harper  <jackson@ximian.com>
10011
10012         * MdiChildContext.cs: Use Control.ResetCursor.
10013         * Control.cs: ResetCursor needs to set the property so that the
10014         correct XplatUI call gets made.
10015
10016 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10017
10018         * Control.cs: More fixes to make our key events match MS. We
10019           were not setting the modifier state on KeyData, and we were
10020           not generating any events when Alt was pressed with a key
10021           since handling of WM_SYSxxx was missing for the OnKey methods.
10022
10023 2005-12-07  Jackson Harper  <jackson@ximian.com>
10024
10025         * MdiChildContext.cs: reenable the sizing code.
10026         - When the mouse leaves a window reset its cursor.
10027
10028 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
10029
10030         * ThemeClearlooks.cs: Reflect latest Hwnd changes
10031
10032 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
10033
10034         * Hwnd.cs: Now using the theme 3d bordersize to calculate
10035           widths of Fixed3D borders
10036
10037 2005-12-07  Jackson Harper  <jackson@ximian.com>
10038
10039         * MdiClient.cs: Fix warnings. Earn Mike's love.
10040
10041 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
10042
10043         * ThemeClearlooks.cs:
10044           - Adjusted mouse over button color
10045           - Added first parts of CheckBox drawing
10046           - Added correct color for selected text background
10047           - Fixed ComboBox drawing
10048           - Added CPDrawBorder3D and CPDrawBorder
10049
10050 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
10051
10052         * XplatUIX11.cs: Added call to XBell for AudibleAlert
10053
10054 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
10055
10056         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10057           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
10058           alert users via sound. We could add an enum arg with different
10059           types of alerts in the future
10060
10061 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
10062
10063         * Control.cs: Fix behaviour problems pointed out by Mike
10064
10065 2005-12-05  Mike Kestner  <mkestner@novell.com>
10066
10067         * StatusBarPanel.cs: add Invalidate method and hook it into all the
10068         prop setters.  Calls parent.Refresh for now, but could be maybe be
10069         optimized with an internal method on StatusBar at some point.
10070         [Fixes #76513]
10071
10072 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
10073
10074         * RichTextBox.cs: Implemented get_SelectionColor
10075
10076 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
10077
10078         * ThemeClearlooks.cs:
10079           - Removed dead code
10080           - Draw black button border only if button is Form.AcceptButton
10081           - Draw correct button color for pressed RadioButton if the mouse 
10082             has entered the button
10083           - Updated ProgressBar drawing!
10084           - Updated CPDrawSizeGrip drawing
10085           - Updated StatusBarPanel drawing
10086
10087 2005-12-05  Mike Kestner  <mkestner@novell.com>
10088
10089         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
10090         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
10091
10092 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
10093
10094         * ThemeClearlooks.cs: Initial check-in, activate with
10095           export MONO_THEME=clearlooks
10096         * ThemeEngine.cs: Added ThemeClearlooks
10097
10098 2005-12-03  Mike Kestner  <mkestner@novell.com>
10099
10100         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
10101         [Fixes #76897]
10102
10103 2005-12-02  Jackson Harper  <jackson@ximian.com>
10104
10105         * Form.cs: If the child form has no menu the default main menu is
10106         used as the active menu.
10107
10108 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
10109
10110         * ListBox.cs: Check if any items exist before trying to resolve 
10111           coordinates into items
10112
10113 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
10114
10115         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
10116           as the second color for the background hatch
10117
10118 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
10119
10120         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
10121         * RichTextBox.cs: FormatText position arguments are 1-based, now making
10122           sure that what we pass to FormatText is always 1-based. Fixes #76885
10123
10124 2005-11-29  Miguel de Icaza  <miguel@novell.com>
10125
10126         * NumericUpDown.cs (EndInit): When we are done initializing,
10127         reflect any updates on the UI.
10128
10129 2005-12-02  Jackson Harper  <jackson@ximian.com>
10130
10131         * ImplicitHScrollBar.cs:
10132         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
10133         their container controls.
10134         * TreeView.cs: Use the new implicit scrollbars.
10135
10136 2005-12-02  Jackson Harper  <jackson@ximian.com>
10137
10138         * TreeView.cs: Make top_node internal so the TreeNodeCollections
10139         can play with it.
10140         * TreeNodeCollection.cs: If we remove the topnode we need to
10141         update topnode to the next node in line.
10142         - When clearing nodes go through the same process as removing
10143         them, so they get depareneted and checked if they are top node.
10144
10145 2005-12-01  Jackson Harper  <jackson@ximian.com>
10146
10147         * TreeView.cs: When imagelists are used the image area is
10148         selectable as well as the text.
10149         - If there are no selected nodes select the first one.
10150         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
10151         so don't do it more then we need to.
10152
10153 2005-12-01  Jackson Harper  <jackson@ximian.com>
10154
10155         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
10156         that arrows can be scaled.
10157
10158 2005-12-01  Jackson Harper  <jackson@ximian.com>
10159
10160         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
10161         fail. Patch by Dieter Bremes
10162
10163 2005-11-30  Jackson Harper  <jackson@ximian.com>
10164
10165         * Form.cs: Property is 2.0 only
10166         * PrintDialog.cs: Signature fix.
10167
10168 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
10169
10170         * TextControl.cs: 
10171           - No longer artificially moves text 2 pixels down (now that we have
10172             borders this is no longer needed)
10173           - Added calcs for left, hanging and right indent
10174
10175 2005-11-23  Mike Kestner  <mkestner@novell.com>
10176
10177         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
10178
10179 2005-11-30  Jackson Harper  <jackson@ximian.com>
10180
10181         * MdiChildContext.cs: Set the cloned menus forms, as these don't
10182         get cloned as part of CloneMenu ().
10183         * Menu.cs: Make sure the parent of the items get set correctly
10184         when they are added.  And the owners are notified of the changes.
10185         * Form.cs: Create an ActiveMenu property, so that when MDI is used
10186         we can change the menu being displayed/handled by the form without
10187         changing the menu assosciated with the form.
10188         - Don't let Mdi children draw/handle menus.
10189         
10190 2005-11-30  Jackson Harper  <jackson@ximian.com>
10191
10192         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
10193         a MenuChanged event. Just to make the API a little more
10194         consistent.
10195         * MainMenu.cs:
10196         * MenuItem.cs: Use the new OnMenuChanged
10197         * MdiChildContext.cs: Handle menu merging.
10198         * Form.cs: Implement MergedMenu.
10199         
10200 2005-11-30  Jackson Harper  <jackson@ximian.com>
10201
10202         * Menu.cs: We were misusing Add. Add goes behind the specified
10203         index according to the docs, and does not replace the specified
10204         index. So I added an Insert method.
10205
10206 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
10207
10208         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
10209           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
10210           is for Jackson
10211         * RichTextBox.cs: Added calls to base for DnD events
10212
10213 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
10214
10215         * TextControl.cs:
10216           - Fixed drag-selection related crash; style fixes
10217           - Implemented undo class
10218             o Implemented method to capture document state for specified
10219               range in document tree
10220             o Implemented method to restore captured document state
10221             o Implemented cursor tracking
10222             o Implemented basic undo stack
10223           - Added undo cursor tracking to methods altering cursor location
10224           - Added undo tracking to selection deletion (still missing
10225             other text-altering hookups)
10226         * RichTextBox.cs:
10227           - Added SelectionLength property
10228           - Implemented CanPaste()
10229           - Implemented Paste()
10230           - Added missing protected methods
10231           - Fixed RTF->Document conversion; now uses font index 0 and color 
10232             index 0 as the default font for the parsed text
10233           - Fixed RTF<->Document font size translation
10234           - Fixed RTF generation, now properly handles cross-tag boundaries
10235             for single line selection
10236           - No longer always appends blank line to generated RTF
10237           - Removed TODOs
10238           - Added missing attributes
10239           - Hooked up undo-related methods
10240         * TextBoxBase.cs:
10241           - Implemented Copy()
10242           - Implemented Paste()
10243           - Implemented Cut()
10244           - Fixed caret mis-behaviour on backspace across line-boundaries
10245
10246 2005-11-29  Jackson Harper  <jackson@ximian.com>
10247
10248         * MdiClient.cs: Add a method for activating mdi children. Very
10249         basic right now. I imagine someday it might need more girth.
10250         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
10251         children windows names are added to the menu item.
10252         * ThemeWin32Classic.cs: Draw the arrow if the item is an
10253         mdilist. This happens regardless of whether or not there are any
10254         mdi windows to see in the list, and according to my tests happens
10255         before the items are even added. Also happens if there isn't even
10256         an mdi client to get windows from.
10257
10258 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
10259
10260         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
10261         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
10262
10263 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
10264
10265         * DataGridTableStyle.cs:
10266           - Create always the styles for the missing columns even if they are
10267             provided by the user (not default table style)
10268         * DataGrid.cs:
10269           - Fixes bug 76770
10270           - Fixes SetDataBinding (always re-attach source)
10271           - Fixes SetNewDataSource (only clear styles if they are not for 
10272             this source)
10273          -  Expands OnTableStylesCollectionChanged to handle style refresh 
10274             and remove properly
10275
10276 2005-11-29  Jackson Harper  <jackson@ximian.com>
10277
10278         * FileDialog.cs: Implement missing bits, remove some dead
10279         code.
10280         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
10281         creation of the panel so that the options set on the dialog are
10282         seen when the panel is created.
10283         * TreeView.cs: raise a click when items are clicked.
10284         
10285 2005-11-29  Jackson Harper  <jackson@ximian.com>
10286
10287         * MdiClient.cs: Pass some signature methods through to base.
10288
10289 2005-11-28  Jackson Harper  <jackson@ximian.com>
10290
10291         * ListView.cs: Raise the click event when items are clicked.
10292
10293 2005-11-28  Jackson Harper  <jackson@ximian.com>
10294
10295         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
10296         a nullref.
10297
10298 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
10299
10300         * ThemeNice.cs: - Removed 1 pixel bitmaps
10301           - Use SmoothingMode.AntiAlias where it makes sense
10302             (ScrollButton arrow for example)
10303           - Enhanced Button focus drawing
10304           - Fixed ComboBox drawing (no artefacts anymore, focus
10305             rectangle is back again, reduced size of ComboButton, etc.)
10306           - Fixed RadioButton focus drawing for Appearence.Button
10307           - Slight ScrollButton redesign
10308           - Some LinearGradientBrush size fixes
10309           - GroupBoxes have now rounded edges
10310           - Fixed StatusBar drawing
10311
10312 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
10313
10314         * ThemeNice.cs: - Remove dead code
10315           - use correct background colors for menus, etc.
10316           - Fake pixel drawing with 1 pixel bitmaps
10317
10318 2005-11-24  Jackson Harper  <jackson@ximian.com>
10319
10320         * MdiClient.cs: Size the scrollbars when resizing the window.
10321         - Resize the maximized windows when the client is resized
10322         * Form.cs: Make the child context available
10323         
10324 2005-11-23  Jackson Harper  <jackson@ximian.com>
10325
10326         * MdiChildContext.cs: Don't size windows if they are maximized.
10327
10328 2005-11-23  Mike Kestner  <mkestner@novell.com>
10329
10330         * ContextMenu.cs: use MenuTracker.
10331         * Control.cs: remove menu handle usage.
10332         * Form.cs: remove menu handle usage.
10333         * Hwnd.cs: remove menu handle usage.
10334         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
10335         motion and clicks to the new Tracker handlers.
10336         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
10337         and handle usage.
10338         * MenuAPI.cs: refactored to combine popup and menubar event handling.
10339         Killed the MENU and MENUITEM data types and associated collections
10340         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
10341         MenuTracker class that exposes the leftovers from the old MenuAPI
10342         static methods. Restructured Capture handling so that only one grab is
10343         done for the entire menu hierarchy instead of handing off grabs to
10344         submenus. Tracker now has an invisible control to Capture when active.
10345         * MenuItem.cs: add sizing accessors, kill Create
10346         and handle usage.
10347         * Theme.cs: remove menu handle and MENU(ITEM) usage.
10348         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
10349         MENU(ITEM). remove menu handle usage, use Menu directly.
10350         * XplatUIDriver.cs: remove menu handle usage.
10351         * XplatUIOSX.cs: remove menu handle usage.
10352         * XplatUIWin32.cs: remove menu handle usage.
10353         * XplatUIX11.cs: remove menu handle usage.
10354
10355 2005-11-22  Jackson Harper  <jackson@ximian.com>
10356
10357         * Hwnd.cs: Don't compute the menu size for
10358         DefaultClientRectangle.
10359         - Reenable menu sizes being computed for GetClienRectangle.
10360         * Form.cs: Remove comment of trechery
10361         
10362 2005-11-22  Jackson Harper  <jackson@ximian.com>
10363
10364         * Hwnd.cs: The adjustments for the menu bar are made when it is
10365         attached to the form.
10366
10367 2005-11-19  Jackson Harper  <jackson@ximian.com>
10368
10369         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
10370         (just like on windows).
10371
10372 2005-11-19  Jackson Harper  <jackson@ximian.com>
10373
10374         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
10375         use real buttons anymore because they are in non client area. The
10376         one TODO here is that I need to somehow invalidate a section of
10377         the non client area.
10378
10379 2005-11-18  Jackson Harper  <jackson@ximian.com>
10380
10381         * Control.cs: Put the enum check back in now that MDI doesnt have
10382         to use this to set border styles.
10383         * Form.cs: Only set mdi child windows borders if the handle has
10384         been created.
10385         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
10386         this directly on to the driver.
10387         - Get the move start position before adjusting for the titlebar
10388         height, this fixes the windows "skipping" when they are first
10389         moved.
10390
10391 2005-11-18  Jackson Harper  <jackson@ximian.com>
10392
10393         * XplatUIX11.cs: Just compute the mdi borders separately as they
10394         don't totally match up with normal form borders.
10395
10396 2005-11-18  Jackson Harper  <jackson@ximian.com>
10397
10398         * Control.cs: Set WS_ styles for borders, so that the driver does
10399         not have to retrieve the control instance to figure out what kind
10400         of borders it should have.
10401         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
10402         driver can know its an mdi child easily.
10403         * XplatUIX11.cs: Get the border styles and whether the window is
10404         MDI from the Styles and ExStyles params instead of having to get a
10405         control. This prevents a chicken and egg problem.       
10406
10407 2005-11-18  Jackson Harper  <jackson@ximian.com>
10408
10409         * MdiClient.cs: Fix typo so scrollbars show up correctly.
10410
10411 2005-11-18  Jackson Harper  <jackson@ximian.com>
10412
10413         * MdiClient.cs: Calculate when to add and remove scrollbars
10414         correctly.
10415         * MdiChildContext.cs: Adjust the y position to take the titlebar
10416         into account.
10417         - No height for FormBorderStyle.None
10418
10419 2005-11-18  Jackson Harper  <jackson@ximian.com>
10420
10421         * Control.cs: Allow non enum values to be used for
10422         InternalBorderStyle.  MDI does this to set a special border style.
10423         - New utility methods for converting points to/from client coords
10424         - Add the newly created control to the Controls collection before
10425         updating its style. This way UpdateStyle can walk the control
10426         heirarchy to find the control if needed.
10427         so I don't need to create a new Point object all the time.
10428         * Form.cs: Let MDI windows handle their border styles.
10429         - Set styles on MDI windows so the correct title style is derived.
10430         * MdiChildContext.cs: Move all the painting and window handling
10431         into the non client area.
10432         - Use correct sizing and put correct buttons on frames based on
10433         the FormBorderStyle.
10434         - Notify the mdi client about scrolling
10435         - Need to handle the buttons ourselves now, because they are all
10436         in non client areas and we can't add controls there.
10437         * MdiClient.cs: Halfway to scrolling, this implementation is
10438         somewhat broken though, we need to check to make sure other
10439         windows aren't causing scrolling before removing the bars. Also
10440         the bars need to be drawn on top, maybe I can switch implicit
10441         controls to be on top.
10442         * Hwnd.cs: caption_height and tool_caption_height are now
10443         properties of an hwnd, this way they can be set by the driver
10444         based on the type of window they are.  In X11 the window manager
10445         handles the decorations so caption_height is zero unless its an
10446         MDI window.
10447         - Add 3 pixel borders for MDI windows (0xFFFF).
10448         - Get rid of some code duplication, have DefaultClientRectanle
10449         just call GetClientRectangle.
10450         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
10451         Hwnd now.
10452         - Set border styles differently for mdi windows.
10453         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
10454         Hwnd now.
10455         
10456 2005-11-15  Mike Kestner  <mkestner@novell.com>
10457
10458         * Menu.cs: when adding an item to the collection, if item is already 
10459         parented, remove it from the parent.
10460
10461 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
10462
10463         * X11DesktopColors.cs: Added KDE support
10464
10465 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
10466
10467         * XplatUIWin32.cs: 
10468           - Clipboard methods now can translate Rtf format
10469           - No longer removes clipboard contents whenever a new format is added
10470             to allow placing multiple formats on the clipboard
10471         * Clipboard.cs: Clipboard now supports getting a IDataObject and
10472           will place all formats contained in it onto the clipboard. Also
10473           now cleans the clipboard before placing a new object onto it
10474         * RichTextBox.cs:
10475           - Implemented set_Rtf
10476           - Implemented set_SelectedRtf
10477           - Created InsertRTFFromStream() method to allow single code base
10478             for all properties and methods that insert RTF into document
10479           - Removed debug output
10480         * TextControl.cs:
10481           - Fixed Delete(int) to fix up line numbers
10482           - Fixed ReplaceSelection to combine start and end line
10483           - Fixed serious DeleteChars bug that would leave the document tree
10484             broken
10485           - Improved DumpTree with several logic checks to detect broken
10486             document trees
10487           - Removed debug lines
10488           - Fixed Caret.WordForward/WordBack moving code, now always also 
10489             updates caret.tag (fixes crash when word-selecting across tag
10490             boundaries via keyboard)
10491           - Added Insert() method for inserting multiline text into documents
10492           - Fixed DeleteChars() calculation errors that would cause a broken
10493             tag chain with multiple tag lines
10494           - DeleteChars() no longer crashes on multi-tag lines if not all tags
10495           - Split() no longer moves caret if split is at caret location
10496           - ReplaceSelection() now updates the cursor and re-displays it
10497           - ReplaceSelection() now uses new Insert() method to avoid code
10498             duplication
10499           - FormatText() can now handle formatting partial lines
10500         * TextBoxBase.cs:
10501           - Append now uses new TextControl.Insert() method (this avoids 
10502             duplicate code)
10503           - Implemented Ctrl-X (Cut) (
10504           - Implemented Ctrl-C (Copy)
10505           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
10506             regeneration when pasting text; roundtripping Copy&Paste within
10507             edit control still fails due to some calculation bugs in GenerateRTF)
10508           - The Delete key will now remove the current selection if it is visible
10509         * TextBox.cs: Removed debug lines
10510         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
10511           driver to be initialized and can't therefore be done via a static ctor)
10512
10513 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
10514
10515         * TextControl.cs: Added backend code for finding char arrays and strings
10516         * TextBoxBase.cs:
10517           - Added mouse wheel scroll support
10518           - Added support for VScroll and HScroll events
10519         * RichTextBox.cs:
10520           - Implemented all seven Find() variants
10521           - Implemented GetCharFromPosition()
10522           - Implemented GetCharIndexFromPosition()
10523           - Implemented GetLineFromIndex()
10524           - Implemented GetPositionFromCharIndex();
10525           - Implemented SaveFile for PlainText and UnicodeText
10526           - Fixed set_Font, now setting a new font applies that font to
10527             the whole document
10528           - Implemented generic Document to RTF converter
10529           - Implemented SaveFile for RichText format (still missing unicode
10530             conversion for non-ansi chars)
10531           - Implemented get_Rtf
10532           - Implemented get_SelectedRtf
10533
10534 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
10535
10536         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
10537           to allow any captures to be released before triggering OnClick. This
10538           way a click handler may capture the mouse without interference.
10539         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
10540           This way we send them even though X may not allow a grab (if the window
10541           isn't visible, for example)
10542
10543 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
10544
10545         * DataGridViewRowEventArgs.cs: DataGridView implementation
10546         * DataGridViewElement.cs: DataGridView implementation
10547         * DataGridViewComboBoxCell.cs: DataGridView implementation
10548         * DataGridViewDataErrorContexts.cs: DataGridView implementation
10549         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
10550         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
10551         * ImageLayout.cs: DataGridView implementation
10552         * DataGridViewComboBoxColumn.cs: DataGridView implementation
10553         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
10554         * DataGridViewSelectionMode.cs: DataGridView implementation
10555         * IDataGridViewEditingControl.cs: DataGridView implementation
10556         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
10557         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
10558         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
10559         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
10560         * DataGridViewColumnSortMode.cs: DataGridView implementation
10561         * DataGridView.cs: DataGridView implementation
10562         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
10563         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
10564         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
10565         * Padding.cs: DataGridView implementation
10566         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
10567         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
10568         * DataGridViewRowEventHandler.cs: DataGridView implementation
10569         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
10570         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
10571         * DataGridViewButtonCell.cs: DataGridView implementation
10572         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
10573         * DataGridViewEditMode.cs: DataGridView implementation
10574         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
10575         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
10576         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
10577         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
10578         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
10579         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
10580         * DataGridViewCellEventHandler.cs: DataGridView implementation
10581         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
10582         * DataGridViewCellStyleConverter.cs: DataGridView implementation
10583         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
10584         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
10585         * DataGridViewColumnEventArgs.cs: DataGridView implementation
10586         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
10587         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
10588         * QuestionEventArgs.cs: DataGridView implementation
10589         * IDataGridViewEditingCell.cs: DataGridView implementation
10590         * DataGridViewTriState.cs: DataGridView implementation
10591         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
10592         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
10593         * DataGridViewColumnCollection.cs: DataGridView implementation
10594         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
10595         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
10596         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
10597         * DataGridViewColumn.cs: DataGridView implementation
10598         * DataGridViewCellBorderStyle.cs: DataGridView implementation
10599         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
10600         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
10601         * DataGridViewRow.cs: DataGridView implementation
10602         * DataGridViewImageCellLayout.cs: DataGridView implementation
10603         * DataGridViewImageCell.cs: DataGridView implementation
10604         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
10605         * DataGridViewCheckBoxCell.cs: DataGridView implementation
10606         * DataGridViewHeaderCell.cs: DataGridView implementation
10607         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
10608         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
10609         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
10610         * DataGridViewTextBoxColumn.cs: DataGridView implementation
10611         * QuestionEventHandler.cs: DataGridView implementation
10612         * DataGridViewCellStyleScopes.cs: DataGridView implementation
10613         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
10614         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
10615         * DataGridViewCell.cs: DataGridView implementation
10616         * DataGridViewCellEventArgs.cs: DataGridView implementation
10617         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
10618         * DataGridViewCellStyle.cs: DataGridView implementation
10619         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
10620         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
10621         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
10622         * TextFormatFlags.cs: DataGridView implementation
10623         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
10624         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
10625         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
10626         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
10627         * DataGridViewButtonColumn.cs: DataGridView implementation
10628         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
10629         * HandledMouseEventArgs.cs: DataGridView implementation
10630         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
10631         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
10632         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
10633         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
10634         * DataGridViewRowCollection.cs: DataGridView implementation
10635         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
10636         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
10637         * DataGridViewHitTestType.cs: DataGridView implementation
10638         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
10639         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
10640         * DataGridViewColumnEventHandler.cs: DataGridView implementation
10641         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
10642         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
10643         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
10644         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
10645         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
10646         * DataGridViewContentAlignment.cs: DataGridView implementation
10647         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
10648         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
10649         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
10650         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
10651         * DataGridViewPaintParts.cs: DataGridView implementation
10652         * DataGridViewCellCollection.cs: DataGridView implementation
10653         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
10654         * DataGridViewImageColumn.cs: DataGridView implementation
10655         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
10656         * DataGridViewElementStates.cs: DataGridView implementation
10657         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
10658         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
10659         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
10660         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
10661         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
10662         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
10663         * DataGridViewRowHeaderCell.cs: DataGridView implementation
10664         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
10665         * DataGridViewTextBoxCell.cs: DataGridView implementation
10666         * DataGridViewBand.cs: DataGridView implementation
10667         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
10668         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
10669         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
10670         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
10671         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
10672         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
10673         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
10674         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
10675         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
10676         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
10677         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
10678
10679 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
10680
10681         * ThemeWin32Classic.cs: 
10682           - Draw the outside focus rectangle around buttons
10683           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
10684             doesn't use end caps for every dash of a line anymore. This
10685             workaround ignores the forecolor.
10686
10687 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
10688
10689         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
10690           endian safe.
10691
10692 2005-11-07  Jackson Harper  <jackson@ximian.com>
10693
10694         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
10695
10696 2005-11-07  Jackson Harper  <jackson@ximian.com>
10697
10698         * ScrollableControl.cs: Calculate the maximum and change vars
10699         (more) correctly so that scrollbars appear as a sensible size.
10700
10701 2005-11-04  Jackson Harper  <jackson@ximian.com>
10702
10703         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
10704         collection.
10705         * TreeView.cs: When the tree is sorted null out the top_node so
10706         that it is recalculated.
10707         - Use dotted lines instead of dashed lines to match MS better.
10708
10709 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
10710
10711         * ListView.cs: 
10712           - Implements key search for items. Useful when browsing files with FileDialog
10713           - When changing view mode or when clear the items reset scrollbar positions
10714
10715 2005-11-04  Jackson Harper  <jackson@ximian.com>
10716
10717         * CurrencyManager.cs: Implement the MetaDataChanged event, the
10718         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
10719         as to what the method may do as there is no real way of creating a
10720         derived CurrencyManager and calling the method. 
10721
10722 2005-11-03  Jackson Harper  <jackson@ximian.com>
10723
10724         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
10725         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
10726         method which seems to just be used internally to refresh the tabs.
10727
10728 2005-11-03  Jackson Harper  <jackson@ximian.com>
10729
10730         * TabControl.cs: Implement the remove method. Fix some broken
10731         comments.
10732
10733 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10734
10735         * DateTimePicker.cs:
10736           - Added missing DateTimePickerAccessibleObject class
10737           - Added missing events
10738           - Added OnFontChanged method
10739         * Form.cs: Added missing attributes
10740         * TreeView.cs: Added missing attributes
10741
10742 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
10743
10744         * GridItemCollection.cs: Fix signatures
10745
10746 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10747
10748         * XplatUI.cs: Updated build rev/date
10749         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
10750           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
10751         * Application.cs: Trigger context-specific ExitThread events
10752
10753 2005-11-03  Jackson Harper  <jackson@ximian.com>
10754
10755         * Menu.cs:
10756         * MainMenu.cs:
10757         * GridTableStylesCollection.cs:
10758         * Timer.cs:
10759         * TabPage.cs:
10760         * HelpProvider.cs:
10761         * StatusBar.cs:
10762         * MonthCalendar.cs: Signature fixes
10763
10764 2005-11-03  Jackson Harper  <jackson@ximian.com>
10765
10766         * TreeNodeCollection.cs: Remove should not be virtual.
10767         * TreeView.cs: Implement the last of the missing methods.
10768
10769 2005-11-03  Jackson Harper  <jackson@ximian.com>
10770
10771         * TreeNodeConverter.cs: Implement to get off my class-status back.
10772
10773 2005-11-03  Jackson Harper  <jackson@ximian.com>
10774
10775         * TreeView.cs: Hookup the bits for drag and drop.
10776         * TreeNode.cs: Don't cache the tree_view or index anymore, now
10777         that nodes can be moved from tree to tree easily this just causes
10778         all sorts of problems.
10779         * TreeNodeCollection: Don't need to give treenodes an index and
10780         treeview anymore when they are added, these are computed on the
10781         fly. Also make sure to remove a node before its added.
10782
10783 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10784
10785         * TextControl.cs:
10786           - Added CaretSelection enum
10787           - Added comparison methods to Marker struct, makes selection code
10788             more readable
10789           - Added SelectionStart and SelectionEnd as 'moveable' location for
10790             the CaretDirection enum and handler
10791           - Added selection_prev variable to track optimized invalidation for
10792             word and line selection
10793           - Added SelectionVisible property (returns true if there is a valid 
10794             selection)
10795           - Switched CaretHasFocus to only display the caret if there is no
10796             visible selection
10797           - Avoiding StringBuilder.ToString to retrieve a single char, instead
10798             using the direct character index; should be much faster
10799           - Added various conditional debug statements
10800           - Fixed invalidation calculation for selection ranges
10801           - Added ExpandSelection() method to support word and line selection
10802           - Switched SetSelectionToCaret to use new Marker compare overloads
10803           - Added central IsWordSeparator() method to determine word 
10804             separators/whitespace and FindWordSeparator() to streamline common
10805             usage of IsWordSeparator()
10806         * TextBoxBase.cs:
10807           - Removed unneeded grabbed variable, it was just mirroring
10808             Control.Capture
10809           - No longer firing OnTextChanged event when Text setter is called,
10810             since the base will fire the event for us
10811           - Added handling of Ctrl-Up/Down selection
10812           - Added handling of Shift-Cursorkey selection
10813           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
10814             words
10815           - Added handling of Shift and Ctrl-Shift-Home/End selection
10816           - Removed some debug output
10817           - Added handling for single/double/tripple-click to place caret/
10818             select word/select line respectively (Fixes bug #76031)
10819           - Added support for drag expansion of word/line selection
10820         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
10821           current selection
10822
10823 2005-11-02  Jackson Harper  <jackson@ximian.com>
10824
10825         * X11Dnd.cs: If the drag is going to and from a MWF window just
10826         copy the data instead of sending it out through the X Selection
10827         mechanism.
10828
10829 2005-11-02  Jackson Harper  <jackson@ximian.com>
10830
10831         * X11Dnd.cs:
10832         * XplatUIX11.cs: When in a drag we don't want motion notify
10833         messages to get passed on to the other controls. This prevents
10834         mouse move messages from showing up in the drag source.
10835
10836 2005-11-02  Jackson Harper  <jackson@ximian.com>
10837
10838         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
10839         the correct button is release to end a drag.
10840         * XplatUIX11.cs: Make the button state internal so the drag system
10841         can access it.  Dragging needs to know about all button releases,
10842         not just left button.
10843
10844 2005-11-02  Miguel de Icaza  <miguel@novell.com>
10845
10846         * Form.cs (Icon): If the icon is null, reset the icon to the
10847         default value. 
10848
10849         * Cursor.cs: When writing the AND-mask bitmap do not include the
10850         number of colors, but hardcode those to two (black and white),
10851         fixes the loading of color cursors (Paint Dot Net).
10852
10853         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
10854         turn off autoscaling.
10855
10856         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
10857
10858 2005-11-02  Jackson Harper  <jackson@ximian.com>
10859
10860         * X11Dnd.cs: Make sure to send a status message if the pointer
10861         enters a control that can not accept a drop, otherwise the cursor
10862         isn't updated correctly. Also tried to compress the lines of code
10863         a bit.
10864
10865 2005-11-02  Jackson Harper  <jackson@ximian.com>
10866
10867         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
10868         set actions correctly.  This isn't perfect as XDND and win32 have
10869         some differences on how you allow actions. I'll clear this up by
10870         adding a path for drag from MWF to MWF windows.
10871         * XplatUIX11.cs: Hook into the dnd system.
10872
10873 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
10874
10875         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
10876         previously shown but they are no longer need it. Very obvious when 
10877         browsing files with FileDialog.
10878
10879 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
10880
10881         * Control.cs: We always need to call OnPaintBackground. We pretty much
10882           ignore AllPaintingInWmPaint and always do the painting there, whether 
10883           it's set or not, since we always ignore the WM_ERASEBKGND message 
10884           (which we don't generate on X11). This fixes #76616.
10885         * Panel.cs: Removed unneeded background painting. This happens properly
10886           in Control.cs already
10887
10888 2005-10-31  Mike Kestner  <mkestner@novell.com>
10889
10890         * Menu.cs: Add items to collection before setting their index.
10891         * MenuItem.cs : add range checking with ArgumentException like MS.
10892         [Fixes #76510]
10893
10894 2005-10-31  Jackson Harper  <jackson@ximian.com>
10895
10896         * ListBox.cs: Invalidate if the area is visible at all not just
10897         contained in the visible rect. Fixes unselection of semi visible
10898         items.
10899
10900 2005-10-31  Jackson Harper  <jackson@ximian.com>
10901
10902         * Control.cs: Consistently name the dnd methods. Make them
10903         internal so we can override them to match some MS behavoir
10904         internally.
10905         * Win32DnD.cs: Use the new consistent names.
10906
10907 2005-10-31  Jackson Harper  <jackson@ximian.com>
10908
10909         * TreeView.cs: Don't draw the selected node when we lose focus.
10910
10911 2005-10-31  Jackson Harper  <jackson@ximian.com>
10912
10913         * X11Dnd.cs: We still need to reset the state even though a full
10914         reset isn't being done, otherwise status's still get sent all over
10915         the place.
10916
10917 2005-10-31  Jackson Harper  <jackson@ximian.com>
10918
10919         * Control.cs: Make the dnd_aware flag internal so the dnd
10920         subsystem can check it. Catch exceptions thrown in dnd handlers to
10921         match MS behavoir.
10922         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
10923         * X11Dnd.cs: Handle null data in the converters. Set the XDND
10924         version when sending a XdndEnter. Use the control/hwnd dnd_aware
10925         flags to reduce the number of dnd enters/status's sent.
10926
10927 2005-10-31  Jackson Harper  <jackson@ximian.com>
10928
10929         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
10930
10931 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
10932
10933         * PictureBox.cs: Fixes 76512
10934
10935 2005-10-28  Jackson Harper  <jackson@ximian.com>
10936
10937         * X11Dnd.cs: Early implementation to support winforms being a drag
10938         source for data on X11. Also restructured the converters so they
10939         can go both ways now.
10940         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
10941         
10942 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
10943
10944         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
10945           clipboard requests
10946
10947 2005-10-27  Jackson Harper  <jackson@ximian.com>
10948
10949         * TreeNode.cs: Implement serialization so my DnD examples will work.
10950
10951 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
10952
10953         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
10954           TreeView.cs: Don't dispose objects that are not owned.
10955           
10956 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
10957
10958         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
10959           should retrieve the current cursor and report that, but XplatUI
10960           doesn't (yet) have an interface for that (and I'm not sure I even
10961           can, on X11)
10962         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
10963           until any message loop processing is done (and the WM_SETCURSOR
10964           replaces the cursor to the proper one)
10965         * XplatUIX11.cs: 
10966           - Fixed override behaviour, we can't set the cursor globally on X11, 
10967             just for our windows.
10968           - Invalidating the System.Drawing X11 display handle when we are
10969             shutting down
10970         * Control.cs: Fix to make csc happy
10971
10972 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
10973
10974         * TextBoxBase.cs: 
10975           - get_Text: Add last line (without trailing newline) to returned
10976             value (Fixes 76212)
10977           - get_TextLength: Count last line in returned length
10978           - ToString: Call Text property instead of duplicating code
10979
10980 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
10981
10982         * ImageList.cs: Dispose ImageAttributes objects.
10983
10984 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
10985
10986         * ImageList.cs: Use attribute constructors with less arguments where
10987           possible.
10988
10989 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
10990
10991         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
10992           Use typeof instead of strings when assembly is referenced. Added
10993           some more comments.
10994
10995 2005-10-21  Jackson Harper  <jackson@ximian.com>
10996
10997         * ListView.cs: Raise a double click event. Also tried to somewhat
10998         fix when the selectedindexchanged event is raised. Its still
10999         broken though.
11000
11001 2005-10-21  Jackson Harper  <jackson@ximian.com>
11002
11003         * TreeView.cs: New method to invalidate the plus minus area of a
11004         node without invalidating the whole node (maybe this can be used
11005         in some more places).
11006         * TreeNodeCollection.cs: When adding to an empty node we need to
11007         invalidate its plus minus area so the little block shows up.
11008         
11009 2005-10-21  Jackson Harper  <jackson@ximian.com>
11010
11011         * TreeView.cs: Make sure that when we invalidate a node the bounds
11012         are big enough to cover the selected box and the focus
11013         rectangle. Use a different colour for the lines connecting nodes
11014         so they show up with all themes.
11015
11016 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
11017
11018         * NativeWindow.cs: Don't call anything that could call into the driver,
11019           we might be on a different thread.
11020
11021 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
11022
11023         * Control.cs(Dispose): Since Dispose might run on a different thread,
11024           make sure that we call methods that could call into the driver via
11025           invoke, to avoid thread issues
11026
11027 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
11028
11029         * XplatUI.cs: Removed finalizer
11030         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
11031           not allowing to be called on the finalizer thread.
11032
11033 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
11034
11035         * ImageList.cs:
11036           - Reverted r51889 and r51891.
11037           - Added ImageListItem class that stores unmodified image items and image
11038             properties required to create list images until handle is created.
11039           - Added AddItem and moved image creation logic to AddItemInternal.
11040           - Added CreateHandle method that creates images based on unmodified items.
11041           - Added DestroyHandle that changes state to store unmodified items.
11042           - Add and AddStrip methods no more create handle.
11043           - ReduceColorDepth has no return value.
11044           - Dispose destroys handle.
11045           - Modified other methods to reflect the above changes.
11046           - Implemented key support.
11047           - Added profile 2.0 members and attributes.
11048           - Added private Reset and ShouldSerialize methods that provide the same
11049             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
11050             them as they are private.
11051           - Added some more comments about implementation details.
11052
11053 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11054
11055         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
11056
11057 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11058
11059         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
11060
11061 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
11062
11063         * DataGridDrawingLogic.cs: Fixes column hit calcultation
11064         * DataGridColumnStyle.cs: Remove debug message
11065
11066 2005-10-20  Jackson Harper  <jackson@ximian.com>
11067
11068         * TreeView.cs: We can always get input keys regardless of whether
11069         or not editing is enabled. They are used for navigation.
11070
11071 2005-10-20  Jackson Harper  <jackson@ximian.com>
11072
11073         * TreeNode.cs: Use the viewport rect for determining if a node
11074         needs to be moved for visibility. Don't use Begin/End edit. This
11075         calls a full refresh when its done.
11076         * TreeView.cs: New SetBottom works correctly.  Make the viewport
11077         rect property internal so the treenodes can see it. When clicking
11078         on a node we need to ensure that its visible because it might just
11079         be partly visible when clicked.
11080
11081 2005-10-20  Jackson Harper  <jackson@ximian.com>
11082
11083         * TreeNodeCollection.cs: Remove debug code.
11084
11085 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
11086
11087         * Datagrid.cs: Implements column sorting in Datagrid
11088         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
11089
11090 2005-10-20  Jackson Harper  <jackson@ximian.com>
11091
11092         * TreeNodeCollection.cs: Remove items properly. Update the correct
11093         area after removing them.
11094
11095 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
11096
11097         * Datagrid.cs: Should not call base.OnPaintBackground
11098
11099 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
11100
11101         * XplatUIX11.cs (GetMessage):
11102           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
11103             window instead of client window
11104           - Now properly calculates NC_xBUTTONUP message coordinates
11105           - ScreenToMenu now properly calculates it's coordinates of whole 
11106             window, since menus are in the whole window, not in the client
11107             window
11108           - Added WholeToScreen coordinate translation method
11109
11110 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
11111
11112         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
11113           want to return a message, loop back to the beginning of the function
11114           and grab the next real message to process instead.
11115
11116 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
11117
11118         * Splitter.cs: Properly set limits if no filler control is used
11119
11120 2005-10-19  Jackson Harper  <jackson@ximian.com>
11121
11122         * ColorDialog.cs: Don't show the help button if it is not enabled
11123         instead of disabling it (this is what MS does). Don't create the
11124         panel until the dialog is run, otherwise the vars (such as
11125         ShowHelp) are not set yet.
11126
11127 2005-10-19  Jackson Harper  <jackson@ximian.com>
11128
11129         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
11130         are reduced when adding nodes.
11131         * TreeNode.cs:
11132         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
11133         tree.
11134         
11135 2005-10-19  Jackson Harper  <jackson@ximian.com>
11136
11137         * FolderBrowserDialog.cs: End editing our treeview so the window
11138         actually gets refreshed.
11139
11140 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
11141
11142         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
11143           Obsoleted handling of WM_ERASEBKGND, now always draws our background
11144           inside of WM_PAINT
11145
11146 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
11147
11148         * MenuAPI.cs: Returns after Hidding window
11149         * XplatUIX11.cs: Added TODO found while debugging menu issues
11150
11151 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
11152
11153         * XplatUIX11.cs: Do not re-map the whole window when it's size
11154           becomes non-zero unless it's supposed to be actually visible
11155
11156 2005-10-18  Jackson Harper  <jackson@ximian.com>
11157
11158         * TreeView.cs: We don't need to keep a count anymore.
11159         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
11160         use the Grow method.
11161
11162 2005-10-18  Jackson Harper  <jackson@ximian.com>
11163
11164         * TreeNodeCollection.cs: Insert is not supported on arrays, so
11165         implement it manually here.
11166
11167 2005-10-18  Jackson Harper  <jackson@ximian.com>
11168
11169         * ImageList.cs: Dont kill the list when the colour depth is
11170         changed, just change the colour depth of all the images.
11171         - Same goes for setting the image size. Just resize them all
11172         instead of killing the list softly.
11173
11174 2005-10-18  Jackson Harper  <jackson@ximian.com>
11175
11176         * Control.cs: Don't invalidate empty rectangles.
11177
11178 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
11179
11180         * ListViewItem.cs:
11181           - Adds checked item to the Checked/Item lists (where empty before)
11182           - Do not add items to the Selected lists if they are already present
11183         * ListView.cs:
11184           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
11185           - When deleting items make sure that we delete them for the Selected
11186           and Checked list also.
11187
11188 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
11189
11190         * Label.cs: Dispose objects no longer used
11191         * ThemeWin32Classic.cs: Dispose objects no longer used
11192
11193 2005-10-18  Jackson Harper  <jackson@ximian.com>
11194
11195         * TabControl.cs: Don't refresh the whole control when the tabs are
11196         scrolled, we just need to refresh the tab area.
11197
11198 2005-10-17  Jackson Harper  <jackson@ximian.com>
11199
11200         * XplatUIX11.cs: Compress code a little bit. Only calculate the
11201         after handle when we need it.
11202
11203 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
11204
11205         * Control.cs: When the parent size changes, recalculate anchor 
11206           positions. Partial fix for #76462
11207
11208 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
11209
11210         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
11211           drawn. Fixes #76462
11212
11213 2005-10-17  Jackson Harper  <jackson@ximian.com>
11214
11215         * MonthCalendar.cs: Don't create the numeric up down until our
11216         handle is created. Otherwise our handle is created in the
11217         constructor and we don't know if we are a WS_CHILD or WS_POPUP
11218         yet.
11219
11220 2005-10-17  Jackson Harper  <jackson@ximian.com>
11221
11222         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
11223         correctly.
11224
11225 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
11226         * TreeNode.cs : small logical fix (was using local var instead of field)
11227         
11228 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
11229
11230         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
11231
11232 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
11233
11234         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
11235
11236 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
11237
11238         * Control.cs: 
11239           - Re-implemented anchoring code. My first version was really broken.
11240             This fixes bug #76033. Unlike the previous implementation we will
11241             no longer have round errors since all numbers are calculated from
11242             scratch every time. Removed various anchor-related obsolete vars.
11243           - InitLayout no longer causes layout event firing and layout to be 
11244             performed
11245
11246 2005-10-16  Jackson Harper  <jackson@ximian.com>
11247
11248         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
11249         which was broken).
11250
11251 2005-10-16  Jackson Harper  <jackson@ximian.com>
11252
11253         * TabControl.cs: Remove debug code.
11254
11255 2005-10-16  Jackson Harper  <jackson@ximian.com>
11256
11257         * XEventQueue.cs: Increase the default queue size (very simple
11258         apps needed to grow the queue).
11259         * Hwnd.cs: No finalizer so we don't need to suppress
11260         finalization. Compute the invalid area manually so a new rectangle
11261         does not newto be created.
11262         * ScrollableControl.cs: Don't set any params (otherwise visibility
11263         isn't set correctly).
11264         * MdiChildContext.cs: New constructor takes the mdi parent so it
11265         doesn't have to be computed and avoids a crash on windows. Draw
11266         the window icon properly, and allow the text to be seen.
11267         * Form.cs: Use new MdiChildContext constructor. Make sure the
11268         child context isn't null in wndproc.
11269         * TabControl.cs: Don't set focus, this is muddling keyboard
11270         behavoir. Expand the tab rows when a window size increase will
11271         allow extra tabs to be seen. Don't allow tabs smaller than the
11272         width of a window to be scrolled out of view.
11273         * TreeNode.cs:
11274         * TreeView.cs: Use measure string to calculate a nodes width, the
11275         width is cached and only updated when the text or the font is
11276         changed. Don't check for expand/collapse clicks on the first level
11277         nodes if root lines are disabled.
11278         
11279 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
11280
11281         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
11282
11283 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
11284
11285         * DataGridBoolColumn.cs: fixes warning
11286
11287 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
11288
11289         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
11290         to match more to match more precisely the MS Net behavior
11291
11292 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
11293
11294         * Hwnd.cs: Added field to track if window is mapped
11295         * XplatUIX11.cs: 
11296           - Unmap windows if they become 0-size, re-map when 
11297             they are >0 again; fixes #76035
11298           - Re-set our error handler after initializing X11Desktop
11299             to override any error handlers Gtk or whatever was called
11300             may have set.
11301
11302 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
11303
11304         * CheckedListBox.cs: Removed unused vars
11305         * ListView.cs: Fixed signatures
11306         * RichTextBox.cs: Removed unused vars
11307         * TextBoxBase.cs: Removed unused vars
11308         * XplatUIWin32.cs: Removed unused vars
11309         * XplatUIX11.cs: Removed unused vars
11310         * XplatUI.cs: Updated version and date to latest published
11311
11312 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
11313
11314         * Cursor.cs: Added private .ctor to work around a bug in
11315           resourceset (Thanks to Geoff Norton for the help on this)
11316         * SplitterEventArgs.cs: Made fields accessible so we don't
11317           waste boatloads of objects and can reuse the same one
11318           in Splitter
11319         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
11320           any captions and borders when generating screen coordinates
11321         * Splitter.cs: Reimplemented control, now fully complete, uses
11322           rubberband drawing, supports and obeys all properties, has
11323           proper cursors
11324
11325 2005-10-13  Miguel de Icaza  <miguel@novell.com>
11326
11327         * Form.cs (Form): Setup default values for autoscale and
11328         autoscale_base_size;  Make these instance variables, not static
11329         variables. 
11330
11331         (OnLoad): on the first load, adjust the size of the form.
11332
11333 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
11334
11335         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
11336           width argument to DrawReversibleRectangle()
11337         * XplatUIWin32.cs, XplatUIX11.cs: 
11338           - Implemented width for DrawReversibleRectangle()
11339           - Added logic to DrawReversibleRectangle that recognizes a zero
11340             width or height and only draws a line in that situation
11341         
11342 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
11343
11344         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
11345         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
11346         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
11347           method (it uses our FosterParent window to get a graphics context)
11348
11349 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
11350
11351         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
11352           and SetWindowBackground methods
11353         * Control.cs:
11354           - Setting proper ControlStyles
11355           - We no longer call XplatUI.SetWindowBackground and XplatUI.
11356             EraseWindowBackground, instead we draw the window background
11357             ourselves in PaintControlBackground. This behaviour is
11358             required to match MS, where, when OnPaintBackground is not
11359             called, the background is not drawn.
11360           - Removed unneeded Refresh() in set_Text
11361         * Hwnd.cs: Dropped the ErasePending support. No longer needed
11362         * XplatUIX11.cs:
11363           - Created DeriveStyles method to translate from CreateParams to
11364             FormBorderStyle and TitleStyle, also handles BorderStyle (which
11365             matches FormBorderStyle enum values)
11366           - Consolidated SetHwndStyles and CalculateWindowRect border/title
11367             style calculations into single DeriveStyles method
11368           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
11369             from redrawing the whole window on any resize or expose.
11370           - Fixed CreateWindow usage of SetWindowValuemask. Before not
11371             all styles were applied to our whole/client window appropriately
11372           - Removed EraseWindowBackground() and SetWindowBackground() methods
11373           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
11374             no longer clear/redraw the background through X
11375           - Removed handling of erase_pending bit, we have no use for it (or
11376             so it seems)
11377         * XplatUIOSX.cs:
11378           - Removed generation and handling of WM_ERASEBKGND message
11379           - Removed EraseWindowBackground() and SetWindowBackground() methods
11380           - Removed handling of hwnd.ErasePending flag
11381         * XplatUIWin32.cs:
11382           - Removed EraseWindowBackground() and SetWindowBackground() methods
11383           - We no longer call EraseWindowBackground on PaintEventStart, we 
11384             ignore the fErase flag, erasing is handled in Control in the
11385             background handler
11386         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
11387           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
11388           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
11389           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
11390           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
11391           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
11392           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
11393
11394 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
11395
11396         * PropertyGrids.cs: Get sub properties
11397         * PropertyGridView.cs: Fix drawing code
11398
11399 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
11400
11401         * ListBox.cs: Fixes 76383
11402
11403 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
11404
11405         * DataGridTextBoxColumn.cs: Sets location and size before attachment
11406         * ThemeWin32Classic.cs: Fixes border drawing and calculations
11407         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
11408
11409
11410 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
11411
11412         * ComboBox.cs: Fixes border drawing
11413
11414 2005-10-10  Miguel de Icaza  <miguel@novell.com>
11415
11416         * MimeIcon.cs: Ignore errors if the file can not be read.
11417
11418 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
11419
11420         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
11421          - Fixed border calculations
11422          - Fixed horizontal scrolling in single column listboxes
11423          - Fixed drawing issues
11424
11425 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
11426
11427         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
11428           FormBorderStyle enum
11429         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
11430           code to determine FormBorderStyles from CreateParams
11431         * Form.cs:
11432           - Fixed bug where we'd set the wrong window styles if we were
11433             not creating an MDI window
11434           - Added call to XplatUI.SetBorderStyle when form borders are set
11435         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
11436         * Hwnd.cs:
11437           - Removed obsolete edge style
11438           - Switched from BorderStyle to FormBorderStyle
11439         
11440 2005-10-10  Jackson Harper  <jackson@ximian.com>
11441
11442         * Form.cs: Use the property to get the window handle instead of
11443         accessing it directly. Prevents a null reference exception.
11444
11445 2005-10-10  Jackson Harper  <jackson@ximian.com>
11446
11447         * TreeView.cs: Don't adjust the rect given to DrawString now that
11448         our libgdiplus draws correctly.
11449
11450 2005-10-08  Jackson Harper  <jackson@ximian.com>
11451
11452         * TreeView.cs: Don't try to find the clicked on node if there are
11453         no nodes in the tree.
11454
11455 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
11456
11457         * RichTextBox.cs:
11458
11459           restore
11460
11461 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
11462
11463         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
11464           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
11465           ErrorProvider.cs:
11466           Use ResPool for brushes and dispose System.Drawing objects that
11467           are not used anymore.
11468
11469 2005-10-07  Jackson Harper  <jackson@ximian.com>
11470
11471         * MdiChildContext.cs: Use the new borders instead of drawing them
11472         ourselves.
11473
11474 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
11475
11476         * Calling UpdateBounds after changing the window's BorderStyle 
11477         since the style can change the ClientSize
11478
11479 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11480
11481         * Control.cs: Made PaintControlBackground virtual
11482         * Panel.cs: Overriding PaintControlBackground instead of using paint
11483           event; paint event method was interfering with 'real' users of the
11484           event.
11485
11486 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
11487
11488         * ThemeWin32Classic.cs: remove border drawing since it is handled
11489         by the base control class now and was causing double border drawing.
11490
11491 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11492
11493         * Panel.cs: Redraw our background on paint. Not a pretty solution,
11494           but it does seem to match MS behaviour. This fixes bug #75324
11495
11496 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11497
11498         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
11499           somewhat hackish looking
11500
11501 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
11502
11503         * TextBoxBase.cs:
11504           - We now accept Enter even if AcceptEnter is false, if the containing
11505             form does not have an AcceptButton configured (fixes bug #76355)
11506           - Calculations are now fixed to no longer use Width/Height, but
11507             ClientSize.Width/Height, since we now support borders (this was
11508             a result of fixing borders and therefore bug #76166)
11509           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
11510             true (fixes bug #76354)
11511         
11512 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11513
11514         * Control.cs: 
11515           - Defaulting BorderStyle and setting it in XplatUI when our window 
11516             is created
11517           - Added enum check to InternalBorderStyle setter
11518         * XplatUIX11.cs: 
11519           - Added drawing of window borders
11520           - Now properly calculates WM decorations offset for toplevel 
11521             windows (fixes bug #74763)
11522         * XplatUIWin32.cs: 
11523           - Implemented BorderStyles for windows (we're letting win32 draw 
11524             the border for us)
11525           - Fixed the signature for SetWindowLong
11526         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
11527           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
11528           setting borders
11529         * UpDownBase.cs: Remove drawing of borders, this is handled by
11530           the driver, outside the client area
11531         * ListView.cs: Removed bogus border calculations. The control should
11532           be oblivious to borders, since those are not part of the client
11533           area. 
11534         * X11DesktopColors.cs: Commented out (currently) unneeded variables
11535         * ThemeWin32Classic.cs: Removed border calculations from ListView 
11536           drawing code
11537
11538 2005-10-06  Jackson Harper  <jackson@ximian.com>
11539
11540         * MdiChildContext.cs: Clear out the old virtual position remove
11541         all the unneeded calls to CreateGraphics.
11542
11543 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
11544
11545         * TextControl.cs: Use proper color for highlighted text; fixes #76350
11546
11547 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
11548
11549         * Form.cs: 
11550           - Added loading and setting of our new default icon
11551           - Only set icon if window is already created
11552
11553 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
11554
11555         * Label.cs:
11556           - Do not explicitly set the foreground and background colors, to
11557             allow inheriting from parents (fixes #76302)
11558           - Use Control's InternalBorderStyle property to deal with borders
11559
11560 2005-10-06  Jackson Harper  <jackson@ximian.com>
11561
11562         * MdiChildContext.cs: Use the new xplatui function to draw a
11563         reversible rect.
11564
11565 2005-10-06  Jackson Harper  <jackson@ximian.com>
11566
11567         * Form.cs: Add the parent before creating the child context cause
11568         we need the parent when setting up the child.
11569
11570 2005-10-06  Jackson Harper  <jackson@ximian.com>
11571
11572         * FolderBrowserDialog.cs: redo the tree population code so a
11573         second thread isn't used. Should be a lot faster and more stable
11574         now.
11575
11576 2005-10-05  Jackson Harper  <jackson@ximian.com>
11577
11578         * TreeView.cs: There are no expand/collapse boxes if the node has
11579         no children.
11580
11581 2005-10-05  Jackson Harper  <jackson@ximian.com>
11582
11583         * X11DesktopColors.cs: Get menu colours for the gtk theme.
11584
11585 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
11586
11587         * FileDialog.cs: Fix InitialDirectory
11588
11589 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
11590
11591         * ComboBox.cs:
11592                 - Fixes changing between styles
11593                 - Fixes simple mode
11594                 - Fixes last item crashing when navigating with keyboard
11595
11596 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
11597
11598         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
11599
11600 2005-10-05  Jackson Harper  <jackson@ximian.com>
11601
11602         * TreeView.cs: If updating the root node do a full refresh.
11603         * TreeNode.cs: The root node should be expanded by default. Also
11604         added a utility prop to tell if we are the root node.
11605         * TreeNodeCollection.cs: Only refresh if the node we are being
11606         added to is expanded. Also added a comment on a potential
11607         optimization.
11608         
11609 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
11610
11611         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
11612           in dispose method. Fixes #76330
11613
11614 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
11615
11616         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
11617
11618                 - Implements vertical and horizontal scrolling using XplatUI
11619                 - Fixes keyboard navagation
11620                 - Fixes EnsureVisible
11621                 - Drawing fixes
11622                 - Handles and draws focus properly
11623
11624
11625 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
11626
11627         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
11628           Create handle. NET_2_0: Destroy handle when value is null.
11629
11630 2005-10-03  Jackson Harper  <jackson@ximian.com>
11631
11632         * ScrollBar.cs: My last scrollbar patch was broken. This is a
11633         revert and a new patch to prevent the thumb from refreshing so
11634         much.
11635
11636 2005-10-02  Jackson Harper  <jackson@ximian.com>
11637
11638         * ScrollBar.cs: Don't update position if it hasn't actually
11639         changed. This occurs when you hold down the increment/decrement
11640         buttons and the thumb gets to the max/min.
11641
11642 2005-10-01  Jackson Harper  <jackson@ximian.com>
11643
11644         * Form.cs:
11645         * MdiChildContext.cs:
11646         * MdiClient.cs: Implement ActiveMdiChild in Form.
11647
11648 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
11649
11650         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
11651
11652 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
11653
11654         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
11655           be found
11656
11657 2005-09-30  Jackson Harper  <jackson@ximian.com>
11658
11659         * ListBox.cs: Don't do a full refresh unless some data has
11660         actually changed.
11661
11662 2005-09-30  Jackson Harper  <jackson@ximian.com>
11663
11664         * TreeView.cs: Make sure that the checkboxes size is factored in
11665         even when not visible.
11666
11667 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
11668
11669         * FileDialog.cs: Fix Jordi's build break
11670
11671 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
11672
11673         * FileDialog.cs: 
11674                 - Use standard the Windows colours for the combobox as espected
11675                 - Dispose objects that use resouces when no longer need them
11676
11677 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
11678
11679         * X11DesktopColors.cs: Initial incomplete implementation
11680         * XplatUIX11.cs: Added call to initialize X11DesktopColors
11681
11682 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
11683
11684         * Theme.cs: 
11685           - Switched Theme color names to match the names defined in 
11686             System.Drawing.KnownColors. Life's hard enough, no need to make 
11687             it harder.
11688           - Added setters to all theme color properties so themes can set
11689             their color schemes. The setters also propagate the color changes
11690             to System.Drawing.KnownColors via reflection
11691         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
11692           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
11693           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
11694           use the new, more logical theme color names
11695         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
11696           post-NT colors
11697         * ThemeWin32Classic.cs:
11698           - Removed code to set the old classic Windows colors. Instead it
11699             now relies on the colors returned by System.Drawing.KnownColors
11700             which will be either modern static colors (Unix) or colors
11701             read from the user's configuration (Win32)
11702           - Updated to use the new, more logical theme color names
11703           - Switched DataGrid drawing code to use only Theme colors instead of
11704             a mix of System.Drawing.KnownColors and Theme colors
11705           - DrawFrameControl(): Removed code that fills the button area, the
11706             fill would overwrite any previous fill done by a control. This
11707             fixes bug #75338 
11708           - Added DrawReversibleRectangle() stub
11709         * ScrollableControl.cs: Set visible state to false when scrollbars
11710           are removed (pdn fix)
11711         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
11712           DrawReversibleRectangle() method to allow drawing primitive 
11713           'rubber bands'
11714         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
11715
11716 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11717
11718         * ImageList.cs: Add(Icon): Create handle.
11719
11720 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
11721
11722         * ListView.cs:
11723         * ThemeWin32Classic.cs:
11724                 - Fixes detail mode
11725                 - Sets clippings
11726                 - Issues with drawing
11727
11728 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11729
11730         * ImageList.cs: Moved RecreateHandle back to ImageList as event
11731           source has to be the ImageList.
11732
11733 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11734
11735         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
11736
11737 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11738
11739         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
11740
11741 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11742
11743         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
11744
11745 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
11746         * GridItem.cs: Fixed TODOs
11747         * GridItemCollection.cs: Added ICollection interface
11748
11749 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11750
11751         * ImageList.cs: Resize icons when needed.
11752
11753 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
11754
11755         * ListViewItem.cs
11756                 - Fixes GetBounds and returns on screen rects
11757         * ListView.cs:
11758                 - Fixes vertical and horzintal scrolling of items
11759         * ThemeWin32Classic.cs:
11760                 - Fixes drawing
11761                 
11762 2005-09-29  Raja R Harinath  <harinath@gmail.com>
11763
11764         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
11765
11766 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
11767
11768         * ImageList.cs: Added comments about handle creation. Moved Handle,
11769           HandleCreated and OnRecreateHandle implementations to ImageCollection.
11770           Handle is created in Add methods.
11771
11772 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
11773          
11774         * DataGridDrawingLogic.cs: 
11775                 - Takes rows into account on Colum calculations
11776                 - Returns the column when clickig
11777         * DataGrid.cs:
11778                 - Fixes default HitTestInfo values
11779                 - Fixes HitTestInfo.ToString
11780                 - Fixes ResetBackColor          
11781         
11782 2005-09-28  Jackson Harper  <jackson@ximian.com>
11783
11784         * MdiChildContext.cs: Obey rules for fixed sized windows (no
11785         sizing or cursor changes). Also added some temp code to draw the
11786         titlebars text (Makes dev a little easier).
11787
11788 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
11789
11790         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
11791
11792 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
11793          
11794         * ListBox.cs: Fixes bug 76253
11795
11796 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
11797
11798         * ImageList.cs: Added comments about the current implementation. Added
11799           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
11800           Format32bppArgb to preserve transparency and can use Graphics.FromImage
11801           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
11802           with Bitmap.LockBits for better performance. Revised the whole file to
11803           match MS.NET behaviour and provide better performance. Non-public
11804           interface members are calling public members even when they throw
11805           NotSupportedException for better maintainability. Moved ColorDepth,
11806           ImageSize, ImageStream and TransparentColor implementations to
11807           ImageCollection for better performance as these properties are not used
11808           by ImageList.
11809         * ImageListStreamer.cs: Added a new internal constructor that takes an
11810           ImageList.ImageCollection and serializes Images based on
11811           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
11812           match ImageList property name.
11813
11814 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
11815
11816         * ListBox.cs: Fixes IndexFromPoint for last item
11817
11818 2005-09-27  Jackson Harper  <jackson@ximian.com>
11819
11820         * Form.cs: Set the position of new mdi children correctly.
11821
11822 2005-09-27  Jackson Harper  <jackson@ximian.com>
11823
11824         * MdiClient.cs: New mdi children need to be added to the back of
11825         the controls collection so the zorder is set correctly. Also add a
11826         count of all the child windows that have been created.
11827
11828 2005-09-27  Jackson Harper  <jackson@ximian.com>
11829
11830         * Form.cs (CreateParams): Setup MDI forms correctly.
11831
11832 2005-09-27  Jackson Harper  <jackson@ximian.com>
11833
11834         * MdiChildContext.cs:
11835         * MonthCalendar.cs:
11836         * UpDownBase.cs:
11837         * ListBox.cs:
11838         * ListView.cs:
11839         * TextBoxBase.cs:
11840         * TreeView.cs:
11841         * ScrollableControl.cs:
11842         * ComboBox.cs: Add implicit controls using the new implict control
11843         functionality in ControlCollection. Also try to block multiple
11844         control add in a suspend/resume layout to save some cycles.
11845         
11846 2005-09-27  Jackson Harper  <jackson@ximian.com>
11847
11848         * Control.cs: Add functionality to the controls collection to add
11849         'implicit controls' these are controls that are created by the
11850         containing control but should not be exposed to the user. Such as
11851         scrollbars in the treeview.
11852         * Form.cs: The list var of the ControlsCollection is no longer
11853         available because of the potential of implicit controls getting
11854         ignored by someone accessing the list directly.
11855
11856 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
11857
11858         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
11859           loose it's parent. (Fixed bug introduced in r49103 when we added
11860           setting the child parent to null on Remove)
11861
11862 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
11863
11864         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
11865         * Splitter.cs: Added missing attributes for BorderStyle property.
11866         * TextBoxBase.cs: Marked Calculate* methods internal.
11867         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
11868         MS.NET.
11869
11870 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
11871          
11872         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
11873
11874 2005-09-25  Jackson Harper  <jackson@ximian.com>
11875
11876         * TreeView.cs: Update the node bounds correctly regardless of
11877         whether the node is visible.
11878
11879 2005-09-25  Jackson Harper  <jackson@ximian.com>
11880
11881         * ImageList.cs: Don't dispose the image after it is added to the
11882         image list. Only reformat images that need to be resized.
11883
11884 2005-09-25  Jackson Harper  <jackson@ximian.com>
11885
11886         * ImageList.cs: Don't set the format when changing the image.
11887
11888 2005-09-25  Jackson Harper  <jackson@ximian.com>
11889
11890         * TreeView.cs: We can't just assume the node has a font. Use the
11891         treeviews font if no node font is available.
11892
11893 2005-09-25  Jackson Harper  <jackson@ximian.com>
11894
11895         * TreeView.cs: Allow the scrollbars to be reset with negative
11896         values.
11897         - Don't add scrollbars to negative sized windows.
11898
11899 2005-09-23  Jackson Harper  <jackson@ximian.com>
11900
11901         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
11902         old Mono.Posix. Also remove some stray code that shouldn't have
11903         been committed.
11904
11905 2005-09-23  Jackson Harper  <jackson@ximian.com>
11906
11907         * TreeView.cs: Attempt at proper sizing of the horizontal
11908         scrollbar. Also don't resize the scrollbars unless they are
11909         visible.
11910
11911 2005-09-23  Jackson Harper  <jackson@ximian.com>
11912
11913         * TreeView.cs: We don't need to expand the invalid area when the
11914         selection changes, as this is all drawn in the node's bounding
11915         box. The area needs to be expanded (previous typo was contracting
11916         it) when the focus rect moves.
11917
11918 2005-09-23  Jackson Harper  <jackson@ximian.com>
11919
11920         * TreeView.cs: Display the selection box under the correct
11921         circumstances. We were rendering white text with no selection box
11922         before.
11923
11924 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
11925
11926         * TextControl.cs(Split): Now updates selection start/end if it points 
11927           into a line that's being split. Fixes a FIXME and bug #75258
11928
11929 2005-09-23  Jackson Harper  <jackson@ximian.com>
11930
11931         * Binding.cs:
11932         * ListControl.cs: Don't use the path when retrieving binding
11933         managers from the binding context. My bat sense tells me that the
11934         path is only used on insertion.
11935
11936 2005-09-22  Jackson Harper  <jackson@ximian.com>
11937
11938         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
11939
11940 2005-09-22  Jackson Harper  <jackson@ximian.com>
11941
11942         * Splitter.cs: There are special cursors used for splitting.
11943         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
11944
11945 2005-09-22  Jackson Harper  <jackson@ximian.com>
11946
11947         * Splitter.cs: Change the cursor appropriately when the splitter
11948         is moused over, so the user actually knows there is a splitter
11949         there.
11950
11951 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
11952
11953        * Label.cs : Fix ToString method to give same output as MS.NET
11954
11955 2005-09-22  Jackson Harper  <jackson@ximian.com>
11956
11957         * TreeView.cs: Create the scrollbars when the handle is created
11958         and add them right away, just make them invisble. Also account for
11959         the window being shrunk vertically to the point that the vert
11960         scrollbar needs to be added.
11961         - Remove some 0.5 adjustments to get around anti aliasing issues.
11962         
11963 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
11964          
11965         * MainMenu.cs: Fixes default value
11966         * MenuItem.cs: Fixes default value
11967
11968 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
11969
11970         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
11971
11972 2005-09-21  Jackson Harper  <jackson@ximian.com>
11973
11974         * Control.cs: Don't try to set the border style on the window if
11975         it hasn't been created. When the window is created the border
11976         style will be used.
11977
11978 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
11979
11980         * Control.cs (Update): Don't call XplatUI if we don't have a
11981           window handle yet
11982
11983 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
11984
11985         * ContainerControl.cs: Instead of throwing an exception, print
11986           a one-time warning about Validate not being implemented
11987         * XplatUIWin32.cs: Removed debug output
11988
11989 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
11990
11991         * Control.cs: Only set XplatUI background if we expect the windowing
11992           system to handle the background. This stops controls that draw their
11993           own background from flickering
11994
11995         * XplatUIX11.cs: Support custom visuals and colormaps for window 
11996           creation. This allows, amongst other things, using MWF X11 windows 
11997           with OpenGL.
11998
11999 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
12000
12001         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
12002           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
12003           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
12004           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
12005           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
12006           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
12007           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
12008           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
12009           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
12010           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
12011           GridColumnStylesCollection.cs, 
12012           IDataGridColumnStyleEditingNotificationService.cs,
12013           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
12014           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
12015           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
12016           TreeNodeCollection.cs, AmbientProperties.cs, 
12017           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
12018           DataObject.cs, ErrorProvider.cs, Splitter.cs,
12019           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
12020           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
12021           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
12022           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
12023           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
12024           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
12025           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
12026           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
12027           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
12028           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
12029           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
12030           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
12031           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
12032           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
12033           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
12034           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
12035           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
12036           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
12037           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
12038           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
12039           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
12040           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
12041           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
12042           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
12043           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
12044           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
12045           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
12046           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
12047           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
12048           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
12049           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
12050           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
12051           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
12052           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
12053           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
12054
12055 2005-09-21  Jackson Harper  <jackson@ximian.com>
12056
12057         * TreeNode.cs: Call Before/After Expand not Collapse when
12058         expanding.
12059
12060 2005-09-20  Jackson Harper  <jackson@ximian.com>
12061         
12062         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
12063
12064 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
12065          
12066         * ListViewItem.cs:
12067                 - Fixes bug 76120
12068                 - Fixes proper storing of subitems
12069                 - Fixes not updated items
12070
12071 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
12072
12073         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
12074           things if our window handle isn't created yet. Also disabled 
12075           debug for TextBoxBase
12076
12077 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
12078
12079         * MenuAPI.cs: Remove filtering of events to allow menu usage
12080
12081 2005-09-20  Miguel de Icaza  <miguel@novell.com>
12082
12083         * Cursor.cs: Allow null to be passed to Cursor.Current.
12084
12085 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
12086
12087         * ThemeWin32Classic.cs:
12088           - Change some private methods/fields to protected virtual so that 
12089             they can be accessed and overriden in derived classes
12090           - First refactoring of some methods. Derived themes now don't 
12091             need to duplicate the complete code from ThemeWin32Classic
12092         * ThemeNice.cs:
12093           - Added nice StatusBar
12094           - Derive from ThemeWin32Classic and not Theme
12095           - Removed duplicate ThemeWin32Classic code
12096
12097 2005-09-20  Miguel de Icaza  <miguel@novell.com>
12098
12099         * Control.cs (ControlCollection.Add): If the value null is passed
12100         the control is ignored. 
12101
12102         Optimize this loop.
12103
12104 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
12105
12106         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
12107           PostQuitMessage state.
12108         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
12109
12110 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
12111
12112         * Application.cs: Our constructor will never get called, move 
12113           initialization to fields; fixes bug #75933
12114
12115 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
12116
12117         * FileDialog.cs :
12118                 - Allow files to be selected properly using file name
12119                 combo box.
12120                 - Add ability to change diretory (absolute / relative)
12121                 using file name combo box.
12122
12123 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
12124          
12125         * ListBox.cs: 
12126                 - Fixes Multicolumn listboxes item wrong calculations
12127                 - Allows to click when only one item is in the listbox
12128                 - Fixes crash when no items using keyboard navigation
12129
12130 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
12131
12132         * ComboBox.cs: Reverted almost everything from the latest patch which
12133           broke ComboBox
12134
12135 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
12136         
12137         * ToolTip.cs:
12138                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
12139         * ComboBox.cs:
12140                 - When DropDownStyle is Simple, it does not show scrollbar 
12141                 to the last item of the list.
12142                 - When DropDownStyle is Simple, it crashed when the list was 
12143                 scrolled down with the down cursor key.
12144                 - Fixed a bug that when DropDownStyle is DropDownList, the 
12145                 selected item was not shown.
12146                 - The position of the selected item was not preserved when 
12147                 the next dropdown happened.
12148         * ThemeWin32Classic.cs:
12149                 - Items were wrapped at the right end.
12150         * CheckedListBox.cs:
12151                 - Fixed Add method
12152         * ListBox.cs:
12153                 - Items should be fully shown.
12154                 - When resizing and vertical scrollbar disappeared, the item 
12155                 of index 0 should be on the top of the list.
12156                 - GetItemRectangle should consider the size of ver. scrollbar
12157         * StatusBar.cs:
12158                 - SizingGrip area should not be allocated when it is not 
12159                 displayed.
12160                 - Now it reflects MinWidth of the containing panel and 
12161                 fixed a crash that happens when its width becomes so small.
12162
12163 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
12164
12165         * CheckedListBox.cs: Fixes bug 76028
12166         * ListBox.cs: Fixes bug 76028
12167
12168 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
12169
12170         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
12171         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
12172
12173 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
12174
12175         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
12176
12177 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12178
12179         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
12180
12181 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12182
12183         * IRootGridEntry.cs: Added
12184         * PropertyGridCommands.cs: Added
12185         * PropertiesTab.cs: Added missing methods and property
12186         * PropertyGridView.cs: Made class internal
12187         * PropertyGridTextBox.cs: Made class internal
12188
12189 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
12190
12191         * MimeIcon.cs: Try to check some other environment variables
12192           if "DESKTOP_SESSION" returns "default"
12193
12194 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
12195
12196         * ThemeNice.cs: Corrected background colors (e.g. menus)
12197         * ColorDialog.cs: Use correct background colors for controls
12198
12199 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
12200
12201         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
12202
12203 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
12204
12205         * RichTextBox.cs: Added initial implementation
12206         * lang.cs: Removed. Was accidentally checked in long time ago
12207         * TODO: Removed. Contents were obsolete
12208
12209 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
12210                                                                                 
12211         * PropertiesTab.cs : Added
12212
12213 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
12214                                                                                 
12215         * PropertyGrid.cs : Update
12216         * PropertyGridView.cs : Update
12217         * System.Windows.Forms.resx : Added images and strings
12218
12219 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
12220
12221         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
12222  
12223 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
12224
12225         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
12226           a busy loop right after the Ungrab the X11 display is otherwise 
12227           blocked
12228
12229 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
12230
12231         * ThemeWin32Classic.cs: Optimise the use of clipping
12232
12233 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
12234
12235         * DataGrid.cs: fixes recursion bug
12236
12237 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
12238
12239         * ThemeNice.cs: 
12240           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
12241           - Cleanup
12242
12243 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
12244
12245         * ThemeNice.cs: Draw nice ProgressBars
12246
12247 2005-09-01  Miguel de Icaza  <miguel@novell.com>
12248
12249         * VScrollBar.cs: Another buglet found by Aaron's tool. 
12250
12251         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
12252         bug finder.
12253
12254 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
12255
12256         * ThemeNice.cs:
12257           - Added nicer menu drawing
12258           - Updated DrawTab
12259           - some refactoring
12260
12261 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
12262
12263         * CreateParams.cs (ToString): Made output match MS
12264         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
12265             handle is already created (to avoid forcing window creation)
12266         * XplatUIX11.cs: Set window text to caption after creating window,
12267           in case Text was set before window was created
12268         * Form.cs: Use this.Text instead of a static string as caption
12269
12270 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
12271
12272         * NotifyIcon.cs: Don't set the window to visible; this screws
12273           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
12274           OnPaint without a bitmap)
12275         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
12276           happen very often anyway; we could add the check to the WM_PAINT 
12277           event generation code
12278
12279 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
12280
12281         * NotifyIcon.cs: Fill the icon area with a background color, to 
12282           avoid 'residue' when transparent icons are drawn
12283         * XplatUIX11.cs:
12284           - Handle whole_window == client_window when destroying windows
12285           - SystrayAdd(): Set client_window to whole_window value to
12286             get mouse and other events passed to NotifyIcon
12287
12288 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
12289
12290         * Form.cs: Set proper default for Opacity property
12291         * NotifyIcon.cs:
12292           - ShowSystray(): Don't bother creating telling the OS
12293             about the systray item if no icon is provided
12294           - Now handles WM_NCPAINT message to deal with whole/client window
12295             split
12296           - Create window as visible to not get caught by Expose optimization
12297         * Hwnd.cs: Removed debug message
12298         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
12299           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
12300             PaintEventStart/End to use new client argument
12301         * TextBoxBase.cs:
12302           - Commented out debug messages
12303           - Switched PaintEventStart/End to use new client argument
12304         * XplatUI.cs: Added client window bool to PaintEventStart()/
12305           PaintEventEnd() calls, to support drawing in non-client areas
12306         * XplatUIDriver.cs: 
12307           - Added client window bool to PaintEventStart()/PaintEventEnd() 
12308             calls, to support drawing in non-client areas
12309           - Added conditional compile to allow using MWF BeginInvoke 
12310             on MS runtime
12311         * XplatUIX11.cs:
12312           - Added some conditional debug output
12313           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
12314             whole/client window split
12315           - Implemented handling of client argument to PaintEventStart()/End()
12316         * Control.cs:
12317           - Throw exception if BeginInvoke() is called and the window handle
12318             or one of the window's parent handles is not created
12319           - Added conditional compile to allow using MWF BeginInvoke on
12320             MS runtime
12321           - get_Parent(): Only sets parent if handle is created. This avoids
12322             forcing window handle creation when parent is set.
12323           - Now fires Layout and Parent changed events in proper order
12324           - Switched to use Handle instead of window.Handle for Z-Order setting,
12325             the get_Parent() patch above causes us to possibly get null for 'window'
12326           - Implemented handling of client argument to PaintEventStart()/End()
12327           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
12328             default handling)
12329           - Now sends a Refresh() to all child windows when Refresh() is called
12330
12331 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
12332
12333         * Form.cs: Added (non-functional) Opacity property
12334         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
12335
12336 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
12337         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
12338           use export MONO_THEME=nice to activate it.
12339           Currently supported controls:
12340           - Button
12341           - ComboBox
12342           - ScrollBar
12343           - TabControl (TabAlignment.Top only, other will follow)
12344         * ThemeEngine.cs: Add theme nice
12345         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
12346           if enabled
12347
12348 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
12349
12350         * Splitter.cs: Resize docked control and its neighbor.
12351
12352 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12353         -- Making Windows with Menus layout correctly --
12354         * Form.cs : The first leg of the fix
12355                 Menu setter - adjust Client Size as needed to make space for the menu
12356                 SetClientSizeCore - doesn't call base version to be able to pass the 
12357                         menu handle to XplatUI.CalculateWindowRect
12358         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
12359         * XplatUIX11.cs: The critical second leg of the fix
12360                 GetWindowPos needs to use a recalculated client_rect
12361                 so that resizing the window doesn't break layout of child controls. 
12362                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
12363                 Lots of \t\n killed
12364
12365 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
12366
12367         * Label.cs: Now properly recalculates width and height on Font and Text
12368           changes if AutoSize is set
12369
12370 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12371         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
12372
12373 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
12374
12375         * ImageList.cs: Makes ToString method compatible with MS
12376
12377 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
12378
12379         * MenuAPI.cs: fixes bug 75716
12380
12381 2005-08-11 Umadevi S <sumadevi@novell.com>
12382         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
12383
12384 2005-08-11 Umadevi S <sumadevi@novell.com>
12385         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
12386
12387 2005-08-10  Umadevi S <sumadevi@novell.com>
12388         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
12389
12390 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
12391
12392         * Menu.cs: fixes bug 75700
12393         * MenuAPI.cs: fixes navigation issues
12394
12395 2005-08-09  Umadevi S <sumadevi@novell.com>
12396         * CheckedListBox.cs - simple fix for GetItemChecked.
12397
12398 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
12399
12400         * ComboBox.cs: Serveral fixes
12401         * ListBox.cs: Serveral fixes
12402
12403 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
12404
12405         * ComboBox.cs: Fixes FindString methods and GetItemHeight
12406         * ListBox.cs: Fixes FindString methods
12407
12408 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
12409
12410         * DataGrid.cs: fixes bugs exposed by new tests
12411
12412 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
12413
12414         * Mime.cs: Compile Mono assembly references only if compiling
12415           with Mono (Allows to build with VS.Net again)
12416
12417 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
12418
12419         * Control.cs (PaintControlBackground): Draw background image
12420         corrrectly.
12421         (CheckForIllegalCrossThreadCalls): Stubbed.
12422         
12423         * Form.cs (OnCreateControl): Center when should be centered.
12424         
12425         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
12426
12427 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
12428
12429         * Binding.cs: Binding to properties should be case unsensitive
12430
12431 2005-07-18 vlindos@nucleusys.com
12432
12433         * DataGrid.cs: fixes setmember order
12434
12435 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
12436
12437         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
12438         * FileDialog.cs: FileDialog is now resizable and uses the new
12439           MimeIconEngine
12440
12441 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
12442
12443         * DataGridTextBoxColumn.cs: default value
12444         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
12445         * GridTableStylesCollection.cs: fixes checking MappingName
12446         * DataGridDrawingLogic.cs: fixes drawing logic issues
12447         * DataSourceHelper.cs: rewritten to make compatible with more data sources
12448         * DataGrid.cs: fixes    
12449
12450 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
12451
12452         * MimeGenerated.cs: Use case sensitive comparer for
12453           NameValueCollections
12454
12455 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
12456
12457         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
12458         * ThemeWin32Classic.cs: bug fixes, code refactoring
12459         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
12460         * DataGrid.cs: bug fixes, code refactoring
12461         * DataGridTextBox.cs: bug fixes, code refactoring
12462         * DataGridColumnStyle.cs:  bug fixes, code refactoring
12463         * Theme.cs:  bug fixes, code refactoring
12464
12465 2005-07-01  Peter Bartok  <pbartok@novell.com> 
12466
12467         * TextControl.cs: Quick fix for the reported crash on ColorDialog
12468           and other text box usage
12469
12470 2005-07-01  Jackson Harper  <jackson@ximian.com>
12471
12472         * TabControl.cs: Make sure the bottom of the tab covers the pages
12473         border.
12474
12475 2005-06-30  Peter Bartok  <pbartok@novell.com> 
12476
12477         * Form.cs (ShowDialog): Assign owner of the dialog
12478         * TextBoxBase.cs: Always refresh caret size when deleting, caret
12479           might have been moved to a tag with different height
12480
12481 2005-06-30  Jackson Harper  <jackson@ximian.com>
12482
12483         * Form.cs: Don't create an infinite loop when setting focus
12484         * MenuItem.cs: Don't dirty the parents if we don't have any
12485
12486 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
12487
12488         * LibSupport.cs: Rename
12489
12490 2005-06-29  Peter Bartok  <pbartok@novell.com>
12491
12492         * TextBoxBase.cs: Re-align caret after deleting a character
12493         * TextControl.cs:
12494           - DeleteChars(): Ensure that tag covers the provided position
12495           - StreamLine(): Drop reference for dropped tag
12496
12497 2005-06-29  Peter Bartok  <pbartok@novell.com> 
12498
12499         * TextControl.cs: 
12500           - Selections now work properly, anchoring at the initial location
12501             and properly extending in either direction (SetSelectionToCaret(),
12502             SetSelectionStart() and SetSelectionEnd())
12503           - No longer redraws the whole control on selection change, now
12504             calculates delta between previous and new selection and only
12505             invalidates/redraws that area
12506           - Fixed FindPos() math off-by-one errors
12507           - Changed DeleteChars() to verify the provided tag covers the
12508             provided position, selections may have a tag that doesn't cover
12509             the position if the selection is at a tag border
12510           - Fixed off-by-one errors in DeleteChars()
12511           - Added missing streamlining check in DeleteChars() to remove
12512             zero-length tags
12513           - Implemented Invalidate() method, now properly calculates exposures
12514             between two given lines/positions
12515           - Implemented SetSelection()
12516           - Obsoleted and removed FixupSelection()
12517           - Improved RecalculateDocument() logic, removing code duplication
12518
12519 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12520
12521         * LibSupport.cs: changes to match different input/output arguments.
12522
12523 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12524
12525         * LibSupport.cs: added libsupport.so init routine.
12526
12527 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
12528         
12529         * ControlBindingsCollection.cs
12530                 - Throws an exception on null datasource when adding
12531                 - Checks for duplicated bindings when adding
12532
12533 2005-06-28  Jackson Harper  <jackson@ximian.com>
12534
12535         * TreeView.cs (OnKeyDown): Support left and right properly
12536         (navigates as well as expanding and collapsing.
12537         - Add support for Multiply, this expands all the selected nodes
12538         children.
12539         - Fix some tabbing.
12540
12541 2005-06-28  Jackson Harper  <jackson@ximian.com>
12542
12543         * TreeView.cs: Implement keyboard navigation, currently supports,
12544         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
12545         support for toggling checkboxes with the space bar.
12546
12547 2005-06-28  Jackson Harper  <jackson@ximian.com>
12548
12549         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
12550         tree.
12551
12552 2005-06-28  Jackson Harper  <jackson@ximian.com>
12553
12554         * TreeView.cs: Add missing event.
12555
12556 2005-06-27  Peter Bartok  <pbartok@novell.com> 
12557
12558         * TextControl.cs:
12559           - Made line ending size configurable (now allows for counting 
12560             lineendings as \n or \r\n)
12561           - Added margin to viewport to keep caret visible on right side
12562           - Fixed translation routines for line/pos to documentpos to consider
12563             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
12564           - Fixed some line-endings to be unix style
12565           - Fixed Document.FormatText to perform it's calculations 1-based
12566           - Added descriptions for a few methods that might otherwise get 
12567             used wrong
12568           - Added NOTE section with some basic conventions to remember at 
12569             the top of the file
12570           - Major fixup for RichTextBox selection drawing:
12571             * Fixed crashes when multiple tags on a single line were selected
12572             * fixed selection box drawing not overlaying text
12573             * fixed bogus offset calculation for tags not starting at index 1
12574             * Switched behaviour from using multiple Substrings of a 
12575               StringBuilder.ToString() to using multiple 
12576               StringBuilder.ToString(start, length) statements, hoping this is
12577               faster (kept original version commented out in the code, in case
12578               original version was faster)
12579         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
12580           alignment != Left
12581         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
12582           call it as well
12583
12584 2005-06-27  Jackson Harper  <jackson@ximian.com>
12585
12586         * TabControl.cs: Move to the left and right with the arrow
12587         keys. These keys don't cycle beyond first and last like
12588         tab. Refresh all the tabs when scrolling them to the left or
12589         right.
12590
12591 2005-06-27  Jackson Harper  <jackson@ximian.com>
12592
12593         * TabControl.cs:
12594           - ToString: Added method
12595           - CreateParams: Remove TODO and comment
12596           - OnKeyDown: Cycle through bounds properly.
12597           - SelectedIndex: Scroll to the right or left if we need to
12598           display the newly selected tab.
12599
12600 2005-06-23  Jackson Harper  <jackson@ximian.com>
12601
12602         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
12603         set.
12604
12605 2005-06-23  Jackson Harper  <jackson@ximian.com>
12606
12607         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
12608         CTRL-SHIFT-TAB, and HOME, END are there any others?
12609
12610 2005-06-23  Jackson Harper  <jackson@ximian.com>
12611
12612         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
12613
12614 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
12615         
12616         * DataGridTextBoxColumn.cs: fixes and enhancements
12617         * ThemeWin32Classic.cs: fixes and enhancements
12618         * DataGridBoolColumn.cs:  fixes and enhancements
12619         * DataGridDrawingLogic.cs:  fixes and enhancements
12620         * CurrencyManager.cs: fixes and enhancements
12621         * DataGrid.cs: fixes and enhancements
12622         * DataGridColumnStyle.cs:  fixes and enhancements
12623
12624 2005-06-22  Jackson Harper  <jackson@ximian.com>
12625
12626         * TabControl.cs: Add some missing methods that just call into the
12627         base. Make the TabPageCollection's IList interface behave in the
12628         same manner as the MS implementation.
12629
12630 2005-06-22  Peter Bartok  <pbartok@novell.com> 
12631
12632         * TextControl.cs: Added sanity check
12633         * TextBoxBase.cs: 
12634           - Fixed wrapping behaviour, don't set wrap on single line controls
12635             (this fixes the breakage of colordialog introduced in an earlier
12636              checkin)
12637           - Added rudimentary support for autoscrolling right-aligned controls
12638             (still needs fixing, also, center alignment scroll is missing)
12639
12640 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
12641         
12642         * ScrollBar.cs: Fixes thumbpos on Maximum values
12643
12644 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
12645         
12646         * PropertyGridView.cs: Pass context information to UITypeEditors 
12647
12648 2005-06-21  Peter Bartok  <pbartok@novell.com> 
12649
12650         * TextBoxBase.cs:
12651           - Now calling PositionCaret with absolute space coordinates
12652           - Enabled vertical scrolling
12653           - Better tracking of scrollbar changes, tied into WidthChange
12654             event
12655           - Improved cursor tracking
12656           - Removed debug output
12657         * TextControl.cs:
12658           - PositionCaret coordinates are now works in absolute space, not 
12659             the canvas
12660           - Improved tracking of document size
12661           - Added events for width and height changes
12662
12663 2005-06-21  Peter Bartok  <pbartok@novell.com>
12664
12665         * Form.cs: Set focus to active control when form is activated
12666         * TextControl.cs: 
12667           - Added word-wrap functionality to RecalculateLine() 
12668           - Added some short function descriptions for VS.Net to aid in
12669             writing dependent controls
12670           - Added Caret property, returning the current coords of the caret
12671           - Added ViewPortWidth and ViewPortHeight properties
12672           - Added Wrap property
12673           - Added CaretMoved event
12674           - Removed some old debug code
12675           - Split() can now create soft splits
12676           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
12677           - Added method to format existing text
12678           - Fixed size/alignment calculations to use viewport
12679           - RecalculateDocument now can handle changing line-numbers while
12680             calculating lines
12681
12682         * TextBox.cs:
12683           - Added some wrap logic, we don't wrap if alignment is not left
12684           - Added casts for scrollbar var, base class switched types to
12685             also support RichTextBoxA
12686           - Implemented handling of scrollbar visibility flags
12687
12688         * TextBoxBase.cs:
12689           - Switched scrollbars type to RichTextBoxScrollBars to support
12690             RichTextBox
12691           - Added tracking of canvas width/height
12692           - Switched scrollbars to be not selectable (to keep focus on text)
12693           - Added central CalculateDocument() method to handle all redraw
12694             requirements
12695           - Added ReadOnly support
12696           - Added WordWrap support
12697           - Fixed handling of Enter key (we now treat it as a DialogKey)
12698           - Fixed caret positioning when h or v scroll is not zero
12699           - Fixed placing/generation of vertical scrollbar
12700           - Added CalculateScrollBars() method to allow updating scrollbar
12701             limits and visibility
12702           - Fixed handling of horizontal scroll
12703           - Added handling of vertical scroll
12704           - Implemented auto-'jump' when caret moves to close to a left or
12705             right border and there is text to be scrolled into view (currently
12706             there's the potential for a stack overflow, until a bug in
12707             scrollbar is fixed)
12708
12709 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
12710         
12711         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
12712
12713 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
12714
12715         * Mime.cs:
12716         - added inodes.
12717         - return application/x-zerosize for files with size zero
12718           (if no extension pattern matches).
12719         - check matches collection for strings too.
12720         - return only the first mime type if the name value
12721           collection has more than one mime type.
12722
12723 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
12724         
12725         * PropertyGrid.cs: Cleaned up some TODOs
12726         * PropertyGridView.cs: Added support for UITypeEditors
12727
12728 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
12729         
12730         * DataGrid.cs: clears cached value
12731
12732 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
12733
12734         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
12735         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
12736         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
12737         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
12738         
12739 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
12740
12741         * ThemeWin32Classic.cs: fixes colour
12742
12743 2005-06-15  Peter Bartok  <pbartok@novell.com>
12744
12745         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
12746         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
12747         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
12748         * Control.cs: Added some MWFCategory and MWFDescription attributes
12749         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
12750
12751 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
12752
12753         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
12754         usage
12755
12756 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
12757
12758         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
12759         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
12760         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
12761         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
12762         * DataGrid.cs: default datagrid settings for Default Styles, fixes
12763         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
12764
12765 2005-06-13  Jackson Harper  <jackson@ximian.com>
12766
12767         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
12768         isn't printed when the user enables dropping. (X11 does accept
12769         drops).
12770         
12771 2005-06-13  Jackson Harper  <jackson@ximian.com>
12772
12773         * TreeView.cs: Remove some TODOS.
12774
12775 2005-06-13  Jackson Harper  <jackson@ximian.com>
12776
12777         * Form.cs: Hook into the mdi framework.
12778         * MdiClient.cs: Use the base control collections add method so
12779         parents get setup correctly. Set the default back colour and dock
12780         style.
12781         * MdiChildContext.cs: New class, this bad actor handles an
12782         instance of an MDI window. Right now there is only basic
12783         support. You can drag, close, and resize windows. Minimize and
12784         Maximize are partially implemented.
12785
12786 2005-06-13  Jackson Harper  <jackson@ximian.com>
12787
12788         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
12789         freaky when both vals are negative. NOTE: There are probably other
12790         places in XplatUIX11 that this needs to be done.
12791
12792 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
12793
12794         * DataGrid.cs: implement missing methods, move KeyboardNavigation
12795         * DataGridColumnStyle.cs: fixes signature
12796
12797 2005-06-12  Jackson Harper  <jackson@ximian.com>
12798
12799         * XplatUIX11.cs: Use sizing cursors similar to the ones on
12800         windows.
12801
12802 2005-06-11  Jackson Harper  <jackson@ximian.com>
12803
12804         * StatusBarPanel.cs: Signature cleanups. Implement
12805         BeginInit/EndInit.
12806
12807 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
12808
12809         * DataGridTextBoxColumn.cs: Honors aligment
12810         * GridColumnStylesCollection.cs: Contains is case unsensitive
12811         * GridTableStylesCollection.cs: several fixes
12812         * DataGridTableStyle.cs: default column creation
12813         * DataGridDrawingLogic.cs: fixes
12814         * CurrencyManager.cs: ListName property
12815         * DataGrid.cs: multiple styles support
12816         * DataGridColumnStyle.cs: fixes
12817         
12818
12819 2005-06-10  Peter Bartok  <pbartok@novell.com>
12820
12821         * Control.cs(Select): Moved SetFocus call to avoid potential
12822           loops if controls change the active control when getting focus
12823         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
12824           the up/down buttons
12825
12826 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
12827
12828         * ImageListConverter.cs: Implemented
12829
12830 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
12831
12832         * MonthCalendar.cs: Wired in NumericUpDown control for year
12833
12834 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
12835
12836         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
12837           DoubleClick events, since they are not meant to be fired.
12838
12839 2005-06-09  Peter Bartok  <pbartok@novell.com>
12840
12841         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
12842           Jonathan's standalone controls into MWF, implemented missing
12843           events, attributes and methods; added xxxAccessible classes
12844         * AccessibleObject.cs: Made fields internal so other classes
12845           can change them if needed
12846
12847 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
12848
12849         * UpDownBase.cs: Complete implementation
12850         * NumericUpDown.cs: Complete implementation
12851         * DomainUpDown.cs: Complete implementation
12852
12853 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
12854
12855         * DataGridTextBoxColumn.cs: drawing fixes
12856         * DataGridCell.cs: fixes ToString method to match MSNet
12857         * DataGridTableStyle.cs: fixes
12858         * DataGridBoolColumn.cs: fixes, drawing
12859         * DataGridDrawingLogic.cs: fixes, new methods
12860         * DataGridTextBox.cs: Keyboard and fixes
12861         * DataGrid.cs:
12862                 - Keyboard navigation
12863                 - Scrolling fixes
12864                 - Row selection (single, multiple, deletion, etc)
12865                 - Lots of fixes
12866         
12867 2005-06-07  Jackson Harper  <jackson@ximian.com>
12868
12869         * ThemeWin32Classic.cs: Clear the background area when drawing
12870         buttons.
12871
12872 2005-06-06  Peter Bartok  <pbartok@novell.com>
12873
12874         * ImageListStreamer.cs: Fixed signature for GetData
12875         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
12876         * ComboBox.cs:
12877           - Added missing ChildAccessibleObject class
12878           - Added missing OnXXXFocus overrides, switched to using those
12879             instead of the event handler
12880         * Control.cs:
12881           - Added Parent property for ControlAccessibleObject
12882           - Fixed signatures
12883           - Fixed attributes
12884           - Added ResetBindings()
12885         * ListBindingConverter.cs: Implemented some methods
12886         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
12887         * ImageList.cs: Implemented basic handle scheme, removed TODOs
12888         * ContainerControl.cs: Fixed signature, now subscribing to the
12889           ControlRemoved event instead of overriding the handler, LAMESPEC
12890         * CurrencyManager.cs: Added missing attribute
12891         * MonthCalendar.cs: Added missing properties
12892
12893 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
12894
12895         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
12896         
12897 2005-06-06  Gaurav Vaish and Ankit Jain
12898
12899         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
12900         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
12901         
12902 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
12903
12904         * Control.cs: fixes CreateParams Width / Height.
12905
12906 2005-06-05  Peter Bartok  <pbartok@novell.com>
12907
12908         * Win32DnD.cs: Removed compilation warnings
12909
12910 2005-06-05  Peter Bartok  <pbartok@novell.com>
12911
12912         * Control.cs (CreateParams): Since we don't know if one of the
12913           properties we use is overridden, lets make sure if we fail accessing
12914           we continue with a backup plan
12915
12916 2005-06-05  Peter Bartok  <pbartok@novell.com>
12917
12918         * Win32DnD.cs:
12919           - Removed debug output
12920           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
12921             struct
12922           - Plugged resource leak
12923         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
12924           MS size
12925
12926 2005-06-05  Peter Bartok  <pbartok@novell.com>
12927
12928         * XplatUIWin32.cs: Removed DnD code
12929         * Win32DnD.cs: Implemented drop source and drop target functionality
12930
12931 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12932
12933         * UpDownBase.cs: remove duplicate addition of event, enable some code
12934         that was commented out.
12935         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
12936         Validate input when a key is pressed. It works fine now for every
12937         combination of Hexadecimal. Only missing some drawing love when sharing
12938         space with other controls.
12939
12940 2005-06-04  Peter Bartok  <pbartok@novell.com>
12941
12942         * Control.cs:
12943           - We need to pass a window for DragDrop, so enable callback events
12944           - Added DnD callback events when being a DragSource
12945         * XplatUI.cs (StartDrag): Added window handle argument
12946         * XplatUIDriver.cs (StartDrag): Added window handle argument
12947         * QueryContinueDragEventArgs: Made fields internally accessible so
12948           drivers can set them
12949         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
12950           can set them
12951
12952 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
12953
12954         * DataGridTextBoxColumn.cs: column text editing
12955         * DataGridTableStyle.cs: Respect columns styles created by the user
12956         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
12957         * DataGridBoolColumn.cs: bool column editing
12958         * DataGrid.cs: fixes to scrolling, properties, etc
12959         * DataGridTextBox.cs: handle keyboard
12960         * DataGridColumnStyle.cs: fixes
12961
12962 2005-06-02  Jackson Harper  <jackson@ximian.com>
12963
12964         * ImageListStreamer.cs: Somewhat broken implementation of
12965         GetObjectData. The RLE needs some work to match MS properly.
12966
12967 2005-06-02  Jackson Harper  <jackson@ximian.com>
12968
12969         * X11Dnd.cs: Attempting to keep at least one file in MWF
12970         monostyled.
12971
12972 2005-06-02  Peter Bartok  <pbartok@novell.com>
12973
12974         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
12975           that way
12976
12977 2005-06-02  Peter Bartok  <pbartok@novell.com>
12978
12979         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
12980         * XplatUI.cs: Added DoDragDrop() method
12981         * XplatUIDriver.cs: Added DoDragDrop() method
12982
12983 2005-06-02  Jackson Harper  <jackson@ximian.com>
12984
12985         * Splitter.cs: Implement BorderStyle.
12986
12987 2005-06-02  Jackson Harper  <jackson@ximian.com>
12988
12989         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
12990         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
12991         X11 using XDND.
12992
12993 2005-06-02  Peter Bartok  <pbartok@novell.com>
12994
12995         * DataObject.cs:
12996           - Added Data setter
12997           - Fixed broken insertion code for SetData, now also
12998             overwrites any existing entry of the same format name
12999         * Hwnd.cs: Added list of pointers that automatically gets
13000           freed when the window is disposed
13001         * XplatUI.cs: Call driver initialization method when loading
13002           a driver
13003         * Control.cs:
13004           - OnDragLeave takes EventArgs, not DragEventArgs
13005           - Added setting of WS_EX_ACCEPTFILES style when dropping is
13006             supported
13007           - Forces style update when drop state changes
13008         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
13009           not perfect since we cannot (yet) call the IDataObject.GetData()
13010           method, we keep getting 0x80004005 error, dunno why)
13011
13012 2005-06-02  Peter Bartok  <pbartok@novell.com>
13013
13014         * DragEventArgs.cs: Make fields internal so we can cache the
13015           object and re-set the fields from XplatUI
13016
13017 2005-06-02  Jackson Harper  <jackson@ximian.com>
13018
13019         * Control.cs: Add some internal methods so the DnD subsystem can
13020         raise DnD events. Also call into the driver when AllowDrop is set.
13021         * XplatUI.cs:
13022         * XplatUIDriver.cs: New method for setting whether or not a window
13023         is allowed to accept drag and drop messages.
13024                 
13025 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
13026         
13027         * ScrollBar.cs: Make sure that values sent in Scroll events
13028         are always between Maximum and Minimum.
13029
13030 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
13031
13032         * Menu.cs: Call MenuChanged when menuitem visibility has been
13033         changed.
13034         * MenuItem.cs: Rebuild menu when item is (not) visible.
13035         * MainMenu.cs: MainMenu has special MenuChanged.
13036         * Theme.cs: Caption and FrameBorderSize are not fixed.
13037         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
13038         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
13039         * XplatUIX11.cs,
13040         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
13041         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
13042
13043 2005-05-30  Jackson Harper  <jackson@ximian.com>
13044
13045         * DataFormat.cs: We can't statically initialize this stuff because
13046         it calls into the xplatui and could create a loop. So we lazy init
13047         it.
13048
13049 2005-05-28  Jackson Harper  <jackson@ximian.com>
13050
13051         * Control.cs: Proper implementation of Product(Name/Version).
13052
13053 2005-05-27  Jackson Harper  <jackson@ximian.com>
13054
13055         * DataObject.cs: Dont crash if no data is found.
13056
13057 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
13058         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
13059                 as per status page, guessing it should be set to true
13060
13061 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
13062
13063         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
13064         * DataGridTableStyle.cs: set proper formatting text, def header text
13065         * ThemeWin32Classic.cs: new themable paramaters
13066         * DataGridBoolColumn.cs: paint check box, get data, fixes
13067         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
13068         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
13069         * DataGridColumnStyle.cs: fixes
13070         * Theme.cs: new themable paramaters
13071                 
13072 2005-05-26  Peter Bartok  <pbartok@novell.com>
13073
13074         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
13075
13076 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
13077         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
13078
13079 2005-05-24  Peter Bartok  <pbartok@novell.com>
13080
13081         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
13082           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
13083           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
13084           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
13085           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
13086           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
13087           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
13088           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
13089           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
13090           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
13091           missing attributes, etc
13092         * DataGridPreferredColumnWidthTypeConverter.cs: Added
13093
13094 2005-05-24  Peter Bartok  <pbartok@novell.com>
13095
13096         * Help.cs: Added, implemented trivial functions, throws up MessageBox
13097           when user tries to get help
13098         * DataObject.cs, DataFormats.cs, LinkArea.cs,
13099           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
13100           to suppress warnings
13101         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
13102           avoid unreachable code warning
13103
13104 2005-05-20  Peter Bartok  <pbartok@novell.com>
13105
13106         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
13107
13108 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
13109
13110         * DataGridTextBoxColumn.cs: Basic painting methods
13111         * DataGridTableStyle.cs: Set table style in the column
13112         * ThemeWin32Classic.cs: Use Theme for colors
13113         * DataGridDrawingLogic.cs: Implement more drawing
13114         * DataGrid.cs: drawing, theming, enhacements, fixes
13115         * DataGridColumnStyle.cs: fixes, drawing
13116         * Theme.cs: theming for Datagrid
13117
13118 2005-05-20  Peter Bartok  <pbartok@novell.com>
13119
13120         * Cursor.cs: Implemented GetObjectData() method
13121
13122 2005-05-20  Peter Bartok  <pbartok@novell.com>
13123
13124         * Cursors.cs: Added setting of cursor name
13125         * Cursor.cs:
13126           - Implemented constructors
13127           - Implemented Draw and DrawStretched
13128           - Implemented Current property
13129           - Implemented == and != operators
13130           - Implemented Dispose()
13131           - Implemented ToString
13132           - Added missing attributes
13133         * XplatUIX11.cs:
13134           - Added missing reset for OverrideCursor when DoEvents is called
13135           - Fixed creation of cursor, logic was wrong
13136         * XplatUIWin32.cs:
13137           - Added missing reset for OverrideCursor when DoEvents is called
13138           - Fixed creation of cursor, bit arrays were swapped
13139         * Clipboard.cs: Removed obsolete MonoTODO attribute
13140
13141 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
13142
13143         * ComboBox.cs: fixes OnSelectedItemChanged
13144         * ControlBindingsCollection.cs: fixes item range check
13145
13146 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
13147
13148         * UpDownBase.cs:
13149                 - Calc preferred height properly
13150                 - Implement missing properties
13151                 
13152         * NumericUpDown.cs: Implement missing events
13153
13154 2005-05-19  Jackson Harper  <jackson@ximian.com>
13155
13156         * TabControl.cs: New method that resizes the tab pages before
13157         redrawing them. This as needed as the control is double buffered
13158         and sizing will not be recalculated unless ResizeTabPages is
13159         called.
13160         * TabPage.cs: Set base.Text instead of Text in the constructor so
13161         that UpdateOwner does not get called. Use the new Redraw method of
13162         TabControl instead of Refresh so the sizing is recalculated.
13163         * ThemeWin32Classic.cs: Draw the text for button tabs.
13164
13165 2005-05-19  Jackson Harper  <jackson@ximian.com>
13166
13167         * Control.cs: Paint control background images. Fix typo where
13168         PaintControlBackground was not getting called correctly.
13169
13170 2005-05-19  Peter Bartok  <pbartok@novell.com>
13171
13172         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
13173           I can investigate, apparently I broke FileDialog
13174
13175 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
13176
13177         * AxHost.cs: Some simple properties.
13178         * Control.cs: window must be accessible after ctor.
13179         * Form.cs: Added TransparencyKey property.
13180         * TextBoxBase.cs: Implemented Clear. Text property can be null.
13181         * XplatUIWin32.cs: SetBorderStyle implemented.
13182
13183 2005-05-18  Peter Bartok  <pbartok@novell.com>
13184
13185         * DataObject.cs: Entries are not global but particular to the
13186           DataObject, now it behaves that way
13187         * XplatUIWin32.cs: Implemented Clipboard methods
13188         * Clipboard.cs: Implemented
13189         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
13190         * XplatUIOSX.cs: Updated to final clipboard prototypes
13191         * XplatUIX11.cs: Implemented Clipboard methods
13192         * XplatUIDriver.cs: Updated to final clipboard prototypes
13193         * XplatUIStructs.cs:
13194           - Added BITMAPINFOHEADER struct
13195           - Added ClipboardFormats enum
13196         * X11Structs.cs:
13197           - Added ClipboardStruct
13198           - Added Atom enum items for clipboard types
13199           - Fixed atom types for Selection event structures
13200         * DataFormats.cs:
13201           - Added internal properties and methods for drivers to enumerate
13202             all known formats
13203           - Switched initialization method to allow drivers to assign their
13204             own IDs even for the MS predefined clipboard IDs
13205         * XplatUI.cs: Updated to final clipboard interface
13206
13207 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
13208         * PropertyGridView.cs: Fixed compiler warnings.
13209
13210 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
13211         * PropertyGrid.cs: Added some event calls
13212         * PropertyGridView.cs: Change drawing code to use double buffering
13213         * PropertyGridTextBox.cs: Changed Text property name
13214         * GridItem.cs: Added Bounds property.
13215         * GridEntry.cs: Added Bounds property.
13216
13217 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
13218
13219         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
13220         since GetType() may not return the correct type if the object is
13221         a remoting proxy.
13222
13223 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
13224
13225         * TreeNodeCollection.cs: fixes get/set item ranges
13226         
13227 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
13228
13229         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
13230                 
13231 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
13232
13233         * ComboBox.cs: Fix item range comparation
13234         * ListView.cs: Fix item range comparation
13235
13236 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
13237
13238         * FontDialog.cs:
13239           - Clear example panel when OnPaint is called
13240           - Better solution for displaying the example panel text
13241           - Select default indexes in the ListBoxes
13242
13243 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
13244
13245         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
13246
13247 2005-05-11  Peter Bartok  <pbartok@novell.com>
13248
13249         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
13250         * SelectionRangeConverter.cs: Implemented
13251         * PropertyGrid.cs: Fixed attribute value
13252         * Control.cs:
13253           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
13254           - Added Sebastien Pouliot's CAS Stack Propagation fixes
13255         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
13256           that's common to all drivers. First methods to go there are
13257           Sebastien Pouliot's CAS Stack Propagation helper methods
13258         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
13259           Sebastien Pouliot for CAS Stack Propagation
13260
13261 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
13262
13263         * OSXStructs.cs:
13264           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
13265
13266 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
13267
13268         * DataGridTextBoxColumn.cs: fixed some members
13269         * GridColumnStylesCollection.cs: indexed column is case insensitive
13270         * DataGridTableStyle.cs: fixes
13271         * ThemeWin32Classic.cs: add new theme parameter
13272         * Theme.cs: add new theme parameter
13273         * DataGridDrawingLogic.cs: Datagrid's drawing logic
13274         * DataGrid.cs: fixes, new internal properties, etc.
13275         * DataGridColumnStyle.cs: allows to set grid value
13276         *
13277
13278 2005-05-10  Peter Bartok  <pbartok@novell.com>
13279
13280         * AccessibleObject.cs:
13281           - Removed MonoTODO attribute on help, method is correct
13282           - Fixed Bounds property
13283         * AxHost.cs: Moved MonoTODO
13284         * ButtonBase.cs: Now setting AccessibleObject properties
13285         * RadioButton.cs: Setting proper AccessibleObject role
13286         * CheckBox.cs: Setting proper AccessibleObject role
13287         * ControlBindingsCollection.cs: Added properties, methods and attributes
13288         * DataFormats.cs: Fixed awkward internal API, and changed to enable
13289           userdefined DataFormats.Format items as well
13290         * ListControl.cs: Removed data_member from the public eye
13291         * OpenFileDialog.cs:
13292           - Made class sealed
13293           - Added missing attributes
13294         * SaveFileDialog.cs: Added missing attributes
13295         * ImageListStreamer.cs: Fixed code that caused warnings
13296         * LinkLabel.cs: Removed unreachable code
13297         * TreeView.cs: Fixed code that caused warnings
13298         * PropertyGridView.cs: Fixed code that caused warnings
13299         * GridColumnStylesCollection.cs: Added missing attributes
13300         * GridTableStylesCollection: Added missing attribute
13301         * PropertyManager: Added .ctor
13302         * SecurityIDType: Added
13303         * DataObject.cs: Implemented class
13304         * LinkArea.cs: Added missing attribute
13305
13306 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
13307
13308         * RadioButton.cs: call base method to allow to fire OnClick event
13309         * UpDownBase.cs: OnMouseUp call base method
13310         * CheckedListBox.cs: call base method before returning
13311         * TrackBar.cs: call base method before returning
13312         
13313
13314 2005-05-10  Peter Bartok  <pbartok@novell.com>
13315
13316         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
13317           for messages
13318
13319 2005-05-10  Peter Bartok  <pbartok@novell.com>
13320
13321         * DataFormats.cs: Implemented
13322         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
13323           XplatUIX11.cs: Added Clipboard APIs
13324         * XplatUIWin32.cs: Implemented Clipboard APIs
13325         * FolderBrowserDialog.cs: Added missing event, attributes
13326
13327 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
13328
13329         * CheckBox.cs: call base method to allow to fire OnClick event
13330
13331 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
13332
13333         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
13334
13335 2005-05-06  Peter Bartok  <pbartok@novell.com>
13336
13337         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
13338         * Screen.cs: Implemented
13339         * HelpNavigator.cs: Added
13340         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
13341           property
13342         * HelpProvider.cs: Implemented all we can do until we have a CHM
13343           help library (which means that "What's This" does work now)
13344
13345 2005-05-06  Jackson Harper  <jackson@ximian.com>
13346
13347         * XplatUIX11.cs: Fix waking up the main loop.
13348                 
13349 2005-05-05  Peter Bartok  <pbartok@novell.com>
13350
13351         * XplatUI.cs: Updated revision
13352         * Form.cs: Removed enless loop
13353         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
13354         * Label.cs (OnPaint): Added call to base.OnPaint()
13355         * ToolTip.cs: Made ToolTipWindow reusable for other controls
13356         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
13357         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
13358         * AxHost.cs: Added
13359         * ButtonBase.cs: Moved base.OnPaint() call to end of method
13360         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
13361           to ToolTip.ToolTipWindow for drawing and size methods; this allows
13362           reuse of ToolTipWindow by other controls
13363         * SizeGrip.cs: Moved base.OnPaint() call to end of method
13364         * XplatUIX11.cs: Now clipping drawing area (experimental)
13365         * PictureBox.cs: Moved base.OnPaint() call to end of method
13366         * Theme.cs: Fixed ToolTip abstracts to match new format
13367         * ErrorProvider.cs: Implemented
13368
13369 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
13370
13371         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
13372         * LinkLabel.cs:
13373                 - Adds cursors
13374                 - Handles focus
13375                 - Implements LinkBehavior
13376                 - Fixes many issues
13377
13378 2005-05-03  Jackson Harper  <jackson@ximian.com>
13379
13380         * ListView.cs: Calculate the scrollbar positioning on resize and
13381         paint, so they get put in the correct place.
13382
13383 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
13384
13385         * ColorDialogs.cs: The small color panels are now handled by
13386           SmallColorControl. This fixes drawing of the focus rectangle
13387           and adds a 3D border.
13388
13389 2005-05-03  Peter Bartok  <pbartok@novell.com>
13390
13391         * Control.cs: Modified version of Jonathan Chamber's fix for
13392           double-buffering
13393
13394 2005-05-03  Jackson Harper  <jackson@ximian.com>
13395
13396         * ListView.cs: Remove redraw variable. Control now handles whether
13397         or not a redraw needs to be done, and will only raise the paint
13398         event if redrawing is needed.
13399
13400 2005-05-03  Jackson Harper  <jackson@ximian.com>
13401
13402         * Splitter.cs: No decorations for the splitter form. Cache the
13403         hatch brush.
13404
13405 2005-05-03  Jackson Harper  <jackson@ximian.com>
13406
13407         * TreeView.cs: Use dashed lines to connect nodes. Use the
13408         ControlPaint method for drawing the focus rect instead of doing
13409         that in treeview.
13410
13411 2005-05-02  Peter Bartok  <pbartok@novell.com>
13412
13413         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
13414
13415 2005-04-29  Jackson Harper  <jackson@ximian.com>
13416
13417         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
13418         entire image buffer. Just clear the clipping rectangle.
13419
13420 2005-04-29  Jackson Harper  <jackson@ximian.com>
13421
13422         * ThemeWin32Classic.cs: Don't draw list view items that are
13423         outside the clipping rectangle.
13424
13425 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
13426
13427         * ListBox.cs: added horizontal item scroll
13428
13429 2005-04-29  Jackson Harper  <jackson@ximian.com>
13430
13431         * ThemeWin32Classic.cs: Remove some old debug code that was
13432         causing flicker with the new double buffering code.
13433
13434 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
13435
13436         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
13437         behave like combobox and comboboxlist (still not sure if this is
13438         correct though).
13439
13440 2005-04-28  Jackson Harper  <jackson@ximian.com>
13441
13442         * ThemeWin32Classic.cs: Don't fill the middle of progress
13443         bars. This fills areas outside of the clip bounds that don't need
13444         to be filled.
13445
13446 2005-04-28  Jackson Harper  <jackson@ximian.com>
13447
13448         * Control.cs: Don't expose functionality to touch the image buffers.
13449         * ProgressBar.cs:
13450         * ListView.cs: We do not need to (and no longer can) manipulate
13451         the image buffers directly. All of this is handled by Control.
13452
13453 2005-04-28  Peter Bartok  <pbartok@novell.com>
13454
13455         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
13456           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
13457           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
13458
13459 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
13460
13461         * Combobox:
13462                 - Adjust control's height for non-simple comboboxes (bug fix)
13463                 - Remove dead code
13464         * MenuAPI.cs: remove unused var
13465         * ScrollBar.cs: remove unsed var
13466                  
13467         * ListBox.cs: unselect items when clearing
13468
13469 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
13470
13471         * ListControl.cs: honors OnPositionChanged and default Selected Item
13472         * ListBox.cs: unselect items when clearing
13473
13474 2005-04-27  Jackson Harper  <jackson@ximian.com>
13475
13476         * X11Keyboard.cs: Initialize a default keyboard and give a warning
13477         if a "correct" keyboard is not found. This will make us not crash,
13478         but might give some users bad keyboard layouts...seems to be the
13479         same thing rewind does.
13480
13481 2005-04-27  Jackson Harper  <jackson@ximian.com>
13482
13483         * BindingManagerBase.cs: Attach the current/position changed
13484         handlers to their respective events.
13485
13486 2005-04-27  Jackson Harper  <jackson@ximian.com>
13487
13488         * Control.cs: Make sure that the first WM_PAINT does a full draw,
13489         not just a blit.
13490         * ThemeWin32Classic.cs: Don't fill the background for picture
13491         boxes. This could overright user drawing.
13492         * ComboBox.cs: Just fill the clipping rect not the entire client
13493         rect when drawing the background. This prevents pieces of the
13494         image buffer from getting overwritten and is theoretically faster.
13495
13496 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
13497
13498         * ComboBox.cs: Databinding support fixes, fire missing events
13499         * ListControl.cs: implement missing methods and properties, fixes
13500         * ThemeWin32Classic.cs: Databiding support on Drawing
13501         * CheckedListBox.cs: Databinding support fixes, fire missing events
13502         * ListBox.cs: Databinding support fixes, fire missing events
13503         
13504 2005-04-25  Peter Bartok  <pbartok@novell.com>
13505
13506         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
13507
13508 2005-04-25  Jackson Harper  <jackson@ximian.com>
13509
13510         * TreeView.cs: Use the horizontal scrollbars height not width when
13511         determining how much of the client area is available.
13512
13513 2005-04-25  Jackson Harper  <jackson@ximian.com>
13514
13515         * Control.cs: Double buffering is handled differently now. As per
13516         the spec, the extra buffer is created in the WM_PAINT message and
13517         passed down to the control's drawing code.
13518         * GroupBox.cs:
13519         * Label.cs:
13520         * CheckBox.cs:
13521         * ProgressBar.cs:
13522         * RadioButton.cs:
13523         * ColorDialog.cs:
13524         * ComboBox.cs:
13525         * PropertyGridView.cs:
13526         * UpDownBase.cs:
13527         * MessageBox.cs:
13528         * MenuAPI.cs:
13529         * ListView.cs:
13530         * ButtonBase.cs:
13531         * SizeGrip.cs:
13532         * ScrollBar.cs:
13533         * ListBox.cs:
13534         * TrackBar.cs:
13535         * ToolBar.cs:
13536         * PictureBox.cs:
13537         * DateTimePicker.cs:
13538         * StatusBar.cs:
13539         * TreeView.cs: Update to new double buffering system.
13540         * MonthCalendar.cs: Uncomment block, as Capture is now
13541         working. Update to new double buffering
13542         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
13543         * PaintEventArgs.cs: New internal method allows us to set the
13544         graphics object. This is used for double buffering.
13545         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
13546         rectangle. The internal paint_area var has been removed from
13547         StatusBar. The clipping rect should be used instead.
13548         * Theme.cs: Give the PictureBox drawing method a clipping rect.
13549         * TabPage.cs: The RefreshTabs method was removed, so just call the
13550         tab controls Refresh method now.
13551         * TabControl.cs: Update to new double buffering. Make sure the
13552         handle is created before sizing the tab pages, otherwise we will
13553         get stuck in a loop.
13554
13555 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
13556
13557         * LinkLabel.cs: Fix typo, bug #74719; patch
13558           from Borja Sanchez Zamorano
13559
13560 2005-04-22  Jackson Harper  <jackson@ximian.com>
13561
13562         * TreeNode.cs: Implement Handle stuff.
13563         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
13564
13565 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
13566
13567         * DataGridTextBoxColumn.cs: call base constructors, fixes
13568         * GridColumnStylesCollection.cs: missing events, methods, and functionality
13569         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
13570         * DataGridTableStyle.cs: implements create default column styles
13571         * DataGridBoolColumn.cs: which types can handle
13572         * DataGrid.cs: missing methods, fixes, new functionality
13573         * DataGridColumnStyle.cs: fixes
13574
13575 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
13576         * FolderBrowserDialog.cs:
13577         - Use a thread to fill the TreeView
13578         - Adjusted some sizes
13579
13580 2005-04-19  Peter Bartok  <pbartok@novell.com>
13581
13582         * LinkLabel.cs: (Re-)create the pieces when setting the Text
13583           property. Fixes #74360.
13584
13585 2005-04-19  Jackson Harper  <jackson@ximian.com>
13586
13587         * XEventQueue.cs: Lock when getting the lockqueue size.
13588         * PictureBox.cs: Call base OnPaint
13589         
13590 2005-04-19  Peter Bartok  <pbartok@novell.com>
13591
13592         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
13593           messages were no longer being processed (this broke BeginInvoke)
13594
13595           
13596 2005-04-18  Jackson Harper  <jackson@ximian.com>
13597
13598         * TreeView.cs: buglet that caused node images to get drawn
13599         regardless of whether or not they were in the clipping rectangle.
13600
13601 2005-04-18  Jackson Harper  <jackson@ximian.com>
13602
13603         * CurrencyManager.cs: There are four rules for GetItemProperties:
13604         - If the type is an array use the element type of the array
13605         - If the type is a typed list, use the type
13606         - If the list contains an Item property that is not an object, use
13607         that property
13608         - use the first element of the list if there are any elements in
13609         the list.
13610         
13611 2005-04-17  Jackson Harper  <jackson@ximian.oom>
13612
13613         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
13614         click. This handles offsets for scrolling properly and reduces
13615         memory. Also fixed GetNode to not offset now that TopNode works
13616         properly.
13617         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
13618         
13619 2005-04-17  Jackson Harper  <jackson@ximian.com>
13620
13621         * CursorConverter.cs: Initial implementation.
13622
13623 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
13624
13625         * ListControl.cs: work towards complex data binding support on ListControl
13626         * CurrencyManager.cs: work towards complex data binding support on ListControl
13627         * ListBox.cs: work towards complex data binding support on ListControl
13628
13629
13630 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
13631
13632         * GridTableStylesCollection.cs: fixes name and constructor
13633         * DataGridTableStyle.cs: fixes
13634         * DataGridBoolColumn.cs: fixes names and constructors
13635         * DataGrid.cs: define methods and properties. Some init implementations
13636         * DataGridCell.cs: define methods and properties. Some init implementations
13637         * GridTablesFactory.cs: Define methods and properties
13638
13639 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
13640
13641         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
13642         graphics port changes.  We still want the coordinates in global screen
13643         coordinates.
13644
13645 2005-04-14  Jackson Harper  <jackson@ximian.com>
13646
13647         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
13648         check plus minus or checkbox clicks unless those features are enabled.
13649
13650 2005-04-14  Jackson Harper  <jackson@ximian.com>
13651
13652         * TreeView.cs: Add methods for setting the top and bottom visible
13653         nodes. TreeNode::EnsureVisible uses these methods.
13654         * TreeNode.cs: Implement EnsureVisible
13655
13656 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
13657
13658         * Form.cs: Pospone menu assignation if the window has not been created yet
13659         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
13660         size and position
13661
13662 2005-04-12  Jackson Harper  <jackson@ximian.com>
13663
13664         * TreeView.cs: Set the TopNode properly when scrolling
13665         occurs. This has the added benifit of reducing the amount of
13666         walking that needs to be done when drawing. Also removed an old
13667         misleading TODO.
13668         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
13669         
13670 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
13671
13672         * Timer.cs: fixes interval setting when the timer is already enabled
13673         
13674 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
13675
13676         * FolderBrowserDialog.cs: First approach
13677
13678 2005-04-09  Peter Bartok  <pbartok@novell.com>
13679
13680         * FolderBrowserDialog: Added
13681
13682 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
13683
13684         * LinkLabel.cs: move drawing code into the theme
13685         * ThemeWin32Classic.cs: drawing code and painting background bugfix
13686         * Theme.cs: define DrawLinkLabel method
13687
13688 2005-04-05  Jackson Harper  <jackson@ximian.com>
13689
13690         * BindingContext.cs: Use weak references so these bad actors don't
13691         stay alive longer then they need to.
13692
13693 2005-04-05  Jackson Harper  <jackson@ximian.com>
13694
13695         * ListControl.cs: Basic implementation of complex databinding.
13696         * ComboBox.cs:
13697         * ListBox.cs: Add calls to ListControl databinding methods.
13698
13699 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
13700
13701         * FileDialog.cs:
13702           - Don't change PopupButtonState to Normal when the
13703             PopupButton gets pressed several times.
13704           - Renamed ButtonPanel to PopupButtonPanel
13705
13706 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
13707
13708         * ColorDialog.cs: Use cached objects instead of creating them
13709         * LinkLabel.cs: Use cached objects instead of creating them
13710         * Splitter.cs: Use cached objects instead of creating them
13711         * FontDialog.cs: Use cached objects instead of creating them
13712         * PropertyGridView.cs: Use cached objects instead of creating them
13713         * MessageBox.cs: Use cached objects instead of creating them
13714         * FileDialog.cs: Use cached objects instead of creating them
13715         * ThemeWin32Classic.cs: Use cached objects instead of creating them
13716         * TreeView.cs: Use cached objects instead of creating them
13717         
13718 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
13719
13720         * Control.cs: use Equals to compare the font since no == op
13721         * ScrollBar.cs: use Equals to compare the font since no == op
13722
13723 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
13724
13725         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
13726
13727 2005-04-01  Jackson Harper  <jackson@ximian.com>
13728
13729         * Binding.cs: Implement IsBinding.
13730         * BindingManagerBase.cs:
13731         * PropertyManager.cs:
13732         * CurrencyManager.cs: Add IsSuspended property.
13733
13734 2005-04-01  Jackson Harper  <jackson@ximian.com>
13735
13736         * Binding.cs: Had some IsAssignableFrom calls backwards.
13737
13738 2005-04-01  Jackson Harper  <jackson@ximian.com>
13739
13740         * Binding.cs: Handle null data members when pulling data.
13741         * PropertyManager.cs: Handle the data member being a property that
13742         does not exist.
13743
13744 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
13745
13746         * DataGridTextBoxColumn.cs: fixes signature
13747         * DataGrid.cs: calls right constructor
13748
13749 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
13750
13751         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
13752         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
13753         * GridTableStylesCollection.cs: implements GridTableStylesCollection
13754         * DataGridTableStyle.cs: implements DataGridTableStyle
13755         * DataGridBoolColumn.cs: implements DataGridBoolColumn
13756         * DataGridTextBox.cs: implements DataGridTextBox
13757         * DataGridColumnStyle.cs: implements DataGridColumnStyle
13758
13759 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
13760
13761         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
13762
13763 2005-03-29  Peter Bartok  <pbartok@novell.com>
13764
13765         * Application.cs:
13766           - Properly implemented CompanyName property
13767           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
13768             returns a path that includes CompanyName, ProductName and
13769             Version (fixes bug #70330)
13770
13771 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
13772
13773         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
13774           fixes bug #72588.
13775
13776 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
13777
13778         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
13779         
13780           - Added ReadOnly CheckBox
13781           - Further refactoring: moved some code from Open-/SaveFileDialog
13782             to FileDialog
13783
13784 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
13785
13786         * OpenFileDialog.cs: Fixed CheckFileExists
13787         * FileDialog.cs:
13788           Moved FileView and DirComboBox outside FileDialog class.
13789           They can now be used outside FileDialog
13790
13791 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
13792
13793         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
13794         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
13795
13796 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
13797
13798         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
13799           - Added missing CreatePrompt property in SaveDialog
13800           - Overall SaveDialog handling should be better now
13801           - Added non standard ShowHiddenFiles property
13802           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
13803           - Added InitialDirectory and RestoreDirectory support
13804
13805 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
13806
13807         * FileDialog.cs: Made dirComboBox usable
13808
13809 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
13810
13811         * FileDialog.cs: Added Filter support (case sensitiv)
13812
13813 2005-03-24  Jackson Harper  <jackson@ximian.com>
13814
13815         * TabControl.cs: Need a couple more pixels for the lines.
13816
13817 2005-03-23  Jackson Harper  <jackson@ximian.com>
13818
13819         * TabControl.cs: Give the tab page focus when it is selected.
13820
13821 2005-03-23  Jackson Harper  <jackson@ximian.com>
13822
13823         * TabControl.cs: Account for the drawing of tabs borders when
13824         invalidating. If the slider was clicked dont do click detection on
13825         the tabs.
13826
13827 2005-03-23  Jackson Harper  <jackson@ximian.com>
13828
13829         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
13830
13831 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
13832
13833         * CategoryGridEntry.cs: Added
13834         * GridItem.cs: Added helper properties
13835         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
13836         * GridEntry.cs: Updated code for collection
13837         * PropertyGrid.cs: Cleaned up some formatting
13838         * PropertyGridView.cs: Added drop down functionality for enums.
13839         * GridItemCollection.cs: Added enumerator logic
13840         * PropertyGridEntry.cs: Added
13841
13842 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
13843
13844         * FileDialog.cs:
13845           - Removed unnecessary commented code
13846           - Fixed handling for entering the filename manually in the combobox
13847
13848 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
13849
13850         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
13851
13852 2005-03-18  Peter Bartok  <pbartok@novell.com>
13853
13854         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
13855           them being touching the border
13856
13857 2005-03-18  Peter Bartok  <pbartok@novell.com>
13858
13859         * TextControl.cs: Quick hack to center text better
13860
13861 2005-03-18  Peter Bartok  <pbartok@novell.com>
13862
13863         * ControlPaint.cs:
13864           - Don't throw NotImplemented exceptions, just print a notice once
13865             instead (requested by Miguel). This makes running existing SWF
13866             apps a bit easier
13867         * Control.cs:
13868           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
13869           - Added context menu trigger on right click
13870         * Panel.cs: Trigger invalidate on resize
13871         * StatusBar.cs:
13872           - Removed old double-buffer drawing
13873           - Added ResizeRedraw style to force proper update of statusbar
13874         * ListView.cs:
13875           - Removed debug output
13876         * ThemeWin32Classic.cs:
13877           - Fixed drawing of status bar, now draws Text property if there
13878             are no defined panels
13879
13880 2005-03-18  Jackson Harper  <jackson@ximian.com>
13881
13882         * ImageList.cs: When the image stream is set pull all the images
13883         from it.
13884         * ImageListStreamer.cs: Implement reading image list streams.
13885
13886 2005-03-18  Peter Bartok  <pbartok@novell.com>
13887
13888         * ThemeWin32Classic.cs (DrawPictureBox):
13889           - Fixed calculations for centered drawing
13890           - Fixed drawing for normal mode, not scaling the image on normal
13891
13892 2005-03-18  Peter Bartok  <pbartok@novell.com>
13893
13894         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
13895           textbox
13896         * FileDialog.cs:
13897           - Made Open/Save button the accept button for FileDialog
13898           - Tied the cancel button to the IButtonControl cancel button
13899           - Save/Open now properly builds the pathname
13900           - Now handles user-entered text
13901           - Preventing crash on right-click if no item is selected
13902           - Fixed Text property, now uses contents of textbox
13903           - Fixed SelectedText property, now just returns the text part that
13904             is selected in the text box
13905
13906 2005-03-18  Jackson Harper  <jackson@ximian.com>
13907
13908         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
13909         rect, make sure to de-adjust the interior rect after drawing the
13910         tab text.
13911
13912 2005-03-18  Peter Bartok  <pbartok@novell.com>
13913
13914         * MenuAPI.cs: Remove menu *before* executing selected action to
13915           prevent the menu from 'hanging around'
13916           
13917 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
13918
13919         * XplatUIOSX.cs: Implemented WorkingArea property
13920
13921 2005-03-17  Peter Bartok  <pbartok@novell.com>
13922
13923         * XplatUIX11.cs: Fixed menu coord calculations
13924         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
13925           for calculating offsets
13926
13927 2005-03-17  Peter Bartok  <pbartok@novell.com>
13928
13929         * Hwnd.cs: Do not consider menu presence for default client
13930           rectangle location/size
13931         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
13932           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
13933           translation functions
13934         * FileDialog.cs: Fixed (what I presume is a) typo
13935
13936 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
13937
13938         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
13939           X access (avoids X-Async errors)
13940
13941 2005-03-16  Jackson Harper  <jackson@ximian.com>
13942
13943         * TabControl.cs: Raise the SelectedIndexChanged event.
13944
13945 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
13946
13947         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
13948           - Removed vertical ToolBar and replaced it with a custom panel
13949             (desktop and home button already work)
13950           - Added Help button (some controls get resized or relocated then)
13951           - Draw correct text depending on Open or Save.
13952           - Fixed some typos...
13953
13954 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
13955
13956         * ScrollBar.cs:
13957           - Only change Maximum and Minimum when need it (bug fix)
13958
13959 2005-03-15  Peter Bartok  <pbartok@novell.com>
13960
13961         * Form.cs: Use Handle for icon, to trigger creation if
13962           the window does not yet exist
13963         * Control.cs:
13964           - CanSelect: Slight performance improvement
13965           - Focus(): Preventing possible recursion
13966           - Invalidate(): Removed ControlStyle based clear flag setting
13967           - WM_PAINT: fixed logic for calling OnPaintBackground
13968           - WM_ERASEBKGND: Fixed logic, added call to new driver method
13969             EraseWindowBackground if the control doesn't paint background
13970         * XplatUIWin32.cs:
13971           - Moved EraseWindowBackground() method to internal methods
13972           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
13973             is sent via SendMessage on BeginPaint call on Win32
13974         * XplatUIX11.cs:
13975           - Added EraseWindowBackground() method
13976           - No longer sends WM_ERASEBKGND on .Expose, but on call to
13977             PaintEventStart, which more closely matches Win32 behaviour
13978           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
13979           - Fixed SetFocus() to properly deal with client and whole windows
13980         * Hwnd.cs: Added ErasePending property
13981         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
13982         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
13983
13984 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
13985
13986         * XplatUIOSX.cs:
13987           - Fix hard loop when timers exist.
13988           - Fix bugs with middle and right click for 3 button mice.
13989
13990 2005-03-11  Peter Bartok  <pbartok@novell.com>
13991
13992         * XplatUIX11.cs:
13993           - get_WorkingArea: Need to call X directly, GetWindowPos only
13994             returns cached data now
13995           - Added sanity check to GetWindowPos hwnd usage
13996
13997 2005-03-11  Jackson Harper  <jackson@ximian.com>
13998
13999         * BindingManagerBase.cs: This method isn't used anymore as
14000         PullData now updates the data in the control.
14001
14002 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
14003
14004         * Form.cs: fixes menu drawing on X11
14005         * MenuAPI.cs:  fixes menu drawing on X11
14006
14007 2005-03-11  Peter Bartok  <pbartok@novell.com>
14008
14009         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
14010           from Jonathan Gilbert; should fix bug #73606
14011         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
14012           in Screen coordinates. Thanks, Jordi.
14013         * Form.cs: Added missing attribute
14014
14015 2005-03-11  Peter Bartok  <pbartok@novell.com>
14016
14017         * Form.cs:
14018           - Rudimentary Mdi support
14019           - Removed outdated FormParent code
14020           - Implemented lots of missing properties and methods, still missing
14021             transparency support
14022           - Added missing attributes
14023           - Implemented support for MaximumBounds
14024           - Added firing of various events
14025         * XplatUI.cs: Added SetIcon() method
14026         * XplatUIDriver.cs: Added SetIcon() abstract
14027         * XplatUIOSX.cs: Stubbed out SetIcon() method
14028         * XplatUIX11.cs:
14029           - Implemented SetIcon() support
14030           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
14031           - Switched to unix line endings
14032         * XplatUIWin32.cs:
14033           - Made POINT internal so for can access it as part of MINMAX
14034           - Implemented SetIcon() support
14035           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
14036             native Mdi support again, might have to go managed)
14037         * Control.cs: Now fires the StyleChanged event
14038         * MdiClient.cs: Added; still mostly empty
14039
14040 2005-03-10  Peter Bartok  <pbartok@novell.com>
14041
14042         * SaveFileDialog.cs: Added emtpy file
14043
14044 2005-03-08  Peter Bartok  <pbartok@novell.com>
14045
14046         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
14047           in turn triggers OnCreateContro) when creating a handle for the
14048           first time.
14049         * TextControl.cs: Fixed endless loop in certain cases when
14050           replacing the current selection
14051
14052 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
14053
14054         * ScrollBar.cs:
14055           - Honors NewValue changes in Scroll events allowing apps to change it
14056           - Adds First and Last Scroll events
14057           - Fixes Thumb events
14058
14059 2005-03-07  Peter Bartok  <pbartok@novell.com>
14060
14061         * Hwnd.cs: Added DefaultClientRectangle property
14062         * XplatUI.cs: Now using the X11 driver Where() method, which provides
14063           more detailed debug information
14064         * XplatUIX11.cs:
14065           - Fixed size-change feedback loop, where we would pull an old size
14066             off the queue and mistakenly change our window's size to an
14067             earlier value
14068           - Now compressing ConfigureNotify events, to reduce looping and
14069             redraw issues
14070         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
14071           is called
14072
14073 2005-03-07  Jackson Harper  <jackson@ximian.com>
14074
14075         * Binding.cs: Push data pushes from data -> property. Check if the
14076         property is readonly when attempting to set it.
14077
14078 2005-03-07  Jackson Harper  <jackson@ximian.com>
14079
14080         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
14081         instead of IsSubclassOf. Pulling data now sets the value on the
14082         control.
14083         * PropertyManager.cs:
14084         * CurrencyManager.cs: Just need to pull data when updating now,
14085         because PullData will set the value on the control.
14086
14087 2005-03-04  Jackson Harper  <jackson@ximian.com>
14088
14089         * Binding.cs: Implement data type parsing and converting on pulled
14090         data. TODO: Are there more ways the data can be converted?
14091
14092 2005-03-04  Jackson Harper  <jackson@ximian.com>
14093
14094         * Binding.cs: Support <Property>IsNull checks. Also bind to the
14095         controls Validating method so we can repull the data when the
14096         control loses focus.
14097
14098 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
14099
14100         * ColumnHeader.cs:
14101           - Fixes null string format
14102           
14103         * ListView.cs:
14104           - Adds enum type checks
14105           - Fixes redrawing and recalc need after changing some properties
14106           - Fixes on focus_item set after the event
14107           - Fixes adding columns after the control has been created
14108           
14109         * ThemeWin32Classic.cs:
14110           - Fixes CheckBox focus rectangle
14111           - Fixes ColumnHeader drawing
14112
14113
14114 2005-03-03  Jackson Harper  <jackson@ximian.com>
14115
14116         * Binding.cs: Bind to <Property>Changed events so we can detect
14117         when properties are changed and update the data.
14118
14119 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
14120
14121         * ImageList.cs:
14122           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
14123           - Fixes ImageList constructor with ImageList container
14124           - Fixes image scaling (wrong parameters at DrawImage)
14125
14126 2005-02-02  Jackson Harper  <jackson@ximian.com>
14127
14128         * Binding.cs: Make property searches case-insensitive. Eliminate
14129         some duplicated code.
14130
14131 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
14132
14133         * ComboBox.cs:
14134                 - Handle focus event
14135                 - Fix scrollbar events
14136                 - Discard highlighted item if remove it
14137                 - Fixes SelectedItem with strings
14138
14139 2005-03-01  Peter Bartok  <pbartok@novell.com>
14140
14141         * Control.cs:
14142           - Fixed Visible property, now follows (once again) parent chain
14143             to return false if any control in the chain is visible=false
14144           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
14145           - Fixed several places where is_visible instead of Visible was used
14146           - Implemented FIXME related to focus selection when setting focused
14147             control to be invisible
14148
14149         * XplatUIWin32.cs: Now using proper method to find out if window is
14150           visible. Thanks to Jordi for pointing it out
14151
14152 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
14153
14154         * ComboBox.cs: show/hide scrollbar instead of creating it
14155
14156 2005-02-27  Jackson Harper  <jackson@ximian.com>
14157
14158         * CurrencyManager.cs: Add PositionChanged stuff.
14159
14160 2005-02-27  Peter Bartok  <pbartok@novell.com>
14161
14162         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
14163         * XplatUIOSX.cs: Added GetMenuOrigin() stub
14164         * XplatUIWin32.cs: Implemented GetMenuOrigin()
14165         * XplatUIX11.cs:
14166           - Implemented GetMenuDC()
14167           - Implemented GetMenuOrigin()
14168           - Implemented ReleaseMenuDC()
14169           - Implemented generation of WM_NCPAINT message
14170           - Implemented generation and handling of WM_NCCALCSIZE message
14171         * Form.cs: Added debug helper message for Jordi's menu work
14172         * Hwnd.cs:
14173           - Modified ClientRect property; added setter, fixed getter to handle
14174             setting of ClientRect
14175           - Added MenuOrigin property
14176
14177 2005-02-26  Peter Bartok  <pbartok@novell.com>
14178
14179         * XplatUIX11.cs:
14180           - Destroys the caret if a window that's being destroyed contains it
14181           - Ignores expose events coming from the X11 queue for windows that
14182             already are destroyed
14183           - Now uses the proper variable for handling DestroyNotify, before we
14184             marked the wrong window as destroyed
14185           - Improved/added some debug output
14186
14187 2005-02-26  Peter Bartok  <pbartok@novell.com>
14188
14189         * X11Keyboard.cs: Fixes to work on 64bit systems
14190
14191 2005-02-26  Peter Bartok  <pbartok@novell.com>
14192
14193         * Control.cs:
14194           - Now calling OnHandleDestroyed from DestroyHandle()
14195             instead of Dispose()
14196           - Removed bogus call to controls.Remove() from DestroyHandle()
14197
14198 2005-02-26  Peter Bartok  <pbartok@novell.com>
14199
14200         * Control.cs: Properly destroy child windows when our handle is
14201           destroyed
14202
14203 2005-02-25  Peter Bartok  <pbartok@novell.com>
14204
14205         * XplatUI.cs:
14206           - Added 'DriverDebug' define to allow tracing XplatUI API calls
14207           - Alphabetized Static Methods and Subclasses
14208
14209         * XplatUIX11.cs:
14210           - Added XException class to allow custom handling of X11 exceptions
14211           - Created custom X11 error handler, tied into XException class
14212           - Added support for MONO_XEXCEPTIONS env var to allow the user
14213             to either throw an exception on X errors or continue running
14214             after displaying the error
14215           - Added handling of DestroyNotify message
14216           - Added handler for CreateNotify message (still disabled)
14217           - Improved (tried to at least) Where method to provide file and lineno
14218         * X11Structs.cs:
14219           - Added XErrorHandler delegate
14220           - Added XRequest enumeration (to suppor translation of errors)
14221
14222 2005-02-25  Jackson Harper  <jackson@ximian.com>
14223
14224         * PropertyManager.cs: Implement editing features
14225         * CurrencyManager.cs:
14226         * Binding.cs: First attempt at UpdateIsBinding
14227         * BindingManagerBase.cs: Call UpdateIsBinding before
14228         pushing/pulling data.
14229
14230 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
14231
14232         * MenuAPI.cs: Respect disabled items
14233         * ThemeWin32Classic.cs
14234                 - Caches ImageAttributes creation for DrawImageDisabled
14235                 - Fixes vertical menu line drawing
14236                 - Draws disabled arrows in disable menu items
14237
14238 2005-02-24  Peter Bartok  <pbartok@novell.com>
14239
14240         * Hwnd.cs:
14241           - Added UserData property to allow associating arbitrary objects
14242             with the handle
14243           - Fixed leak; now removing Hwnd references from static windows array
14244         * XplatUIWin32.cs:
14245           - Fixed Graphics leak in PaintEventEnd
14246           - Removed usage of HandleData, switched over to Hwnd class
14247         * HandleData.cs: Removed, obsoleted by Hwnd.cs
14248
14249 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
14250
14251         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
14252         * ScrollBar.cs: Fixes bug
14253         * TrackBar.cs: removes death code, clipping, mimize refreshes,
14254          keyboard navigation enhancements
14255
14256 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
14257
14258         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
14259         * GroupBox.cs: Add control styles
14260         * Label.cs: Add control styles
14261         * UpDownBase.cs: Add control styles
14262         * ListBox.cs: Add control styles
14263         * XplatUIWin32.cs: Fixes wrong parameter order
14264
14265
14266 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
14267
14268         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
14269
14270 2005-02-23  Jackson Harper  <jackson@ximian.com>
14271
14272         * PropertyManager.cs: Implement property binding. This doesn't
14273         seem to work yet though as (I think) there are some bugs in
14274         System.ComponentModel.PropertyDescriptor.
14275         * BindingContext.cs: Use new PropertyManager constructor.
14276
14277 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
14278
14279         * ProgressBar.cs: use clip region in ProgressBar
14280         * ThemeWin32Classic.cs: use clip region in ProgressBar
14281
14282 2004-02-22  Jackson Harper  <jackson@ximian.com>
14283
14284         * BindingsCollection.cs: Remove some debug code.
14285
14286 2005-02-22  Jackson Harper  <jackson@ximian.com>
14287
14288         * BindingContext.cs:
14289         * ControlBindingsCollection.cs:
14290         * CurrencyManager.cs:
14291         * Binding.cs:
14292         * BindingManagerBase.cs: Initial implementation
14293         * BindingsCollection.cs: Add an internal contains method that the
14294         BindingManagerBase uses to ensure bindings aren't added twice to
14295         the collection.
14296         * PropertyManager.cs: Stubbed out.
14297         * Control.cs:
14298         * ContainerControl.cs: Hook up databinding
14299         
14300 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
14301
14302         * XplatUIOSX.cs:
14303           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
14304           Fixed Invalidate/Update chain.
14305           Fixed tons of other minor bugs (this is almost a complete rewrite).
14306
14307 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
14308
14309         * ComboBox.cs: do subcontrol creation when the control is created
14310
14311 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
14312
14313         * Label.cs: fixes image drawing (image and imagelist)
14314         * ThemeWin32Classic.cs: cache brushes
14315         
14316 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
14317
14318         * Form.cs: Move menu drawing code to Theme class
14319         * ComboBox.cs: Move ComboBox drawing code to Theme class
14320         * MenuItem.cs: Move menu drawing code to Theme class
14321         * MenuAPI.cs: Move menu drawing code to Theme class
14322         * ThemeWin32Classic.cs: New methods
14323         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
14324         * ListBox.cs: Move Listbox drawing code to Theme class
14325         * Theme.cs: New methods
14326
14327 2005-02-20  Peter Bartok  <pbartok@novell.com>
14328
14329         * Control.cs:
14330           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
14331             only process mnemonics on those)
14332           - Fixed event sequence for key handling; first calling
14333             ProcessKeyEventArgs now
14334         * TextBoxBase.cs:
14335           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
14336             for processing non-character keys
14337           - Fixed WM_CHAR to generate proper event sequence before processing
14338         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
14339           generation
14340
14341 2005-02-19  Peter Bartok  <pbartok@novell.com>
14342
14343         * UserControl.cs: Added TextChanged event; added attributes
14344         * SizeGrip.cs: Implemented resizing and optional display of grip
14345         * Form.cs: Fixed attribute
14346         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
14347           Changed meaning of ScrollWindow bool argument; instead of the
14348           clear attribute (which will be true usually anyway), it gives the
14349           option of moving child controls as well.
14350         * XplatUIX11.cs:
14351           - Changed to match new ScrollWindow argument
14352           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
14353             now handles the implicit parent window a WM puts around us
14354         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
14355           to work)
14356         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
14357         * TreeView.cs: Adjusted to new ScrollWindow arguments
14358
14359 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
14360
14361         * Form.cs: Menu integration with non-client area
14362         * MenuItem.cs: Menu integration with non-client area
14363         * MenuAPI.cs: Menu integration with non-client area
14364
14365 2005-02-18  Peter Bartok  <pbartok@novell.com>
14366
14367         * MethodInvoker.cs: Added
14368         * MdiLayout.cs: Added
14369         * SendKeys.cs: Started implementation
14370         * ErrorIconAlignment.cs: Added
14371
14372 2005-02-18  Peter Bartok  <pbartok@novell.com>
14373
14374         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
14375         * Form.cs: Added handling for Menu-related Non-client messages
14376
14377 2005-02-17  Peter Bartok  <pbartok@novell.com>
14378
14379         * UpDownBase.cs: Fixed typo, compilation errors
14380         * DomainUpDown.cs: Fixed attribute value
14381
14382 2005-02-16  Miguel de Icaza  <miguel@novell.com>
14383
14384         * UpDownBase.cs: Attach entry events.
14385         Propagate events.
14386         Add ForeColor property, Focused, InterceptArrowKeys (interception
14387         does not work yet).
14388
14389 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
14390
14391         * Form.cs:
14392                 - Redraw non client are on Setmenu
14393                 - Calc proper menu starting point
14394
14395 2005-02-17  Peter Bartok  <pbartok@novell.com>
14396
14397         * Application.cs: Fixed message_filter check
14398
14399 2005-02-17  Peter Bartok  <pbartok@novell.com>
14400
14401         * Application.cs: Now calls registered message filters
14402         * DockStyle.cs: Fixed attribute
14403         * Form.cs: Fixed attribute
14404         * Menu.cs: Fixed attribute
14405         * ToolTip.cs: Fixed attribute
14406         * TreeNode.cs: Added missing attributes and arranged in regions
14407         * PropertyGrid.cs: Fixed signatures
14408         * TreeNodeCollection.cs: Added attributes
14409         * Splitter.cs: Added missing attributes; arranged into regions
14410         * TabPage.cs: Added missing attributes; arranged into regions
14411         * TextBoxBase.cs: Added missing attributes
14412         * TextBox.cs: Added missing attributes
14413         * ArrangeDirection.cs: Added missing attributes
14414         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
14415         * ToolBarButton.cs: Fixed attributes
14416         * AnchorStyles.cs: Fixed attribute
14417         * TrackBar.cs: Fixed attributes
14418         * TabControl.cs: Added missing attributes and arranged into regions
14419         * ToolBar.cs: Fixed attribute
14420         * StatusBar.cs: Fixed signature, organized into regions and added
14421           attributes
14422         * StatusBarPanel.cs: Fixed attributes
14423         * ContentsResizedEventArgs.cs: Implemented
14424         * ContentsResizedEventHandler.cs: Implemented
14425         * DateBoldEventArgs.cs: Implemented
14426         * DateBoldEventHandler.cs: Implemented
14427         * UpDownEventArgs.cs: Implemented
14428         * UpDownEventHandler.cs: Implemented
14429         
14430 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
14431
14432         * Form.cs: first Menu NC refactoring
14433         * MenuAPI.cs: first Menu NC refactoring
14434         
14435 2005-02-16  Peter Bartok  <pbartok@novell.com>
14436
14437         * ImeMode.cs: Added missing attributes
14438         * Menu.cs: Fixed attribute
14439         * GroupBox.cs: Fixed attribute
14440         * Label.cs: Fixed attribute
14441         * ColorDialog.cs (RunDialog): Removed TODO attribute
14442         * ComboBox.cs: Fixed attributes
14443         * ListControl.cs: Added missing attributes
14444         * PropertyGrid.cs: Fixed attributes
14445         * Control.cs: Fixed attributes
14446         * ListViewItem.cs: Added TypeConverter attribute
14447         * NotifyIcon.cs: Fixed attributes
14448         * ListView.cs: Fixed attributes
14449         * ButtonBase.cs: Fixed attribute
14450         * ImageList.cs: Added missing attributes
14451         * ContainerControl.cs: Fixed signature
14452         * CheckedListBox.cs: Fixed attribute; added missing attributes
14453         * Panel.cs: Fixed attributes
14454         * PropertyTabChangedEventArgs.cs: Added missing attribute
14455         * PropertyValueChangedEventArgs.cs: Added missing attribute
14456         * Binding.cs: Fixed attribute
14457         * ListViewItemConverter: Implemented ListViewSubItemConverter class
14458         * ListBox.cs: Fixed attribute; added missing attributes;
14459         * ScrollableControl.cs: Added missing attributes
14460         * PictureBox.cs: Added missing attributes; implemented missing property
14461         * DateTimePicker.cs: Added missing attributes
14462         * Theme.cs (ToolWindowCaptionHeight): Fixed type
14463         * MonthCalendar.cs: Fixed attributes
14464         * StatusBarPanel.cs: Added missing attributes
14465         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
14466
14467 2005-02-16  Peter Bartok  <pbartok@novell.com>
14468
14469         * TextBoxBase.cs: The previous method to enforce height yet remember
14470           the requested high was less than ideal, this is an attempt to do
14471           it better.
14472         * Control.cs: Added comment about possible problem
14473         * Copyright: Updated format
14474         * GridItemType.cs: Fixed swapped values
14475
14476 2005-02-15  Jackson Harper  <jackson@ximian.com>
14477
14478         * BaseCollection.cs: Use property so we never access an
14479         uninitialized list. Also initialize the list in the property.
14480
14481 2005-02-15  Peter Bartok  <pbartok@novell.com>
14482
14483         * GroupBox.cs (ProcessMnemonic): Implemented
14484         * Label.cs (ProcessMnemonic): Implemented
14485         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
14486           hotkeys
14487
14488 2005-02-15  Peter Bartok  <pbartok@novell.com>
14489
14490         * RadioButton.cs (ProcessMnemonic): Implemented
14491         * CheckBox.cs (ProcessMnemonic): Implemented
14492         * Control.cs:
14493           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
14494             handling
14495           - Added internal method to allow calling ProcessMnemonic from other
14496             controls
14497         * ContainerControl.cs:
14498           - Started support for handling validation chain handling
14499           - Implemented ProcessMnemonic support
14500           - Added Select() call to Active, to make sure the active control
14501             receives focus
14502         * Form.cs: Setting toplevel flag for Forms (this was lost in the
14503           FormParent rewrite)
14504         * ThemeWin32Classic.cs:
14505           - DrawCheckBox(): Fixed stringformat to show hotkeys
14506           - DrawRadioButton(): Fixed stringformat to show hotkeys
14507         * CommonDialog.cs: Removed WndProc override, not needed
14508
14509 2005-02-14  Peter Bartok  <pbartok@novell.com>
14510
14511         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
14512           missed those in the rewrite
14513
14514 2005-02-14  Miguel de Icaza  <miguel@novell.com>
14515
14516         * NumericUpDown.cs (Increment, ToString): Add.
14517         (DecimalPlaces): implement.
14518         
14519         Add attributes.
14520         
14521         * UpDownBase.cs: Add the designer attributes.
14522
14523 2005-02-13  Peter Bartok  <pbartok@novell.com>
14524
14525         * Panel.cs: Removed border_style, now in Control
14526         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
14527           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
14528
14529 2005-02-13  Peter Bartok  <pbartok@novell.com>
14530
14531         * MouseButtons.cs: Added missing attributes
14532         * XplatUIStructs.cs: Added enumeration for title styles
14533         * LeftRightAlignment.cs: Added missing attributes
14534         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
14535           it compatible with Graphics.FromHwnd()
14536         * SelectedGridItemChangedEventArgs.cs: Fixed property type
14537         * Keys.cs: Added missing attributes
14538         * SelectionRange.cs: Added missing attributes
14539         * SelectionRangeConverter.cs: Added
14540         * XplatUI.cs:
14541           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
14542             ReleaseMenuDC methods
14543           - Renamed ReleaseWindow to UngrabWindow
14544           - Added proper startup notice to allow version identification
14545         * Form.cs:
14546           - Added missing attributes
14547           - Removed FormParent concept
14548         * Label.cs: Removed border_style field, now in Control
14549         * RadioButton.cs: Now properly selects RadioButton when focus is
14550           received
14551         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
14552         * Control.cs:
14553           - Added missing attributes
14554           - Added borderstyle handling
14555           - Removed FormParent concept support
14556           - Fixed calls to XplatUI to match changed APIs
14557           - Fixed bug that would case us to use disposed Graphics objects
14558           - Removed unneeded internal methods
14559           - PerformLayout(): Fixed to handle DockStyle.Fill properly
14560           - SelectNextControl(): Fixed to properly check common parents
14561         * TextBoxBase.cs: Removed border_style field (now in Control)
14562         * MessageBox.cs:
14563           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
14564             fixed calculations for form size
14565           - Added support for localized strings and icons
14566           - Improved form size calculations, added border
14567         * ListView.cs: Removed border_style field (now in Control)
14568         * X11Structs.cs: Moved several structs from X11 driver here
14569         * X11Keyboard.cs: Changed debug message
14570         * Application.cs: Removed FormParent concept support
14571         * CommonDialog.cs:
14572           - Resetting end_modal flag
14573           - Removed FormParent concept support
14574         * NativeWindow.cs: Removed FormParent concept support
14575         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
14576           Client area and Non-Client whole window to allow support for WM_NC
14577           messages
14578         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
14579           prevent using it until it supports Hwnd as per Geoff Norton's request
14580         * ToolBar.cs: Fixed drawing, was not doing proper drawing
14581         * PictureBox.cs: Removed border_style field, now in Control
14582         * XplatUIWin32.cs: Added new driver methods
14583
14584 2005-02-12  Peter Bartok  <pbartok@novell.com>
14585
14586         * OpacityConverter.cs: Implemented
14587         * Hwnd.cs: Internal class to support drivers that need to emulate
14588           client area/non-client area window behaviour
14589
14590 2005-02-11  Peter Bartok  <pbartok@novell.com>
14591
14592         * KeysConverter.cs: Implemented
14593
14594 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
14595
14596         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
14597         * LinkLabel: Added missing attributes
14598         * MainMenu.cs: fixes ToString
14599         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
14600         * ListBox.cs: fixes event position
14601         * TrackBar.cs: adds missing attributes and events
14602         
14603 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
14604
14605         * MenuItem.cs: Use SystemInformation and bug fixes
14606         * MenuAPI.cs: Use SystemInformation and bug fixes
14607
14608 2005-02-09  Jackson Harper  <jackson@ximian.com>
14609
14610         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
14611         their keystate otherwise things like VK_MENU get stuck "on".
14612
14613 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
14614
14615         * ListBox.cs: Fixes AddRange bug
14616         
14617 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
14618
14619         * ProgressBar.cs
14620                 - Add missing attributes
14621                 - Add missing method
14622                 
14623         * CheckedListBox.cs: Added missing attributes
14624                 - Add missing attributes
14625                 - Remove extra method
14626         
14627         * ComboBox.cs: Added missing attributes
14628         * VScrollBar.cs: Added missing attributes
14629         * ScrollBar.cs:  Added missing attributes
14630         * ListBox.cs: Fixes signature, add missing consts
14631         * LinkArea.cs:   Added missing attributes
14632         
14633
14634 2005-02-08  Peter Bartok  <pbartok@novell.com>
14635
14636         * Menu.cs: Added missing attributes
14637         * MainMenu.cs: Added missing attributes
14638         * GroupBox.cs: Added missing attributes
14639         * Label.cs: Added missing attributes
14640         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
14641         * ColorDialog.cs:
14642           - Added Instance and Options properties
14643           - Added missing attributes
14644         * Cursor.cs: Made Serializable
14645         * NotifyIcon: Added missing attributes
14646         * MenuItem.cs: Added missing attributes
14647         * TextBoxBase.cs: Implemented AppendText() and Select() methods
14648         * Panel.cs: Added Missing attributes
14649         * MonthCalendar.cs: Fixed CreateParams
14650
14651 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
14652         
14653         * LinkLabel.cs:
14654                 - Fixes signature
14655                 - Fixes issues with links
14656                 - Adds the class attributes
14657
14658 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
14659         
14660         * ComboBox.cs:
14661                 - Fixes button when no items available in dropdown
14662                 - Fixes repainting problems
14663                 - Adds the class attributes
14664                 
14665 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
14666
14667         * XplatUIOSX.cs: Detect the menu bar and title bar height from
14668         the current theme.  Cache these on startup.
14669
14670 2005-02-07  Jackson Harper  <jackson@ximian.com>
14671
14672         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
14673         the scrollbar buttons when they are depressed.
14674
14675 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
14676
14677         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
14678         Get the display size from the main displayid.  We currently dont
14679         support multiple display configurations.
14680
14681 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
14682
14683         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
14684
14685 2005-02-07  Miguel de Icaza  <miguel@novell.com>
14686
14687         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
14688
14689 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
14690
14691         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
14692
14693 2005-02-04  Jackson Harper  <jackson@ximian.com>
14694
14695         * ThemeWin32Classic.cs: Respect the clipping rect when
14696         drawing. Only fill the intersection of clips and rects so there
14697         isn't a lot of large fills.
14698         * ScrollBar.cs: Pass the correct clipping rect to the theme
14699         engine. Remove some debug code.
14700
14701 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
14702         
14703         * DateTimePicker.cs:
14704                 - Fixed crash on DateTime.Parse, use Constructor instead
14705
14706 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
14707         
14708         * MenuItem.cs:
14709         * MenuAPI.cs:
14710                 - Owner draw support (MeasureItem and DrawItem)
14711
14712 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
14713         
14714         *  Menu.cs:
14715                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
14716                 - Fixes MenuItems.Add range
14717         * MenuItem.cs:
14718                 - MergeMenu and Clone and CloneMenu functions
14719
14720 2005-02-03  Jackson Harper  <jackson@ximian.com>
14721
14722         * ScrollBar.cs: Make abstract
14723         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
14724         is abstract.
14725
14726 2005-02-03  Jackson Harper  <jackson@ximian.com>
14727
14728         * ScrollBar.cs: First part of my scrollbar fixups. This removes
14729         all the unneeded refreshes and uses invalidates with properly
14730         computed rects.
14731
14732 2005-02-03  Peter Bartok  <pbartok@novell.com>
14733
14734         * ComponentModel.cs: Added
14735         * IDataGridEditingService.cs: Added
14736         * Timer.cs: Added missing attributes
14737         * ToolTip.cs: Added missing attributes
14738
14739 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
14740
14741         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
14742
14743 2005-02-03  Peter Bartok  <pbartok@novell.com>
14744
14745         * ListBox.cs: Added missing attributes
14746
14747 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
14748         
14749         * ListBox.cs:
14750                 - Fixes font height after font change
14751                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
14752                 
14753 2005-02-02  Peter Bartok  <pbartok@novell.com>
14754
14755         * HandleData.cs: Introduced static methods to allow class
14756           to be more self-contained and track it's own HandleData objects
14757         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
14758           HandleData to use new static methods
14759
14760 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
14761
14762         * Combobox.cs:
14763                 - Fixes default size and PreferredHeight
14764                 - Missing events
14765                 - ObjectCollection.Insert implementation
14766                 
14767         * ListControl.cs
14768                 - Fixes signature
14769         * ListBox.cs:
14770                 - Several fixes
14771                 - ObjectCollection.Insert implementation
14772                 - No selection after clean
14773                 - Small fixes
14774
14775 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
14776
14777         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
14778
14779 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
14780
14781         * Combobox.cs:
14782                 - Caches ItemHeight calculation for OwnerDrawVariable
14783                 - Handles dropdown properly
14784                 - Fixes several minor bugs
14785
14786 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
14787
14788         * ListBox.cs:
14789                 - Fixes 71946 and 71950
14790                 - Fixes changing Multicolumn on the fly
14791                 - Fixes keyboard navigation on Multicolumn listboxes
14792
14793 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14794         
14795         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
14796         crash reporter log.
14797
14798 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14799
14800         * XplatUIOSX.cs: Allow applications to actually exit.
14801
14802 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14803
14804         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
14805         their parent at creation time rather than lazily later.  Fixes a major
14806         regression we were experiencing.
14807
14808 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
14809
14810         * ThemeWin32Classic.cs: more date time picker painting fixes
14811         * DateTimePicker.cs: more monthcalendar drop down fixes
14812         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
14813
14814 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
14815
14816         * ScrollBar.cs:
14817                 - When moving the thumb going outside the control should stop the moving
14818                 - Adds the firing of missing events
14819                 - Fixes no button show if Size is not specified
14820                 - End / Home keys for keyboard navigation
14821
14822 2005-01-30  Peter Bartok  <pbartok@novell.com>
14823
14824         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
14825           sanity check to prevent theoretical loop
14826         * XplatUIWin32.cs (SetVisible): Removed debug output
14827         * XplatUIX11.cs (SystrayChange): Added sanity check
14828         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
14829         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
14830           behaviour, valid until the X11 client window rewrite is done
14831         * TextBox.cs (ctor): Setting proper default foreground and background
14832           colors
14833
14834 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
14835
14836         * Theme: Added DrawDateTimePicker to interface
14837         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
14838         * DateTimePicker.cs: Created (still needs keys and painting code)
14839         * DateTimePickerFormat.cs: added
14840         * MonthCalendar.cs: fixed CreateParams for popup window mode
14841           
14842 2005-01-29  Peter Bartok  <pbartok@novell.com>
14843
14844         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
14845           this should also the calculations for ligher/darker
14846         * Theme.cs: Fixed defaults for ScrollBar widths/heights
14847
14848 2005-01-29  Peter Bartok  <pbartok@novell.com>
14849
14850         * ArrangeDirection.cs: Added
14851         * ArrangeStartingPositon.cs: Added
14852         * SystemInformation.cs: Implemented
14853         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14854           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
14855           used by SystemInformation class
14856         * X11Strucs.cs: Added XSizeHints structure
14857         * MenuAPI.cs:
14858           - Fixed CreateParams to make sure the menu window is always visible
14859           - TrackPopupMenu: Added check to make sure we don't draw the
14860             menu offscreen
14861
14862 2005-01-29  Peter Bartok  <pbartok@novell.com>
14863
14864         * HandleData.cs: Added method for altering invalid area
14865         * TextBoxBase.cs: Implemented TextLength
14866
14867 2005-01-28  Peter Bartok  <pbartok@novell.com>
14868
14869         * XplatUIX11.cs: Improvement over last patch, not sending
14870           the WM_PAINT directly anymore, instead we scroll any pending
14871           exposed areas and let the system pick out the WM_PAINT later
14872
14873 2005-01-28  Peter Bartok  <pbartok@novell.com>
14874
14875         * SWF.csproj: Deleted, no longer used. Instead,
14876           Managed.Windows.Forms/SWF.csproj should be used
14877         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
14878           directly, to avoid a potential race condition with the next
14879           scroll
14880
14881 2005-01-28  Peter Bartok  <pbartok@novell.com>
14882
14883         * XplatUI.cs: Made class internal
14884
14885 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
14886
14887         * CheckedListBox.cs:
14888                 - Draw focus
14889                 - Fixed Drawing
14890                 - Missing methods and events
14891
14892 2005-01-27  Peter Bartok  <pbartok@novell.com>
14893
14894         * Application.cs (Run): Don't use form if we don't have one
14895
14896 2005-01-27  Peter Bartok  <pbartok@novell.com>
14897
14898         * TextBoxBase.cs (get_Lines): Fixed index off by one error
14899
14900 2005-01-27  Peter Bartok  <pbartok@novell.com>
14901
14902         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
14903         * GridItem.cs: Added; Patch by Jonathan S. Chambers
14904         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
14905         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
14906         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
14907         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
14908         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14909         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
14910         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14911         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14912         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14913         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
14914
14915 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
14916
14917         * Combobox.cs:
14918                 - Draw focus on Simple Combobox
14919                 - Fixes drawing issues
14920                 - fixes 71834
14921
14922 2005-01-27  Peter Bartok  <pbartok@novell.com>
14923
14924         * Form.cs:
14925           - Place window in default location, instead of hardcoded 0/0
14926           - Send initial LocationChanged event
14927         * Control.cs:
14928           - UpdateBounds after creation to find out where the WM placed us
14929           - Make sure that if the ParentForm changes location the Form
14930             is notified
14931         * XplatUIX11.cs: XGetGeometry will not return the coords relative
14932             to the root, but to whatever the WM placed around us.
14933             Translate to root coordinates before returning toplevel
14934             coordinates
14935         * XplatUIWin32.cs: Removed debug output
14936         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
14937           flag to GetWindowPos, to allow translation of coordinates on X11
14938
14939 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
14940
14941         * ListBox.cs: connect LostFocus Event
14942
14943 2005-01-27  Peter Bartok  <pbartok@novell.com>
14944
14945         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
14946           XplatUIX11.cs: Extended the Systray API
14947         * Form.cs: Removed debug output
14948         * Application.cs: Fixed focus assignment, always need to call
14949           XplatUI.Activate() since Form.Activate() has rules that may
14950           prevent activation
14951         * NotifyIcon.cs: Should be complete now
14952         * ToolTip.cs: Worked around possible timer bug
14953
14954 2005-01-27  Jackson Harper  <jackson@ximian.com>
14955
14956         * TabControl.cs:
14957         - Only invalidate the effected tabs when the
14958         selected index changes. This reduces drawing and gets rid of some
14959         flicker.
14960         - Only refresh if the tabs need to be shifted, otherwise only
14961         invalidate the slider button.
14962         - On windows the tabs are not filled to right if the slider is
14963         visible.
14964         
14965 2005-01-27  Jackson Harper  <jackson@ximian.com>
14966
14967         * TabControl.cs: Only refresh on mouseup if we are showing the
14968         slider. Also only invalidate the button whose state has changed.
14969
14970 2005-01-26  Peter Bartok  <pbartok@novell.com>
14971
14972         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
14973         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
14974           and SystrayRemove() methods
14975         * XplatUIOSX.cs: Stubbed Systray methods
14976         * XplatUIX11.cs:
14977           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
14978             methods
14979           - Fixed broken XChangeProperty calls (marshalling messed up things)
14980         * X11Structs.cs: Added enums and structs required for Size hinting
14981         * NotifyIcon.cs: Added & implemented
14982
14983 2005-01-26  Jackson Harper  <jackson@ximian.com>
14984
14985         * TabControl.cs: Space vertically layed out tabs properly.
14986
14987 2005-01-26  Peter Bartok  <pbartok@novell.com>
14988
14989         * Form.cs (CreateClientParams): Always set the location to 0,0
14990           since we're a child window.
14991
14992         * Control.cs (SetVisibleCore): Always explicitly setting the location
14993           of a toplevel window, apparently X11 doesn't like to move windows
14994           while they're not mapped.
14995
14996 2005-01-26  Jackson Harper  <jackson@ximian.com>
14997
14998         * TabControl.cs: Implement FillToRight size mode with vertically
14999         rendered tabs.
15000
15001 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
15002
15003         * ControlPaint.cs, ThemeWin32Classic.cs
15004                 - Fixes DrawFocusRectangle
15005
15006 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
15007
15008         * MenuAPI.cs:
15009                 - MenuBar tracking only starts when item is first clicked
15010                 - Fixes menu hidding for multiple subitems
15011                 - Unselect item in MenuBar when item Executed
15012                 - Fixes bug 71495
15013
15014 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
15015
15016         * ListControl.cs:
15017                 - IsInputKey for ListBox
15018         * ListBox.cs:
15019                 - Focus item
15020                 - Shift and Control item selection
15021                 - Implement SelectionMode.MultiExtended
15022                 - Fixes RightToLeft
15023         * ComboBox.cs:
15024                 - IsInputKey implemented
15025                 - Do not generate OnTextChangedEdit on internal txt changes
15026                 
15027 2005-01-23  Peter Bartok  <pbartok@novell.com>
15028
15029         * AccessibleObject.cs: Partially implemented Select()
15030         * MonthCalendar.cs: Added missing attributes and events
15031         * Form.cs: Fixed CreateParams behaviour, now controls derived from
15032           form can properly override CreateParams.
15033         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15034           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
15035           Control performs Invalidate & Update
15036         * NativeWindow (CreateHandle): Added special handling for Form
15037           and Form.FormParent classes to allow overriding of From.CreateParams
15038         * Control.cs:
15039           - ControlNativeWindow: Renamed 'control' variable to more intuitive
15040             name 'owner'
15041           - ControlNativeWindow: Added Owner property
15042           - Removed usage of Refresh() on property changes, changed into
15043             Invalidate(), we need to wait until the queue is processed for
15044             updates, direct calls might cause problems if not all vars for
15045             Paint are initialized
15046           - Added call to UpdateStyles() when creating the window, to set any
15047             styles that CreateWindow might have ignored.
15048           - Added support for Form CreateParent overrides to UpdateStyles()
15049         * MessageBox.cs: Removed no longer needed FormParent override stuff,
15050           CreateParams are now properly overridable
15051         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
15052           CreateParams are now properly overridable
15053
15054 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
15055
15056         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
15057         OnTextBoxChanged.
15058
15059         Capture LostFocus and OnTextBoxChanged.  The later introduces a
15060         recursive invocation that I have not figured out yet.
15061
15062         Reset the timer when not using (it was accumulating).
15063
15064
15065         (OnTextBoxChanged): Set UserEdit to true here to track whether the
15066         user has made changes that require validation.
15067
15068         Reset changing to avoid loops.
15069
15070 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
15071
15072         * NumericUpDown.cs: Display value at startup.
15073
15074         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
15075         ValidateEditText.
15076
15077         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
15078         filled in.  Added some basic parsing of text.
15079
15080         Still missing the OnXXX method overrides, and figuring out the
15081         events that must be emitted.
15082
15083         * UpDownBase.cs: Handle UserEdit on the Text property.
15084         
15085 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
15086
15087         * ComboBox.cs:
15088           - Fixes IntegralHeight
15089           - ToString method
15090
15091 2005-01-21  Jackson Harper  <jackson@ximian.com>
15092
15093         * TabControl.cs: Set the SelectedIndex property when SelectedTab
15094         is set so that the page visibility is updated and the tabs are
15095         sized correctly.
15096
15097 2005-01-21  Jackson Harper  <jackson@ximian.com>
15098
15099         * TabControl.cs: Use cliping rectangle for blitting. Give the
15100         theme the clipping rect so we can do clipping while
15101         drawing. Remove some debug code.
15102
15103 2005-01-21  Jackson Harper  <jackson@ximian.com>
15104
15105         * TabPage.cs: Add a new method so tab pages can force the tab
15106         control to recalculate the tab page sizes.
15107         * TabControl.cs: UpdateOwner needs to make the tab control recalc
15108         sizes.
15109
15110 2005-01-20  Jackson Harper  <jackson@ximian.com>
15111
15112         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
15113
15114 2005-01-20  Jackson Harper  <jackson@ximian.com>
15115
15116         * TreeView.cs: Set the bounds for nodes properly. They were
15117         getting screwed up when checkboxes were not enabled, but images
15118         were.
15119
15120 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
15121
15122         * ListBox.cs:
15123                 - Owner draw support
15124                 - Fixes
15125                 
15126 2005-01-20  Jackson Harper  <jackson@ximian.com>
15127
15128         * XplatUIStructs.cs: More misc keys
15129         * X11Keyboard.cs: Ignore some control keys.
15130
15131 2005-01-20  Jackson Harper  <jackson@ximian.com>
15132
15133         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
15134         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
15135
15136 2005-01-19  Peter Bartok  <pbartok@novell.com>
15137
15138         * Control.cs: Un-selecting the control when it is loosing focus
15139
15140 2005-01-19  Jackson Harper  <jackson@ximian.com>
15141
15142         * TreeView.cs: Hook up to the text controls leave event so we can
15143         end editing when the users clicks outside the text box.
15144         
15145 2005-01-19  Jackson Harper  <jackson@ximian.com>
15146
15147         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
15148         get set in the conversion array.
15149
15150 2005-01-19  Peter Bartok  <pbartok@novell.com>
15151
15152         * Application.cs (ModalRun): Added a call to CreateControl to ensure
15153           focus is properly set
15154         * Button.cs:
15155           - Added missing attributes
15156           - removed styles, those are already set in the base class
15157         * ButtonBase.cs:
15158           - Added missing attributes
15159           - Added clip window styles
15160         * CheckBox.cs: Added missing attributes
15161         * CommonDialog.cs:
15162           - FormParentWindow.CreateParams: Added required clip styles
15163         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
15164           also filters modifier keys
15165         * MessageBox.cs:
15166           - Added assignment of Accept and Cancel button to enable Enter
15167             and Esc keys in MessageBox dialogs
15168           - FormParentWindow.CreateParams: Added required clip styles
15169         * RadioButton.cs: Added missing attributes
15170         * TextControl.cs: No longer draws selection if control does not
15171           have focus
15172         * TextBoxBase.cs:
15173           - Now draws simple rectangle around test area to make it obvious
15174             there's a control. This is a hack until we properly support borders
15175           - A few simple fixes to support selections better, now erases selected
15176             text when typing, and resets selection when using movement keys
15177
15178 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
15179
15180         * UpDownBase.cs: Added some new properties.
15181
15182         * DomainUpDown.cs: Implement a lot to get my test working.
15183
15184 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
15185
15186         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
15187
15188 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
15189
15190         * OSXStructs (WindowAttributes): Fixed csc complaints
15191
15192 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
15193
15194         * XplayUIOSX.cs:
15195           OSXStructs.cs: Initial refactor to move enums and consts into
15196           OSXStructs and use them in the driver for greater readability.
15197
15198 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
15199
15200         * XplatUIOSX.cs: Initial support for Standard Cursors.
15201         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
15202
15203 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
15204
15205         * ComboBox.cs: ability to change style when the ctrl is already
15206         created, missing methods and events, bug fixes, signature fixes
15207
15208 2005-01-19  Peter Bartok  <pbartok@novell.com>
15209
15210         * Cursors.cs (ctor): Added ctor to fix signature
15211
15212 2005-01-18  Peter Bartok  <pbartok@novell.com>
15213
15214         * Button.cs: Implemented DoubleClick event
15215         * ButtonBase.cs:
15216           - Fixed keyboard handling to behave like MS, where the press of
15217             Spacebar is equivalent to a mousedown, and the key release is
15218             equivalent to mouseup. Now a spacebar push will give the same
15219             visual feedback like a mouse click.
15220           - Added missing attributes
15221           - Added ImeModeChanged event
15222           - Added support for generating DoubleClick event for derived classes
15223         * CheckBox.cs:
15224           - Implemented DoubleClick event
15225           - Added missing attributes
15226         * CommonDialog.cs: Added missing attribute
15227         * ContextMenu.cs: Added missing attributes
15228         * RadioButton.cs:
15229           - AutoChecked buttons do not allow to be unselected when clicked
15230             (otherwise we might end up with no selected buttons in a group)
15231           - Added missing attributes
15232           - Implemented DoubleClickEvent
15233         * ThreadExceptionDialog.cs: Enabled TextBox code
15234
15235 2005-01-18  Peter Bartok  <pbartok@novell.com>
15236
15237         * Form.cs: Removed debug output
15238         * Button.cs: Added support for DoubleClick method
15239
15240 2005-01-18  Peter Bartok  <pbartok@novell.com>
15241
15242         * Form.cs:
15243           - Added method to parent window that allows triggering size
15244             calculations when a menu is added/removed
15245           - set_Menu: Cleaned up mess from early days of Form and Control,
15246             now properly triggers a recalc when a menu is added/removed
15247           - Added case to select form itself as focused form if no child
15248             controls exist
15249           - Added PerformLayout call when showing dialog, to ensure properly
15250             placed controls
15251         * Control.cs:
15252           - Select(): Made internal so Form can access it
15253           - Focus(): Only call Xplat layer if required (avoids loop), and sets
15254             status
15255         * Application.cs (Run): Removed hack and calls PerformLayout instead
15256           to trigger calculation when Form becomes visible
15257
15258 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
15259
15260         * ComboBox.cs: fixes for ownerdraw
15261
15262 2005-01-18  Peter Bartok  <pbartok@novell.com>
15263
15264         * TextControl.cs:
15265           - Sentinel is no longer static, each Document gets it's own, this
15266             avoids locking or alternatively overwrite problems when more
15267             than one text control is used simultaneously.
15268           - Switched to use Hilight and HilightText brushes for text selection
15269
15270         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
15271
15272 2005-01-18  Peter Bartok  <pbartok@novell.com>
15273
15274         * Control.cs:
15275           - Hooked up the following events:
15276                 o ControlAdded
15277                 o ControlRemoved
15278                 o HandleDestroyed
15279                 o ImeModeChanged
15280                 o ParentChanged
15281                 o TabStopChanged
15282                 o Invalidated
15283                 o SystemColorsChanged
15284                 o ParentFontChanged
15285                 o Move
15286           - Removed debug output
15287           - Added a call to the current theme's ResetDefaults when a color change
15288             is detected
15289         * Form.cs: Now setting the proper ImeMode
15290         * Theme.cs: Defined a method to force recreation of cached resources
15291           and rereading of system defaults (ResetDefaults())
15292         * ThemeWin32Classic.cs: Added ResetDefaults() stub
15293
15294 2005-01-17  Peter Bartok  <pbartok@novell.com>
15295
15296         * Control.cs: Added missing attributes
15297
15298 2005-01-17  Jackson Harper  <jackson@ximian.com>
15299
15300         * TreeNode.cs: Implement editing. Add missing properties selected
15301         and visible.
15302         * TreeView.cs: Implement node editing. Also some fixes to use
15303         Invalidate (invalid area) instead of Refresh when selecting.
15304
15305 2005-01-17  Peter Bartok  <pbartok@novell.com>
15306
15307         * Control.cs:
15308           - Implemented InvokeGotFocus() method
15309           - Implemented InvokeLostFocus() method
15310           - Implemented InvokePaint() method
15311           - Implemented InvokePaintBackground() method
15312           - Implemented InvokeClick() method
15313           - Implemented FindForm() method
15314           - Implemented RectangleToClient() method
15315           - Implemented ClientToRectangle() method
15316           - Implemented ResetBackColor() method
15317           - Implemented ResetCursor() method
15318           - Implemented ResetFont() method
15319           - Implemented ResteForeColor() method
15320           - Implemented ResetImeMode() method
15321           - Implemented ResetLeftToRight() method
15322           - Implemented ResetText() method
15323           - Implemented Scale() methods
15324           - Implemented ScaleCore() method
15325           - Implemented Update() method
15326           - Removed unused variables
15327           - Stubbed AccessibilityNotifyClients and
15328             ControlAccessibleObject.NotifyClients() methods (dunno what to do
15329             with those yet)
15330           - Now setting proper default for RightToLeft property
15331           - Fixed bug in SetClientSizeCore that would cause windows to get
15332             really big
15333           - Now sending Click/DoubleClick events
15334           - Now selecting controls when left mouse button is clicked on
15335             selectable control
15336         * AccessibleEvents.cs: Added
15337         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
15338         * XplatUIOSX.cs: Stubbed UpdateWindow() method
15339         * XplatUIWin32.cs: Implemented UpdateWindow() method
15340         * XplatUIX11.cs: Implemented UpdateWindow() method
15341         * Form.cs: Removed stray semicolon causing CS0162 warning
15342         * ThemeWin32Classic.cs: Fixed unused variable warnings
15343         * ScrollableControl.cs: Now calls base method for ScaleCore
15344         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
15345           style to avoid interference with internal click handler (which is
15346           different than standard Control click handling)
15347         * RadioButton.cs:
15348           - Now unchecks all sibling radio buttons when control is
15349             selected (Fixes #68756)
15350           - Removed internal tabstop variable, using the one inherited from
15351             Control
15352
15353 2005-01-17  Jackson Harper  <jackson@ximian.com>
15354
15355         * NavigateEventArgs.cs: Fix base type.
15356         * LinkLabel.cs: Sig fix
15357         
15358 2005-01-17  Jackson Harper  <jackson@ximian.com>
15359
15360         * TreeView.cs: Only invalidate the effected nodes bounds when
15361         selecting nodes.
15362
15363 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
15364
15365         * XplatUIWin32.cs: fixes Win32 marshaling
15366         * XplatUIX11.cs: fixes method signature
15367
15368 2005-01-17  Peter Bartok  <pbartok@novell.com>
15369
15370         * XplatUIX11.cs: Clean up resources when we no longer need them
15371
15372 2005-01-17  Peter Bartok  <pbartok@novell.com>
15373
15374         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
15375           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
15376           and DestroyCursor() methods.
15377         * Cursor.cs: Partially implemented, now supports standard cursors;
15378           still contains some debug code
15379         * Cursors.cs: Implemented class
15380         * Control.cs:
15381           - WndProc(): Added handling of WM_SETCURSOR message, setting the
15382             appropriate cursor
15383           - Implemented Cursor property
15384           - Replaced break; with return; more straightforwar and possibly
15385             faster
15386           - Now properly setting the result for WM_HELP
15387         * X11Structs.cs: Added CursorFontShape enum
15388         * XplatUIStructs.cs:
15389           - Added StdCursor enum (to support DefineStdCursor() method)
15390           - Added HitTest enum (to support sending WM_SETCURSOR message)
15391         * XplatUIX11.cs:
15392           - Now sends the WM_SETCURSOR message
15393           - Implemented new cursor methods
15394         * XplatUIOSX.cs: Stubbed new cursor methods
15395         * XplatUIWin32.cs:
15396           - Implemented new cursor methods
15397           - Added GetSystemMetrics function and associated enumeration
15398
15399 2005-01-15  Peter Bartok  <pbartok@novell.com>
15400
15401         * Control.cs:
15402           - WndProc(): Now handles EnableNotifyMessage
15403           - SelectNextControl(): Fixed bug where if no child or sibling
15404             controls exist we looped endlessly
15405
15406 2005-01-14  Jackson Harper  <jackson@ximian.com>
15407
15408         * TreeView.cs: Recalculate the tab pages when a new one is added
15409         so that the proper bounding rects are created.
15410
15411 2005-01-14  Jackson Harper  <jackson@ximian.com>
15412
15413         * TreeView.cs: Draw a gray box instead of a grip in the lower
15414         right hand corner when there are both horizontal and vertical
15415         scroll bars.
15416
15417 2005-01-14  Jackson Harper  <jackson@ximian.com>
15418
15419         * Control.cs: When erasing backgrounds use FromHwnd instead of
15420         FromHdc when there is a NULL wparam. This occurs on the X driver.
15421         * XplatUIX11.cs: Set the wparam to NULL.
15422
15423 2005-01-13  Jackson Harper  <jackson@ximian.com>
15424
15425         * PictureBox.cs: Implement missing methods (except ToString, need
15426         to test that on windows) and events. When visibility is changed we
15427         need to redraw the image because the buffers are killed. When size
15428         is changed refresh if the sizemode needs it.
15429
15430 2005-01-13  Peter Bartok  <pbartok@novell.com>
15431
15432         * Control.cs (SelectNextControl): Was using wrong method to select
15433           a control
15434
15435 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
15436
15437         * ComboBox.cs: fixes dropstyle
15438
15439 2005-01-13  Peter Bartok  <pbartok@novell.com>
15440
15441         * Form.cs:
15442           - Implemented Select() override
15443           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
15444           - Now sets keyboard focus on startup
15445         * Control.cs (SelectNextControl): Now properly handles directed=true
15446         * TextBoxBase.cs:
15447           - WndProc: Now passes tab key on to base if AcceptTabChar=false
15448           - Added (really bad) focus rectangle (mostly for testing)
15449         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
15450           to enforce redraw on focus changes
15451         * ContainerControl.cs:
15452           - Fixed detection of Shift-Tab key presses
15453           - Fixed traversal with arrow keys
15454         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
15455           gonna keep this or if it's complete yet
15456         
15457 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
15458
15459         * ComboBox.cs: missing properties, fixes
15460
15461 2005-01-13  Peter Bartok  <pbartok@novell.com>
15462
15463         * Panel.cs (ctor): Setting Selectable window style to off
15464         * Splitter.cs (ctor): Setting Selectable window style to off
15465         * GroupBox.cs (ctor): Setting Selectable window style to off
15466         * Label.cs (ctor): Setting Selectable window style to off
15467
15468 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
15469
15470         * UpDownBase.cs (InitTimer): If the timer has been already
15471         created, enable it.
15472
15473         Use a TextBox instead of a Label.
15474
15475 2005-01-12  Jackson Harper  <jackson@ximian.com>
15476
15477         * TreeView.cs: Refresh the tree after sorting the nodes. Always
15478         draw the connecting node lines (when ShowLines is true).
15479         * TreeNode.cs: The nodes index can now be updated. This is used
15480         when a node collection is sorted.
15481         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
15482         insert or an existing unsorted node collection can be sorted.
15483         
15484 2005-01-12  Peter Bartok  <pbartok@novell.com>
15485
15486         * ContainerControl.cs: Implemented ProcessDialogKeys()
15487
15488 2005-01-12  Peter Bartok  <pbartok@novell.com>
15489
15490         * Control.cs:
15491           - Implemented SelectNextControl() method
15492           - Several focus related bug fixes
15493           - Fixed Docking calculations to match MS documentation and
15494             behaviour
15495
15496 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
15497
15498         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
15499         bug fixes
15500
15501 2005-01-12  Peter Bartok  <pbartok@novell.com>
15502
15503         * Control.cs:
15504           - Fixed broken Contains() method
15505           - Implemented GetNextControl() method. Finally. This is the pre-
15506             requisite for focus handling.
15507
15508 2005-01-12  Peter Bartok  <pbartok@novell.com>
15509
15510         * OSXStrucs.cs: Added
15511
15512 2005-01-12  Peter Bartok  <pbartok@novell.com>
15513
15514         * XplatUIWin32.cs:
15515           - Removed PeekMessageFlags
15516           - Implemented SetWindowStyle() method
15517         * XplatUIStructs.cs: Added PeekMessageFlags
15518         * X11Structs: Added missing border_width field to XWindowChanges struct
15519         * XplatUIX11.cs:
15520           - PeekMessage: Now throws exception if flags which are not yet
15521             supported are passed
15522           - Implemented SetWindowStyle() method
15523           - Fixed SetZOrder to handle AfterHwnd properly
15524         * XplatUI.cs: Added SetWindowStyle() method
15525         * XplatUIDriver.cs: Added SetWindowStyle() abstract
15526         * Control.cs:
15527           - Implemented UpdateStyles() method
15528           - Implemented UpdateZOrder() method
15529         * XplatUIOSX.cs: Added SetWindowStyle() stub
15530
15531 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
15532
15533         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
15534         button mouse).
15535
15536
15537 2005-01-11  Jackson Harper  <jackson@ximian.com>
15538
15539         * TreeView.cs: Still need to draw lines to siblings even if out of
15540         the current node is out of the clip.
15541
15542 2005-01-11  Jackson Harper  <jackson@ximian.com>
15543
15544         * TreeView.cs: When setting the hbar/vbar/grip position use
15545         SetBounds so that perform layout is only called once. Also suspend
15546         and resume layout so layout is only done once for all controls.
15547         - Removed some debug fluff
15548         * SizeGrip.cs: Call base implmentation in overriding methods.
15549         - When visibility is changed the drawing buffers are killed so we
15550         need to redraw.
15551
15552 2005-01-11  Jackson Harper  <jackson@ximian.com>
15553
15554         * TreeView.cs: Calculate the open node count while drawing. This
15555         saves us an entire tree traversal for every paint operation. Use
15556         a member var for the open node count so less vars are passed around.
15557
15558 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
15559
15560         * MonthCalendar.cs:
15561         - fixed selection to use mousemove, not mouse polling on timer
15562         * ThemeWin32Classic.cs
15563         - removed redundant unused variable "no_more_content"
15564         
15565 2005-01-11  Peter Bartok  <pbartok@novell.com>
15566
15567         * XplatUIX11.cs (DoEvents): Needs to return when no more events
15568           are pending, so it now calls PeekMessage instead of GetMessage;
15569           implemented a incomplete version of PeekMessage
15570         
15571 2005-01-11  Peter Bartok  <pbartok@novell.com>
15572
15573         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
15574           I18n issues
15575         * TextBoxBase.cs: Added sending of TextChanged event
15576
15577 2005-01-10  Jackson Harper  <jackson@ximian.com>
15578
15579         * TreeView.cs: Try not to draw outside the clipping rectangle on
15580         each node element.
15581
15582 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
15583
15584         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
15585
15586 2005-01-10  Jackson Harper  <jackson@ximian.com>
15587
15588         * TreeView.cs:
15589         - Implement fast scrolling. Now only the newly
15590         exposed nodes are drawn and the old image is moved using the
15591         XplatUI::ScrollWindow method.
15592         - Factor in height of nodes when calculating whether or not the
15593         node is in the clipping rect.
15594
15595 2005-01-10  Jackson Harper  <jackson@ximian.com>
15596
15597         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
15598
15599 2005-01-10  Peter Bartok  <pbartok@novell.com>
15600
15601         * Application.cs: Added temporary hack to resolve all our resize
15602           required issues on startup. This will get fixed properly at
15603           some point in the future
15604
15605 2005-01-10  Jackson Harper  <jackson@ximian.com>
15606
15607         * SizeGrip.cs: New internal class that is used as a sizing
15608         grip control...hence the name.
15609
15610 2005-01-10  Peter Bartok  <pbartok@novell.com>
15611
15612         * Control.cs: Implemented proper TabIndex handling, now assigning
15613           a tabindex when a control is added to a container
15614         * GroupBox.cs (ctor): Now sets the Container style bit, required
15615           for Control.GetNextControl()
15616
15617 2005-01-09  Jackson Harper  <jackson@ximian.com>
15618
15619         * TextBoxBase.cs: Clear window when scrolling (fixes build).
15620
15621 2005-01-09  Peter Bartok <pbartok@novell.com>
15622
15623         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
15624           XplatUIX11.cs: Added ability to control ScrollWindow expose and
15625           an overload for ScrollWindow to allow only scrolling a rectangle
15626
15627 2005-01-09  Peter Bartok <pbartok@novell.com>
15628
15629         * Form.cs:
15630           - Implemented SetDesktopBounds method
15631           - Implemented SetDesktopLocation method
15632
15633 2005-01-08  Jackson Harper  <jackson@ximian.com>
15634
15635         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
15636         the node count has changed, this removes to VScroll::Refresh calls
15637         when drawing.
15638
15639 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
15640
15641         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
15642
15643 2005-01-07  Jackson Harper  <jackson@ximian.com>
15644
15645         * TreeNode.cs: Just update the single node when it is
15646         checked. Don't refresh after toggling, the Expand/Collapse already
15647         handles this.
15648         * TreeView.cs: Respect clipping a little more when drawing. Try
15649         not to redraw things that don't need to be redrawn. Just hide the
15650         scrollbars when they are no longer needed instead of removing
15651         them, so they don't have to be created again and again.
15652         
15653 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
15654
15655         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
15656         coordinates to window space to place the caret properly, FIXED.
15657         Implement GetWindowState & SetWindowState
15658
15659 2005-01-06  Peter Bartok <pbartok@novell.com>
15660
15661         * Form.cs:
15662           - Implemented ClientSize property
15663           - Implemented DesktopBounds property
15664           - Implemented DesktopLocation property
15665           - Implemented IsRestrictedWindow property
15666           - Implemented Size property
15667           - Implemented TopLevel property
15668           - Implemented FormWindowState property
15669         * Control.cs:
15670           - Implemented GetTopLevel() method
15671           - Implemented SetTopLevel() method
15672         * X11Structs.cs (Atom):
15673           - Added AnyPropertyType definition
15674           - Added MapState definiton and updated XWindowAttribute struct
15675         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
15676         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
15677         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
15678         * XplatUIWin32.cs:
15679           - Implemented GetWindowState() and SetWindowState() methods
15680           - Fixed Win32GetWindowLong return type
15681         * XplatUIX11.cs:
15682           - Introduced central function for sending NET_WM messages
15683           - Implemented GetWindowState() and SetWindowState() methods
15684         * TextBoxBase.cs (set_Lines):
15685           - Now uses Foreground color for text added via Text property (Duh!)
15686           - Added code to remember programmatically requested size (fixes
15687             behaviour when Multiline is set after Size)
15688           - Added AutoSize logic
15689
15690 2005-01-06  Jackson Harper  <jackson@ximian.com>
15691
15692         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
15693
15694 2005-01-06  Jackson Harper  <jackson@ximian.com>
15695
15696         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
15697         set to less then 0.
15698
15699 2005-01-06  Jackson Harper  <jackson@ximian.com>
15700
15701         * ScrollableControl.cs: Lazy init the scrollbars.
15702         
15703 2005-01-06  Jackson Harper  <jackson@ximian.com>
15704
15705         * Theme.cs: Speed up getting pens and solid brushes, by using
15706         their ARGB as a hash instead of tostring and not calling Contains.
15707
15708 2005-01-06  Peter Bartok <pbartok@novell.com>
15709
15710         * Form.cs:
15711           - Implemented OnActivated and OnDeactivate event trigger
15712           - Implemented Activate() method
15713           - Fixed ShowDialog() to activate the form that was active before
15714             the dialog was shown
15715         * XplatUIX11.cs:
15716           - Added global active_window var that tracks the currently active
15717             X11 window
15718           - Now always grabs Property changes from the root window to always
15719             catch changes on the active window property
15720           - Added code to PropertyNotify handler to send Active/Inactive
15721             messages when state changes. This puts X11 and Win32 en par on
15722             WM_ACTIVATE notifications (except for double notifications when
15723             the user clicks away from our modal window to another one of our
15724             windows)
15725
15726 2005-01-05  Jackson Harper  <jackson@ximian.com>
15727
15728         * ImageList.cs: Implment ctor
15729
15730 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
15731
15732         * XplatUIOSX.cs: Implement Activate/SetTopmost
15733
15734 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
15735
15736         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
15737
15738 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
15739
15740         * XplatUIOSX.cs: Implement GetActive/SetFocus.
15741
15742 2005-01-05  Peter Bartok <pbartok@novell.com>
15743
15744         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
15745           XplatUIOSX.cs: Added GetActive method to return the currently
15746           active window for the application (or null, if none is active)
15747         * Form.cs:
15748           - Implemented ActiveForm
15749           - Commented out owner assignment for modal dialogs (causes problems
15750             on Win32, since the owner will be disabled)
15751           - Reworked some Active/Focus handling (still incomplete)
15752         * CommonDialog.cs: Commented out owner assignment for modal dialogs
15753           (causes problems on Win32, since the owner will be disabled)
15754         * IWin32Window: Added ComVisible attribute
15755
15756 2005-01-05  Peter Bartok <pbartok@novell.com>
15757
15758         * ToolTip.cs (WndProc): Enable setting focus now that we have the
15759           required XplatUI functions.
15760
15761 2005-01-05  Peter Bartok <pbartok@novell.com>
15762
15763         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
15764           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
15765           to implement focus and activation handling; still incomplete and
15766           with debug output
15767
15768 2005-01-04  Peter Bartok <pbartok@novell.com>
15769
15770         * TextBoxBase.cs: Changed access level for Document property to
15771           match switch to internal for TextControl
15772
15773 2005-01-04  Peter Bartok <pbartok@novell.com>
15774
15775         * AccessibleObject: Added ComVisible attribute
15776
15777 2005-01-04  Jackson Harper  <jackson@ximian.com>
15778
15779         * X11Keyboard.cs: Remove unneeded var.
15780
15781 2005-01-04  Jackson Harper  <jackson@ximian.com>
15782
15783         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
15784         but PAINT.
15785         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
15786         ClientMessage. This makes apps exit cleanly (more often).
15787         
15788 2005-01-04  Jackson Harper  <jackson@ximian.com>
15789
15790         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
15791         handling focus, return correct colors and fonts,
15792         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
15793         handle selection, horizontal scrolling, and mouse interaction.
15794
15795 2005-01-04  Peter Bartok <pbartok@novell.com>
15796
15797         * ICommandExecutor.cs: Added
15798         * IDataGridColumnStyleEditingNotificationService.cs: Added
15799         * IFeatureSupport.cs: Added
15800         * IFileReaderService.cs: Added
15801         * IDataObject.cs: Added ComVisible attribute
15802         * AmbientProperties.cs: Added
15803         * BaseCollection.cs: Added missing attributes
15804         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
15805         * BaseCollection.cs: Added missing attributes
15806         * Binding.cs: Added TypeConverter attribute
15807         * BindingContext.cs: Added DefaultEvent attribute
15808         * BindingsCollection.cs: Added DefaultEvent attribute
15809         * Button.cs: Added DefaultValue attribute
15810         * DragEventArgs.cs: Added ComVisible attribute
15811         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
15812         * KeyEventArgs.cs: Added ComVisible attribute
15813         * KeyPressEventArgs.cs: Added ComVisible attribute
15814         * MouseEventArgs.cs: Added ComVisible attribute
15815         * NavigateEventArgs.cs: Added
15816         * NavigateEventHandler.cs: Added
15817         * FeatureSupport.cs: Added
15818         * OSFeature.cs: Added
15819         * Theme.cs: Added abstract Version property to support OSFeature
15820         * ThemeWin32Classic.cs: Added Version property to
15821           support OSFeature.Themes
15822         * ProgressBar.cs: Removed OnPaintBackground override, not required since
15823           the proper styles to avoid background drawing are set, also doesn't
15824           match MS signature
15825         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
15826         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
15827         * ScrollEventArgs.cs: Added ComVisible attribute
15828         * SplitterEventArgs.cs: Added ComVisible attribute
15829         * AccessibleSelection.cs: Added Flags attribute
15830         * Appearance.cs: Added ComVisible attribute
15831         * Border3DSide.cs: Added ComVisible attribute
15832         * Border3DStyle.cs: Added ComVisible attribute
15833         * BorderStyle.cs: Added ComVisible attribute
15834         * DragAction.cs: Added ComVisible attribute
15835         * ErrorBlinkStyle.cs: Added
15836         * ScrollEventType.cs: Added ComVisible attribute
15837         * AnchorStyles.cs: Added Editor attribute
15838         * DockStyle.cs: Added Editor attribute
15839         * HorizontalAlignment.cs: Added ComVisible attribute
15840         * HelpEventArgs.cs: Added ComVisible attribute
15841         * PaintEventArgs.cs: Added IDisposable
15842
15843 2005-01-04  Peter Bartok <pbartok@novell.com>
15844
15845         * TextControl.cs: Switched Line, LineTag and Document classes to
15846           internal
15847
15848 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
15849
15850         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
15851         Simple mode, fixes, IntegralHeight, etc.
15852
15853 2005-01-04  Peter Bartok <pbartok@novell.com>
15854
15855         * TextBoxBase.cs: Using proper font variable now
15856
15857 2005-01-04  Peter Bartok <pbartok@novell.com>
15858
15859         * Form.cs (ShowDialog): Set parent to owner, if provided
15860         * GroupBox.cs: Removed unused vars
15861         * TextControl.cs:
15862           - Added GetHashCode() for Document and LineTag classes
15863           - Removed unused variables
15864           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
15865             to allow translation between continuous char position and line/pos
15866         * CheckBox.cs: Removed vars that are provided by base class
15867         * RadioButton.cs: Removed vars that are provided by base class, added
15868           new keyword where required
15869         * LinkLabel.cs: Added new keyword where required
15870         * Control.cs (WndProc): Removed unused variable
15871         * TextBoxBase.cs:
15872           - Finished SelectionLength property
15873           - Implemented SelectionStart property
15874           - Implemented Text property
15875           - Removed unused vars
15876         * MessageBox.cs: Added new keyword where required
15877         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
15878           WndProc signature
15879         * MenuAPI.cs: Added new keyword where required
15880         * ButtonBase.cs: Removed vars that are provided by base class, added
15881           new keyword where required
15882         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
15883           argument to double, to allow compiling with csc 2.0 (Atsushi ran
15884           into this)
15885         * Application.cs (Run): Now triggers the ThreadExit event
15886         * CommonDialog.cs: Added new keyword where required; now properly sets
15887           parent (owner) for dialog
15888         * XplatUIX11.cs: Commented out unused vars
15889         * StatusBar.cs: Fixed signature for Text property
15890         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
15891
15892 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
15893
15894         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
15895         TrackBar.cs, MonthCalendar.cs: remove unused vars
15896
15897 2005-01-03  Jackson Harper  <jackson@ximian.com>
15898
15899         * ThemeWin32Classic.cs:
15900         * X11Keyboard.cs: Remove unused vars.
15901
15902 2005-01-03  Peter Bartok  <pbartok@novell.com>
15903
15904         * TextBox.cs:
15905           - set_Text: Tied into TextControl
15906           - set_TextAlignment: Tied into TextControl
15907         * TextControl.cs:
15908           - Added alignment properties and implemented alignment handling
15909             and drawing (still has a bug, not generating proper expose events)
15910           - Added new Line() constructor to allow passing the line alignment
15911           - Fixed selection setting, properly handling end<start now
15912           - Added aligment considerations to RecalculateDocument()
15913         * TextBoxBase.cs:
15914           - Now properly enforces control height for single line controls
15915           - Added support for CharacterCasing
15916           - Added IsInputKey override
15917           - Fixed Keys.Enter logic
15918           - Added SetBoundsCore override
15919           - Fixed mouse selection handling
15920
15921 2005-01-03  Jackson Harper  <jackson@ximian.com>
15922
15923         * TreeView.cs:
15924           - Collapse and uncheck all nodes when CheckBoxes is disabled.
15925           - Checkboxes are always aligned to the bottom of the node,
15926           regardless of item height.
15927           - Use the node bounds to draw the text so we can center it when
15928           the item height is greater then the font height.
15929           - Node::Bounds are only the text part of the node.
15930         * TreeNode.cs: New method to combine collapsing and unchecking all
15931           nodes recursively.
15932
15933 2005-01-02  Jackson Harper  <jackson@ximian.com>
15934
15935         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
15936         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
15937         tree when a check is changed. TODO: Only refresh the checked node.
15938
15939 2004-12-30  Jackson Harper  <jackson@ximian.com>
15940
15941         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
15942         * TreeNode.cs: When collapsing make sure to never collapse the
15943         root node.
15944
15945 2004-12-29  Jackson Harper  <jackson@ximian.com>
15946
15947         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
15948         
15949 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
15950
15951         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
15952
15953 2004-12-28  Peter Bartok  <pbartok@novell.com>
15954
15955         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
15956           not yet assigned
15957
15958 2004-12-28  Peter Bartok  <pbartok@novell.com>
15959
15960         * Control.cs (WndProc): Added WM_HELP handler, now generates
15961           HelpRequested event
15962         * Form.cs: Added HelpButton property and required support code
15963         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
15964
15965 2004-12-28  Peter Bartok  <pbartok@novell.com>
15966
15967         * CommonDialog.cs:
15968           - Made DialogForm.owner variable internal
15969           - Added check to ensure owner form is set before setting
15970             owner properties in CreateParams
15971
15972 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
15973
15974         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
15975           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
15976           GetCursorPos.  Fix major visibility issues.  Rework the windowing
15977           system to support borderless/titleless windows (implements menus).
15978           Fix GetWindowPos.  Implement initial background color support for
15979           views.
15980
15981 2004-12-28  Peter Bartok  <pbartok@novell.com>
15982
15983         * Form.cs (get_CreateParams): Make sure we have an owner before using
15984           the owner variable. Implement proper default if no owner exists
15985
15986 2004-12-28  Peter Bartok  <pbartok@novell.com>
15987
15988         * In preparation for making Managed.Windows.Forms the default build target
15989           for System.Windows.Forms, the following stubbed files were added.
15990           Dialogs are currently being implemented by contributors and are only
15991           short-term place holders.
15992         * ColorDialog.cs: Initial check-in (minmal stub)
15993         * DataGrid.cs: Initial check-in (minimal stub)
15994         * DataGridLineStyle.cs: Initial check-in (minimal stub)
15995         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
15996         * DataGridTableStyle.cs: Initial check-in (minimal stub)
15997         * FontDialog.cs: Initial check-in (minimal stub)
15998         * FileDialog.cs: Initial check-in (minimal stub)
15999         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
16000         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
16001         * OpenFileDialog: Initial check-in (minimal stub)
16002         * IComponentEditorPageSite.cs: Initial check-in
16003         * Splitter.cs: Initial check-in (for Jackson)
16004         * SplitterEventArgs.cs: Initial check-in (for Jackson)
16005         * SplitterEventHandler.cs: Initial check-in (for Jackson)
16006         * TextBox.cs: Initial check-in; still needs some wiring to
16007           TextControl backend
16008         * Form.cs: Implemented ControlBox property
16009         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
16010         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
16011         * TextControl.cs: Added selection functionality; added todo header
16012         * TextBoxBase.cs:
16013           - Implemented Lines property
16014           - Implemented TextHeight property
16015           - Implemented SelectedText property
16016           - Implemented SelectionLength property
16017           - Implemented SelectAll method
16018           - Implemented ToString method
16019           - Removed and cleaned up some debug code
16020           - Implemented (still buggy) mouse text selection
16021
16022 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
16023
16024         * ComboBox.cs: Complete DropDownList implementation, fixes.
16025
16026 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
16027
16028         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
16029         * ComboBoxStyle.cs: ComboBoxStyle enum
16030         * ComboBox.cs: Initial work on ComboBox control
16031
16032 2004-12-21  Peter Bartok  <pbartok@novell.com>
16033
16034         * Control.cs (ctor, CreateParams): Moved setting of is_visible
16035           forward so that anything that creates a window gets the default,
16036           also no longer uses Visible property in CreateParams to avoid
16037           walking up the parent chain and possibly get the wrong visible
16038           status. Fixed IsVisible to no longer walk up to the parent.
16039
16040 2004-12-21  Peter Bartok  <pbartok@novell.com>
16041
16042         * Form.cs (ShowDialog): Unset modality for the proper window
16043  
16044 2004-12-20  Peter Bartok  <pbartok@novell.com>
16045
16046         * CommonDialog.cs: Initial check-in
16047
16048 2004-12-20  Peter Bartok  <pbartok@novell.com>
16049
16050         * Control.cs (Visible): Now uses the parent window instead of the
16051           client area window for the property
16052
16053         * Form.cs
16054           - ShowDialog(): Now uses the proper window for modality
16055           - The default visibility state for the form parent is now false. This
16056             will prevent the user from seeing all the changes to the form and
16057             its controls before the application hits Application.Run()
16058           - Removed some stale commented out code
16059
16060         * NativeWindow.cs:
16061           - Added FindWindow() method to have a method to check for existence
16062             of a window handle
16063           - Added ability to override default exception handling (for example
16064             when debugging with VS.Net; to do this the ExternalExceptionHandler
16065             define must be set
16066           - Removed some useless debug output
16067
16068         * XplatUIX11.cs:
16069           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
16070             not working as expected
16071           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
16072             property to allow switching back to the modal window if focus is
16073             given to another one of our windows (Application Modal)
16074           - Now only sets override_redirect if we create a window
16075             without WS_CAPTION
16076           - Moved EventMask selection before mapping of newly created window
16077             so we can catch the map event as well
16078           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
16079           - Added various Atom related DllImports
16080           - Implemented Exit() method
16081           - .ctor() : No longer shows window if WS_VISIBLE is not defined
16082             in the CreateParams
16083
16084         * MessageBox.cs: Now properly deals with the FormParent window by
16085           providing an override the FormParent CreateParams property to
16086           set as POPUP instead of OVERLAPPED window.
16087
16088 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
16089
16090         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
16091         Minor code cleanup.
16092
16093 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
16094         
16095         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
16096
16097 2004-12-18  Peter Bartok  <pbartok@novell.com>
16098
16099         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
16100           implementing SetModal() method
16101
16102 2004-12-18  Peter Bartok  <pbartok@novell.com>
16103
16104         * X11Structs.cs (XGCValues): Fixed type of function element
16105         * XplatUI.cs: Added ScrollWindow() method
16106         * XplatUIDriver.cs: Added ScrollWindow() abstract
16107         * XplatUIWin32.cs: Implemented ScrollWindow() method
16108         * XplatUIX11.cs: Implemented ScrollWindow() method
16109         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
16110
16111 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
16112
16113         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
16114         Some more keyboard support (INCOMPLETE)
16115
16116 2004-12-17  Peter Bartok  <pbartok@novell.com>
16117
16118         * TextControl.cs:
16119         - Added color attribute to line tags.
16120         - Added color argument to all functions dealing with tags
16121         - Added color argument support to various functions
16122         - Fixed miss-calculation of baseline/shift in certain circumstances
16123
16124         * TextBoxBase.cs: Added new color option to test code
16125
16126 2004-12-17  Jackson Harper  <jackson@ximian.com>
16127
16128         * TreeNode.cs:
16129         * MonthCalendar.cs: Signature fixes
16130
16131 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
16132
16133         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
16134         keyboard event moved it.  Create a new graphics context for each paint resolves this
16135
16136 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
16137
16138         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
16139         Make caret exist and go blink blink.  Initial keyboard support.
16140         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
16141         works.
16142
16143 2004-12-17  Jackson Harper  <jackson@ximian.com>
16144
16145         * XplatUIStructs.cs: Updated set of virtual keycodes.
16146         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
16147
16148 2004-12-17  Jackson Harper  <jackson@ximian.com>
16149
16150         * XplatUIX11.cs: Prune old keyboard code.
16151
16152 2004-12-17  Jackson Harper  <jackson@ximian.com>
16153
16154         * XplatUIX11.cs: When generating mouse wparams get the modifier
16155         keys from the ModifierKeys property.
16156
16157 2004-12-17  Jackson Harper  <jackson@ximian.com>
16158
16159         * X11Keyboard.cs: Send up/down input when generating
16160         messages. Remove some unused vars.
16161
16162 2004-12-17  Jackson Harper  <jackson@ximian.com>
16163
16164         * TabControl.cs:
16165         * TreeView.cs: get rid of warnings.
16166
16167 2004-12-17  Jackson Harper  <jackson@ximian.com>
16168
16169         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
16170
16171 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
16172
16173         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
16174           CheckedListBox.cs: Implementation
16175
16176 2004-12-17  Peter Bartok  <pbartok@novell.com>
16177
16178         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
16179
16180 2004-12-16  Peter Bartok  <pbartok@novell.com>
16181
16182         * TextControl.cs:
16183           - InsertCharAtCaret(): Fixed start pos fixup
16184           - CaretLine_get: No longer derives the line from the tag, the tag
16185             could be stale if lines in the document have been added or deleted
16186           - RebalanceAfterDelete(): Fixed bug in balancing code
16187           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
16188           - Line.Streamline(): Now can also elminate leading empty tags
16189           - DumpTree(): Added a few more tests and prevented exception on
16190             uninitialized data
16191           - Added Debug section for Combining lines
16192           - Delete(): Now copies all remaining properties of a line
16193           
16194         * TextBoxBase.cs:
16195           - Left mousebutton now sets the caret (and middle button still acts
16196             as formatting tester, which must go away soon)
16197           - Added Debug section for Deleting/Combining lines
16198           - Fixed calculations for UpdateView after Combining lines
16199
16200 2004-12-16  Peter Bartok  <pbartok@novell.com>
16201
16202         * TextControl.cs: Now properly aligns text on a baseline, using the
16203           new XplatUI.GetFontMetrics() method. Simplified several calculations
16204         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
16205           defined
16206
16207 2004-12-16  Peter Bartok  <pbartok@novell.com>
16208
16209         * XplatUI.cs: Added GetFontMetrics() method
16210         * XplatUIDriver.cs: Added GetFontMetrics() abstract
16211         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
16212           into libgdiplus, our private GetFontMetrics function
16213         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
16214         * XplatUIWin32.cs: Implemented GetFontMetrics() method
16215
16216 2004-12-16  Jackson Harper  <jackson@ximain.com>
16217
16218         * XplatUIStruct.cs: Add enum for dead keys
16219         * X11Keyboard.cs: Map and unmap dead keys.
16220
16221 2004-12-16  Jackson Harper  <jackson@ximian.com>
16222
16223         * X11Keyboard.cs: Detect and use the num lock mask.
16224
16225 2004-12-16  Peter Bartok  <pbartok@novell.com>
16226
16227         * Control.cs (CreateGraphics): Added check to make sure the
16228           handle of the window exists before calling Graphics.FromHwnd()
16229
16230 2004-12-16  Peter Bartok  <pbartok@novell.com>
16231
16232         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
16233           contains a lot of code that's not supposed to be there for the
16234           real thing, but required for developing/testing the textbox
16235           backend.
16236
16237 2004-12-16  Peter Bartok  <pbartok@novell.com>
16238
16239         * TextControl.cs:
16240         - Fixed Streamline method
16241         - Added FindTag method to Line
16242         - Added DumpTree method for debugging
16243         - Added DecrementLines() method for deleting lines
16244         - Fixed UpdateView to update the cursor to end-of-line on single-line
16245           updates
16246         - Added PositionCaret() method
16247         - Fixed MoveCaret(LineDown) to move into the last line, too
16248         - Added InsertChar overload
16249         - Fixed InsertChar tag offset calculations
16250         - Added DeleteChar() method
16251         - Added Combine() method for folding lines
16252         - Fixed Delete() method, no longer allocates wasted Line object and
16253           now copies all properties when swapping nodes
16254         - Delete() method now updates document line counter
16255
16256 2004-12-15  Jackson Harper  <jackson@ximian.com>
16257
16258         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
16259         * X11Keyboard.cs: Expose the currently selected modifier keys
16260         through a property.
16261
16262 2004-12-15  Peter Bartok  <pbartok@novell.com>
16263
16264         * TextControl.cs: Initial check-in. Still incomplete
16265
16266 2004-12-15  Jackson Harper  <jackson@ximian.com>
16267
16268         * TreeNode.cs:
16269         * TreeView.cs: Fix build on csc (second time today ;-))
16270
16271 2004-12-15  Jackson Harper  <jackson@ximian.com>
16272
16273         * TreeView.cs: Store the treenodes plus/minus box bounds when it
16274         is calculated and use this for click testing.
16275         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
16276
16277 2004-12-15  Jackson Harper  <jackson@ximian.com>
16278
16279         * TreeView.cs: Pass the nodes image index to the image list when
16280         drawing that image.
16281
16282 2004-12-15  Jackson Harper  <jackson@ximian.com>
16283
16284         * X11Keyboard.cs: Set messages hwnd.
16285         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
16286         post_message calls.
16287
16288 2004-12-15  Jackson Harper  <jackson@ximian.com>
16289
16290         * X11Keyboard.cs: Fix to compile with csc.
16291         
16292 2004-12-15  Jackson Harper  <jackson@ximian.com>
16293
16294         * X11Structs.cs: Add key mask values
16295         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
16296         * X11Keyboard.cs: New file - Extrapolates and interpolates key
16297         down/up foo into WM_CHAR foo
16298         * KeyboardLayouts.cs: Common keyboard layouts
16299         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
16300         post messages into the main queue.
16301
16302 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
16303
16304         * Button.cs: implement ProcessMnemonic
16305         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
16306           brushes everytime
16307         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
16308         * ButtonBase.cs: Show HotkeyPrefix (not the &)
16309
16310 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
16311         
16312         * MonthCalendar.cs: Implemented click-hold for next/previous month
16313           and date selection
16314           
16315 2004-12-11  Peter Bartok  <pbartok@novell.com>
16316
16317         * X11Structs.cs:
16318           - Added XKeyboardState (moved from XplatUIX11.cs)
16319           - Added XCreateGC related enums and structures
16320           - Added GXFunction for XSetFunction
16321
16322         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
16323
16324         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
16325           CaretVisible() calls
16326
16327         * ToolTip.cs: Added code to prevent stealing focus from app windows
16328
16329         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
16330           DestroyCaret, SetCaretPos and CaretVisible)
16331
16332         * XplatUIX11.cs:
16333           - Added implementation for caret functions
16334           - Moved hover variables into a struct, to make it a bit easier
16335             on the eyes and to debug
16336           - Removed XKeyboardState (moved to XplatUIX11.cs)
16337           - Moved Keyboard properties into the properties region
16338
16339         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
16340           call to get a graphics context for our control
16341
16342         * XplatUIOSX.cs: Added empty overrides for the new caret functions
16343
16344         * TreeView.cs: Fixed bug. No matter what color was set it would always
16345           return SystemColors.Window
16346
16347         * XplatUIWin32.cs: Implemented caret overrides
16348
16349 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
16350
16351         * ListBox.cs: fire events, implement missing methods and properties,
16352         sorting.
16353
16354 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
16355
16356         * MonthCalendar.cs: invalidation bug fixing
16357         * ThemeWin32Classic.cs: paint fixing
16358
16359 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
16360
16361         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
16362         prepare the CGContextRef there now.
16363
16364 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
16365
16366         * MonthCalendar.cs:
16367           - optimisationL only invalidate areas that have changed
16368         * ThemeWin32Classic.cs:
16369           - only paint parts that intersect with clip_area
16370
16371 2004-12-09  Peter Bartok  <pbartok@novell.com>
16372
16373         * Application.cs: Undid changes from r37004 which cause problems
16374         on X11
16375
16376 2004-12-09  Ravindra  <rkumar@novell.com>
16377
16378         * ToolBar.cs: Added support for displaying ContextMenu
16379         attached to a button on ToolBar.
16380         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
16381         property.
16382
16383 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
16384
16385         * Label.cs: autosize works in text change and removes unnecessary
16386         invalidate
16387
16388 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
16389
16390         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
16391         remove warnings
16392
16393 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
16394
16395         * XplatUIOSX.cs: Added mouse move/click/grab support
16396         Remove some debugging WriteLines not needed anymore.
16397         Add window resizing/positioning.
16398         Fix visibility on reparenting.
16399
16400 2004-12-08  Peter Bartok  <pbartok@novell.com>
16401
16402         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
16403
16404 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
16405
16406         * XplatUIOSX.cs: Initial checkin
16407         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
16408
16409 2004-12-03  Ravindra <rkumar@novell.com>
16410
16411         * ListView.cs: Added some keybindings and fixed scrolling.
16412         ScrollBars listen to ValueChanged event instead of Scroll
16413         Event. This would let us take care of all changes being
16414         done in the scrollbars' values programmatically or manually.
16415         * ListView.cs (CanMultiselect): Added a check for shift key.
16416         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
16417         * ListViewItem.cs (Clone): Fixed. We need to make a copy
16418         of ListViewSubItemCollection as well.
16419
16420 2004-12-06  Peter Bartok <pbartok@novell.com>
16421
16422         * Control.cs (Parent): Added check and exception to prevent
16423         circular parenting
16424
16425 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
16426
16427         * ListBox.cs: implemented clipping, selection single and multiple,
16428         bug fixing
16429
16430 2004-12-03  Ravindra <rkumar@novell.com>
16431
16432         * ListView.cs (ListView_KeyDown):
16433         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
16434         when CTRL key is pressed.
16435         * ListViewItem.cs (Selected): Fixed setting the property.
16436
16437 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
16438
16439         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
16440
16441         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
16442         MinimizeBox, ShowInTaskbar, TopMost properties.
16443
16444         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
16445         will be implemented).
16446
16447 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
16448
16449         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
16450
16451         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
16452         tests.
16453         
16454         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
16455         
16456         * TreeView.cs: BackColor is Colors.Window.
16457
16458 2004-12-01  Jackson Harper  <jackson@ximian.com>
16459
16460         * TreeView.cs: When resizing the tree if the user is making it
16461         smaller we don't get expose events, so we need to handle adding
16462         the horizontal scrollbar in the size changed handler as well as
16463         the expose handler.
16464
16465 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
16466
16467         * DrawItemState.cs: fixes wrong enum values
16468
16469 2004-12-01  Jackson Harper  <jackson@ximian.com>
16470
16471         * TreeView.cs: Resize the hbar as well as the vbar on resize.
16472
16473 2004-12-01  Jackson Harper  <jackson@ximian.com>
16474
16475         * NodeLabelEditEventArgs.cs:
16476         * NodeLabelEditEventHandler.cs:
16477         * OpenTreeNodeEnumerator.cs:
16478         * TreeNode.cs:
16479         * TreeNodeCollection.cs:
16480         * TreeView.cs:
16481         * TreeViewAction.cs:
16482         * TreeViewCancelEventArgs.cs:
16483         * TreeViewCancelEventHandler.cs:
16484         * TreeViewEventArgs.cs:
16485         * TreeViewEventHandler.cs: Initial implementation.
16486
16487 2004-12-01  Ravindra <rkumar@novell.com>
16488
16489         * ListView.cs (CalculateListView): Fixed scrolling related
16490         calculations. Also, removed some debug statements from other
16491         places.
16492         * ListViewItem.cs: Changed access to 'selected' instance variable
16493         from private to internal.
16494         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
16495
16496 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
16497
16498         * ThemeWin32Classic.cs: remove cache of brush and pens for
16499         specific controls and use the global system, fixes scrollbutton
16500         bugs (for small sizes, disabled, etc)
16501         
16502         * ScrollBar.cs: does not show the thumb for very small controls
16503         (as MS) and allow smaller buttons that the regular size
16504
16505 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
16506
16507         * UpDownBase.cs: Add abstract methods for the interface.
16508         Add new virtual methods (need to be hooked up to TextEntry when it
16509         exists).
16510         Add override methods for most features.
16511         Computes the size, forces the height of the text entry.
16512
16513         * NumericUpDown.cs: Put here the current testing code.
16514
16515         * Set eol-style property on all files that do not have mixed line
16516         endings, to minimize the future problems.  There are still a few
16517         files with mixed endings, and someone should choose whether they
16518         want to move it or not.
16519
16520 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
16521
16522         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
16523         System.Colors
16524         
16525 2004-11-30  Ravindra <rkumar@novell.com>
16526
16527         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
16528         drawing and replaced use of SystemColors by theme colors.
16529         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
16530         * ListView.cs (ListViewItemCollection.Add): Throw exception when
16531         same ListViewItem is being added more than once.
16532
16533 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
16534
16535         * MonthCalendar.cs:
16536           - ControlStyles love to make the control not flicker
16537           
16538 2004-11-30  Peter Bartok  <pbartok@novell.com>
16539
16540         * CharacterCasing.cs: Added
16541
16542 2004-11-29  Peter Bartok  <pbartok@novell.com>
16543
16544         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
16545           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
16546           I am removing these files as they conflict with already completed
16547           work. While it is fantastic to get contributions to MWF, I
16548           respectfully ask that everyone please coordinate their contributions
16549           through mono-winforms-list or #mono-winforms at this time. We're
16550           explicitly avoiding stubbing and don't want controls that don't have
16551           their basic functionality implemented in svn. Please also see
16552           http://www.mono-project.com/contributing/winforms.html
16553
16554
16555 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
16556
16557         * Application.cs (ModalRun): Don't hang after exit.
16558
16559         * Theme.cs: New TreeViewDefaultSize property.
16560
16561         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
16562         with less hardcoded SystemColors constant.
16563         Implemented TreeViewDefaultSize.
16564
16565         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
16566         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
16567
16568
16569 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
16570
16571         * MonthCalendar.cs:
16572           - Fix NextMonthDate and PrevMonthDate click moving calendar
16573
16574 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
16575
16576         * MonthCalendar.cs:
16577           - Fix usage of ScrollChange Property when scrolling months
16578
16579 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
16580
16581         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
16582          - Fixes menu destroying
16583          - Support adding and removing items on already created menus
16584
16585 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
16586
16587         * MonthCalendar.cs:
16588           - Re-worked all bolded dates handling to match win32
16589         * ThemeWin32Classic.cs:
16590           - Fixed rendering with bolded dates
16591
16592 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
16593
16594         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
16595         - Horizontal scroolbar
16596         - Multicolumn
16597         - Fixes
16598
16599
16600 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
16601
16602         * MonthCalendar.cs:
16603           - Fix Usage of MaxSelectionCount from SelectionRange
16604           - Fixed Shift + Cursor Selection
16605           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
16606           - Fixed normal cursor selection to be compat with win32
16607           - Fixed Shift + Mouse Click selection
16608
16609 2004-11-24  Peter Bartok <pbartok@novell.com>
16610
16611         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
16612         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
16613         * XplatUIX11.cs:
16614           - CreatedKeyBoardMsg now updates keystate with Alt key
16615           - Added workaround for timer crash to CheckTimers, Jackson will
16616             develop a proper fix and check in later
16617           - Implemented DispatchMessage
16618           - Removed calling the native window proc from GetMessage (call
16619             now moved to DispatchMessage)
16620
16621         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
16622           the keydata (Fixes bug #69831)
16623
16624         * XplatUIWin32.cs:
16625           - (DispatchMessage): Switched to return IntPtr
16626           - Added DllImport for SetFocus
16627
16628 2004-11-24  Ravindra <rkumar@novell.com>
16629
16630         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
16631         background drawing.
16632         * ListViewItem.cs: Fixed various properties, calculations
16633         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
16634         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
16635         and some internal properties. Fixed MouseDown handler and Paint
16636         method.
16637
16638 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
16639
16640         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
16641
16642 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
16643
16644         * ContainerControl.cs: correct accidental check in of local changes
16645
16646 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
16647
16648         * ThemeWin32Classic.cs:
16649                 - Fixed Drawing Last month in grid (sometimes not showing)
16650         * MonthCalendar.cs:
16651                 - Fixed title width calculation bug (makeing title small)
16652
16653 2004-11-23  Peter Bartok <pbartok@novell.com>
16654
16655         * XplatUIX11.cs:
16656           - Added generation of WM_MOUSEHOVER event
16657           - Added missing assignment of async_method atom
16658           - Fixed WM_ERASEBKGND; now only redraws the exposed area
16659
16660 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
16661
16662         * ThemeWin32Classic.cs:
16663                 - Fixed Drawing of today circle when showtodaycircle not set
16664                 - fixed drawing of first and last month in the grid (gay dates)
16665         * MonthCalendar.cs:
16666                 - Fixed Drawing of today circle
16667                 - Fixed drawing of grady dates
16668                 - Fixed HitTest for today link when ShowToday set to false
16669                 - Fixed DefaultSize to obey ShowToday
16670
16671 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
16672
16673         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
16674         * System.Windows.Forms/Theme.cs
16675         * MonthCalendar.cs: added for MonthCalendar
16676         * SelectionRange.cs: added for MonthCalendar
16677         * Day.cs: added for MonthCalendar: added for MonthCalendar
16678         * DateRangeEventArgs.cs: added for MonthCalendar
16679         * DateRangeEventHandler.cs: added for MonthCalendar
16680
16681 2004-11-22  Ravindra <rkumar@novell.com>
16682
16683         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
16684         property.
16685
16686 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
16687
16688         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
16689         event handler.
16690         
16691         * NumericUpDown.cs: Added new implementation.
16692         * UpDownBase.cs: Added new implementation.
16693
16694         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
16695         implementations.
16696         
16697         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
16698         implementations.
16699
16700         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
16701         methods.
16702
16703 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
16704
16705         * Timer.cs  (Dispose): Should call the base dispose when
16706         overriding.
16707
16708 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
16709
16710         * ScrollBar.cs: updates thumb position when max, min or increment
16711         is changed
16712
16713 2004-11-21  Ravindra <rkumar@novell.com>
16714
16715         * ListView.cs: Implemented item selection, activation and
16716         column header style. Fixed properties to do a redraw, if
16717         required. Added support for MouseHover, DoubleClick, KeyDown
16718         and KeyUp event handling and some minor fixes.
16719         * ListViewItem.cs: Fixed constructor.
16720         * ThemeWin32Classic.cs: Improved drawing for ListView.
16721
16722 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
16723
16724         * ThemeWin32Classic.cs: initial listbox drawing code
16725         * DrawMode.cs: new enumerator
16726         * ListControl.cs: stubbed class
16727         * ListBox.cs: initial implementation
16728         * Theme.cs: new methods definitions
16729         * SelectionMode.cs: new enumerator
16730
16731 2004-11-17  Peter Bartok  <pbartok@novell.com>
16732
16733         * XplatUIWin32.cs: Added double-click events to the class style
16734         * Control.cs (WndProc):
16735           - Added handling of click-count to MouseDown/ MouseUp events.
16736           - Added handling of middle and right mouse buttons
16737           - Removed old debug code
16738
16739 2004-11-17  Jackson Harper  <jackson@ximian.com>
16740
16741         * XplatUIX11.cs: Use the new Mono.Unix namespace.
16742
16743 2004-11-17  Ravindra <rkumar@novell.com>
16744
16745         * ListView.cs: Added event handling for MouseMove/Up/Down.
16746         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
16747         * ThemeWin32Classic.cs: We need to clear the graphics context and
16748         draw column header in a proper state.
16749
16750
16751 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
16752
16753         *  Menu.cs: fixes signature
16754
16755 2004-11-16  Peter Bartok  <pbartok@novell.com>
16756
16757         * XplatUIX11.cs (GetMessage): Implemented generation of
16758           double click mouse messages
16759
16760 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
16761
16762         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
16763         not by menu
16764
16765 2004-11-11  Peter Bartok  <pbartok@novell.com>
16766
16767         * HandleData.cs: Added Visible property
16768         * XplatUIX11.cs (IsVisible): Now uses Visible property from
16769           HandleData
16770         * XplatUIX11.cs: Removed old debug leftovers
16771         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
16772         * Control.cs (WndProc): Removed old debug leftovers,
16773           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
16774           needed WM_SIZE handling
16775
16776 2004-11-11  Jackson Harper  <jackson@ximian.com>
16777
16778         * OwnerDrawPropertyBag.cs:
16779         * TreeViewImageIndexConverter.cs: Initial implementation
16780
16781 2004-11-10  Jackson Harper  <jackson@ximian.com>
16782
16783         * ThemeWin32Classic.cs:
16784         * TabControl.cs: instead of moving tabs by the slider pos just
16785         start drawing at the tab that is offset by the slider. This way
16786         scrolling always moves by exactly one tab.
16787
16788 2004-11-10  Jackson Harper  <jackson@ximian.com>
16789
16790         * TabControl.cs: You can only scroll left when the slider has
16791         already ben moved right.
16792         
16793 2004-11-10  Jackson Harper  <jackson@ximian.com>
16794
16795         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
16796         the clip area.
16797         
16798 2004-11-10  Jackson Harper  <jackson@ximian.com>
16799
16800         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
16801         clip area.
16802         
16803 2004-11-09  Jackson Harper  <jackson@ximian.com>
16804
16805         * TabControl.cs (CalcXPos): New helper method so we can determine
16806         the proper place to start drawing vertical tabs.
16807         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
16808         
16809 2004-11-09  Jackson Harper  <jackson@ximian.com>
16810
16811         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
16812         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
16813         and Bottom, left and right are illegal values for this and
16814         multiline is enabled when the alignment is set to left or right.
16815         (DrawTab): Each alignment block should draw the text itself now
16816         because Left requires special love. Also add rendering for Left
16817         aligned tabs.
16818         
16819 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
16820
16821         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
16822         does not destroy the windows, removes debugging messages
16823
16824 2004-11-09  jba  <jba-mono@optusnet.com.au>
16825
16826         * ThemeWin32Classic.cs
16827         (DrawButtonBase): Fix verticle text rect clipping in windows
16828         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
16829         rendering and incorrect text rect clipping
16830         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
16831         rendering and incorrect text rect clipping
16832         
16833 2004-11-08  Jackson Harper  <jackson@ximian.com>
16834
16835         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
16836         bottom when they are bottom aligned so the bottoms of the tabs get
16837         displayed.
16838         * TabControl.cs (DropRow): Move rows up instead of down when the
16839         tab control is bottom aligned.
16840
16841 2004-11-08 13:59  pbartok
16842
16843         * XplatUIX11.cs:
16844           - Added handling for various window styles
16845           - Added handling for popup windows
16846           - Added SetTopmost handling
16847
16848 2004-11-08 13:55  pbartok
16849
16850         * XplatUIWin32.cs:
16851           - Added argument to SetTopmost method
16852           - Fixed broken ClientToScreen function
16853
16854 2004-11-08 13:53  pbartok
16855
16856         * XplatUIStructs.cs:
16857           - Added missing WS_EX styles
16858
16859 2004-11-08 13:53  pbartok
16860
16861         * XplatUI.cs, XplatUIDriver.cs:
16862           - Added argument to SetTopmost
16863
16864 2004-11-08 13:52  pbartok
16865
16866         * X11Structs.cs:
16867           - Added XSetWindowAttributes structure
16868           - Improved XWindowAttributes structure
16869           - Added SetWindowValuemask enum
16870           - Added window creation arguments enum
16871           - Added gravity enum
16872           - Added Motif hints structure
16873           - Added various Motif flags and enums
16874           - Added PropertyMode enum for property functions
16875
16876 2004-11-08 13:50  pbartok
16877
16878         * Form.cs:
16879           - Fixed arguments for updated SetTopmost method
16880
16881 2004-11-08 13:49  pbartok
16882
16883         * ToolTip.cs:
16884           - Fixed arguments for updated SetTopmost function
16885           - Fixed usage of PointToClient
16886
16887 2004-11-08 13:44  pbartok
16888
16889         * MenuAPI.cs:
16890           - Added Clipping of children and siblings
16891
16892 2004-11-08 13:41  pbartok
16893
16894         * MainMenu.cs:
16895           - Removed SetMenuBarWindow call. We do this in Form.cs
16896
16897 2004-11-08 13:40  jackson
16898
16899         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
16900           scrolling jimmi in the correct location with bottom aligned tabs
16901
16902 2004-11-08 13:36  pbartok
16903
16904         * ContainerControl.cs:
16905           - Implemented BindingContext
16906           - Implemented ParentForm
16907
16908 2004-11-08 12:46  jackson
16909
16910         * TabControl.cs: Put bottom rendered tabs in the right location
16911
16912 2004-11-08 07:15  jordi
16913
16914         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
16915           removes dead code
16916
16917 2004-11-05 17:30  jackson
16918
16919         * TabControl.cs: When selected tabs are expanded make sure they
16920           don't go beyond the edges of the tab control
16921
16922 2004-11-05 14:57  jackson
16923
16924         * TabControl.cs: Reset show_slider so if the control is resized to
16925           a size where it is no longer needed it's not displayed anymore
16926
16927 2004-11-05 13:16  jackson
16928
16929         * TabControl.cs: Make tab pages non visible when added to the
16930           control
16931
16932 2004-11-05 12:42  jackson
16933
16934         * TabControl.cs: Implement SizeMode.FillToRight
16935
16936 2004-11-05 12:16  jackson
16937
16938         * Control.cs: Do not call CreateHandle if the handle is already
16939           created
16940
16941 2004-11-05 11:46  jackson
16942
16943         * TabControl.cs: Remove superflous call to CalcTabRows
16944
16945 2004-11-05 09:07  jackson
16946
16947         * XplatUIX11.cs: Update for Mono.Posix changes
16948
16949 2004-11-05 07:00  ravindra
16950
16951         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
16952           scrolling.
16953
16954 2004-11-04 22:47  jba
16955
16956         * ThemeWin32Classic.cs:
16957           - Fix Button rendering for FlatStyle = Flat or Popup
16958           - Fix RadioButton and CheckBox rendering when Appearance = Button
16959             (normal and flatstyle).
16960           - Correct outer rectangle color when drawing focus rectangle
16961           - Adjust button bounds to be 1 px smaller when focused
16962           - Make button not draw sunken 3d border when pushed (windows compat)
16963           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
16964           - Offset the text in RadioButton and Checkbox when being rendered as
16965           a button.
16966           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
16967           radiobuttons
16968           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
16969           - Fixed disabled text rendering for normally rendered radiobuttons
16970
16971 2004-11-04 10:26  jackson
16972
16973         * TabControl.cs: Recalculate tab rows when resizing
16974
16975 2004-11-04 07:47  jordi
16976
16977         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
16978           collection completion, drawing issues, missing features
16979
16980 2004-11-04 05:03  ravindra
16981
16982         * ScrollBar.cs:
16983                 - We need to recalculate the Thumb area when
16984                 LargeChange/maximum/minimum values are changed.
16985           - We set the 'pos' in UpdatePos() method to minimum, if it's less
16986                 than minimum. This is required to handle the case if large_change is
16987                 more than max, and use LargeChange property instead of large_change
16988                 variable.
16989           - We return max+1 when large_change is more than max, like MS does.
16990
16991 2004-11-04 04:29  ravindra
16992
16993         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
16994                 - Changed default value signatures (prefixed all with ListView).
16995                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
16996                 ListView.
16997           - Fixed calculations for ListViewItem and implemented Clone()
16998           method.
16999
17000 2004-11-04 04:26  ravindra
17001
17002         * Theme.cs, ThemeWin32Classic.cs:
17003                 - Changed default ListView values signatures (prefixed all with
17004                 ListView).
17005           - Fixed default size values for VScrollBar and HScrollBar.
17006                 - Fixed DrawListViewItem method.
17007
17008 2004-11-04 04:05  ravindra
17009
17010         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
17011
17012 2004-11-04 04:04  ravindra
17013
17014         * ImageList.cs: Implemented the missing overload for Draw method.
17015
17016 2004-11-03 19:29  jackson
17017
17018         * TabControl.cs: Handle dropping rows on selection properly
17019
17020 2004-11-03 11:59  jackson
17021
17022         * TabControl.cs: remove debug code
17023
17024 2004-11-03 11:52  jackson
17025
17026         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
17027           the scrolly widgerywoo
17028
17029 2004-11-02 13:52  jackson
17030
17031         * TabControl.cs: Resize the tab pages and tabs when the tab control
17032           is resized
17033
17034 2004-11-02 13:40  jackson
17035
17036         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
17037           selected tab to the bottom
17038
17039 2004-11-02 13:39  jackson
17040
17041         * TabPage.cs: Store the tab pages row
17042
17043 2004-11-02 12:33  jordi
17044
17045         * MenuItem.cs: fixes handle creation
17046
17047 2004-11-02 11:42  jackson
17048
17049         * TabControl.cs: signature fix
17050
17051 2004-11-02 08:56  jackson
17052
17053         * TabControl.cs: Calculate whether the tab is on an edge properly.
17054           Remove top secret debugging code
17055
17056 2004-11-01 19:57  jackson
17057
17058         * TabControl.cs: Add click handling, and proper sizing
17059
17060 2004-11-01 19:47  jackson
17061
17062         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
17063           tab controls
17064
17065 2004-11-01 19:39  jackson
17066
17067         * TabPage.cs: add internal property to store the bounds of a tab
17068           page
17069
17070 2004-10-30 04:23  ravindra
17071
17072         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
17073           values.
17074
17075 2004-10-30 04:21  ravindra
17076
17077         * ListView.cs, ListViewItem.cs: Added support for scrolling and
17078           fixed calculations.
17079
17080 2004-10-30 03:06  pbartok
17081
17082         * XplatUIX11.cs:
17083           - Removed extension of DllImported libs
17084
17085 2004-10-29 09:55  jordi
17086
17087         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
17088           navigation, itemcollection completion, menu fixes
17089
17090 2004-10-27 22:58  pbartok
17091
17092         * XplatUIX11.cs:
17093           - Now throws a nice error message when no X display could be opened
17094
17095 2004-10-26 13:51  jordi
17096
17097         * ListView.cs: removes warning
17098
17099 2004-10-26 03:55  ravindra
17100
17101         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
17102           ThemeWin32Classic.cs: Some formatting for my last checkins.
17103
17104 2004-10-26 03:36  ravindra
17105
17106         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
17107           control and default values.
17108
17109 2004-10-26 03:35  ravindra
17110
17111         * Theme.cs: Added some default values for ListView control.
17112
17113 2004-10-26 03:33  ravindra
17114
17115         * ToolBar.cs: ToolBar should use the user specified button size, if
17116           there is any. Added a size_specified flag for the same.
17117
17118 2004-10-26 03:33  ravindra
17119
17120         * ColumnHeader.cs: Added some internal members and calculations for
17121           ColumnHeader.
17122
17123 2004-10-26 03:32  ravindra
17124
17125         * ListViewItem.cs: Calculations for ListViewItem.
17126
17127 2004-10-26 03:31  ravindra
17128
17129         * ListView.cs: Added some internal members and calculations for
17130           ListView.
17131
17132 2004-10-22 13:31  jordi
17133
17134         * MenuAPI.cs: speedup menus drawing
17135
17136 2004-10-22 13:16  jackson
17137
17138         * XplatUIX11.cs: Make sure to update exposed regions when adding an
17139           expose event
17140
17141 2004-10-22 11:49  jackson
17142
17143         * Control.cs: oops
17144
17145 2004-10-22 11:41  jackson
17146
17147         * Control.cs: Check to see if the window should have its background
17148           repainted by X when drawing.
17149
17150 2004-10-22 11:31  jackson
17151
17152         * XplatUIX11.cs: When invalidating areas only use XClearArea if
17153           clear is true, this way we do not get flicker from X repainting the
17154           background
17155
17156 2004-10-22 11:28  jackson
17157
17158         * XEventQueue.cs: Queue properly
17159
17160 2004-10-21 09:38  jackson
17161
17162         * XEventQueue.cs: Fix access modifier
17163
17164 2004-10-21 09:36  jackson
17165
17166         * XEventQueue.cs: Don't loose messages
17167
17168 2004-10-21 09:22  jackson
17169
17170         * XEventQueue.cs: Don't loose messages
17171
17172 2004-10-20 04:15  jordi
17173
17174         * BootMode.cs: enum need it by SystemInfo
17175
17176 2004-10-19 21:58  pbartok
17177
17178         * XplatUIWin32.cs:
17179           - Small sanity check
17180
17181 2004-10-19 21:56  pbartok
17182
17183         * Form.cs:
17184           - Added private FormParentWindow class which acts as the container
17185             for our form and as the non-client area where menus are drawn
17186           - Added/Moved required tie-ins to Jordi's menus
17187           - Fixed/Implemented the FormStartPosition functionality
17188
17189 2004-10-19 21:52  pbartok
17190
17191         * Control.cs:
17192           - Removed unneeded locals
17193           - Added code to all size and location properties to understand and
17194             deal with the parent container of Form
17195
17196 2004-10-19 21:33  pbartok
17197
17198         * Application.cs:
17199           - Fixed to deal with new Form subclasses for menus
17200
17201 2004-10-19 17:48  jackson
17202
17203         * XEventQueue.cs: commit correct version of file
17204
17205 2004-10-19 16:50  jackson
17206
17207         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
17208
17209 2004-10-19 16:15  jordi
17210
17211         * MenuAPI.cs: MenuBarCalcSize returns the height
17212
17213 2004-10-19 08:31  pbartok
17214
17215         * Control.cs:
17216           - Added missing call to PreProcessMessage before calling OnXXXKey
17217           methods
17218
17219 2004-10-19 00:04  ravindra
17220
17221         * ToolTip.cs: Fixed constructor.
17222
17223 2004-10-18 09:31  jordi
17224
17225         * MenuAPI.cs: menuitems in menubars do not have shortcuts
17226
17227 2004-10-18 09:26  jordi
17228
17229         * MenuItem.cs: fixes MenuItem class signature
17230
17231 2004-10-18 08:56  jordi
17232
17233         * MenuAPI.cs: prevents windows from showing in the taskbar
17234
17235 2004-10-18 00:28  ravindra
17236
17237         * ToolTip.cs: Suppressed a warning message.
17238
17239 2004-10-18 00:27  ravindra
17240
17241         * Control.cs: Default value of visible property must be true.
17242
17243 2004-10-17 23:19  pbartok
17244
17245         * ToolTip.cs:
17246           - Complete implementation
17247
17248 2004-10-17 23:19  pbartok
17249
17250         * XplatUIX11.cs:
17251           - Added EnableWindow method
17252           - Added SetModal stub
17253           - Added generation of WM_ACTIVATE message (still needs testing)
17254           - Added SetTopMost stub
17255           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
17256
17257 2004-10-17 23:17  pbartok
17258
17259         * XplatUIWin32.cs:
17260           - Removed VirtualKeys to XplatUIStructs
17261           - Implemented SetTopMost method
17262           - Implemented EnableWindow method
17263           - Bugfix in ScreenToClient()
17264           - Bugfixes in ClientToScreen()
17265
17266 2004-10-17 22:51  pbartok
17267
17268         * XplatUIStructs.cs:
17269           - Added WS_EX styles to WindowStyles enumeration
17270
17271 2004-10-17 22:50  pbartok
17272
17273         * XplatUI.cs, XplatUIDriver.cs:
17274           - Added method for enabling/disabling windows
17275           - Added method for setting window modality
17276           - Added method for setting topmost window
17277
17278 2004-10-17 22:49  pbartok
17279
17280         * ThemeWin32Classic.cs:
17281           - Added ToolTip drawing code
17282
17283 2004-10-17 22:49  pbartok
17284
17285         * Theme.cs:
17286           - Added ToolTip abstracts
17287
17288 2004-10-17 22:47  pbartok
17289
17290         * Form.cs:
17291           - Fixed Form.ControlCollection to handle owner relations
17292           - Added Owner/OwnedForms handling
17293           - Implemented Z-Ordering for owned forms
17294           - Removed unneeded private overload of ShowDialog
17295           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
17296             so I hope)
17297           - Fixed Close(), had wrong default
17298           - Added firing of OnLoad event
17299           - Added some commented out debug code for Ownership handling
17300
17301 2004-10-17 22:16  pbartok
17302
17303         * Control.cs:
17304           - Fixed/implemented flat list of controls
17305
17306 2004-10-17 22:14  pbartok
17307
17308         * Application.cs:
17309           - Added code to simulate modal dialogs on Win32
17310
17311 2004-10-17 16:11  jordi
17312
17313         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
17314           mouse event
17315
17316 2004-10-17 13:39  jordi
17317
17318         * MenuAPI.cs: menu drawing fixes
17319
17320 2004-10-15 09:10  ravindra
17321
17322         * StructFormat.cs: General Enum.
17323
17324 2004-10-15 09:09  ravindra
17325
17326         * SizeGripStyle.cs: Enum for Form.
17327
17328 2004-10-15 09:08  ravindra
17329
17330         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
17331           in Theme for ListView.
17332
17333 2004-10-15 09:06  ravindra
17334
17335         * ColumnHeader.cs: Flushing some formatting changes.
17336
17337 2004-10-15 09:05  ravindra
17338
17339         * ListViewItem.cs: Implemented GetBounds method and fixed coding
17340           style.
17341
17342 2004-10-15 09:03  ravindra
17343
17344         * ListView.cs: Implemented Paint method and fixed coding style.
17345
17346 2004-10-15 07:34  jordi
17347
17348         * MenuAPI.cs: fix for X11
17349
17350 2004-10-15 07:32  ravindra
17351
17352         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
17353                 - Renamed Paint() method to Draw() for clarity. Also, moved
17354                 DrawImage() to OnPaint().
17355
17356 2004-10-15 07:25  ravindra
17357
17358         * CheckBox.cs, RadioButton.cs:
17359                 - Removed Redraw (), we get it from ButtonBase.
17360                 - Implemented Paint (), to do class specific painting.
17361
17362 2004-10-15 07:16  ravindra
17363
17364         * ButtonBase.cs:
17365                 - Redraw () is not virtual now.
17366                 - Added an internal virtual method Paint (), so that
17367                 derived classes can do their painting on their own.
17368                 - Modified OnPaint () to call Paint ().
17369
17370 2004-10-15 06:43  jordi
17371
17372         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
17373           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
17374
17375 2004-10-15 00:30  ravindra
17376
17377         * MessageBox.cs:
17378                 - MessageBox on windows does not have min/max buttons.
17379                 This change in CreateParams fixes this on Windows. We
17380                 still need to implement this windowstyle behavior in
17381                 our X11 driver.
17382
17383 2004-10-14 05:14  ravindra
17384
17385         * ToolBar.cs:
17386                 - Changed Redraw () to do a Refresh () always.
17387                 - Fixed the MouseMove event handling when mouse is pressed,
17388                 ie drag event handling.
17389                 - Replaced the usage of ToolBarButton.Pressed property to
17390                 ToolBarButton.pressed internal variable.
17391
17392 2004-10-14 05:10  ravindra
17393
17394         * ToolBarButton.cs:
17395                 - Added an internal member 'inside' to handle mouse move
17396                 with mouse pressed ie mouse drag event.
17397                 - Changed 'Pressed' property to return true only when
17398                 'inside' and 'pressed' are both true.
17399                 - Some coding style love.
17400
17401 2004-10-14 00:17  ravindra
17402
17403         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
17404           public method.
17405
17406 2004-10-14 00:15  ravindra
17407
17408         * ButtonBase.cs: Redraw () related improvements.
17409
17410 2004-10-14 00:14  ravindra
17411
17412         * MessageBox.cs: Moved InitFormSize () out of Paint method and
17413           removed unnecessary calls to Button.Show () method.
17414
17415 2004-10-13 17:50  pbartok
17416
17417         * XplatUIX11.cs:
17418           - Formatting fix
17419           - Removed destroying of window until we solve the problem of X
17420             destroying the window before us on shutdown
17421
17422 2004-10-13 16:32  pbartok
17423
17424         * ButtonBase.cs:
17425           - Now Redraws on MouseUp for FlatStyle Flat and Popup
17426
17427 2004-10-13 14:18  pbartok
17428
17429         * XplatUIX11.cs:
17430           - Added code to destroy the X window
17431
17432 2004-10-13 14:18  pbartok
17433
17434         * XplatUIWin32.cs:
17435           - Added code to destroy a window
17436
17437 2004-10-13 14:12  pbartok
17438
17439         * ButtonBase.cs:
17440           - Added the Redraw on Resize that got dropped in the last rev
17441
17442 2004-10-13 09:06  pbartok
17443
17444         * ThemeWin32Classic.cs:
17445           - Path from John BouAntoun:
17446             * Fix check rendering (centre correctly for normal style, offset
17447               correctly for FlatStyle).
17448             * Fix border color usage (use backcolor) for FlatStyle.Popup
17449             * Use checkbox.Capture instead of checkbox.is_pressed when
17450               rendering flatstyle states.
17451
17452 2004-10-12 21:48  pbartok
17453
17454         * ThemeWin32Classic.cs:
17455           - Removed all occurences of SystemColors and replaced them with the
17456             matching theme color
17457
17458 2004-10-12 21:41  pbartok
17459
17460         * ThemeWin32Classic.cs:
17461           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
17462             him using the function for flatstyle drawing
17463           - Changed functions to use the new version of CPDrawBorder3D
17464
17465 2004-10-12 21:15  pbartok
17466
17467         * ControlPaint.cs:
17468           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
17469             match MS documentation. They need to return defined colors if the
17470             passed color matches the configured control color. Thanks to John
17471             BouAntoun for pointing this out.
17472
17473 2004-10-12 20:57  pbartok
17474
17475         * Control.cs:
17476           - Fix from John BouAntoun: Raise ForeColorChanged event when text
17477             color is changed
17478
17479 2004-10-12 20:46  pbartok
17480
17481         * CheckBox.cs:
17482           - Fix from John BouAntoun: Now properly sets the Appearance property
17483
17484 2004-10-12 20:45  pbartok
17485
17486         * ThemeWin32Classic.cs:
17487           - Fixes from John BouAntoun: now handles forecolors and backcolors
17488             for flatstyle rendered controls much better; It also fixes normal
17489             checkbox rendering when pushed or disabled.
17490
17491 2004-10-08 02:50  jordi
17492
17493         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
17494           work
17495
17496 2004-10-07 08:56  jordi
17497
17498         * ThemeWin32Classic.cs: Removes deletion of cached brushes
17499
17500 2004-10-06 03:59  jordi
17501
17502         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
17503           XplatUIWin32.cs: removes warnings from compilation
17504
17505 2004-10-05 12:23  jackson
17506
17507         * RadioButton.cs: Fix ctor
17508
17509 2004-10-05 11:10  pbartok
17510
17511         * MessageBox.cs:
17512           - Partial implementation by Benjamin Dasnois
17513
17514 2004-10-05 10:15  jackson
17515
17516         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
17517           by John BouAntoun
17518
17519 2004-10-05 03:07  ravindra
17520
17521         * ToolBar.cs:
17522                 - Removed a private method, Draw ().
17523                 - Fixed the ButtonDropDown event handling.
17524                 - Fixed MouseMove event handling.
17525
17526 2004-10-05 03:04  ravindra
17527
17528         * ThemeWin32Classic.cs:
17529                 - Added DrawListView method and ListViewDefaultSize property.
17530                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
17531                 - Changed DOS style CRLF to Unix format (dos2unix).
17532
17533 2004-10-05 03:03  ravindra
17534
17535         * Theme.cs:
17536                 - Added DrawListView method and ListViewDefaultSize property.
17537
17538 2004-10-05 02:42  ravindra
17539
17540         * ToolBarButton.cs: Added an internal member dd_pressed to handle
17541           clicks on DropDown arrow.
17542
17543 2004-10-04 22:56  jackson
17544
17545         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
17546           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
17547           Control handle the buffers, derived classes should not have to
17548           CreateBuffers themselves.
17549
17550 2004-10-04 21:20  jackson
17551
17552         * StatusBar.cs: The control handles resizing the buffers now.
17553
17554 2004-10-04 21:18  jackson
17555
17556         * Control.cs: When resizing the buffers should be invalidated. This
17557           should be handled in Control not in derived classes.
17558
17559 2004-10-04 14:45  jackson
17560
17561         * TabPage.cs: oops
17562
17563 2004-10-04 02:14  pbartok
17564
17565         * LeftRightAlignment.cs:
17566           - Initial check-in
17567
17568 2004-10-04 01:09  jordi
17569
17570         * ThemeWin32Classic.cs: fixes right button position causing right
17571           button not showing on horizontal scrollbars
17572
17573 2004-10-02 13:12  pbartok
17574
17575         * XplatUIX11.cs:
17576           - Simplified the Invalidate method by using an X call instead of
17577             generating the expose ourselves
17578           - Added an expose when the window background is changed
17579           - Implemented ClientToScreen method
17580
17581 2004-10-02 13:08  pbartok
17582
17583         * XplatUIWin32.cs:
17584           - Added Win32EnableWindow method (test for implementing modal
17585           dialogs)
17586           - Added ClientToScreen method and imports
17587
17588 2004-10-02 13:07  pbartok
17589
17590         * XplatUI.cs, XplatUIDriver.cs:
17591           - Added ClientToScreen coordinate translation method
17592
17593 2004-10-02 13:06  pbartok
17594
17595         * KeyPressEventArgs.cs:
17596           - Fixed access level for constructor
17597
17598 2004-10-02 13:06  pbartok
17599
17600         * NativeWindow.cs:
17601           - Changed access level for the window_collection hash table
17602
17603 2004-10-02 13:05  pbartok
17604
17605         * Form.cs:
17606           - Added KeyPreview property
17607           - Added Menu property (still incomplete, pending Jordi's menu work)
17608           - Implemented ProcessCmdKey
17609           - Implemented ProcessDialogKey
17610           - Implemented ProcessKeyPreview
17611
17612 2004-10-02 13:02  pbartok
17613
17614         * Control.cs:
17615           - Added private method to get the Control object from the window
17616           handle
17617           - Implemented ContextMenu property
17618           - Implemented PointToScreen
17619           - Implemented PreProcessMessage
17620           - Implemented IsInputChar
17621           - Implemented IsInputKey
17622           - Implemented ProcessCmdKey
17623           - Completed ProcessKeyEventArgs
17624           - Fixed message loop to call the proper chain of functions on key
17625           events
17626           - Implemented ProcessDialogChar
17627           - Implemented ProcessDialogKey
17628           - Implemented ProcessKeyMessage
17629           - Implemented ProcessKeyPreview
17630           - Added RaiseDragEvent stub (MS internal method)
17631           - Added RaiseKeyEvent stub (MS internal method)
17632           - Added RaiseMouseEvent stub (MS Internal method)
17633           - Added RaisePaintEvent stub (MS Internal method)
17634           - Added ResetMouseEventArgs stub (MS Internal method)
17635           - Implemented RtlTranslateAlignment
17636           - Implemented RtlTranslateContent
17637           - Implemented RtlTranslateHorizontal
17638           - Implemented RtlTranslateLeftRight
17639           - Added generation of KeyPress event
17640
17641 2004-10-02 05:57  ravindra
17642
17643         * ListViewItem.cs: Added attributes.
17644
17645 2004-10-02 05:32  ravindra
17646
17647         * ListView.cs: Added attributes.
17648
17649 2004-10-01 11:53  jackson
17650
17651         * Form.cs: Implement the Close method so work on MessageBox can
17652           continue.
17653
17654 2004-09-30 14:06  pbartok
17655
17656         * XplatUIX11.cs:
17657           - Bug fixes
17658
17659 2004-09-30 11:34  jackson
17660
17661         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
17662
17663 2004-09-30 07:26  ravindra
17664
17665         * ListViewItemConverter.cs: Converter for ListViewItem.
17666
17667 2004-09-30 07:26  ravindra
17668
17669         * SortOrder.cs: Enum for ListView control.
17670
17671 2004-09-30 07:25  ravindra
17672
17673         * ColumnHeader.cs: Supporting class for ListView control.
17674
17675 2004-09-30 07:24  ravindra
17676
17677         * ListView.cs, ListViewItem.cs: Initial implementation.
17678
17679 2004-09-30 07:20  ravindra
17680
17681         * ItemActivation.cs: Enum for ListView Control.
17682
17683 2004-09-29 20:29  pbartok
17684
17685         * XplatUIX11.cs:
17686           - Added lookup of pixel value for background color; tries to get a
17687             color 'close' to the requested color, it avoids having to create a
17688             colormap.  Depending on the display this could mean the used color
17689             is slightly off the desired color. Might have to change it to a more
17690             resource intensive colormap approach, but it will work as a
17691           workaround to avoid red screens.
17692
17693 2004-09-29 14:27  jackson
17694
17695         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
17696
17697 2004-09-28 12:44  pbartok
17698
17699         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
17700           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
17701           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
17702           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
17703           TrackBar.cs, VScrollBar.cs:
17704           - Streamlined Theme interfaces:
17705             * Each DrawXXX method for a control now is passed the object for
17706               the control to be drawn in order to allow accessing any state the
17707               theme might require
17708
17709             * ControlPaint methods for the theme now have a CP prefix to avoid
17710               name clashes with the Draw methods for controls
17711
17712             * Every control now retrieves it's DefaultSize from the current
17713             theme
17714
17715 2004-09-28 12:17  jackson
17716
17717         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
17718           drawing
17719
17720 2004-09-24 14:57  jackson
17721
17722         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
17723           Gives us a nice little performance boost.
17724
17725 2004-09-24 12:02  jackson
17726
17727         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
17728           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
17729           Control and supporting classes. Initial checkin
17730
17731 2004-09-23 13:08  jackson
17732
17733         * Form.cs: Temp build fixage
17734
17735 2004-09-23 01:39  ravindra
17736
17737         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
17738           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
17739           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
17740           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
17741           EventHandlers needed by ListView Control.
17742
17743 2004-09-22 14:12  pbartok
17744
17745         * ScrollableControl.cs:
17746           - Implemented DockPadding property
17747           - Implemented AutoScroll property
17748           - Implemented AutoScrollMargin property
17749           - Implemented AutoScrollMinSize property
17750           - Implemented AutoScrollPosition property
17751           - Implemented DisplayRectangle property (still incomplete)
17752           - Implemented CreateParams property
17753           - Implemented HScroll property
17754           - Implemented VScroll property
17755           - Implemented OnVisibleChanged property
17756
17757 2004-09-22 14:09  pbartok
17758
17759         * Form.cs:
17760           - Added Form.ControllCollection class
17761           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
17762             RemoveOwnedForm (still incomplete, missing on-top and common
17763             minimize/maximize behaviour)
17764           - Added StartPosition property (still incomplete, does not use when
17765             creating the form)
17766           - Added ShowDialog() methods (still incomplete, missing forcing the
17767             dialog modal)
17768
17769 2004-09-22 14:05  pbartok
17770
17771         * Application.cs:
17772           - Added message loop for modal dialogs
17773
17774 2004-09-22 14:02  pbartok
17775
17776         * GroupBox.cs:
17777           - Fixed wrong types for events
17778
17779 2004-09-22 14:00  pbartok
17780
17781         * Shortcut.cs, FormWindowState.cs:
17782           - Fixed wrong values
17783
17784 2004-09-22 12:01  jackson
17785
17786         * Control.cs: Text is never null
17787
17788 2004-09-20 22:14  pbartok
17789
17790         * XplatUIWin32.cs:
17791           - Fixed accessibility level for Idle handler
17792
17793 2004-09-20 18:54  jackson
17794
17795         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17796           XplatUIX11.cs: New message loop that uses poll so we don't get a
17797           busy loop
17798
17799 2004-09-17 10:43  pbartok
17800
17801         * ScrollBar.cs:
17802           - Fixed behaviour of arrow buttons. Now properly behaves like
17803             Buttons (and like Microsoft's scrollbar arrow buttons)
17804
17805 2004-09-17 10:14  pbartok
17806
17807         * ScrollBar.cs:
17808           - Added missing release of keyboard/mouse capture
17809
17810 2004-09-17 06:18  jordi
17811
17812         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
17813           Theme.cs: Very early menu support
17814
17815 2004-09-16 17:45  pbartok
17816
17817         * XplatUIWin32.cs:
17818           - Fixed sending a window to the front
17819           - Added overload for SetWindowPos to avoid casting
17820
17821 2004-09-16 17:44  pbartok
17822
17823         * Control.cs:
17824           - Added SendToBack and BringToFront methods
17825
17826 2004-09-16 07:00  ravindra
17827
17828         * Copyright: Added Novell URL.
17829
17830 2004-09-16 07:00  ravindra
17831
17832         * ToolBar.cs: Invalidate should be done before redrawing.
17833
17834 2004-09-15 21:19  ravindra
17835
17836         * ColumnHeaderStyle.cs: Enum for ListView Control.
17837
17838 2004-09-15 21:18  ravindra
17839
17840         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
17841           ListView Control.
17842
17843 2004-09-13 18:26  jackson
17844
17845         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
17846           properly
17847
17848 2004-09-13 18:13  jackson
17849
17850         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
17851           a second thread and post messages into the main threads message
17852           queue. This makes timing much more consistent. Both win2K and XP
17853           have a minimum timer value of 15 milliseconds, so we now do this
17854           too.
17855
17856 2004-09-13 15:18  pbartok
17857
17858         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17859           XplatUIX11.cs:
17860           - Added Z-Ordering methods
17861
17862 2004-09-13 10:56  pbartok
17863
17864         * Form.cs:
17865           - Fixed #region names
17866           - Moved properties and methods into their proper #regions
17867
17868 2004-09-13 10:51  pbartok
17869
17870         * Form.cs:
17871           - Added Accept and CancelButton properties
17872           - Added ProcessDialogKey() method
17873
17874 2004-09-13 08:18  pbartok
17875
17876         * IWindowTarget.cs:
17877           - Initial check-in
17878
17879 2004-09-10 21:50  pbartok
17880
17881         * Control.cs:
17882           - Added DoDragDrop() [incomplete]
17883           - Properly implemented 'Visible' handling
17884           - Added SetVisibleCore()
17885           - Implemented FindChildAtPoint()
17886           - Implemented GetContainerControl()
17887           - Implemented Hide()
17888
17889 2004-09-10 19:28  pbartok
17890
17891         * Control.cs:
17892           - Moved methods into their appropriate #regions
17893           - Reordered methods within regions alphabetically
17894
17895 2004-09-10 18:57  pbartok
17896
17897         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
17898           - Added method to retrieve text from window
17899
17900 2004-09-10 18:56  pbartok
17901
17902         * Control.cs:
17903           - Moved some internal functions into the internal region
17904           - Implemented FontHeight
17905           - Implemented RenderRightToLeft
17906           - Implemented ResizeRedraw
17907           - Implemented ShowFocusCues
17908           - Implemented ShowKeyboardCues
17909           - Implemented FromChildHandle
17910           - Implemented FromHandle
17911           - Implemented IsMnemonic
17912           - Implemented ReflectMessage
17913           - All public and protected Static Methods are now complete
17914
17915 2004-09-10 16:54  pbartok
17916
17917         * Control.cs:
17918           - Implemented remaining missing public instance properties
17919           - Alphabetized some out of order properties
17920
17921 2004-09-10 05:51  ravindra
17922
17923         * PictureBox.cs: Added a check for null image.
17924
17925 2004-09-10 00:59  jordi
17926
17927         * GroupBox.cs: remove cvs tag
17928
17929 2004-09-09 05:25  ravindra
17930
17931         * ToolBar.cs: Make redraw accessible from ToolBarButton.
17932
17933 2004-09-09 05:23  ravindra
17934
17935         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
17936           parent redraw.
17937
17938 2004-09-09 02:28  pbartok
17939
17940         * ThemeWin32Classic.cs:
17941           - Improve disabled string look
17942
17943 2004-09-09 01:15  jordi
17944
17945         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
17946           args and handler
17947
17948 2004-09-08 23:56  ravindra
17949
17950         * ItemBoundsPortion.cs: It's enum, not a class!
17951
17952 2004-09-08 23:47  ravindra
17953
17954         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
17955           Enums for Form.
17956
17957 2004-09-08 21:13  ravindra
17958
17959         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
17960           ListView control.
17961
17962 2004-09-08 21:03  ravindra
17963
17964         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
17965           avoid crash.
17966
17967 2004-09-08 21:01  ravindra
17968
17969         * ScrollableControl.cs: Removed unreachable code.
17970
17971 2004-09-08 06:45  jordi
17972
17973         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
17974
17975 2004-09-08 01:00  jackson
17976
17977         * XplatUIX11.cs: Only run the timers when updating the message
17978           queue. This effectively gives X messages a higher priority then
17979           timer messages. Timers still need love though
17980
17981 2004-09-07 14:01  jackson
17982
17983         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
17984           this for us and the handle is no longer valid.
17985
17986 2004-09-07 13:59  jackson
17987
17988         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
17989           loop that manages to not crash. TODO: Add poll and cleanup timers
17990
17991 2004-09-07 11:12  jordi
17992
17993         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
17994
17995 2004-09-07 03:40  jordi
17996
17997         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
17998           fixes, methods, multiple links
17999
18000 2004-09-06 06:55  jordi
18001
18002         * Control.cs: Caches ClientRectangle rectangle value
18003
18004 2004-09-05 02:03  jordi
18005
18006         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
18007           certain situations
18008
18009 2004-09-04 11:10  jordi
18010
18011         * Label.cs: Refresh when font changed
18012
18013 2004-09-02 16:24  pbartok
18014
18015         * Control.cs:
18016           - Added sanity check to creation of double buffer bitmap
18017
18018 2004-09-02 16:24  pbartok
18019
18020         * ButtonBase.cs:
18021           - Fixed selection of text color
18022           - Fixed handling of resize event; now properly recreates double
18023             buffering bitmap
18024           - Added missing assignment of TextAlignment
18025           - Added proper default for TextAlignment
18026
18027 2004-09-02 14:26  pbartok
18028
18029         * RadioButton.cs:
18030           - Added missing RadioButton.RadioButtonAccessibleObject class
18031
18032 2004-09-02 14:26  pbartok
18033
18034         * Control.cs:
18035           - Added missing Control.ControlAccessibleObject class
18036           - Started to implement Select()ion mechanisms, still very incomplete
18037
18038 2004-09-02 14:25  pbartok
18039
18040         * AccessibleObject.cs:
18041           - Added missing methods
18042
18043 2004-09-02 14:23  pbartok
18044
18045         * AccessibleNavigation.cs, AccessibleSelection.cs:
18046           - Initial check-in
18047
18048 2004-09-02 10:32  jordi
18049
18050         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
18051           pool for pens, brushes, and hatchbruses
18052
18053 2004-09-01 15:30  jackson
18054
18055         * StatusBar.cs: Fix typo
18056
18057 2004-09-01 14:44  pbartok
18058
18059         * RadioButton.cs:
18060           - Fixed state
18061
18062 2004-09-01 14:39  pbartok
18063
18064         * Button.cs, RadioButton.cs:
18065           - Functional initial check-in
18066
18067 2004-09-01 14:01  pbartok
18068
18069         * CheckBox.cs:
18070           - Added missing default
18071           - Added missing region mark
18072
18073 2004-09-01 09:10  jordi
18074
18075         * Label.cs: fixes method signatures, new methods, events, fixes
18076           autosize
18077
18078 2004-09-01 07:19  jordi
18079
18080         * Control.cs: Init string variables with an empty object
18081
18082 2004-09-01 04:20  jordi
18083
18084         * Control.cs: fires OnFontChanged event
18085
18086 2004-08-31 20:07  pbartok
18087
18088         * ButtonBase.cs:
18089           - Enabled display of strings
18090
18091 2004-08-31 20:05  pbartok
18092
18093         * Form.cs:
18094           - Added (partial) implementation of DialogResult; rest needs to be
18095             implemented when the modal loop code is done
18096
18097 2004-08-31 19:55  pbartok
18098
18099         * CheckBox.cs:
18100           - Fixed to match the removal of the needs_redraw concept
18101
18102 2004-08-31 19:55  pbartok
18103
18104         * ButtonBase.cs:
18105           - Removed the rather odd split between 'needs redraw' and redrawing
18106           - Now handles the events that require regeneration (ambient
18107             properties and size)
18108
18109 2004-08-31 19:41  pbartok
18110
18111         * Control.cs:
18112           - Added firing of BackColorChanged event
18113           - Added TopLevelControl property
18114           - Fixed handling of WM_ERASEBKGRND message
18115
18116 2004-08-31 12:49  pbartok
18117
18118         * ButtonBase.cs:
18119           - Removed debug
18120           - Minor fixes
18121
18122 2004-08-31 12:48  pbartok
18123
18124         * CheckBox.cs:
18125           - Finished (famous last words)
18126
18127 2004-08-31 04:35  jordi
18128
18129         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
18130           scrolling bugs, adds new methods
18131
18132 2004-08-30 14:42  pbartok
18133
18134         * CheckBox.cs:
18135           - Implemented CheckBox drawing code
18136
18137 2004-08-30 14:42  pbartok
18138
18139         * ButtonBase.cs:
18140           - Made Redraw() and CheckRedraw() virtual
18141           - Improved mouse up/down/move logic to properly track buttons
18142
18143 2004-08-30 09:44  pbartok
18144
18145         * CheckBox.cs:
18146           - Updated to fix broken build. Not complete yet.
18147
18148 2004-08-30 09:28  pbartok
18149
18150         * CheckState.cs:
18151           - Initial checkin
18152
18153 2004-08-30 09:17  pbartok
18154
18155         * Appearance.cs:
18156           - Initial check-in
18157
18158 2004-08-27 16:12  ravindra
18159
18160         * ToolBarButton.cs: Added TypeConverter attribute.
18161
18162 2004-08-27 16:07  ravindra
18163
18164         * ImageIndexConverter.cs: Implemented.
18165
18166 2004-08-27 14:17  pbartok
18167
18168         * Control.cs:
18169           - Removed unneeded stack vars
18170           - First attempt to fix sizing issues when layout is suspended
18171
18172 2004-08-25 15:35  jordi
18173
18174         * ScrollBar.cs: more fixes to scrollbar
18175
18176 2004-08-25 14:04  ravindra
18177
18178         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
18179           Added the missing divider code and grip for ToolBar Control.
18180
18181 2004-08-25 13:20  pbartok
18182
18183         * Control.cs:
18184           - Control now properly passes the ambient background color to child
18185             controls
18186
18187 2004-08-25 13:20  jordi
18188
18189         * ScrollBar.cs: small bug fix regarding bar position
18190
18191 2004-08-25 12:33  pbartok
18192
18193         * Timer.cs:
18194           - Now only calls SetTimer or KillTimer if the enabled state has
18195           changed
18196
18197 2004-08-25 12:33  pbartok
18198
18199         * XplatUIWin32.cs:
18200           - Fixed timer handling, now seems to work
18201           - Improved error message for window creation
18202
18203 2004-08-25 12:32  pbartok
18204
18205         * Control.cs:
18206           - Fixed generation of MouseUp message
18207
18208 2004-08-25 12:29  jordi
18209
18210         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
18211           and fixes for progressbar
18212
18213 2004-08-24 18:43  ravindra
18214
18215         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
18216           in ToolBar control.
18217
18218 2004-08-24 17:15  pbartok
18219
18220         * Panel.cs:
18221           - Added #region
18222           - Added missing events
18223           - Alphabetized
18224
18225 2004-08-24 17:14  pbartok
18226
18227         * StatusBar.cs, PictureBox.cs:
18228           - Now uses Control's CreateParams
18229
18230 2004-08-24 16:36  pbartok
18231
18232         * XplatUIX11.cs:
18233           - Fixed background color handling
18234           - Fixed sending of enter/leave events on a grab
18235
18236 2004-08-24 16:35  pbartok
18237
18238         * X11Structs.cs:
18239           - Refined definitions for CrossingEvent
18240
18241 2004-08-24 12:37  jordi
18242
18243         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
18244           formmating, methods signature, and adds missing events
18245
18246 2004-08-24 12:24  jordi
18247
18248         * Control.cs: fire OnEnabledChanged event
18249
18250 2004-08-24 11:17  pbartok
18251
18252         * XplatUIWin32.cs:
18253           - Implemented SetTimer() and KillTimer()
18254
18255 2004-08-24 11:16  pbartok
18256
18257         * XplatUIX11.cs:
18258           - Now uses Remove instead of Add to kill the timer
18259
18260 2004-08-24 10:16  jackson
18261
18262         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
18263           picture boxes in the theme now. Draw picture box borders and obey
18264           sizing modes
18265
18266 2004-08-24 05:49  jackson
18267
18268         * Timer.cs: Remove top secret debugging code
18269
18270 2004-08-24 05:34  jackson
18271
18272         * PictureBox.cs: Temp hack to make picture boxes draw their full
18273           image
18274
18275 2004-08-24 05:29  jackson
18276
18277         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18278           XplatUIX11.cs: Move timers to the driver level. On X they are
18279           queued by the driver and checked on idle.
18280
18281 2004-08-24 01:07  jackson
18282
18283         * XplatUIX11.cs: Use a queue for async messages instead of passing
18284           them as ClientMessages since that was totally broken. Also simply
18285           check for events and return an idle message if none are found. This
18286           gives us an idle handler, and prevents deadlocking when no messages
18287           are in the queue.
18288
18289 2004-08-23 18:19  ravindra
18290
18291         * XplatUIWin32.cs: Removed the unwanted destructor.
18292
18293 2004-08-23 17:27  pbartok
18294
18295         * ButtonBase.cs:
18296           - Finishing touches. Works now, just needs some optimizations.
18297
18298 2004-08-23 16:53  jordi
18299
18300         * ScrollBar.cs: small fix
18301
18302 2004-08-23 16:45  pbartok
18303
18304         * Application.cs:
18305           - Removed debug output
18306           - Simplifications
18307
18308 2004-08-23 16:43  jordi
18309
18310         * ScrollBar.cs: [no log message]
18311
18312 2004-08-23 16:10  pbartok
18313
18314         * Form.cs:
18315           - Fixed handling of WM_CLOSE message
18316           - Removed debug output
18317
18318 2004-08-23 16:09  pbartok
18319
18320         * Application.cs:
18321           - Added handling of Idle event
18322           - Added handling of form closing
18323           - Fixed reporting of MessageLoop property
18324           - Removed some unneeded code, should provide a bit of a speedup
18325
18326 2004-08-23 15:22  pbartok
18327
18328         * Control.cs:
18329           - Added InitLayout() method
18330           - Added code to properly perform layout when Anchor or Dock property
18331             is changed
18332           - Changed 'interpretation' of ResumeLayout. MS seems to have a
18333             LAMESPEC, tried to do it in a way that makes sense
18334
18335 2004-08-23 14:10  jordi
18336
18337         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
18338           properties and methods
18339
18340 2004-08-23 13:55  pbartok
18341
18342         * Control.cs:
18343           - Properly fixed Jordi's last fix
18344           - Now uses Cursor's Position property instead of calling XplatUI
18345           directly
18346
18347 2004-08-23 13:44  jordi
18348
18349         * PaintEventHandler.cs: Adding missing attribute
18350
18351 2004-08-23 13:39  pbartok
18352
18353         * Cursor.cs:
18354           - Implemented Position property
18355
18356 2004-08-23 13:39  pbartok
18357
18358         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18359           - Added method to move mouse cursor
18360
18361 2004-08-23 13:39  pbartok
18362
18363         * XplatUIX11.cs:
18364           - Fixed setting of background color
18365           - Added method to move mouse cursor
18366
18367 2004-08-23 13:16  jordi
18368
18369         * Control.cs: avoids null exception
18370
18371 2004-08-22 17:46  jackson
18372
18373         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
18374           PictureBox
18375
18376 2004-08-22 17:40  jackson
18377
18378         * XplatUIX11.cs: Add some missing locks
18379
18380 2004-08-22 15:10  pbartok
18381
18382         * Control.cs, Form.cs:
18383           - Removed OverlappedWindow style from Control, instead it's default
18384             now is child
18385           - Made form windows OverlappedWindow by default
18386
18387 2004-08-22 13:34  jackson
18388
18389         * ScrollBar.cs: Update the position through the Value property so
18390           the OnValueChanged event is raised.
18391
18392 2004-08-22 12:04  pbartok
18393
18394         * SWF.csproj:
18395           - Added Cursor.cs and UserControl.cs
18396
18397 2004-08-22 12:03  pbartok
18398
18399         * Cursor.cs:
18400           - Started implementation, not usable yet
18401
18402 2004-08-22 12:00  pbartok
18403
18404         * UserControl.cs:
18405           - Implemented UserControl (complete)
18406
18407 2004-08-21 19:20  ravindra
18408
18409         * ToolBar.cs: Correcting the formatting mess of VS.NET.
18410
18411 2004-08-21 18:49  ravindra
18412
18413         * ToolBar.cs: Probably this completes the missing attributes in
18414           toolbar control.
18415
18416 2004-08-21 18:03  ravindra
18417
18418         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
18419           Fixed toolbar control signatures.
18420
18421 2004-08-21 16:32  pbartok
18422
18423         * LinkLabel.cs:
18424           - Signature Fixes
18425
18426 2004-08-21 16:30  pbartok
18427
18428         * Label.cs:
18429           - Signature fixes
18430
18431 2004-08-21 16:19  pbartok
18432
18433         * Control.cs, Label.cs:
18434           - Signature fixes
18435
18436 2004-08-21 15:57  pbartok
18437
18438         * ButtonBase.cs:
18439           - Added loads of debug output for development
18440           - Fixed typo in method name
18441
18442 2004-08-21 15:52  pbartok
18443
18444         * ToolBarButtonClickEventArgs.cs:
18445           - Added missing base class
18446
18447 2004-08-21 14:53  pbartok
18448
18449         * Control.cs:
18450           - Updated to match new GrabWindow signature
18451
18452 2004-08-21 14:51  pbartok
18453
18454         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18455           - Added method to get default display size
18456
18457 2004-08-21 14:23  pbartok
18458
18459         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18460           - Added method to query current grab state
18461           - Added argument to allow confining a grab to a window
18462
18463 2004-08-21 14:22  pbartok
18464
18465         * Keys.cs:
18466           - Added [Flags] attribute so that modifiers can be used in bitwise
18467           ops
18468
18469 2004-08-21 14:21  pbartok
18470
18471         * TrackBar.cs, ScrollBar.cs:
18472           - Replaced direct XplatUI calls with their Control counterpart
18473
18474 2004-08-21 13:32  pbartok
18475
18476         * Control.cs:
18477           - Implemented Created property
18478
18479 2004-08-21 13:28  pbartok
18480
18481         * Control.cs:
18482           - Implemented ContainsFocus
18483
18484 2004-08-21 13:26  pbartok
18485
18486         * Control.cs:
18487           - Implemented CausesValidation
18488
18489 2004-08-21 13:21  pbartok
18490
18491         * Control.cs:
18492           - Implemented CanFocus
18493           - Implemented CanSelect
18494           - Implemented Capture
18495
18496 2004-08-21 12:35  pbartok
18497
18498         * XplatUIWin32.cs:
18499           - Fixed bug with Async message handling
18500           - Implemented getting the ModifierKeys
18501
18502 2004-08-21 12:32  jackson
18503
18504         * AsyncMethodResult.cs: Make sure we have the mutex before we
18505           release it. Fixes BeginInvoke on windows
18506
18507 2004-08-21 11:31  pbartok
18508
18509         * XplatUIWin32.cs, XplatUIX11.cs:
18510           - Drivers now return proper mouse state
18511
18512 2004-08-21 10:54  jackson
18513
18514         * Control.cs: Implement EndInvoke
18515
18516 2004-08-21 10:48  jackson
18517
18518         * Timer.cs: Remove unneeded finalizer
18519
18520 2004-08-20 19:52  ravindra
18521
18522         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
18523           in mouse event handling in the ToolBar control.
18524
18525 2004-08-20 19:50  ravindra
18526
18527         * ImageList.cs: Changed draw method to use the arguments passed in
18528           to draw the image.
18529
18530 2004-08-20 18:58  pbartok
18531
18532         * XplatUIStructs.cs:
18533           - Added private message for async communication
18534
18535 2004-08-20 17:38  ravindra
18536
18537         * Control.cs: Made RightToLeft property virtual and removed a
18538           Console.WriteLine.
18539
18540 2004-08-20 14:39  jordi
18541
18542         * ThemeGtk.cs: use style_attach
18543
18544 2004-08-20 14:39  pbartok
18545
18546         * XplatUIWin32.cs:
18547           - Added jackson's Async code from X11 to Win32
18548
18549 2004-08-20 14:09  pbartok
18550
18551         * SWF.csproj:
18552           - Added all new files
18553
18554 2004-08-20 14:09  pbartok
18555
18556         * Control.cs:
18557           - Added call to set window background color
18558
18559 2004-08-20 14:03  pbartok
18560
18561         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
18562           - Added method for setting the window background
18563
18564 2004-08-20 14:02  pbartok
18565
18566         * XplatUIWin32.cs:
18567           - Added method for setting the background color
18568           - Added handling for erasing the window background
18569
18570 2004-08-20 13:45  jordi
18571
18572         * TrackBar.cs: fixes timer, new properties and methods
18573
18574 2004-08-20 13:34  jackson
18575
18576         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
18577           correct thread
18578
18579 2004-08-20 13:22  jackson
18580
18581         * Timer.cs: Timer Tick events are now handed through Controls Async
18582           mechanism so the callbacks are executed in the same thread as X
18583
18584 2004-08-20 13:19  jackson
18585
18586         * XplatUIDriver.cs: Expose functionality to send async messages
18587           through the driver
18588
18589 2004-08-20 13:18  jackson
18590
18591         * Control.cs: Implement Begininvoke
18592
18593 2004-08-20 13:14  jackson
18594
18595         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
18596           messages through the driver
18597
18598 2004-08-20 13:12  jackson
18599
18600         * XplatUIX11.cs: Lock before all X operations. Also added Async
18601           method functionality through XSendEvent
18602
18603 2004-08-20 13:11  jackson
18604
18605         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
18606           This will screw up on 64 bit systems)
18607
18608 2004-08-20 13:10  jackson
18609
18610         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
18611           Async messages through X/Win32
18612
18613 2004-08-19 19:39  pbartok
18614
18615         * XplatUIX11.cs:
18616           - Updated code to match new HandleData.DeviceContext type
18617
18618 2004-08-19 19:38  pbartok
18619
18620         * HandleData.cs:
18621           - Made DeviceContext a generic object to allow usage from various
18622           drivers
18623           - Added support for queueing Windows messages
18624
18625 2004-08-19 19:37  pbartok
18626
18627         * XplatUIWin32.cs:
18628           - Added generation of MouseEnter, MouseLeave and MouseHover events
18629           - Added cleanup on EndPaint
18630
18631 2004-08-19 19:17  pbartok
18632
18633         * Control.cs:
18634           - Added handling of WM_MOUSEHOVER
18635           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
18636           code
18637
18638 2004-08-19 18:55  jordi
18639
18640         * ThemeGtk.cs: fixes button order
18641
18642 2004-08-19 18:12  jordi
18643
18644         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
18645
18646 2004-08-19 17:09  pbartok
18647
18648         * Control.cs:
18649           - Added Right property
18650           - Added RightToLeft property
18651
18652 2004-08-19 16:27  jordi
18653
18654         * ThemeGtk.cs: experimental GTK theme support
18655
18656 2004-08-19 16:26  jordi
18657
18658         * ITheme.cs, Theme.cs: move themes from an interface to a class
18659
18660 2004-08-19 16:25  jordi
18661
18662         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
18663           theme enhancaments
18664
18665 2004-08-19 16:04  pbartok
18666
18667         * XplatUIX11.cs:
18668           - Added colormap basics
18669           - Added a way to re-initialize with a different display handle
18670           - Fixed setting of the window background color
18671           - Added various X11 imports related to colors and colormaps
18672
18673 2004-08-19 15:51  pbartok
18674
18675         * X11Structs.cs:
18676           - Removed packing hints (Paolo suggested this a while back)
18677           - fixed colormap type
18678           - Added default Atom types
18679           - Added Screen and color structs and enums
18680
18681 2004-08-19 15:39  pbartok
18682
18683         * ImageList.cs:
18684           - Added missing Draw() method
18685           - Added missing RecreateHandle event
18686
18687 2004-08-19 15:30  pbartok
18688
18689         * Form.cs:
18690           - Added handling of WM_CLOSE
18691
18692 2004-08-18 13:16  jordi
18693
18694         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
18695           a table
18696
18697 2004-08-18 09:56  jordi
18698
18699         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
18700
18701 2004-08-17 15:31  ravindra
18702
18703         * SWF.csproj: Updated project.
18704
18705 2004-08-17 15:25  pbartok
18706
18707         * Control.cs:
18708           - Drawing improvement; don't call UpdateBounds if we are not visible
18709             (or have been minimized)
18710
18711 2004-08-17 15:24  pbartok
18712
18713         * XplatUIWin32.cs:
18714           - Finished IsVisible
18715           - Added Win32GetWindowPlacement
18716
18717 2004-08-17 15:08  jackson
18718
18719         * Panel.cs: Initial checkin of the Panel
18720
18721 2004-08-17 14:25  pbartok
18722
18723         * Control.cs:
18724           - Fixed broken handling of default window sizes
18725
18726 2004-08-17 13:29  jackson
18727
18728         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
18729           has a large startup time.
18730
18731 2004-08-17 10:25  jackson
18732
18733         * HandleData.cs: union areas properly
18734
18735 2004-08-17 10:12  jackson
18736
18737         * HandleData.cs: union areas properly
18738
18739 2004-08-16 20:00  ravindra
18740
18741         * ToolBar.cs, ToolBarButton.cs: Added attributes.
18742
18743 2004-08-16 18:48  ravindra
18744
18745         * ToolBar.cs: Added attributes.
18746
18747 2004-08-16 17:17  ravindra
18748
18749         * SWF.csproj: Updated project.
18750
18751 2004-08-16 17:16  jackson
18752
18753         * XplatUIX11.cs: Check for more expose events before sending a
18754           WM_PAINT so they can all be grouped together. This makes dragging a
18755           window across another window redraw in a sane way.
18756
18757 2004-08-16 15:47  pbartok
18758
18759         * Control.cs:
18760           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
18761             support OnMouseEnter/Leave()
18762           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
18763             exposure handling
18764
18765 2004-08-16 15:46  pbartok
18766
18767         * XplatUIStructs.cs, XplatUIX11.cs:
18768           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
18769           OnMouseEnter/Leave()
18770
18771 2004-08-16 15:34  jackson
18772
18773         * XplatUIX11.cs: Group multiple expose events in HandleData, make
18774           sure messages get the message field set to WM_NULL if they are not
18775           handled.
18776
18777 2004-08-16 15:24  jackson
18778
18779         * HandleData.cs: HandleData is used for storing message information
18780           for window handles
18781
18782 2004-08-15 17:23  ravindra
18783
18784         * ColorDepth.cs: Added attribute.
18785
18786 2004-08-15 17:23  ravindra
18787
18788         * SWF.csproj: Updated project for ToolBar Control.
18789
18790 2004-08-15 17:20  ravindra
18791
18792         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
18793           control and also dos2unix format.
18794
18795 2004-08-15 17:13  ravindra
18796
18797         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
18798           ToolBarButtonClickEventArgs.cs,
18799           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
18800           ToolBarTextAlign.cs: First Implementation of ToolBar control.
18801
18802 2004-08-15 15:31  pbartok
18803
18804         * ButtonBase.cs:
18805           - First (mostly) working version
18806
18807 2004-08-13 16:15  pbartok
18808
18809         * Control.cs:
18810           - Fixed Anchor default
18811
18812 2004-08-13 15:43  pbartok
18813
18814         * Control.cs:
18815           - Changed GetCursorPos signature
18816
18817 2004-08-13 15:42  pbartok
18818
18819         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18820           - Changed signature for GetCursorPos
18821
18822 2004-08-13 15:25  pbartok
18823
18824         * XplatUIX11.cs:
18825           - Cleanup
18826           - Fixed resizing/exposure handling
18827
18828 2004-08-13 15:22  jordi
18829
18830         * ThemeWin32Classic.cs: removes redundant code and fixes issues
18831           with tickposition
18832
18833 2004-08-13 14:55  jordi
18834
18835         * TrackBar.cs: change from wndproc to events
18836
18837 2004-08-13 13:00  jordi
18838
18839         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18840           XplatUIX11.cs: implements PointToClient (ScreenToClient)
18841
18842 2004-08-13 12:53  pbartok
18843
18844         * XplatUIWin32.cs:
18845           - Changed GetWindowPos to also provide client area size
18846           - Fixed broken prototypes for several win32 functions
18847
18848 2004-08-13 12:53  pbartok
18849
18850         * XplatUI.cs, XplatUIDriver.cs:
18851           - Changed GetWindowPos to also provide client area size
18852
18853 2004-08-13 12:52  pbartok
18854
18855         * XplatUIX11.cs:
18856           - Added generation of WM_POSCHANGED
18857           - Changed GetWindowPos to also provide client area size
18858
18859 2004-08-13 12:52  pbartok
18860
18861         * Control.cs:
18862           - Added Dispose() and destructor
18863           - Fixed resizing and bounds calculation
18864           - Fixed Layout
18865           - Added memory savings for invisible windows
18866
18867 2004-08-13 12:46  jordi
18868
18869         * TrackBar.cs: adds timer and grap window
18870
18871 2004-08-13 10:25  jackson
18872
18873         * Timer.cs: SWF Timer
18874
18875 2004-08-12 16:59  pbartok
18876
18877         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18878           - Implemented method to get current mouse position
18879
18880 2004-08-12 14:29  jordi
18881
18882         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
18883           enhancement, fix mouse problems, highli thumb, etc
18884
18885 2004-08-12 13:31  pbartok
18886
18887         * Control.cs:
18888           - Fixed Anchoring bugs
18889
18890 2004-08-12 13:01  jackson
18891
18892         * StatusBar.cs: Don't forget things
18893
18894 2004-08-12 12:54  jackson
18895
18896         * ThemeWin32Classic.cs: Handle owner draw status bars
18897
18898 2004-08-12 12:54  jackson
18899
18900         * StatusBar.cs: Implement missing properties, events, and methods.
18901           Handle mouse clicking
18902
18903 2004-08-12 10:19  jackson
18904
18905         * StatusBarPanelClickEventArgs.cs,
18906           StatusBarPanelClickEventHandler.cs: Classes for handling status
18907           bar panel click events
18908
18909 2004-08-12 10:10  jackson
18910
18911         * Control.cs: Add missing properties
18912
18913 2004-08-12 09:46  pbartok
18914
18915         * BindingsManagerBase.cs:
18916           - Name changed to BindingManagerBase.cs
18917
18918 2004-08-12 09:25  jordi
18919
18920         * ScrollableControl.cs: calls ctrlbase instead of exeception
18921
18922 2004-08-11 16:28  pbartok
18923
18924         * InputLanguageChangingEventArgs.cs:
18925           - Never check in before compiling. Fixes the last check-in
18926
18927 2004-08-11 16:26  pbartok
18928
18929         * InputLanguageChangingEventArgs.cs:
18930           - More signature fixes
18931
18932 2004-08-11 16:20  pbartok
18933
18934         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
18935           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
18936           ImageListStreamer.cs, InputLanguage.cs,
18937           InputLanguageChangedEventArgs.cs,
18938           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
18939           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
18940           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
18941           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18942           - Signature fixes
18943
18944 2004-08-11 16:16  pbartok
18945
18946         * Application.cs:
18947           - Fixed Signature
18948           - Added .Net 1.1 method
18949
18950 2004-08-11 15:25  pbartok
18951
18952         * SWF.csproj:
18953           - Fixed BindingManagerBase.cs filename
18954
18955 2004-08-11 15:22  pbartok
18956
18957         * BindingManagerBase.cs:
18958           - Was checked in with wrong filename
18959
18960 2004-08-11 14:50  pbartok
18961
18962         * SWF.csproj:
18963           - Updated
18964
18965 2004-08-11 13:41  jordi
18966
18967         * XplatUIWin32.cs: Fixes ClientRect
18968
18969 2004-08-11 13:19  pbartok
18970
18971         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18972           XplatUIX11.cs:
18973           - We had SetWindowPos and MoveWindow to set window positions and
18974             size, removed MoveWindow. We have GetWindowPos, so it made sense to
18975             keep SetWindowPos as matching counterpart
18976           - Added some X11 sanity checking
18977
18978 2004-08-11 12:59  pbartok
18979
18980         * Control.cs:
18981           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
18982             (It seems that SetBounds is just a front for SetBoundsCore and
18983              SetBoundsCore updates the underlying window system and
18984              UpdateBounds is responsible for updating the variables associated
18985              with the Control and sending the events)
18986           - Major cleanup of Size handling; we now have two sizes, client_size
18987             and bounds. Bounds defines the window with decorations, client_size
18988             without them.
18989
18990 2004-08-11 12:55  pbartok
18991
18992         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18993           - Added method to calculate difference between decorated window and
18994             raw client area
18995
18996 2004-08-11 12:54  pbartok
18997
18998         * Label.cs:
18999           - Forcing redraw on resize
19000
19001 2004-08-11 11:43  pbartok
19002
19003         * ImageList.cs:
19004           - Removed disposing of the actual images when the list is disposed
19005
19006 2004-08-11 09:13  pbartok
19007
19008         * Control.cs:
19009           - Now properly reparents windows
19010
19011 2004-08-11 08:37  pbartok
19012
19013         * Control.cs:
19014           - Duh!
19015
19016 2004-08-11 07:47  pbartok
19017
19018         * Control.cs:
19019           - Rewrote the collection stuff. Might not be as fast now, not
19020             keeping the number of children around and accessible directly, but
19021             it's more straightforward
19022
19023 2004-08-11 07:44  pbartok
19024
19025         * AccessibleObject.cs:
19026           - Fixed to match ControlCollection rewrite
19027
19028 2004-08-11 07:43  pbartok
19029
19030         * ImageList.cs:
19031           - Added missing creation of the collection list
19032
19033 2004-08-10 20:08  jackson
19034
19035         * StatusBar.cs: Get the paint message from WndProc
19036
19037 2004-08-10 19:31  jackson
19038
19039         * ThemeWin32Classic.cs: Create Brushes as little as possible
19040
19041 2004-08-10 19:20  jackson
19042
19043         * UICues.cs: Add Flags attribute
19044
19045 2004-08-10 19:19  jackson
19046
19047         * StatusBarPanel.cs: Signature cleanup
19048
19049 2004-08-10 19:10  jackson
19050
19051         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
19052           Initial implementation of status bar item drawing
19053
19054 2004-08-10 17:27  jordi
19055
19056         * TrackBar.cs: add missing methods, properties, and restructure to
19057           hide extra ones
19058
19059 2004-08-10 16:24  jackson
19060
19061         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
19062           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
19063           attribute
19064
19065 2004-08-10 13:21  jordi
19066
19067         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
19068           enhancements and standarize on win colors defaults
19069
19070 2004-08-10 12:52  jackson
19071
19072         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
19073           ThemeWin32Classic.cs: Implement DrawItem functionality
19074
19075 2004-08-10 12:47  jordi
19076
19077         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
19078
19079 2004-08-10 12:32  jordi
19080
19081         * Control.cs: throw ontextchange event
19082
19083 2004-08-10 11:43  pbartok
19084
19085         * Control.cs:
19086           - Added more to the still unfinished Dock/Anchor layout code
19087
19088 2004-08-10 11:39  pbartok
19089
19090         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19091           - Added GetWindowPos method
19092
19093 2004-08-10 11:36  pbartok
19094
19095         * XplatUIWin32.cs:
19096           - Implemented several methods
19097
19098 2004-08-10 09:47  jackson
19099
19100         * TrackBar.cs: Allow control to handle buffering
19101
19102 2004-08-10 09:41  jackson
19103
19104         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
19105
19106 2004-08-10 09:24  jackson
19107
19108         * Label.cs, LinkLabel.cs: Let Control handle buffering.
19109
19110 2004-08-10 09:09  jackson
19111
19112         * StatusBar.cs: Let Control handle all the buffering.
19113
19114 2004-08-10 09:08  jackson
19115
19116         * Control.cs: Control will now handle the buffering code, so each
19117           control does not have to implement this.
19118
19119 2004-08-10 08:34  jackson
19120
19121         * XplatUIDriver.cs: Use default colors from the theme
19122
19123 2004-08-09 17:12  pbartok
19124
19125         * ImageList.cs:
19126           - Fixed several bugs Ravindra pointed out
19127
19128 2004-08-09 16:11  pbartok
19129
19130         * Control.cs:
19131           - Added incomplete dock layout code
19132           - Added support for mouse wheel
19133
19134 2004-08-09 16:09  pbartok
19135
19136         * XplatUIX11.cs:
19137           - Added handling for middle and right mousebutton
19138           - Added handling for mouse wheel
19139           - Added handling for key state and mouse state and position
19140           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
19141           messages
19142
19143 2004-08-09 15:40  jackson
19144
19145         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
19146           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
19147           checkin
19148
19149 2004-08-09 15:37  jackson
19150
19151         * StatusBar.cs: Initial implementation of StatusBar
19152
19153 2004-08-09 15:36  jackson
19154
19155         * ITheme.cs: Add support for drawing status bar and getting status
19156           bar item sizes
19157
19158 2004-08-09 15:35  pbartok
19159
19160         * MouseButtons.cs:
19161           - Fixed values
19162
19163 2004-08-09 15:34  jackson
19164
19165         * ThemeWin32Classic.cs: Add support for drawing status bar and get
19166           status bar item sizes
19167
19168 2004-08-09 15:21  jackson
19169
19170         * ThemeWin32Classic.cs: Use known colors for default control
19171           colours
19172
19173 2004-08-09 15:12  jackson
19174
19175         * ThemeWin32Classic.cs: Make the default font static, it is static
19176           in control so this doesn't change functionality and creating fonts
19177           is sloooooow.
19178
19179 2004-08-09 14:56  pbartok
19180
19181         * X11Structs.cs:
19182           - Added GrabMode enum
19183
19184 2004-08-09 14:55  pbartok
19185
19186         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19187           - Removed Run method, was only required for initial development
19188
19189 2004-08-09 14:51  pbartok
19190
19191         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19192           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
19193           capture
19194
19195 2004-08-09 13:48  pbartok
19196
19197         * XplatUIX11.cs:
19198           - Fixed default sizing for child windows
19199
19200 2004-08-09 12:56  pbartok
19201
19202         * XplatUIX11.cs:
19203           - Added generation of WM_DESTROY message
19204           - Added handling of window manager induced shutdown
19205
19206 2004-08-09 11:31  jackson
19207
19208         * ThemeWin32Classic.cs: New names for control properties
19209
19210 2004-08-09 11:25  jackson
19211
19212         * Control.cs: Use new color names
19213
19214 2004-08-09 11:02  jackson
19215
19216         * XplatUI.cs: Get default window properties from the theme
19217
19218 2004-08-09 11:01  jackson
19219
19220         * ITheme.cs: The theme engine now controls default window
19221           properties
19222
19223 2004-08-09 11:00  jackson
19224
19225         * ThemeWin32Classic.cs: Add default window color properties
19226
19227 2004-08-09 10:17  jackson
19228
19229         * ThemeWin32Classic.cs: Use correct default back color
19230
19231 2004-08-09 10:05  jackson
19232
19233         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
19234           the theme now.
19235
19236 2004-08-09 09:56  jackson
19237
19238         * XplatUI.cs: Remove defaults, these are handled by the theme now.
19239
19240 2004-08-09 09:54  jackson
19241
19242         * Control.cs: Get default properties from the theme.
19243
19244 2004-08-09 09:53  jackson
19245
19246         * ITheme.cs: Themes now handle default control properties
19247
19248 2004-08-09 09:53  jackson
19249
19250         * ThemeWin32Classic.cs: Themes now handle default control
19251           properties so coloring will be consistent
19252
19253 2004-08-08 16:54  jordi
19254
19255         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
19256
19257 2004-08-08 15:08  jordi
19258
19259         * XplatUIX11.cs: fixes keyboard crash
19260
19261 2004-08-08 13:47  jordi
19262
19263         * Label.cs: add cvs header info
19264
19265 2004-08-08 12:09  jackson
19266
19267         * ThemeWin32Classic.cs: Add pen_buttonface
19268
19269 2004-08-08 11:52  jordi
19270
19271         * Label.cs, LinkLabel.cs: [no log message]
19272
19273 2004-08-08 11:34  jordi
19274
19275         * ThemeWin32Classic.cs: Use Windows Standard Colours
19276
19277 2004-08-07 17:32  jordi
19278
19279         * TrackBar.cs: throw exceptions of invalid enums values
19280
19281 2004-08-07 17:31  jordi
19282
19283         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
19284           draw method name
19285
19286 2004-08-07 16:56  jackson
19287
19288         * HorizontalAlignment.cs: Initial checkin
19289
19290 2004-08-07 13:16  jordi
19291
19292         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
19293           methods
19294
19295 2004-08-07 13:05  jordi
19296
19297         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
19298           GetSysColor defines
19299
19300 2004-08-06 18:01  pbartok
19301
19302         * ThemeWin32Classic.cs:
19303           - Fixed some rounding issues with float/int
19304
19305 2004-08-06 18:00  jackson
19306
19307         * DockStyle.cs, AnchorStyles.cs:
19308
19309                   Add flags and serializable attributes.
19310
19311 2004-08-06 17:46  pbartok
19312
19313         * XplatUIX11.cs:
19314           - Implemented GetParent
19315
19316 2004-08-06 17:18  pbartok
19317
19318         * TrackBar.cs:
19319           - Fixed some rounding issues with float/int
19320
19321 2004-08-06 17:17  pbartok
19322
19323         * X11Structs.cs, XplatUIX11.cs:
19324           - Fixed Refresh and Invalidate
19325
19326 2004-08-06 15:30  pbartok
19327
19328         * Control.cs, X11Structs.cs, XplatUIX11.cs:
19329           - Fixed recursive loop when resizing
19330           - Improved/fixed redrawing on expose messages
19331
19332 2004-08-06 09:53  jordi
19333
19334         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
19335           keyboard navigation
19336
19337 2004-08-06 08:02  pbartok
19338
19339         * X11Structs.cs, XplatUIX11.cs:
19340           - Fixed reparenting
19341           - Fixed window border creation
19342
19343 2004-08-05 15:38  pbartok
19344
19345         * XplatUIX11.cs:
19346           - Attempted fix for reparenting problems
19347
19348 2004-08-04 15:14  pbartok
19349
19350         * Control.cs:
19351           - Fixed Invalidation bug (calculated wrong client area)
19352           - Added ClientSize setter
19353
19354 2004-08-04 15:13  pbartok
19355
19356         * Form.cs:
19357           - Added AutoScale properties
19358
19359 2004-08-04 15:13  pbartok
19360
19361         * SWF.csproj:
19362           - Added latest files
19363
19364 2004-08-04 14:11  pbartok
19365
19366         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19367           XplatUIX11.cs:
19368           - Added Invalidate handling
19369
19370 2004-08-03 17:09  jordi
19371
19372         * XplatUIDriver.cs: fixes spelling mistake
19373
19374 2004-07-27 09:53  jordi
19375
19376         * TrackBar.cs: fixes trackbar events, def classname, methods
19377           signature
19378
19379 2004-07-27 09:29  jordi
19380
19381         * ScrollBar.cs: fixes scrollbar events
19382
19383 2004-07-27 04:38  jordi
19384
19385         * Control.cs: changes to be able to run winforms samples
19386
19387 2004-07-26 11:42  jordi
19388
19389         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
19390           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
19391
19392 2004-07-26 05:41  jordi
19393
19394         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
19395           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
19396           implementation
19397
19398 2004-07-22 09:22  jordi
19399
19400         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
19401           check link overlapping, implement events, and fixes
19402
19403 2004-07-21 10:28  jordi
19404
19405         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
19406
19407 2004-07-21 10:19  jordi
19408
19409         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
19410           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
19411           LinkLabelLinkClickedEventArgs.cs,
19412           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
19413           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
19414           implementation
19415
19416 2004-07-19 13:09  jordi
19417
19418         * Control.cs, Label.cs: label control re-written: added missing
19419           functionlity, events, and properties
19420
19421 2004-07-19 10:49  jordi
19422
19423         * Control.cs: fixes SetBounds logic
19424
19425 2004-07-19 01:29  jordi
19426
19427         * Control.cs: Call RefreshWindow only if the window has created
19428
19429 2004-07-15 14:05  pbartok
19430
19431         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
19432           - Implemented ImageList and ImageList.ImageCollection classes
19433           - Added ColorDepth enumeration
19434           - Updated SWF VS.Net project
19435
19436 2004-07-15 11:06  jordi
19437
19438         * XplatUIStructs.cs: added MsgButons enum
19439
19440 2004-07-15 11:03  jordi
19441
19442         * Control.cs: added basic mouse handeling events
19443
19444 2004-07-15 03:38  jordi
19445
19446         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
19447           Vertical TrackBar control implementation
19448
19449 2004-07-13 09:33  jordi
19450
19451         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
19452
19453 2004-07-13 09:31  jordi
19454
19455         * Control.cs, Form.cs: commit: new properties and fixes form size
19456           problems
19457
19458 2004-07-09 14:13  miguel
19459
19460         * ProgressBar.cs: Spelling
19461
19462 2004-07-09 11:25  pbartok
19463
19464         * ProgressBar.cs:
19465           - Removed usage of Rectangle for drawing. Miguel pointed out it's
19466           faster
19467
19468 2004-07-09 11:17  miguel
19469
19470         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
19471
19472                 * ProgressBar.cs: Fixed spelling for `block'
19473
19474                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
19475                 style guidelines.
19476
19477                 Avoid using the += on rect.X, that exposed a bug in the compiler.
19478
19479 2004-07-08 23:21  pbartok
19480
19481         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
19482           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
19483           BaseCollection.cs, Binding.cs, BindingContext.cs,
19484           BindingMemberInfo.cs, BindingsCollection.cs,
19485           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
19486           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
19487           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
19488           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
19489           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
19490           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
19491           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
19492           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
19493           FrameStyle.cs, GiveFeedbackEventArgs.cs,
19494           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
19495           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
19496           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
19497           InputLanguageChangedEventArgs.cs,
19498           InputLanguageChangedEventHandler.cs,
19499           InputLanguageChangingEventArgs.cs,
19500           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
19501           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
19502           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
19503           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
19504           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
19505           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
19506           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
19507           QueryAccessibilityHelpEventArgs.cs,
19508           QueryAccessibilityHelpEventHandler.cs,
19509           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
19510           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
19511           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
19512           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
19513           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
19514           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
19515           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
19516           XplatUIX11.cs, lang.cs:
19517           - Initial check-in
19518