* ControlEventTest.cs: Added tests for Invalidated event.
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
2
3         * TreeNodeCollection.cs: Avoid duplicating indexer code.
4
5 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
6
7         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
8         Fixes part of bug #79910.
9
10 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
11
12         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
13           (bug #79903). Some minor string updates to match ms.
14
15 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
16
17         * FileDialog.cs: Don't add an extension if the filename
18           already ends with that extension.
19
20 2006-11-10  Jackson Harper  <jackson@ximian.com>
21
22         * TreeView.cs: Use the currently highlighted node for the
23         BeforeSelect event.
24         * TextBoxBase.cs: There is no need to expand selection on
25         MouseMove.
26         - CanUndo means 'is there any undo operations', not 'is undo
27         allowed on this textcontrol. Fixed ClearUndo unit test.
28
29 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
30
31         * Button.cs: only perform click when button is Selectable (so as 
32         not to activate default buttons when they're disabled)
33         
34         * Control.cs: Rewrite of the SelectNextControl and related 
35         methods. HandleClick now selects next control if the current one
36         is being disabled.
37         
38         * Form.cs: OnActivated selects next active control only if Load 
39         has already occurred. If Load hasn't run, there's no point in 
40         selecting here, Load might change the state of controls.
41         
42         * FocusTest.cs: Tests marked as working again for these fixes
43
44 2006-11-10  Chris Toshok  <toshok@ximian.com>
45
46         * XplatUIX11.cs: a couple of fixes.
47
48         - use XInternAtoms with almost all the atoms we need to register,
49         instead of many, many calls to XInternAtom.  should help a bit on
50         startup time, at the expense of making the code look a little
51         worse.
52
53         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
54         isn't reparented (which seems to be a clue that we're running fon
55         compiz) and they have an Owner form.  This fixes the tool windows
56         in paint.net when running under compiz.
57
58         - when setting the opacity of a window, support both the case
59         where the window has been reparented and also when it hasn't been.
60         Since compiz/beryl doesn't seem to reparent windows, and these are
61         the only window managers which support translucency, I'm not sure
62         why we need the hwnd.reparented case at all.. but leave it in.
63         now we get translucent windows in paint.net under compiz/beryl.
64
65 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
66
67         * FileDialog.cs: Always return the value for FilterIndex that
68           was set. Internally convert it to values that make sense.
69
70 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
71         
72         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
73
74 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
75
76         * Toolbar.cs: Change default value of DropDownArrows to true, the 
77         signature still using false to make it compatible with MS but the 
78         initial value is true. Fixes #79855.
79
80 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
81
82         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
83           only available on Linux.
84
85 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
86
87         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
88         reduce number of calls to redraw method during toolbar creation.
89
90 2006-11-09  Mike Kestner  <mkestner@novell.com>
91
92         * ListView.cs : raise SelectedIndexChanged when an item is selected
93         programmatically via the Item.Selected property.  Gert's nice 
94         ListViewSelectedIndexChanged test fixture now runs clean.
95
96 2006-11-09  Mike Kestner  <mkestner@novell.com>
97
98         * ListView.cs : raise SelectedIndexChanged when a selected item is
99         removed from the item collection using Remove or RemoveAt.
100
101 2006-11-09  Mike Kestner  <mkestner@novell.com>
102
103         * ListView.cs : raise SelectedIndexChanged once per selected item
104         for compat with MS.  Fixes #79849+.
105
106 2006-11-09  Chris Toshok  <toshok@ximian.com>
107
108         * TabControl.cs: initialize row_count to 0, and set it to 1 when
109         we need to (if we have any tab pages).  Fixes unit test.
110
111 2006-11-09  Chris Toshok  <toshok@ximian.com>
112
113         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
114         width is 0, not 3.  Fixes a unit test.
115
116 2006-11-09  Mike Kestner  <mkestner@novell.com>
117
118         * ListView.cs : use Implicit scrollbars so that focus isn't 
119         stolen from the listview when they are clicked. Fixes #79850.
120
121 2006-11-09  Chris Toshok  <toshok@ximian.com>
122
123         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
124         have a root item.  Fixes #79879.
125
126 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
127
128         * FileDialog.cs:
129           - Fix ToString ()
130           - An ArgumentException is now thrown if a wrong filter
131             is applied (matches ms). The previous filter doesn't change
132             anymore if an exception is thrown.
133           - Changing the FileName property also affects FileNames
134         * ColorDialog.cs: The length of the CustomColors array is always
135           16. It doesn't matter if we use a smaller array or null to update
136           or change the custom colors property.
137         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
138           for RootFolder if we get a undefined value.
139
140 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
141
142         * StatusBarPanel.cs: 
143         - Width is set to MinWidth if Width is smaller than
144         MinWidth. Fixes #79842.
145         - MinWidth now always overrides Width (MSDN says MinWidth
146         is set to Width when AutoSize = None, but they do not 
147         behave like that).
148         - Style has now the the correct default value.
149         
150 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
151  
152         * TrackBar.cs: 
153         - The control is completely invalidated on 
154         Got/LostFocus to draw the focus rectangle correctly.
155         - When AutoSize then height is always 45 (width for 
156         vertical controls).
157         
158         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
159         on the mouse when moved and it doesn't move when grabbed
160         until the mouse moves as well. Also fixed some wrong 
161         calculations when clicking on the thumb (control thought
162         click was outside of thumb and didn't grab it).
163         Fixes some of the issues in #79718.
164
165 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
166
167         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
168
169 2006-11-08  Chris Toshok  <toshok@ximian.com>
170
171         * PropertyGridView.cs: only call ToggleValue if the item is not
172         readonly.
173
174 2006-11-08  Jackson Harper  <jackson@ximian.com>
175
176         * TextBoxBase.cs: The RichTextBox and textbox have very different
177         word selection methods.  Implement the textbox's simple word
178         selection here, and let the RichTextBox override and provide it's
179         own.
180         - Don't do extra selection on mouseup
181         * RichTextBox.cs: Use the documents word selection algorithm, I
182         think ideally, this function will be pulled into the
183         RichTextBox.cs code someday.
184
185 2006-11-08  Chris Toshok  <toshok@ximian.com>
186
187         * RootGridEntry.cs: new class to represent GridItemType.Root.
188
189         * CategoryGridEntry.cs: reformat, and add boilerplate.
190         
191         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
192         returns the UI parent anyway, and we need special handling to
193         implement the GetTarget method in the face of it.  Also, implement
194         Select().
195
196         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
197         a root grid item, and use that instead of PropertyGrid.grid_items.
198         Also, make use of TypeConverters (and add limitted support for
199         ICustomTypeDescriptors) when initially populating the grid.
200         Arrays now show up more or less properly.
201
202 2006-11-08  Chris Toshok  <toshok@ximian.com>
203
204         * Application.cs: set the modal dialog to non modal after we close
205         it.  Fixes bug #79866.
206
207 2006-11-08  Jackson Harper  <jackson@ximian.com>
208
209         * TextControl.cs: When combining lines carry over the line end
210         style from the end line.
211         - Invalidate the selected area when setting it, if it is visible.
212         * TextBoxBase.cs: Only rich text box can do full line selects.
213         - Make sure to set the cursor position when there is a click,
214         otherwise two clicks in separate areas could cause a large chunk
215         to be selected.
216
217 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
218
219         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
220         Fixes #79863.
221
222 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
223
224         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
225         time. Remove tooltips when ToolButton click events.  Fixes #79856.
226
227 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
228
229         * MenuAPI.cs: Ignore right click for menu actions and fixes
230         menu border when clicked.  Fixes #79846.
231
232 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
233
234         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
235         MouseState after create wParam for message, this fixes mouse button 
236         equal none in mouse up events.
237         
238 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
239
240         * Control.cs : Focus() now calls Select to set the Container's
241         Active Control and to give it focus. To avoid infinite recursion
242         (because ActiveControl also calls Focus at one point), a check 
243         is made in Focus with the help of a new internal variable
244         is_focusing.
245
246 2006-11-07  Mike Kestner  <mkestner@novell.com>
247
248         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
249         if there's a selection.  Fixes #79849.
250
251 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
252
253         * PropertyGrid.cs: Avoid fixed height of help description label.
254         Fixes part of bug #79829.
255
256 2006-11-07  Chris Toshok  <toshok@ximian.com>
257
258         * XplatUIX11.cs: fix #79790 again, by using the
259         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
260
261 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
262
263         * ToolBar.cs: Fix left click checking.
264
265 2006-11-07  Chris Toshok  <toshok@ximian.com>
266
267         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
268
269 2006-11-07  Chris Toshok  <toshok@ximian.com>
270
271         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
272         PropertyManager unit tests.
273
274         * PropertyManager.cs: make property_name internal.
275
276 2006-11-07  Chris Toshok  <toshok@ximian.com>
277
278         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
279         pass a unit test.  Also, don't set image_index to anything in
280         response to setting the ImageList property.
281
282 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
283
284         * ToolBar.cs: Ignore click events when mouse button is not a
285         left button, only accepts other button for dropdown menus.  
286         Fixes #79854.
287
288 2006-11-07  Chris Toshok  <toshok@ximian.com>
289
290         * DataGrid.cs: make the back and parent row buttons a little less
291         ugly.
292
293 2006-11-07  Jackson Harper  <jackson@ximian.com>
294
295         * TextBoxBase.cs: When converting to Text don't put line breaks in
296         for soft line breaks.
297         * TextControl.cs: There is an initial "fake" line in the document,
298         this is now a soft break line, so that an extra line feed doesn't
299         get added to the end of documents.
300
301 2006-11-07  Chris Toshok  <toshok@ximian.com>
302
303         [ fix bug #79778 ]
304         
305         * CurrencyManager.cs: if the list is readonly, don't bother
306         checking if IBindingList.AllowNew is true.
307
308         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
309         for non-DataRowView datasources..  or rather, make it not crash.
310         (DataGridPaintRelationRow): make sure we limit the row painting to
311         the area not covered by the row header, and make our cell width at
312         least large enough to cover the relation area.  This allows grids
313         that have relations but no rows to render correctly.
314         (DataGridPaintRowContents): same type of changes here.
315         (SetDataSource): move back to always calling
316         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
317         navigating back through relations.
318         (HitTest): handle the case where we have no cells but have
319         relations.  Right now we generate a hit in cell 0 of whatever the
320         row is, not sure if this is strictly correct, but it works for our
321         purposes.
322         
323         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
324         bother doing anything.
325
326 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
327
328         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
329         early version of StatusStrip.  Not responsible for eaten
330         application or firstborn children.
331
332 2006-11-06  Chris Toshok  <toshok@ximian.com>
333
334         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
335         call GetTabRect with a -1 index.  Fixes #79847.
336
337 2006-11-06  Jackson Harper  <jackson@ximian.com>
338
339         * TreeNodeCollection.cs: Update scrollbars after clearing.
340
341 2006-11-06  Chris Toshok  <toshok@ximian.com>
342
343         * NumericUpDown.cs: fix the ToString method for some unit test
344         love.
345
346 2006-11-06  Chris Toshok  <toshok@ximian.com>
347
348         * PropertyGrid.cs:
349         - set the initial SelectedGridItem if we can.
350
351         - Exclude non-mergable properties only if we're merging > 1
352         object.  Merging 1 object isn't really merging, obviously.
353
354         - Handle PropertySort.NoSort just like Alphabetical, which is
355         wrong of course, but at least gets things on the screen.
356         
357         * PropertyGridView.cs:
358         - Add method "FindFirstItem" which finds the first property grid
359         item, so we can select it by default.
360
361         - make use of GridEntry.CanResetValue.
362
363         - Don't call RedrawBelowItemOnExpansion here anymore, the
364         individual GridEntry's will do that.
365
366         - Remove the ITypeDescriptorContextImpl internal class.
367         
368         * GridEntry.cs:
369         - this class needs to implement ITypeDescriptorContext, as it's
370         what MS's PropertyDescriptorGridEntry does, which means we can
371         remove the ITypeDescriptorContextImpl internal class from
372         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
373
374         - keep a reference to our PropertyGridView, and move the call to
375         RedrawBelowItemOnExpansion here from PGV.  This means
376         programmaticly setting Expanded actually does something visible.
377
378         - add a CanResetValue() function which takes into account our
379         possibly multiple "selected_objects" in the merged case.  Shifting
380         PropertyGridView to use this method fixes another unreported
381         crasher found running the test for #79829.
382
383         - when Top or Bounds is updated, make sure the PropertyGridTextBox
384         is updated to reflect this.
385
386         * CategoryGridEntry.cs: the ctor takes the PGV now.
387         
388 2006-11-06  Jackson Harper  <jackson@ximian.com>
389
390         * TextControl.cs: These are 1 based.
391         * TextBoxBase.cs: When setting the selected text, don't change the
392         selected text tags, this is done by ReplaceText, just position the
393         cursor at the end of the new text.
394
395 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
396
397         * ListView.cs: Allow label edit only when, when LabelEdit is
398           set to true.
399
400 2006-11-06  Jackson Harper  <jackson@ximian.com>
401
402         * TextControl.cs: If a suitable wrapping position isn't found,
403         just wrap right in the middle of a word.
404
405 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
406
407         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
408           bug #79820.
409
410 2006-11-06  Jackson Harper  <jackson@ximian.com>
411
412         * TreeView.cs: Can't use the VisibleCount property when setting
413         scrollbar heights, because this doesn't take into account whether
414         or not the horz scrollbar just came visible.
415
416 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
417
418         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
419         activated.  Fixes #79369, #79832.
420
421 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
422
423         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
424           had to remove support for links that point to a directory. FileInfo
425           returns no usefull information (means, the directory they point to)
426           for such links. Replaced some empty string ("") with String.Empty.
427
428 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
429
430         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
431         NullReferenceException when attempting to remove node that is not in
432         collection. Throw NullReferenceException when null is passed to 
433         Remove. Allow first element of the collection to be removed. Fixes
434         bug #79831.  In GetEnumerator ().Current return null if positioned 
435         before the first element of the collection. In GetEnumerator ().Reset,
436         position before first element of the collection.
437
438 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
439
440         * PropertyGrid.cs: To match MS, remove default title and description
441         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
442         buttons.
443
444 2006-11-04  Chris Toshok  <toshok@ximian.com>
445
446         * Theme.cs: add a Clamp method, just for kicks.
447
448         * ThemeWin32Classic.cs: clamp all color components to [0..255].
449
450 2006-11-04  Chris Toshok  <toshok@ximian.com>
451
452         * Form.cs: if the form isn't visible, Close() does nothing.
453
454 2006-11-03  Chris Toshok  <toshok@ximian.com>
455
456         * Form.cs (Close): if the form is modal, don't Dispose of it, only
457         Hide it.
458         (WndProc): don't Dispose after handling the WM_CLOSE message.
459
460         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
461         them as such, instead of using casts from Control to Form.  Also,
462         don't Dispose of the modal dialog when we fall out of the loop -
463         Close() it instead.
464
465         fixes bug #79813.
466
467 2006-11-03  Chris Toshok  <toshok@ximian.com>
468
469         * Control.cs (Dispose): only go through the dispose thing if we're
470         @disposing, and we haven't already been disposed.  Fixes bug
471         #79814.
472
473         * Form.cs: no reason to call "base.Dispose()" here instead of
474         "Dispose()".
475
476 2006-11-03  Mike Kestner  <mkestner@novell.com>
477
478         * ComboBox.cs : use ToString instead of casts in AddItem for
479         sorting functionality.  Fixes #79812.
480
481 2006-11-03  Chris Toshok  <toshok@ximian.com>
482
483         * Application.cs: pave the way for actually using the thread
484         exception dialog.  it's ifdefed out at the moment.
485
486 2006-11-03  Chris Toshok  <toshok@ximian.com>
487
488         * ThreadExceptionDialog.cs: until we get a better layout, actually
489         hide the details textbox and label when we shouldn't see them.
490
491 2006-11-03  Jackson Harper  <jackson@ximian.com>
492
493         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
494         multiline textboxes anymore.  This method also determines the
495         width/height of a textboxes canvas area.
496         - Sorta a revert of the last patch.  For multiline just position
497         the controls, then bail.  This way the scrollbar width won't be
498         altered.
499
500 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
501
502         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
503         it dont need.  Fixes #79537.
504
505 2006-11-02  Jackson Harper  <jackson@ximian.com>
506
507         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
508         send the status after firing the DndOver event.
509
510 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
511
512         * TrackBar.cs: Now orientation only switches height / width if
513         the control's handle is created (Win32 does it like this). Also 
514         fixed a typo in ToString() for a test to pass, changed the 
515         exception thrown in set_LargeChange and set_SmallChange to 
516         match Win32 behaviour, and added TrackBar tests to the unit 
517         tests.
518
519 2006-11-02  Chris Toshok  <toshok@ximian.com>
520
521         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
522         not _NET_WM_STATE_NO_TASKBAR.
523
524 2006-11-02  Jackson Harper  <jackson@ximian.com>
525
526         * TextControl.cs: Increment count by one, since in the update view
527         count - 1 is used.
528
529 2006-11-02  Jackson Harper  <jackson@ximian.com>
530
531         * TextBoxBase.cs: Use client rectangle not bounds for checking if
532         the mouse is in the client rectangle (duh).
533
534 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
535         
536         * TrackBar.cs: Fixed trackbar jumping around when clicking
537         on it - the trackbar was not detecting correctly at which
538         side of the thumb the click was done. (fixes #79718)
539
540 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
541
542         * ListBox.cs: scroll visible area when change SelectedIndex to
543         a non visible area.  Fixes #79481.
544
545 2006-11-01  Jackson Harper  <jackson@ximian.com>
546
547         * TextControl.cs: When replacing the selection move the selection
548         start/end/anchor to the end of the new text.
549
550 2006-11-01  Jackson Harper  <jackson@ximian.com>
551
552         * XplatUIWin32.cs: When setting the parent change the controls
553         visibility to it's visibility flag, not to it's old parents
554         visibility (.Visible walks the parent chain).
555
556 2006-11-01  Chris Toshok  <toshok@ximian.com>
557
558         * XplatUIX11.cs: revert the #79790 fix, as the simple.
559         XSetTransientForHint fix breaks paint .net's tool windows.  more
560         work needed for that one.
561
562 2006-11-01  Chris Toshok  <toshok@ximian.com>
563
564         * ScrollBar.cs: throw ArgumentException instead of Exception in
565         LargeChange/SmallChange setters.  fixes unit tests.
566
567 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
568
569         * ContainerControl.cs: reverted rev.67183 (which was itself
570         a reversion of rev.66853... eh).
571         
572         * Control.cs: Fixes Reflector hang by changing Focus() call
573         to what it was before rev.66643 (calling Select() here sets 
574         ActiveControl, which in some situations calls back Focus and 
575         eventually does a stack overflow). Temp fix.    
576         Changes to GetNextControl() to not look for children to select when
577         parent cannot be selectable (so it looks for siblings instead)  
578         
579 2006-10-31  Mike Kestner  <mkestner@novell.com>
580
581         * CheckedListBox.cs : off by one error in returned index from
582         ObjectCollection.Add.  Fixes #79758.
583
584 2006-10-31  Chris Toshok  <toshok@ximian.com>
585
586         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
587         calls for the textbox/spinner, to keep from recursing to the point
588         where we crash.  Fixes #79760.
589
590 2006-10-31  Chris Toshok  <toshok@ximian.com>
591
592         * ListControl.cs (set_SelectedValue): don't throw exceptions on
593         null/"" value, just return.  matches ms's behavior and fixes some
594         failing tests.
595
596 2006-10-31  Chris Toshok  <toshok@ximian.com>
597
598         * Control.cs (set_Capture): make a logic a little easier to
599         follow.
600
601         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
602         if it's being destroyed.  A necessary fix surely, but a bandaid
603         also, to fix the stuck capture problem in bug #78413.
604
605 2006-10-31  Chris Toshok  <toshok@ximian.com>
606
607         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
608         convention of clearing hwnd.ClientRect when we set the
609         width/height (so it'll be recalculated by Hwnd).
610
611 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
612
613         * ContainerControl.cs: reversed Contains check from
614         ActiveControl due to hanging problems. This fix
615         partly regresses #79667 (button does not have
616         initial focus), so this might be a symptom for 
617         a larger parenting problem (set_ActiveControl
618         is being called but the child control does
619         not have the parent set yet?)   
620         
621 2006-10-31  Mike Kestner  <mkestner@novell.com>
622
623         * MenuAPI.cs : fix keynav when menu is click activated.
624
625 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
626
627         * ToolStrip*: Version 0.2.
628
629         * MenuStrip.cs: Version 0.1.
630
631         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
632
633 2006-10-30  Chris Toshok  <toshok@ximian.com>
634
635         [ fixes the oversized notify icon issue in bug #79745 ]
636         
637         * NotifyIcon.cs: scale the icon down to the size we're given by
638         the XplatUI layer (this would be faster if we did it once instead
639         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
640         since it's never invoked.
641
642         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
643         pixels high by default, so let's hardcode our systray icon to that
644         size.  The SYSTEM_TRAY protocol should really have a way for
645         client apps to query for the correct icon size.. but oh well.  A
646         couple of patches to deal with the screwy client_window ==
647         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
648         instance, and also make sure we don't XSelectInput twice).
649
650 2006-10-30  Chris Toshok  <toshok@ximian.com>
651
652         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
653         recreating forms.  Control recreation is the bane of my existence.
654         Fix it in a way that keeps everyone happy.
655
656 2006-10-30  Chris Toshok  <toshok@ximian.com>
657
658         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
659         just non-CHILD ones.  otherwise sometimes scrollbars end up with
660         client_windows not being resized to the proper size (ReportBuilder
661         shows this extremely well).
662
663 2006-10-30  Chris Toshok  <toshok@ximian.com>
664
665         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
666         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
667         showing up in the gnome taskbar.  Fixes bug #79790.
668
669 2006-10-30  Chris Toshok  <toshok@ximian.com>
670
671         * ApplicationContext.cs: guard against a NRE.
672
673         * Application.cs: null out the old MainForm for the context, so we
674         don't try to use it again once it's disposed.  Fixes bug #79783.
675
676 2006-10-30  Chris Toshok  <toshok@ximian.com>
677
678         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
679         BindingContext, set the data source directly, otherwise do the
680         lazy approach - the actual ListManager will be created when we get
681         a BindingContext. Fixes bug #79700.
682
683 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
684
685         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
686           XplatUIX11.cs: Remove old 2 parameter SetVisible.
687
688         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
689
690 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
691
692         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
693         of SetVisible that allows a window to be shown, but not activated.
694         This is needed on Windows for MenuStrip, and can probably be used
695         with MainMenu and ComboBox to fix the focus stealing issues on
696         Windows.
697
698         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
699
700 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
701
702         * PictureBox.cs: Fix the output of the ToString method.
703
704 2006-10-29  Chris Toshok  <toshok@ximian.com>
705
706         * Control.cs (get_TopLevelControl): fix bug #79781.
707
708 2006-10-29  Chris Toshok  <toshok@ximian.com>
709
710         * ListControl.cs (set_DataSource): throw Exception here, not
711         ArgumentException, to match MS behavior.
712
713 2006-10-29  Chris Toshok  <toshok@ximian.com>
714
715         * Form.cs: remove the try-catch's around calls to GetWindowState.
716         We can just check the return value.
717
718         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
719         Instead return -1.
720
721         * XplatUI.cs: Add note about additional return value for
722         GetWindowState.
723
724 2006-10-29  Chris Toshok  <toshok@ximian.com>
725
726         * Control.cs (CreateHandle): when we create our handle, we also
727         create the handles of our child controls.  Fixes one of the
728         Control unit tests (CH11).
729
730 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
731
732         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
733
734 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
735
736         * ThemeClearlooks.cs: A little speedup.
737
738 2006-10-27  Chris Toshok  <toshok@ximian.com>
739
740         * Control.cs: implement Control.FromChildHandle in a way that
741         matches the docs (and fixes the failed test.)
742
743 2006-10-27  Chris Toshok  <toshok@ximian.com>
744
745         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
746         comments).
747
748         * DataGrid.cs: implement ResetForeColor such that the tests
749         succeed.
750         
751 2006-10-27  Chris Toshok  <toshok@ximian.com>
752
753         * ToolBarButton.cs: setting text/tooltiptext to null results in it
754         being set to "".  Fixes bug #79759.
755
756 2006-10-27  Jackson Harper  <jackson@ximian.com>
757
758         * TextControl.cs: We need to clear the entire selection area when
759         setting the start, otherwise multiline selections are still
760         visible.
761
762 2006-10-26  Chris Toshok  <toshok@ximian.com>
763
764         * PropertyGridView.cs: 
765
766         - ifdef all the code specific to the double
767         buffer case, and provide some alternatives in the non-doublebuffer
768         code, which makes heavy use of XplatUI.ScrollWindow to move things
769         around without having to invalidate (and cause flicker).  There
770         are still some drawing problems in the non-doublebuffered case, so
771         DOUBLEBUFFER is defined by default.
772
773         - Fix the way dropdowns are handled.  now we explicitly watch for
774         the events which might cause the dropdown to close, and break out
775         of the nested event loop there.  This gets rid of all Capture
776         code, at the expense of the Msg special casing.  Seems to work,
777         though, and fixes bug #79743.
778
779 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
780         * Control.cs: SetIsRecreating now recreates implicitly added
781         child controls as well. Finally fixes #79629. The flag passed to 
782         SetIsRecreating has also been removed since it wasn't used.
783         
784 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
785
786         * PageSetupDialog.cs: Clean some code, fix some bits, 
787         add some checks, and add a printer sub-dialog.
788
789 2006-10-26  Chris Toshok  <toshok@ximian.com>
790
791         * PropertyGrid.cs: make set_SelectedObject call
792         set_SelectedObjects, and move the duplicate logic to the
793         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
794
795         * PropertyGridView.cs: hide the textbox when we get a
796         SelectedObjectsChanged event.
797
798         Fixes bug #79748.
799
800 2006-10-26  Chris Toshok  <toshok@ximian.com>
801
802         * PropertyGridView.cs: deal with the type converter not supporting
803         GetStandardValues() or GetStandardValues() returning null, which
804         is does in the default case.  Fixes #79742.
805
806 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
807
808         * CheckedListBox.cs: nunit no longer crashes when selecting 
809         Project/Edit menu option
810         
811 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
812
813         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
814         is no menu selected. fixes #79739
815
816 2006-10-25  Chris Toshok  <toshok@ximian.com>
817
818         * PropertyGridView.cs: factor out the splitter invalidation code
819         into the SplitterPercent setter, and for kicks implement the
820         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
821         amount in either direction.
822
823 2006-10-25  Chris Toshok  <toshok@ximian.com>
824
825         * PropertyGridView.cs: do some cleanup of the brush used to draw
826         text - read only fields should be grayed out.  not sure how to do
827         this with the textbox, though.  but the textbox's should also be
828         readonly now at least.  Also, hide/show the textbox when resizing
829         the control.
830         
831         * CursorConverter.cs: use System.Reflection when getting the
832         properties of Cursors, as TypeDescriptor.GetProperties isn't
833         returning static properties.
834
835 2006-10-25  Chris Toshok  <toshok@ximian.com>
836
837         * PropertyGridView.cs: factor out the up/down handling, and reuse
838         it for page up/down.  also add End/Home support.
839
840 2006-10-25  Chris Toshok  <toshok@ximian.com>
841
842         * PropertyGridView.cs:
843
844         - ensure the selected grid item is visible in the scrolled area,
845         fixes bug #79572.
846
847         - fix Keys.Down handling when you're on the last item in the
848         propertygrid.
849
850 2006-10-25  Mike Kestner  <mkestner@novell.com>
851
852         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
853         clicks too.  Fixes #79725.
854
855 2006-10-24  Chris Toshok  <toshok@ximian.com>
856
857         * PropertyGrid.cs: use property.Converter instead of
858         TypeDescriptor.GetConverter(property.PropertyType), so we catch
859         TypeConverters declared on the property as well as on the
860         PropertyType.  Fixes bug #79678.
861
862 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
863
864         * MimeIcon.cs, Mime.cs:
865           Fallback to the default platform handler if no shared mime info
866           stuff exists (fixes #79693).
867
868 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
869         * ContainerControl.cs: Incorrect contains check in ActiveControl 
870         from previous fix (duh).
871
872 2006-10-20  Chris Toshok  <toshok@ximian.com>
873
874         * PropertyGridView.cs: the dropdown should be MIN(number of items
875         in list, 15).  Fixes #79551.
876
877 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
878         Fixes #79384, #79394, #79652, #79667
879         * Application.cs: 
880         
881         - Modal windows are now destroyed in the proper order for windows
882         
883         * ContainerControl.cs:
884         
885         - ActiveControl setter has more conditions on when to return:
886                 - if we're reselecting the active control, but it actually
887                 didn't have focus (window hidden or some such), it runs
888                 - if the active control being selected doesn't actually 
889                 exist in the container, it returns
890         
891         * Form.cs
892         
893         - The ShowDialog now gets the current form as the owner when
894         invoking without parameters, and correctly activates the owner 
895         when returning
896         
897         * MessageBox.cs
898         
899         - MessageBox now catches the Escape key to exit
900
901 2006-10-20  Chris Toshok  <toshok@ximian.com>
902
903         * PropertyGridView.cs: fix a number of issues (bug #78565, and
904         most of bug #79676):
905
906         - you can navigate around the property grid with the arrow keys.
907
908         - the dropdown is sized properly when the pg has a vertical
909         scrollbar.
910
911         - fix the indentation for subentries, and properly select the
912         entire label rect.
913
914         - fix the gray bar's drawing (only draw it to the last element,
915         not for the height of the control.  Also make sure we draw that
916         last horizontal grid line.
917
918         - use the same mechanism the datagrid uses wrt the editing textbox
919         when scrolling/resizing/etc.  Namely, we hide it first, do the
920         operation, then show it again (if it's still visible).
921         
922         - aggressively remove a lot of unnecessary refreshes (and also
923         calls to Invalidate(). call more limited variants, and only redraw
924         what we need.)
925         
926         * PropertyGrid.cs:
927
928         - when we're populating the merged collection, fill in the UI
929         parent with either the passed in item, or the category item we
930         create.
931
932         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
933
934         * GridItem.cs: drop some fully qualified names.
935         
936         * GridEntry.cs: add a "UIParent", which is basically the parent
937         treenode.
938
939         * GridItemCollection.cs: add an IndexOf method.
940
941 2006-10-20  Mike Kestner  <mkestner@novell.com>
942
943         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
944         a working win32 NC invalidation mechanism, we can't invalidate
945         menus.  [Fixes #79705]
946
947 2006-10-20  Mike Kestner  <mkestner@novell.com>
948
949         * ListBox.cs : don't update the VScrollbar if the list is empty,
950         just hide it.  [Fixes #79692]
951
952 2006-10-20  Jackson Harper  <jackson@ximian.com>
953
954         * RichTextBox.cs: Handle some special chars better, and don't skip
955         the entire group when we encounter a special char that we don't
956         handle correctly.
957
958 2006-10-18  Chris Toshok  <toshok@ximian.com>
959
960         * PropertyGridView.cs: address a number of issues from bug #79676,
961         mostly of the cosmetic variety.
962
963         - The highlight rectangle for indented items not extends all the
964         way to the left.
965
966         - Indented items aren't indented so much.
967
968         - the dropdown is properly sized width-wise if the pg has a
969         vertical scrollbar.
970
971 2006-10-18  Chris Toshok  <toshok@ximian.com>
972
973         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
974         systray stuff is rather convoluted to begin with.
975
976         systray icons are a single window for some reason (that I haven't
977         figured out yet), and for them, client_window == whole_window.
978         Given the way the tests are structured elsewhere to determine
979         which paints are pending (client vs. nc), that situation will
980         always yield PAINT, not NCPAINT.  So, if we have a pending
981         nc_expose and no pending expose, remove the hwnd from the paint
982         queue, and also set nc_expose_pending to false, to keep us from
983         blocking further expose's adding the hwnd to the paint queue.
984
985         phew.  like i said, a rather convoluted change.  Fixes the
986         notifyicon repaint issues in bug #79645.
987
988 2006-10-18  Chris Toshok  <toshok@ximian.com>
989
990         * Form.cs: when getting the backcolor of the form, don't get
991         base.BackColor, as this allows parents to influence the background
992         color.  This breaks mdi forms.  Instead, if the background_color
993         is empty, return the default.
994
995 2006-10-18  Chris Toshok  <toshok@ximian.com>
996
997         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
998         to being private instead of internal static.
999
1000         * Control.cs: remove all the stupid ParentWaitingOnRecreation
1001         crap, it wasn't working for more deeply nested controls anyway,
1002         and we already have the is_recreating flag - use that instead.
1003         Before calling DestroyHandle in RecreateHandle, recurse through
1004         the control tree setting it to true.  this returns the recreate
1005         code to much of its original simplicity, while now guaranteeing we
1006         actually recreate everything we're supposed to.  This change gets
1007         fyireporting actually showing mdi children.
1008
1009 2006-10-17  Chris Toshok  <toshok@ximian.com>
1010
1011         * Form.cs: remove some debug spew, and collapse some duplicate
1012         code at the end of SetClientSizeCore.
1013
1014         * XplatUIX11.cs: 
1015         - add some more debug spew here too wrt Destroy handling.
1016         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
1017         in Control's handling of WM_DESTROY.
1018         - Remove the handling of zombie window DestroyNotifies from the
1019         event loop - we don't need it.  Now the only DestroyNotifies we
1020         actually handle are ones generated by X.
1021         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
1022         match gtk's (functioning) handling of this. This keep metacity
1023         from leaving droppings in the form of wm borders with no window
1024         contents all over the place.
1025
1026         * Control.cs:
1027         - add a bunch of debug spew wrt control recreation.
1028         - fix a bug where we weren't tracking Visible properly on
1029         recreated hwnds.
1030         - fixed the WM_PAINT double buffer handling to support re-entrant
1031         calls (yes, i know it's gross, but it's happening to us).
1032
1033 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1034         * ThemeWin32Classic.cs: changed drawing of selected days
1035         to make them look better.
1036
1037 2006-10-16  Chris Toshok  <toshok@ximian.com>
1038
1039         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
1040         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
1041
1042         * XplatUIX11.cs: move away from using hwnd.client_dc and
1043         hwnd.non_client_dc and on to a stack of dc's (and in window's
1044         case, PAINTSTRUCT's), so we can deal with nested Paint calls
1045         without puking or not disposing of Graphics objects.
1046
1047         * XplatUIOSX.cs: same.
1048
1049         * XplatUIWin32.cs: same.
1050
1051 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
1052
1053         * FileDialog.cs: Don't call on_directory_changed inside
1054           OnSelectedIndexChanged (it changes the SelectedIndex too).
1055           Instead move it to OnSelectionChangeCommitted.
1056
1057 2006-10-13  Chris Toshok  <toshok@ximian.com>
1058
1059         * XplatUIX11.cs: more Destroy work.  the current code does the
1060         following things, in order:
1061
1062         1. Enumerates all handles of all controls at or below the one
1063         being destroyed, in pre-order.  As it is doing this, it marks the
1064         handles as zombie and clears all references to them.
1065         
1066         2. calls XDestroyWindow on the window passed in.
1067
1068         3. SendMessage's WM_DESTROY to all he handles in the accumulated
1069         list.
1070
1071 2006-10-13  Chris Toshok  <toshok@ximian.com>
1072
1073         * XplatUIX11.cs: set hwnd.zombie to true before calling
1074         SendMessage (WM_DESTROY).  this keeps us from marking the new
1075         window a zombie, and also keeps us from calling sendmessage at
1076         all.
1077
1078 2006-10-13  Jackson Harper  <jackson@ximian.com>
1079
1080         * TextControl.cs: Do not show the caret and selection at the same
1081         time.  Reduces ugliness by 35%.
1082
1083 2006-10-13  Chris Toshok  <toshok@ximian.com>
1084
1085         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
1086         zombie after we do the recursive call, so we actually do call
1087         SendMessage on the children controls.
1088         (GetMessage): if we find a pending paint event for a zombie hwnd,
1089         remove the hwnd from the paint queue, or else it will always be
1090         there (and we'll effectively loop infinitely)
1091
1092 2006-10-13  Mike Kestner  <mkestner@novell.com>
1093
1094         * MenuItem.cs : add Selected format under keynav too.
1095         Fixes #79528.
1096
1097 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
1098
1099         * PropertyGrid.cs: Fixed some NRE's and small difference between our
1100         implementation and that of MS.
1101
1102 2006-10-13  Chris Toshok  <toshok@ximian.com>
1103
1104         * Control.cs (OnInvalidated) only futz with the invalid_region if
1105         the control is double buffered.  this fixes the apparent hang in
1106         the ListView unit tests.  Someone needs to make the
1107         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
1108
1109 2006-10-13  Chris Toshok  <toshok@ximian.com>
1110
1111         * PropertyGridView.cs:
1112
1113         - do a little refactoring so that only one place calls
1114         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
1115         else call that.  Also make it Refresh, since there are redraw bugs
1116         otherwise (we should take a look at that...)
1117
1118         - do a little more refactoring work to share the body of code
1119         involved with the drop down.  it was duplicated in the code
1120         dealing with the listbox handling and in the code dealing with the
1121         UITypeEditors.
1122
1123         - add a Capture to the dropdown form's control once it's
1124         displayed, and add a MouseDown handler that checks to make sure
1125         the position is inside the control.  If it's not, close the
1126         dropdown.  This fixes #78190.
1127
1128         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
1129         if the value is different than the initial value.
1130         
1131 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
1132
1133         * Control.cs: see #78650
1134         - Fixed GetNextControl for several cases:
1135                 - Changed FindFlatForward to return 
1136                 correct sibling control when more than one
1137                 control has same TabIndex as the currently 
1138                 focused one.
1139                 - Changed FindFlatBackward to loop children
1140                 from last to first and apply same logic as in
1141                 FindFlatForward
1142                 - Changed FindControlForward to search for
1143                 children when control is not a container
1144                 but has children, or search for siblings if
1145                 control is a container...
1146                 - Changed FindControlBackward   to continue
1147                 searching for child controls when hitting 
1148                 Panel-like parents
1149                 
1150         - Fixed Focus method to update ActiveControl
1151         (FocusTest.FocusSetsActive failure)
1152         
1153         * TabControl.cs:
1154         - Focus rectangle now refreshes when gaining
1155         or losing focus
1156         - Removed grab for Tab key on IsInputKey that 
1157         was keeping tab navigation from working (#78650)
1158
1159 2006-10-13  Chris Toshok  <toshok@ximian.com>
1160
1161         * PropertyGridView.cs:
1162         - Rewrite SetPropertyValue to loop over SelectedGridItem's
1163         SelectedObjects.
1164
1165         - Deal with GridItem.Value == null a few places.
1166
1167         * PropertyGrid.cs: 
1168         - replace the PopulateGridItemCollection with a pair of methods
1169         which compute the intersection of all the properties in the
1170         SelectedObjects array.  Fixes #79615.
1171
1172         - Throw ArgumentException from set_SelectedObjects if there's a
1173         null in the array.
1174
1175         - Add GetTarget method which can be used to traverse up the
1176         GridItem.Parent chain.  It depends on the assumption that
1177         selected_objects for different GridEntries are always in the same
1178         order (a safe assumption).  Use this method and loop over all the
1179         selected objects in the entry when calling RemoveValueChanged and
1180         AddValueChanged.
1181         
1182         * GridEntry.cs: Make this handle multiple selected objects.
1183         .Value returns null if not all the selected objects share the same
1184         value.
1185
1186 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
1187         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
1188           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
1189           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
1190           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
1191           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
1192         add additional functionality.
1193
1194 2006-10-12  Mike Kestner  <mkestner@novell.com>
1195
1196         * ErrorProvider.cs : new ToolTipWindow ctor sig.
1197         * HelpProvider.cs : new ToolTipWindow ctor sig.
1198         * ToolTip.cs : remove ToolTip param from Window sig since it is
1199         not used.
1200         * ToolBar.cs : add tooltip support.  Fixes #79565.
1201
1202 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1203
1204         * ComboBox.cs: move the events in set_SelectedIndex to 
1205         after the call to HighlightIndex in order to avoid 
1206         possible recursion and subsequent problems with the call
1207         to HighlightIndex and include a range check in 
1208         set_HighlightIndex. Fixes #79588
1209         
1210 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1211
1212         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
1213         to ui thread's settings instead of sunday. 
1214         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
1215
1216 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
1217
1218         * DateTimePicker.cs
1219         * MonthCalendar.cs
1220         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
1221         and implement missing functionality (selecting different parts 
1222         of the date and edit them individually with the keyboard).
1223         
1224 2006-10-11  Chris Toshok  <toshok@ximian.com>
1225
1226         * Control.cs (OnInvalidated): fix NRE relating to last change.
1227
1228 2006-10-11  Chris Toshok  <toshok@ximian.com>
1229
1230         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
1231         atoms in _NET_WM_STATE here if the window is maximized.  We need
1232         to do this because we're *replacing* the existing _NET_WM_STATE
1233         property, so those atoms will be lost otherwise, and any further
1234         call to GetWindowState will return Normal for a window which is
1235         actually maximized.  Fixes #79338.
1236
1237 2006-10-11  Jackson Harper  <jackson@ximian.com>
1238
1239         * TextControl.cs: Special case for setting selection end to
1240         selection start, we basically kill the anchor.
1241         - some todo comments.
1242
1243 2006-10-11  Chris Toshok  <toshok@ximian.com>
1244
1245         * Control.cs: switch to using an "invalid_region" to track which
1246         parts of the image buffer need updating.  This is more code than
1247         the simple fix from r66532.  That version just attempted to always
1248         fill the entire buffer on redraw, which turns out to be
1249         inefficient when invalidating small rectangles.  This version
1250         simply adds the invalid rectangle to the invalid region.  When we
1251         get any WM_PAINT message we see if it can be filled using the
1252         image buffer, and if it can't (if the paint event's clip rectangle
1253         is visible in the invalid region) we first fill the image buffer.
1254         So, the image buffer is still a cache, we just fill it lazily.
1255
1256         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
1257         need it any longer.
1258
1259 2006-10-11  Chris Toshok  <toshok@ximian.com>
1260
1261         * XplatUIX11.cs (SetWindowPos): we need to update both position as
1262         well as size after calling XMoveResizeWindow.  This keeps us from
1263         ignoring future SetWindowPos calls.  Fixes the disappearing
1264         DateTimePicker in the ToolBarDockExample from bug #72499.
1265
1266 2006-10-11  Chris Toshok  <toshok@ximian.com>
1267
1268         * TextBoxBase.cs: reorder things a bit when it comes to
1269         resizing-causing-recalculation.  we were recalculating the
1270         document when our position was changed, which shouldn't happen.
1271         We only care about size changes.  Clear up some more redundant
1272         recalculation calls while I'm at it.  This makes the toolbar dock
1273         example snappy when you're just dragging toolbars around (since it
1274         causes a relayout whenever you move one.)
1275
1276 2006-10-11  Chris Toshok  <toshok@ximian.com>
1277
1278         * ToolBarButton.cs (get_Rectangle): this only returns
1279         Rectangle.Empty if Visible == false, or Parent == null.
1280         Parent.Visible doesn't matter.
1281
1282 2006-10-10  Chris Toshok  <toshok@ximian.com>
1283
1284         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
1285         by .net 1.1, so switch to an internal method instead.
1286
1287 2006-10-10  Chris Toshok  <toshok@ximian.com>
1288
1289         * Control.cs (WM_PAINT): when a control is double buffered we draw
1290         initially to the ImageBuffer and then copy from there.  But when a
1291         parent control which has child controls is double buffered, the
1292         initial drawing doesn't encompass the entire ClientRectangle of
1293         the parent control, so we end up with uninitialized bits (this is
1294         easily seen by dragging the top toolbar in
1295         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
1296         manually set the ClipRectangle of the paint_event (only the one we
1297         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
1298         of the nastiness in bug #72499.
1299
1300         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
1301         which we use in Control.cs's WM_PAINT handling.
1302
1303 2006-10-10  Jackson Harper  <jackson@ximian.com>
1304
1305         * TextBoxBase.cs: Finish off the autoscrolling stuff.
1306
1307 2006-10-10  Chris Toshok  <toshok@ximian.com>
1308
1309         * Cursor.cs: Apply a slightly different patch to the one suggested
1310         in #79609.
1311
1312 2006-10-10  Jackson Harper  <jackson@ximian.com>
1313
1314         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
1315         not the parent form.
1316         * TextControl.cs: use difference in old line count vs new count to
1317         calculate how many lines were added, this takes into account soft
1318         line breaks properly.
1319
1320 2006-10-10  Chris Toshok  <toshok@ximian.com>
1321
1322         * LinkLabel.cs: don't call MeasureCharacterRanges against a
1323         rectangle located at 0,0 and the size of the text.  Use
1324         ClientRectangle instead.  This fixes rendering of non-left aligned
1325         link labels.
1326
1327 2006-10-10  Jackson Harper  <jackson@ximian.com>
1328
1329         * TextBoxBase.cs: When we set the selection start position the
1330         caret.
1331         * TextControl.cs: Need to update the caret when we decrement it to
1332         zero.
1333         - Make sure that the selection_visible flag gets reset to false if
1334         the selection isn't visible.  Before this you could get it set to
1335         visible by changing the selection start, then changing the end to
1336         equal the start.
1337
1338 2006-10-09  Jackson Harper  <jackson@ximian.com>
1339
1340         * TreeView.cs: Don't update scrollbars when we aren't visible.
1341         * TreeNodeCollection.cs: Only need to update scrollbars if being
1342         added to an expanded visible node or the root node.
1343
1344 2006-10-09  Chris Toshok  <toshok@ximian.com>
1345
1346         * XplatUIX11.cs (SendMessage): fix NRE.
1347
1348 2006-10-09  Jackson Harper  <jackson@ximian.com>
1349
1350         * TextBoxBase.cs: Implement horizontal autoscrolling.
1351         * TextControl.cs: Add a movement types that allows moving forward
1352         and backwards without wrapping.
1353
1354 2006-10-09  Mike Kestner  <mkestner@novell.com>
1355
1356         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
1357         with focus "expansion" of labels.  Fixes #79532 and then some.
1358         * ThemeWin32Classic.cs : add LineLimit to ListView label format
1359         when wrapping.
1360
1361 2006-10-09  Jackson Harper  <jackson@ximian.com>
1362
1363         * TextBoxBase.cs: Set the default max values to MaxValue since
1364         we use the scrollbar for autoscrolling and the default value is
1365         100.  If we don't do this the caret won't keep up with typing
1366         after about 18 characters.
1367         * TextControl.cs: Make sure the selection is offset by the
1368         viewport x.  This fixes selection when using auto scrolling.
1369
1370 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
1371         
1372         * Form.cs: The active control should be selected after the 
1373         OnLoad so that any child control initialization that affects
1374         the selection is done. Fixes #79406
1375
1376 2006-10-06  Chris Toshok  <toshok@ximian.com>
1377
1378         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
1379         to have no evil effects.
1380
1381         - Stop selecting StructureNotifyMask on non-toplevel windows.
1382
1383           The only way children should be resized is by using the SWF api,
1384           and we already send WM_WINDOWPOSCHANGED messages in those cases.
1385           Toplevel windows can be interacted with via the window manager,
1386           and so we keep the input mask there.
1387
1388           The other event StructureNotifyMask gives us (that we care
1389           about) is DestroyNotify.  The code is already structured such
1390           that it assumes we won't be getting a DestroyNotify event for
1391           the window we pass to XDestroyWindow (which is what
1392           StructureNotifyMask is supposed to guarantee.)  So, that code
1393           shouldn't be affected by this either.
1394
1395         - Stop selecting VisibilityChangeMask altogether.
1396
1397           We weren't doing anything with the resulting events anyway.
1398         
1399         This vastly reduces the number of X requests and events we see
1400         when resizing/laying out a large ui.
1401
1402 2006-10-06  Chris Toshok  <toshok@ximian.com>
1403
1404         * ScrollableControl.cs (DisplayRectangle): we need to take into
1405         account the DockPadding regardless of whether or not auto_scroll
1406         == true.  rework this slightly to this effect, and fix bug #79606,
1407         and part of #72499 (you can now see the drag handles and drag
1408         toolbars around).
1409
1410 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
1411
1412         * ListViewItem.cs: Collections of selected and checked items are now
1413         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
1414         we mark the collection "dirty".
1415         * ListView.cs: Marked collections readonly. Modified UpdateSelection
1416         to only clear SelectedItems when a new item is selected and MultiSelect
1417         is enabled. CheckedItems and SelectedItems now subscribe to Changed
1418         event of ListViewItemCollection, and mark its list dirty whenever
1419         that event is fire. This allows us to return selected/checked items 
1420         in the same order as they are in the Items collection. This matches
1421         the MS behavior.
1422
1423 2006-10-06  Chris Toshok  <toshok@ximian.com>
1424
1425         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
1426         right mouse clicks.  Fixes bug #79593.
1427
1428 2006-10-06  Chris Toshok  <toshok@ximian.com>
1429
1430         * Splitter.cs: doh, fix splitters that don't want to cancel the
1431         movement when you drag them.  Also, impose the limits on the
1432         values we send to the SplitterMovingEvent.  Fixes #79598.
1433
1434 2006-10-06  Jackson Harper  <jackson@ximian.com>
1435
1436         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
1437         since we use this for auto scrolling also.
1438
1439 2006-10-05  Chris Toshok  <toshok@ximian.com>
1440
1441         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
1442         beginning to think that most datagrid column types don't need this
1443         method.  Fixes bug #79392.
1444
1445 2006-10-05  Chris Toshok  <toshok@ximian.com>
1446
1447         * DataGrid.cs: move back to a more lazy scheme for creating the
1448         CurrencyManager, so we aren't updating it every time you set
1449         either DataSource or DataMember.  Also, don't call
1450         RecreateDataGridRows if the currency manager hasn't changed.
1451
1452 2006-10-05  Chris Toshok  <toshok@ximian.com>
1453
1454         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
1455         emitted, SelectedIndex should already be updated.  Fixes bug
1456         #78929.
1457
1458 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
1459
1460         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
1461           ToolStripTextBox.cs: Initial commit.
1462         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
1463
1464 2006-10-05  Jackson Harper  <jackson@ximian.com>
1465
1466         * TabControl.cs: We need to invalidate the tab control area when
1467         new ones are added (duh).
1468
1469 2006-10-03  Chris Toshok  <toshok@ximian.com>
1470
1471         * Form.cs (ProcessDialogKey): if the focused control is in this
1472         form and is a button, call its PerformClick method here.  Fixes
1473         #79534.
1474
1475 2006-10-04  Jackson Harper  <jackson@ximian.com>
1476
1477         * TabPage.cs: Ignore setting of Visible, and add an internal
1478         method for setting the controls visibility.  TabPage's Visible
1479         property is a little strange on MS, this seems to make us
1480         compatible, and fixes cases where people set all the tab pages to
1481         visible.
1482         * TabControl.cs: Use the new internal setting on tab pages
1483         visibility.
1484
1485 2006-10-03  Mike Kestner  <mkestner@novell.com>
1486
1487         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
1488
1489 2006-10-03  Mike Kestner  <mkestner@novell.com>
1490
1491         * ListView.cs : use is_visible instead of Visible to check if 
1492         scrollbars should be placed/sized.  Also some max_wrap_width
1493         love for LargeIcon view.  [Fixes #79533]
1494
1495 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
1496
1497         * TextControl.cs :
1498           Make set_TextAlign() do actually update the align. Fixed #78403.
1499
1500 2006-10-03  Chris Toshok  <toshok@ximian.com>
1501
1502         * DataGrid.cs: fix a crash when switching datasources if the
1503         vertical scrollbar is at someplace other than Value = 0.  Also,
1504         reduce the number of recalculation passes we do in SetDataSource
1505         from 2 to 1.
1506
1507 2006-10-03  Jackson Harper  <jackson@ximian.com>
1508
1509         * TextBoxBase.cs: Move the if value the same bail check up, we
1510         don't want to empty the document if it is already empty, this
1511         seems to severly mess up the caret.  TODO: I should probably fix
1512         the empty statement to update teh caret somehow.
1513
1514 2006-10-03  Chris Toshok  <toshok@ximian.com>
1515
1516         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
1517         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
1518         reflection, an internal row type, properties on said type, etc.)
1519         will work with our datagrid.  Fixes #79531.
1520
1521 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
1522
1523         * FileDialog.cs: Don't crash if a path is not accessible
1524           (System.UnauthorizedAccessException). Fixes #79569.
1525         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
1526           a ':' too. Return unknown icon for those paths/files.
1527
1528 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
1529
1530         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
1531         GetContainerControl returns null.
1532
1533 2006-10-02  Chris Toshok  <toshok@ximian.com>
1534
1535         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
1536         call to XGetWindowAttributes instead of "handle".  fixes an X
1537         error using notifyicon after the NotifyIconWindow to Form base
1538         class switch.
1539
1540 2006-10-02  Chris Toshok  <toshok@ximian.com>
1541
1542         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
1543         server grab and looping we need to do to get down to the most
1544         deeply nested child window.
1545         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
1546         QueryPointer again after the WarpPointer so we can generate a
1547         proper (fake) MotionNotify event to be enqueued in the destination
1548         window's queue.
1549         (GetCursorPos): call QueryPointer.
1550
1551         Fixes #79556.
1552
1553 2006-10-02  Jackson Harper  <jackson@ximian.com>
1554
1555         * NotifyIcon.cs: Derive the notify icon from a form, so things
1556         like FindForm work on it.
1557         - Swallow the WM_CONTEXTMENU message, since that is generated on
1558         mouse down, and context menu is a mouse up kinda guy.  I believe
1559         the correct fix here is probably to make the notify icon entirely
1560         NC area, but this seems to work fine for anyone not manipulating
1561         WndProc.
1562
1563 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
1564
1565         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
1566           ToolStripItemCollection.cs, ToolStripLabel.cs,
1567           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
1568           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
1569           Initial implementation.
1570         * TextRenderer.cs: Provide padding to MeasureText.
1571
1572 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
1573
1574         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
1575         of ButtonBaseAccessibleObject. Fix bug #79552.
1576
1577 2006-10-02  Jackson Harper  <jackson@ximian.com>
1578
1579         * MdiWindowManager.cs: When maximizing use the containers client
1580         rect, not it's bounds, so nc area is accounted correctly.
1581         - Use the parent form's size for the menu position, since the
1582         client isn't always the full form size.
1583
1584 2006-10-01  Chris Toshok  <toshok@ximian.com>
1585
1586         * ScrollableControl.cs: make sure neither right_edge or
1587         bottom_edge are < 0, since they're used as LargeChange for the
1588         horiz/vert scrollbars respectively.  Fixes #79539.
1589
1590 2006-10-01  Chris Toshok  <toshok@ximian.com>
1591
1592         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
1593         the xplatuix11 code can cause us to destroy/recreate our handle.
1594
1595         * XplatUIX11.cs
1596         (SystrayAdd):
1597         - this code can be invoked many times for the same Hwnd.  Make
1598           sure we only destroy the client window once (the first time this
1599           method is called).  This fixes bug #79544.
1600         - Remove the call to the improperly bound XSync.  why we had two
1601           bindings to this, I will never know, but this call resulted in
1602           events being discarded from the queue(!).
1603         - correct a misunderstanding of _XEMBED_INFO - the second atom is
1604           not our current state but the state we wish to be in.  So, 0 if
1605           we don't want to be mapped.  Change it to 1.
1606         (SystrayRemove): The XEMBED spec makes mention of the fact that
1607         gtk doesn't support the reparent of client windows away from the
1608         embedder.  Looking at gtksocket-x11.c seems to agree with this.
1609         The only avenue we have for removing systray icons is to destroy
1610         them.  We don't want the handle to go away for good, though, so
1611         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
1612         #79545.
1613         
1614 2006-10-01  Chris Toshok  <toshok@ximian.com>
1615
1616         * Form.cs (WndProc): inline the native_enabled variable usage into
1617         the cases in which it's used.  Fixes #79536.
1618
1619 2006-09-29  Mike Kestner  <mkestner@novell.com>
1620
1621         * ListView.cs : toggle the selection state for ctrl clicks in 
1622         multiselect mode. [Fixes #79417]
1623
1624 2006-09-29  Mike Kestner  <mkestner@novell.com>
1625
1626         * ListView.cs : kill CanMultiSelect and refactor the selection
1627         code to support multiselection in the absence of mod keys. Steal
1628         arrow/home/end keys by overriding InternalPreProcessMessage to
1629         restore regressed keynav behavior.
1630         [Fixes #79416]
1631
1632 2006-09-29  Jackson Harper  <jackson@ximian.com>
1633
1634         * MdiClient.cs: Repaint the titlebars when the active window is
1635         changed.
1636
1637 2006-09-29  Chris Toshok  <toshok@ximian.com>
1638
1639         * Application.cs: when entering a runloop with a modal, make sure
1640         the hwnd is enabled.  Fixes #79480.
1641
1642 2006-09-29  Chris Toshok  <toshok@ximian.com>
1643
1644         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
1645         when ListManager.CanAddRows == false, bump us back one.
1646
1647         * DataGridColumnStyle.cs (ParentReadOnly): remove the
1648         listmanager.CanAddRows check.  This makes ArrayLists uneditable
1649         using a datagrid, which is not right.
1650         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
1651         is an IEditable, but call property_descriptor.SetValue regardless.
1652         fixes #79435.
1653
1654 2006-09-29  Chris Toshok  <toshok@ximian.com>
1655
1656         * DataGridBoolColumn.cs: we need to test equality in the face of
1657         possible null values (as is the case with the default NullValue).
1658         This patch keeps us from crashing in that case.
1659
1660 2006-09-29  Jackson Harper  <jackson@ximian.com>
1661
1662         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
1663         here, since it will get called for every node collection in the
1664         tree. This is now done in the treeview once the sorting is
1665         finished.
1666         * TreeView.cs: Recalculate the visible order, and update the
1667         scrollbars after sorting, set the top nope to the root so that the
1668         recalc actually works.
1669
1670 2006-09-29  Chris Toshok  <toshok@ximian.com>
1671
1672         * LinkLabel.cs: more handling of the default link collection in
1673         the face of LinkArea manipulation.  The default link collection
1674         contains 1 element (start=0,length=-1).  If the user sets LinkArea
1675         to anything and the links collection is the default, clear it.
1676         Then only add the link if its nonempty.  Fixes #79518.
1677
1678 2006-09-29  Chris Toshok  <toshok@ximian.com>
1679
1680         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
1681         piece correctly when we hit a '\n'.  Fixes #79517.
1682
1683 2006-09-29  Chris Toshok  <toshok@ximian.com>
1684
1685         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
1686         change the binding of gdk_init_check to take two IntPtr's, and
1687         pass IntPtr.Zero for both of them.  Fixes #79520.
1688
1689 2006-09-29  Mike Kestner  <mkestner@novell.com>
1690
1691         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
1692         [Fixes #78779]
1693
1694 2006-09-28  Jackson Harper  <jackson@ximian.com>
1695
1696         * XplatUIX11.cs: When translating NC messages make sure we go from
1697         whole window to screen, not client window to screen.
1698         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
1699         method doesn't exist
1700         - Skip over controls that aren't forms when arranging.
1701
1702 2006-09-28  Jackson Harper  <jackson@ximian.com>
1703
1704         * XplatUIWin32.cs: Clip the rect to the parent window.
1705         * XplatUIStructs.cs: Add clipping modes struct.
1706         * InternalWindowManager.cs: New private method that factors title
1707         bar heights in when calculating the pos of an NC mouse message.
1708         - Use SendMessage to force a paint when the form's size is changed
1709         instead of painting the decorations immediately.
1710         - Don't let the NC button click messages get to DefWndProc,
1711         because they will attempt to handle windowing themself, and this
1712         messes up z-order (it will put them in front of the scrollbars).
1713         * XplatUIX11.cs: Make sure that we don't reset window managers if
1714         we already have one (ie the window is an MDI window).
1715
1716 2006-09-28  Chris Toshok  <toshok@ximian.com>
1717
1718         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
1719         menu code really needs going over.
1720
1721 2006-09-27  Chris Toshok  <toshok@ximian.com>
1722
1723         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
1724         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
1725         window is maximizable.  So, we need to make sure that even if we
1726         clear the border/wm frame of those functions, they're still
1727         available (basically, we remove the decoration without removing
1728         the function).  Half the fix for #79338.
1729
1730 2006-09-27  Chris Toshok  <toshok@ximian.com>
1731
1732         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
1733         Fixes bug #79515.
1734
1735 2006-09-27  Chris Toshok  <toshok@ximian.com>
1736
1737         * Splitter.cs: reorder things a bit so that we don't actually
1738         draw/move the splitter until after calling OnSplitterMoving.  This
1739         lets users cancel/disallow the movement by explicitly setting
1740         event.SplitX/SplitY.  Fixes #79372.
1741
1742 2006-09-27  Jackson Harper  <jackson@ximian.com>
1743
1744         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
1745         because it is most likely on a window being destroyed, and that
1746         will give us an X11 error.
1747
1748 2006-09-27  Chris Toshok  <toshok@ximian.com>
1749
1750         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
1751         the dropdown button now toggles between showing and hiding the
1752         dropdown.  Also, get rid of dropdown_form_showing and just use
1753         dropdown_form.Visible.  We still don't do a grab, but I'll leave
1754         that part to someone who has handled Capture-fu before.
1755
1756 2006-09-27  Chris Toshok  <toshok@ximian.com>
1757
1758         * DataGrid.cs: return false if alt isn't pressed when '0' is
1759         pressed.  this keeps the '0' key from being swallowed, and fixes
1760         bug #79350.
1761
1762 2006-09-27  Chris Toshok  <toshok@ximian.com>
1763
1764         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
1765         Calling Refresh (in response to a scrollbar event) screws up the
1766         scrollbar painting.  Fixes bug #78923.
1767
1768 2006-09-27  Chris Toshok  <toshok@ximian.com>
1769
1770         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
1771         then insert into hashtable" blocks threadsafe.
1772
1773 2006-09-27  Chris Toshok  <toshok@ximian.com>
1774
1775         * MessageBox.cs (CreateParams): the styles should be |'ed with our
1776         baseclass's, since otherwise the
1777         ControlBox/MinimizeBox/MaximizeBox assignments above have no
1778         effect.  This gets the close button back in messageboxes.
1779
1780 2006-09-27  Chris Toshok  <toshok@ximian.com>
1781
1782         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
1783         flag, not just != 0.  this makes flags that are actually multiple
1784         bits (like WS_CAPTION) work.  fixes bug #79508.
1785
1786 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
1787
1788         * PageSetupDialog.cs: add support for getting and settings the 
1789         paper size, source and orientation.
1790
1791 2006-09-26  Chris Toshok  <toshok@ximian.com>
1792
1793         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
1794         and caption == "", we need to remove the resize handles as well as
1795         the title bar.
1796
1797         * Control.cs (set_Text): turns out that setting Text on a form
1798         should change the WM styles on the window, since if ControlBox ==
1799         false, the only way to get a window border is to have a non-""
1800         Text property.  check winforms/forms/text.cs for an example.  so,
1801         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
1802         update both window styles and title.  This fixes a lot of dialogs
1803         (including the preferences dialog in MonoCalendar.)
1804
1805 2006-09-26  Chris Toshok  <toshok@ximian.com>
1806
1807         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
1808         control isn't a Form), call Win32ShowWindow to hide the window,
1809         but don't update the control Visible property.  When we reparent
1810         back to a parent control, call SetVisible in order for the
1811         window's visibility to be reinstated.
1812
1813         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
1814         the FosterParent.
1815
1816         * Control.cs (ControlCollection.Remove): remove that value.Hide()
1817         call for good, since it breaks MonoCalendar (and other things I'm
1818         sure.) Also, set all_controls to null *after* the owner calls,
1819         which end up regenerating it.
1820         (ChangeParent): allow new_parent to be == null, passing
1821         IntPtr.Zero down to XplatUI.
1822
1823         this fixes #79294 the right way.
1824
1825 2006-09-26  Mike Kestner  <mkestner@novell.com>
1826
1827         * GridEntry.cs : internal SetParent method.
1828         * PropertyGrid.cs : attach to property changed on the proper
1829         target if we have a hierarchical grid with subobjects. Setup
1830         GridItem.Parent for hierarchical items.
1831         * PropertyGridView.cs : Set value on the correct target for
1832         hierarchical grids. [Fixes #78903]
1833
1834 2006-09-26  Chris Toshok  <toshok@ximian.com>
1835
1836         * Control.cs (ChildNeedsRecreating): this should return true if
1837         either we're being recreated and the child is in our list, or our
1838         parent is waiting for our recreation.
1839
1840 2006-09-26  Chris Toshok  <toshok@ximian.com>
1841
1842         * Control.cs (ControlCollection.Remove): reinstate the
1843         value.Hide() call as suggested in bug #79294.
1844
1845 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
1846
1847         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
1848         coordinates (versus a relative move).
1849
1850 2006-09-26  Chris Toshok  <toshok@ximian.com>
1851
1852         * Control.cs: rework child recreation a little bit.  It turns out
1853         that we race between the DestroyNotify the WM_DESTROY message.  If
1854         the parent gets its DestroyNotify before the child gets the
1855         WM_DESTROY message, the child ends up not recreating (since the
1856         parent finishes its recreation on DestroyNotify, and the child
1857         checks ParentIsRecreating.)
1858
1859         So, instead we store off a list of all the child controls which
1860         need to be recreated when the parent control starts to recreate
1861         itself.  Then, when child controls get their WM_DESTROY message we
1862         check to see if they're in the parent's pending recreation list,
1863         and if so, we recreate.  This removes all dependency on ordering
1864         from the code and fixes the initial MonoCalendar upgrade dialog.
1865         
1866 2006-09-26  Jackson Harper  <jackson@ximian.com>
1867
1868         * TextControl.cs: Use the Line to get the length of the line,
1869         since soft line breaks can change the end line.
1870
1871 2006-09-26  Chris Toshok  <toshok@ximian.com>
1872
1873         * Control.cs (ControlCollection.AddImplicit): don't add the
1874         control again if it's already in one of our lists.  This keeps us
1875         from adding controls over and over again for comboboxes when their
1876         handle gets recreated (as the combobox adds implicit controls in
1877         OnHandleCreated).  Fixes the X11 errors in bug #79480.
1878
1879 2006-09-26  Jackson Harper  <jackson@ximian.com>
1880
1881         * TextControl.cs: When deleting characters make sure that any
1882         orphaned zero lengthed tags get deleted.
1883         - Fix ToString for zero lengthed tags.
1884
1885 2006-09-25  Jackson Harper  <jackson@ximian.com>
1886
1887         * TextControl.cs: When getting a tag at the location there can be
1888         multiple tags at the same spot, these are 0-lengthed tags that
1889         appear when extra formatting has been stuck in a location.  We
1890         need to pull out the last of these 0 lengthed tags.
1891
1892 2006-09-25  Jackson Harper  <jackson@ximian.com>
1893
1894         * TextControl.cs: Fix print out in debug method.
1895         * TextBoxBase.cs: When text is set bail if we are setting to the
1896         previous value.
1897         
1898 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
1899
1900         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
1901           It is now possible to change the selected index in a FontXXXListBox
1902           with the up and down arrow keys from the FontXXXTextBoxes.
1903           Also, send the FontXXXTextBox mouse wheel event to the corresponding
1904           FontXXXListBoxes to match ms.
1905
1906 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
1907
1908         * SystemInformation.cs: Return a clone of the theme's MenuFont because
1909         anyone can dispose it, anytime. All other properties returns enums, 
1910         structs or basic types so they don't need such tricks.
1911
1912 2006-09-22  Jackson Harper  <jackson@ximian.com>
1913
1914         * XplatUI.cs:
1915         * XplatUIWin32.cs:
1916         * Clipboard.cs:
1917         * DataFormats.cs:
1918         * XplatUIOSX.cs:
1919         * XplatUIDriver.cs: Update interface to add a primary selection
1920         flag, so the driver can use the primary selection buffer if
1921         needed.
1922         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
1923
1924         * RichTextBox.cs: We need to supply the data object to paste now
1925         (so we can choose to supply CLIPBOARD or PRIMARY).
1926         * TextBoxBase.cs: Supply data object to paste (see above).
1927         - Middle click uses the primary selection data object.
1928         
1929 2006-09-21  Chris Toshok  <toshok@ximian.com>
1930
1931         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
1932         of SetWMStyles.  It's still a rat's nest and is largely
1933         order-dependent which I dislike immensely.  This also fixes the X
1934         button disappearing from toplevel forms.
1935
1936 2006-09-21  Mike Kestner <mkestner@novell.com>
1937
1938         * ListBox.cs: move Jordi's click/dblclick raising code to the
1939         mouse up handler.
1940
1941 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
1942
1943         * ListBox.cs: Fixes 79450
1944
1945 2006-09-21  Mike Kestner <mkestner@novell.com>
1946
1947         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
1948         to deal with people updating the TreeNodeCollection after the tree
1949         is disposed.  "Fixes" 79330.
1950
1951 2006-09-20  Jackson Harper <jackson@ximian.com>
1952
1953         * TextControl.cs: Push the cursor record onto the undo stack
1954         before the delete action. This fixes 78651.
1955
1956 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
1957
1958         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
1959         CreateParams. Fixes 79329.
1960
1961 2006-09-19  Chris Toshok  <toshok@ximian.com>
1962
1963         * XplatUIX11.cs: a couple of blanket code massage passes to clean
1964         things up a bit.  First, get rid of the NetAtoms array (and the NA
1965         enum), and just embed the atoms as static fields.  Also, add a
1966         couple of functions (StyleSet and ExStyleSet) to clean up all the
1967         bitmask testing of styles.
1968
1969         * X11Structs.cs: remove the NA enum, not needed anymore.
1970         
1971 2006-09-19  Chris Toshok  <toshok@ximian.com>
1972
1973         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
1974         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
1975         added cleanup to get MessageBox titles appearing again, which were
1976         broken by my earlier fix for caption-less/ControlBox-less windows.
1977
1978 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
1979
1980         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
1981           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
1982           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
1983           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
1984           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
1985           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
1986           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
1987           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
1988           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
1989           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
1990           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
1991             Inital import.
1992         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
1993           ToolStripButton.cs: Stubs needed for above.
1994         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
1995
1996 2006-09-15  Chris Toshok  <toshok@ximian.com>
1997
1998         * XplatUIX11.cs:
1999         - make the MessageQueues hashtable Synchronized.
2000         
2001         - SendMessage: if the Hwnd is owned by a different thread, use the
2002         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
2003         thread.  Fixes bug #79201.
2004
2005 2006-09-15  Chris Toshok  <toshok@ximian.com>
2006
2007         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
2008         ControlBox == false, we disallow maximize/minimize/close.  If the
2009         form Caption is "" we also disallow move (and get rid of the Title
2010         decoration).  Unfortunately, regardless of how things are set,
2011         we're stuck with the Title and WM menu.
2012
2013 2006-09-15  Chris Toshok  <toshok@ximian.com>
2014
2015         * Application.cs: add locking around the static message_filters
2016         ArrayList, part of #79196.
2017
2018 2006-09-15  Chris Toshok  <toshok@ximian.com>
2019
2020         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
2021         Form.ControlBox == false, the window has no titlebar nor resize
2022         handles.  fixes bug #79368.
2023
2024 2006-09-15  Chris Toshok  <toshok@ximian.com>
2025
2026         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
2027         >= 0.  Fixes bug #79370.
2028
2029 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
2030         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
2031         * Control.cs:
2032             Add properties: LayoutEngine, Margin, DefaultMargin.
2033             Add method: GetPreferredSize.
2034             Move layout logic from PerformLayout to layout engines. 
2035
2036 2006-09-13  Chris Toshok  <toshok@ximian.com>
2037
2038         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
2039         fix for #79326 broke #78718, so this change addresses that.
2040
2041         - in SendWMDestroyMessages remove the call to
2042         CleanupCachedWindows, since we might be recreating the control and
2043         need to maintain the references to right Hwnd handles.  Also, set
2044         the zombie flag to true for each of the children in the hierarchy
2045         instead of calling hwnd.Dispose.  This will cause GetMessage to
2046         ignore all events for the window except for DestroyNotify.
2047
2048         - In GetMessage, ignore messages except for DestroyNotify for
2049         zombie hwnds.
2050         
2051         * Control.cs: revert the is_recreating fix from the last
2052         ChangeLog.  It's definitely "right", but it breaks switching from
2053         an MDI form to a non-MDI form.  Will need to revisit that.
2054
2055         * Hwnd.cs: add a zombie flag, which means "the
2056         client_window/whole_window handles are invalid, but we're waiting
2057         for the DestroyNotify event to come in for them".  Set the flag to
2058         false explicitly if setting WholeWindow/ClientWindow, and also
2059         when Disposing.
2060         
2061 2006-09-13  Chris Toshok  <toshok@ximian.com>
2062
2063         * XplatUIX11.cs: rework window destruction slightly.
2064
2065         - when destroying the windows associated with a control, we don't
2066         need 2 separate XDestroyWindow calls.  Just the one for the
2067         whole_window (or for client_window if whole_window is somehow
2068         IntPtr.Zero -- can this happen?) is enough.
2069
2070         - reworked SendWMDestroyMessages slightly, so we always dispose
2071         the child control hwnd's after sending the messages.
2072         
2073         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
2074         the two places it was used (one was even using hwnd.Handle and the
2075         other hwnd.client_window.  ugh), adding another call in
2076         SendWMDestroyMessages.  We need this new call because now the
2077         DestroyNotify events in the queue will be ignored for the child
2078         controls (as their hwnd's were disposed, and the window id's
2079         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
2080
2081         - this fixes bug #79326.
2082
2083 2006-09-13  Chris Toshok  <toshok@ximian.com>
2084
2085         * Control.cs: don't always set is_recreating to false at the end
2086         of RecreateHandle, since sometimes we're not done (and won't be
2087         until WndProc handles the WM_DESTROY message).  Also, set
2088         is_recreating to false in the WM_DESTROY handling code.  Part of
2089         the fix for bug #79326.
2090
2091 2006-09-13  Miguel de Icaza  <miguel@novell.com>
2092
2093         * X11DesktopColors.cs: Start the droppage of debugging messages.
2094
2095         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
2096
2097 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
2098
2099         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
2100
2101 2006-09-12  Chris Toshok  <toshok@ximian.com>
2102
2103         * DataGrid.cs (get_ListManager): if the list_manager is null, try
2104         to create it using SetDataSource.  Fixes bug #79151.
2105
2106 2006-09-11  Chris Toshok  <toshok@ximian.com>
2107
2108         * XEventQueue.cs: add a DispatchIdle property.
2109
2110         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
2111         either the queue is null, or the queue has DispatchIdle set to
2112         true.
2113         (DoEvents): set queue.DispatchIdle to false around the
2114         peek/translate/dispatch message loop in this method.  This keeps
2115         Application.Doevents from emitting idle events.  Part of the fix
2116         for #78823.
2117
2118 2006-09-11  Chris Toshok  <toshok@ximian.com>
2119
2120         * DataGrid.cs (set_DataSource): make this work for both the
2121         winforms/datagrid test and ReportBuilder.  It seems as though when
2122         we've created a ListManager (or maybe it's if we have a
2123         BindingContext?), when we set the DataSource it clears the
2124         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
2125         #79333.
2126
2127 2006-09-11  Chris Toshok  <toshok@ximian.com>
2128
2129         * XplatUIX11.cs: deal with queue being null, which happens in all
2130         the Clipboard functions.  Fixes one of the two problems mentioned
2131         in #78612.
2132
2133 2006-09-11  Chris Toshok  <toshok@ximian.com>
2134
2135         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
2136         button on various spots (including outside the menu) works closer
2137         to MS, and doesn't crash.  Fixes #79343.
2138
2139 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
2140
2141         * ListView.cs: Do not initialize item_sorter in init. To match MS,
2142         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
2143         and the internal comparer is set. When a new ListViewItemSorter is set,
2144         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
2145         was specified. No further processing is necessary if SortOrder is set
2146         to it's current value. If Sorting is modified to None, and View is
2147         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
2148         (either custom or our internal ItemComparer) to null, on 1.0 profile
2149         only set item_sorter to null if its our internal IComparer. If Sorting
2150         is modified to Ascending or Descending, then use our internal IComparer
2151         if none is set, and if the current IComparer is our internal one then:
2152         on 2.0 profile always replace it with one for new Sorting, and on 1.0
2153         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
2154         Enum.IsDefined to verify whether a valid View value is specified in
2155         its setter. Automatically sort listview items when listview is
2156         created. In Sort, do nothing if ListView is not yet created, or if
2157         no item_sorter is set (no Sorting was set, Sorting was explicitly set
2158         to None or ListViewItemSorter was set to null). Added Sort overload
2159         taking a bool to indicate whether the ListView should be redrawn when
2160         items are sorted (we use this in ListViewItemCollection to avoid double
2161         redraws). Modified our internal IComparer to take the sort order into
2162         account. In Add and AddRange methods of ListViewItemCollection, also
2163         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
2164         view), but use overload with noredraw option to avoid double redraw.
2165         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
2166         true when View is Tile, and do the same when attempting to set View to
2167         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
2168         for selected/checked indices, as it involves overhead when sorting is
2169         done while these collections are not used all that often. Instead
2170         we'll build the indices on demand. Modified IList implementation of
2171         CheckedIndexCollection to use public methods if object is int.
2172         Modified CheckedListViewItemCollection to hide checked items if
2173         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
2174         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
2175         IList implementation in SelectedIndexCollection to use public methods
2176         if object is int. Modified SelectedListViewItemCollection to hide
2177         selected items if listview is not yet created.
2178         * ListViewItem.cs: CheckedIndices list no longer needs to be
2179         maintained separately (see ListView changes). Also clone font, fixes
2180         test failure.
2181
2182 2006-09-11  Mike Kestner  <mkestner@novell.com>
2183
2184         * ComboBox.cs: if we are updating the contents of the currently
2185         selected index, refresh the control or the textbox selection.
2186         [Fixes #79066]
2187
2188 2006-09-11  Mike Kestner  <mkestner@novell.com>
2189
2190         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
2191         the 'specified' logic has been moved there.  This seems like a bug 
2192         in Control.cs, since our current SetBoundsCore completely ignores 
2193         the specified parameter.  Peter's commit seems to indicate that is 
2194         the way the MS control implementation works.  [Fixes #79325]
2195
2196 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
2197
2198         * XplatUI.cs: Set default_class_name to be composed
2199         of current domain id. This allows MWF to be loaded in multiple
2200         domains on Win32.
2201
2202 2006-09-09  Miguel de Icaza  <miguel@novell.com>
2203
2204         * X11Keyboard.cs: If we are unable to obtain the input method, do
2205         not call CreateXic to create the input context.   Should fix
2206         #78944/79276.
2207
2208 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
2209
2210         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
2211           Simplified gnome support by adding more pinvokes to get the
2212           icon for a file or mime type.
2213
2214 2006-09-08  Jackson Harper  <jackson@ximian.com>
2215
2216         * MenuAPI.cs: Deslect popup context menu items before closing the
2217         window, so that you don't see the previously selected item
2218         selected when you reopen the menu.
2219         * TextControl.cs: Update the cursor position even if we don't have
2220         focus.  This fixes typing in things like the ComboBox.  I'm not
2221         totally sure we should always set the visibility if we don't have
2222         focus, but couldn't find any corner cases where the cursor showed
2223         up when it shouldn't.
2224
2225 2006-09-08  Chris Toshok  <toshok@ximian.com>
2226
2227         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
2228         our arrays are length 256.  & 0xff before indexing.  Fixes the
2229         crash in bug #78077.
2230         
2231 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2232
2233         * ThemeWin32Classic.cs: 
2234         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
2235         is true. Handle that check box too.
2236
2237 2006-09-07  Chris Toshok  <toshok@ximian.com>
2238
2239         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
2240         79244.
2241
2242 2006-09-07  Chris Toshok  <toshok@ximian.com>
2243
2244         * Control.cs: in set_BackColor only do the work if
2245         background_color != value.
2246
2247         * XplatUIX11.cs: move the clearing of invalid areas (both client
2248         and nc) to the same block of code where we set (nc_)expose_pending
2249         to false.  That is, move it from PaintEventEnd to PaintEventStart,
2250         so things that cause invalidates from within OnPaint will trigger
2251         another call to OnPaint.  Fixes bug #79262.
2252
2253 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
2254
2255         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
2256         * FileDialog.cs: Fix typo
2257
2258 2006-09-07  Jackson Harper  <jackson@ximian.com>
2259
2260         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
2261         for tab pages if they have any.
2262
2263 2006-09-06  Mike Kestner  <mkestner@novell.com>
2264
2265         * Splitter.cs: use the "current" rect when finishing drag handle
2266         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
2267
2268 2006-09-06  Mike Kestner  <mkestner@novell.com>
2269
2270         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
2271         support offset splitters. [Fixes #79298]
2272
2273 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
2274
2275         * Mime.cs: Fixed a bug that could override the global mime type
2276           result.
2277
2278 2006-09-05  Jackson Harper  <jackson@ximian.com>
2279
2280         * TabControl.cs: Better calculation method for setting the slider
2281         pos. Prevents crashes on really wide tabs.
2282         - Draw Image on tab pages if an image list is used.
2283
2284 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2285
2286         * MonthCalendar.cs: When Font changes, the Size should be
2287         updated to fit the new font's space requirements.
2288
2289 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
2290
2291         * ListBox.cs: If the items are cleared with Items.Clear set
2292           top_index to 0.
2293
2294 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2295
2296         * MonthCalendar.cs: Handle arrow keys as input keys. Also
2297         fire DateChanged event instead of DateSelected event when
2298         the date was changed by keyboard interaction.
2299
2300 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2301
2302         * DateTimePicker.cs: Handle DateChanged for the associated
2303         month_calendar control, and set month_calendar.Font from 
2304         OnFontChanged method, as well as resize the height of the
2305         control when needed. Make PreferredHeight proportional.
2306
2307 2006-09-01  Chris Toshok  <toshok@ximian.com>
2308
2309         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
2310         properties.
2311
2312         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
2313
2314 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
2315
2316         * FileDialog.cs: Set ClientSize instead of window size, to allow space
2317           for decorations (Fixes #79219)
2318
2319 2006-09-01  Mike Kestner  <mkestner@novell.com>
2320
2321         * ComboBox.cs: first stab at sorting plus some selection handling
2322         fixes to bring us more in line with MS behavior.  Also switches back
2323         to index based selection.  Alternative patches for index-based 
2324         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
2325         and latency@gmx.de on bug 78848.  I assume they were similar to this
2326         code I've had simmering in my tree forever.
2327         [Fixes #78848]
2328
2329 2006-09-01  Chris Toshok  <toshok@ximian.com>
2330
2331         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
2332         when setting list position guard against ending up with a -1 index
2333         (the other part of the fix for #78812).  Should probably make sure
2334         we don't need the analogous fix in the ItemDeleted case.
2335
2336         * DataGrid.cs:
2337         - in SetDataSource, work around the fact that the way
2338         OnBindingContextChanged is invoked will cause us to re-enter this
2339         method.  I'll remove the hack once I investigate
2340         OnBindingContextChanged.
2341
2342         - fix the logic in set_DataSource and set_DataMember (basically
2343         what to do if the other of the two is null.)
2344         
2345         - in OnListManagerItemChanged, we need to take into account the
2346         edit row when deciding whether or not to call RecreateDataGridRows
2347         (part of the fix for #78812).
2348
2349 2006-09-01  Jackson Harper  <jackson@ximian.com>
2350
2351         * Splitter.cs: Don't do anything if there is no control to affect
2352         (prevents us from crashing in weird tet cases).
2353         * TreeView.cs: Bounding box for the mouse movement reverting
2354         focus/selection back to previously selected node.  This matches
2355         MS, and makes the tree a lot more useable.
2356         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
2357         use clipping so they are not drawn.  This fixes when the control
2358         is set to have a transparent background, or if it was over an
2359         image.
2360
2361 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
2362
2363         * MimeIcon.cs: Improved handling for reading default icons when
2364           using gnome (2.16 made it necessary). Check and read svg icons
2365           first, then 48x48 and then 32x32 icons.
2366
2367 2006-08-31  Chris Toshok  <toshok@ximian.com>
2368
2369         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
2370         visible.
2371
2372         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
2373         ProcessKeyPreview.  Fixes part of #77806.
2374
2375         * DataGrid.cs: big patch.
2376
2377         - revert the queueing up of DataSource/DataMember if inside
2378         BeginInit/EndInit calls.  That's not the way the datagrid achieves
2379         its delayed databinding.  Instead, call SetDataSource in
2380         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
2381         #78811.
2382
2383         - Also, it wasn't mentioned in #78811, but the test case exhibits
2384         behavior that was lacking in our datagrid implementation - Columns
2385         that have mapping names that don't exist in the datasource's
2386         properties aren't shown.  Yuck.  To fix this I added the bound
2387         field to the column style, and basically any calculation to figure
2388         out anything about columns uses a loop to find the bound columns.
2389         still need to investigate if I can cache an array of the bound
2390         columns or if the indices must be the same.
2391
2392         - When setting CurrentCell, we no longer abort if the cell being
2393         edited was in the add row.  This fixes the other part of #77806.
2394
2395         - The new code also fixes #78807.
2396         
2397         * ThemeWin32Classic.cs: perpetrate the same disgusting
2398         column.bound field hack, and only render bound fields.
2399
2400 2006-08-31  Chris Toshok  <toshok@ximian.com>
2401
2402         * DataGridColumnStyle.cs: add bound field.  this field is true if
2403         the datasource has a property corresponding to the mapping name.
2404
2405         * DataGridTableStyle.cs: set the bound field on the column styles
2406         depending on whether or not we have a column for that property.
2407
2408 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
2409
2410         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
2411           splitter control (fixes #79228)
2412
2413 2006-08-31  Chris Toshok  <toshok@ximian.com>
2414
2415         * DataGridColumnStyle.cs: we need to delay the assignment of
2416         property descriptor until the last possible moment due to the lazy
2417         databinding stuff in the datagrid.  Also, fix the exceptions
2418         thrown by CheckValidDataSource to match MS.
2419
2420 2006-08-31  Jackson Harper  <jackson@ximian.com>
2421
2422         * Form.cs: When activated select the active control, if there is
2423         no active control, we select the first control.
2424         * XplatUIX11.cs: If there is no focus control when we get a
2425         FocusIn event, find the toplevel form and activate it.  This
2426         occurs when you popup a window, it becomes the focus window, then
2427         you close that window, giving focus back to the main window.
2428
2429 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2430
2431         * MonthCalendar.cs: 
2432         * ThemeWin32Classic.cs: Cache Font in bold style, as well
2433         as StringFormat with Center alignments in MonthCalendar,
2434         instead of creating new ones when drawing the control. 
2435         Also, draw the month name in bold style.
2436
2437 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
2438
2439         * Control.cs:
2440           - PerformLayout(): It would seem MS performs the fill even if the 
2441             control is not visible (part of #79218 fix)
2442           - ResetBackColor(): Use the setter to reset the color, to allow
2443             overriders to catch the change.
2444         * Form.cs:
2445           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
2446           - CreateHandle(): dito (part of $79218 fix)
2447           - Don't set an icon if we have a dialog
2448         * ScrollableControl.cs:
2449           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
2450           - ScrollIntoView(): No need to scroll if control is already visible
2451             (resolves fixme and fixes #79218)
2452
2453 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2454
2455         * MonthCalendar.cs: Change proportions in SingleMonthSize
2456         to match the aspect of the original control.
2457
2458 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
2459
2460         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
2461           get updated when they get maximized.
2462
2463 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
2464
2465         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
2466
2467 2006-08-29  Chris Toshok  <toshok@ximian.com>
2468
2469         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
2470
2471 2006-08-29  Jackson Harper  <jackson@ximian.com>
2472
2473         * TreeView.cs: Need to track selected node and highlighted node,
2474         they aren't always the same thing, when the mouse is down on a
2475         node it is hilighted, but not selected yet.
2476         - Do the HideSelection stuff right
2477         - Need to focus on rbutton mouse down. And redraw selection when
2478         right click is mouse upped.
2479
2480 2006-08-29  Mike Kestner  <mkestner@novell.com>
2481
2482         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
2483         when SubItems.Count < Columns.Count.  [Fixes #79167]
2484
2485 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
2486
2487         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
2488
2489 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
2490
2491         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
2492           from X. Only send based on ConfigureNotify if we don't have the
2493           correct location in hwnd (if the window manager moved us)
2494
2495 2006-08-28  Mike Kestner  <mkestner@novell.com>
2496
2497         * ListView.cs: remove a TODO. 
2498         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
2499         [Fixes ListView part of #79166]
2500
2501 2006-08-28  Mike Kestner  <mkestner@novell.com>
2502
2503         * ListView.cs: move wheel handler to parent since it is focused
2504         instead of the item_control now.  [Fixes #79177]
2505
2506 2006-08-28  Mike Kestner  <mkestner@novell.com>
2507
2508         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
2509         when the control is focused. [Fixes #79171]
2510
2511 2006-08-28  Mike Kestner  <mkestner@novell.com>
2512
2513         * ListView.cs: size the item and header controls for empty and
2514         unscrollable views.
2515         * ThemeWin32Classic.cs: draw disabled backgrounds.
2516         [Fixes #79187]
2517
2518 2006-08-28  Chris Toshok  <toshok@ximian.com>
2519
2520         * Form.cs: remove unused "active_form" static field.
2521
2522         * Hwnd.cs: lock around accesses to static windows collection.
2523
2524         * Application.cs: lock threads in Exit ().
2525
2526 2006-08-28  Chris Toshok  <toshok@ximian.com>
2527
2528         * NativeWindow.cs: lock around accesses to window_collection.
2529         
2530 2006-08-28  Chris Toshok  <toshok@ximian.com>
2531
2532         * Control.cs: err, fix this the right way, by locking on controls
2533         when using it.  not by making it synchronized.
2534
2535 2006-08-28  Chris Toshok  <toshok@ximian.com>
2536
2537         * Control.cs: make the static "controls" field synchronized, as it
2538         gets updated from multiple threads.
2539
2540 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
2541
2542         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
2543           Prevent other threads from exiting when calling thread sets quit state.
2544         * XEventQueue.cs: Added PostQuitState property
2545
2546 2006-08-27  Chris Toshok  <toshok@ximian.com>
2547
2548         * AsyncMethodData.cs: add a slot for the window handle.
2549
2550         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
2551         window (the destination control's window, not the foster window).
2552
2553         * Control.cs (BeginInvokeInternal): store the window's handle in
2554         the AsyncMethodData.
2555         
2556
2557 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
2558
2559         * XplatUIX11.cs:
2560           - PostQuitMessage: Removed resetting S.D display handle, we might have
2561             another loop started after calling PostQuitMessage (Fixes #79119)
2562           - Created destructor to reset S.D handle
2563
2564 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
2565
2566         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
2567
2568 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2569
2570         * TextControl.cs (Insert): Update the caret position even if we don't
2571           have a handle yet, just don't call the driver in that case.
2572         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
2573           to the end of the new selection text (Fixes #79184)
2574
2575 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2576
2577         * Form.cs (Activate): Only activate if the handle is created)
2578         * Control.c:
2579           - Mark window as invisible when it's disposed
2580           - Check if window handle is created when setting window visible, 
2581             instead of relying just on the is_created variable
2582           - Check if object is disposed when creating the control (Fixes #79155)
2583
2584 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2585
2586         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
2587           when allowing layout again. Otherwise we re-generate the anchoring 
2588           distance to the border again and actually alter what the user wanted
2589           This is ugly, it'd be better if we used DisplayRectangle instead of
2590           ClientRectangle for Control.UpdateDistances, but that causes us to
2591           have other problems (initial anchoring positons would be wrong)
2592           (Fixes #78835)
2593
2594 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2595
2596         * Control.cs:
2597           - The size and location setters shouldn't go directly to 
2598             SetBoundsCore, but to SetBounds, which triggers layout on the
2599             parent, then calls SetBoundsCore. (Related to fix for #78835)
2600           - SetBounds: Moved actual location update code into this function
2601             from SetBoundsCore, to match MS. Added call to PerformLayout if
2602             we have a parent (to trigger resizing of anchored parents if the 
2603             child size has changed (see testcase for #78835) 
2604         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
2605           new control code
2606         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
2607
2608 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2609
2610         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
2611           System.Drawing when a toplevel window gets closed; there might
2612           be other toplevel windows belonging to the same app (Fixes #78052)
2613
2614 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
2615
2616         * FileDialog.cs: After reading FileDialog settings from mwf_config
2617           use Desktop prefix only if a real folder doesn't exist anymore.
2618         * FontDialog.cs: Added char sets.
2619           It is now possible to select the font, size or style with the
2620           textboxes.
2621
2622 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
2623
2624         * PrintPreviewDialog.cs: Use assembly name constants.
2625
2626 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2627
2628         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
2629           scrollbar from whacking it's buttons)
2630
2631 2006-08-24  Chris Toshok  <toshok@ximian.com>
2632
2633         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
2634         in this patch (aggregating setting Left/Top/Width/Height to
2635         setting Bounds on the scrollbars), but the crux of the fix is in
2636         Recalculate, where we scroll by the remaining scroll_position if
2637         we're hiding a scrollbar.  The 2*$5 reward in the comment is
2638         serious.
2639
2640 2006-08-24  Jackson Harper  <jackson@ximian.com>
2641
2642         * MdiClient.cs:
2643         * MdiWindowManager.cs: If the form is made a non-mdi window we
2644         need to remove the form closed event so that closing forms works
2645         correctly.
2646
2647 2006-08-24  Jackson Harper  <jackson@ximian.com>
2648
2649         * Control.cs: Make IsRecreating internal so that the driver can
2650         check it
2651         - Temporarily remove the Hide when controls are removed, its
2652         making a whole bunch of things not work because visibility isn't
2653         getting reset elsewhere correctly
2654         * Form.cs: Need to do a full handle recreation when the mdi parent
2655         is set.
2656         * XplatUIX11.cs: If we are recreating handles don't dispose the
2657         HWNDs.  What was happening is the handles were being recreated in
2658         SendWMDestroyMessages, but then flow continued on in that method
2659         and destroyed the new handles.
2660
2661 2006-08-23  Jackson Harper  <jackson@ximian.com>
2662
2663         * Form.cs: MdiClient is always at the back of the bus
2664         * Control.cs: When the order of items in the collection is changed
2665         we need to reset the all_controls array
2666         - do the same sorta setup thats done when adding a control when a
2667         control is set on the collection.
2668
2669 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
2670
2671         * TextBoxBase.cs (get_Text): Return an empty array if our document
2672           is empty (fixes #79052)
2673
2674 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2675
2676         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
2677           on WM_SYSCHAR messages (fixes #79053)
2678
2679 2006-08-23  Chris Toshok  <toshok@ximian.com>
2680
2681         * DataGrid.cs: fix flickering when scrolling vertically.
2682
2683 2006-08-23  Chris Toshok  <toshok@ximian.com>
2684
2685         * DataGrid.cs (EndEdit): only invalidate the row header when we
2686         need to.
2687
2688 2006-08-23  Chris Toshok  <toshok@ximian.com>
2689
2690         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
2691         methods.  fixes the flicker when scrolling around.
2692
2693 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2694
2695         * FileDialog.cs: Making sure the control is created before we get a 
2696           chance to use it with BeginInvoke (Fixes #79096)
2697
2698 2006-08-23  Chris Toshok  <toshok@ximian.com>
2699
2700         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
2701         width to use when painting the rows.
2702
2703 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
2704
2705         * TextBoxBase.cs:
2706           - Throw ArgumentException if a negative value is passed to SelectionLength
2707           - Update the selection end if start is moved. end needs to be always
2708             after start. (Fixes #79095)
2709           - Track selection length; MS keeps the selection length even if start
2710             is changed; reset on all other operations affection selection
2711
2712 2006-08-22  Jackson Harper  <jackson@ximian.com>
2713
2714         * TreeView.cs: Make sure both scrollbars get displayed and sized
2715         correctly when the other bar is visible.
2716         - Use the original clip rectangle for checking if the area between
2717         the two scrollbars is visible, not the viewport adjusted clipping
2718         rectangle.
2719
2720 2006-08-22  Jackson Harper  <jackson@ximian.com>
2721
2722         * Binding.cs: We don't use IsBinding because it requires the
2723         control to be created, which really shouldn't be necessary just to
2724         set a property on the control.
2725
2726 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2727
2728         * ComboBox.cs: Some CB.ObjectCollection methods must throw
2729         ArgumentNullReferenceException when the argument is null.
2730
2731 2006-08-21  Jackson Harper  <jackson@ximian.com>
2732
2733         * Timer.cs: Track the thread that the timer is started in (NOT
2734         CREATED), this way messages for it will only be triggered on its
2735         queue.
2736         * XEventQueue.cs: Track the timers here, this makes timers per
2737         thread, like MS.
2738         * XplatUIX11.cs: The timers are moved to the XEventQueue.
2739
2740 2006-08-19  Chris Toshok  <toshok@ximian.com>
2741
2742         * XplatUIX11.cs: after further communication with pdb, we get the
2743         best of both worlds.  SetZOrder working for un-Mapped windows, and
2744         no X errors for un-mapped windows.
2745
2746 2006-08-19  Chris Toshok  <toshok@ximian.com>
2747
2748         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
2749         as it was causing pdn toolbars to not have the correct stacking.
2750
2751 2006-08-18  Mike Kestner  <mkestner@novell.com> 
2752
2753         * ListView.cs : guard against negative ClientArea.Width in scrollbar
2754         calculation.  Not sure why control should ever be setting a negative
2755         width though.  Fixes #78931.
2756
2757 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2758
2759         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
2760         null items in ObjectCollection class.
2761         * ListBox.cs.: Likewise.
2762
2763 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
2764
2765         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
2766           as the base method in ThemeWin32Classic should work fine.
2767           Fixed bug #78607.
2768
2769 2006-08-18  Jackson Harper  <jackson@ximian.com>
2770
2771         * Binding.cs: When validating if the value entered doesn't convert
2772         properly reset to the old value.
2773         * RadioButton.cs: Don't fire click when we get focus.
2774
2775 2006-08-18  Jackson Harper  <jackson@ximian.com>
2776
2777         * FileDialog.cs: Paint the selection on the directory combobox the
2778         same way as on MS. 
2779
2780 2006-08-17  Jackson Harper  <jackson@ximian.com>
2781
2782         * ErrorProvider.cs: Don't allow the error control to be selected.
2783         * Control.cs: Don't send the SetFocus messages, the control
2784         activation will do this, and if we do it blindly here validation
2785         does not work.
2786
2787 2006-08-17  Jackson Harper  <jackson@ximian.com>
2788
2789         * Control.cs:
2790         * ContainerControl.cs: Make validation events fire in the correct
2791         order.  TODO: For some reason the first validation event is not
2792         getting fired.
2793
2794 2006-08-17  Mike Kestner  <mkestner@novell.com> 
2795
2796         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
2797
2798 2006-08-17  Mike Kestner  <mkestner@novell.com> 
2799
2800         * ComboBox.cs : implement scroll wheel support for popped-down
2801         state. Fixes #78945. 
2802
2803 2006-08-17  Jackson Harper  <jackson@ximian.com>
2804
2805         * TreeView.cs: Specify treeview actions (old patch that didn't get
2806         committed for some reason).
2807         - Don't let the mouse wheel scroll us too far.  Just want to make
2808         the bottom node visible, not scroll it all the ways to the top.
2809
2810 2006-08-17  Jackson Harper  <jackson@ximian.com>
2811
2812         * XplatUIX11.cs: Mouse wheel events go to the focused window.
2813
2814 2006-08-17  Mike Kestner  <mkestner@novell.com> 
2815
2816         * ComboBox.cs : don't do mouseover selection in simple mode.
2817
2818 2006-08-16  Jackson Harper  <jackson@ximian.com>
2819
2820         * Form.cs: Fire the closing events for all the mdi child windows
2821         when a window is closed.  If the cancel args are set to true, the
2822         main window still gets the event fired, but it doesn't not close.
2823         * MdiWindowManager.cs: Do this closing cleanup in a Closed
2824         handler, instead of when the button is clicked, so cancelling the
2825         close works correctly.
2826         * ComboBox.cs: Send the mouse down to the scrollbar.
2827
2828 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2829
2830         * ListBox.cs: When passing 'null' to SelectedItem,
2831         set SelectedIndex to -1, to unselect items. This is the
2832         observed behaviour in .Net.
2833
2834 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
2835
2836         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
2837           MS flags saying there won't be any. (fixes #78800)
2838         * Control.cs (HandleClick): Made virtual
2839
2840 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
2841
2842         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
2843           cultures. Fixed bug #78399.
2844
2845 2006-08-16  Jackson Harper  <jackson@ximian.com>
2846
2847         * Form.cs: Use the MdiClients MdiChildren property to access
2848         MdiChildren instead of creating the array from the child controls.
2849         * MdiClient.cs: Maintain a separate array of the mdi children, so
2850         that insertion order is maintained when the Z-order is changed.
2851
2852 2006-08-16  Mike Kestner  <mkestner@novell.com> 
2853
2854         * ListView.cs : add an ItemComparer and default to it for sorting.
2855         Fixes #79076, but sorting needs a complete overhaul to be compat with
2856         MS.
2857
2858 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
2859
2860         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
2861
2862 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2863
2864         * Hwnd.cs (Mapped): Properly traverse the tree
2865
2866 2006-08-15  Chris Toshok  <toshok@ximian.com>
2867
2868         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
2869         pass manager.Current.GetType() to ParseData.  It has to be the
2870         property type.  So, hold off doing the ParseData until we're in
2871         SetPropertyValue where we know the type.  This fixes the crash in
2872         #78821 but the textbox is still empty.
2873
2874 2006-08-15  Chris Toshok  <toshok@ximian.com>
2875
2876         * DataGrid.cs:
2877         - when we're scrolling, only call Edit() again if the
2878         current cell is still unobscured. Fixes bug #78927.
2879         - when handling mousedown on a cell, ensure the cell is visible
2880         before calling Edit.
2881         - remove the properties from DataGridRow, and remove the
2882         DataGridParentRow class altogether.
2883         
2884
2885 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2886
2887         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
2888           fire OnTextChanged by ourselves. There's no point calling base,
2889           we don't set the base value anywhere else. Fixes #78773.
2890
2891 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2892
2893         * ListBox.cs: Call CollectionChanged when modifying
2894         an item from Items indexer, to update the actual items
2895         in the list box.
2896
2897 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2898
2899         * PrintDialog.cs: Small fixes for focus and a pair of checks,
2900         to match .Net behaviour.
2901
2902 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2903
2904         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
2905
2906 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
2907
2908         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
2909
2910 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
2911
2912         * MessageBox.cs: Prevent potential NRE exception.
2913         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
2914
2915 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
2916
2917         * MessageBox.cs: Calculate the owner of a messagebox, also make
2918           it topmost. Fixes #78753
2919
2920 2006-08-14  Chris Toshok  <toshok@ximian.com>
2921
2922         * XplatUIX11.cs: A couple of fixes so that metacity will let us
2923         programmatically move windows.  first, set the PPosition hint as
2924         well as the USPosition hint.  Second include some code from pdb
2925         that sets the window type to NORMAL when we set the transient for
2926         hint.  This is because, in the absence of a window type, metacity
2927         thinks any window with TransientFor set is a dialog, and refuses
2928         to let us move it programmatically.  fascists.
2929
2930 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
2931
2932         * XplatUIX11.cs: When setting normal hints, take into consideration
2933           an different hints previously set so we don't delete them (fixes #78866)
2934
2935 2006-08-12  Chris Toshok  <toshok@ximian.com>
2936
2937         * ToolBarButton.cs: make Layout return a boolean, if something to
2938         do with the button's layout changed.
2939
2940         * ToolBar.cs:
2941         - add another parameter to Redraw, @force, which all existing
2942           calls set to true.
2943         - make the Layout function return a boolean which is true if the
2944           layout has actually changed.  Redraw now uses this (and @force)
2945           to determine when to invalidate.  At present the only place
2946           where @force can be false is the call from OnResize, when
2947           background_image == null.  So, resizing a toolbar when the
2948           layout doesn't change results in no drawing.
2949
2950 2006-08-12  Chris Toshok  <toshok@ximian.com>
2951
2952         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
2953         the VScrollBar and HScrollbar reversed.  oops.
2954
2955         * DataGrid.cs: fix the logic that assigns sizes to the implicit
2956         scrollbars.  we were assigning them twice (once in
2957         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
2958         therefore causing two scrollbar resizes (and redraws?) to happen
2959         per grid resize.
2960
2961 2006-08-12  Chris Toshok  <toshok@ximian.com>
2962
2963         * ToolBarButton.cs: redraw the entire button if the theme tells us
2964         to.
2965
2966         * Theme.cs: add ToolBarInvalidateEntireButton.
2967
2968         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
2969         buttons, just the border.
2970
2971         * ThemeNice.cs: redraw the entire toolbar button since we need to
2972         draw the highlight image.
2973
2974         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
2975         we need to redraw the entire button (not just the border).
2976
2977 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
2978
2979         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
2980           for vertical bars. Fixes the mismatches shown by #78513
2981
2982 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
2983
2984         * FileDialog.cs: If a saved/remembered path doesn't exist
2985           anymore, fall back to "Desktop".
2986
2987 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
2988
2989         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
2990           parent. It's apparently legal to not have one
2991         * XplatUIX11.cs:
2992           - SetZOrder: Don't try to set Z-Order on an unmapped window
2993           - CreateWindow: 0,0 are legal coordinates for a window. don't move
2994             it unless the coordinates are negative
2995
2996 2006-08-10  Mike Kestner  <mkestner@novell.com>
2997
2998         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
2999         when setting to null per msdn docs.  Fixes #78854.
3000
3001 2006-08-10  Chris Toshok  <toshok@ximian.com>
3002
3003         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
3004         flickering by setting a clip rectangle on the Graphics when we
3005         need to redraw just a particular menuitem.  Also, rename "OnClick"
3006         to "OnMouseDown" to reflect what it actually is.
3007         
3008         * Form.cs: track the OnMouseDown change.
3009
3010 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
3011
3012         * CommonDialog.cs: Properly inherit the CreateParams from the form
3013           and only change what we need. Fixes #78865
3014
3015 2006-08-10  Chris Toshok  <toshok@ximian.com>
3016
3017         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
3018         flickering in flat mode (and most of the flickering in general) by
3019         only invalidating the button border (and not the entire rectangle)
3020         when the state changes.  A couple of cases still flicker:
3021         ToggleButtons, and the dropdown arrow case when the user mouse
3022         ups.
3023
3024 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
3025
3026         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
3027           for german keyboards. Numlock state shouldn't affect the behaviour
3028           of the Del key. Fixes bug #78291.
3029
3030 2006-08-10  Chris Toshok  <toshok@ximian.com>
3031
3032         * ListControl.cs: remove the items.Clear line from BindDataItems,
3033         as this is the first thing done by both subclasses in their
3034         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
3035         passed -1, refresh the list.  This gets databinding working when
3036         the datasource is set on the list before the datasource is
3037         populated (as in wf-apps/ReportBuilder.)
3038
3039         * ComboBox.cs: remove the argument to BindDataItems.  This call
3040         should really go away, and be initiated by the ListControl code.
3041
3042         * ListBox.cs: same.
3043
3044 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
3045
3046         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
3047           if no data is in the document when the control is displayed
3048
3049 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
3050
3051         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
3052           yes (fixes #78806)
3053         * TextControl.cs: 
3054           - PositionCaret: Allow positioning of caret but don't call methods 
3055             requiring a handle if the window isn't created yet
3056           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
3057           - owner_HandleCreated: Don't position the caret, just update it's 
3058             location. User might have already set a different position
3059
3060 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
3061
3062         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
3063           windows. Screws up the returned coordinates for child windows. 
3064           Fixes #78825. I'm hoping this doesn't break something, since the
3065           code was explicitly put in 8 months ago, but no bug was attached.
3066           Menus still seem to work properly.
3067
3068 2006-08-08  Chris Toshok  <toshok@ximian.com>
3069
3070         * DataGrid.cs: make BeginInit/EndInit actually do what they're
3071         supposed to do - delay data binding until the EndInit call.  Also,
3072         make the table style collection's CollectionChangeAction.Refresh
3073         work properly.
3074
3075         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
3076         (with action = Refresh) when a consituent table's MappingName is
3077         changed.
3078
3079 2006-08-08  Chris Toshok  <toshok@ximian.com>
3080
3081         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
3082         Invalidate, since changing the text can change the size of the all
3083         toolbar buttons.
3084
3085 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
3086
3087         * Form.cs (AddOwnedForm): Still need to add the form to our listif
3088           we don't have it yet
3089
3090 2006-08-08  Chris Toshok  <toshok@ximian.com>
3091
3092         * PrintControllerWithStatusDialog.cs: don't .Close() the status
3093         dialog, as this causes X errors later on, since we actually
3094         destroy the window.  Instead, .Hide() it.
3095
3096 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
3097
3098         * ComboBox.cs: Added focus reflection for popup window
3099         * XplatUIX11.cs: 
3100           - Removed transient setting for non-app windows for now, not sure it
3101             was needed
3102           - Fixed logic checking if we have captions when deciding 
3103             override_redirect, WS_CAPTION is two bits and a 0 check was not
3104             sufficient
3105           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
3106             complicated
3107         * Form.cs: 
3108           - AddOwnedForm: Don't just add the form to the list, call the property
3109             to ensure the driver is informed about the ownership as well
3110           - CreateHandle: Set the TopMost status in the driver if we have an owner
3111         * XplatUI.cs: Fixed debug statement
3112
3113 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
3114         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
3115           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
3116           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
3117           TrackBarRenderer.cs: Make constructor private.
3118         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
3119         * ProfessionalColorTable.cs: Make properties virtual.
3120
3121 2006-08-06  Duncan Mak  <duncan@novell.com>
3122
3123         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
3124         is not changing.
3125
3126 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3127         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
3128           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
3129           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
3130           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
3131           Initial import of new 2.0 classes.
3132
3133 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3134         * Application.cs: Add 2.0 VisualStyles properties.
3135
3136 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
3137         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
3138           XplatUIX11.cs: Create property to allow access to existing private
3139           variable "themes_enabled"
3140
3141 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
3142
3143         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
3144         file size, as otherwise our class libraries fail using windows. Fixes
3145         bug #78759.
3146
3147 2006-08-04  Jackson Harper  <jackson@ximian.com>
3148
3149         * Form.cs:
3150         * XplatUIX11.cs: Move the toolwindow window manager creation into
3151         the X11 driver, this way on win32 we can let windows create/handle
3152         the toolwindows.
3153
3154 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3155
3156         * PrintDialog.cs: Remove some redundant checks, add some others,
3157         clean some code, and move the focus to the text boxes when the
3158         values are incorrect.
3159
3160 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
3161
3162         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
3163
3164 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
3165
3166         * NumericUpDown.cs: Setting the Minimum and Maximum is now
3167           handled correctly. Fixes bug #79001.
3168
3169 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3170
3171         * PrintDialog.cs: The "Copies" numeric up down must have
3172         set the Minimum property to 1; only if the value is bigger
3173         than 1, activate "Collate" check box. This is the behaviour of .Net.
3174         Also modify the Document elements only if it is not null.
3175
3176 2006-08-03  Jackson Harper  <jackson@ximian.com>
3177
3178         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
3179         length. (We have a larger array then actual node count).
3180                 
3181 2006-08-03  Jackson Harper  <jackson@ximian.com>
3182
3183         * ComboBox.cs: Don't show selection by default.
3184         - The SelectAll isn't needed here, since the focus code should do
3185         that
3186         - DDL style lists to manual selection drawing, so when they
3187         get/lose focus they have to invalidate.
3188
3189 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
3190
3191         * TextBoxBase.cs: Don't always show all selections by default.
3192
3193 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
3194         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
3195           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
3196           Fixed various typos.
3197
3198 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
3199
3200         * Control.cs: Removing the controls in a ControlCollection with
3201           Clear now hides the controls as expected. Fixes bug #78804. 
3202
3203 2006-08-03  Jackson Harper  <jackson@ximian.com>
3204
3205         * Control.cs: Revert previous focus patch, it breaks reflector.
3206
3207 2006-08-03  Jackson Harper  <jackson@ximian.com>
3208
3209         * ComboBox.cs: Cleanup selection and focus with the combobox.
3210         This also eliminates some duplicated keyboard code, since now
3211         everything is handled by the main class.
3212         - Make list selection work on mouse up instead of down, to match
3213         MS.
3214
3215 2006-08-02  Jackson Harper  <jackson@ximian.com>
3216
3217         * Control.cs: Setting focus needs to go through the whole
3218         selection mechanism.
3219
3220 2006-08-02  Chris Toshok  <toshok@ximian.com>
3221
3222         * PrintPreviewDialog.cs: change MinimumSize to use
3223         base.MinimumSize so it works.
3224
3225 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
3226
3227         * TextControl.cs:
3228           - UpdateCaret: Added sanity check in case caret isn't defined yet
3229           - Line.Delete: Now updating selection and caret markers if we're
3230             transfering a node (Properly fixes #78323)
3231           - SetSelectionEnd: Added sanity check
3232         * TextBoxBase.cs: Removed broken attempt to fix #78323
3233
3234 2006-08-01  Chris Toshok  <toshok@ximian.com>
3235
3236         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
3237         Close() call is handled in Form, not here.
3238
3239 2006-08-01  Chris Toshok  <toshok@ximian.com>
3240
3241         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
3242         layout/rendering.
3243
3244         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
3245         for sizes < 100% zoom.  The code now aggressively attempts to keep
3246         from calling document.Print (), and tries not to use the scaling
3247         g.DrawImage whenever possible (it still does if you scale to >
3248         100%, since usually that involves huge images).
3249
3250         * PrintPreviewControl.cs: hook up the close button.
3251
3252 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
3253         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
3254           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
3255           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
3256           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
3257           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
3258           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
3259           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
3260           Removed [Serializable] for 2.0 Event Handlers.
3261
3262 2006-07-31  Jackson Harper  <jackson@ximian.com>
3263
3264         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
3265         * TextControl.cs: Uncomment out the body of this method.
3266
3267 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
3268
3269         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
3270           standard cursors.
3271
3272 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3273
3274         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
3275           that embed TextBox and need selections visible even if textbox is not
3276           focused to enforce that behaviour.
3277         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
3278           selection drawing
3279
3280 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3281
3282         * TextControl.cs:
3283           - Added new SetSelectionStart/SetSelectionEnd overloads
3284           - Fixed viewport width assignment to be accurate
3285           - Adjusted alignment line shift calculations to allow cursor on right
3286             aligned lines to be always visible at the right border (like MS)
3287         * TextBoxBase.cs:
3288           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
3289           - TextBoxBase_SizeChanged: recalculating canvas on size changes
3290           - CalculateScrollBars: Use ViewPort size instead of window size, to
3291             properly consider space occupied by the border and scrollbars 
3292             (Fixes #78661)
3293           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
3294             calculations; no longer leaves artifacts
3295           - CaretMoved: Adjusted window scrolling to match MS and fixed several
3296             calculation bugs (Still missing right/center align calculations)
3297
3298 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
3299
3300         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
3301           use of both scroll rect and clip rect, as they do the same.
3302
3303 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
3304
3305         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
3306           in the event handler (fixes #78912)
3307
3308 2006-07-31  Chris Toshok  <toshok@ximian.com>
3309
3310         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
3311         grid.ListManager.Count, since grid.ListManager might be null.
3312         This of course begs the question "why are we drawing rows for a
3313         grid with no list manager (and therefor no rows)?"  Fixes the
3314         crash in bug #78929.
3315
3316 2006-07-31  Chris Toshok  <toshok@ximian.com>
3317
3318         * RelatedPropertyManager.cs: Don't always chain up to the parent
3319         ctor.  instead, call SetDataSource if the parent's position is !=
3320         -1.  Fixes the crash in #78822.
3321
3322 2006-07-31  Chris Toshok  <toshok@ximian.com>
3323
3324         * DataGrid.cs (get_ListManager): use field instead of property
3325         accessors for datasource and datamember.
3326         (RowsCount): make internal again.
3327         (OnMouseDown): end edits before resizing columns/rows.
3328         (OnMouseUp): restart edits after resizing columns/rows.
3329
3330 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
3331
3332         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
3333           This fixes the situation where the last set cursor is displayed
3334           whenever the mouse is over scrollbars.
3335
3336 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3337
3338         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
3339         Document properties, as well as initial values.
3340
3341 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
3342
3343         * XplatUIWin32.cs (SetBorderStyle): Setting both border
3344           and ClientEdge results in a 3-pixel border, which is
3345           wrong.
3346
3347 2006-07-28  Jackson Harper  <jackson@ximian.com>
3348
3349         * TreeNodeCollection.cs: Fix the clear method.
3350         - Fix the Shrink also
3351
3352 2006-07-27  Jackson Harper  <jackson@ximian.com>
3353
3354         * TreeView.cs: Make sure the visible order is computed when we
3355         attempt to size the scrollbars (for trees that mess with the
3356         scrolling when they shouldn't.
3357         - Make sure to give the scrollbars valid values.
3358
3359 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
3360
3361         * XplatUIX11.cs: Move motion compression code to where it
3362           has less performance impact
3363
3364 2006-07-26  Jackson Harper  <jackson@ximian.com>
3365
3366         * UpDownBase.cs: When the control is selected make the child
3367         controls non selectable, so that a click on them won't do a
3368         focus/unfocus cycle.
3369         - Don't give focus to the text box when the spinner is selected.
3370         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
3371
3372 2006-07-26  Chris Toshok  <toshok@ximian.com>
3373
3374         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
3375         satisfied with this solution.  If the bitmaps are small, we should
3376         just cache them in the PrintPreviewDialog and draw them here.
3377         Also, the layout is broken for the 2-up and 3-up cases.
3378
3379         * Theme.cs: add PrintPReviewControlPaint.
3380
3381         * PrintPreviewDialog.cs: first pass implementation.
3382
3383         * PrintPreviewControl.cs: first pass implementation.  No
3384         scrollbars yet.
3385
3386         * PrintDialog.cs: only validate fields if that particular portion
3387         of the UI is enabled.  Also, set the document's controller to a
3388         PrintControllerWithStatusDialog wrapping the document's print
3389         controller.
3390
3391         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
3392         bring up a SaveFileDialog (i hope we don't want to match the
3393         behavior of the crappy windows file entry) and set the
3394         PrinterSettings.PrintFileName accordingly.
3395
3396 2006-07-26  Jackson Harper  <jackson@ximian.com>
3397
3398         * ContainerControl.cs: Add a field that disables auto selecting
3399         the next control in a container when the container is activated.
3400         * UpDownBase.cs: Don't select the text box when the up down is
3401         selected.
3402
3403 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
3404
3405         * XEventQueue.cs: Added methods for peeking (used for compression
3406           of successive events)
3407         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
3408           mouse move events (fixes #78732)
3409
3410 2006-07-25  Jackson Harper  <jackson@ximian.com>
3411
3412         * UpDownBase.cs: Use an internal class for the textbox so that we
3413         can control focus.  the updown control should always have focus,
3414         if either the text area or the buttons are clicked.
3415         - Send the key messages to the textbox, since it never actually
3416         has focus
3417         - Activate and decativate the textbox caret.
3418
3419 2006-07-24  Jackson Harper  <jackson@ximian.com>
3420
3421         * Control.cs: Use the directed select when selecting a control,
3422         this way the container controls override will get called and the
3423         whole ActiveControl chain will get triggered.  TODO: probably need
3424         to make sure this gets done everywhere instead of the old
3425         Select(Control).
3426         * ContainerControl.cs: Implement the directed Select method to
3427         find and activate the correct child control.    
3428         
3429 2006-07-22  Mike Kestner  <mkestner@novell.com>
3430
3431         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
3432         menu handling code so that clicks without a grab work too.
3433         [Fixes #78914]
3434
3435 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
3436
3437         * FileDialog.cs: Enable the BackButton when dirstack has one element.
3438           Added some small optimizations.
3439
3440 2006-07-21  Matt Hargett  <matt@use.net>
3441
3442         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
3443
3444 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
3445
3446         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
3447           tests pass and match MS in some strange border cases.
3448
3449 2006-07-21  Chris Toshok  <toshok@ximian.com>
3450
3451         * ThemeWin32Classic.cs: handle drawing of the relation links and
3452         parent row buttons.
3453
3454         * Theme.cs: change args to DataGridPaintParentRow.
3455
3456         * DataGrid.cs: Don't use controls for the relation links and
3457         parent buttons, so we have to handle all their interactions in
3458         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
3459         when we're navigating through child tables, so we can reinstate
3460         selection, expanded state, current cell, etc.
3461
3462 2006-07-20  Chris Toshok  <toshok@ximian.com>
3463
3464         * ToolBar.cs: When we redraw a button, for whatever reason,
3465         there's no reason to redraw the entire toolbar.  Also, don't call
3466         Control.Refresh from within Redraw, as it's much heavier than
3467         Invalidate (which is really what we want).
3468
3469 2006-07-20  Chris Toshok  <toshok@ximian.com>
3470
3471         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
3472         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
3473         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
3474         traces from within a debug IBindingList datasource
3475         (in mono/winforms/datagrid) for *days*, I've finally gotten things
3476         to work in a similar fashion.
3477
3478 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3479
3480         * ListBox.cs: Don't call Sort () when setting 
3481         the Sorted property to false (avoid an unnecessary sort).
3482
3483 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3484
3485         * ListControl.cs: DataSource should throw an ArgumentException
3486         instead of a normal exception when the argument is not of the 
3487         correct type.
3488
3489 2006-07-20  Mike Kestner  <mkestner@novell.com>
3490
3491         * Control.cs: add InternalPreProcessMessage to allow us to steal
3492         key events before MWF gets its paws on them.  Adapted from a
3493         suggestion by eno.
3494         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
3495         up/down/left/right navigation. Override the new internal control
3496         method to steal the events since they never make it to WndProc.
3497         * ToolBarButton.cs: don't worry about pushed when setting hilight
3498         since the drawing code prefers pushed to hilight. Invalidate on 
3499         Hilight changes. Fixes #78547 and #78525.
3500
3501 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
3502
3503         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
3504           the canvas size. Fixes #78868
3505
3506 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
3507
3508         * Splitter.cs: Track requested split position until first layout
3509           is performed. Fixes #78871
3510
3511 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
3512
3513         * Application.cs: Removed code that forces 1.x for the version
3514           number if the version started with 0. Not sure why that code was
3515           there and I couldn't find any bugs that indicated we needed it.
3516           Fixes #78869
3517
3518 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
3519
3520         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
3521           ResetDefaults(), just write some output to the console until it's
3522           implemented. Fixes bug #78907 for now. Eliminated two warnings.
3523
3524 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
3525
3526         * PropertyGridView.cs: set StartPosition of drop down forms
3527         so they appear in correct initial spot.  Fixes #78190.
3528
3529 2006-07-19  Mike Kestner  <mkestner@novell.com>
3530
3531         * ThemeWin32Classic.cs: use parent background color when drawing
3532         flat toolbars.  Restructure the conditionals to make sure non-flat
3533         non-Divider toolbars are filled too.  Fixes #78837.
3534
3535 2006-07-19  Mike Kestner  <mkestner@novell.com>
3536
3537         * ListBox.cs: Sort on collection changes even if the handle
3538         isn't created yet.  Fixes #78813.
3539
3540 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3541
3542         * ListControl.cs: DisplayMember should never be null,
3543         and now we assign String.Empty when null is passed to it (this
3544         is the .Net way).
3545
3546 2006-07-17  Mike Kestner  <mkestner@novell.com>
3547
3548         * ListViewItem.cs: restructure Font and subitem Font handling 
3549         to hold a specific font and refer back to owner on null.
3550         Fixes #78761.
3551
3552 2006-07-17  Mike Kestner  <mkestner@novell.com>
3553
3554         * ToolBar.cs: bandaid for side-effect of previous patch which was
3555         discarding explicit heights for non-AutoSize toolbars.  Need to
3556         extend my format tester to deal with AutoSize=false. Fixes #78864.
3557
3558 2006-07-15  Jackson Harper  <jackson@ximian.com>
3559
3560         * LabelEditTextBox.cs:
3561         * TreeView.cs: Use a new LabelEdit class for node editing, this
3562         class automatically 'closes' itself when it gets the enter key or
3563         loses focus.
3564         - Use the client rectangle when setting the trees scrollbars, so
3565         border style is taken into account.
3566         
3567 2006-07-14  Jackson Harper  <jackson@ximian.com>
3568
3569         * TreeNode.cs:
3570         * TreeView.cs: Make the editing work similar to MSs, firing the
3571         events correctly and ending edits correctly.
3572
3573 2006-07-14  Mike Kestner  <mkestner@novell.com>
3574
3575         * ToolBarButton.cs:
3576         * ToolBar.cs: layout restructuring and redraw enhancements to support
3577         formatting changes gracefully, like setting TextAlign, ImageList, 
3578         ButtonSize, and Appearance.  Handles explicit button sizing quirks
3579         of the MS controls.  Things like flat toolbars ignoring button size
3580         but becoming constant sized at the largest button's size.  Normal
3581         toolbars with an image set cannot be shrunk smaller than the image,
3582         but text can be clipped/ignored.
3583         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
3584         is zero.  Seems like DrawString should be smart enough to not put
3585         anything on screen though. Also trim labels and ellipsize at the char
3586         boundary, not word.
3587         Fixes #78711 and #78483.
3588
3589 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
3590
3591         * FolderBrowserDialog.cs: Disable "New Folder" button and
3592           "New Folder" contextmenu menuitem if a folder like "My Computer"
3593           is selected.
3594
3595 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
3596
3597         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
3598         * FolderBrowserDialog.cs:
3599           - Use MWFConfig to store and read size and position settings
3600           - Added code to create a new folder (button or context menu).
3601             Use TreeView labeledit to change the name of the new folder.
3602
3603 2006-07-14  Jackson Harper  <jackson@ximian.com>
3604
3605         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
3606         when the tree is scrolled we end editing.
3607
3608 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
3609
3610         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
3611           Down arrows
3612
3613 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
3614
3615         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
3616         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
3617         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
3618         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
3619         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
3620         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
3621         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
3622         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
3623         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
3624         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
3625         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
3626         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
3627         ListViewItemSelectionChangedEventHandler.cs,
3628         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
3629         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
3630         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
3631         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
3632         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
3633         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
3634         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
3635         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
3636         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
3637         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
3638         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
3639         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
3640         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
3641         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
3642         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
3643         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
3644         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
3645         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
3646         WebBrowserNavigatingEventHandler.cs, 
3647         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
3648
3649 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
3650
3651         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
3652         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
3653         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
3654         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
3655         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
3656         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
3657         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
3658         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
3659         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
3660         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
3661         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
3662         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
3663         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
3664         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
3665         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
3666         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
3667         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
3668         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
3669         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
3670         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
3671         ListViewItemStates.cs, MaskFormat.cs: Added
3672
3673 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
3674
3675         * PropertyGridView.cs: Fix keyboard navigation of drop down.
3676         Patch from eno for bug 78558.
3677         
3678 2006-07-13  Jackson Harper  <jackson@ximian.com>
3679
3680         * TreeView.cs: When an edit is finished make sure that the
3681         selected node is visible.
3682         - When setting the top/bottom use the scrollbars is_visible, so
3683         everything will be set correctly even if the tree isn't visible
3684         yet.
3685
3686 2006-07-13  Jackson Harper  <jackson@ximian.com>
3687
3688         * ComboBox.cs: Revert the item->index part of my previous patch.
3689         * TreeView.cs: Use LostFocus instead of Leave for detecting when
3690         the edit box has lost focus (duh).
3691         - Just make the edit box not visible when we get return, that will
3692         take the focus, which will call EndEdit
3693         * TreeNode.cs When we start editing, notify the treeview.
3694
3695 2006-07-12  Jackson Harper  <jackson@ximian.com>
3696
3697         * ComboBox.cs: Clear out old items before setting the item list.
3698         This prevents databound controls from having their items added
3699         twice.
3700         - Switch the combobox to use indices whereever possible instead of
3701         using Item's.  This allows usto navigate through lists that have
3702         more then one item with the same string value (ie a, b, b, a).
3703         - Scroll the listboxes scrollbar when a non visible item is
3704         highlighted
3705         - Allow keypress to cycle through all the possible values. For
3706         example if you have b1, b2, b3 and hold down the B key all the
3707         values will be cycled through.
3708         
3709 2006-07-12  Jackson Harper  <jackson@ximian.com>
3710
3711         * TextBoxBase.cs:
3712         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
3713         this using the internal methods.
3714         * Control.cs: Add OnGotFocusInternal.  A new method that allows
3715         controls to "override" OnGotFocus and change focus behavior if
3716         needed.
3717         - Same thing for LostFocus
3718         * ComboBox.cs: Pass off focus to the text control properly.
3719
3720 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
3721
3722         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
3723         * FolderBrowserDialog.cs: Almost a complete rewrite.
3724           - Better support for Environment.Specialfolders
3725           - Added support for MWFVFS
3726           - Made setting SelectedPath work
3727
3728 2006-07-12  Jackson Harper  <jackson@ximian.com>
3729
3730         * Control.cs: Optimze getting all the controls.
3731
3732 2006-07-11  Jackson Harper  <jackson@ximian.com>
3733
3734         * ContainerControl.cs: Override SETFOCUS in the container control,
3735         so that it is not selected on mouse click.
3736
3737 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
3738
3739         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
3740           Hopefully we will have a better way once all of focus is complete.
3741
3742 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
3743
3744         * ThemeWin32Classic.cs: Commented out some debug code and fixed
3745           a compile error with csc.
3746
3747 2006-07-11  Jackson Harper  <jackson@ximian.com>
3748
3749         * Control.cs: When hiding a control only select the next control
3750         if the current control was focused.
3751         - Don't handle enter/leave when setting/killing focus, this is
3752         done by the container control.
3753         - Remove is_selected, it's not needed anymore.
3754         - Add utility methods for selecting a child control, and for
3755         firing the Enter/Leave events.
3756         * ContainerControl.cs: When a control is activated fire the
3757         enter/leave events.
3758         - Don't wrap when processing the tab key, so that focus can be
3759         moved outside of the container.
3760         - Use the correct active control
3761
3762 2006-07-11  Jackson Harper  <jackson@ximian.com>
3763
3764         * ComboBox.cs: Remove some debug code that was blinding me.
3765         * UpDownBase.cs: These controls actually aren't implicit, they are
3766         visible to the user.
3767
3768 2006-07-10  Chris Toshok  <toshok@ximian.com>
3769
3770         * DataGrid.cs: move back to the is_adding boolean field.  god i
3771         hate this is_editing/is_adding/is_changing stuff.
3772
3773 2006-07-10  Chris Toshok  <toshok@ximian.com>
3774
3775         * DataGridTableStyle.cs: just check if the property type is bool.
3776         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
3777         Don't use CanRenderType.
3778
3779         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
3780         if our text == NullText.  Remove CanRenderType.
3781
3782         * DataGridBoolColumn.cs: nuke CanRenderType.
3783
3784         * DataGrid.cs: reenable some code to end the current edit inside
3785         of set_CurrentCell.  This fixes the other 1.1.16 regression.
3786         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
3787         Also, remove the visible_row_count arg from CalcRowHeaders, since
3788         we don't need to worry about the actual height of the area.
3789
3790 2006-07-10  Chris Toshok  <toshok@ximian.com>
3791
3792         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
3793         mode, just return.
3794
3795         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
3796         the real sense of the IsInEditOrNavigateMode property (true =
3797         navigate, false = edit).  Also, update OnKeyPress to reflect this.
3798
3799         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
3800         column style exists, we still need to set its property descriptor
3801         to match up with our list manager.
3802
3803 2006-07-10  Chris Toshok  <toshok@ximian.com>
3804
3805         * ThemeWin32Classic.cs: implement the new row/header painting
3806         approach.  The parent row painting will likely go away and
3807         replaced with label controls, but the rest seems to work ok (and
3808         efficiently).
3809
3810         * Theme.cs: change the way we draw datagrid rows.  we don't draw
3811         the row headers as a block now.  Instead we draw them in the
3812         normal draw-row loop.  Add some calls for drawing parent rows and
3813         relation rows.
3814
3815         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
3816         a default table style.  Set the defaults from ThemeEngine.Current,
3817         not SystemColors.  Fix lots of misc issues with property setters.
3818
3819         * DataGrid.cs: move loads of style information out of this class
3820         as it's being duplicated with DataGridTableStyle.  keep track of a
3821         special DataGridTableStyle for the properties we used to mirror
3822         here.  Switch all the style properties to access this table style
3823         instead of instance fields of this class.  Also add a internal
3824         class to represent parent rows (more needs to be stored here, like
3825         the selection state from the parent table, as well as the
3826         expansion state.)  Also, for datasources with relations, do the
3827         right thing for collapse/expand, and add support for the
3828         navigation/parent row buttons.
3829
3830         Lastly, fix the crash in the 1.1.16 build.
3831
3832         * GridTableStylesCollection.cs: make the explicit interface
3833         implementations call the class's methods as opposed to duplicating
3834         them.
3835
3836         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
3837         0 so the text doesn't jump around when we move the cursor.
3838
3839 2006-07-10  Jackson Harper  <jackson@ximian.com>
3840
3841         * TextBoxBase.cs:
3842         * ListBox.cs: Match MS's ToString (this makes debugging focus
3843         stuff infinitely easier).
3844
3845 2006-07-10  Jackson Harper  <jackson@ximian.com>
3846
3847         * Control.cs (SelectNextControl): When checking the control's
3848         parent use this instead of ctrl.parent so that null can be passed
3849         to SelectNextControl. (I have unit tests for this).
3850         - Remove unused var.
3851
3852 2006-07-10  Chris Toshok  <toshok@ximian.com>
3853
3854         * CurrencyManager.cs: correct one regression, the removal of the
3855         finalType field.  Also, add a MonoTODO on CanAddRows, implement
3856         Refresh() correctly, and fix some event emission in
3857         ListChangedHandler.
3858
3859 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
3860
3861         * FileDialog.cs: Don't use brackets for new folders if they exist
3862           under *nix. Instead use -(number of existing folders +1).
3863
3864 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
3865
3866         * FileDialog.cs:
3867           - Fixed really nasty bug #78771
3868           - Don't block the whole GUI when reading directories with a lot of
3869             entries. Use an other thread instead and call BeginInvoke to
3870             update the ListView in MWFFileView
3871
3872 2006-07-07  Chris Toshok  <toshok@ximian.com>
3873
3874         * Control.cs (Dispose): release any Capture when disposing.
3875
3876 2006-07-07  Chris Toshok  <toshok@ximian.com>
3877
3878         * LinkLabel.cs (Select): if we chain up to the parent, set
3879         focused_index to -1 so we'll search for the first available link
3880         the next time the user tabs into us.  Also, if the direction is
3881         backward and focused_index == -1, start the search from the last
3882         element.
3883
3884 2006-07-07  Chris Toshok  <toshok@ximian.com>
3885
3886         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
3887         is beyond the end of the text, don't do anything.
3888         (CreateLinkPieces): set our ControlStyles.Selectable based on
3889         whether or not we have any links.
3890         (Link.Invalidate): use a loop instead of foreach.
3891         (Link.set_Start): null out owner.sorted_links so it'll be
3892         recreated by CreateLinkPieces.
3893
3894 2006-07-06  Chris Toshok  <toshok@ximian.com>
3895
3896         * LinkLabel.cs: revert the SetStyle change.
3897
3898 2006-07-06  Chris Toshok  <toshok@ximian.com>
3899
3900         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
3901         (OnEnableChanged): s/Refresh/Invalidate
3902         (OnGotFocus): if we have a focused index already, refocus it (so
3903         if we mouse out/in to the window it'll focus the right link).
3904         (OnKeyDown): move the tab handling out of here.
3905         (OnLostFocus): don't set focused_index to -1, so we can refocus it
3906         when we lose focus.
3907         (OnMouseDown): don't Capture here - Control handles it.  Also,
3908         focus the active link.
3909         (OnMouseUp): don't deal with Capture.
3910         (OnPaintBackgroundInternal): remove.
3911         (OnTextAlignChanged): CreateLinkPieces before calling the
3912         superclass's method.
3913         (OnTextChanged): call CreateLinkPieces before calling superclass's
3914         method.
3915         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
3916         move around.
3917         (Select): implement this, moving the selection between different
3918         links, and call parent.SelectNextControl if we don't have another
3919         link to focus in the given direction.
3920         (CreateLinkPieces): call Invalidate instead of Refresh.
3921         
3922 2006-07-06  Chris Toshok  <toshok@ximian.com>
3923
3924         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
3925         new LinkLabel internals.
3926
3927         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
3928         over pieces looking for active/focused/etc links.  also, deal with
3929         runs of text (and links) with embedded \n's in them, and use
3930         MeasureCharacterRanges instead of MeasureString to figure out the
3931         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
3932         two-step.
3933
3934 2006-07-04  Jackson Harper  <jackson@ximian.com>
3935
3936         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
3937         XKB or key auto repeat, do it manually.  Without key auto repeat,
3938         when a key is held down we get key press, key release, key press,
3939         key release, ... with auto repeat we get key press, key press, key
3940         press ..., and then a release when the key is actually released.
3941
3942 2006-07-03  Jackson Harper  <jackson@ximian.com>
3943
3944         * TabControl.cs:
3945         * ThemeWin32Classic.cs: Tabs do not obey normal background color
3946         rules, they are always control color regardless of the background
3947         color.
3948
3949 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
3950
3951         * FileDialog.cs: Added internal class MWFConfig.
3952           Removed Registry support and replaced it with support for the new
3953           MWFConfig class. See MWFConfig comments for more information.
3954
3955 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
3956
3957         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
3958           rectangle. Added some patches from eno from bug #78490 and fixed
3959           the arrow position for small up and down CPDrawScrollButtons.
3960
3961 2006-06-30  Jackson Harper  <jackson@ximian.com>
3962
3963         * InternalWindowManager.cs: Remove some debug code.
3964         * Form.cs: When an MdiParent is set to null, the window is
3965         "detatched" and becomes a normal window.
3966         * MdiClient.cs: Don't bring the new child form to the front until
3967         it is activated (setting it as active does this), this makes the
3968         previously active forms titlebar get redrawn as inactive.
3969
3970 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
3971
3972         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
3973           with later controls
3974
3975 2006-06-29  Mike Kestner  <mkestner@novell.com>
3976
3977         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
3978         arrow in keynav state.  Fixes #78682.
3979
3980 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
3981
3982         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
3983           order (fixes #78393)
3984
3985 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
3986
3987         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
3988           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
3989           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
3990           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
3991           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
3992           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
3993           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
3994           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
3995           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
3996           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
3997           enumerations (FlagsAttribute, SerializableAttribute, added/removed
3998           values)
3999
4000 2006-06-28  Mike Kestner  <mkestner@novell.com>
4001
4002         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
4003
4004 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
4005
4006         * PropertyGrid.cs,
4007           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
4008           item lines from other area (It also makes BackColor consistent and
4009           compatible with .NET). Fixed bug #78564.
4010
4011 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
4012
4013         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
4014         Patch from Eno for #78555.
4015
4016 2006-06-27  Chris Toshok  <toshok@ximian.com>
4017
4018         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
4019
4020         * DataGridColumnStyle.cs: same.
4021
4022         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
4023         
4024         * DataGridDrawingLogic.cs: nuke.
4025
4026 2006-06-27  Chris Toshok  <toshok@ximian.com>
4027
4028         * DataGridTableStyle.cs: clean up the constructors, and build the
4029         list of child relations for this table.  I have no idea if this is
4030         where we should be doing it (it probably isn't), but since we're
4031         already iterating over the properties..
4032
4033         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
4034         struct and array for keeping track of row information, similar to
4035         what's shown in a hack on
4036         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
4037
4038         * Theme.cs: be consistent about the naming of DataGrid methods,
4039         prefering ColumnWidths and RowHeights over columnsWidths and
4040         RowsHeights.
4041
4042         * ThemeWin32Classic.cs: same, and also add support for variable
4043         sized rows (and the +/- expansion icons for related rows).
4044
4045 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
4046
4047         * TextBoxBase.cs: Applied Eno's patch from #78660
4048
4049 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
4050
4051         * Form.cs (ScaleCore): We don't want to scale our form if it's
4052           state is minimized or maximized, but we still need to scale our
4053           child windows. Also, added try/finally block to ensure layout
4054           gets reset (Fixes #78697)
4055
4056 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
4057
4058         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
4059
4060 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
4061
4062         * Form.cs: Fixed c+p error and added check to resize form if minimum
4063           size is bigger than current size (Fixes #78709)
4064
4065 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
4066
4067         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
4068
4069 2006-06-26  Mike Kestner  <mkestner@novell.com>
4070
4071         * ComboBox.cs: only do Keypress handling in the combo when there  
4072         are items in the collection. Fixes #78710.
4073
4074 2006-06-26  Chris Toshok  <toshok@ximian.com>
4075
4076         * Binding.cs: make this work bi-directionally.  also, clear up
4077         other mixups between Push/Pull Data (e.g. we're supposed to pull
4078         data when validating).
4079
4080         * BindingManagerBase.cs: trim some fully qualified collection
4081         types.
4082
4083         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
4084
4085 2006-06-23  Chris Toshok  <toshok@ximian.com>
4086
4087         * PropertyManager.cs: It appears (according to the unit tests)
4088         that PropertyManager doesn't use
4089         PropertyDescriptor.AddValueChanged to track propery value changes
4090         in its datasource, but uses the same scheme as Binding, where it
4091         looks for a <Property>Changed event and binds to it.
4092
4093         Also, according to the docs, IsSuspended always returns false for
4094         a property manager with a non-null datasource.
4095
4096 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
4097
4098         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
4099           need to update the actual DialogResult. (Fixes #78613)
4100
4101 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
4102
4103         * Form.cs (ShowDialog): Release any captures before running the
4104           new message pump (fixes #78680)
4105
4106 2006-06-22  Mike Kestner  <mkestner@novell.com>
4107
4108         * ListView.cs: Layout column widths properly in details mode even 
4109         if HeaderStyle.None is set.  Fixes #78691.
4110
4111 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
4112
4113         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
4114
4115 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
4116
4117         * Control.cs (ContainsFocus): Using new driver method to get focused
4118           window, instead of trying to use internal tracking var, which can
4119           recursion issues (Fixes #78685)
4120         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
4121           XplatUIWin32.cs: Added GetFocus method to return focused window
4122
4123 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4124
4125         * ColorDialog.cs: when the mouse button is pressed inside the color
4126         matrix, don't let the cursor move out of it until the button is
4127         released, which is the behavior on windows. Changed 'colours' by
4128         'colors' to use the same word consistently.
4129
4130 2006-06-21  Chris Toshok  <toshok@ximian.com>
4131
4132         * DataGrid.cs: add in some basic navigation stuff (navigating to a
4133         child relation and back, using a stack).  Also, remove
4134         GetDataSource and the code that calls it - it's not needed.  Also,
4135         track CurrencyManager.ListName's removal.
4136
4137 2006-06-21  Chris Toshok  <toshok@ximian.com>
4138
4139         * CurrencyManager.cs: push some of the original type checking from
4140         BindingContext.CreateBindingManager to here, and remove some of
4141         the finalType stuff.  Need more tests to make sure I've got the
4142         ListName part right, and we might need more in SetDataSource.
4143
4144         * PropertyManager.cs: add a ctor that takes just the datasource,
4145         and no property name.  Make SetDataSource work with a null
4146         property_name, and make Current return the data_source if the
4147         property descriptor is null.  this makes 'string foo = "hi";
4148         BindingContext[foo].Current' return "hi" as it should.
4149
4150         * RelatedCurrencyManager.cs: make this code more generic - there's
4151         no reason the parent manager has to be CurrencyManager, and
4152         there's no reason to pass the DataRelation.  It suffices to use a
4153         BindingManagerBase and PropetyDescriptor.
4154
4155         * RelatedPropertyManager.cs: make a similar change here.
4156         
4157         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
4158         flower I knew it could be.
4159
4160 2006-06-20  Chris Toshok  <toshok@ximian.com>
4161
4162         * PropertyManager.cs: the PropertyChangedHandler is invoked when
4163         data in the source has changed and we need to update the control,
4164         so s/PullData/PushData.
4165
4166         * CurrencyManager.cs: Refresh is meant to update the control from
4167         data in the datasource.  So, s/PullData/PushData.
4168
4169         * BindingContext.cs: add more ugliness (we weren't handling the
4170         case where data_source = DataTable and data_member = column_name).
4171
4172         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
4173         from the perspective of the datasource.  PullData pulls from the
4174         control, PushData pushes to the control.
4175
4176 2006-06-20  Chris Toshok  <toshok@ximian.com>
4177
4178         * BindingContext.cs: rewrite the CreateBindingManager code to
4179         handle navigation paths more or less properly.  This could
4180         definitely stand some more work, in particular to push the
4181         recursion up to the toplevel.  But that relies on fixes in other
4182         places (System.Data comes to mind).
4183
4184         Also, move to a flat hashtable (and encode the twolevel nature of
4185         the dictionary into the hash key).  This lets us implement the
4186         IEnumerable.GetEnumerator method.
4187
4188         * RelatedCurrencyManager.cs: new class.  Update our view based on
4189         our relation and our parent CurrencyManager's position.
4190
4191         * CurrencyManager.cs: split out some logic from the ctor into
4192         SetView, so it can be called from the new RelatedCurrencyManager
4193         subclass.
4194
4195         * RelatedPropertyManager.cs: new class.  Update our datasource
4196         based on the position of our parent CurrencyManager.
4197
4198         * PropertyManager.cs: split out some logic from the ctor into
4199         SetDataSource, so it can be called from the new RelatedDataSource
4200         subclass.  Also, make the Current getter return the value
4201         of the PropertyDescriptor, not the data_source.
4202
4203         * Binding.cs: no need to duplicate the string splitting code here.
4204
4205 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
4206
4207         * Control.cs:
4208           - set_Enabled: OnEnabledChanged is not called if the inherited state 
4209             of the control is not altered, even though  we might be changing the
4210             internal state of the control (#78458)
4211           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
4212             OnEnabledChanged, to allow easy altering of any child window state
4213           - OnEnabledChanged: Added code to enable/disable driver window state
4214           - OnParentEnabledChanged: Instead of firing the event, call 
4215             OnEnabledChanged, which will fire the event and also a) set driver
4216             window state and pass the enabled state to any grandchildren (#78458)
4217
4218 2006-06-19  Jackson Harper  <jackson@ximian.com>
4219
4220         * InternalWindowManager.cs: We don't set the cursor explicitly
4221         thats done via the response to NCHITTESTs.
4222         - Don't need to adjust for titlebar heights anymore, the
4223         coordinates are coming in the correct coordinates now (see peters
4224         last patch).
4225
4226
4227 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
4228
4229         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
4230           being translated relative to whole window, instead of client window.
4231           That caused broken offsets on mouseclick (and caused gas for our
4232           InternalWindowManager)
4233
4234 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
4235
4236         * TextControl.cs:
4237           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
4238           - Undo(): Added replay of cursor move on DeleteChars action; added
4239             calling Undo() again if a recorded cursor move is invalid (to
4240             ensure that some action is performed on Undo)
4241         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
4242
4243 2006-06-16  Jackson Harper  <jackson@ximian.com>
4244
4245         * MdiClient.cs: Instead of just sizing maximized windows when
4246         there is a resize we also have to adjust the Y of minimized
4247         windows, so they stay pinned to the bottom of the mdi container.
4248         - Eliminate separate tracking of the active control, we can just
4249         get this from the controls collection.
4250         - Paint the decorations for the newly activated titlebar so we get
4251         a pretty blue bar.
4252         * InternalWindowManager.cs:
4253         * ThemeWin32Classic.cs: Minimized windows get all three buttons
4254         even if they are a tool window.
4255         
4256 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
4257
4258         * TextControl.cs (Undo): Handle non-existent cursor locations in the
4259           undo buffer, these can happen when text was deleted and the cursor
4260           was recorded first. Since we will also have a recorded cursor
4261           after the delete this is not an issue. (Fixes #78651)
4262
4263 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
4264
4265         * AccessibleObject.cs: Remove dependence on Control.is_selected;
4266           instead properly track control states internally (allows us to
4267           remove is_selected from Control)
4268
4269 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4270
4271         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
4272         whose width is not a multiple of 8.
4273
4274 2006-06-13  Jackson Harper  <jackson@ximian.com>
4275
4276         * MdiClient.cs:  Only maximize the next child if the current one
4277         is maximized.
4278
4279 2006-06-13  Chris Toshok  <toshok@ximian.com>
4280
4281         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
4282         modified.  Also, guard against grid or grid_drawing being null in
4283         Invalidate.
4284
4285         * DataGrid.cs: Reformat tons of getters/setters.  In the
4286         DataMember setter, just call SetNewDataSource instead of
4287         duplicating some of its functionality.  In SetNewDataSource, don't
4288         check ListManager for null, since the property getter creates the
4289         object if needed.
4290
4291         * DataGridTableStyle.cs: don't set TableStyle or call
4292         SetDataGridInternal on the column here, it's done in
4293         GridColumnStylesCollection.Add.
4294
4295         * GridColumnStylesCollection.cs: fix all the explicit interface
4296         implementations to just call our methods.  Nuke AddInternal() and
4297         move the body of it to Add().  Also, add a call to
4298         column.SetDataGridInternal to Add().
4299
4300         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
4301         base()+duplicate code.  Also, use the Format property instead of
4302         format to generate an Invalidate ala MS.  Lastly, create the
4303         textbox here, unconditionally.
4304         (set_Format): call Invalidate.
4305         (get_TextBox): no need to call EnsureTextBox.
4306         (Commit): remove the message box.
4307         (Edit) remove the call to EnsureTextBox.
4308         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
4309         (EnterNullValue): no need to check textbox for null.
4310         (HideEditBox): no need to check textbox for null.
4311         (SetDataGridInColumn): add the textbox to the grid's controls.
4312         (EnsureTextBox): nuke.
4313         
4314 2006-06-13  Jackson Harper  <jackson@ximian.com>
4315
4316         * MdiWindowManager.cs: Hook up to the maximized menus paint event
4317         and redraw the buttons when needed. Unhook when the window is
4318         unmaximized.
4319         * MainMenu.cs: Add an internal Paint event, the mdi window manager
4320         needs this so that it can redraw its buttons when the menu is
4321         repainted.
4322         * InternalWindowManager.cs:
4323         * Form.cs: The method order has changed for DrawMaximizedButtons,
4324         so that it can be a PaintEventHandler.
4325         
4326 2006-06-13  Jackson Harper  <jackson@ximian.com>
4327
4328         * MdiClient.cs: When we close a maximized mdi window, the next mdi
4329         window is activated and maximized, even if it wasn't before.
4330         - When  a new window is activated repaint the decorations of the
4331         old one, so that it no longer has the Active "look" (the blue
4332         titlebar).
4333         * InternalWindowManager.cs: Open up CreateButtons to base classes
4334         so they can recreate the buttons on state changes.
4335         - If a window is maximized give it all three buttons
4336         * MdiWindowManager.cs: Create the titlebar buttons when the state
4337         is changed, this is needed because a toolwindow will not have all
4338         three buttons until it is maximized.
4339
4340 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
4341
4342         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
4343           Fixed bug #78609.
4344
4345 2006-06-12  Jackson Harper  <jackson@ximian.com>
4346
4347         * KeysConverter.cs: Make sure we handle the Ctrl special case
4348         if its the only key.
4349         
4350 2006-06-12  Jackson Harper  <jackson@ximian.com>
4351
4352         * Theme.cs: Add a method to get the size of a managed window
4353         toolbar button.
4354         * InternalWindowManager.cs: Remove the ButtonSize property, this
4355         should be retrieved from the theme.
4356         * MdiWindowManager.cs: Get the button size from the theme
4357         * ThemeWin32Classic.cs: Make the method to get the managed window
4358         titlebar button size public.
4359         - Handle the different button sizes of maximized toolwindows
4360         (should match any maximized window).
4361         - Get the titlebar height from the theme, not the WM (which gets
4362         it from the theme).
4363
4364 2006-06-12  Jackson Harper  <jackson@ximian.com>
4365
4366         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
4367         event down to the mdi window manager.
4368         - Expose some extra stuff to base classes
4369         - Make sure to end the Capture on an NC Mouse up, so that we can
4370         get double clicks properly, and the sizing doens't stick.
4371         - When doing PointToClient contain it in the workable desktop
4372         area, this prevents windows from changing size when the cursor is
4373         pulled outside of the working area while sizing.
4374         * MdiWindowManager.cs: When we get a double click maximize the
4375         window.
4376         - Reset the cursor after handling mode changes.
4377
4378 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
4379
4380         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
4381           current desktop, instead of just assuming a 0, 0 origin. This
4382           is needed for our internal window manager, to know the top
4383           margin of the desktop
4384
4385 2006-06-12  Chris Toshok  <toshok@ximian.com>
4386
4387         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
4388         we need this to get rid of the selected background in the bool
4389         column.
4390         (CancelEditing): move the ConcedeFocus call to above the Abort
4391         call.  Also, set is_changing to false and invalidate the row
4392         header if we were changing before.
4393         (ProcessKeyPreviewInternal): remove, since noone outside this
4394         class calls it anymore.  Roll the code into ProcessKeyPreview.
4395         (EndEdit): remove the internal version.
4396         (InvalidateCurrentRowHeader): make private.
4397
4398         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
4399         Keys.Escape handling (and with it the last call to
4400         DataGrid.EndEdit from outside the class.)
4401
4402
4403 2006-06-12  Chris Toshok  <toshok@ximian.com>
4404
4405         * DataGridTextBox.cs (.ctor): isedit defaults to false.
4406         (OnKeyPress): set isedit to true.
4407         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
4408         already handled by the grid.
4409
4410         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
4411         right.  ugh.
4412         (set_DataSource): SetDataSource always returns true, so stop
4413         putting it in an if statement.
4414         (EndEdit): get rid of some {}'s
4415         (ProcessGridKey): return true in case Keys.Escape.
4416         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
4417         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
4418         PositionChanged, stopped connecting to CurrentChanged.
4419         (GetDataSource): simplify this a bunch.
4420         (SetDataSource): change return type from bool to void.
4421         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
4422         to this, and make sure we don't set ListManager.Position inside
4423         set_CurrentCell.
4424         (OnListManagerItemChanged): if we're passed an actual index,
4425         redraw that row.
4426
4427         * CurrencyManager.cs (set_Position): don't call PullData here.
4428
4429 2006-06-09  Jackson Harper  <jackson@ximian.com>
4430
4431         * TreeNode.cs:  Recalculate the visible order before doing the
4432         Expand/Collapse Below calls, because those calls generate an
4433         expose.
4434         - Reduce calls to the TreeView property, which is mildly expensive
4435         by using a local var.
4436         * Form.cs: Layout the MDI child windows when creating the parent
4437         form.
4438         - Don't use the internal constructor anymore
4439         * MdiClient.cs: use the parent form width/height (if available)
4440         when laying out the child windows, we do this because the
4441         mdiclient isn't docked yet when the initial layout is done.
4442         - Don't need an internal constructor anymore.
4443
4444 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4445
4446         * FileDialog.cs: handle access errors when trying to create a folder
4447         or changing to a directory. No need to initialize out parameters.
4448
4449 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4450
4451         * FileDialog.cs: Append a number when creating a new folder if the
4452           folder already exists (use parenthesis instead of square brackets)
4453
4454 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4455
4456         * FileDialog.cs:
4457           - Disabled registry support for windows and added better registry
4458             error checking for other systems (need to investigate why it
4459             works perfectly on my system)
4460           - If a folder already exist show an error MessageBox instead of
4461             trying to create an indexed name.
4462           - Fixed a non intentional typo.
4463
4464 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4465
4466         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
4467
4468 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4469
4470         * FileDialog.cs: When creating a new folder don't crash if the
4471           folder already exists.
4472
4473 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4474
4475         * FileDialog.cs: Allmost a complete rewrite.
4476           - added a "virtual" file system that handles the differences
4477             between unix and windows file systems (especially the directory
4478             structure). Moved most of the directory and file handling code
4479             into the vfs.
4480             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
4481             UnixFileSystem and FSEntry.
4482           - Recently used folder/directory, size, location and used file names
4483             (file name ComboBox) are now stored in the registry and get read
4484             before the dialog shows up (fixes part 6 of bug #78446).
4485           - Creation of new folders/directories is now possible (context menu
4486             or ToolBar). Added TextEntryDialog for this that fills in the gap
4487             until ListView.LabelEdit works.
4488           - Fixed cursor handling (bug #78527) and focus handling for
4489             PopupButtonPanel
4490           - Various "Search in" ComboBox enhancements. The content of the
4491             dropdown listbox now almost matches ms.
4492           - Changed the behaviour when the user switches to SpecialFolder
4493             Recent to show the ListView in View.Details.
4494           - Beside using the ToolBar to change the View property of the
4495             file ListView it is now possible to use the context menu too.
4496
4497 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
4498
4499         * ComboBox.cs: Don't create a new ObjectCollection when an item
4500           gets inserted. Just insert the item in the existing object_items
4501           ArrayList.
4502
4503 2006-06-08  Jackson Harper  <jackson@ximian.com>
4504
4505         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
4506         that the treeview and root node checks are done also, this fixes a
4507         regression i caused in the unit tests.
4508
4509 2006-06-07  Wade Berrier <wberrier@novell.com> 
4510
4511         * RichTextBox.cs: More ISO8859-1 -> unicode
4512
4513 2006-06-07  Mike Kestner  <mkestner@novell.com>
4514
4515         * ComboBox.cs : use items to hold highlight/selection so that
4516         collection insertions don't require synchronization.
4517
4518 2006-06-07  Jackson Harper  <jackson@ximian.com>
4519
4520         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
4521         routine.  We now always keep the sized edge at the cursor instead
4522         of computing movement and adjusting rects.  There is one buglet
4523         with this method though when the cursor is moved over area that
4524         the window can not expand too (such as the toolbars on the desktop).
4525
4526 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4527
4528         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
4529         here. Fixes crash on startup in AlbumSurfer.
4530
4531 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
4532
4533         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
4534           values
4535
4536 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4537
4538         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
4539         statement to avoid calling XNextEvent which will block if another thread
4540         took the event that we were expecting. Fixes bug #78605.
4541
4542 2006-06-07  Mike Kestner  <mkestner@novell.com>
4543
4544         * ListView.cs : isolated checkbox clicking from the selection logic.
4545         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
4546
4547 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4548
4549         * Form.cs: Check that the value passed to Form.DialogResult
4550         is a valid enum value.
4551
4552 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4553
4554         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
4555         Computer'. Clicking it in the network view goes to 'My Computer'.
4556         Added CIFS filesystem type. Display the mount point of filesystems.
4557         Avoid duplicate mount points (happens for me with CIFS);
4558
4559 2006-06-06  Jackson Harper  <jackson@ximian.com>
4560
4561         * InternalWindowManager.cs: Draw the maximized windows buttons
4562         when resizing.
4563
4564 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4565
4566         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
4567         all other dialogs. Fixes bug #78585.
4568
4569 2006-06-06  Mike Kestner  <mkestner@novell.com>
4570
4571         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
4572         Only invalidate checkbox on checkstate changes to avoid flicker.
4573         * ListBox.cs : avoid unselect/select when clicking selected item.
4574         avoid reselection flicker for already multiselected items.
4575         Fixes #78382.
4576
4577 2006-06-06  Jackson Harper  <jackson@ximian.com>
4578
4579         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
4580         the parent form so that the menu is removed if needed.
4581
4582 2006-06-06  Mike Kestner  <mkestner@novell.com>
4583
4584         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
4585         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
4586
4587 2006-06-06  Mike Kestner  <mkestner@novell.com>
4588
4589         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
4590
4591
4592 2006-06-06  Jackson Harper  <jackson@ximian.com>
4593
4594         * Control.cs: Use the property (instead of the field) to get the
4595         default cursor so it is instantiated correctly.
4596         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
4597         resizes so we need to manually repaint the window decorations here.
4598         - Set the titlebar button locations as soon as they are created,
4599         otherwise they are not set correctly on win32.
4600         
4601 2006-06-06  Chris Toshok  <toshok@ximian.com>
4602
4603         * CurrencyManager.cs (set_Position): call PullData before
4604         OnCurrentChanged.
4605         (AddNew): after calling IBindingList.AddNew, update our
4606         listposition, and call OnCurrentChanged/OnPositionChanged (without
4607         calling PullData).
4608         (OnCurrentChanged): remove the call to PullData from here.
4609         (OnItemChanged): remove the call to PushData from here.
4610         (OnPositionChanged): change the test from == null to != null to
4611         match the other methods.
4612         (ListChangedHandler): the grossest part of the patch.  Implement
4613         this such that it passes the unit tests in CurrencyManagerTest and
4614         the output more or less matches that of MS's implementation.
4615  
4616 2006-06-06  Mike Kestner  <mkestner@novell.com>
4617
4618         * ListView.cs : only update check state on single click.
4619         * ThemeWin32Classic.cs : fix focus drawing for details view without
4620         fullrowselect.  Fixes #78454.
4621         * XplatUIX11.cs : fix for double click emission.
4622
4623 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
4624
4625         * PropertyGridView.cs : Applied Atsushi's patch to fix
4626         font dialog bug  (#78197).
4627
4628 2006-06-05  Jackson Harper  <jackson@ximian.com>
4629
4630         * TreeNode.cs: Compute the next node for expanding/collapsing
4631         correctly. We now factor in nodes without a NextNode
4632         correctly. (Fixes somes cases in nunit-gui).
4633         * InternalWindowManager.cs: Set the bounds when updating the
4634         virtual position of a tool window.
4635         
4636 2006-06-05  Chris Toshok  <toshok@ximian.com>
4637
4638         * DataGrid.cs: rename cached_currencymgr to list_manager.
4639         (set_CurrentCell): move SetCurrentCell code here, and clean it up
4640         some.
4641         (CurrentRow, CurrentColumn): single accessors so we can make the
4642         cursor movement code a lot easier to understand.
4643         (CurrentRowIndex): implement this in terms of CurrentRow.
4644         (BeginEdit): clean this up a bit.
4645         (CancelEditing): sort out the is_editing/is_changing/is_adding
4646         stuff a little.
4647         (EndEdit): minor changes.
4648         (OnKeyDown): add a comment about a (most likely) unnecessary
4649         check.
4650         (OnMouseDown): cancel editing when we click on a row header.  And
4651         use the CurrentRow setter, not CurrentCell.
4652         (ProcessDialogKey): directly call ProcessGridKey.
4653         (UpdateSelectionAfterCursorMove): factor out this common block of
4654         code (it's used everywhere that we move the cursor by updating row
4655         or column).
4656         (ProcessGridKey): pretty substantial overhaul.  Use the
4657         CurrentRow/CurrentColumn properties to make the code a lot more
4658         readable.  Only use the CurrentCell property when we have to
4659         modify both row and column at once.  Tab behavior is still broken,
4660         and Delete is untested.
4661         (Select): if we have no selected rows, set selection_start to
4662         @row.
4663         (EditCurrentCell): rename EditCell this.  It was only ever invoked
4664         with CurrentCell as the arg, so drop the arg and rename it.
4665
4666         * DataGridColumnStyle.cs: clean up the constructors a little, and
4667         drop CommonConstructor().
4668
4669         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
4670         actually get notified when the user hits it.
4671         (ProcessKeyMessage): *substantially* simplify this method.
4672         There's no reason (that I can see) for the textbox to be making
4673         calls into the datagrid at all.  Remove all of them but the ones
4674         for Enter handling.  those will take some more work.
4675
4676         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
4677         calling HideEditBox.
4678         (HideEditBox): if we have an active textbox, render it invisible
4679         without causing a re-layout of the datagrid.
4680
4681 2006-06-05  Mike Kestner  <mkestner@novell.com>
4682
4683         * ListView.cs : fix NRE crasher when focuseditem is cleared by
4684         collection changes by resetting it to Items[0].  Fixes #78587.
4685
4686 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4687
4688         * MessageBox.cs: if the height of the text is larger than the icon_size,
4689         use that. Fixes bug #78575.
4690
4691 2006-06-05  Jackson Harper  <jackson@ximian.com>
4692
4693         * TreeView.cs: Fix line drawing when scrolling.  To do this each
4694         node is basically responsible for drawing its entire horizontal
4695         area.  When drawing a node it draws its parent node lines if
4696         needed.
4697         - Adjust the clip area to the viewport rectangle
4698         - Fix Left/Right key handling to match MS. (It expand/collapses
4699         and moves to parents/first child but does not move selection to
4700         sibling nodes).
4701         - Fix SetTop to work with new bound calculation code
4702         - When scrollbars are no longer needed we need to reset scrolling
4703         vars and recalculate the visible order so the redraw is correct
4704         * TreeNode.cs: We can't expand/collapse nodes with no children.
4705
4706 2006-06-03  John Luke  <john.luke@gmail.com> 
4707
4708         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
4709         so the colors work without dev packages
4710         
4711 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
4712
4713         * Control.cs 
4714           - Select: Implemented to just use activate. Seems to match MS 
4715             behaviour closest. Documented to only do actual control walking 
4716             based on it's parameters if in a container control so I moved 
4717             the code there.
4718           - Removed selection check logic from our internal Select() method
4719         * ContainerControl.cs:
4720           - Select: Moved selection logic from Control here, since MS documents
4721             that containers obey the bool arguments. No longer calling base
4722
4723 2006-06-02  Jackson Harper  <jackson@ximian.com>
4724
4725         * TreeView.cs: If the selected node isn't changed when we get
4726         focus update the previously selected node so that we see the
4727         selection box.
4728
4729 2006-06-02  Mike Kestner  <mkestner@novell.com>
4730
4731         * ComboBox.cs: restructure grab and general mouse event handling.
4732         Make the composite control raise mouse events like it was a single
4733         control for leaves/enters/motion/up/down events.  fix dropdown list
4734         coordinate mangling and refactor it into the scrollbar subclass to
4735         reduce code duplication.  Fixes #78282 #78361 and #78457.
4736
4737 2006-06-02  Mike Kestner  <mkestner@novell.com>
4738
4739         * ScrollBar.cs: remove Capture setting/clearing, as it happens
4740         automatically in the Control.WndProc.
4741
4742 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4743
4744         * FileDialog.cs: fix crash when running SharpChess, which sets the
4745         FilterIndex to 2 with only one Filter.
4746
4747 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4748
4749         * ToolBar.cs: add SizeSpecified property.
4750         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
4751         try to figure out our real size, otherwise fallback to what the
4752         container says.
4753
4754 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
4755
4756         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
4757         * Control.cs (WndProc): MS always calls the DefWndProc to pass
4758           up the event
4759
4760 2006-06-01  Mike Kestner  <mkestner@novell.com>
4761
4762         * ListView.cs: revamp the focus management in ListView.  It still
4763         causes churn of LostFocus/GotFocus emissions on clicks, but it's
4764         better than not handling focus at all.  Will revisit when pdb feels
4765         the general focus handling is solid.  Fixes #78526.
4766
4767 2006-06-01  Jackson Harper  <jackson@ximian.com>
4768
4769         * TreeView.cs: Set the default border style in the constructor.
4770         - Move painting to use OnPaintInternal instead of capturing
4771         WM_PAINT, this is the correct way of doing things
4772         - UpdateBelow shouldn't invalidate the scrollbar area
4773         - Cap the top on update below in case the node was above the top
4774         of the viewport rectangle.
4775         - ExpandBelow and Collapse below need to obey Begin/End Update.
4776         * TreeNode.cs: Make is_expanded internal so the treenode
4777         collection can change it without firing the whole event chain.
4778         * TreeNodeCollection.cs: When clearing all the child nodes make
4779         sure to recalc the visible order.
4780         - Improve algo for remove the top node
4781
4782 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
4783
4784         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
4785           SendMessage directly calling window procedures, which in turn might
4786           call SetFocus()
4787
4788 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
4789
4790         * Control.cs: Don't handle WM_SETFOCUS if the same window already
4791           has focus (works around X11 sending a FocusIn after our SetFocus)
4792         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
4793
4794 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
4795
4796         * Mime.cs: Fix for the NET_2_0 build.
4797           NameValueCollection needs StringComparer now.
4798
4799 2006-05-31  Chris Toshok  <toshok@ximian.com>
4800
4801         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
4802         return (via an out parameter) the starting X of the column.
4803         (UpdateVisibleColumn): track change to FromPixelToColumn.
4804         (HitTest): add a ColumnResize case here.
4805         (DrawResizeLine): new function, probably poorly named.
4806
4807         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
4808         only need to keep one reference.
4809         (set_ListManager): same.
4810         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
4811         Also, add support for HitTestType.ColumnResize.
4812         (OnMouseMove): add column resize behavior here, and change the
4813         cursor to the correct one as we move around the datagrid.
4814         (OnMouseUp): terminate the column resize if we're resizing.
4815         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
4816         for the current cell.
4817         (ConnectListManagerEvents): use cached_currencymgr.
4818         (DisconnectListManagerEvents): fill this in, using
4819         cached_currencymgr.
4820         (SetCurrentCell): remove cached_currencymgr_events handling.
4821         (SetDataMember): only call DisconnectListManagerEvents if
4822         cached_currencymgr is != null.
4823         (SetDataSource): same.
4824         (OnListManagerCurrentChanged): cached_currencymgr_events ->
4825         cached_currencymgr.
4826
4827 2006-05-31  Jackson Harper  <jackson@ximian.com>
4828
4829         * BindingManagerBase.cs: Remove somedebug code that creeped into
4830         SVN.
4831         * TreeNode.cs: We get the indent level dynamically right now, so
4832         don't track it as a member.
4833         * TreeNodeCollection.cs: Make sure all nodes added to the list
4834         have parents, treeviews/topnodes setup properly.
4835         - Don't attempt to track indent level.
4836
4837 2006-05-30  Jackson Harper  <jackson@ximian.com>
4838
4839         * BindingContext.cs: Create the currency manager tables here.
4840         This allows us to more easily create null tables (when bad data
4841         members are used), and more easily create related currency
4842         managers.
4843         * CurrencyManager.cs: All the table creation stuff is done by the
4844         binding context now.
4845         - Current should throw an exception if listposition is -1.
4846         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
4847         been bound yet.
4848
4849 2006-05-30  Mike Kestner  <mkestner@novell.com>
4850
4851         * ListView.cs: allow reexpansion of zero-width column headers.
4852         Fixes #78528.
4853
4854 2006-05-28  Chris Toshok  <toshok@ximian.com>
4855
4856         * CurrencyManager.cs (get_Current): after the late binding
4857         listposition = -1 fix, we need to guard against it here and return
4858         null, otherwise we raise an exception (which is swallowed
4859         elsewhere, and breaks datagrid databinding.)
4860
4861 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
4862
4863         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
4864           than WM_SYSKEY, don't throw if get something unexpected (#78507)
4865
4866 2006-05-26  Jackson Harper  <jackson@ximian.com>
4867
4868         * ControlPaint.cs:
4869         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
4870         values, it's faster and it's all we care about (we don't care if
4871         the names aren't equal).
4872         * KeyboardLayouts.cs: Eliminate some dead code.
4873         - Lazy init things
4874         * X11Keyboard.cs: Lazy init keyboard detection.
4875         - Cleanup access modifiers a little.
4876
4877 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
4878
4879         * XplatUIX11.cs: Once again, attempting to get layout just right.
4880
4881 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
4882
4883         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
4884           the sizes of each link section, that will result in sizes that
4885           match DrawString's layout (Fixes #78391)
4886
4887 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
4888
4889         * FileDialog.cs: If AddExtension property is true autocomplete the
4890           extensions in SaveFileDialog correctly. Fixes bug #78453.
4891           Set MyNetwork and MyComputer to "C:\" for windows. This should
4892           fix part 8 of bug #78446 for now.
4893
4894 2006-05-26  Chris Toshok  <toshok@ximian.com>
4895
4896         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
4897         invalidate the current row header if we need to, but presumably
4898         we'll invalidate the row corrsponding to the bounds or
4899         editingControl.
4900         (GridHScrolled): switch back to this method, as it's part of the
4901         public api.  *sigh*.
4902         (GridVScrolled): same.
4903         (OnMouseWheel): hack up something that more or less works.  Call
4904         GridHScrolled/GridVScrolled directly, instead of duplicating much
4905         of their code here.
4906         (EnsureCellVisibility): reinstate a bunch of this code, since we
4907         can't just set the scrollbar Value and expect to do all the work
4908         in the ValueChanged handler.  Also, Call Update() after scrolling
4909         in one direction so the other XplatX11.ScrollWindow call has the
4910         proper stuff in the proper places.
4911         (EditCell): set is_editing to true before calling .Edit.
4912
4913         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
4914         don't bother comparing first.
4915         (OnKeyPress): call grid.ColumnStartedEditing before calling
4916         base.OnKeyPress.  this will set is_changing and invalidate the row
4917         header if necessary.
4918         (ProcessKeyMessage): for WM_CHAR messages, call
4919         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
4920         and WM_KEYDOWN.
4921         
4922         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
4923         it's done in the DataGrid.
4924         (NextState): call grid.ColumnStartedEditing, which takes care of
4925         invalidating the row header (and setting is_changing).
4926
4927         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
4928         here.  it's done in the DataGrid.
4929
4930 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4931
4932         * Control.cs: allow changing the cursor when the mouse position is
4933         out of bounds but Capture is set.
4934         * LinkLabel.cs: handle the case when the mouse button is pressed on the
4935         linklabel but released somewhere else.
4936
4937 2006-05-25  Jackson Harper  <jackson@ximian.com>
4938
4939         * TreeView.cs: When we get focus if there is no selected node make
4940         it the top node
4941         - Remove some uneeded setup code from Draw.
4942         * TreeNodeCollection.cs: If the tree doesn't have a top node when
4943         a new node is inserted make the new node the top.
4944         * XplatUIX11.cs:
4945         * Timer.cs: Use Utc time so that no local time zone stuff needs to
4946         be used (should be faster).
4947         
4948 2006-05-25  Chris Toshok  <toshok@ximian.com>
4949
4950         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
4951         problem with the last commit.
4952
4953 2006-05-25  Chris Toshok  <toshok@ximian.com>
4954
4955         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
4956         need the invalidate call here, while scrolling right-to-left via
4957         the left arrow key (i.e. moving the editing cell while scrolling).
4958
4959         * DataGrid.cs (.ctor): remove the initialization of
4960         ctrl_pressed/shift_pressed.  We no longer track them using key
4961         up/down handlers, but by using Control.ModifierKeys.  Also, switch
4962         to using ValueChanged handlers on the scrollbars instead of
4963         Scrolled event handlers.  This simplifies a bunch of the scrolling
4964         code.
4965         (GridHValueChanged): rename from GridHScrolled, and change it to
4966         work with the new event args.
4967         (GridVValueChanged): same.
4968         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
4969         (OnMouseWheel): actually scroll the datagrid.  Don't change the
4970         selected cell.
4971         (ProcessGridKey): correct all the keyboard navigation stuff I
4972         could find.  Ctrl up/down/left/right/home/end work now.
4973         (EnsureCellVisibility): correct method name spelling.  Also,
4974         simplify this a touch by not explicitly calling the
4975         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
4976         scrollbar value.
4977         (OnKeyUpDG): no need for this method now.
4978         
4979 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
4980
4981         * LinkLabel.cs: display the OverrideCursor when hovering the label.
4982         Fixes bug #78392.
4983
4984 2006-05-25  Chris Toshok  <toshok@ximian.com>
4985
4986         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
4987         r61019.
4988
4989 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
4990
4991         * Application.cs: Moved setting of is_modal and closing to before
4992           we create the control, to allow the event handlers called as a
4993           result of creation affect closing. Also removed Gonzalo's previous
4994           change to setting DialogResult, the behaviour has been moved to 
4995           Form.ShowDialog()
4996         * Form.cs: 
4997           - ShowDialog(): Removed explicit creation of the form, let RunLoop
4998             handle it instead
4999           - ShowDialog(): If no dialog result is set, we need to return Cancel
5000           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
5001             the close is cancelled
5002
5003 2006-05-25  Jackson Harper  <jackson@ximian.com>
5004
5005         * StatusBar.cs: We only need to update the sizes of the other
5006         panels when we have auto size contents.  Also we are only updating
5007         the contents of the panel, not the borders, so compensate for the
5008         border width (TODO: get this width from the theme somehow).
5009         * TreeView.cs: Scrollable is true by default
5010         - Use invalidate instead of refresh where needed
5011         - Factor the scrollable value into scrollbar updating
5012         - Update the scrollbars if the Scrollable property is altered
5013         - Update the selected node if its ImageIndex is changed
5014         - Handle null nodes in UpdateNode (mainly so we don't have to
5015         check if selected is null when updating it
5016         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
5017         are factored into the visible count
5018         - Use VisibleCount for clarity in the code
5019         - When the font is changed we need to recurse through all the
5020         nodes and invalidate their sizes
5021         
5022 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5023
5024         * Application.cs: set the DialogResult to fixed when the main form is
5025         hidden or destroyed while being modal.
5026
5027 2006-05-25  Miguel de Icaza  <miguel@novell.com>
5028
5029         * Theme.cs: Use Tangoified messagebox icons. 
5030
5031         (GetSizedResourceImage): Also cope with width = 0 and do not
5032         trigger a warning in that case (0 means "give me your icon from
5033         the resouce, no special size needed).
5034
5035 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
5036
5037         * Application.cs: Leave runloop if the the main modal form is 
5038           hidden (fixes #78484)
5039
5040 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
5041
5042         * BindingContext.cs : reject null datasource in Contains() and
5043           Item[].
5044         * CurrencyManager.cs : check data_member validity when data_source
5045           is dataset. When it is late binding, the initial position is -1.
5046
5047 2006-05-24  Jackson Harper  <jackson@ximian.com>
5048
5049         * TreeNodeCollection.cs: Dont't recalculate the visible order on
5050         inserted nodes that aren't visible.  This changes the
5051         max_visible_order which confuses scrollbar settings.
5052         - Use the enumerator to get the prev node instead of duplicating
5053         code.
5054         * TreeView.cs: Use new method for setting scrollbar values
5055         - Don't set the bounds every time the scrollbar is updated
5056         - When updating below the root node use an invalidate instead of a
5057         refresh to prevent the child controls (scrollbars) from being
5058         refreshed. (UpdateBelow still needs to be reworked anyways).
5059         - Reenable SetBottom now that visible orders are set correctly,
5060         added some debug code incase we ever get bad values there again.
5061         - Set the scrollbar max to 2 less then the max value, this
5062         compensates for the max value being one above the node count, and
5063         for scrollbars adding one extra "notch".
5064         - When drawing image nodes if there is an imagelist we draw the
5065         first image in the list if the supplied image index is out of the
5066         image list's bounds.
5067         
5068 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
5069
5070         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
5071           we receive a size change from the WM (Fixes #78503)
5072
5073 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
5074
5075         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
5076           rectangle (Fixes #78501)
5077
5078 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
5079
5080         * ButtonBase.cs: 
5081           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
5082             as a bitfield.
5083           - Fixed MouseMove to no longer switch pressed state unless the left
5084             mouse button is pressed. Atsushi provided the original patch (#78485)
5085           
5086 2006-05-24  Jackson Harper  <jackson@ximian.com>
5087
5088         * ScrollBar.cs: New internal methods that allow us to change a
5089         couple values on the scrollbar (the most common case is maximum
5090         and large change) without getting multiple invalidates.
5091
5092 2006-05-24  Chris Toshok  <toshok@ximian.com>
5093
5094         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
5095         (Edit): save off the original state in oldState, and set
5096         grid.is_editing to true.
5097         (OnKeyDown): abort editing if escape is pressed.  also, call
5098         NextState if space is pressed.
5099         (OnMouseDown): call NextState.
5100         (NextState): factor out shared code from OnKeyDown and OnMouseDown
5101         here.  Also, only invalidate the row header once (on the initial
5102         is_changing switch) to save on redraws.
5103
5104 2006-05-24  Chris Toshok  <toshok@ximian.com>
5105
5106         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
5107         if the value in the cell is different than it was before.  This
5108         keeps us from triggering a layout when we move around a datarid
5109         with a highlighted cell.
5110         (Edit): suspend layout when creating/positining the text box, and
5111         resume passing false so we don't ever actually re-layout.
5112         (ReleaseHostedControl): same.
5113         (EnsureTextBox): reformat slightly, and set WordWrap to false.
5114
5115         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
5116         control-key sequences should go to the datagrid - remove that
5117         lock.  Also, modify the conditions under which we move between
5118         cells when moving the cursor within a cell, and remove the "this"
5119         and "base" from field accesses.  We weren't even consistent, given
5120         they all were in the base class.
5121
5122 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
5123
5124         * Binding.cs : (.ctor)
5125           An obvious NRE fix for BindingTest.CtorNullTest().
5126
5127 2006-05-23  Chris Toshok  <toshok@ximian.com>
5128
5129         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
5130         them between lines.  This fixes some quirks editing cells in the
5131         datagrid.
5132
5133 2006-05-23  Jackson Harper  <jackson@ximian.com>
5134
5135         * TreeView.cs: Use begin/end update when doing expand/collapse all
5136         so that we don't get flicker on the scrollbar.
5137
5138 2006-05-23  Jackson Harper  <jackson@ximian.com>
5139
5140         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
5141         treenode calculations to be independant of the painting code. To
5142         do this nodes track a visible order which is calculated by the
5143         treeview.
5144         - Call new methods for expanding/collapsing nodes.  These methods
5145         use scrollwindow so we don't have to update everything below the
5146         node.
5147         * TreeView.cs: Refactored drawing and scrolling code.  We don't
5148         need to update nodes when drawing anymore or calculate scrollbar
5149         stuff.
5150         - Added new methods for expanding/collapsing nodes. These methods
5151         use ScrollWindow so as to not have to redraw all the nodes below.
5152         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
5153         we add/remove nodes or sort.
5154         - Handle removing the selected and the top node properly.
5155
5156 2006-05-23  Chris Toshok  <toshok@ximian.com>
5157
5158         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
5159         maybe this should actually happen in the datagrid code?
5160         (EndEdit): no need to invalidate anything, given that
5161         ReleaseHostedControl causes the datagrid to relayout, which
5162         invalidates everything anyway.
5163
5164         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
5165         in SetCurrentCell).
5166         (set_SelectionBackColor): call InvalidateSelection instead of
5167         Refresh.
5168         (set_SelectionForeColor): same.
5169         (BeginEdit): Flesh this out a bit.
5170         (CancelEditing): only do any of this if we're editing/adding.
5171         (EndEdit): same.
5172         (OnMouseDown): there's no need to cancel editing here, it's done
5173         in SetCurrentCell.
5174         (SetCurrentCell): only invalidate the current row header if it's a
5175         different row than the new one.
5176         (ShiftSelection): fix this to work like MS does.
5177         (ResetSelection): factor out the invalidation of selected_rows to
5178         InvalidateSelection.
5179         (SetDataSource): cancel any editing that's going on.
5180
5181         * DataGridColumnStyle.cs
5182         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
5183         call the non-interface version.
5184
5185         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
5186         header rectangle with the clip rectangle so we don't redraw the
5187         entire header for just a small area.  Gets rid of the last flicker
5188         when horizontally scrolling.
5189         (DataGridPaintRow): same.
5190
5191 2006-05-23  Mike Kestner  <mkestner@novell.com>
5192
5193         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
5194         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
5195         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
5196         Critical bug report.
5197
5198 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
5199
5200         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
5201           and this fixes #78493
5202
5203 2006-05-23  Miguel de Icaza  <miguel@novell.com>
5204
5205         * Theme.cs (GetSizedResourceImage): Scale images if the proper
5206         size is not found.  
5207         
5208         * FileDialog.cs: Do not change the background for the side bar as
5209         it wont work nicely with the theme, and also reduces the artifacts
5210         in rendering the icons (which I want to fix too).
5211
5212         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
5213         resources, not resgen resources. 
5214
5215         (PlatformDefaultHandler): Pull images using the new API.
5216
5217 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
5218
5219         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
5220           a reference to the hwnd and will not remove it unless there are
5221           no pending exposures (fixes #78341)
5222         * XplatUI.cs: Improved debug
5223
5224 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
5225
5226         * MenuAPI.cs : don't handle OnClick event when it was not the left
5227           button. Fixed bug #78487.
5228
5229 2006-05-23  Mike Kestner  <mkestner@novell.com>
5230
5231         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
5232         prefer submenus to the top menu for item lookup, to avoid popping down
5233         top-row items.
5234
5235 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
5236
5237         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
5238           Graphics.FillRectangle as the visual results are really bad (even
5239           on win). We now draw perfect arrows (and perfect shadows when the
5240           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
5241           Pen.DashPattern to draw the dots of each line.
5242
5243 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
5244
5245         * FileDialog.cs: Update the filename combobox when navigating through
5246           the ListView with the cursor keys. Fixes part 7 of bug #78446.
5247
5248 2006-05-22  Mike Kestner  <mkestner@novell.com>
5249
5250         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
5251         Fixes #78463.
5252
5253 2006-05-22  Mike Kestner  <mkestner@novell.com>
5254
5255         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
5256         requests. Fix a misspelled parameter and a copy paste exception error
5257         in Select.
5258
5259 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
5260
5261         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
5262           to get the same width/height (5/13) on X11 as the default font has on
5263           win32. This means that our DefaultFont emSize is smaller than the 
5264           the MS SWF equivalent (even thought the width/height stays the same)
5265
5266 2006-05-20  Jackson Harper  <jackson@ximian.com>
5267
5268         * MdiClient.cs:
5269         * MdiWindowManager.cs:
5270         * InternalWindowManager.cs: Make sure to use the border width from
5271         the theme.
5272
5273 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
5274
5275         * PrintDialog.cs: Implements printer details
5276
5277 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
5278
5279         * FileDialog.cs: Added focus handling for PopupButtonPanel.
5280           Fixes part 1 and 2 of bug #78446
5281
5282 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
5283
5284         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
5285           instead of sticking to the first ever calculated value
5286
5287 2006-05-19  Mike Kestner  <mkestner@novell.com>
5288
5289         * ComboBox.cs: fix mouse motion selection to use MousePosition and
5290         PointToClient, since Capture is set. Fixes #78344.
5291
5292 2006-05-19  Mike Kestner  <mkestner@novell.com>
5293
5294         * ListView.cs: match MS behavior in Details view where items are not
5295         drawn if Columns.Count == 0. 
5296         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
5297         Use a separate pen to draw the check, since changing the width affects
5298         the box as well.  Fixes #78454.
5299
5300 2006-05-18  Miguel de Icaza  <miguel@novell.com>
5301
5302         * ListView.cs: ArgumentOutOfRangeException, single versions of the
5303         exception should throw the name of the invalid argument.
5304
5305         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
5306         there are no files listed. 
5307
5308 2006-05-18  Jackson Harper  <jackson@ximian.com>
5309
5310         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
5311         up.
5312
5313 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
5314
5315         * Control.cs: Brought back our old UpdateZOrder method as a private
5316           function and switched our calls from UpdateZOrder to the new one.
5317           This fixes the Paint.Net canvas disappearing bug.
5318
5319 2006-05-18  Jackson Harper  <jackson@ximian.com>
5320
5321         * Theme.cs:
5322         * ThemeWin32Classic.cs:
5323         * InternalWindowManager.cs: Move the drawing into the theme,
5324         expose everything the theme should need from the window manager.
5325
5326 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
5327
5328         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
5329           from the call to NativeWindow to avoid walking up the parent chain
5330           further than needed (speeds up setting cursors and avoids setting
5331           the wrong cursor if a parent has another cursor defined)
5332         * Cursor.cs: When loading an icon as cursor, MS uses the center of
5333           the icon as hotspot, not what's contained as hotspot in the icon
5334           file. This fixes the perceived drawing offset seen with Paint.Net
5335         
5336 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
5337
5338         * XplatUIX11.cs: 
5339           - Store the calculated rectangle in Hwnd object and use it when 
5340             setting the client size
5341           - Force Toolwindows to always be type Dock, to ensure they're on top
5342
5343 2006-05-18  Mike Kestner  <mkestner@novell.com>
5344
5345         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
5346         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
5347         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
5348         Substantial refactoring to remove confusing nested classes. Coding
5349         standard and Get+Set->property refactorings.  Shift to index based
5350         highlighting in ComboListBox instead of constantly using IndexOf and
5351         Items[]. Add invalidations on resize for DropDownList to fix ugliness
5352         in FileDialog growth.  Draw borders manually since Simple mode needs
5353         to look like two independent controls.  Make listbox border
5354         conditional to DropDownStyle.  Improved OwnerDraw support.
5355
5356 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
5357
5358         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
5359         Don't set the disposed graphics to null, so we can throw the "right"
5360         exception if the graphics is reused later (added a flag to avoid 
5361         double disposing). Some behaviours are different under 2.0 and are
5362         filled under bug #78448.
5363
5364 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
5365
5366         * Control.cs: When double-buffering is enabled, we need to reset
5367           our graphics context between paint calls. Otherwise, any 
5368           transformations and other alterations on the context will 
5369           become cumulative (#77734)
5370
5371 2006-05-18  Mike Kestner  <mkestner@novell.com>
5372
5373         * ListView.cs: do focused item selection like MS on clicks. 
5374         Rework focus handling for ItemControl so LostFocus invalidates as
5375         well.
5376         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
5377         the ListView ItemControl has focus.
5378
5379 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
5380
5381         * XplatUIX11.cs: If client_window ends up being width or height zero
5382           due to border settings, move it off window inside whole_window (#78433)
5383
5384 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
5385
5386         * Mime.cs: Shrink the mime file cache correctly.
5387
5388 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
5389
5390         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
5391
5392 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
5393
5394         * XplatUIX11.cs (AddExpose): More sanity checks
5395
5396 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5397
5398         * XplatUIX11.cs:
5399           - AddExpose: Don't add expose ranges outside the size of our
5400             window
5401           - Cast opacity values to Int32 to avoid crashes with certain
5402             values
5403           - Added disabled code paths that protect against illegal cross-
5404             thread painting (Developers.exe)
5405
5406 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
5407
5408         * ProgressBar.cs: Invalidate the control when it's resized
5409           since block size is based on control size. (#78388)
5410
5411 2006-05-16  Miguel de Icaza  <miguel@novell.com>
5412
5413         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
5414         of setting the incoming argument to the "reset" value, we set the
5415         this.datamember to string.empty (before we were invalidating the
5416         incoming data).   
5417
5418         Fixes 78420
5419
5420 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5421
5422         * Form.cs: Only apply transparency settings after the form
5423           is created. (Fixes #77800)
5424
5425 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
5426
5427         * ApplicationContext.cs: Grab the HandleDestroyed event so
5428           we know when to fire OnMainFormClosed 
5429
5430 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5431
5432         * Application.cs: Introduced sub-class to allow tracking of
5433           threads and centralized triggering of the event mess for
5434           ThreadExit, AppExit, etc..  (#76156)
5435
5436 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
5437
5438         * MimeIcon.cs:
5439           - Do not return a null icon index value for a mime subclass.
5440             Instead try the main mime type class too.
5441           - Seems that some newer distributions don't have a link to some
5442             gnome default icons anymore. So check the default gnome dir too.
5443           
5444
5445 2006-05-16  Jackson Harper  <jackson@ximian.com>
5446
5447         * MdiClient.cs: Don't paint the parent background image if we have
5448         our own background image.
5449
5450 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
5451
5452         * Control.cs:
5453           - PerformLayout: Do not shrink space filled by DockStyle.Fill
5454             controls, all filled controls are supposed to overlap (#78080)
5455           - UpdateZOrder is supposed to update the control's z-order in the
5456             parent's z-order chain. Fixed to behave like that
5457           - BringToFront: Removed obsolete code
5458           - SendToBack: Simplyfied
5459           - SetChildIndex: Trigger layout calculations when Z-order changes
5460             since layout is done by z-order
5461
5462 2006-05-16  Chris Toshok  <toshok@ximian.com>
5463
5464         [ fixes bug #78410 ]
5465         * DataGrid.cs (set_AlternatingBackColor): use
5466         grid_drawing.InvalidateCells instead of Refresh().
5467         (set_BackColor): call grid_drawing.InvalidateCells.
5468         (set_BackgroundColor): use Invalidate instead of Refresh.
5469
5470         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
5471         invalidate the cell area.
5472
5473 2006-05-15  Chris Toshok  <toshok@ximian.com>
5474
5475         [ fixes bug #78011 ]
5476         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
5477         on to DataGridPaintRow.
5478         (DataGridPaintRow): take a clip argument, and only draw the cells
5479         which intersect it.  same with the not_usedarea.
5480
5481         * Theme.cs (DataGridPaintRow) add @clip parameter.
5482
5483         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
5484         XplatUI.ScrollWindow.
5485         (ScrollToRow): same.
5486
5487         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
5488         with last column which was causing a gray swath to appear with the
5489         XplatUI.ScrollWindow code.
5490
5491 2006-05-15  Chris Toshok  <toshok@ximian.com>
5492
5493         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
5494         use XplatUI.ScrollWindow.
5495         (VerticalScrollEvent): use XplatUI.ScrollWindow.
5496
5497 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
5498
5499         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
5500
5501 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
5502
5503         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
5504           file since there are no equivalent X11 cursors
5505
5506 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
5507
5508         * MonthCalendar.cs : DateTimePicker should reflect selected date
5509           on mouse*up*, not mouse*down*. Fixed originally reported part of
5510           bug #76474.
5511
5512 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
5513
5514         * TabControl.cs : When argument index is equal or more than tab
5515           count, just ignore. Fixed bug #78395.
5516
5517 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
5518
5519         * Control.cs: Dispose all child controls when control is diposed (#78394)
5520
5521 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
5522
5523         * ColorDialog.cs: Finally it is possible to select the color with
5524           the text boxes
5525
5526 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
5527
5528         * PrintDialog.cs: Fix typo
5529
5530 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
5531
5532         * PrintDialog.cs: PrintDialog is not resizable
5533         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
5534           color. Made some ToolBar drawing methods protected virtual.
5535
5536 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
5537
5538         * PrintDialog.cs: Implementation of the PrintDialog
5539
5540 2006-05-12  Chris Toshok  <toshok@ximian.com>
5541
5542         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
5543         thumb, instead use MoveThumb.  This has the side effect of making
5544         most of the other thumb moving machinery use MoveThumb as well.
5545         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
5546         need to actually invalidate the rectangle where the new thumb will
5547         go.
5548         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
5549         We force an Update() after, so it's not as fast as it could be,
5550         but at least there's zero flicker and no droppings.
5551         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
5552         (UpdateThumbPos): add another argument (dirty), which says whether
5553         or not to calculate/add dirty regions which we later invalidate.
5554         For cases where we know we're going to use MoveThumb, we pass
5555         false for this.  Otherwise, pass true.
5556
5557 2006-05-12  Jackson Harper  <jackson@ximian.com>
5558
5559         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
5560         the status bar.
5561         
5562 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
5563
5564         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
5565           and GetClipRegion methods and UserClipWontExposeParent property.
5566         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
5567           overriding UserClipWontExposeParent property, setting to false, since
5568           Win32 handles the required expose messages to draw our clipped parent
5569           areas internally
5570         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
5571           PaintEventStart to set the user clip region if set.
5572         * Control.cs: 
5573           - Now internally tracking the Region for the control since we need to
5574             store it if the handle is not yet created and only set it when it
5575             becomes created. Before setting the region forced handle creation
5576           - Added code to draw the parents underneath a user-clipped region
5577         * Hwnd.cs: Added UserClip property
5578
5579 2006-05-12  Chris Toshok  <toshok@ximian.com>
5580
5581         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
5582         (set_Maximum): same.
5583         (set_Minimum): same.
5584         (set_SmallChange): same.
5585         (OnMouseUpSB): remove the call to refresh when releasing the
5586         thumb.  We shouldn't need it.
5587         
5588 2006-05-12  Miguel de Icaza  <miguel@novell.com>
5589
5590         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
5591         AutoSize set to None, we do not need to relayout everything, we
5592         just need to invalidate the current region.
5593
5594         (Draw): Do not draw the entire ClientArea, just redraw the
5595         clip area being passed.
5596
5597         * MdiClient.cs: Make MdiClient constructor with the Form argument
5598         internal. 
5599
5600 2006-05-12  Jackson Harper  <jackson@ximian.com>
5601
5602         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
5603         parents background image,  but strangely not their own.
5604         - (DrawStatusBarPanel): Take into account horizontal alignment
5605         when drawing the strings and icons.
5606
5607 2006-05-12  Mike Kestner  <mkestner@novell.com>
5608
5609         * ListBox.cs: avoid invalidations for focus when the collection is
5610         empty. 
5611
5612 2006-05-12  Chris Toshok  <toshok@ximian.com>
5613
5614         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
5615         invalidate the entire thumb area.  Call InvalidateDirty which
5616         limits the redraw to the thumb itself and surrounding pixels.
5617
5618         * XplatUIX11.cs (ScrollWindow): optimize copying.
5619         
5620 2006-05-12  Chris Toshok  <toshok@ximian.com>
5621
5622         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
5623         Figure out the positioning/layout in a single pass instead of
5624         multiple recursive invocations.  Speeds up the initial display of
5625         the data grid.  Also, make many things private that were
5626         originally public but unused outside this class.
5627
5628 2006-05-11  Jackson Harper  <jackson@ximian.com>
5629
5630         * MdiClient.cs: Improved layout code.
5631
5632 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
5633
5634         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
5635           not SelectedObject.
5636
5637 2006-05-11  Chris Toshok  <toshok@ximian.com>
5638
5639         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
5640         union of that will always be {0,0,width,height}.
5641
5642 2006-05-11  Jackson Harper  <jackson@ximian.com>
5643
5644         * Form.cs: Match MS's DefaultSize for forms (they must have
5645         changed the size in sp2).
5646
5647 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
5648
5649         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
5650
5651 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
5652
5653         * TextControl.cs : Fixed bug #78109. This incorrect position
5654           comparison caused crash on automatic line split.
5655         * TextBoxBase.cs : reduce duplicate code.
5656
5657 2006-05-10  Jackson Harper  <jackson@ximian.com>
5658
5659         * MdiClient.cs: Active form is only sent to the back when using
5660         the Next form functionality, when a form is clicked the current
5661         active shouldn't be sent to the back.
5662         - Layout the mdi windows when the container is first made visible.
5663         * Form.cs: Give the MdiClient a ref to the containing form when we
5664         create it.
5665         
5666 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
5667
5668         * LinkLabel.cs : link_font could be uninitialized, so populate one
5669           before actual use. Fixed bug #78340.
5670
5671 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
5672
5673         * XplatUIX11.cs : clipboard format native value is IntPtr.
5674           Fixed bug #78283.
5675
5676 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
5677
5678         * Control.cs: 
5679           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
5680             which is passed up the parent chain by DefWndProc
5681           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
5682             to DefWndProc (#77956)
5683         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
5684
5685 2006-05-10  Jackson Harper  <jackson@ximian.com>
5686
5687         * MdiClient.cs: We need to remove the controls from the mdi
5688         collection, when we close the window.
5689         * MdiWindowManager.cs: Special handling of closing mdi windows.
5690         * InternalWindowManager.cs: Make the close method virtual so the
5691         mdi window manager can handle it specially.
5692
5693 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
5694
5695         * DataGrid.cs:
5696           - Recalculate grid when the data source has changed
5697           - Matches styles provided by user from all data sources types
5698         * DataGridTableStyle.cs: For columns that provided by the user set the
5699         with the preferred value is there was unassigned.
5700         * CurrencyManager.cs: throw OnItemChanged event
5701
5702 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
5703
5704         * PictureBox.cs: Don't animate until handle is created. Start animation
5705           when handle is created.
5706
5707 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
5708
5709         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
5710           current codebase.
5711         * XEventQueue.cs: We don't need to provide the extra info
5712
5713 2006-05-10  Jackson Harper  <jackson@ximian.com>
5714
5715         * MdiClient.cs: If the mdi clients parent form has a background
5716         image set, we draw that background image for the mdi area's
5717         background.
5718
5719 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
5720
5721         * TextBoxBase.cs: Set IBeam cursor (#78347)
5722
5723 2006-05-10  Mike Kestner  <mkestner@novell.com>
5724
5725         * ToolBar.cs: fix some text padding issues with ButtonSize
5726         calculation. Update the default size to match MS documentation.
5727         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
5728         button size. Fixes #78296.
5729
5730 2006-05-10  Mike Kestner  <mkestner@novell.com>
5731
5732         * ListBox.cs: use is_visible for scrollbar positioning in case the
5733         control isn't on screen yet.  Fix off by one with Right vs Width
5734         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
5735         
5736 2006-05-10  Jackson Harper  <jackson@ximian.com>
5737
5738         * X11Dnd.cs: Drop to a control with another control on top of it.
5739         * ToolBar.cs: Work on a copy of the buttons list, so that it can
5740         be modified in click handlers. TODO: Look for similar problems in
5741         other controls.
5742
5743 2006-05-09  Jackson Harper  <jackson@ximian.com>
5744
5745         * Form.cs: Window managers need the old window state when setting
5746         window state now.
5747         * InternalWindowManager.cs: Allow the base mdi window manager to
5748         handle more of the MDI only stuff (like maximize buttons).
5749         * MdiWindowManager.cs: Fix some snafus in changing the window
5750         state.  Add all the menu functionality, for both popup and
5751         maximized menus.
5752         * MdiClient.cs: When a new form is selected the currently
5753         activated form is sent to the back, this matches MS.
5754         - Implement a new method to activate the next mdi child window.
5755
5756 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
5757
5758         * Control.cs: 
5759           - Added new InternalCapture method to allow controls to prevent
5760             the capture behaviour on the click handlers
5761           - Switched to use InternalCapture
5762         * ComboBox.cs:
5763           - Using InternalCapture to prevent mouse captures from being released
5764             on mouse button release (Fixes #78100)
5765         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
5766           returns Form borders if a caption is present. (Fixes #78310)
5767
5768 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
5769
5770         * TreeNode.cs: Changed serialization .ctor to not require every field
5771           to be present. (#78265)
5772         * OwnerDrawPropertyBag.cs: Added serialization .ctor
5773
5774 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
5775
5776         * MimeIcon.cs: for is faster than foreach for strings.
5777
5778 2006-05-05  Mike Kestner  <mkestner@novell.com>
5779
5780         * CheckedListBox.cs: update check handling code to not use selected.
5781         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
5782         behavior for visual feedback, motion response, shift/ctrl handling,
5783         and properly deal with all 4 selection modes. Updates to bounds
5784         handling logic.  Add scroll wheel support. [Fixes #77842]
5785
5786 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
5787
5788         * ListView.cs:
5789           - Moved adding of Implicit controls into .ctor. That way, subsequent
5790             creation of the controls will not cause them to think they are 
5791             toplevel windows (fixes #78200 header problem)
5792           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
5793           - Switched visibility setting of header control to use internal field
5794             to avoid triggering handle creation
5795           - Now checking if handle is created before causing a refresh when items
5796             are added (This makes us now match handle creation time with MS)
5797         * Splitter.cs: Removed loading of private splitter cursor, switched to
5798           Cursors version now that that is loading the right ones
5799         * Cursors.cs: Load proper splitter cursors from resources
5800         * Cursor.cs: Added second method of loading resource cursors for the 
5801           VS.Net users amongst us
5802
5803 2006-05-05  Mike Kestner  <mkestner@novell.com>
5804
5805         * ListView.cs: give header_control a minimum size based on the
5806         ListView size.
5807
5808 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
5809
5810         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
5811           window seems to do that with metacity, so set that type. (#78120)
5812
5813 2006-05-05  Mike Kestner  <mkestner@novell.com>
5814
5815         * ListViewItem.cs: fix Details mode checkbox layout bug.
5816         * ThemeWin32Classic.cs: draw a ListView column header for unused space
5817         at the end of the header, if it exists. [Fixes for #78200]
5818
5819 2006-05-04  Jackson Harper  <jackson@ximian.com>
5820
5821         * MdiClient.cs: Add a helper property to get the container form.
5822         * MdiWindowManager.cs: We have to make sure to use the menu origin
5823         when drawing the icons and buttons, this fixes maximized window
5824         icons/buttons on win32.
5825         * InternalWindowManager.cs: Reset the restore captions when a
5826         window goes from Maximized to Minimized and vice versa. Move the
5827         DrawMaximizedButtons into the MdiWindowManager source, tool
5828         windows can't be maximized. NOTE: This could use a little
5829         refactoring if time ever permits.
5830         
5831 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
5832
5833         * TextBox.cs: Add MWFCategoryAttributes
5834         * TextBoxBase.cs: Add MWFCategoryAttributes
5835         * Form.cs: Add MWFCategoryAttributes
5836
5837 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
5838
5839         * Control.cs: Add MWFCategoryAttributes
5840         * ScrollableControl.cs: Add MWFCategoryAttributes
5841
5842 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
5843
5844         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
5845           Divider is true. Fix a little glitch in PropertyToolBar
5846           drawing code
5847
5848 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
5849
5850         * Control.cs:
5851           - Dispose: Call base.Dispose, this causes the disposed event
5852             to be fired (and probably other, more important stuff)
5853           - SetVisibleCore: Set is_visible to true after creating the
5854             window so that the window still gets created invisible (if
5855             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
5856             to generate a WM_ACTIVE message
5857         * Form.cs: Call Dispose when we want to destroy the window, instead of
5858           just destroying the handle (Dispose will do that for us)
5859         * XplatUIX11.cs:
5860           - RootWindow also needs a queue, so we can properly process the
5861             property change events from RootWindow (like Activate)
5862           - Generatic synthetic WM_ACTIVE message when the active window is
5863             being destroyed
5864
5865 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
5866
5867         * LinkLabel.cs: Trigger a recalc of our label dimensions when
5868           bounds are changed
5869
5870 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
5871
5872         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
5873           for determining width and height (image might not be assigned if
5874           we're drawing an imagelist)
5875
5876 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
5877
5878         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
5879         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
5880           height from system
5881         * Theme.cs: No longer returns hardcoded menu height, instead calls
5882           new driver method
5883         * Form.cs (OnLoad): Scaling happens before triggering Load events 
5884           on MS (# 78257)
5885
5886 2006-05-01  Mike Kestner  <mkestner@novell.com>
5887
5888         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
5889
5890 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
5891
5892         * TextBoxBase.cs: Removed Fixme
5893         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
5894
5895 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
5896
5897         * XplatUIX11.cs:
5898           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
5899             the rectangle relative to the parent, considering borders. We
5900             don't really want that.
5901           - ScrollWindow: Fixed warning to be more understandable
5902         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
5903           scrollbars and scroll only the visible area
5904         * RichTextBox.cs: Removed debug output
5905
5906 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
5907
5908         * NumericUpDown.cs (Text): Just use base
5909         * UpDownBase.cs: Ensure txtView is created before using it
5910
5911 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
5912
5913         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
5914           casting to IntPtr to avoid 64bit overflow errors
5915
5916 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
5917
5918         * Control.cs:
5919           - AllowDrop: Don't force handle creation.
5920           - CreateHandle: Added call to tell driver if we're allowed to drop
5921
5922 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
5923
5924         * FileDialog.cs: Remember the last directory not only for the
5925           current instance but also for new FileDialog instances.
5926
5927 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
5928         
5929         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
5930           broke sending async messages
5931
5932 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
5933
5934         * XplatUIX11.cs:
5935           - ScrollWindow: Fixed method. We finally generate expose events again
5936             for scrolled areas. This was causing 'garbage' when scrolling
5937             textbox and other controls that used ScrollWindow
5938           - Switched from using the regular queue for paint events to the MS 
5939             model of 'generating' paint events when the queue is empty.
5940             We use the new XQueueEvent.Paint subclass to store which windows
5941             need painting.
5942           - AddExpose now takes the x/y/width/height of the exposed area
5943             and inserts the window into the paint queue if not already there
5944           - InvalidateWholeWindow: Switched to use new AddExpose method
5945           - UpdateMessageQueue: Added which queue to monitor for paint events
5946           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
5947             the unlikely case nothing above handles it. We reset the expose
5948             pending states to get them off the queue.
5949           - GetMessage: Now pulls a paint event if no other events are in the
5950             queue
5951           - Invalidate: Switched to new AddExpose method
5952           - PeekMessage: Updated to understand pending paint events
5953           - UpdateWindow: Fixed logic bug. We were only updating if the window
5954             didn't need updating. Also switched to sending WM_PAINT directly,
5955             like MS does.
5956         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
5957           and random access Remove(). The random access is needed to handle
5958           UpdateWindow() where a WM_PAINT is sent directly without accessing
5959           the queue.
5960         * ScrollBar.cs: Added Update() calls to cause immediate updates to
5961           allow for better feedback when scrolling. Scrollbars are small and
5962           the immediate update should make it 'feel' more responsive without
5963           slowing things down. ScrollBar still needs it's invaliate logic
5964           updated to not always invalidate the whole bar on certain changes.
5965
5966 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5967
5968         * Control.cs:
5969         (BackColor): if the control does not support a transparent background,
5970         return the default backcolor when the parent backcolor is transparent.
5971
5972 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
5973
5974         * Application.cs: Updated to new StartLoop/GetMessage API
5975         * RichTextBox.cs: Provide some output on RTF parsing errors
5976         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
5977           new queue_id argument to GetMessage and PeekMessage to allow faster
5978           handling of per-thread queues in drivers.
5979         * Hwnd.cs: Added Queue tracking and property
5980         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
5981         * XEventQueue.cs: Added thread trackingA
5982         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
5983         * XplatUIX11.cs:
5984           - Implemented new per-thread queue
5985           - GetMessage: Fixed return/break behaviour on several cases. We were
5986             returning stale messages in some cases, instead of just processing
5987             the next message
5988
5989 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
5990
5991         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
5992
5993 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
5994
5995         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
5996           fixed off-by-one comparisons between Width/Height and Right/Bottom.
5997
5998 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
5999
6000         * PropertyGridView.cs: Fix drop down width.
6001
6002 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
6003
6004         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
6005           a mess in DrawToolBar, so I removed one of them.
6006
6007 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
6008
6009         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
6010           needed (clip). Otherwise we get artifacts.
6011
6012 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
6013
6014         * FixedSizeTextBox.cs: Added constructor to allow specifying which
6015           dimension is fixed
6016         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
6017           and switched FixedSizeTextBox to only be fixed vertical (#78116)
6018         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
6019           if it matches the scale base font (avoids unneeded scaling)
6020
6021 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
6022
6023         * X11DesktopColors.cs: One gtk_init_check should be enough
6024
6025 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
6026
6027         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
6028           match MS behaviour
6029
6030 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
6031
6032         * TextBoxBase.cs: 
6033           - Generate OnTextChanged for Backspace even if we're only deleting
6034             the current selection
6035           - When setting the Text property, only select all text if the
6036             control does not have focus when it is being set. Otherwise
6037             just place the cursor at the beginning of the control
6038
6039 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
6040
6041         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
6042           Added a little helper to draw PropertyGrid ToolBar with a different
6043           border and a different BackColor.
6044         * PropertyGrid.cs: Some background parts didn't get painted with the
6045           correct background color. Added a class that helps us to draw the
6046           correct border for PropertyGridView and a class that helps us to
6047           draw ToolBars with a different backcolor
6048         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
6049
6050 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
6051
6052         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
6053         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
6054
6055 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
6056
6057         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
6058           into the palette entries. Also, since we're working on a copy
6059           we needed to copy the palette back onto the bitmap.
6060         * Cursor.cs: Same fix as XplatUIWin32.cs.
6061
6062 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
6063
6064         * ImageListStreamer.cs: Need to read the var (or we're off)
6065
6066 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
6067
6068         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
6069           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
6070           TextBoxBase.cs: Unused var fixes
6071         * AxHost.cs: Small 2.0 fix
6072         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
6073           as it seems that is what at least Metacity expects. This will make
6074           icons show up on 64bit platforms. We still have some 64bit size
6075           issues, though, since the startup app window size still won't match.
6076
6077 2006-04-25  Mike Kestner  <mkestner@novell.com>
6078
6079         * *.cs: cleanup newly reported exception var unused warnings.
6080
6081 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6082
6083         * ThemeWin32Classic.cs: Button image alignment now matches exactly
6084           ms
6085
6086 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6087
6088         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
6089           image. The image position is always the same, no matter if the
6090           button is pressed or not.
6091
6092 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
6093
6094         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
6095           selection and set the correct filename for SaveFileDialog.
6096           Patch by Emery Conrad.
6097
6098 2006-04-24  Mike Kestner  <mkestner@novell.com>
6099
6100         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
6101         check for item.X outside the ClientRect instead of item.Y. Fixes
6102         #78151.
6103
6104 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6105
6106         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
6107         trust that value blindly and do some sanity check. Fixes bug #77814.
6108
6109 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6110
6111         * ImageListStreamer.cs: save the mask as a 1bpp image.
6112
6113 2006-04-21  Mike Kestner  <mkestner@novell.com>
6114
6115         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
6116         pass Checked and Indeterminate to the Theme Engine. Improve
6117         encapsulation with ListBox.
6118         * ListBox.cs: Keep a StringFormat instead of calculating it every item
6119         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
6120         nested types.  Move all CheckState functionality to CheckedListBox.
6121         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
6122         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
6123         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
6124         single base list. Fix scrollbar sizing and placement to mirror MS.
6125         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
6126         used.
6127         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
6128         for CheckedListBox by using new DrawItemState info.  Center the
6129         checkboxes on the items. Use new StringFormat property.
6130
6131 2006-04-18  Jackson Harper  <jackson@ximian.com>
6132
6133         * Form.cs: MdiChildren don't do default locations the same way as
6134         regular forms.  This prevents a crash when trying to position the
6135         mdi windows.
6136
6137 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
6138
6139         * PropertyGridTextBox.cs: Formatting, copyright
6140         * PropertiesTab.cs: Formatting
6141         * PropertyGrid.cs: Formatting
6142         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
6143           click toggling of values
6144           
6145 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
6146
6147         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
6148         * Control.cs (.ctor): verify_thread_handle is static, don't reset
6149           every time a control is created
6150         * Application.cs: Removed obsolete EnableRTLMirroring method
6151
6152 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
6153
6154         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
6155         SelectedIndex to -1. Fixes bug #78121.
6156
6157 2006-04-17  Jackson Harper  <jackson@ximian.com>
6158
6159         * Binding.cs: Handle null values for Current and BindingContext.
6160         This occurs when binding is a little delayed.
6161         * CurrencyManager.cs: return null for Current when there are no
6162         items in the list.
6163         - Hookup to the listchanged event on the DataView and update
6164         bindings when the list is changed.  This fixes late binding of
6165         controls.
6166
6167 2006-04-17  Jackson Harper  <jackson@ximian.com>
6168
6169         * X11Dnd.cs:
6170         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
6171         Ringenbach.
6172
6173 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
6174
6175         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
6176           place
6177         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
6178           with the correct ButtonState
6179
6180 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
6181
6182         * XplatUIX11.cs: Improved distinguishing between window types to
6183           tell the WM a type closer to what the app wants (Fixes #78107)
6184
6185 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
6186
6187         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
6188           GrabHandle
6189
6190 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
6191
6192         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
6193           drawing code to reflect the size grip changes
6194
6195 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6196
6197         * ImageListStreamer.cs: fix handling of the mask that follows the main
6198         bitmap when deserializing and serialize it properly. The generated mask
6199         should better be a 1bpp image, but I'll do that later.
6200
6201 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
6202
6203         * FileDialog.cs: Show something in the DirComboBox on *nix if the
6204           path doesn't fit into some of our Current.Places
6205
6206 2006-04-13  Jackson Harper  <jackson@ximian.com>
6207
6208         * ComboBox.cs: Use borders instead of drawing our own decorations,
6209         try to obey correct rules for heights.
6210         * Theme.cs:
6211         * ThemeNice.cs:
6212         * ThemeClearLooks.cs:
6213         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
6214         this is now handled by borders.
6215         - Remove unused DrawListBoxDecorationSize method.
6216         
6217 2006-04-13  Mike Kestner  <mkestner@novell.com>
6218
6219         * MenuAPI.cs: null guarding for the disbled click check fixes crash
6220         reported by Alex.
6221
6222 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
6223
6224         * ThemeWin32Classic.cs: 
6225           - Fixed CPDrawStringDisabled
6226           - Corrected drawing of disabled menu items
6227           - Fixed drawing of disabled radio buttons (bug #78095)
6228           - Draw check in a disabled CheckBox with color ControlDark 
6229
6230 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6231
6232         * Form.cs: Use the provided width when calculating the menu size;
6233           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
6234           and ClientSize.Width won't be updated yet
6235         * Application.cs: Use Visible instead of Show() to make form visible,
6236           this way we create the handle later and menusize is considered
6237
6238 2006-04-12  Mike Kestner  <mkestner@novell.com>
6239
6240         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
6241         reporting.
6242
6243 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6244
6245         * TextBox.cs: Implemented context menu
6246
6247 2006-04-12  Mike Kestner  <mkestner@novell.com>
6248
6249         * ListView.cs: implement box selection. fixes #77838.
6250         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
6251
6252 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
6253
6254         * XplatUIX11.cs: Added setting of window type when transient window
6255           is created (metacity would move it otherwise)
6256         * X11Structs.cs: Added WINDOW_TYPE atoms
6257         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
6258           background (the control is Opaque but still wants transparent
6259           backgrounds)
6260
6261 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6262
6263         * Control.cs: Added OnPaintBackgroundInternal to allow controls
6264           that set Opaque but don't mean it (like all ButtonBase-derived
6265           controls) to still draw their background
6266         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
6267           the background
6268
6269 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
6270
6271         * Control.cs (PaintControlBackground): Set the graphics object
6272           on our PaintEvent to null to prevent it from being disposed
6273           when the PaintEvent gets disposed
6274
6275 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
6276
6277         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
6278         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
6279
6280 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
6281
6282         * Control.cs: 
6283           - Added transparency check to BackColor property. Transparent
6284             backgrounds are only allowed if the control styles permit it
6285           - Added recursive painting of parent control background and
6286             foreground if a control with a transparent backcolor is drawn
6287             (Thanks to Tim Ringenback for providing his 'hack' as a base
6288              for this patch) Fixes #77985 and #78026.
6289           - Added Opaque style check before calling OnPaintBackground, no
6290             need to draw the background if the control is opaque
6291           - Removed ControlAccessibleObject owner variable (inherited from
6292             base, no need to define again)
6293           - Added some documentation links explaining the drawing events
6294             and styles
6295
6296 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
6297
6298         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
6299           that the affected control is the located at the left border of our
6300           parent (Fixes #77936)
6301
6302 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
6303
6304         * TextBoxBase.cs: When rendering disabled or readonly controls,
6305           draw the background with 'Control' instead of 'Window' color as
6306           long as the user hasn't specifically set a color
6307
6308 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
6309
6310         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
6311           since that won't be updated if the user types text (only if it's
6312           programatically set)
6313
6314 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
6315
6316         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
6317           layout changes do to app-triggered resizes will have the proper
6318           display rectangle for layout
6319
6320 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
6321
6322         * ThemeWin32Classic.cs:
6323           - Make use of the SystemBrushes and SystemPens wherever possible
6324           - Corrected some highlight colors
6325           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
6326             drawing
6327         * Theme.cs: Added Empty field to CPColor struct
6328
6329 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
6330
6331         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
6332           is displayed when calculating the display rectangle. Thanks to Mike
6333           for teaching me the err of my ways.
6334
6335 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
6336
6337         * ScrollableControl.cs:
6338           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
6339             (instead of 0,0) and we now return the real width/height instead of
6340             just the clientrectangle, adjusted for padding. The rectangle is
6341             now cached and created by the new CalculateDisplayRectangle method.
6342           - Created new CalculateDisplayRectange method, which basically does
6343             what get_DisplayRectangle() did originally, but now using the 
6344             right edge instead of DisplayRectangle to determine the size of
6345             our scrollbars
6346           - get_Canvas(): Fixed it to properly calculate canvas for 
6347             right/bottom controls which seem to be placed to the right/bottom
6348             of any controls that have a fixed location
6349           - Removed TODO that's taken care of
6350           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
6351             and SetDisplayRectLocation according to new MSDN2 docs
6352           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
6353             event when that is called, this is added for compatibility
6354           - ScrollControlIntoView(): Implemented.
6355           - Switched scrollbars to be implicit, they shouldn't be selectable
6356         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
6357           call it when the active control is set/changed
6358         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
6359         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
6360           implicit_control variable (used for native Win32 message generation)
6361         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
6362           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
6363         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
6364         * XplatUIStructs.cs: Added ScrollBarCommands enum
6365
6366 2006-04-10  Jackson Harper  <jackson@ximian.com>
6367
6368         * ButtonBase.cs:
6369         * CheckedListBox.cs:
6370         * ComboBox.cs:
6371         * DataGrid.cs:
6372         * DataGridView.cs:
6373         * Form.cs:
6374         * GroupBox.cs:
6375         * ListBox.cs:
6376         * PrintPreviewControl.cs:
6377         * ProgressBar.cs:
6378         * PropertyGrid.cs:
6379         * Splitter.cs:
6380         * StatusBar.cs:
6381         * TrackBar.cs:
6382         * UpDownBase.cs: Fixup base event overrides.
6383         
6384 2006-04-06  Mike Kestner  <mkestner@novell.com>
6385
6386         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
6387         all user-initiated value changes to min <= value <= max-thumbsz+1.
6388         (set_Value): check for vert/horiz when calculating new thumb position.
6389         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
6390         like MS does.
6391         (OnMouseMoveSB): refactor the thumb dragging code and refine
6392         invalidation logic to reduce flicker.
6393         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
6394         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
6395         (UpdateThumbPosition): small code readability cleanup
6396
6397 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
6398
6399         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
6400           different
6401
6402 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
6403
6404         * ThemeNice.cs: Use a better graphics effect when a button is pressed
6405
6406 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
6407
6408         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
6409         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
6410           This dramatically reduces the number of Pen.Dispose calls. 
6411           Where possible call ResPool methods only once instead of calling it
6412           over and over again (for example for the same color).
6413
6414 2006-04-06  Mike Kestner  <mkestner@novell.com>
6415
6416         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
6417         Also remove an unused private field on the collection. Fixes #77972.
6418
6419 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
6420
6421         * ThemeNice.cs: Added ToolBar drawing code
6422
6423 2006-04-06  Mike Kestner  <mkestner@novell.com>
6424
6425         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
6426         I'm assuming that means we need to look up the toplevel for the
6427         provided control. Fixes the crash trace in #77911 but exposes another
6428         crash in some strange reflection usage in NDocGui.
6429
6430 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
6431
6432         * ThemeNice.cs: Gave it a little silver touch and added Images
6433           method
6434         * FontDialog.cs: FontDialog is not resizable
6435         * FileDialg.cs: Added SizeGripStyle.Show
6436
6437 2006-04-05  Jackson Harper  <jackson@ximian.com>
6438
6439         * KeyboardLayouts.cs: Remove warning.
6440
6441 2006-04-05  Jackson Harper  <jackson@ximian.com>
6442
6443         * Control.cs: Enable OnPaintInternal so we can use it for drawing
6444         all of our controls instead of Paint +=.
6445         * ListBox.cs:
6446         * ListView.cs:
6447         * MenuAPI.cs:
6448         * MessageBox.cs:
6449         * NotifyIcon.cs:
6450         * ProgressBar.cs:
6451         * ScrollBar.cs:
6452         * Splitter.cs:
6453         * StatusBar.cs:
6454         * TabControl.cs:
6455         * TextBoxBase.cs:
6456         * ToolBar.cs:
6457         * TrackBar.cs:
6458         * UpDownBase.cs:
6459         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
6460         use OnPaintInternal. Remove Width/Height and Visible checks in
6461         paint handler, this is done at a higher level now.
6462         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
6463         * PaintEventArgs.cs: Add a handled flag so controls that don't
6464         want anymore painting after OnPaintInternal can make sure OnPaint
6465         isn't called.
6466
6467 2006-04-05  Mike Kestner  <mkestner@novell.com>
6468
6469         * Form.cs: fix the menu WndProc hacks to respect the native enabled
6470         state of the form, so that we don't process events when Modal dialogs
6471         are up. Fixes #77922.
6472
6473 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
6474
6475         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
6476           checking is done.
6477
6478 2006-04-05  Mike Kestner  <mkestner@novell.com>
6479
6480         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
6481
6482 2006-04-05  Mike Kestner  <mkestner@novell.com>
6483
6484         * ListView.cs (HeaderMouseMove): null guarding for the over column
6485         when setting up the drag_to_index.  Fixes #78015.
6486
6487 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
6488
6489         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
6490           in the taskbar. Transient windows seem to accomplish that.
6491
6492 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
6493
6494         * Form.cs:
6495           - Re-enabled CreateParams.X/Y code for FormStartPosition
6496           - Added code for manual placement when creating the Control
6497           - Incomplete patch to treat MDI forms differently when
6498             setting the ClientSizeCore. (Still need to figure out handling
6499             x/y coords there)
6500         * XplatUIX11.cs:
6501           - When we're explicitly setting the X/Y position of a non-Child
6502             window, let the WM know. Metacity really wants this.
6503
6504 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
6505
6506         * ThemeNice.cs: Added CPDrawButton
6507
6508 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
6509
6510         * ThemeNice.cs: Changed the color for focused buttons and activated
6511           the arrows for small scroll buttons.
6512
6513 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
6514
6515         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
6516           anymore. Changed some method modifiers to protected (virtual)
6517         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
6518           changes
6519         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
6520           Updated drawing of menus, buttons and progressbars; added
6521           CPDrawBorder3D 
6522
6523 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6524
6525         * ImageListStreamer.cs: implemented serialization/deserialization
6526         of the images.
6527
6528 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
6529
6530         * ThemeWin32Classic.cs:
6531           - Removed all the DrawFrameControl stuff; CPDrawButton,
6532             CPDrawCheckBox and CPDrawRadioButton are now handled directly
6533             inside the methods
6534           - Updated and corrected the drawing code of CPDrawButton,
6535             CPDrawCheckBox and CPDrawRadioButton to better match ms
6536           - Updated theme checkbox and radiobutton code to use the CP*
6537             methods
6538
6539 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
6540
6541         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
6542           bug is fixed
6543
6544 2006-03-31  Jackson Harper  <jackson@ximian.com>
6545
6546         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
6547         sometimes.
6548         * UpDownBase.cs: Don't CreateGraphics manually, use a
6549         Refresh. Ideally we would invalidate the correct areas here.
6550
6551 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
6552
6553         * XplatUIX11.cs: 
6554           - We now track the mapping state of windows. If a window (or 
6555             one of it's parents) is not mapped we no longer permit
6556             WM_PAINT messages to be generated since we'd otherwise get 
6557             lots of BadMatch X errors. Jackson did all the work figuring
6558             out the problem.
6559           - Destroying the caret if the window it's contained in is 
6560             destroyed. Can't use regular DestroyCaret method since it
6561             might fall into a drawing function (trying to remove the
6562             caret) and with that generate new BadMatch errors. Again,
6563             Jackson tracked this down.
6564           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
6565             make sure we send the messages to all windows. (The old code
6566             would send the WM_DESTROY to the window, and then all child
6567             windows would be 'gone' because the WM_DESTROY handle lookup
6568             would no longer find the destroyed window)
6569         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
6570         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
6571
6572 2006-03-31  Jackson Harper  <jackson@ximian.com>
6573
6574         * ScrollableControl.cs: Dont recalc if we are not visible.
6575
6576 2006-03-31  Mike Kestner  <mkestner@novell.com>
6577
6578         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
6579         the visibility branch.
6580
6581 2006-03-31  Jackson Harper  <jackson@ximian.com>
6582
6583         * ScrollBar.cs: Cap values when incrementing/decrementing.
6584
6585 2006-03-31  Mike Kestner  <mkestner@novell.com>
6586
6587         * MenuAPI.cs: setup menu.tracker for popup/context menus.
6588         * ToolTip.cs: guard against timer expirations with no active control.
6589         Not sure why it happened.
6590
6591 2006-03-31  Mike Kestner  <mkestner@novell.com>
6592
6593         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
6594         text.
6595         * ToolTip.cs: Position the tooltip based on where the cursor is at
6596         popup time, not at MouseEnter time.  Add a Down state so that we don't
6597         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
6598         positioning offset. Lookup DisplaySize at positioning time, since it
6599         can theoretically change during invocation.
6600         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
6601         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
6602
6603 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
6604
6605         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
6606           Fixes behaviour when the Text property of the box is String.Empty
6607
6608 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
6609
6610         * XplatUIX11.cs: Only send mouseleave for our client windows, not
6611           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
6612           a window)
6613
6614 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
6615
6616         * FileDialog.cs: Visual enhancement for the popup buttons in 
6617           PopupButtonPanel
6618
6619 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
6620
6621         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
6622           code
6623
6624 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
6625
6626         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
6627           highlighted menu items to match ms
6628
6629 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
6630
6631         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
6632
6633 2006-03-30  Mike Kestner  <mkestner@novell.com>
6634
6635         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
6636         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
6637         go active to account for HotLight to Selected transition.
6638         * MenuItem.cs: add internal Selected prop. Fill out the Status
6639         property by calculating it from item info. Add HotLight,
6640         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
6641
6642 2006-03-30  Mike Kestner  <mkestner@novell.com>
6643
6644         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
6645
6646 2006-03-29  Jackson Harper  <jackson@ximian.com>
6647
6648         * Form.cs: Implement TODO.
6649
6650 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
6651
6652         * PrintPreviewDialog.cs: Implemented missing methods and events; still
6653           missing proper dialog setup in the constructor
6654
6655 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
6656
6657         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
6658         * Control.cs:
6659           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
6660           - Fixed ResetBindings and removed TODO
6661           - Added check for cross-thread calls to get_Handle()
6662           - Added Marshaller attribute for set_Font to satisfy class status
6663         * FontDialog.cs: Removed TODOs that seemed implemented
6664         * UpDownBase.cs: Removed unneeded TODO and Fixme
6665         * MessageBox.cs: Implemented support for Default button and removed TODO
6666         * FileDialog.cs: Removed obsolete TODO
6667         * DomainUpDown.cs: Removed obsolete TODO
6668         * ButtonBase.cs: Removed obsolete TODO
6669         * XplatUIWin32.cs: Removed obsolete TODO
6670         * Form.cs:
6671           - Removed obsolete TODO
6672           - Calling CheckAcceptButton when the acceptbutton is changed to allow
6673             internal status updates
6674           - Making sure the active control is selected when the control is created
6675         * CurrencyManager.cs: Removed obsolete TODO
6676
6677 2006-03-29  Mike Kestner  <mkestner@novell.com>
6678
6679         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
6680         of PrintPreviewDialog and RichTextBox.
6681
6682 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
6683
6684         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
6685           DarkDark, Light and LightLight colors for a specific color
6686         * ThemeWin32Classic.cs:
6687           - Use Button drawing code to draw RadioButtons and CheckBoxes with
6688             Appearance = Button 
6689           - Make use of the new ResPool helper CPColor
6690           - Draw ProgressBar and StatusBar with correct 3D borders
6691
6692 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
6693
6694         * ColorDialog.cs: Return selected color. Fixes bug #77940.
6695
6696 2006-03-28  Mike Kestner  <mkestner@novell.com>
6697
6698         * ListView.cs: fix Icon layout to plan for scrollbar widths when
6699         calculating col/row counts.
6700
6701 2006-03-28  Mike Kestner  <mkestner@novell.com>
6702
6703         * ColumnHeader.cs:
6704         * ListView.cs:
6705         * ListViewItem.cs:
6706         * Menu.cs: 
6707         switch to explicit interface method implementation for some methods
6708         corcompare identifies as inconsistent with MS.
6709
6710 2006-03-28  Mike Kestner  <mkestner@novell.com>
6711
6712         * MainMenu.cs: 
6713         * Menu.cs:
6714         add a few missing methods from the class status output.
6715
6716 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
6717
6718         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
6719           correct.
6720
6721 2006-03-28  Mike Kestner  <mkestner@novell.com>
6722
6723         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
6724
6725 2006-03-27  Mike Kestner  <mkestner@novell.com>
6726
6727         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
6728         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
6729
6730 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
6731
6732         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
6733
6734 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6735
6736         * ThemeWin32Classic.cs:
6737           - GroupBox: Inserted a little gap between the text and the lines
6738             on the right side
6739           - Made the code in CPDrawBorder3D more readable
6740           - Corrected the drawing location of the up and down arrows in 
6741             CPDrawScrollButton
6742
6743 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6744
6745         * ControlPaint.cs: Corrected line widths in DrawBorder for
6746           ButtonBorderStyle Inset and Outset
6747
6748 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6749
6750         * ThemeWin32Classic.cs:
6751           - Rewrote the totally broken CPDrawBorder3D method. That was
6752             one of the main problems for the terrific ThemeWin32Classic
6753             look
6754           - Updated and corrected Button drawing
6755           - Correct the dimensions of the SizeGrip to match ms ones
6756           - Removed a small drawing glitch in DrawComboBoxEditDecorations
6757         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
6758           Border3DStyle.Sunken to match ms.
6759
6760 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
6761
6762         * ThemeWin32Classic.cs: First small part of the "de-uglify
6763           ThemeWin32Classic" effort, SizeGrip
6764
6765 2006-03-24  Jackson Harper  <jackson@ximian.com>
6766
6767         * XplatUIX11.cs: Give a max idle time of one second, this matches
6768         MS and forces an Idle event every second when there are no other
6769         events in the queue.
6770
6771 2006-03-24  Mike Kestner  <mkestner@novell.com>
6772
6773         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
6774         * ListView.Item.cs: fix layout issues with null image lists and images
6775         smaller than checkbox size.
6776         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
6777         mode like MS does.  It's weird, but consistent.  ;-)
6778         Fixes #77890.
6779
6780 2006-03-24  Mike Kestner  <mkestner@novell.com>
6781
6782         * ListView.cs: Scroll wheel support for the item control.  Fixes
6783         #77839.
6784
6785 2006-03-23  Jackson Harper  <jackson@ximian.com>
6786
6787         * ScrollableControl.cs: Special case negative sized areas, not
6788         zero.
6789         * MonthCalendar.cs: Save the rect of the clicked date so we can
6790         use it for invalidation.
6791         - Try to cut down on the number of invalidates
6792         - Invalidate the rect the mouse is over and was over when moving
6793         the mouse, so we get the focus box following the cursor.
6794
6795 2006-03-23  Mike Kestner  <mkestner@novell.com>
6796
6797         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
6798         focus rectangle drawing. Fixes #77835.
6799
6800 2006-03-23  Mike Kestner  <mkestner@novell.com>
6801
6802         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
6803         the if and else if and reverting back to the original == check on the
6804         None conditional.
6805
6806 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
6807
6808         * FontDialog.cs: Update the example panel if the selected index of
6809           the fontListBox changes.
6810
6811 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
6812
6813         * FileDialog.cs: Make FileDialog remember which directory it was in
6814           last in the same execution.
6815
6816 2006-03-22  Mike Kestner  <mkestner@novell.com>
6817
6818         * FileDialog.cs: make the DropDownMenu on the toolbar display
6819         RadioChecks since they are mutually exclusive and that's what MS does.
6820
6821 2006-03-22  Mike Kestner  <mkestner@novell.com>
6822
6823         * Theme.cs: add Color param to CPDrawMenuGlyph.
6824         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
6825         checks and radio marks and arrows are visible on highlighted items.
6826         * ControlPaint.cs: update to use new Theme signature.
6827
6828 2006-03-22  Mike Kestner  <mkestner@novell.com>
6829
6830         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
6831         is active. Fixes #77870.
6832
6833 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
6834
6835         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
6836           to be focused/selected after startup
6837
6838 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
6839
6840         * ColorDialog.cs: 
6841           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
6842             CustomColors and ShowHelp properties
6843           - Some internal rewrites to get better results when using the
6844             ColorMatrix
6845
6846 2006-03-22  Mike Kestner  <mkestner@novell.com>
6847
6848         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
6849         HoverSelection.  Fixes #77836.
6850
6851 2006-03-22  Mike Kestner  <mkestner@novell.com>
6852
6853         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
6854         ToggleButtons.  (De)Sensitize the Back button around a stack count of
6855         1, not 0.  Update ButtonSize based on a pixel count of the win32
6856         control.  Adjust the toolbar size/location for new button size.
6857
6858 2006-03-22  Jackson Harper  <jackson@ximian.com>
6859
6860         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
6861         true.
6862         * ScrollBar.cs: When doing increments and decrements we need to
6863         set the Value property so that ValueChanged gets raised. A
6864         possible optimization here would be to make an internal SetValue
6865         that doesn't invalidate immediately.
6866         * ToolTip.cs: Tooltips get added to their container (when
6867         supplied) so they get disposed when the container is disposed.
6868         - Don't create tooltips for String.Empty. This prevents all these
6869         little 2-3 pixel windows from showing up when running nunit-gui
6870         and driving me mad.
6871         * Form.cs: Don't set topmost when setting the owner if the handles
6872         haven't been created yet.  The topmost set will happen when the
6873         handles are created.
6874
6875 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
6876
6877         * XplatUIX11.cs:
6878           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
6879           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
6880             visible (to allow them to recalculate their sizes)
6881
6882 2006-03-21  Mike Kestner  <mkestner@novell.com>
6883
6884         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
6885         methods. Removed a ton of redundant code.  Still not really happy with
6886         the border rendering, but I think that's mainly because of the
6887         ControlDarkDark being black instead of a dark grey. Depending on how 
6888         close we want to be, we might want to revisit those color choices.
6889         Among the new features added during the refactor were DropDownArrow
6890         pressed rendering, Disabled image rendering.  Proper flat appearance
6891         boundary rendering.  Removed the Divider and Wrapping dividers since I
6892         can't figure out any combination of themes and conditions to make the
6893         MS control draw a horizontal line on a toolbar despite what the
6894         Divider property docs indicate.
6895         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
6896         conditions and incorrect layout.  Updated to coding standard.
6897         * ToolBarButton.cs: refactored layout and positioning code from
6898         ToolBar to here.  Invalidate wherever possible instead of forcing
6899         redraws of the whole toolbar. 
6900         (Known remaining issues: explicit ButtonSize smaller than provided
6901         images.)
6902
6903 2006-03-21  Mike Kestner  <mkestner@novell.com>
6904
6905         * ContextMenu.cs (Show): use the position parameter instead of just
6906         showing at the MousePosition.
6907
6908 2006-03-21  Jackson Harper  <jackson@ximian.com>
6909
6910         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
6911         control handle this.
6912         * TreeNodeCollection.cs: If we are clearing the root node we need
6913         to reset top_node so calcs can still happen.
6914         * ThemeWin32Classic.cs: This is a Flags so we need to check
6915         properly.
6916         
6917 2006-03-21  Jackson Harper  <jackson@ximian.com>
6918
6919         * DataGrid.cs: Create columns when the binding context has been
6920         changed.
6921         * X11Structs.cs: Keysyms are uints.
6922         - Add size to fix build.
6923
6924 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
6925
6926         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
6927           XplatUIOSX.cs: 
6928           - Added ResetMouseHover method to allow controls to retrigger
6929             hovering if they need it more than once
6930           - Implemented MouseHoverTime and MouseHoverSize properties
6931         * Timer.cs: Start() must reset the interval
6932         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
6933           properties
6934
6935 2006-03-21  Jackson Harper  <jackson@ximian.com>
6936
6937         * X11Keyboard.cs: improved layout detection. Move the nonchar
6938         tables into this file.
6939         * KeyboardLayouts.cs: Move the tables into resource files.
6940
6941 2006-03-21  Mike Kestner  <mkestner@novell.com>
6942
6943         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
6944
6945 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
6946
6947         * Mime.cs: Various speed optimizations. Looking up mime types
6948           is now 2 times faster than before
6949
6950 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
6951
6952         * CreateParams.cs: Added internal menu field
6953         * Control.cs: 
6954           - Switched call order for UpdateBounds; now we always call
6955             the one that also takes ClientSize, and we're calculating the 
6956             client size via driver method in the others. The previous
6957             method of tracking client size by difference wasn't working
6958             for forms where even the starting client size wouldn't match
6959             the overall form size (due to borders) (Part of fix for #77729)
6960           - CreateParams(): Do not use parent.Handle unless the handle is
6961             already created. Causes havoc with Nexxia and throws off our
6962             creation of controls
6963         * XplatUIX11.cs:
6964           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
6965           - Switched handling of ConfigureNotify over to new PerformNCCalc 
6966             method (consolidates code)
6967           - Changed RequestNCRecalc to use new PerformNCCalc method
6968           - Added calls to RequestNCRecalc when menus and borders are changed
6969             to allow app to set NC size. (Part of fix for #77729) This matches
6970             when MS send a WM_NCRECALC on Win32 windows.
6971           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
6972             (Part of fix for #77729). This matches what MS does, they also
6973             send that message when the form is made visible.
6974           - XException.GetMessage: Improved usability of X errors by including
6975             a translation of the window into Hwnd and Control class
6976           - Improved debug info for window creation, reparenting and destruction
6977           - Created helper method WindowIsMapped() [Currently not used]
6978         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
6979         * Form.cs:
6980           - CreateParams: Now setting our menu on the new internal menu field
6981           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
6982             avoid calculating the same property twice
6983         * Hwnd.cs:
6984           - Improved usability of ToString() for debugging purposes
6985           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
6986             determine the height of the menu, instead of just the font. This
6987             required to also create a graphics context and to keep a bmp 
6988             around (for performance reasons)
6989
6990 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
6991
6992         * MenuAPI.cs: Added OnMouseUp method
6993         * Form.cs:
6994           - Now remembering the requested client size, avoids size errors
6995           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
6996             instead of base if the menu is active. This is required due to
6997             control now capturing and releasing on down/up and it would
6998             prematurely release our menu capture
6999
7000 2006-03-17  Jackson Harper  <jackson@ximian.com>
7001
7002         * KeyboardLayouts.cs: Add the czech layouts.
7003
7004 2006-03-16  Jackson Harper  <jackson@ximian.com>
7005
7006         * Control.cs: Use the viewport space when sizing not the controls
7007         client size, so things like ScrollableControl that effect the
7008         viewport size (when scrollbars are added) are computed correctly.
7009         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
7010         of ManagerEntrys.
7011         - Handle creating BindingManagers for null data sources.
7012         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
7013         source, otherwise when rows are added they are added to the 'fake'
7014         datasource and we will crash when trying to set the position in
7015         those rows.
7016         - Use Implicit scrollbars on the datagrid so they arent
7017         selectable.
7018         
7019 2006-03-16  Jackson Harper  <jackson@ximian.com>
7020
7021         * Binding.cs:
7022         * InternalWindowManager.cs:
7023         * MdiWindowManager.cs:
7024         * X11Keyboard.cs: I really want Mike to love me again (fix
7025         compiler warnings).
7026
7027 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
7028
7029         * DataGrid.cs:
7030           - OnMouseDown: Switch to editing mode when clicking on the cell
7031                          even if we're clicking on the cell that's currently 
7032                          selected
7033           - ProcessGridKey: Left/Right now wrap like MS.Net does
7034           - ProcessGridKey: Tab now knows to add a new row when tab is
7035                             pressed in the cell of the last column of the 
7036                             last row
7037           - ProcessGridKey: Enter now adds another row  if pressed in the last
7038                             row and selectes the new row, same column cell
7039           - ProcessGridKey: Home/End navigate columns, not rows, like 
7040                             originally implemented
7041           - Broke ProcessKeyPreview code out into an extra Internal method
7042             so it can be called from the edit code
7043         * DataGridTextBox.cs (ProcessKeyMessage):
7044           - Switched to accept Tab keypresses
7045           - Added F2 handling to allow jumping to the end of the edited cell
7046           - Added logic to allow moving caret left/right inside edited cell
7047             and making the edited cell jump when the caret hits cell borders
7048           - Tab and Enter are now passed to the datagrid after being handled
7049         * TextBoxBase.cs:
7050           - Removed capture code now that Control handles it
7051           - set_SelectionStart now ensures caret is visible
7052
7053 2006-03-16  Jackson Harper  <jackson@ximian.com>
7054
7055         * TrackBar.cs: Debackwards the increment/decrement for handling
7056         mouse clicks on the bar with vertical trackbars.
7057         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
7058         bottom to match MS.
7059
7060 2006-03-16  Mike Kestner  <mkestner@novell.com>
7061
7062         * ListView.cs: make shift/ctrl keyboard and mouse selection 
7063         consistent with the MS control. Fix a bug in
7064         SelectedListViewItemCollection.Clear that was pissing me off for the
7065         better part of a day because the collection was being altered
7066         underneath us as we walked the list.
7067
7068 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
7069
7070         * Control.cs: Not sure how we could miss this so long, but it seems
7071           that MS.Net has Capture set all the way from before calling 
7072           OnMouseDown through sending the mouse events until after
7073           OnMouseUp. This will fix DataGrid's selection being set to end
7074           at the location of the MouseUp.
7075
7076 2006-03-15  Jackson Harper  <jackson@ximian.com>
7077
7078         * BindingContext.cs: Check the binding after its added so that it
7079           can initialize the binding managers and hookup to events.
7080         * Binding.cs: Data members seem to sometimes include rows/cols in
7081           the format Row.Column we now take this into account.
7082           - Hookup to the position changed event so we can update the
7083           control when the position has changed in the data set.
7084         * CurrencyManager.cs: Take into account the row/col naming
7085           convention when creating dataset tables.
7086         * BindingContext.cs: Using a newer better way of storing
7087           datasource/datamember pairs.  Hopefully this better matches MS for
7088           looking up binding managers.
7089
7090
7091 2006-03-15  Jackson Harper  <jackson@ximian.com>
7092
7093         * BindingContext.cs: The currency manager needs the data member
7094         name, if the member is a data set we use the name to find the
7095         correct table.
7096         * CurrencyManager.cs: When creating the list prefer an IList over
7097         an IListSource.
7098         - Attempt to create a DataTable from a DataSet (TODO: might need
7099         some better error checking here, although MS doesn't seem to have much)
7100         - If we have a DataTable create a view and use it as our list.
7101
7102 2006-03-15  Mike Kestner  <mkestner@novell.com>
7103
7104         * ListView.cs: keep a matrix of the icon mode layout to facilitate
7105         keyboard navigation. Support Up/Down/Left/Right selection correctly
7106         for all 4 View modes.
7107         * ListViewItem.cs: add internal row/col fields for icon layouts.
7108
7109 2006-03-15  Jackson Harper  <jackson@ximian.com>
7110
7111         * TabControl.cs: Redraw the tabs when we resize so their newly
7112         calculated sizes are drawn on screen.
7113         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
7114         composite characters.
7115         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
7116         - filter events so that composite characters can be created
7117         patches by peter
7118         * X11Structs.cs: Add XIMProperties enum.
7119
7120 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
7121
7122         * Control.cs (BringToFront, SendToBack): Don't use window or handle
7123           unless it's created
7124
7125 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
7126
7127         * Control.cs (PerformLayout): We don't need to consider visiblity
7128           for anchoring, only for docking. This fixes 'whacky' alignment
7129           in listbox and other controls that use implicit scrollbars after
7130           the previous PerformLayout patch
7131         * ListBox.cs: Switched to use implicit scrollbars
7132           
7133 2006-03-14  Mike Kestner  <mkestner@novell.com>
7134
7135         * ToolBar.cs: 
7136         * VScrollBar.cs:
7137         - chain up the "new event" overrides to base and use
7138         OnEvent to raise them.  Part of fix for bug #76509.
7139
7140 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
7141
7142         * FileDialog.cs: Do not select an item in the parent directory
7143           on backspace
7144
7145 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
7146
7147         * Control.cs (PerformLayout): It would seem that we considered
7148           invisible windows for our layout. Not quite the right thing
7149           to do. Now we don't any longer, thereby fixing bug #76889.
7150
7151 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
7152
7153         * Control.cs (CanFocus): I goofed. A control can have focus 
7154           even though it's not selectable. Made it match MS docs.
7155
7156 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7157
7158         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
7159           center by default (fixes #76895)
7160         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
7161           all uses of Border3DSides.All with the explicit ORd together
7162           Left|Right|Top|Bottom because I assume that nobody was aware 
7163           that All also implies a center fill. Most places I checked had
7164           a fill right above.
7165         * ProgressBarStyle.cs: Added
7166
7167 2006-03-13  Mike Kestner  <mkestner@novell.com>
7168
7169         * ListView.cs: fix breakage in drag shadow header positioning 
7170         from Peter's csc compilation fix.
7171
7172 2006-03-13  Mike Kestner  <mkestner@novell.com>
7173
7174         * ListView.cs: fix NRE produced by backspacing twice in a focused
7175         FileDialog.
7176
7177 2006-03-13  Mike Kestner  <mkestner@novell.com>
7178
7179         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
7180
7181 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7182
7183         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
7184           be changed
7185         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
7186           the allowed size before making programmatic size changes
7187
7188 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
7189
7190         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
7191           set, metacity is broken and will still use the emty sizes in 
7192           the struct. (Fix for #77089)
7193
7194 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
7195
7196         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
7197           WindowExStyles and marked both enums as Flags
7198         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
7199           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
7200           to match WindowStyles split
7201         * XplatUIX11.cs:
7202           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
7203           - Updated to match WindowStyles split
7204         * XplatUIWin32.cs:
7205           - Fixed FosterParent creation, was using ExStyle on the Style field
7206             (This should help with Popup focus issues)
7207           - Updated to match WindowStyles split
7208
7209 2006-03-13  Jackson Harper  <jackson@ximian.com>
7210
7211         * MdiWindowManager.cs: Use the system menu height. Fixes some
7212         strange sizing issues.
7213
7214 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
7215
7216         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
7217         * TextBoxBase.cs:
7218           - Scroll to caret after inserting text (#77672)
7219           - Make scroll range one pixel higher, fixes off-by-one error (and
7220             makes underlines visible on the last line)
7221
7222 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
7223
7224         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
7225           the keyboard state from being stuck with keys in 'pressed' state when
7226           focus is switched away via keyboard
7227         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
7228           reset the keyboard if no X11 KeyUp events are expected to come
7229         * X11Structs.cs: Switched type of Visible to bool to match driver
7230
7231 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
7232
7233         * TextControl.cs:
7234           - Switched caret to be just 1 pixel wide, matches MS and looks less
7235             clunky
7236           - Moved caret display 1 pixel down from the top of the control
7237             to improve view
7238           - InsertCharAtCharet: Update the selection start if moving the caret
7239             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
7240           - No longer always creating the caret when the caret methods are
7241             called. Only the actual ShowCaret/HideCaret will do that now
7242           - Only setting caret visible if the owner control has focus
7243           - UpdateView: Added invalidation-shortcut logic for center and right 
7244             aligned text. Previously we'd update all according to the left
7245             logic which caused drawing errors. Also fixed height of invalidated
7246             areas, now properly invalidating the whole area (was off-by-one)
7247           - owner_HandleCreated: Always generate the document when the
7248             handle is created; this ensures that 
7249         * TextBoxBase.cs:
7250           - Fixed situation where caret would disappear under the right
7251             window border, also improved scrolling behaviour on left-
7252             aligned textboxes
7253           - Fixed right-aligned textboxes to have a border to the
7254             right instead of the caret being under the right border
7255         * XplatUIX11.cs:
7256           - Switched from 'nested' to simple visible/not visible tracking 
7257             for caret (part of fix for #77671)
7258           - No longer passing through translated FocusIn/FocusOut messages
7259             since we were notifying too often and the wrong windows. Instead
7260             we just notify our focussed window of receiving or loosing focus
7261         * XplatUIWin32.cs: Switched from 'nested' show/hide 
7262           counting for caret to simple visible yes/no behaviour (part of 
7263           fix for #77671)
7264
7265 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
7266
7267         * Mime.cs: Remove debug code...
7268
7269 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
7270
7271         * MimeGenerated.cs: Removed
7272         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
7273           and subclasses) from /usr/(local/)share/mime and
7274           $HOME/.local/share/mime.
7275
7276 2006-03-10  Jackson Harper  <jackson@ximian.com>
7277
7278         * MdiWindowManager.cs: Recalc the NC area when a window is
7279         maximized/restored so that the menu area is drawn on forms that
7280         don't have a menu.
7281
7282 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7283
7284         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
7285           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
7286           us to force a WM_NCCALCRESIZE message being sent. This is needed
7287           for MDI maximizing.
7288
7289 2006-03-10  Jackson Harper  <jackson@ximian.com>
7290
7291         * Form.cs: We need to use the ActiveMenu when calculating menu
7292         height.
7293         - Fix nullref when the window manager hasn't been created yet.
7294         * Control.cs: Fix nullref when we try to bring a control to the
7295         front that has no parent.
7296         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
7297         height.
7298         - Add a dummy item to the maximized menu so it always has the
7299         correct height. Otherwise when there are no menus we don't get our
7300         icon and buttons.
7301         
7302
7303 2006-03-10  Jackson Harper  <jackson@ximian.com>
7304
7305         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
7306         stuff.
7307         * Form.cs: Make the window_state internal so the window managers
7308         can track it.
7309         - When an MDI child is maximized let its window manager create the
7310         main menu (so it can add its icon).
7311         - Notify the window managers of state changes
7312         - Let the window manager paint its buttons and handle button
7313         clicks on the menu when it is maximized.
7314         * InternalWindowManager.cs: Move the prev_bounds into the mdi
7315         window manager, since tool windows don't use it, only mdi windows.
7316         - Tell the main form that we don't want it to handle NCPAINT
7317         itself to avoid extra painting.
7318         - Handle clicks on a maximized windows menu.
7319         - Handle window state changes
7320         - Handle minimize/maximize clicks correctly by setting the window state.
7321         * MdiWindowManager.cs: Add an icon menu that (the menu you get
7322         when clicking on the forms icon).
7323         - New method to create a forms maximized menu. This is its normal
7324         menu + an icon.
7325         - Handle window state changes.
7326         - Handle sizing of maximized windows.  Maximized windows are just
7327         drawn bigger then the parent visible area. All controls are still
7328         there, they are just outside the visible area (this matches windows).
7329         * MdiClient.cs: No scrollbars when a child window is maximized.
7330         - Let the children windows figure out how big they should be when
7331         sizing maximized windows.
7332         - Implement a version of ArrangeIconicWindows somewhat similar to
7333         Windows version.  There are some little differences, but I don't
7334         think any app will rely on the layout of minimized mdi windows.
7335
7336 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7337
7338         * Padding.cs: Several fixes to allow compiling with csc 2.0
7339
7340 2006-03-09  Jackson Harper  <jackson@ximian.com>
7341
7342         * Menu.cs:
7343         * MenuItem.cs: Cheap hack so we can add items to the list without
7344         the events being raised.  This allows adding mdi items during
7345         drawing. TODO: Should probably find a better time to add the items.
7346
7347 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7348
7349         * ThemeWin32Classic.cs:
7350           - CheckBox_DrawText: Added logic to not wrap if not enough space
7351             is available (Fix for bug #77727)
7352           - RadioButton_DrawText: Added logic not to wrap if not enough
7353             space is available (Fix for bug #77727). Also removed some
7354             duplicate code, DrawString always drawing the regular text
7355             before hitting the if statement.
7356
7357 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
7358
7359         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
7360
7361 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
7362
7363         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
7364         * ContainerControl.cs: Partial implementation of some 2.0 scaling
7365           methods. Moved the new 2.0 properties into alphabetical order with
7366           other properties and added MonoTODO tags
7367
7368 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
7369
7370         * AutoScaleMode.cs: Added. Fix build.
7371
7372 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7373
7374         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
7375           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
7376           and was requiring premature handle creation for calls from above
7377         * Form.cs, Control.cs: Removed handle arguments from calls to
7378           CalculateClientRect()
7379
7380 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
7381
7382         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
7383           drag_column.column_rect is MarshalByRef and can't be used that way
7384
7385 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7386
7387         * AxHost.cs: Added deserialization constructor for 
7388           AxHost+State (fixes 77743)
7389
7390 2006-03-09  Mike Kestner  <mkestner@novell.com>
7391
7392         * ListView.cs: 
7393         - Added column drag reordering for details view.
7394         - fixed behavior when mouse is dragged off column and
7395         AllowColumnReorder is false.
7396         * ColumnHeader.cs: clone the format too in Clone.
7397         * Theme.cs: add DrawListViewHeaderDragDetails method.
7398         * ThemeWin32Classic.cs:
7399         - impl new method for drawing drag column shadows and targets.
7400         - support column offset for details mode in DrawListViewItem.
7401
7402 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7403
7404         * TextControl.cs: Reset the char_count when the document is cleared
7405           (Fixes bug reported on mono-winforms mailing list)
7406
7407 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
7408
7409         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
7410           of calling base we simply process the key ourselves, since both
7411           DefWindowProc and the handled method would set m.Result. 
7412           (Fixes #77732)
7413
7414 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
7415
7416         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
7417           method also moves the window; instead implemented a copy of
7418           Control.ScaleCore (Part of fix for #77456)
7419         * TextBoxBase.cs: 
7420           - Created new CreateGraphicsInternal method to allow providing
7421             a graphics context when no handle is created without triggering
7422             handle creation. (Part of fix for #77456)
7423           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
7424         * TextControl.cs: 
7425           - Switched Constructor to require TextBoxBase instead of Control (to
7426             allow uncast access to CreateGraphicsInternal)
7427           - Safeguarded use of owner.Handle property. No longer accessing it
7428             unless the handle is already created.
7429           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
7430           - Now triggering a recalc when owning control becomes visible
7431         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
7432           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
7433           premature handle creation (Part of fix for #77456)
7434         * Control.cs:
7435           - We now only destroy our double-buffering buffers when the
7436             control is resized or disposed, but not when visibility
7437             changes. (The code even re-created them twice every time)
7438           - Now requiring a redraw of the buffer on visibility changes
7439             (fixes bug 77654 part 2)
7440           - Not passing OnParentVisibleChanged up unless the control
7441             is visible
7442           - CanFocus: Fixed to match MS documentation
7443           - Focus: Fixed to return actual focus state and to check if
7444             setting focus is legal before setting it
7445
7446 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
7447
7448         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
7449           when to draw focus rectangle by looking at parent focus and
7450           selected state instead. This fixes TabPages on Linux sometimes
7451           having none or multiple focus rectangles.
7452         * XplatUIX11.cs (SetFocus): 
7453           - Don't set the focus if the same window already has focus
7454           - Use SendMessage instead of PostMessage (like it's Win32
7455             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
7456             to match MS behaviour
7457         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
7458           are not selectable.
7459
7460 2006-03-07  Jackson Harper  <jackson@ximian.com>
7461
7462         * PictureBox.cs: Revert line I accidently committed last week.
7463
7464 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
7465
7466         * Control.cs: 
7467           - Added new IsRecreating and ParentIsRecreating properties to
7468             allow testing if RecreateHandle has been called on ourselves
7469             or one of our parents
7470           - WndProc(WM_DESTROY): If our control handle is being recreated
7471             we immediately need to create the handle when receiving the
7472             destroy, that way our child windows find a valid parent handle
7473             when they themselves are being recreated upon WM_DESTROY receipt
7474             (fix for bug #77654 part 1)
7475         * XplatUIX11.cs:
7476           - DestroyWindow: WM_DESTROY must be sent to our own window before
7477             notifying any child windows. MS documents that child windows
7478             are still valid when WM_DESTROY is received. (Control now relies on
7479             this behaviour)
7480           - Added some fine-grain debug options
7481
7482 2006-03-06  Jackson Harper  <jackson@ximian.com>
7483
7484         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
7485         box and base calculations off this.
7486         * MdiChildContext.cs:
7487         * MdiWindowManager.cs: Don't need to ensure scrollbars here
7488         anymore.
7489         
7490 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
7491
7492         * Splitter.cs: In situations where the affected control is added
7493           to the parent's control list after the splitter, we would not
7494           populate affected. Now we try populating it on mousedown, if
7495           it's not already set, and force it to be re-set whenever our
7496           parent changes.
7497
7498 2006-03-03  Matt Hargett  <matt@use.net>
7499
7500         * Control.cs: implement Control.Padding
7501         * Padding.cs: -Padding.All returns -1 when constructing with the
7502         implicit default ctor
7503         -Padding.ToString() matches MS.NET
7504         * ContainerControl.cs: implement
7505         ContainerControl.AutoScaleDimensions
7506         * ListControl.cs: implement ListControl.FormattingEnabled
7507         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
7508         * ButtonBase.cs:
7509         * TabPage.cs: Implement UseVisualStyleBackColor.
7510         * PictureBox.cs: Implement PictureBox.InitialImage.
7511
7512 2006-03-03  Mike Kestner  <mkestner@novell.com>
7513
7514         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
7515         event declarations to proxy to base event.
7516         * ListViewItem.cs: update to use ItemControl.
7517         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
7518         * ThemeWin32Classic.cs: update to new ListView theme API and fix
7519         column header label rendering for 0 width columns.
7520
7521 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
7522
7523         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
7524           that causes the control to be created. Fixes #77476.
7525
7526 2006-03-02  Jackson Harper  <jackson@ximian.com>
7527
7528         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
7529         expose_pending.
7530
7531 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
7532
7533         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
7534           passed in for the EventArgs (fixes #77690)
7535
7536 2006-03-01  Jackson Harper  <jackson@ximian.com>
7537
7538         * ScrollBar.cs: Refresh afterbeing resized.
7539
7540 2006-02-28  Mike Kestner  <mkestner@novell.com>
7541
7542         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
7543         Clean up a tracker compile warning.
7544         * MenuItem.cs: add internal PerformPopup method.
7545         [Fixes #77457]
7546
7547 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
7548
7549         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
7550           implicit expose) when the text is set to null
7551
7552 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
7553
7554         * RichTextBox.cs (FlushText): When newline is true, we always
7555           need to split the line, even if no text is on it and we may
7556           never eat newlines. (Fixes #77669)
7557
7558 2006-02-28  Mike Kestner  <mkestner@novell.com>
7559
7560         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
7561         and set Selected instead.
7562         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
7563         collections.
7564
7565 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
7566
7567         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
7568
7569 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
7570
7571         * FontDialog.cs:
7572           - Got rid of the panel. All controls are now directly added to
7573             the dialog form
7574           - It is now possible to set a font with the Font property
7575           - MinSize and MaxSize property do now what they should
7576           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
7577           - Searching and selecting a font with the font textbox works now,
7578             the same applies to the style and size textbox
7579           - Draw the correct 3D border in the example panel
7580           - Fixed a little mem leak (unused fonts didn't get disposed)
7581           - Many other internal updates/rewrites...
7582           - Fix typo
7583
7584 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
7585
7586         * TextControl.cs: 
7587           - InsertRTFFromStream: Added 'number of characters inserted' argument
7588           - set_SelectedRTF: Now using the number of characters to calculate
7589             the new location for the selection and cursor (x/y cannot be used
7590             due to potentially already wrapped text)
7591
7592 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
7593
7594         * TextControl.cs: Added property and implemented means to allow 
7595           disabling recalculation of a document (can be used to speed up
7596           multiple inserts and is needed to make RTF inserts predictable, see
7597           bug #77659)
7598         * RichTextBox.cs: Using the new NoRecalc property of Document to
7599           keep x/y insert locations predictable. Also makes it faster inserting
7600           large chunks of RTF
7601
7602 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
7603
7604         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
7605           it's easier for a child control to handle the other messages without
7606           having to duplicate the special functionality
7607         * TextBoxBase.cs
7608           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
7609             code to handle processing the key ourselves, in order to get 
7610             access to the result of KeyEventArgs.Handled. We now only call 
7611             ProcessKey if they key hasn't been handled already. Fixes #77526.
7612           - set_Text: If null or empty string is given, just clear the 
7613             document. Fixes part of #77526
7614
7615 2006-02-27  Jackson Harper  <jackson@ximian.com>
7616
7617         * SizeGrip.cs: Paint the background color before painting the grip
7618         so things look right.
7619         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
7620
7621 2006-02-27  Mike Kestner  <mkestner@novell.com>
7622
7623         * ListView.cs:
7624           - Restructure layout and invalidation model to remove a ton of
7625           flicker from the control and speed up performance in general.
7626           - Add manual column resize, flickers like crazy, but I already have
7627           some ideas on how I'll fix that. (#76822)
7628           - Merge the three Icon-based views into a single layout method.
7629           - Move item selection interaction logic from the item since 
7630           interaction with the collections is more appropriate to the view.
7631           - Deselection on non-item clicks.
7632         * ListViewItem.cs:
7633           - Encapsulate most of the layout. Add some internal props to trigger
7634           layout.  Move to a model where Items invalidate themselves instead
7635           of just invalidating the whole control every time something changes.
7636           - Invalidate on Text/Caption changes.
7637           - switch to an offset based layout model to avoid having to absolute
7638           position every element on item moves.
7639           - correct checkbox layout to conform to MS layout.
7640         * ThemeWin32Classic.cs:
7641           - refactor some column header drawing code.
7642           - fix string justification for column headers (#76821)
7643           - make SmallIcon labels top justified for compat with MS impl.
7644         * ThemeClearlooks.cs:
7645           - adjust to new ListViewItem internal checkbox bounds api.
7646
7647 2006-02-27  Jackson Harper  <jackson@ximian.com>
7648
7649         * Control.cs:  Change where implicit controls fall in the zorder.
7650         They are now on top of all children.
7651         - Synced AddImplicit code with Add
7652         - Removed unused enumerator.
7653         * SizeGrip.cs: Remove the TODO as its been TODONE.
7654
7655 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
7656
7657         * TextControl.cs(Insert): Combine the last lines unless the insertion
7658           string ends with \n\n, otherwise we leave one line too many (Fixes
7659           something I noticed with the testapp for #77526; the bug itself was
7660           already fixed in the previous checkin)
7661
7662 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
7663
7664         * RichTextBox.cs:
7665           - SelectionColor and SelectionFont methods no longer set absolute
7666             styles. Instead, the keep font or color respectively (This 
7667             resolves a long-standing FIXME in the code)
7668           - When flushing RTF text, the insert code now considers text trailing
7669             behind the insertion point (Fixes the bug where when replacing
7670             the selected text via SelectedRTF the remainder of the line behind 
7671             the selection would stay on the first insertion line)
7672         * TextBoxBase.cs:
7673           - AppendText now updates the selection points after inserting text
7674           - AppendText now ensures that the last tag (sometimes 0-length) of
7675             the document is used for the style information (Fixes part of 
7676             bug #77220)
7677         * TextControl.cs:
7678           - Created new FontDefiniton class to allow describing partial style
7679             changes
7680           - StreamLine() now takes a lines argument, to allow it to decide
7681             whether an encountered zero-length tag is the last in the document
7682             (which must be kept to not loose the font/color contained in it,
7683             for later appends)
7684           - Created Combine() and Split() methods for Marker structs, to 
7685             support marker updates due to reformatted documents (soft line
7686             wraps)
7687           - Implemented Document.CaretTag setter
7688           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
7689             of the last line (Not the cause, but also exposed by bug #77220)
7690           - Added LineTag argument to InsertString method, to allow callers
7691             to force a certain tag to be used (required to force use of the
7692             trailing zero-length tag of a document)
7693           - Now updating markers in Combine(), to avoid stale tag markers
7694           - Added some method descriptions to aid maintenance
7695           - Implemented new FormatText concept, allowing additive/subtractive
7696             formatting by only specifying the components that are to be 
7697             changed. This was needed for resolving the RTB.SelectedColor/
7698             RTB.SelectedFont fixmes
7699           - Added Break() support method to allow breaking up linetags (used
7700             for partial formatting)
7701           - Added GenerateTextFormat() method. It is used for partial 
7702             formatting and allows to generate a full font/color from given
7703             attributes and an existing tag.
7704
7705 2006-02-26  Jackson Harper  <jackson@ximian.com>
7706
7707         * XplatUIX11.cs:  Use the correct caption height.
7708         - Translate hittest coordinates to screen coords to match MS.
7709         * XplatUIWin32.cs: When we create MDI windows we need to reset
7710         some of the style flags, so we get a nice blank window, and can
7711         draw all the decorations ourselves.
7712         - Set a clipping rectangle on the non client paint event, the
7713         window manager drawing code needs one.
7714         * Form.cs: The window manager needs to know when the window state
7715         has been updated.
7716         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
7717         don't need to factor in border and title sizes in these
7718         methods. TODO: Remove the args and fix the call points.
7719         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
7720         properly.
7721         - Let the driver set the cursors.
7722         - Improve active window handling
7723         - Correct sizes for title bars and buttons.
7724         - Match MS drawing better
7725         * MdiWindowManager.cs: We don't need to handle border style
7726         updates specially anymore.
7727         - Check for scrollbars when windows are done moving
7728         - Handle Active properly.
7729         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
7730         correctly. I am spewing the exception though, so we don't hide the
7731         bugs.
7732         
7733 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
7734
7735         * DataGridViewRowPostPaintEventArgs.cs,
7736           DataGridViewCellPaintingEventArgs.cs,
7737           DataGridViewRowCollection.cs,
7738           DataGridViewRowPrePaintEventArgs.cs,
7739           DataGridViewCell.cs: Clear a few warnings and implement a few
7740           exceptions that should be thrown.
7741
7742 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
7743
7744         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
7745           'inheriting' our parent's (non-default) cursor. (Part of
7746            the fix for #77479)
7747
7748 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
7749
7750         * XplatUIX11.cs: Fixed cast to make csc happy
7751
7752 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
7753
7754         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
7755           it's for the client area (part of fix for #77479 and needed
7756           for MDI window cursor handling)
7757         * XplatUIX11.cs
7758           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
7759             the appropriate default cursors and also passing the message
7760             up the parent chain 
7761           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
7762             for non-client areas
7763
7764 2006-02-15  Jackson Harper  <jackson@ximian.com>
7765
7766         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
7767         is a real MDI window
7768
7769 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
7770
7771         * X11DesktopColors.cs: Instead of checking the desktop session
7772           string for "KDE" check if it starts with "KDE"
7773
7774 2006-02-10  Jackson Harper  <jackson@ximian.com>
7775
7776         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
7777         systems).
7778
7779 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
7780
7781         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
7782           errors
7783         * ColorDialog.cs:
7784           - Got rid of the panel. All controls are now directly added to
7785             the dialog form
7786           - Changed to mono coding style
7787
7788 2006-02-10  Jackson Harper  <jackson@ximian.com>
7789
7790         * InternalWindowManager.cs: We don't need the set visibility to
7791         false hack anymore now that peter has written beautiful shutdown
7792         code.
7793
7794 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
7795
7796         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
7797           where already explicitly destroyed
7798
7799 2006-02-10  Jackson Harper  <jackson@ximian.com>
7800
7801         * MdiClient.cs: Handle the case where windows are too high or to
7802         the left and we need scrollbars.
7803
7804 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
7805
7806         * MimeIcon.cs: Added some icons
7807         * FileDialog.cs:
7808           - Fixed bug #77477
7809           - Got rid of the panel. All controls are now directly added to
7810             the dialog form
7811           - Changed to mono coding style
7812           - On Linux "My Computer" and "My Network" will now show some
7813             more usefull information. A new class, MasterMount, gathers
7814             this information from /proc/mount. Updated MWFFileView to make
7815             use of this information
7816           - Fixed a bug that caused FileDialog to crash when
7817             ".recently_used" file had a zero size
7818           - FilterIndex does now what it should
7819           - Some Refactoring
7820         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
7821             FileDialog changes
7822
7823 2006-02-09  Jackson Harper  <jackson@ximian.com>
7824
7825         * ComboBox.cs: Don't touch if null.
7826
7827 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
7828
7829         * Cursor.cs: 64bit safeness fix
7830         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
7831
7832 2006-02-09  Jackson Harper  <jackson@ximian.com>
7833
7834         * Form.cs: If a form is made into an MDI form update the styles so
7835         all the props can get set correctly.
7836         - Kill the mdi_container when we dont need it anymore.
7837         * InternalWindowManager.cs: Add missing NOT
7838
7839 2006-02-08  Jackson Harper  <jackson@ximian.com>
7840
7841         * InternalWindowManager.cs: Respek clipping when drawing MDi
7842         decorations.
7843
7844 2006-02-08  Jackson Harper  <jackson@ximian.com>
7845
7846         * Hwnd.cs: Add bits to track non client expose events.
7847         * XplatUIX11.cs: Track non client expose events on the hwnd. This
7848         gives us a proper invalid rect and will allow for some nice
7849         optimizations with NC client drawing
7850         - MDI windows are children windows, so move their style handling
7851         into the child window block.
7852         * InternalWindowManager.cs: Remove a state reset that was
7853         getting invoked at the wrong time. Fixes managed windows getting
7854         into a 'stuck' captured state.
7855
7856 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
7857
7858         * TextControl.cs (Document.ctor): Now initializing 
7859           selection_anchor. Fixes #77493
7860
7861 2006-02-07  Jackson Harper  <jackson@ximian.com>
7862
7863         * TrackBar.cs: The increment/decrements were backwards.
7864
7865 2006-02-07  Mike Kestner  <mkestner@novell.com>
7866
7867         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
7868         to the instance itself.
7869
7870 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
7871
7872         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
7873           on ulongs and pointers, the size differs between 32bit and 64bit
7874           systems. 
7875
7876 2006-02-07  Mike Kestner  <mkestner@novell.com>
7877
7878         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
7879         for 64 bit platforms to work around a metacity bug. 
7880
7881 2006-02-07  Jackson Harper  <jackson@ximian.com>
7882
7883         * TrackBar.cs: Process the input keys we need, and hookup to
7884         KeyDown instead of using WndProc, so we get key messages.
7885
7886 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
7887
7888         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
7889           machine we're on. 
7890         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
7891           we need to translate the XdndVersion atoms array before sending it
7892
7893 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
7894
7895         * XplatUIX11.cs: 
7896           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
7897             number of bits for the property, not the number of bytes. The
7898             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
7899             but would not crash since it specified 8 bits instead of 4 bits)
7900           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
7901             defined as XID -> long in the C headers)
7902           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
7903             references since those are now IntPtr to begin with
7904           - Switched all Atom.XXX 'int' casts to IntPtr casts
7905           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
7906           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
7907           - Added XChangeActivePointerGrab DllImport (for X11DnD)
7908         * X11Structs.cs:
7909           - Changed 'int' type for Atoms in XEvent structures to IntPtr
7910           - Changed atom in HoverStruct to be IntPtr
7911         * X11DnD.cs:
7912           - Removed local DllImports, switched code to use those from XplatUIX11
7913           - Removed/fixed casts related to the switch of Atom to be a IntPtr
7914
7915 2006-02-06  Mike Kestner  <mkestner@novell.com>
7916
7917         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
7918         method signatures in the import region.  There may still be some
7919         lingering struct marshaling issues, as I didn't drill down into those.
7920         Yet.
7921
7922 2006-02-06  Jackson Harper  <jackson@ximian.com>
7923
7924         * ComboBox.cs: Dont manually set the top_item, this is computed
7925         when the scrollbar position is set.
7926
7927 2006-02-06  Mike Kestner  <mkestner@novell.com>
7928
7929         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
7930         startup crashes on amd64.  There's other fixes needed.  All pinvoke
7931         usage of Atom needs to be mapped to IntPtr for example.  And there are
7932         likely other int/long issues to be addressed.
7933
7934 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
7935
7936         * FileDialog.cs: One more...
7937
7938 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
7939
7940         * FileDialog.cs: Next try
7941
7942 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
7943
7944         * FileDialog.cs: First part of fix for #77464
7945
7946 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
7947
7948         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
7949           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
7950           AcceptButton border drawing.
7951
7952 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
7953
7954         * Form.cs: Moved positioning of form after auto scaling is applied,
7955           otherwise it would possibly use wrong form size.
7956
7957 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
7958
7959         * Control.cs (RecreateHandle): No need to re-create any child
7960           controls, the child windows will get destroyed automatically by
7961           the windowing system or driver, and re-created when the handle
7962           is being accessed the first time. Fixes #77456
7963         * Form.cs: No longer setting the form to closing if the handle is 
7964           being recreated. This seems like the right thing to do, don't
7965           have a bug or testcase for this, though.
7966
7967 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
7968
7969         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
7970           controls to avoid unwanted side effects
7971
7972 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
7973
7974         * Control.cs: 
7975           - ScaleCore needs to scale the bounds, not the ClientSize of the 
7976             control. Fixes #77416.
7977           - DefaultSize is 0,0 for control
7978         * TextBoxBase.cs: 
7979           - DefaultSize is 100, 20
7980           - SetBoundsCore: Now enforcing the height, no matter if the provided
7981             height is more or less than the preferred one, as long as AutoSize
7982             is on
7983         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
7984
7985 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
7986
7987         * Control.cs:
7988           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
7989             call unless both performLayout is true *and* we have a pending
7990             layout change
7991           - ResumeLayout: MS does not completely nest Suspend and Resume,
7992             they bottom out at 0, fixed our code to match that.
7993           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
7994             SetBoundsCore, we were updating even when we shouldn't. This fixes
7995             swf-anchors mis-anchoring when resizing the app fast and lots.
7996           - UpdateDistances: Now only setting the left and top distance if 
7997             we have a parent and are not suspended, this is based on
7998             a suggestion by Don Edvaldson in bug #77355.
7999           - OnVisibleChanged: Fixed logic when to create the control. We may
8000             not create the control if we have no parent or if it's not visible;
8001             switched to using Visible property instead of is_visible field 
8002             since the property also considers parent states. This fixes a bug
8003             when starting Paint.Net
8004
8005 2006-02-02  Jackson Harper  <jackson@ximian.com>
8006
8007         * Form.cs: If the forms handle hasn't been created yet don't call
8008         into xplatui to make it top most, just set the topmost flag on the
8009         form in CreateParams
8010         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
8011
8012 2006-02-01  Jackson Harper  <jackson@ximian.com>
8013
8014         * ScrollableControl.cs: Refactored the Recalculate method a
8015         little, this wasn't handling all the variants of bottom and right
8016         bars needed to be added and added/removed based on their
8017         counterparts being added/removed (which changes the drawable
8018         size). Also we special case client widths and heights of 0 and
8019         don't add the scrollbar for those.
8020
8021 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
8022
8023         * XplatUIX11.cs: 
8024           - Added method to get AbsoluteGeometry(); currently unused, but might
8025             be used in the future, if we try again to figure out toplevel
8026             coordinates with some more crappy window managers
8027           - Added FrameExtents() method to retrieve the WM set decoration size
8028           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
8029             to deal with at least KDE, FVWM and metacity (Fixes #77092)
8030         * Hwnd.cs: 
8031           - Added whacky_wm tracking var for metacity
8032           - Added logic to have default menu height if the actual menu height
8033             has not yet been calculated (part of fix for #77426)
8034         * Form.cs: Keep track whether client size has been set and re-set 
8035           it if a menu is added/removed afterwards (Fixes #77426)
8036
8037 2006-01-31  Jackson Harper  <jackson@ximian.com>
8038
8039         * Control.cs: When a new Site is set on the component attempt to
8040         pull the AmbientProperties from it.
8041
8042 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
8043
8044         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
8045           in the background of the owning form. Fixes #77332
8046
8047 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
8048
8049         * MimeIcon.cs: Fix for #77409
8050
8051 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
8052
8053         * XplatUIX11GTK.cs: Initial import
8054
8055 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
8056
8057         * FixedSizeTextBox: fixes class signature
8058
8059 2006-01-30  Jackson Harper  <jackson@ximian.com>
8060
8061         * FixedSizeTextBox.cs: New internal class that represents a
8062         textBox that will not be scaled.
8063         * TreeView.cs:
8064         * ComboBox.cs:
8065         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
8066         standard TextBox.
8067                 
8068 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
8069
8070         * XplatUIX11.cs: Retrieve default screen number instead of
8071           assuming 0. Attempted fix for #77318
8072
8073 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
8074
8075         * XplatUIWin32.cs: 
8076           - GetWindowPos: When a window is parented by FosterParent, use 
8077             the desktop instead of FosterParent as the base to get coordinates
8078           - CreateWindow: Don't make FosterParent the parent window for Popups
8079             if we don't want a taskbar entry, Popups automatically don't get one
8080         * Hwnd.cs: Need to call remove to actually remove the key from the
8081           hash table
8082
8083 2006-01-30  Mike Kestner  <mkestner@novell.com>
8084
8085         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
8086
8087 2006-01-30  Jackson Harper  <jackson@ximian.com>
8088
8089         * TreeView.cs:
8090         * TreeNode.cs: Raise events no matter how the treenode is
8091         checked. Patch by Don Edvalson.
8092
8093 2006-01-30  Jackson Harper  <jackson@ximian.com>
8094
8095         * TreeNode.cs: Signature fix.
8096
8097 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
8098
8099         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
8100
8101 2006-01-20  Mike Kestner  <mkestner@novell.com>
8102
8103         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
8104         event forwarding when menus are active.
8105         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
8106         Most of the patch is pdb's with a little rework.
8107
8108 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
8109
8110         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
8111           Removed GetMenuDC and ReleaseMenuDC methods; replaced
8112           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
8113         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
8114         * InternalWindowManager.cs: Added use of PaintEventStart/End to
8115           handling of WM_NCPAINT message, now passing the PaintEventArgs to
8116           the PaintWindowDecorations method
8117         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
8118         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
8119         * MenuAPI.cs: Made tracker window invisible
8120         * XplatUIWin32.cs:
8121           - Removed GetMenuDC and ReleaseMenuDC methods
8122           - Implemented the client=false path for PaintEventStart and
8123             PaintEventEnd
8124
8125 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
8126
8127         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
8128         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
8129           styles
8130         * Form.cs: 
8131           - MaximizeBox, MinimizeBox: Recreate the handle when setting
8132             the style
8133           - CreateParams: Reworked the styles to match MS look'n'feel,
8134             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
8135             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
8136
8137 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
8138
8139         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
8140           window is not mapped, since otherwise every form that's being 
8141           created is considered minimized, which is wrong.
8142         * Form.cs: Catching the exception and returning our internal value
8143           instead
8144
8145 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
8146
8147         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
8148           SetWindowMinMax() to have means to tell the driver about the minimum,
8149           maximum and maximized state window sizes. (Part of the fix for #76485)
8150         * Form.cs:
8151           - Implemented tracking of minimum and maximum window size, now calling
8152             new SetWindowMinMax() driver method to tell the driver (Part of the
8153             fix for #76485)
8154           - Finished handling of WM_GETMINMAXINFO method, now setting all values
8155             (Completes fix for #76485)
8156           - Calling new SetWindowMinMax driver method when the handle for a 
8157             form is created, to make sure the driver knows about it even if
8158             the values have been set before the window was created
8159           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
8160             to avoid messing up our anchoring calculations (partial fix
8161             for #77355)
8162         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
8163         * XplatUIX11.cs:
8164           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
8165           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
8166             (and presumably other freedesktop.org compliant WMs). Left the
8167             assumption unmapped=minimized, needed for SetVisible to work.
8168           - Now setting the window state when creating windows
8169           - Fixed SetVisible to consider/set the window state when mapping
8170             a Form. We cannot set the state before it's mapped, and we cannot
8171             use Form.WindowState once it's mapped (since it would ask the
8172             driver and get 'normal'. Therefore, we grab the state before
8173             mapping, map, and then set state.
8174           - Implmemented SetWindowMinMax method; Metacity does not seem to
8175             honor the ZoomHints, though.
8176         * XplatUIWin32.cs:
8177           - Removed MINMAXINFO (moved to XplatUIStructs)
8178           - Added SetWindowMinMax stub (on Win32 the only way to set that
8179             information is in response to the WM_GETMINMAXINFO message, which
8180             is handled in Form.cs)
8181           - Added logic to SetVisible to set the proper window state when a 
8182             form is made visible (fixes #75720)
8183
8184 2006-01-26  Jackson Harper  <jackson@ximian.com>
8185
8186         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
8187         same way we handle them with Invoke.
8188
8189 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
8190
8191         * Form.cs:
8192           - Added tracking of window state so CreateParams can return
8193             the appropriate style
8194           - Moved setting of WS_CAPTION style in CreateParams to allow
8195             styles without caption
8196         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
8197           control if the TextBox property is accessed. Fixes #77345
8198         * Control.cs:
8199           - get_Created: now uses is_disposed and is_created to determine
8200             return value (suggested by Jackson)
8201           - CreateHandle: No longer exits if the handle is being recreated
8202           - RecreateHandle: If the handle is not yet created call the 
8203             appropriate method to create either control or handle. If the
8204             control is already created CreateHandle will simply exit instead
8205             of just creating the handle
8206         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
8207           now SendMessage WM_DESTROY directly to the control when DestroyWindow
8208           is called.
8209         * XplatUIX11.cs: 
8210           - When DestroyWindow is called, instead of waiting for the 
8211             DestroyNotification from X11, we directly post it to the WndProc
8212             and immediately dispose the hwnd object.
8213             Same applies to DestroyChildWindows, and this obsoletes the
8214             expose_pending tracking. Contrary to Win32 behaviour we destroy our
8215             child windows before our own, to avoid X11 errors.
8216           - Removed the direct sending of WM_PAINT on UpdateWindow
8217         * XplatUIWin32.cs:
8218           - Reworked DoEvents and GetMessage to allow access to internal queue
8219             even when trying non-blocking access to the queue.  Fixes #77335. 
8220             Based on a patch suggestion by Don Edvalson. The new private
8221             GetMessage can now also be used as a backend for a PeekMessage
8222             frontend version.
8223         * XplatUI.cs: Improved debug output for CreateWindow
8224
8225 2006-01-25  Jackson Harper  <jackson@ximian.com>
8226
8227         * Help.cs: Allow param to be null. Patch by Don Edvalson.
8228
8229 2006-01-24  Jackson Harper  <jackson@ximian.com>
8230
8231         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
8232         when we have a MaxDropItems lower then the selected index.
8233
8234 2006-01-24  Jackson Harper  <jackson@ximian.com>
8235
8236         * Control.cs: Don't allow selection of non visible controls, allow
8237         selection of controls without parents.
8238
8239 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
8240
8241         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
8242         * DataGridDrawingLogic.cs: Add editing row only when is necessary
8243
8244 2006-01-23  Jackson Harper  <jackson@ximian.com>
8245
8246         * UpDownBase.cs: Make the textbox handle all the selection and
8247         tabbing. This fixes tabing to updown controls.
8248
8249 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
8250
8251         * TextBoxBase.cs: fixes exception thown the object was null
8252
8253 2006-01-23  Jackson Harper  <jackson@ximian.com>
8254
8255         * ButtonBase.cs: Just use the base CreateParams. They set
8256         visibility and enabled correctly.
8257         * ComboBox.cs:
8258         * TrackBar.cs:
8259         * MonthCalendar.cs: Lets let the base set as much of the
8260         createparams as possible so we don't have duplicate code all over
8261         the place.
8262
8263 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
8264
8265         * ThemeGtk.cs: Added TrackBar and some experimental code to
8266           get double buffering back
8267
8268 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
8269
8270         * DataGrid.cs: Allows row number set internally higher than the last
8271         when creating a new row. Restores the editing functionality.
8272
8273 2006-01-20  Mike Kestner  <mkestner@novell.com>
8274
8275         * MimeIcon.cs: delay Image creation until the icons are accessed
8276         instead of creating 190 scaled images on GnomeHandler startup.
8277
8278 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
8279
8280         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
8281           first call base before processing the event. Fixes #77279
8282
8283 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
8284
8285         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
8286           that the stride for the GDI bitmap would match the stride of
8287           a DIB or a Cursor.
8288
8289 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
8290
8291         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
8292
8293 2006-01-19  Jackson Harper  <jackson@ximian.com>
8294
8295         * ComboBox.cs: Hookup the text controls keydown event so we get
8296         those when the text control has the focus.
8297
8298 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
8299
8300         * Label.cs: Now using the base events instead of defining new ones;
8301           this allows us to just call the base properties without having to
8302           duplicate all base property logic 
8303
8304 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
8305
8306         * Label.cs: A label by default is not a tabstop (Fixes one of our
8307           failing nunit tests)
8308
8309 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
8310
8311         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
8312         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
8313
8314 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
8315
8316         * Cursor.cs: Reimplemented creating cursor bitmaps without using
8317           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
8318           This fixes #77218
8319         * XplatUIWin32.cs: 
8320           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
8321             constructor creates images that can't be saved. Part of the fix
8322             for #76103
8323           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
8324           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
8325             bug fix for handling window state in forms properly)
8326
8327 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8328
8329         * ThemeGtk.cs: Simplify ScrollBar drawing
8330
8331 2006-01-18  Jackson Harper  <jackson@ximian.com>
8332
8333         * Splitter.cs: Set the default dock style for the splitter control
8334         in the constructor.
8335
8336 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8337
8338         * ThemeGtk.cs: Corrected StateType and ShadowType for
8339           gtk_paint_box
8340
8341 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8342
8343         * Control.cs: Make use of Theme.DoubleBufferingSupported
8344         * ThemeGtk.cs:
8345           - Added drawing for flat style buttons
8346           - Added ScrollBar drawing
8347
8348 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
8349
8350         * ThemeClearlooks.cs: Removed some unneeded code.
8351         * ThemeGtk.cs: First part of ThemeGtk enhancements.
8352
8353 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
8354
8355         * LinkLabel.cs: We need to update the hover drawing when
8356           leaving the control as well.
8357
8358 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
8359
8360         * DataGrid.cs: Clicking on non empty areas in the columns
8361            area was giving an exception
8362
8363 2006-01-17  Jackson Harper  <jackson@ximian.com>
8364
8365         * ThemeWin32Classic.cs:
8366         * ListView.cs: Do not draw/clip the headers when the header style
8367         is None.
8368
8369 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
8370
8371         * DataGrid.cs: Fixes 77260
8372         
8373 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
8374
8375         * DataGrid.cs: Clicking on a column on a empty grid was giving
8376           an exception
8377
8378 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
8379
8380         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
8381           or any keypress will crash the grid.
8382
8383 2006-01-17  Mike Kestner  <mkestner@novell.com>
8384
8385         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
8386         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
8387         invisible/previously-visible items.
8388         [Fixes #76909]
8389
8390 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
8391
8392         * ThemeClearlooks.cs:
8393         - Added CL_Draw_Button method; now other theme controls that are 
8394           not derived from button or do not have a button can draw buttons
8395           too
8396         - Updated ComboBox drawing
8397         - Beautified RadioButton drawing
8398         - Corrected drawing of bottom and left tabs
8399         - Beautified DateTimePicker and MonthCalendar
8400         - Added CPDrawButton and CPDrawRadioButton
8401
8402 2006-01-16  Jackson Harper  <jackson@ximian.com>
8403
8404         * ComboBox.cs: Set the initial value of the scrollbar to the
8405         current index. Reduce the numbers of refreshs and IndexOfs called.
8406
8407 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
8408
8409         * FileDialog.cs: When the file listview is focused hitting the
8410           backspace key moves the fileview to the parent directory
8411
8412 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
8413
8414         * Form.cs: 
8415           - Added RecreateHandle call when changing taskbar visibility to 
8416             trigger reparenting in Win32 driver (Fixes #75719)
8417           - If a window has minimize or maximize buttons, it cannot have
8418             a help button
8419         * XplatUIWin32.cs:
8420           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
8421             the toplevel form with FosterParent (A toolwindow not on the
8422             taskbar) (Fixes #75719)
8423           - Made FosterParent a toolwindow
8424
8425 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
8426
8427         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
8428
8429 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
8430
8431         * ToolTip.cs: If SetToolTip is called from a control and the mouse
8432           is currently over that control, make sure that tooltip_window.Text
8433           gets updated
8434
8435 2006-01-13  Mike Kestner  <mkestner@novell.com>
8436
8437         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
8438
8439 2006-01-13  Jackson Harper  <jackson@ximian.com>
8440
8441         * TreeView.cs: On MS GetNodeAt never actually factors in the X
8442         value passed.  Also redraw the selected node when we recieve
8443         focus, so tabbing between trees works correctly.
8444
8445 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
8446
8447         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
8448           ~/.gconf/%gconf-tree.xml, so use
8449           .gconf/desktop/gnome/interface/%gconf.xml
8450
8451 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
8452
8453         * TextControl.cs: Draw text in gray if control is disabled
8454
8455 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
8456
8457         * TreeView.cs: Draw the focus rectangle outside the highlight, to
8458           make sure it's always visible. Fixes #76680.
8459
8460 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
8461
8462         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
8463
8464 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
8465
8466         * PageSetupDialog.cs: Added.
8467         * PrintDialog.cs: Attributes.
8468         * PrintPreviewControl.cs: Updates.
8469         * PrintPreviewDialog.cs: Updates.
8470         
8471 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8472
8473         * Control.cs: Undid my selection check fix, since it's not needed
8474         * TextBoxBase.cs:
8475           - Now considering the presence of hscroll/vscroll when sizing
8476             vscroll/hscroll respectively. Fixed bug #77077
8477           - Added Left/Up/Down/Right to IsInputKey list to prevent
8478             ContainerControl from stealing them. This fixes what I broke
8479             with my last checkin.
8480
8481 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
8482
8483         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
8484           I finally understand how the property can be set without a setter :-)
8485
8486 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8487
8488         * Application.cs:
8489           - Switched RunLoop to use static Message.Create to create a 
8490             Message object
8491           - Added PreProcessMessage call in runloop for keyboard events; this
8492             is part of the fix for #77219, I overlooked this originally in the
8493             MSDN doc for PreProcessMessage
8494         * Control.cs:
8495           - Removed call to PreProcessMessage from handling of keyboard 
8496             messages; it's supposed to be done in the message pump
8497           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
8498             per MSDN documentation.
8499           - IsInputChar: All chars are input chars by default; removed the 
8500             parent calling chain, MS does not document that
8501           - PreProcessMessage: If IsInputChar is true, we want to return false
8502             to allow dispatching of the message
8503           - When selecting the next control, now also check that we're not
8504             selecting ourselves again and therefore return a false positive.
8505         * TextBoxBase.cs:
8506           - Tried to match return values for IsInputKey and ProcessDialogKey
8507             to what MS returns; moved processing of our special keys outside
8508             ProcessDialogKey since MS does not seem to return true on those.
8509           - Moved code that previously was in ProcessDialogKey into new private
8510             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
8511           - Reworked handling of WM_CHAR to not have to duplicate code from
8512             Control.cs anymore, instead we simply call down to base.
8513            
8514 2006-01-12  Jackson Harper  <jackson@ximian.com>
8515
8516         * ComboBox.cs: We always need to refresh the text area when
8517         EndUpdate is called. Fixes the combobox in the file dialog.
8518         * Control.cs: Don't create the creator_thread until the controls
8519         handle is created.  Also in InvokeRequired we check if the
8520         creator_thread is null. This gives the effect of InvokeRequired
8521         returning true if the controls handle is not created yet, and
8522         matches MS.
8523
8524 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8525
8526         * XplatUI.cs:
8527           - Added StartLoop() driver method. This is used to allow drivers to
8528             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
8529             loop for a particular thread
8530           - Added EndLoop() driver method. This is called once the message
8531             pump for the thread is shut down
8532           - Added SupportsTransparency method to allow the driver to indicate
8533             opacity support for windows
8534         * Form.cs:
8535           - Removed TODO attribute, completed AllowTransparency property
8536           - Added documented logic to Opacity
8537         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
8538           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
8539           versions of CompatibleTextRendering
8540         * X11Structs.cs: Added opacity atom to our atom enumeration
8541         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
8542           of a form might be set before it's reparented by the WM, and we need
8543           the opacity value without calling up to Form)
8544         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
8545           SupportsTransparency() driver methods
8546         * Application.cs: Now calling StartLoop and EndLoop driver methods
8547         * XplatUIX11.cs:
8548           - Added opacity atom registration
8549           - Added StartLoop()/EndLoop() methods. They're empty right now but
8550             will need to get implemented when we switch to a per-thread queue
8551           - Implemented SupportsTransparency() method
8552           - Implemented SetWindowTransparency() method
8553           - Added support for setting the opacity value when a window is
8554             reparented (since the opacity needs to be set on the WM frame)
8555         * XplatUIOSX.cs, XplatUIWin32.cs:
8556           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
8557
8558 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
8559
8560         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
8561
8562 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
8563
8564         * FileDialog.cs: Added ToolTip for MWFFileView
8565         * MimeIcon.cs: Rewrote GnomeHandler.
8566           - Get currently used gnome icon theme from
8567             ($HOME)/.gconf/%gconf-tree.xml
8568           - Make use of inherited icon themes
8569           - Support SVG icon themes like Tango via librsvg
8570
8571 2006-01-12  Miguel de Icaza  <miguel@novell.com>
8572
8573         Revert's Jackson's revert which broke 2.0 builds.   Fix both
8574         builds. 
8575         
8576         * Application.cs: Move the use_compatible_text_rendering outside
8577         the NET_2_0 define.  If we ever need to use the
8578         use_compatible_text_rendering on the individual controls they will
8579         access the variable from the common shared code paths.
8580
8581 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
8582
8583         * XplatUI.cs:
8584           - Added more granular debug options
8585           - Added method to print both window text and id
8586           - Switched debug output to use new Window() debug method
8587           - Added IsEnabled() driver method
8588           - Added EnableWindow() driver method
8589         * Form.cs:
8590           - Removed end_modal; no longer needed, new loop handles termination
8591             via 'closing' variable
8592           - If form is modal, setting DialogResult will now initiate loop
8593             termination via 'closing' variable
8594           - Added support for is_enabled/WS_DISABLED to CreateParams
8595           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
8596             does all the work
8597           - Removed code that's now in RunLoop from ShowDialog()
8598           - Added various documented sanity checks to ShowDialog()
8599           - Added handling of WM_DESTROY message; we set 'closing' on getting
8600             the message to indicate the message pump to terminate
8601           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
8602             send by the Application.ExitThread method. (We send the message
8603             to destroy the window after all other events have been
8604             processed through the queue, instead of destroying the handle 
8605             directly)
8606           - Moved code from Close() method to WM_CLOSE handler; added logic
8607             to only send close-related events if the form is not displayed
8608             modal
8609         * Splitter.cs (..ctor): Fixed typo in resource name
8610         * Control.cs:
8611           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
8612             brush now
8613           - set_Cursor: Now only setting calling into XplatUI if the handle for
8614             the control is already created; this avoids implict handle creation
8615             or crashes if it's not created
8616           - set_Enabled: Now setting the enabled state via the new driver method
8617             instead of just tracking it
8618           - CreateParams: Added logic to set WS_DISABLED based on enabled state
8619           - CreateControl: Reordered event firing and method calls to more
8620             closely fire events in the order MS does. Now setting the
8621             enabled state in the driver when creating the control.
8622           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
8623             match MS order
8624         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
8625           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
8626         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
8627         * Hwnd.cs:
8628           - Added tracking of window enabled state (get_Enabled/set_Enabled)
8629           - Added EnabledHwnd property to easily allow a driver to find the
8630             handle of the first enabled window in the parent chain (this is
8631             used by drivers to pass up input events of disabled windows)
8632         * XplatUIDriver.cs: Added IsEnabled() method
8633         * Application.cs:
8634           - Removed crude and obsolete exiting tracking variable
8635           - Removed internal ModalRun(); replaced by RunLoop()
8636           - Implemented private CloseForms() method to allow closing all 
8637             windows owned by a particular (or all) threads
8638           - Exit() now properly closes all windows without forcing the message
8639             pump to quit
8640           - Removed obsolete InternalExit() method
8641           - Changed Run() methods to use new RunLoop() message pump
8642           - Implemented new RunLoop() method for both modal and non-modal forms
8643         * CommonDialog.cs:
8644           - get_CreateParams: Added setting of WS_DISABLED
8645           - Simplified ShowDialog(); now all the work is done in RunLoop(),
8646             invoked via Form.ShowDialog()
8647         * NativeWindow.cs: We don't remove the window from the collection when
8648           the handle is destroyed; there might still be messages for it in the
8649           queue (mainly the resulting WM_DESTROY); instead it will be removed
8650           when Control calls InvalidateHandle in the WM_DESTROY handler
8651         * XplatUIX11.cs:
8652           - CreateWindow: Added logic to handle the WS_DISABLED window style
8653           - EnableWindow: Implemented based on Hwnd.Enabled
8654           - GetMessage: Reset PostQuitState so the method can be called again
8655           - Implemented support for disabled windows (passing messages to the
8656             first enabled parent) in handling all input messages
8657           - Added optimizations for handling Expose events
8658           - Implemeted new driver method IsEnabled()
8659           - Now always resetting paint pending tracking vars when we start paint
8660           - Re-implemented UpdateWindow via just sending a WM_PAINT message
8661         * XplatUIOSX.cs: Added IsEnabled method stub
8662         * XplatUIWin32.cs: Implemented new IsEnabled() method
8663
8664 2006-01-11  Jackson Harper  <jackson@ximian.com>
8665
8666         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
8667         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
8668         variables a little.
8669         * ColorDialog.cs: Clear out the old form before adding the new
8670         panel.  
8671
8672 2006-01-11  Jackson Harper  <jackson@ximian.com>
8673
8674         * X11Dnd.cs: Make sure to add all the text formats when adding
8675         strings to the data object.
8676         * TreeNodeCollection.cs: When adding to a sorted tree we need to
8677         do some redrawing too.  Also change the UpdateNode to an
8678         UpdateBelow so the newly added node gets painted.
8679         
8680 2006-01-11  Miguel de Icaza  <miguel@novell.com>
8681
8682         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
8683         LinkLabel.cs, PropertyGrid.cs: Implement the
8684         UseCompatibleTextRendering property for 2.x
8685
8686         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
8687
8688 2006-01-11  Jackson Harper  <jackson@ximian.com>
8689
8690         * TreeView.cs: Use the property for setting the selected node so
8691         the correct events get raised.
8692         * TreeNode.cs: Update the tree when the fore/back colours of a
8693         node are set.
8694
8695 2006-01-10  Jackson Harper  <jackson@ximian.com>
8696
8697         * TreeView.cs: Allow setting SelectedNode to null.
8698
8699 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8700
8701         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
8702
8703 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8704
8705         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
8706
8707 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8708
8709         * PrintDialog.cs: Added attributes and set default property values.
8710
8711 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8712
8713         * PrintControllerWithStatusDialog.cs: 
8714         Added PrintControllerWithStatusDialog.
8715
8716 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8717
8718         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
8719         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
8720
8721 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
8722
8723         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
8724
8725 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
8726
8727         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
8728         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
8729
8730 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
8731
8732         * MimeIcon.cs: Added internal class SVGUtil.
8733
8734 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
8735
8736         * FileDialog.cs: Don't crash if there are two files with the
8737           same name but different locations.
8738
8739 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
8740
8741         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
8742         dates across multiple month grids. Used to not highlight entire 
8743         month, but does now.
8744         
8745 2006-01-06  Jackson Harper  <jackson@ximian.com>
8746
8747         * MonthCalendar.cs: Removed DoEvents call to prevent a running
8748         message loop. Change timer intervals to numbers that seem more
8749         natural.
8750
8751 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
8752
8753         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
8754           object for location info since screen object is now implemented.
8755
8756 2006-01-05  Jackson Harper  <jackson@ximian.com>
8757
8758         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
8759         * AsyncMethodResult.cs: We no longer use a WeakReference for the
8760         AsyncMethodResult, this is because we ALWAYS want the
8761         ManualResetEvent to get set.
8762         * Control.cs: When disposing use an async invoke to call shutdown
8763         code, so that thigns don't block on the finalizer thread.  Also
8764         check if we even have a message loop before trying to send
8765         messages, if we don't then don't bother sending messages.
8766         - No more weak references for async methods
8767         * XplatUIDriver.cs: No more weak references for async methods.
8768
8769 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8770
8771         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
8772           returns two FontFamily with the same name
8773
8774 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
8775
8776         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
8777           drawing disabled text. Instead using the ColorGrayText color
8778
8779 2006-01-04  Jackson Harper  <jackson@ximian.com>
8780
8781         * TreeNode.cs: redraw the node when its image index is changed.
8782
8783 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
8784
8785         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
8786           time I checked there are no others like it.
8787
8788 2006-01-04  Jackson Harper  <jackson@ximian.com>
8789
8790         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
8791         this gives the behavoir I was looking for.
8792         * Control.cs: Special case Invoking EventHandlers, this matches MS
8793         and fixes part of bug #76326.
8794
8795 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8796
8797         * ThemeClearlooks.cs, FileDialog.cs:
8798           - Reflect the latest Theme class changes
8799           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
8800             with DateTime
8801             
8802 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
8803
8804         * Theme.cs: Cache UI resource images and resize them if needed
8805
8806 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
8807
8808         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
8809           is called. This fixes the crash in Nexxia when setting the font
8810           attributes in the chat. [However, RTF needs a look-over to make sure
8811           that all SelectionXXX methods handle the special case that selection
8812           is empty and therefore the change must be applied to all text starting
8813           at the cursor/selection start]
8814
8815 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
8816
8817         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
8818           XplatUIOSX.cs: Added SendMessage and PostMessage methods
8819         * X11Keyboard.cs: Switched to new way of calling PostMessage
8820
8821 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
8822
8823         * Theme.cs: Added theme interface for images to allow the theme to
8824           control what images are used for things like FileDialog, MessageBox
8825           icons, etc.
8826         * MessageBox.cs: Now uses the new Theme icon/image interfaces
8827
8828 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
8829
8830         * FileDialog.cs:
8831           - Removed some dead code
8832           - Opening a recently used file does work now
8833           - Small UI enhancements
8834           - Refactoring
8835
8836 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
8837
8838         * FileDialog.cs: Forgot too add __MonoCS__
8839
8840 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
8841
8842         * FileDialog.cs: We are able to read recently used files now let's
8843           go on and write them.
8844
8845 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
8846
8847         * FileDialog.cs: Breathe some life into "last open"/"recently used"
8848           button
8849         * MimeIcon.cs: Do a check for the top level media type also
8850
8851 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
8852
8853         * ThemeClearlooks.cs:
8854           - Added CPDrawStringDisabled
8855           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
8856             some chars if the text doesn't fit into text_rect
8857           - DrawListViewItem: If View = View.LargeIcon center the image;
8858             rewrote the drawing of ListViewItem.Text if View = 
8859             View.LargeIcon
8860
8861 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
8862
8863         * MimeIcon.cs: Use default KDE icon theme if there is no
8864           "48x48" directory for the current icon theme, fixes #77114
8865         * Mime.cs: Disable not working and actually not used code. 
8866         * ThemeWin32Classic.cs:
8867           - Replace "new SolidBrush" in GetControlBackBrush and
8868             GetControlForeBrush with ResPool.GetSolidBrush
8869           - Changed DrawListViewItem from private to protected virtual
8870         * FileDialog.cs:
8871           - Added form.MaximizeBox = true
8872           - Don't throw an exception if there is a broken symbolic link
8873
8874 2005-12-23  Jackson Harper  <jackson@ximian.com>
8875
8876         * TabControl.cs: Give the panels focus, keyboard navigation is
8877         fixed so this works correctly now.
8878         - We need these key events also.
8879         * ToolBar.cs: Remove some of the poor mans double buffering.
8880         
8881 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
8882
8883         * ComboBox.cs: The internal TextBox now returns the focus.
8884
8885 2005-12-23  Jackson Harper  <jackson@ximian.com>
8886
8887         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
8888
8889 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
8890
8891         * Control.cs: Removed debug code
8892         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
8893           implicit children
8894
8895 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
8896
8897         * Control.cs: When creating the control, update the Z-order after
8898           all it's children are created, too. (Fixes nexxia not showing
8899           picturebox bug)
8900
8901 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
8902
8903         * Control.cs: Do not update the anchoring distances if layout is
8904           suspended, instead do it once layout is resumed
8905
8906 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
8907
8908         * Control.cs: 
8909           - After many hours of debugging, for both Jackson and
8910             myself, it turns out that it helps to set the parent of a control
8911             if you want to actually see it onscreen. In the spirit of that
8912             discovery, we're now setting the parent of the control and
8913             it's children when the control's handle is created. This fix
8914             will make Lutz Roeder's Reflector run happily. 
8915           - now just creating the handle instead of the whole control when
8916             getting a graphics context for the control.
8917
8918 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
8919
8920         * ScrollableControl.cs: When calculating the canvas, don't consider
8921           the scrollbar widths. Instead, predict if horizontal scrollbar
8922           will affect canvas when deciding on vertical display and vice versa.
8923
8924 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
8925
8926         * RichTextBox.cs: Set default RTF font for documents that don't
8927           have a font table (Fixes #77076)
8928
8929 2005-12-22  Jackson Harper  <jackson@ximian.com>
8930
8931         * TextBoxBase.cs: It's difficult to do, but you can have an empty
8932         clipboard. This prevents a NullRef in that case.
8933         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
8934         clipboard. PRIMARY is for the currently selected text only. (We
8935         should implement PRIMARY at some point.
8936
8937 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
8938
8939         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
8940           a Unicode function with a structure that was defined in Ansi way.
8941           This fixes #76942.
8942
8943 2005-12-21  Jackson Harper  <jackson@ximian.com>
8944
8945         * StatusBar.cs: Statusbar handles its fore/back colours on it's
8946         on. Because thats how it rolls. (and this avoids it using ambient
8947         colours).
8948         * ThemeWin32Classic.cs: Use the proper back color for filling.
8949         * Menu.cs: Use the system menu bar color for drawing menu
8950         bars. Using the window back color will bring ambient colours into
8951         the picture.
8952
8953 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
8954
8955         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
8956           Bitmaps were created and not disposed.
8957
8958 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
8959
8960         * Control.cs (CreateControl): Don't do anything if the control is
8961           already created, otherwise we'd fire the OnCreated event more than
8962           once
8963
8964 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
8965
8966         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
8967           will always match. Instead return -1. Fixes #76464.
8968
8969 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
8970
8971         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
8972           neither the beginning nor the end of the line (Fixes bug #76479)
8973
8974 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
8975
8976         * Control.cs:
8977           - ControlNativeWindow.ControlFromHandle(): Now handling situation
8978             where handle is invalid
8979           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
8980             instead of slower linear search
8981         * NativeWindow.cs: Don't remove the window from the hashtable until
8982           after the driver has destroyed it (since the driver might use
8983           Control.FromHandle to lookup the control object
8984         * Hwnd.cs: Added DestroyPending property to track if a window is 
8985           already destroyed as far as the driver is concerned and only hasn't
8986           yet notified the control
8987         * XplatUIX11.cs:
8988           - Activate(): Check if the window is still valid before using the 
8989             handle
8990           - Implemented DestroyChildWindow() method to mark child windows as
8991             destroyed when a window is destroyed. This prevents situations 
8992             where we might call an X method based on queued events for a
8993             window that already has been destroyed but we haven't yet pulled
8994             the destroy method from the queue.
8995           - Added a call to the new DestroyChildWindow() method to the drivers
8996             DestroyWindow code. Also now marking the destroyed window itself
8997             as pending
8998
8999 2005-12-20  Jackson Harper  <jackson@ximian.com>
9000
9001         * StatusBar.cs:
9002         * StatusBarPanel.cs: Don't calculate panel sizes on draw
9003         anymore. Just do them when needed, also track the rects of panels
9004         so that we can optimize refreshing more in the future.
9005
9006 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
9007
9008         * ColorDialog.cs: Fixed focus drawing in small color controls
9009
9010 2005-12-19  Jackson Harper  <jackson@ximian.com>
9011
9012         * InternalWindowManager.cs:
9013         * MdiWindowManager.cs: Cleanup some coordinate system changes so
9014         moving windows works properly.
9015
9016 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
9017
9018         * Control.cs: 
9019           - Removed call to InitLayout() from SetBoundsCore(); doc says
9020             it's only called when a control is added to a container
9021           - Split InitLayout logic, moved to separate UpdateDistances() method
9022             since we need to perform those calculations more often than just
9023             when adding the control to a container. (Needed to fix #77022)
9024           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
9025           - Reduced the OnBindingContextChanged events count, don't send them
9026             unless the control is created, we still aren't totally matching
9027             MS, but I can't quite figure out some of their rules
9028
9029 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9030
9031         * ThemeClearlooks.cs: Corrected distance between ProgressBar
9032           stripes
9033
9034 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9035
9036         * ThemeClearlooks.cs:
9037           - Updated ProgressBar drawing
9038           - Corrected drawing of ScrollBars and scroll buttons
9039           - Some temporary fixes for minor pixel artefacts
9040
9041 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
9042
9043         * Control.cs:
9044           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
9045             cause events to be sent in the same order as MS does.
9046           - Added ChangeParent() method to trigger various OnXXXChanged events
9047             that need to be fired when a parent changes (This is a reworking
9048             of the patch from r54254, with the X11 errors fixed)
9049           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
9050             since on MS we get OnLayoutChanged events when calling Clear()
9051           - Changed Enabled property to consider parent state as well, if a
9052             parent is not enabled, the control will not be either
9053           - Changed Parent property to simply call Controls.Add() since that
9054             now does all the work required, this way we avoid code duplication
9055           - Threw in a few OnBindingsContextChanged calls to try and match
9056             when MS sends them. We seem to send a few too many, though.
9057           - Added call to CreateControl when adding the control to a parent.
9058             We were never calling CreateControl. Still needs some work, in
9059             some places we treat HandleCreated and ControlCreated as equal, 
9060             which is wrong
9061           - Removed obsolete commented out code from UpdateZOrder()
9062
9063 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
9064
9065         * ThemeClearlooks.cs: Updated TrackBar drawing.
9066
9067 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
9068
9069         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
9070
9071 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
9072
9073         * FileDialog.cs: Add the Help button and the open readonly
9074           checkbox only if needed
9075
9076 2005-12-16  Jackson Harper  <jackson@ximian.com>
9077
9078         * Control.cs: Make sure we have an active menu before trying to
9079         process commands on it. Prevents menu-less forms from crashing
9080         when Alt is pressed.
9081         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
9082         Dieter Bremes.
9083         * RichTextBox.cs: Expand statement to help out gmcs and fix the
9084         2.0 build.
9085
9086 2005-12-16  Jackson Harper  <jackson@ximian.com>
9087
9088         * InternalWindowManager.cs: Don't translate tool windows screen
9089         coordinates. This fixes windows 'bouncing' around when being moved.
9090
9091 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
9092
9093         * TextBoxBase.cs:
9094           - MaxLength now treats 2^31-1 equal to unlimited length (this is
9095             not quite MS compatible, MS uses that number only for single line
9096             and 2^32-1 for multi-line, but I figure it won't hurt keeping
9097             the limit at 2GB)
9098           - Now enforcing the MaxLength limit when entering characters
9099           - Added argument to internal Paste() method to track if it's called
9100             from programatically or via keyboard, since keyboard driven pastes
9101             need to enforce max-length
9102           - Added logic to Paste to only paste as many chars as MaxLength 
9103             allows
9104         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
9105         * TextControl.cs:
9106           - Added Length property to return number of characters in document
9107           - Added private CharCount property which only tracks actual chars
9108             in the document (no linefeeds) and fires event when CharCount
9109             changes
9110           - Added tracking of character count to all methods that alter it
9111           - Added LengthChanged event to allow applications to subscribe
9112             to any changes to the document
9113
9114 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
9115
9116         * TextBox.cs: 
9117           - Removed local password_char field (moved to TextBoxBase)
9118           - Now setting the document's password var when password is
9119             set
9120         * TextBoxBase.cs:
9121           - Added password_char field (needed here so MultiLine can
9122             access it)
9123           - Added logic to MultiLine property setter to set the document's
9124             variable when password display is allowed
9125           - Removed debug code and made some debug code conditional
9126         * TextControl.cs:
9127           - Added RecalculatePasswordLine() method to handle special password
9128             char only lines
9129           - Added PasswordChar property, also added related tracking vars
9130           - Draw() method now uses local text var for grabbing text to draw,
9131             this var is set to line.text unless we're doing password display,
9132             then it is set to the pre-generated all-password-chars line
9133           - Added calling RecalculatePasswordLine() method for password lines
9134
9135 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
9136
9137         * Hwnd.cs: 
9138           - Added Reparented property to allow tracking of Window Manager
9139             reparenting actions (which affect X/Y calculations of toplevel 
9140             windows)
9141           - Made ToString() print window handles in hex
9142         * XplatUIX11.cs:
9143           - AddConfigureNotify(): Now uses reparented state off Hwnd to
9144             determine if X/Y needs offsetting
9145           - AddConfigureNotify(): Fixed offset calculations
9146           - Now adds ReparentNotify messages into the queue
9147           - Now processes ReparentNotify messages and causes a 
9148             WM_WINDOWPOSCHANGED message to be sent upstream if a window
9149             is reparented (as most likely it's X/Y coordinates are changed
9150             due to that)
9151
9152 2005-12-14  Jackson Harper  <jackson@ximian.com>
9153
9154         * XplatUIX11.cs: Tool windows still need to respek focus.
9155
9156 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
9157
9158         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
9159           have a working release
9160
9161 2005-12-13  Jackson Harper  <jackson@ximian.com>
9162
9163         * Form.cs: Update styles after setting the border style regardless
9164         of whether or not the window is using a window manager.
9165
9166 2005-12-13  Jackson Harper  <jackson@ximian.com>
9167
9168         * Form.cs: We now hook into an internal window manager instead of just an
9169         MDI subsystem, this is so we can have properly behaving tool windows.
9170         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
9171         * InternalWindowManager.cs: New internal class that acts as a
9172         window manager for tool windows and as a base for mdi windows.
9173         * MdiWindowManager.cs: New class that acts as a window manager for
9174         mdi windows.
9175
9176 2005-12-12  Jackson Harper  <jackson@ximian.com>
9177
9178         * Control.cs: Updates so we match behavoir for for implicit
9179         controls. Fixes explosions in MDI.
9180
9181 2005-12-12  Jackson Harper  <jackson@ximian.com>
9182
9183         * Control.cs: Implement Invalidate (Region).
9184
9185 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
9186
9187         * Control.cs: 
9188           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
9189             the same events as MS does. MS fires events for each property 
9190             except, for unknown reasons, Cursor, when the control is reparented. 
9191             I can't seem to totally match add/remove since MS also fires some 
9192             VisibleChanged events, which makes no sense. Consolidated the
9193             parenting code into a separate method so it can be called from
9194             both Add and Remove. set_Parent no longer needs any special logic
9195             as it calls the parent's add method which implicitly fires
9196             all events
9197           - Removed some obsolete code and debug output
9198           - Enabled state is inherited from parents, if this is enabled
9199
9200 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
9201
9202         * Form.cs: Removed commented out code
9203
9204 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
9205
9206         * Control.cs:
9207           - Added internal version of Invoke, with additional argument 
9208             indicating if we're calling it from a Dispose() handler. That
9209             way we can avoid BeginInvoke throwing an exception if we're
9210             calling for an already destroyed window.
9211           - Added a dispose argument to BeginInvokeInternal, and made the
9212             check if a valid window handle chain exists conditional on
9213             it not being a dispose call
9214           - Removed code in DestroyHandle to destroy our children. Since we
9215             now handle the WM_DESTROY message we will catch all our children
9216             being destroyed.
9217           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
9218         * Form.cs:
9219           - Added a field to track the application context of the form.
9220           - No need to set closing variable as response to WM_CLOSE, instead
9221             we destroy the window. We also call PostQuitMessage if the form
9222             has an application context (which makes it the main app form,
9223             which, when closed terminates the app)
9224         * XplatUI.cs:
9225           - Dropped Exit() method, it's naming was confusing
9226           - Added PostQuitMessage() which causes GetMessage to return false
9227             once the message queue is empty
9228         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
9229           PostQuitMessage()
9230         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
9231           no longer a valid XplatUI method, but left it in since it's used
9232           internally. Added empty PostQuitMessage() method.
9233         * MenuAPI.cs: Replaced call to Exit() with call to
9234           PostQuitMessage, even though this is probably no longer needed.
9235         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
9236         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
9237         * Application.cs:
9238           - Replaced call to XplatUI.Exit() with PostQuitMessage()
9239           - Removed old debug code that would call XplatUI for exception
9240             display, enabled standard exception handling (Still not enabled
9241             though, until NativeWindow's ExternalExceptionHandler define
9242             is removed
9243         * NativeWindow.cs:
9244           - Added internal method to allow control to update NativeWindow
9245             after a window has been destroyed
9246           - Added handling of already destroyed windows when calling i
9247             DestroyWindow
9248           - Added removal of handle from list on ReleaseHandle
9249         * XplatUIX11.cs:
9250           - Dropped GetMessageResult var and related code
9251           - Added PostQuitState to field to track if PostQuitMessage has been
9252             called
9253           - Dropped Exit() method
9254           - Added PostQuitMessage() method
9255           - GetMessage now will return false if PostQuitState is set and no
9256             more messages are in the queue.
9257           - Expose handler will no longer generate WM_PAINT messages if we are
9258             in PostQuitState since it's very likely any windows have already
9259             been destroyed, and since Hwnd won't get updated until we have
9260             processed the DestroyNotify we'd be causing X errors.
9261         
9262 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9263
9264         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
9265           Thanks to Mike for pointing out the err of my ways.
9266
9267 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9268
9269         * Control.cs(PreProcessMessage): Moved menu handling back, but
9270           after all other key handling, to match MS (who handles Menu in
9271           DefWndProc)
9272         * Menu.cs (WndProc): Removed my brainfart
9273
9274 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9275
9276         * Control.cs(PreProcessMessage): Removed special menu handling 
9277         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
9278
9279 2005-12-07  Mike Kestner  <mkestner@novell.com>
9280
9281         * Control.cs : special case SYSKEYUP so that we can adjust keynav
9282         state according in tracker.
9283         * Menu.cs : promote tracker field to base class and provide a tracker
9284         lookup capability.  Add/Remove shortcuts dynamically if the top menu
9285         has a tracker. Unparent items that are removed from the collection.
9286         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
9287         * Theme*.cs: add always_show_hotkeys field to support configurability
9288         of mnemonic display.  win32 doesn't show mnemonics until Alt is
9289         pressed.
9290
9291 2005-12-07  Jackson Harper  <jackson@ximian.com>
9292
9293         * MdiChildContext.cs: Use Control.ResetCursor.
9294         * Control.cs: ResetCursor needs to set the property so that the
9295         correct XplatUI call gets made.
9296
9297 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9298
9299         * Control.cs: More fixes to make our key events match MS. We
9300           were not setting the modifier state on KeyData, and we were
9301           not generating any events when Alt was pressed with a key
9302           since handling of WM_SYSxxx was missing for the OnKey methods.
9303
9304 2005-12-07  Jackson Harper  <jackson@ximian.com>
9305
9306         * MdiChildContext.cs: reenable the sizing code.
9307         - When the mouse leaves a window reset its cursor.
9308
9309 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
9310
9311         * ThemeClearlooks.cs: Reflect latest Hwnd changes
9312
9313 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
9314
9315         * Hwnd.cs: Now using the theme 3d bordersize to calculate
9316           widths of Fixed3D borders
9317
9318 2005-12-07  Jackson Harper  <jackson@ximian.com>
9319
9320         * MdiClient.cs: Fix warnings. Earn Mike's love.
9321
9322 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
9323
9324         * ThemeClearlooks.cs:
9325           - Adjusted mouse over button color
9326           - Added first parts of CheckBox drawing
9327           - Added correct color for selected text background
9328           - Fixed ComboBox drawing
9329           - Added CPDrawBorder3D and CPDrawBorder
9330
9331 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
9332
9333         * XplatUIX11.cs: Added call to XBell for AudibleAlert
9334
9335 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
9336
9337         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
9338           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
9339           alert users via sound. We could add an enum arg with different
9340           types of alerts in the future
9341
9342 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
9343
9344         * Control.cs: Fix behaviour problems pointed out by Mike
9345
9346 2005-12-05  Mike Kestner  <mkestner@novell.com>
9347
9348         * StatusBarPanel.cs: add Invalidate method and hook it into all the
9349         prop setters.  Calls parent.Refresh for now, but could be maybe be
9350         optimized with an internal method on StatusBar at some point.
9351         [Fixes #76513]
9352
9353 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
9354
9355         * RichTextBox.cs: Implemented get_SelectionColor
9356
9357 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
9358
9359         * ThemeClearlooks.cs:
9360           - Removed dead code
9361           - Draw black button border only if button is Form.AcceptButton
9362           - Draw correct button color for pressed RadioButton if the mouse 
9363             has entered the button
9364           - Updated ProgressBar drawing!
9365           - Updated CPDrawSizeGrip drawing
9366           - Updated StatusBarPanel drawing
9367
9368 2005-12-05  Mike Kestner  <mkestner@novell.com>
9369
9370         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
9371         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
9372
9373 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
9374
9375         * ThemeClearlooks.cs: Initial check-in, activate with
9376           export MONO_THEME=clearlooks
9377         * ThemeEngine.cs: Added ThemeClearlooks
9378
9379 2005-12-03  Mike Kestner  <mkestner@novell.com>
9380
9381         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
9382         [Fixes #76897]
9383
9384 2005-12-02  Jackson Harper  <jackson@ximian.com>
9385
9386         * Form.cs: If the child form has no menu the default main menu is
9387         used as the active menu.
9388
9389 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
9390
9391         * ListBox.cs: Check if any items exist before trying to resolve 
9392           coordinates into items
9393
9394 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
9395
9396         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
9397           as the second color for the background hatch
9398
9399 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
9400
9401         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
9402         * RichTextBox.cs: FormatText position arguments are 1-based, now making
9403           sure that what we pass to FormatText is always 1-based. Fixes #76885
9404
9405 2005-11-29  Miguel de Icaza  <miguel@novell.com>
9406
9407         * NumericUpDown.cs (EndInit): When we are done initializing,
9408         reflect any updates on the UI.
9409
9410 2005-12-02  Jackson Harper  <jackson@ximian.com>
9411
9412         * ImplicitHScrollBar.cs:
9413         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
9414         their container controls.
9415         * TreeView.cs: Use the new implicit scrollbars.
9416
9417 2005-12-02  Jackson Harper  <jackson@ximian.com>
9418
9419         * TreeView.cs: Make top_node internal so the TreeNodeCollections
9420         can play with it.
9421         * TreeNodeCollection.cs: If we remove the topnode we need to
9422         update topnode to the next node in line.
9423         - When clearing nodes go through the same process as removing
9424         them, so they get depareneted and checked if they are top node.
9425
9426 2005-12-01  Jackson Harper  <jackson@ximian.com>
9427
9428         * TreeView.cs: When imagelists are used the image area is
9429         selectable as well as the text.
9430         - If there are no selected nodes select the first one.
9431         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
9432         so don't do it more then we need to.
9433
9434 2005-12-01  Jackson Harper  <jackson@ximian.com>
9435
9436         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
9437         that arrows can be scaled.
9438
9439 2005-12-01  Jackson Harper  <jackson@ximian.com>
9440
9441         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
9442         fail. Patch by Dieter Bremes
9443
9444 2005-11-30  Jackson Harper  <jackson@ximian.com>
9445
9446         * Form.cs: Property is 2.0 only
9447         * PrintDialog.cs: Signature fix.
9448
9449 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
9450
9451         * TextControl.cs: 
9452           - No longer artificially moves text 2 pixels down (now that we have
9453             borders this is no longer needed)
9454           - Added calcs for left, hanging and right indent
9455
9456 2005-11-23  Mike Kestner  <mkestner@novell.com>
9457
9458         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
9459
9460 2005-11-30  Jackson Harper  <jackson@ximian.com>
9461
9462         * MdiChildContext.cs: Set the cloned menus forms, as these don't
9463         get cloned as part of CloneMenu ().
9464         * Menu.cs: Make sure the parent of the items get set correctly
9465         when they are added.  And the owners are notified of the changes.
9466         * Form.cs: Create an ActiveMenu property, so that when MDI is used
9467         we can change the menu being displayed/handled by the form without
9468         changing the menu assosciated with the form.
9469         - Don't let Mdi children draw/handle menus.
9470         
9471 2005-11-30  Jackson Harper  <jackson@ximian.com>
9472
9473         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
9474         a MenuChanged event. Just to make the API a little more
9475         consistent.
9476         * MainMenu.cs:
9477         * MenuItem.cs: Use the new OnMenuChanged
9478         * MdiChildContext.cs: Handle menu merging.
9479         * Form.cs: Implement MergedMenu.
9480         
9481 2005-11-30  Jackson Harper  <jackson@ximian.com>
9482
9483         * Menu.cs: We were misusing Add. Add goes behind the specified
9484         index according to the docs, and does not replace the specified
9485         index. So I added an Insert method.
9486
9487 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
9488
9489         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
9490           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
9491           is for Jackson
9492         * RichTextBox.cs: Added calls to base for DnD events
9493
9494 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
9495
9496         * TextControl.cs:
9497           - Fixed drag-selection related crash; style fixes
9498           - Implemented undo class
9499             o Implemented method to capture document state for specified
9500               range in document tree
9501             o Implemented method to restore captured document state
9502             o Implemented cursor tracking
9503             o Implemented basic undo stack
9504           - Added undo cursor tracking to methods altering cursor location
9505           - Added undo tracking to selection deletion (still missing
9506             other text-altering hookups)
9507         * RichTextBox.cs:
9508           - Added SelectionLength property
9509           - Implemented CanPaste()
9510           - Implemented Paste()
9511           - Added missing protected methods
9512           - Fixed RTF->Document conversion; now uses font index 0 and color 
9513             index 0 as the default font for the parsed text
9514           - Fixed RTF<->Document font size translation
9515           - Fixed RTF generation, now properly handles cross-tag boundaries
9516             for single line selection
9517           - No longer always appends blank line to generated RTF
9518           - Removed TODOs
9519           - Added missing attributes
9520           - Hooked up undo-related methods
9521         * TextBoxBase.cs:
9522           - Implemented Copy()
9523           - Implemented Paste()
9524           - Implemented Cut()
9525           - Fixed caret mis-behaviour on backspace across line-boundaries
9526
9527 2005-11-29  Jackson Harper  <jackson@ximian.com>
9528
9529         * MdiClient.cs: Add a method for activating mdi children. Very
9530         basic right now. I imagine someday it might need more girth.
9531         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
9532         children windows names are added to the menu item.
9533         * ThemeWin32Classic.cs: Draw the arrow if the item is an
9534         mdilist. This happens regardless of whether or not there are any
9535         mdi windows to see in the list, and according to my tests happens
9536         before the items are even added. Also happens if there isn't even
9537         an mdi client to get windows from.
9538
9539 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
9540
9541         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
9542         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
9543
9544 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
9545
9546         * DataGridTableStyle.cs:
9547           - Create always the styles for the missing columns even if they are
9548             provided by the user (not default table style)
9549         * DataGrid.cs:
9550           - Fixes bug 76770
9551           - Fixes SetDataBinding (always re-attach source)
9552           - Fixes SetNewDataSource (only clear styles if they are not for 
9553             this source)
9554          -  Expands OnTableStylesCollectionChanged to handle style refresh 
9555             and remove properly
9556
9557 2005-11-29  Jackson Harper  <jackson@ximian.com>
9558
9559         * FileDialog.cs: Implement missing bits, remove some dead
9560         code.
9561         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
9562         creation of the panel so that the options set on the dialog are
9563         seen when the panel is created.
9564         * TreeView.cs: raise a click when items are clicked.
9565         
9566 2005-11-29  Jackson Harper  <jackson@ximian.com>
9567
9568         * MdiClient.cs: Pass some signature methods through to base.
9569
9570 2005-11-28  Jackson Harper  <jackson@ximian.com>
9571
9572         * ListView.cs: Raise the click event when items are clicked.
9573
9574 2005-11-28  Jackson Harper  <jackson@ximian.com>
9575
9576         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
9577         a nullref.
9578
9579 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
9580
9581         * ThemeNice.cs: - Removed 1 pixel bitmaps
9582           - Use SmoothingMode.AntiAlias where it makes sense
9583             (ScrollButton arrow for example)
9584           - Enhanced Button focus drawing
9585           - Fixed ComboBox drawing (no artefacts anymore, focus
9586             rectangle is back again, reduced size of ComboButton, etc.)
9587           - Fixed RadioButton focus drawing for Appearence.Button
9588           - Slight ScrollButton redesign
9589           - Some LinearGradientBrush size fixes
9590           - GroupBoxes have now rounded edges
9591           - Fixed StatusBar drawing
9592
9593 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
9594
9595         * ThemeNice.cs: - Remove dead code
9596           - use correct background colors for menus, etc.
9597           - Fake pixel drawing with 1 pixel bitmaps
9598
9599 2005-11-24  Jackson Harper  <jackson@ximian.com>
9600
9601         * MdiClient.cs: Size the scrollbars when resizing the window.
9602         - Resize the maximized windows when the client is resized
9603         * Form.cs: Make the child context available
9604         
9605 2005-11-23  Jackson Harper  <jackson@ximian.com>
9606
9607         * MdiChildContext.cs: Don't size windows if they are maximized.
9608
9609 2005-11-23  Mike Kestner  <mkestner@novell.com>
9610
9611         * ContextMenu.cs: use MenuTracker.
9612         * Control.cs: remove menu handle usage.
9613         * Form.cs: remove menu handle usage.
9614         * Hwnd.cs: remove menu handle usage.
9615         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
9616         motion and clicks to the new Tracker handlers.
9617         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
9618         and handle usage.
9619         * MenuAPI.cs: refactored to combine popup and menubar event handling.
9620         Killed the MENU and MENUITEM data types and associated collections
9621         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
9622         MenuTracker class that exposes the leftovers from the old MenuAPI
9623         static methods. Restructured Capture handling so that only one grab is
9624         done for the entire menu hierarchy instead of handing off grabs to
9625         submenus. Tracker now has an invisible control to Capture when active.
9626         * MenuItem.cs: add sizing accessors, kill Create
9627         and handle usage.
9628         * Theme.cs: remove menu handle and MENU(ITEM) usage.
9629         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
9630         MENU(ITEM). remove menu handle usage, use Menu directly.
9631         * XplatUIDriver.cs: remove menu handle usage.
9632         * XplatUIOSX.cs: remove menu handle usage.
9633         * XplatUIWin32.cs: remove menu handle usage.
9634         * XplatUIX11.cs: remove menu handle usage.
9635
9636 2005-11-22  Jackson Harper  <jackson@ximian.com>
9637
9638         * Hwnd.cs: Don't compute the menu size for
9639         DefaultClientRectangle.
9640         - Reenable menu sizes being computed for GetClienRectangle.
9641         * Form.cs: Remove comment of trechery
9642         
9643 2005-11-22  Jackson Harper  <jackson@ximian.com>
9644
9645         * Hwnd.cs: The adjustments for the menu bar are made when it is
9646         attached to the form.
9647
9648 2005-11-19  Jackson Harper  <jackson@ximian.com>
9649
9650         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
9651         (just like on windows).
9652
9653 2005-11-19  Jackson Harper  <jackson@ximian.com>
9654
9655         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
9656         use real buttons anymore because they are in non client area. The
9657         one TODO here is that I need to somehow invalidate a section of
9658         the non client area.
9659
9660 2005-11-18  Jackson Harper  <jackson@ximian.com>
9661
9662         * Control.cs: Put the enum check back in now that MDI doesnt have
9663         to use this to set border styles.
9664         * Form.cs: Only set mdi child windows borders if the handle has
9665         been created.
9666         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
9667         this directly on to the driver.
9668         - Get the move start position before adjusting for the titlebar
9669         height, this fixes the windows "skipping" when they are first
9670         moved.
9671
9672 2005-11-18  Jackson Harper  <jackson@ximian.com>
9673
9674         * XplatUIX11.cs: Just compute the mdi borders separately as they
9675         don't totally match up with normal form borders.
9676
9677 2005-11-18  Jackson Harper  <jackson@ximian.com>
9678
9679         * Control.cs: Set WS_ styles for borders, so that the driver does
9680         not have to retrieve the control instance to figure out what kind
9681         of borders it should have.
9682         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
9683         driver can know its an mdi child easily.
9684         * XplatUIX11.cs: Get the border styles and whether the window is
9685         MDI from the Styles and ExStyles params instead of having to get a
9686         control. This prevents a chicken and egg problem.       
9687
9688 2005-11-18  Jackson Harper  <jackson@ximian.com>
9689
9690         * MdiClient.cs: Fix typo so scrollbars show up correctly.
9691
9692 2005-11-18  Jackson Harper  <jackson@ximian.com>
9693
9694         * MdiClient.cs: Calculate when to add and remove scrollbars
9695         correctly.
9696         * MdiChildContext.cs: Adjust the y position to take the titlebar
9697         into account.
9698         - No height for FormBorderStyle.None
9699
9700 2005-11-18  Jackson Harper  <jackson@ximian.com>
9701
9702         * Control.cs: Allow non enum values to be used for
9703         InternalBorderStyle.  MDI does this to set a special border style.
9704         - New utility methods for converting points to/from client coords
9705         - Add the newly created control to the Controls collection before
9706         updating its style. This way UpdateStyle can walk the control
9707         heirarchy to find the control if needed.
9708         so I don't need to create a new Point object all the time.
9709         * Form.cs: Let MDI windows handle their border styles.
9710         - Set styles on MDI windows so the correct title style is derived.
9711         * MdiChildContext.cs: Move all the painting and window handling
9712         into the non client area.
9713         - Use correct sizing and put correct buttons on frames based on
9714         the FormBorderStyle.
9715         - Notify the mdi client about scrolling
9716         - Need to handle the buttons ourselves now, because they are all
9717         in non client areas and we can't add controls there.
9718         * MdiClient.cs: Halfway to scrolling, this implementation is
9719         somewhat broken though, we need to check to make sure other
9720         windows aren't causing scrolling before removing the bars. Also
9721         the bars need to be drawn on top, maybe I can switch implicit
9722         controls to be on top.
9723         * Hwnd.cs: caption_height and tool_caption_height are now
9724         properties of an hwnd, this way they can be set by the driver
9725         based on the type of window they are.  In X11 the window manager
9726         handles the decorations so caption_height is zero unless its an
9727         MDI window.
9728         - Add 3 pixel borders for MDI windows (0xFFFF).
9729         - Get rid of some code duplication, have DefaultClientRectanle
9730         just call GetClientRectangle.
9731         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
9732         Hwnd now.
9733         - Set border styles differently for mdi windows.
9734         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
9735         Hwnd now.
9736         
9737 2005-11-15  Mike Kestner  <mkestner@novell.com>
9738
9739         * Menu.cs: when adding an item to the collection, if item is already 
9740         parented, remove it from the parent.
9741
9742 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
9743
9744         * X11DesktopColors.cs: Added KDE support
9745
9746 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
9747
9748         * XplatUIWin32.cs: 
9749           - Clipboard methods now can translate Rtf format
9750           - No longer removes clipboard contents whenever a new format is added
9751             to allow placing multiple formats on the clipboard
9752         * Clipboard.cs: Clipboard now supports getting a IDataObject and
9753           will place all formats contained in it onto the clipboard. Also
9754           now cleans the clipboard before placing a new object onto it
9755         * RichTextBox.cs:
9756           - Implemented set_Rtf
9757           - Implemented set_SelectedRtf
9758           - Created InsertRTFFromStream() method to allow single code base
9759             for all properties and methods that insert RTF into document
9760           - Removed debug output
9761         * TextControl.cs:
9762           - Fixed Delete(int) to fix up line numbers
9763           - Fixed ReplaceSelection to combine start and end line
9764           - Fixed serious DeleteChars bug that would leave the document tree
9765             broken
9766           - Improved DumpTree with several logic checks to detect broken
9767             document trees
9768           - Removed debug lines
9769           - Fixed Caret.WordForward/WordBack moving code, now always also 
9770             updates caret.tag (fixes crash when word-selecting across tag
9771             boundaries via keyboard)
9772           - Added Insert() method for inserting multiline text into documents
9773           - Fixed DeleteChars() calculation errors that would cause a broken
9774             tag chain with multiple tag lines
9775           - DeleteChars() no longer crashes on multi-tag lines if not all tags
9776           - Split() no longer moves caret if split is at caret location
9777           - ReplaceSelection() now updates the cursor and re-displays it
9778           - ReplaceSelection() now uses new Insert() method to avoid code
9779             duplication
9780           - FormatText() can now handle formatting partial lines
9781         * TextBoxBase.cs:
9782           - Append now uses new TextControl.Insert() method (this avoids 
9783             duplicate code)
9784           - Implemented Ctrl-X (Cut) (
9785           - Implemented Ctrl-C (Copy)
9786           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
9787             regeneration when pasting text; roundtripping Copy&Paste within
9788             edit control still fails due to some calculation bugs in GenerateRTF)
9789           - The Delete key will now remove the current selection if it is visible
9790         * TextBox.cs: Removed debug lines
9791         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
9792           driver to be initialized and can't therefore be done via a static ctor)
9793
9794 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
9795
9796         * TextControl.cs: Added backend code for finding char arrays and strings
9797         * TextBoxBase.cs:
9798           - Added mouse wheel scroll support
9799           - Added support for VScroll and HScroll events
9800         * RichTextBox.cs:
9801           - Implemented all seven Find() variants
9802           - Implemented GetCharFromPosition()
9803           - Implemented GetCharIndexFromPosition()
9804           - Implemented GetLineFromIndex()
9805           - Implemented GetPositionFromCharIndex();
9806           - Implemented SaveFile for PlainText and UnicodeText
9807           - Fixed set_Font, now setting a new font applies that font to
9808             the whole document
9809           - Implemented generic Document to RTF converter
9810           - Implemented SaveFile for RichText format (still missing unicode
9811             conversion for non-ansi chars)
9812           - Implemented get_Rtf
9813           - Implemented get_SelectedRtf
9814
9815 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
9816
9817         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
9818           to allow any captures to be released before triggering OnClick. This
9819           way a click handler may capture the mouse without interference.
9820         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
9821           This way we send them even though X may not allow a grab (if the window
9822           isn't visible, for example)
9823
9824 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
9825
9826         * DataGridViewRowEventArgs.cs: DataGridView implementation
9827         * DataGridViewElement.cs: DataGridView implementation
9828         * DataGridViewComboBoxCell.cs: DataGridView implementation
9829         * DataGridViewDataErrorContexts.cs: DataGridView implementation
9830         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
9831         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
9832         * ImageLayout.cs: DataGridView implementation
9833         * DataGridViewComboBoxColumn.cs: DataGridView implementation
9834         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
9835         * DataGridViewSelectionMode.cs: DataGridView implementation
9836         * IDataGridViewEditingControl.cs: DataGridView implementation
9837         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
9838         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
9839         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
9840         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
9841         * DataGridViewColumnSortMode.cs: DataGridView implementation
9842         * DataGridView.cs: DataGridView implementation
9843         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
9844         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
9845         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
9846         * Padding.cs: DataGridView implementation
9847         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
9848         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
9849         * DataGridViewRowEventHandler.cs: DataGridView implementation
9850         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
9851         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
9852         * DataGridViewButtonCell.cs: DataGridView implementation
9853         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
9854         * DataGridViewEditMode.cs: DataGridView implementation
9855         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
9856         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
9857         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
9858         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
9859         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
9860         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
9861         * DataGridViewCellEventHandler.cs: DataGridView implementation
9862         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
9863         * DataGridViewCellStyleConverter.cs: DataGridView implementation
9864         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
9865         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
9866         * DataGridViewColumnEventArgs.cs: DataGridView implementation
9867         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
9868         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
9869         * QuestionEventArgs.cs: DataGridView implementation
9870         * IDataGridViewEditingCell.cs: DataGridView implementation
9871         * DataGridViewTriState.cs: DataGridView implementation
9872         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
9873         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
9874         * DataGridViewColumnCollection.cs: DataGridView implementation
9875         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
9876         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
9877         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
9878         * DataGridViewColumn.cs: DataGridView implementation
9879         * DataGridViewCellBorderStyle.cs: DataGridView implementation
9880         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
9881         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
9882         * DataGridViewRow.cs: DataGridView implementation
9883         * DataGridViewImageCellLayout.cs: DataGridView implementation
9884         * DataGridViewImageCell.cs: DataGridView implementation
9885         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
9886         * DataGridViewCheckBoxCell.cs: DataGridView implementation
9887         * DataGridViewHeaderCell.cs: DataGridView implementation
9888         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
9889         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
9890         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
9891         * DataGridViewTextBoxColumn.cs: DataGridView implementation
9892         * QuestionEventHandler.cs: DataGridView implementation
9893         * DataGridViewCellStyleScopes.cs: DataGridView implementation
9894         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
9895         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
9896         * DataGridViewCell.cs: DataGridView implementation
9897         * DataGridViewCellEventArgs.cs: DataGridView implementation
9898         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
9899         * DataGridViewCellStyle.cs: DataGridView implementation
9900         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
9901         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
9902         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
9903         * TextFormatFlags.cs: DataGridView implementation
9904         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
9905         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
9906         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
9907         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
9908         * DataGridViewButtonColumn.cs: DataGridView implementation
9909         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
9910         * HandledMouseEventArgs.cs: DataGridView implementation
9911         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
9912         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
9913         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
9914         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
9915         * DataGridViewRowCollection.cs: DataGridView implementation
9916         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
9917         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
9918         * DataGridViewHitTestType.cs: DataGridView implementation
9919         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
9920         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
9921         * DataGridViewColumnEventHandler.cs: DataGridView implementation
9922         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
9923         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
9924         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
9925         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
9926         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
9927         * DataGridViewContentAlignment.cs: DataGridView implementation
9928         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
9929         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
9930         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
9931         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
9932         * DataGridViewPaintParts.cs: DataGridView implementation
9933         * DataGridViewCellCollection.cs: DataGridView implementation
9934         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
9935         * DataGridViewImageColumn.cs: DataGridView implementation
9936         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
9937         * DataGridViewElementStates.cs: DataGridView implementation
9938         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
9939         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
9940         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
9941         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
9942         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
9943         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
9944         * DataGridViewRowHeaderCell.cs: DataGridView implementation
9945         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
9946         * DataGridViewTextBoxCell.cs: DataGridView implementation
9947         * DataGridViewBand.cs: DataGridView implementation
9948         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
9949         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
9950         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
9951         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
9952         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
9953         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
9954         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
9955         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
9956         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
9957         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
9958         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
9959
9960 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
9961
9962         * ThemeWin32Classic.cs: 
9963           - Draw the outside focus rectangle around buttons
9964           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
9965             doesn't use end caps for every dash of a line anymore. This
9966             workaround ignores the forecolor.
9967
9968 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
9969
9970         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
9971           endian safe.
9972
9973 2005-11-07  Jackson Harper  <jackson@ximian.com>
9974
9975         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
9976
9977 2005-11-07  Jackson Harper  <jackson@ximian.com>
9978
9979         * ScrollableControl.cs: Calculate the maximum and change vars
9980         (more) correctly so that scrollbars appear as a sensible size.
9981
9982 2005-11-04  Jackson Harper  <jackson@ximian.com>
9983
9984         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
9985         collection.
9986         * TreeView.cs: When the tree is sorted null out the top_node so
9987         that it is recalculated.
9988         - Use dotted lines instead of dashed lines to match MS better.
9989
9990 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
9991
9992         * ListView.cs: 
9993           - Implements key search for items. Useful when browsing files with FileDialog
9994           - When changing view mode or when clear the items reset scrollbar positions
9995
9996 2005-11-04  Jackson Harper  <jackson@ximian.com>
9997
9998         * CurrencyManager.cs: Implement the MetaDataChanged event, the
9999         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
10000         as to what the method may do as there is no real way of creating a
10001         derived CurrencyManager and calling the method. 
10002
10003 2005-11-03  Jackson Harper  <jackson@ximian.com>
10004
10005         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
10006         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
10007         method which seems to just be used internally to refresh the tabs.
10008
10009 2005-11-03  Jackson Harper  <jackson@ximian.com>
10010
10011         * TabControl.cs: Implement the remove method. Fix some broken
10012         comments.
10013
10014 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10015
10016         * DateTimePicker.cs:
10017           - Added missing DateTimePickerAccessibleObject class
10018           - Added missing events
10019           - Added OnFontChanged method
10020         * Form.cs: Added missing attributes
10021         * TreeView.cs: Added missing attributes
10022
10023 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
10024
10025         * GridItemCollection.cs: Fix signatures
10026
10027 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10028
10029         * XplatUI.cs: Updated build rev/date
10030         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
10031           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
10032         * Application.cs: Trigger context-specific ExitThread events
10033
10034 2005-11-03  Jackson Harper  <jackson@ximian.com>
10035
10036         * Menu.cs:
10037         * MainMenu.cs:
10038         * GridTableStylesCollection.cs:
10039         * Timer.cs:
10040         * TabPage.cs:
10041         * HelpProvider.cs:
10042         * StatusBar.cs:
10043         * MonthCalendar.cs: Signature fixes
10044
10045 2005-11-03  Jackson Harper  <jackson@ximian.com>
10046
10047         * TreeNodeCollection.cs: Remove should not be virtual.
10048         * TreeView.cs: Implement the last of the missing methods.
10049
10050 2005-11-03  Jackson Harper  <jackson@ximian.com>
10051
10052         * TreeNodeConverter.cs: Implement to get off my class-status back.
10053
10054 2005-11-03  Jackson Harper  <jackson@ximian.com>
10055
10056         * TreeView.cs: Hookup the bits for drag and drop.
10057         * TreeNode.cs: Don't cache the tree_view or index anymore, now
10058         that nodes can be moved from tree to tree easily this just causes
10059         all sorts of problems.
10060         * TreeNodeCollection: Don't need to give treenodes an index and
10061         treeview anymore when they are added, these are computed on the
10062         fly. Also make sure to remove a node before its added.
10063
10064 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
10065
10066         * TextControl.cs:
10067           - Added CaretSelection enum
10068           - Added comparison methods to Marker struct, makes selection code
10069             more readable
10070           - Added SelectionStart and SelectionEnd as 'moveable' location for
10071             the CaretDirection enum and handler
10072           - Added selection_prev variable to track optimized invalidation for
10073             word and line selection
10074           - Added SelectionVisible property (returns true if there is a valid 
10075             selection)
10076           - Switched CaretHasFocus to only display the caret if there is no
10077             visible selection
10078           - Avoiding StringBuilder.ToString to retrieve a single char, instead
10079             using the direct character index; should be much faster
10080           - Added various conditional debug statements
10081           - Fixed invalidation calculation for selection ranges
10082           - Added ExpandSelection() method to support word and line selection
10083           - Switched SetSelectionToCaret to use new Marker compare overloads
10084           - Added central IsWordSeparator() method to determine word 
10085             separators/whitespace and FindWordSeparator() to streamline common
10086             usage of IsWordSeparator()
10087         * TextBoxBase.cs:
10088           - Removed unneeded grabbed variable, it was just mirroring
10089             Control.Capture
10090           - No longer firing OnTextChanged event when Text setter is called,
10091             since the base will fire the event for us
10092           - Added handling of Ctrl-Up/Down selection
10093           - Added handling of Shift-Cursorkey selection
10094           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
10095             words
10096           - Added handling of Shift and Ctrl-Shift-Home/End selection
10097           - Removed some debug output
10098           - Added handling for single/double/tripple-click to place caret/
10099             select word/select line respectively (Fixes bug #76031)
10100           - Added support for drag expansion of word/line selection
10101         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
10102           current selection
10103
10104 2005-11-02  Jackson Harper  <jackson@ximian.com>
10105
10106         * X11Dnd.cs: If the drag is going to and from a MWF window just
10107         copy the data instead of sending it out through the X Selection
10108         mechanism.
10109
10110 2005-11-02  Jackson Harper  <jackson@ximian.com>
10111
10112         * X11Dnd.cs:
10113         * XplatUIX11.cs: When in a drag we don't want motion notify
10114         messages to get passed on to the other controls. This prevents
10115         mouse move messages from showing up in the drag source.
10116
10117 2005-11-02  Jackson Harper  <jackson@ximian.com>
10118
10119         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
10120         the correct button is release to end a drag.
10121         * XplatUIX11.cs: Make the button state internal so the drag system
10122         can access it.  Dragging needs to know about all button releases,
10123         not just left button.
10124
10125 2005-11-02  Miguel de Icaza  <miguel@novell.com>
10126
10127         * Form.cs (Icon): If the icon is null, reset the icon to the
10128         default value. 
10129
10130         * Cursor.cs: When writing the AND-mask bitmap do not include the
10131         number of colors, but hardcode those to two (black and white),
10132         fixes the loading of color cursors (Paint Dot Net).
10133
10134         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
10135         turn off autoscaling.
10136
10137         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
10138
10139 2005-11-02  Jackson Harper  <jackson@ximian.com>
10140
10141         * X11Dnd.cs: Make sure to send a status message if the pointer
10142         enters a control that can not accept a drop, otherwise the cursor
10143         isn't updated correctly. Also tried to compress the lines of code
10144         a bit.
10145
10146 2005-11-02  Jackson Harper  <jackson@ximian.com>
10147
10148         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
10149         set actions correctly.  This isn't perfect as XDND and win32 have
10150         some differences on how you allow actions. I'll clear this up by
10151         adding a path for drag from MWF to MWF windows.
10152         * XplatUIX11.cs: Hook into the dnd system.
10153
10154 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
10155
10156         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
10157         previously shown but they are no longer need it. Very obvious when 
10158         browsing files with FileDialog.
10159
10160 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
10161
10162         * Control.cs: We always need to call OnPaintBackground. We pretty much
10163           ignore AllPaintingInWmPaint and always do the painting there, whether 
10164           it's set or not, since we always ignore the WM_ERASEBKGND message 
10165           (which we don't generate on X11). This fixes #76616.
10166         * Panel.cs: Removed unneeded background painting. This happens properly
10167           in Control.cs already
10168
10169 2005-10-31  Mike Kestner  <mkestner@novell.com>
10170
10171         * Menu.cs: Add items to collection before setting their index.
10172         * MenuItem.cs : add range checking with ArgumentException like MS.
10173         [Fixes #76510]
10174
10175 2005-10-31  Jackson Harper  <jackson@ximian.com>
10176
10177         * ListBox.cs: Invalidate if the area is visible at all not just
10178         contained in the visible rect. Fixes unselection of semi visible
10179         items.
10180
10181 2005-10-31  Jackson Harper  <jackson@ximian.com>
10182
10183         * Control.cs: Consistently name the dnd methods. Make them
10184         internal so we can override them to match some MS behavoir
10185         internally.
10186         * Win32DnD.cs: Use the new consistent names.
10187
10188 2005-10-31  Jackson Harper  <jackson@ximian.com>
10189
10190         * TreeView.cs: Don't draw the selected node when we lose focus.
10191
10192 2005-10-31  Jackson Harper  <jackson@ximian.com>
10193
10194         * X11Dnd.cs: We still need to reset the state even though a full
10195         reset isn't being done, otherwise status's still get sent all over
10196         the place.
10197
10198 2005-10-31  Jackson Harper  <jackson@ximian.com>
10199
10200         * Control.cs: Make the dnd_aware flag internal so the dnd
10201         subsystem can check it. Catch exceptions thrown in dnd handlers to
10202         match MS behavoir.
10203         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
10204         * X11Dnd.cs: Handle null data in the converters. Set the XDND
10205         version when sending a XdndEnter. Use the control/hwnd dnd_aware
10206         flags to reduce the number of dnd enters/status's sent.
10207
10208 2005-10-31  Jackson Harper  <jackson@ximian.com>
10209
10210         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
10211
10212 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
10213
10214         * PictureBox.cs: Fixes 76512
10215
10216 2005-10-28  Jackson Harper  <jackson@ximian.com>
10217
10218         * X11Dnd.cs: Early implementation to support winforms being a drag
10219         source for data on X11. Also restructured the converters so they
10220         can go both ways now.
10221         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
10222         
10223 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
10224
10225         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
10226           clipboard requests
10227
10228 2005-10-27  Jackson Harper  <jackson@ximian.com>
10229
10230         * TreeNode.cs: Implement serialization so my DnD examples will work.
10231
10232 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
10233
10234         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
10235           TreeView.cs: Don't dispose objects that are not owned.
10236           
10237 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
10238
10239         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
10240           should retrieve the current cursor and report that, but XplatUI
10241           doesn't (yet) have an interface for that (and I'm not sure I even
10242           can, on X11)
10243         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
10244           until any message loop processing is done (and the WM_SETCURSOR
10245           replaces the cursor to the proper one)
10246         * XplatUIX11.cs: 
10247           - Fixed override behaviour, we can't set the cursor globally on X11, 
10248             just for our windows.
10249           - Invalidating the System.Drawing X11 display handle when we are
10250             shutting down
10251         * Control.cs: Fix to make csc happy
10252
10253 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
10254
10255         * TextBoxBase.cs: 
10256           - get_Text: Add last line (without trailing newline) to returned
10257             value (Fixes 76212)
10258           - get_TextLength: Count last line in returned length
10259           - ToString: Call Text property instead of duplicating code
10260
10261 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
10262
10263         * ImageList.cs: Dispose ImageAttributes objects.
10264
10265 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
10266
10267         * ImageList.cs: Use attribute constructors with less arguments where
10268           possible.
10269
10270 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
10271
10272         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
10273           Use typeof instead of strings when assembly is referenced. Added
10274           some more comments.
10275
10276 2005-10-21  Jackson Harper  <jackson@ximian.com>
10277
10278         * ListView.cs: Raise a double click event. Also tried to somewhat
10279         fix when the selectedindexchanged event is raised. Its still
10280         broken though.
10281
10282 2005-10-21  Jackson Harper  <jackson@ximian.com>
10283
10284         * TreeView.cs: New method to invalidate the plus minus area of a
10285         node without invalidating the whole node (maybe this can be used
10286         in some more places).
10287         * TreeNodeCollection.cs: When adding to an empty node we need to
10288         invalidate its plus minus area so the little block shows up.
10289         
10290 2005-10-21  Jackson Harper  <jackson@ximian.com>
10291
10292         * TreeView.cs: Make sure that when we invalidate a node the bounds
10293         are big enough to cover the selected box and the focus
10294         rectangle. Use a different colour for the lines connecting nodes
10295         so they show up with all themes.
10296
10297 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
10298
10299         * NativeWindow.cs: Don't call anything that could call into the driver,
10300           we might be on a different thread.
10301
10302 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
10303
10304         * Control.cs(Dispose): Since Dispose might run on a different thread,
10305           make sure that we call methods that could call into the driver via
10306           invoke, to avoid thread issues
10307
10308 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
10309
10310         * XplatUI.cs: Removed finalizer
10311         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
10312           not allowing to be called on the finalizer thread.
10313
10314 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
10315
10316         * ImageList.cs:
10317           - Reverted r51889 and r51891.
10318           - Added ImageListItem class that stores unmodified image items and image
10319             properties required to create list images until handle is created.
10320           - Added AddItem and moved image creation logic to AddItemInternal.
10321           - Added CreateHandle method that creates images based on unmodified items.
10322           - Added DestroyHandle that changes state to store unmodified items.
10323           - Add and AddStrip methods no more create handle.
10324           - ReduceColorDepth has no return value.
10325           - Dispose destroys handle.
10326           - Modified other methods to reflect the above changes.
10327           - Implemented key support.
10328           - Added profile 2.0 members and attributes.
10329           - Added private Reset and ShouldSerialize methods that provide the same
10330             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
10331             them as they are private.
10332           - Added some more comments about implementation details.
10333
10334 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
10335
10336         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
10337
10338 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
10339
10340         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
10341
10342 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
10343
10344         * DataGridDrawingLogic.cs: Fixes column hit calcultation
10345         * DataGridColumnStyle.cs: Remove debug message
10346
10347 2005-10-20  Jackson Harper  <jackson@ximian.com>
10348
10349         * TreeView.cs: We can always get input keys regardless of whether
10350         or not editing is enabled. They are used for navigation.
10351
10352 2005-10-20  Jackson Harper  <jackson@ximian.com>
10353
10354         * TreeNode.cs: Use the viewport rect for determining if a node
10355         needs to be moved for visibility. Don't use Begin/End edit. This
10356         calls a full refresh when its done.
10357         * TreeView.cs: New SetBottom works correctly.  Make the viewport
10358         rect property internal so the treenodes can see it. When clicking
10359         on a node we need to ensure that its visible because it might just
10360         be partly visible when clicked.
10361
10362 2005-10-20  Jackson Harper  <jackson@ximian.com>
10363
10364         * TreeNodeCollection.cs: Remove debug code.
10365
10366 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
10367
10368         * Datagrid.cs: Implements column sorting in Datagrid
10369         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
10370
10371 2005-10-20  Jackson Harper  <jackson@ximian.com>
10372
10373         * TreeNodeCollection.cs: Remove items properly. Update the correct
10374         area after removing them.
10375
10376 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
10377
10378         * Datagrid.cs: Should not call base.OnPaintBackground
10379
10380 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
10381
10382         * XplatUIX11.cs (GetMessage):
10383           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
10384             window instead of client window
10385           - Now properly calculates NC_xBUTTONUP message coordinates
10386           - ScreenToMenu now properly calculates it's coordinates of whole 
10387             window, since menus are in the whole window, not in the client
10388             window
10389           - Added WholeToScreen coordinate translation method
10390
10391 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
10392
10393         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
10394           want to return a message, loop back to the beginning of the function
10395           and grab the next real message to process instead.
10396
10397 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
10398
10399         * Splitter.cs: Properly set limits if no filler control is used
10400
10401 2005-10-19  Jackson Harper  <jackson@ximian.com>
10402
10403         * ColorDialog.cs: Don't show the help button if it is not enabled
10404         instead of disabling it (this is what MS does). Don't create the
10405         panel until the dialog is run, otherwise the vars (such as
10406         ShowHelp) are not set yet.
10407
10408 2005-10-19  Jackson Harper  <jackson@ximian.com>
10409
10410         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
10411         are reduced when adding nodes.
10412         * TreeNode.cs:
10413         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
10414         tree.
10415         
10416 2005-10-19  Jackson Harper  <jackson@ximian.com>
10417
10418         * FolderBrowserDialog.cs: End editing our treeview so the window
10419         actually gets refreshed.
10420
10421 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
10422
10423         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
10424           Obsoleted handling of WM_ERASEBKGND, now always draws our background
10425           inside of WM_PAINT
10426
10427 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
10428
10429         * MenuAPI.cs: Returns after Hidding window
10430         * XplatUIX11.cs: Added TODO found while debugging menu issues
10431
10432 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
10433
10434         * XplatUIX11.cs: Do not re-map the whole window when it's size
10435           becomes non-zero unless it's supposed to be actually visible
10436
10437 2005-10-18  Jackson Harper  <jackson@ximian.com>
10438
10439         * TreeView.cs: We don't need to keep a count anymore.
10440         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
10441         use the Grow method.
10442
10443 2005-10-18  Jackson Harper  <jackson@ximian.com>
10444
10445         * TreeNodeCollection.cs: Insert is not supported on arrays, so
10446         implement it manually here.
10447
10448 2005-10-18  Jackson Harper  <jackson@ximian.com>
10449
10450         * ImageList.cs: Dont kill the list when the colour depth is
10451         changed, just change the colour depth of all the images.
10452         - Same goes for setting the image size. Just resize them all
10453         instead of killing the list softly.
10454
10455 2005-10-18  Jackson Harper  <jackson@ximian.com>
10456
10457         * Control.cs: Don't invalidate empty rectangles.
10458
10459 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
10460
10461         * ListViewItem.cs:
10462           - Adds checked item to the Checked/Item lists (where empty before)
10463           - Do not add items to the Selected lists if they are already present
10464         * ListView.cs:
10465           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
10466           - When deleting items make sure that we delete them for the Selected
10467           and Checked list also.
10468
10469 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
10470
10471         * Label.cs: Dispose objects no longer used
10472         * ThemeWin32Classic.cs: Dispose objects no longer used
10473
10474 2005-10-18  Jackson Harper  <jackson@ximian.com>
10475
10476         * TabControl.cs: Don't refresh the whole control when the tabs are
10477         scrolled, we just need to refresh the tab area.
10478
10479 2005-10-17  Jackson Harper  <jackson@ximian.com>
10480
10481         * XplatUIX11.cs: Compress code a little bit. Only calculate the
10482         after handle when we need it.
10483
10484 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
10485
10486         * Control.cs: When the parent size changes, recalculate anchor 
10487           positions. Partial fix for #76462
10488
10489 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
10490
10491         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
10492           drawn. Fixes #76462
10493
10494 2005-10-17  Jackson Harper  <jackson@ximian.com>
10495
10496         * MonthCalendar.cs: Don't create the numeric up down until our
10497         handle is created. Otherwise our handle is created in the
10498         constructor and we don't know if we are a WS_CHILD or WS_POPUP
10499         yet.
10500
10501 2005-10-17  Jackson Harper  <jackson@ximian.com>
10502
10503         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
10504         correctly.
10505
10506 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
10507         * TreeNode.cs : small logical fix (was using local var instead of field)
10508         
10509 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
10510
10511         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
10512
10513 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
10514
10515         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
10516
10517 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
10518
10519         * Control.cs: 
10520           - Re-implemented anchoring code. My first version was really broken.
10521             This fixes bug #76033. Unlike the previous implementation we will
10522             no longer have round errors since all numbers are calculated from
10523             scratch every time. Removed various anchor-related obsolete vars.
10524           - InitLayout no longer causes layout event firing and layout to be 
10525             performed
10526
10527 2005-10-16  Jackson Harper  <jackson@ximian.com>
10528
10529         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
10530         which was broken).
10531
10532 2005-10-16  Jackson Harper  <jackson@ximian.com>
10533
10534         * TabControl.cs: Remove debug code.
10535
10536 2005-10-16  Jackson Harper  <jackson@ximian.com>
10537
10538         * XEventQueue.cs: Increase the default queue size (very simple
10539         apps needed to grow the queue).
10540         * Hwnd.cs: No finalizer so we don't need to suppress
10541         finalization. Compute the invalid area manually so a new rectangle
10542         does not newto be created.
10543         * ScrollableControl.cs: Don't set any params (otherwise visibility
10544         isn't set correctly).
10545         * MdiChildContext.cs: New constructor takes the mdi parent so it
10546         doesn't have to be computed and avoids a crash on windows. Draw
10547         the window icon properly, and allow the text to be seen.
10548         * Form.cs: Use new MdiChildContext constructor. Make sure the
10549         child context isn't null in wndproc.
10550         * TabControl.cs: Don't set focus, this is muddling keyboard
10551         behavoir. Expand the tab rows when a window size increase will
10552         allow extra tabs to be seen. Don't allow tabs smaller than the
10553         width of a window to be scrolled out of view.
10554         * TreeNode.cs:
10555         * TreeView.cs: Use measure string to calculate a nodes width, the
10556         width is cached and only updated when the text or the font is
10557         changed. Don't check for expand/collapse clicks on the first level
10558         nodes if root lines are disabled.
10559         
10560 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
10561
10562         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
10563
10564 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
10565
10566         * DataGridBoolColumn.cs: fixes warning
10567
10568 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
10569
10570         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
10571         to match more to match more precisely the MS Net behavior
10572
10573 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
10574
10575         * Hwnd.cs: Added field to track if window is mapped
10576         * XplatUIX11.cs: 
10577           - Unmap windows if they become 0-size, re-map when 
10578             they are >0 again; fixes #76035
10579           - Re-set our error handler after initializing X11Desktop
10580             to override any error handlers Gtk or whatever was called
10581             may have set.
10582
10583 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
10584
10585         * CheckedListBox.cs: Removed unused vars
10586         * ListView.cs: Fixed signatures
10587         * RichTextBox.cs: Removed unused vars
10588         * TextBoxBase.cs: Removed unused vars
10589         * XplatUIWin32.cs: Removed unused vars
10590         * XplatUIX11.cs: Removed unused vars
10591         * XplatUI.cs: Updated version and date to latest published
10592
10593 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
10594
10595         * Cursor.cs: Added private .ctor to work around a bug in
10596           resourceset (Thanks to Geoff Norton for the help on this)
10597         * SplitterEventArgs.cs: Made fields accessible so we don't
10598           waste boatloads of objects and can reuse the same one
10599           in Splitter
10600         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
10601           any captions and borders when generating screen coordinates
10602         * Splitter.cs: Reimplemented control, now fully complete, uses
10603           rubberband drawing, supports and obeys all properties, has
10604           proper cursors
10605
10606 2005-10-13  Miguel de Icaza  <miguel@novell.com>
10607
10608         * Form.cs (Form): Setup default values for autoscale and
10609         autoscale_base_size;  Make these instance variables, not static
10610         variables. 
10611
10612         (OnLoad): on the first load, adjust the size of the form.
10613
10614 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
10615
10616         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
10617           width argument to DrawReversibleRectangle()
10618         * XplatUIWin32.cs, XplatUIX11.cs: 
10619           - Implemented width for DrawReversibleRectangle()
10620           - Added logic to DrawReversibleRectangle that recognizes a zero
10621             width or height and only draws a line in that situation
10622         
10623 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
10624
10625         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
10626         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
10627         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
10628           method (it uses our FosterParent window to get a graphics context)
10629
10630 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
10631
10632         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
10633           and SetWindowBackground methods
10634         * Control.cs:
10635           - Setting proper ControlStyles
10636           - We no longer call XplatUI.SetWindowBackground and XplatUI.
10637             EraseWindowBackground, instead we draw the window background
10638             ourselves in PaintControlBackground. This behaviour is
10639             required to match MS, where, when OnPaintBackground is not
10640             called, the background is not drawn.
10641           - Removed unneeded Refresh() in set_Text
10642         * Hwnd.cs: Dropped the ErasePending support. No longer needed
10643         * XplatUIX11.cs:
10644           - Created DeriveStyles method to translate from CreateParams to
10645             FormBorderStyle and TitleStyle, also handles BorderStyle (which
10646             matches FormBorderStyle enum values)
10647           - Consolidated SetHwndStyles and CalculateWindowRect border/title
10648             style calculations into single DeriveStyles method
10649           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
10650             from redrawing the whole window on any resize or expose.
10651           - Fixed CreateWindow usage of SetWindowValuemask. Before not
10652             all styles were applied to our whole/client window appropriately
10653           - Removed EraseWindowBackground() and SetWindowBackground() methods
10654           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
10655             no longer clear/redraw the background through X
10656           - Removed handling of erase_pending bit, we have no use for it (or
10657             so it seems)
10658         * XplatUIOSX.cs:
10659           - Removed generation and handling of WM_ERASEBKGND message
10660           - Removed EraseWindowBackground() and SetWindowBackground() methods
10661           - Removed handling of hwnd.ErasePending flag
10662         * XplatUIWin32.cs:
10663           - Removed EraseWindowBackground() and SetWindowBackground() methods
10664           - We no longer call EraseWindowBackground on PaintEventStart, we 
10665             ignore the fErase flag, erasing is handled in Control in the
10666             background handler
10667         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
10668           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
10669           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
10670           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
10671           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
10672           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
10673           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
10674
10675 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
10676
10677         * PropertyGrids.cs: Get sub properties
10678         * PropertyGridView.cs: Fix drawing code
10679
10680 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10681
10682         * ListBox.cs: Fixes 76383
10683
10684 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10685
10686         * DataGridTextBoxColumn.cs: Sets location and size before attachment
10687         * ThemeWin32Classic.cs: Fixes border drawing and calculations
10688         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
10689
10690
10691 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10692
10693         * ComboBox.cs: Fixes border drawing
10694
10695 2005-10-10  Miguel de Icaza  <miguel@novell.com>
10696
10697         * MimeIcon.cs: Ignore errors if the file can not be read.
10698
10699 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
10700
10701         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
10702          - Fixed border calculations
10703          - Fixed horizontal scrolling in single column listboxes
10704          - Fixed drawing issues
10705
10706 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
10707
10708         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
10709           FormBorderStyle enum
10710         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
10711           code to determine FormBorderStyles from CreateParams
10712         * Form.cs:
10713           - Fixed bug where we'd set the wrong window styles if we were
10714             not creating an MDI window
10715           - Added call to XplatUI.SetBorderStyle when form borders are set
10716         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
10717         * Hwnd.cs:
10718           - Removed obsolete edge style
10719           - Switched from BorderStyle to FormBorderStyle
10720         
10721 2005-10-10  Jackson Harper  <jackson@ximian.com>
10722
10723         * Form.cs: Use the property to get the window handle instead of
10724         accessing it directly. Prevents a null reference exception.
10725
10726 2005-10-10  Jackson Harper  <jackson@ximian.com>
10727
10728         * TreeView.cs: Don't adjust the rect given to DrawString now that
10729         our libgdiplus draws correctly.
10730
10731 2005-10-08  Jackson Harper  <jackson@ximian.com>
10732
10733         * TreeView.cs: Don't try to find the clicked on node if there are
10734         no nodes in the tree.
10735
10736 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
10737
10738         * RichTextBox.cs:
10739
10740           restore
10741
10742 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
10743
10744         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
10745           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
10746           ErrorProvider.cs:
10747           Use ResPool for brushes and dispose System.Drawing objects that
10748           are not used anymore.
10749
10750 2005-10-07  Jackson Harper  <jackson@ximian.com>
10751
10752         * MdiChildContext.cs: Use the new borders instead of drawing them
10753         ourselves.
10754
10755 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
10756
10757         * Calling UpdateBounds after changing the window's BorderStyle 
10758         since the style can change the ClientSize
10759
10760 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10761
10762         * Control.cs: Made PaintControlBackground virtual
10763         * Panel.cs: Overriding PaintControlBackground instead of using paint
10764           event; paint event method was interfering with 'real' users of the
10765           event.
10766
10767 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
10768
10769         * ThemeWin32Classic.cs: remove border drawing since it is handled
10770         by the base control class now and was causing double border drawing.
10771
10772 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10773
10774         * Panel.cs: Redraw our background on paint. Not a pretty solution,
10775           but it does seem to match MS behaviour. This fixes bug #75324
10776
10777 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10778
10779         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
10780           somewhat hackish looking
10781
10782 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
10783
10784         * TextBoxBase.cs:
10785           - We now accept Enter even if AcceptEnter is false, if the containing
10786             form does not have an AcceptButton configured (fixes bug #76355)
10787           - Calculations are now fixed to no longer use Width/Height, but
10788             ClientSize.Width/Height, since we now support borders (this was
10789             a result of fixing borders and therefore bug #76166)
10790           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
10791             true (fixes bug #76354)
10792         
10793 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10794
10795         * Control.cs: 
10796           - Defaulting BorderStyle and setting it in XplatUI when our window 
10797             is created
10798           - Added enum check to InternalBorderStyle setter
10799         * XplatUIX11.cs: 
10800           - Added drawing of window borders
10801           - Now properly calculates WM decorations offset for toplevel 
10802             windows (fixes bug #74763)
10803         * XplatUIWin32.cs: 
10804           - Implemented BorderStyles for windows (we're letting win32 draw 
10805             the border for us)
10806           - Fixed the signature for SetWindowLong
10807         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
10808           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
10809           setting borders
10810         * UpDownBase.cs: Remove drawing of borders, this is handled by
10811           the driver, outside the client area
10812         * ListView.cs: Removed bogus border calculations. The control should
10813           be oblivious to borders, since those are not part of the client
10814           area. 
10815         * X11DesktopColors.cs: Commented out (currently) unneeded variables
10816         * ThemeWin32Classic.cs: Removed border calculations from ListView 
10817           drawing code
10818
10819 2005-10-06  Jackson Harper  <jackson@ximian.com>
10820
10821         * MdiChildContext.cs: Clear out the old virtual position remove
10822         all the unneeded calls to CreateGraphics.
10823
10824 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
10825
10826         * TextControl.cs: Use proper color for highlighted text; fixes #76350
10827
10828 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
10829
10830         * Form.cs: 
10831           - Added loading and setting of our new default icon
10832           - Only set icon if window is already created
10833
10834 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
10835
10836         * Label.cs:
10837           - Do not explicitly set the foreground and background colors, to
10838             allow inheriting from parents (fixes #76302)
10839           - Use Control's InternalBorderStyle property to deal with borders
10840
10841 2005-10-06  Jackson Harper  <jackson@ximian.com>
10842
10843         * MdiChildContext.cs: Use the new xplatui function to draw a
10844         reversible rect.
10845
10846 2005-10-06  Jackson Harper  <jackson@ximian.com>
10847
10848         * Form.cs: Add the parent before creating the child context cause
10849         we need the parent when setting up the child.
10850
10851 2005-10-06  Jackson Harper  <jackson@ximian.com>
10852
10853         * FolderBrowserDialog.cs: redo the tree population code so a
10854         second thread isn't used. Should be a lot faster and more stable
10855         now.
10856
10857 2005-10-05  Jackson Harper  <jackson@ximian.com>
10858
10859         * TreeView.cs: There are no expand/collapse boxes if the node has
10860         no children.
10861
10862 2005-10-05  Jackson Harper  <jackson@ximian.com>
10863
10864         * X11DesktopColors.cs: Get menu colours for the gtk theme.
10865
10866 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
10867
10868         * FileDialog.cs: Fix InitialDirectory
10869
10870 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
10871
10872         * ComboBox.cs:
10873                 - Fixes changing between styles
10874                 - Fixes simple mode
10875                 - Fixes last item crashing when navigating with keyboard
10876
10877 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
10878
10879         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
10880
10881 2005-10-05  Jackson Harper  <jackson@ximian.com>
10882
10883         * TreeView.cs: If updating the root node do a full refresh.
10884         * TreeNode.cs: The root node should be expanded by default. Also
10885         added a utility prop to tell if we are the root node.
10886         * TreeNodeCollection.cs: Only refresh if the node we are being
10887         added to is expanded. Also added a comment on a potential
10888         optimization.
10889         
10890 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
10891
10892         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
10893           in dispose method. Fixes #76330
10894
10895 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
10896
10897         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
10898
10899                 - Implements vertical and horizontal scrolling using XplatUI
10900                 - Fixes keyboard navagation
10901                 - Fixes EnsureVisible
10902                 - Drawing fixes
10903                 - Handles and draws focus properly
10904
10905
10906 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
10907
10908         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
10909           Create handle. NET_2_0: Destroy handle when value is null.
10910
10911 2005-10-03  Jackson Harper  <jackson@ximian.com>
10912
10913         * ScrollBar.cs: My last scrollbar patch was broken. This is a
10914         revert and a new patch to prevent the thumb from refreshing so
10915         much.
10916
10917 2005-10-02  Jackson Harper  <jackson@ximian.com>
10918
10919         * ScrollBar.cs: Don't update position if it hasn't actually
10920         changed. This occurs when you hold down the increment/decrement
10921         buttons and the thumb gets to the max/min.
10922
10923 2005-10-01  Jackson Harper  <jackson@ximian.com>
10924
10925         * Form.cs:
10926         * MdiChildContext.cs:
10927         * MdiClient.cs: Implement ActiveMdiChild in Form.
10928
10929 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
10930
10931         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
10932
10933 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
10934
10935         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
10936           be found
10937
10938 2005-09-30  Jackson Harper  <jackson@ximian.com>
10939
10940         * ListBox.cs: Don't do a full refresh unless some data has
10941         actually changed.
10942
10943 2005-09-30  Jackson Harper  <jackson@ximian.com>
10944
10945         * TreeView.cs: Make sure that the checkboxes size is factored in
10946         even when not visible.
10947
10948 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
10949
10950         * FileDialog.cs: Fix Jordi's build break
10951
10952 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
10953
10954         * FileDialog.cs: 
10955                 - Use standard the Windows colours for the combobox as espected
10956                 - Dispose objects that use resouces when no longer need them
10957
10958 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
10959
10960         * X11DesktopColors.cs: Initial incomplete implementation
10961         * XplatUIX11.cs: Added call to initialize X11DesktopColors
10962
10963 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
10964
10965         * Theme.cs: 
10966           - Switched Theme color names to match the names defined in 
10967             System.Drawing.KnownColors. Life's hard enough, no need to make 
10968             it harder.
10969           - Added setters to all theme color properties so themes can set
10970             their color schemes. The setters also propagate the color changes
10971             to System.Drawing.KnownColors via reflection
10972         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
10973           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
10974           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
10975           use the new, more logical theme color names
10976         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
10977           post-NT colors
10978         * ThemeWin32Classic.cs:
10979           - Removed code to set the old classic Windows colors. Instead it
10980             now relies on the colors returned by System.Drawing.KnownColors
10981             which will be either modern static colors (Unix) or colors
10982             read from the user's configuration (Win32)
10983           - Updated to use the new, more logical theme color names
10984           - Switched DataGrid drawing code to use only Theme colors instead of
10985             a mix of System.Drawing.KnownColors and Theme colors
10986           - DrawFrameControl(): Removed code that fills the button area, the
10987             fill would overwrite any previous fill done by a control. This
10988             fixes bug #75338 
10989           - Added DrawReversibleRectangle() stub
10990         * ScrollableControl.cs: Set visible state to false when scrollbars
10991           are removed (pdn fix)
10992         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
10993           DrawReversibleRectangle() method to allow drawing primitive 
10994           'rubber bands'
10995         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
10996
10997 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
10998
10999         * ImageList.cs: Add(Icon): Create handle.
11000
11001 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
11002
11003         * ListView.cs:
11004         * ThemeWin32Classic.cs:
11005                 - Fixes detail mode
11006                 - Sets clippings
11007                 - Issues with drawing
11008
11009 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11010
11011         * ImageList.cs: Moved RecreateHandle back to ImageList as event
11012           source has to be the ImageList.
11013
11014 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11015
11016         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
11017
11018 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11019
11020         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
11021
11022 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11023
11024         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
11025
11026 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
11027         * GridItem.cs: Fixed TODOs
11028         * GridItemCollection.cs: Added ICollection interface
11029
11030 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
11031
11032         * ImageList.cs: Resize icons when needed.
11033
11034 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
11035
11036         * ListViewItem.cs
11037                 - Fixes GetBounds and returns on screen rects
11038         * ListView.cs:
11039                 - Fixes vertical and horzintal scrolling of items
11040         * ThemeWin32Classic.cs:
11041                 - Fixes drawing
11042                 
11043 2005-09-29  Raja R Harinath  <harinath@gmail.com>
11044
11045         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
11046
11047 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
11048
11049         * ImageList.cs: Added comments about handle creation. Moved Handle,
11050           HandleCreated and OnRecreateHandle implementations to ImageCollection.
11051           Handle is created in Add methods.
11052
11053 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
11054          
11055         * DataGridDrawingLogic.cs: 
11056                 - Takes rows into account on Colum calculations
11057                 - Returns the column when clickig
11058         * DataGrid.cs:
11059                 - Fixes default HitTestInfo values
11060                 - Fixes HitTestInfo.ToString
11061                 - Fixes ResetBackColor          
11062         
11063 2005-09-28  Jackson Harper  <jackson@ximian.com>
11064
11065         * MdiChildContext.cs: Obey rules for fixed sized windows (no
11066         sizing or cursor changes). Also added some temp code to draw the
11067         titlebars text (Makes dev a little easier).
11068
11069 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
11070
11071         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
11072
11073 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
11074          
11075         * ListBox.cs: Fixes bug 76253
11076
11077 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
11078
11079         * ImageList.cs: Added comments about the current implementation. Added
11080           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
11081           Format32bppArgb to preserve transparency and can use Graphics.FromImage
11082           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
11083           with Bitmap.LockBits for better performance. Revised the whole file to
11084           match MS.NET behaviour and provide better performance. Non-public
11085           interface members are calling public members even when they throw
11086           NotSupportedException for better maintainability. Moved ColorDepth,
11087           ImageSize, ImageStream and TransparentColor implementations to
11088           ImageCollection for better performance as these properties are not used
11089           by ImageList.
11090         * ImageListStreamer.cs: Added a new internal constructor that takes an
11091           ImageList.ImageCollection and serializes Images based on
11092           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
11093           match ImageList property name.
11094
11095 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
11096
11097         * ListBox.cs: Fixes IndexFromPoint for last item
11098
11099 2005-09-27  Jackson Harper  <jackson@ximian.com>
11100
11101         * Form.cs: Set the position of new mdi children correctly.
11102
11103 2005-09-27  Jackson Harper  <jackson@ximian.com>
11104
11105         * MdiClient.cs: New mdi children need to be added to the back of
11106         the controls collection so the zorder is set correctly. Also add a
11107         count of all the child windows that have been created.
11108
11109 2005-09-27  Jackson Harper  <jackson@ximian.com>
11110
11111         * Form.cs (CreateParams): Setup MDI forms correctly.
11112
11113 2005-09-27  Jackson Harper  <jackson@ximian.com>
11114
11115         * MdiChildContext.cs:
11116         * MonthCalendar.cs:
11117         * UpDownBase.cs:
11118         * ListBox.cs:
11119         * ListView.cs:
11120         * TextBoxBase.cs:
11121         * TreeView.cs:
11122         * ScrollableControl.cs:
11123         * ComboBox.cs: Add implicit controls using the new implict control
11124         functionality in ControlCollection. Also try to block multiple
11125         control add in a suspend/resume layout to save some cycles.
11126         
11127 2005-09-27  Jackson Harper  <jackson@ximian.com>
11128
11129         * Control.cs: Add functionality to the controls collection to add
11130         'implicit controls' these are controls that are created by the
11131         containing control but should not be exposed to the user. Such as
11132         scrollbars in the treeview.
11133         * Form.cs: The list var of the ControlsCollection is no longer
11134         available because of the potential of implicit controls getting
11135         ignored by someone accessing the list directly.
11136
11137 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
11138
11139         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
11140           loose it's parent. (Fixed bug introduced in r49103 when we added
11141           setting the child parent to null on Remove)
11142
11143 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
11144
11145         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
11146         * Splitter.cs: Added missing attributes for BorderStyle property.
11147         * TextBoxBase.cs: Marked Calculate* methods internal.
11148         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
11149         MS.NET.
11150
11151 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
11152          
11153         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
11154
11155 2005-09-25  Jackson Harper  <jackson@ximian.com>
11156
11157         * TreeView.cs: Update the node bounds correctly regardless of
11158         whether the node is visible.
11159
11160 2005-09-25  Jackson Harper  <jackson@ximian.com>
11161
11162         * ImageList.cs: Don't dispose the image after it is added to the
11163         image list. Only reformat images that need to be resized.
11164
11165 2005-09-25  Jackson Harper  <jackson@ximian.com>
11166
11167         * ImageList.cs: Don't set the format when changing the image.
11168
11169 2005-09-25  Jackson Harper  <jackson@ximian.com>
11170
11171         * TreeView.cs: We can't just assume the node has a font. Use the
11172         treeviews font if no node font is available.
11173
11174 2005-09-25  Jackson Harper  <jackson@ximian.com>
11175
11176         * TreeView.cs: Allow the scrollbars to be reset with negative
11177         values.
11178         - Don't add scrollbars to negative sized windows.
11179
11180 2005-09-23  Jackson Harper  <jackson@ximian.com>
11181
11182         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
11183         old Mono.Posix. Also remove some stray code that shouldn't have
11184         been committed.
11185
11186 2005-09-23  Jackson Harper  <jackson@ximian.com>
11187
11188         * TreeView.cs: Attempt at proper sizing of the horizontal
11189         scrollbar. Also don't resize the scrollbars unless they are
11190         visible.
11191
11192 2005-09-23  Jackson Harper  <jackson@ximian.com>
11193
11194         * TreeView.cs: We don't need to expand the invalid area when the
11195         selection changes, as this is all drawn in the node's bounding
11196         box. The area needs to be expanded (previous typo was contracting
11197         it) when the focus rect moves.
11198
11199 2005-09-23  Jackson Harper  <jackson@ximian.com>
11200
11201         * TreeView.cs: Display the selection box under the correct
11202         circumstances. We were rendering white text with no selection box
11203         before.
11204
11205 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
11206
11207         * TextControl.cs(Split): Now updates selection start/end if it points 
11208           into a line that's being split. Fixes a FIXME and bug #75258
11209
11210 2005-09-23  Jackson Harper  <jackson@ximian.com>
11211
11212         * Binding.cs:
11213         * ListControl.cs: Don't use the path when retrieving binding
11214         managers from the binding context. My bat sense tells me that the
11215         path is only used on insertion.
11216
11217 2005-09-22  Jackson Harper  <jackson@ximian.com>
11218
11219         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
11220
11221 2005-09-22  Jackson Harper  <jackson@ximian.com>
11222
11223         * Splitter.cs: There are special cursors used for splitting.
11224         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
11225
11226 2005-09-22  Jackson Harper  <jackson@ximian.com>
11227
11228         * Splitter.cs: Change the cursor appropriately when the splitter
11229         is moused over, so the user actually knows there is a splitter
11230         there.
11231
11232 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
11233
11234        * Label.cs : Fix ToString method to give same output as MS.NET
11235
11236 2005-09-22  Jackson Harper  <jackson@ximian.com>
11237
11238         * TreeView.cs: Create the scrollbars when the handle is created
11239         and add them right away, just make them invisble. Also account for
11240         the window being shrunk vertically to the point that the vert
11241         scrollbar needs to be added.
11242         - Remove some 0.5 adjustments to get around anti aliasing issues.
11243         
11244 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
11245          
11246         * MainMenu.cs: Fixes default value
11247         * MenuItem.cs: Fixes default value
11248
11249 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
11250
11251         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
11252
11253 2005-09-21  Jackson Harper  <jackson@ximian.com>
11254
11255         * Control.cs: Don't try to set the border style on the window if
11256         it hasn't been created. When the window is created the border
11257         style will be used.
11258
11259 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
11260
11261         * Control.cs (Update): Don't call XplatUI if we don't have a
11262           window handle yet
11263
11264 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
11265
11266         * ContainerControl.cs: Instead of throwing an exception, print
11267           a one-time warning about Validate not being implemented
11268         * XplatUIWin32.cs: Removed debug output
11269
11270 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
11271
11272         * Control.cs: Only set XplatUI background if we expect the windowing
11273           system to handle the background. This stops controls that draw their
11274           own background from flickering
11275
11276         * XplatUIX11.cs: Support custom visuals and colormaps for window 
11277           creation. This allows, amongst other things, using MWF X11 windows 
11278           with OpenGL.
11279
11280 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
11281
11282         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
11283           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
11284           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
11285           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
11286           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
11287           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
11288           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
11289           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
11290           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
11291           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
11292           GridColumnStylesCollection.cs, 
11293           IDataGridColumnStyleEditingNotificationService.cs,
11294           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
11295           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
11296           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
11297           TreeNodeCollection.cs, AmbientProperties.cs, 
11298           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
11299           DataObject.cs, ErrorProvider.cs, Splitter.cs,
11300           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
11301           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
11302           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
11303           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
11304           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
11305           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
11306           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
11307           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
11308           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
11309           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
11310           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
11311           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
11312           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
11313           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
11314           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
11315           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
11316           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
11317           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
11318           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
11319           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
11320           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
11321           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
11322           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
11323           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
11324           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
11325           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
11326           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
11327           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
11328           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
11329           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
11330           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
11331           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
11332           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
11333           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
11334           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
11335
11336 2005-09-21  Jackson Harper  <jackson@ximian.com>
11337
11338         * TreeNode.cs: Call Before/After Expand not Collapse when
11339         expanding.
11340
11341 2005-09-20  Jackson Harper  <jackson@ximian.com>
11342         
11343         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
11344
11345 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
11346          
11347         * ListViewItem.cs:
11348                 - Fixes bug 76120
11349                 - Fixes proper storing of subitems
11350                 - Fixes not updated items
11351
11352 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
11353
11354         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
11355           things if our window handle isn't created yet. Also disabled 
11356           debug for TextBoxBase
11357
11358 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
11359
11360         * MenuAPI.cs: Remove filtering of events to allow menu usage
11361
11362 2005-09-20  Miguel de Icaza  <miguel@novell.com>
11363
11364         * Cursor.cs: Allow null to be passed to Cursor.Current.
11365
11366 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
11367
11368         * ThemeWin32Classic.cs:
11369           - Change some private methods/fields to protected virtual so that 
11370             they can be accessed and overriden in derived classes
11371           - First refactoring of some methods. Derived themes now don't 
11372             need to duplicate the complete code from ThemeWin32Classic
11373         * ThemeNice.cs:
11374           - Added nice StatusBar
11375           - Derive from ThemeWin32Classic and not Theme
11376           - Removed duplicate ThemeWin32Classic code
11377
11378 2005-09-20  Miguel de Icaza  <miguel@novell.com>
11379
11380         * Control.cs (ControlCollection.Add): If the value null is passed
11381         the control is ignored. 
11382
11383         Optimize this loop.
11384
11385 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
11386
11387         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
11388           PostQuitMessage state.
11389         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
11390
11391 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
11392
11393         * Application.cs: Our constructor will never get called, move 
11394           initialization to fields; fixes bug #75933
11395
11396 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
11397
11398         * FileDialog.cs :
11399                 - Allow files to be selected properly using file name
11400                 combo box.
11401                 - Add ability to change diretory (absolute / relative)
11402                 using file name combo box.
11403
11404 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
11405          
11406         * ListBox.cs: 
11407                 - Fixes Multicolumn listboxes item wrong calculations
11408                 - Allows to click when only one item is in the listbox
11409                 - Fixes crash when no items using keyboard navigation
11410
11411 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
11412
11413         * ComboBox.cs: Reverted almost everything from the latest patch which
11414           broke ComboBox
11415
11416 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
11417         
11418         * ToolTip.cs:
11419                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
11420         * ComboBox.cs:
11421                 - When DropDownStyle is Simple, it does not show scrollbar 
11422                 to the last item of the list.
11423                 - When DropDownStyle is Simple, it crashed when the list was 
11424                 scrolled down with the down cursor key.
11425                 - Fixed a bug that when DropDownStyle is DropDownList, the 
11426                 selected item was not shown.
11427                 - The position of the selected item was not preserved when 
11428                 the next dropdown happened.
11429         * ThemeWin32Classic.cs:
11430                 - Items were wrapped at the right end.
11431         * CheckedListBox.cs:
11432                 - Fixed Add method
11433         * ListBox.cs:
11434                 - Items should be fully shown.
11435                 - When resizing and vertical scrollbar disappeared, the item 
11436                 of index 0 should be on the top of the list.
11437                 - GetItemRectangle should consider the size of ver. scrollbar
11438         * StatusBar.cs:
11439                 - SizingGrip area should not be allocated when it is not 
11440                 displayed.
11441                 - Now it reflects MinWidth of the containing panel and 
11442                 fixed a crash that happens when its width becomes so small.
11443
11444 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
11445
11446         * CheckedListBox.cs: Fixes bug 76028
11447         * ListBox.cs: Fixes bug 76028
11448
11449 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
11450
11451         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
11452         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
11453
11454 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
11455
11456         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
11457
11458 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11459
11460         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
11461
11462 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11463
11464         * IRootGridEntry.cs: Added
11465         * PropertyGridCommands.cs: Added
11466         * PropertiesTab.cs: Added missing methods and property
11467         * PropertyGridView.cs: Made class internal
11468         * PropertyGridTextBox.cs: Made class internal
11469
11470 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
11471
11472         * MimeIcon.cs: Try to check some other environment variables
11473           if "DESKTOP_SESSION" returns "default"
11474
11475 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
11476
11477         * ThemeNice.cs: Corrected background colors (e.g. menus)
11478         * ColorDialog.cs: Use correct background colors for controls
11479
11480 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
11481
11482         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
11483
11484 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
11485
11486         * RichTextBox.cs: Added initial implementation
11487         * lang.cs: Removed. Was accidentally checked in long time ago
11488         * TODO: Removed. Contents were obsolete
11489
11490 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
11491                                                                                 
11492         * PropertiesTab.cs : Added
11493
11494 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
11495                                                                                 
11496         * PropertyGrid.cs : Update
11497         * PropertyGridView.cs : Update
11498         * System.Windows.Forms.resx : Added images and strings
11499
11500 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
11501
11502         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
11503  
11504 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
11505
11506         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
11507           a busy loop right after the Ungrab the X11 display is otherwise 
11508           blocked
11509
11510 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
11511
11512         * ThemeWin32Classic.cs: Optimise the use of clipping
11513
11514 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
11515
11516         * DataGrid.cs: fixes recursion bug
11517
11518 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
11519
11520         * ThemeNice.cs: 
11521           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
11522           - Cleanup
11523
11524 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
11525
11526         * ThemeNice.cs: Draw nice ProgressBars
11527
11528 2005-09-01  Miguel de Icaza  <miguel@novell.com>
11529
11530         * VScrollBar.cs: Another buglet found by Aaron's tool. 
11531
11532         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
11533         bug finder.
11534
11535 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
11536
11537         * ThemeNice.cs:
11538           - Added nicer menu drawing
11539           - Updated DrawTab
11540           - some refactoring
11541
11542 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
11543
11544         * CreateParams.cs (ToString): Made output match MS
11545         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
11546             handle is already created (to avoid forcing window creation)
11547         * XplatUIX11.cs: Set window text to caption after creating window,
11548           in case Text was set before window was created
11549         * Form.cs: Use this.Text instead of a static string as caption
11550
11551 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
11552
11553         * NotifyIcon.cs: Don't set the window to visible; this screws
11554           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
11555           OnPaint without a bitmap)
11556         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
11557           happen very often anyway; we could add the check to the WM_PAINT 
11558           event generation code
11559
11560 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
11561
11562         * NotifyIcon.cs: Fill the icon area with a background color, to 
11563           avoid 'residue' when transparent icons are drawn
11564         * XplatUIX11.cs:
11565           - Handle whole_window == client_window when destroying windows
11566           - SystrayAdd(): Set client_window to whole_window value to
11567             get mouse and other events passed to NotifyIcon
11568
11569 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
11570
11571         * Form.cs: Set proper default for Opacity property
11572         * NotifyIcon.cs:
11573           - ShowSystray(): Don't bother creating telling the OS
11574             about the systray item if no icon is provided
11575           - Now handles WM_NCPAINT message to deal with whole/client window
11576             split
11577           - Create window as visible to not get caught by Expose optimization
11578         * Hwnd.cs: Removed debug message
11579         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
11580           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
11581             PaintEventStart/End to use new client argument
11582         * TextBoxBase.cs:
11583           - Commented out debug messages
11584           - Switched PaintEventStart/End to use new client argument
11585         * XplatUI.cs: Added client window bool to PaintEventStart()/
11586           PaintEventEnd() calls, to support drawing in non-client areas
11587         * XplatUIDriver.cs: 
11588           - Added client window bool to PaintEventStart()/PaintEventEnd() 
11589             calls, to support drawing in non-client areas
11590           - Added conditional compile to allow using MWF BeginInvoke 
11591             on MS runtime
11592         * XplatUIX11.cs:
11593           - Added some conditional debug output
11594           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
11595             whole/client window split
11596           - Implemented handling of client argument to PaintEventStart()/End()
11597         * Control.cs:
11598           - Throw exception if BeginInvoke() is called and the window handle
11599             or one of the window's parent handles is not created
11600           - Added conditional compile to allow using MWF BeginInvoke on
11601             MS runtime
11602           - get_Parent(): Only sets parent if handle is created. This avoids
11603             forcing window handle creation when parent is set.
11604           - Now fires Layout and Parent changed events in proper order
11605           - Switched to use Handle instead of window.Handle for Z-Order setting,
11606             the get_Parent() patch above causes us to possibly get null for 'window'
11607           - Implemented handling of client argument to PaintEventStart()/End()
11608           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
11609             default handling)
11610           - Now sends a Refresh() to all child windows when Refresh() is called
11611
11612 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
11613
11614         * Form.cs: Added (non-functional) Opacity property
11615         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
11616
11617 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
11618         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
11619           use export MONO_THEME=nice to activate it.
11620           Currently supported controls:
11621           - Button
11622           - ComboBox
11623           - ScrollBar
11624           - TabControl (TabAlignment.Top only, other will follow)
11625         * ThemeEngine.cs: Add theme nice
11626         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
11627           if enabled
11628
11629 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
11630
11631         * Splitter.cs: Resize docked control and its neighbor.
11632
11633 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
11634         -- Making Windows with Menus layout correctly --
11635         * Form.cs : The first leg of the fix
11636                 Menu setter - adjust Client Size as needed to make space for the menu
11637                 SetClientSizeCore - doesn't call base version to be able to pass the 
11638                         menu handle to XplatUI.CalculateWindowRect
11639         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
11640         * XplatUIX11.cs: The critical second leg of the fix
11641                 GetWindowPos needs to use a recalculated client_rect
11642                 so that resizing the window doesn't break layout of child controls. 
11643                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
11644                 Lots of \t\n killed
11645
11646 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
11647
11648         * Label.cs: Now properly recalculates width and height on Font and Text
11649           changes if AutoSize is set
11650
11651 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
11652         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
11653
11654 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
11655
11656         * ImageList.cs: Makes ToString method compatible with MS
11657
11658 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
11659
11660         * MenuAPI.cs: fixes bug 75716
11661
11662 2005-08-11 Umadevi S <sumadevi@novell.com>
11663         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
11664
11665 2005-08-11 Umadevi S <sumadevi@novell.com>
11666         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
11667
11668 2005-08-10  Umadevi S <sumadevi@novell.com>
11669         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
11670
11671 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
11672
11673         * Menu.cs: fixes bug 75700
11674         * MenuAPI.cs: fixes navigation issues
11675
11676 2005-08-09  Umadevi S <sumadevi@novell.com>
11677         * CheckedListBox.cs - simple fix for GetItemChecked.
11678
11679 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
11680
11681         * ComboBox.cs: Serveral fixes
11682         * ListBox.cs: Serveral fixes
11683
11684 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
11685
11686         * ComboBox.cs: Fixes FindString methods and GetItemHeight
11687         * ListBox.cs: Fixes FindString methods
11688
11689 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
11690
11691         * DataGrid.cs: fixes bugs exposed by new tests
11692
11693 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
11694
11695         * Mime.cs: Compile Mono assembly references only if compiling
11696           with Mono (Allows to build with VS.Net again)
11697
11698 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
11699
11700         * Control.cs (PaintControlBackground): Draw background image
11701         corrrectly.
11702         (CheckForIllegalCrossThreadCalls): Stubbed.
11703         
11704         * Form.cs (OnCreateControl): Center when should be centered.
11705         
11706         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
11707
11708 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
11709
11710         * Binding.cs: Binding to properties should be case unsensitive
11711
11712 2005-07-18 vlindos@nucleusys.com
11713
11714         * DataGrid.cs: fixes setmember order
11715
11716 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
11717
11718         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
11719         * FileDialog.cs: FileDialog is now resizable and uses the new
11720           MimeIconEngine
11721
11722 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
11723
11724         * DataGridTextBoxColumn.cs: default value
11725         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
11726         * GridTableStylesCollection.cs: fixes checking MappingName
11727         * DataGridDrawingLogic.cs: fixes drawing logic issues
11728         * DataSourceHelper.cs: rewritten to make compatible with more data sources
11729         * DataGrid.cs: fixes    
11730
11731 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
11732
11733         * MimeGenerated.cs: Use case sensitive comparer for
11734           NameValueCollections
11735
11736 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
11737
11738         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
11739         * ThemeWin32Classic.cs: bug fixes, code refactoring
11740         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
11741         * DataGrid.cs: bug fixes, code refactoring
11742         * DataGridTextBox.cs: bug fixes, code refactoring
11743         * DataGridColumnStyle.cs:  bug fixes, code refactoring
11744         * Theme.cs:  bug fixes, code refactoring
11745
11746 2005-07-01  Peter Bartok  <pbartok@novell.com> 
11747
11748         * TextControl.cs: Quick fix for the reported crash on ColorDialog
11749           and other text box usage
11750
11751 2005-07-01  Jackson Harper  <jackson@ximian.com>
11752
11753         * TabControl.cs: Make sure the bottom of the tab covers the pages
11754         border.
11755
11756 2005-06-30  Peter Bartok  <pbartok@novell.com> 
11757
11758         * Form.cs (ShowDialog): Assign owner of the dialog
11759         * TextBoxBase.cs: Always refresh caret size when deleting, caret
11760           might have been moved to a tag with different height
11761
11762 2005-06-30  Jackson Harper  <jackson@ximian.com>
11763
11764         * Form.cs: Don't create an infinite loop when setting focus
11765         * MenuItem.cs: Don't dirty the parents if we don't have any
11766
11767 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
11768
11769         * LibSupport.cs: Rename
11770
11771 2005-06-29  Peter Bartok  <pbartok@novell.com>
11772
11773         * TextBoxBase.cs: Re-align caret after deleting a character
11774         * TextControl.cs:
11775           - DeleteChars(): Ensure that tag covers the provided position
11776           - StreamLine(): Drop reference for dropped tag
11777
11778 2005-06-29  Peter Bartok  <pbartok@novell.com> 
11779
11780         * TextControl.cs: 
11781           - Selections now work properly, anchoring at the initial location
11782             and properly extending in either direction (SetSelectionToCaret(),
11783             SetSelectionStart() and SetSelectionEnd())
11784           - No longer redraws the whole control on selection change, now
11785             calculates delta between previous and new selection and only
11786             invalidates/redraws that area
11787           - Fixed FindPos() math off-by-one errors
11788           - Changed DeleteChars() to verify the provided tag covers the
11789             provided position, selections may have a tag that doesn't cover
11790             the position if the selection is at a tag border
11791           - Fixed off-by-one errors in DeleteChars()
11792           - Added missing streamlining check in DeleteChars() to remove
11793             zero-length tags
11794           - Implemented Invalidate() method, now properly calculates exposures
11795             between two given lines/positions
11796           - Implemented SetSelection()
11797           - Obsoleted and removed FixupSelection()
11798           - Improved RecalculateDocument() logic, removing code duplication
11799
11800 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11801
11802         * LibSupport.cs: changes to match different input/output arguments.
11803
11804 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11805
11806         * LibSupport.cs: added libsupport.so init routine.
11807
11808 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
11809         
11810         * ControlBindingsCollection.cs
11811                 - Throws an exception on null datasource when adding
11812                 - Checks for duplicated bindings when adding
11813
11814 2005-06-28  Jackson Harper  <jackson@ximian.com>
11815
11816         * TreeView.cs (OnKeyDown): Support left and right properly
11817         (navigates as well as expanding and collapsing.
11818         - Add support for Multiply, this expands all the selected nodes
11819         children.
11820         - Fix some tabbing.
11821
11822 2005-06-28  Jackson Harper  <jackson@ximian.com>
11823
11824         * TreeView.cs: Implement keyboard navigation, currently supports,
11825         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
11826         support for toggling checkboxes with the space bar.
11827
11828 2005-06-28  Jackson Harper  <jackson@ximian.com>
11829
11830         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
11831         tree.
11832
11833 2005-06-28  Jackson Harper  <jackson@ximian.com>
11834
11835         * TreeView.cs: Add missing event.
11836
11837 2005-06-27  Peter Bartok  <pbartok@novell.com> 
11838
11839         * TextControl.cs:
11840           - Made line ending size configurable (now allows for counting 
11841             lineendings as \n or \r\n)
11842           - Added margin to viewport to keep caret visible on right side
11843           - Fixed translation routines for line/pos to documentpos to consider
11844             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
11845           - Fixed some line-endings to be unix style
11846           - Fixed Document.FormatText to perform it's calculations 1-based
11847           - Added descriptions for a few methods that might otherwise get 
11848             used wrong
11849           - Added NOTE section with some basic conventions to remember at 
11850             the top of the file
11851           - Major fixup for RichTextBox selection drawing:
11852             * Fixed crashes when multiple tags on a single line were selected
11853             * fixed selection box drawing not overlaying text
11854             * fixed bogus offset calculation for tags not starting at index 1
11855             * Switched behaviour from using multiple Substrings of a 
11856               StringBuilder.ToString() to using multiple 
11857               StringBuilder.ToString(start, length) statements, hoping this is
11858               faster (kept original version commented out in the code, in case
11859               original version was faster)
11860         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
11861           alignment != Left
11862         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
11863           call it as well
11864
11865 2005-06-27  Jackson Harper  <jackson@ximian.com>
11866
11867         * TabControl.cs: Move to the left and right with the arrow
11868         keys. These keys don't cycle beyond first and last like
11869         tab. Refresh all the tabs when scrolling them to the left or
11870         right.
11871
11872 2005-06-27  Jackson Harper  <jackson@ximian.com>
11873
11874         * TabControl.cs:
11875           - ToString: Added method
11876           - CreateParams: Remove TODO and comment
11877           - OnKeyDown: Cycle through bounds properly.
11878           - SelectedIndex: Scroll to the right or left if we need to
11879           display the newly selected tab.
11880
11881 2005-06-23  Jackson Harper  <jackson@ximian.com>
11882
11883         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
11884         set.
11885
11886 2005-06-23  Jackson Harper  <jackson@ximian.com>
11887
11888         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
11889         CTRL-SHIFT-TAB, and HOME, END are there any others?
11890
11891 2005-06-23  Jackson Harper  <jackson@ximian.com>
11892
11893         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
11894
11895 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
11896         
11897         * DataGridTextBoxColumn.cs: fixes and enhancements
11898         * ThemeWin32Classic.cs: fixes and enhancements
11899         * DataGridBoolColumn.cs:  fixes and enhancements
11900         * DataGridDrawingLogic.cs:  fixes and enhancements
11901         * CurrencyManager.cs: fixes and enhancements
11902         * DataGrid.cs: fixes and enhancements
11903         * DataGridColumnStyle.cs:  fixes and enhancements
11904
11905 2005-06-22  Jackson Harper  <jackson@ximian.com>
11906
11907         * TabControl.cs: Add some missing methods that just call into the
11908         base. Make the TabPageCollection's IList interface behave in the
11909         same manner as the MS implementation.
11910
11911 2005-06-22  Peter Bartok  <pbartok@novell.com> 
11912
11913         * TextControl.cs: Added sanity check
11914         * TextBoxBase.cs: 
11915           - Fixed wrapping behaviour, don't set wrap on single line controls
11916             (this fixes the breakage of colordialog introduced in an earlier
11917              checkin)
11918           - Added rudimentary support for autoscrolling right-aligned controls
11919             (still needs fixing, also, center alignment scroll is missing)
11920
11921 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
11922         
11923         * ScrollBar.cs: Fixes thumbpos on Maximum values
11924
11925 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
11926         
11927         * PropertyGridView.cs: Pass context information to UITypeEditors 
11928
11929 2005-06-21  Peter Bartok  <pbartok@novell.com> 
11930
11931         * TextBoxBase.cs:
11932           - Now calling PositionCaret with absolute space coordinates
11933           - Enabled vertical scrolling
11934           - Better tracking of scrollbar changes, tied into WidthChange
11935             event
11936           - Improved cursor tracking
11937           - Removed debug output
11938         * TextControl.cs:
11939           - PositionCaret coordinates are now works in absolute space, not 
11940             the canvas
11941           - Improved tracking of document size
11942           - Added events for width and height changes
11943
11944 2005-06-21  Peter Bartok  <pbartok@novell.com>
11945
11946         * Form.cs: Set focus to active control when form is activated
11947         * TextControl.cs: 
11948           - Added word-wrap functionality to RecalculateLine() 
11949           - Added some short function descriptions for VS.Net to aid in
11950             writing dependent controls
11951           - Added Caret property, returning the current coords of the caret
11952           - Added ViewPortWidth and ViewPortHeight properties
11953           - Added Wrap property
11954           - Added CaretMoved event
11955           - Removed some old debug code
11956           - Split() can now create soft splits
11957           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
11958           - Added method to format existing text
11959           - Fixed size/alignment calculations to use viewport
11960           - RecalculateDocument now can handle changing line-numbers while
11961             calculating lines
11962
11963         * TextBox.cs:
11964           - Added some wrap logic, we don't wrap if alignment is not left
11965           - Added casts for scrollbar var, base class switched types to
11966             also support RichTextBoxA
11967           - Implemented handling of scrollbar visibility flags
11968
11969         * TextBoxBase.cs:
11970           - Switched scrollbars type to RichTextBoxScrollBars to support
11971             RichTextBox
11972           - Added tracking of canvas width/height
11973           - Switched scrollbars to be not selectable (to keep focus on text)
11974           - Added central CalculateDocument() method to handle all redraw
11975             requirements
11976           - Added ReadOnly support
11977           - Added WordWrap support
11978           - Fixed handling of Enter key (we now treat it as a DialogKey)
11979           - Fixed caret positioning when h or v scroll is not zero
11980           - Fixed placing/generation of vertical scrollbar
11981           - Added CalculateScrollBars() method to allow updating scrollbar
11982             limits and visibility
11983           - Fixed handling of horizontal scroll
11984           - Added handling of vertical scroll
11985           - Implemented auto-'jump' when caret moves to close to a left or
11986             right border and there is text to be scrolled into view (currently
11987             there's the potential for a stack overflow, until a bug in
11988             scrollbar is fixed)
11989
11990 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
11991         
11992         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
11993
11994 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
11995
11996         * Mime.cs:
11997         - added inodes.
11998         - return application/x-zerosize for files with size zero
11999           (if no extension pattern matches).
12000         - check matches collection for strings too.
12001         - return only the first mime type if the name value
12002           collection has more than one mime type.
12003
12004 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
12005         
12006         * PropertyGrid.cs: Cleaned up some TODOs
12007         * PropertyGridView.cs: Added support for UITypeEditors
12008
12009 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
12010         
12011         * DataGrid.cs: clears cached value
12012
12013 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
12014
12015         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
12016         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
12017         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
12018         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
12019         
12020 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
12021
12022         * ThemeWin32Classic.cs: fixes colour
12023
12024 2005-06-15  Peter Bartok  <pbartok@novell.com>
12025
12026         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
12027         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
12028         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
12029         * Control.cs: Added some MWFCategory and MWFDescription attributes
12030         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
12031
12032 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
12033
12034         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
12035         usage
12036
12037 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
12038
12039         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
12040         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
12041         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
12042         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
12043         * DataGrid.cs: default datagrid settings for Default Styles, fixes
12044         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
12045
12046 2005-06-13  Jackson Harper  <jackson@ximian.com>
12047
12048         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
12049         isn't printed when the user enables dropping. (X11 does accept
12050         drops).
12051         
12052 2005-06-13  Jackson Harper  <jackson@ximian.com>
12053
12054         * TreeView.cs: Remove some TODOS.
12055
12056 2005-06-13  Jackson Harper  <jackson@ximian.com>
12057
12058         * Form.cs: Hook into the mdi framework.
12059         * MdiClient.cs: Use the base control collections add method so
12060         parents get setup correctly. Set the default back colour and dock
12061         style.
12062         * MdiChildContext.cs: New class, this bad actor handles an
12063         instance of an MDI window. Right now there is only basic
12064         support. You can drag, close, and resize windows. Minimize and
12065         Maximize are partially implemented.
12066
12067 2005-06-13  Jackson Harper  <jackson@ximian.com>
12068
12069         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
12070         freaky when both vals are negative. NOTE: There are probably other
12071         places in XplatUIX11 that this needs to be done.
12072
12073 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
12074
12075         * DataGrid.cs: implement missing methods, move KeyboardNavigation
12076         * DataGridColumnStyle.cs: fixes signature
12077
12078 2005-06-12  Jackson Harper  <jackson@ximian.com>
12079
12080         * XplatUIX11.cs: Use sizing cursors similar to the ones on
12081         windows.
12082
12083 2005-06-11  Jackson Harper  <jackson@ximian.com>
12084
12085         * StatusBarPanel.cs: Signature cleanups. Implement
12086         BeginInit/EndInit.
12087
12088 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
12089
12090         * DataGridTextBoxColumn.cs: Honors aligment
12091         * GridColumnStylesCollection.cs: Contains is case unsensitive
12092         * GridTableStylesCollection.cs: several fixes
12093         * DataGridTableStyle.cs: default column creation
12094         * DataGridDrawingLogic.cs: fixes
12095         * CurrencyManager.cs: ListName property
12096         * DataGrid.cs: multiple styles support
12097         * DataGridColumnStyle.cs: fixes
12098         
12099
12100 2005-06-10  Peter Bartok  <pbartok@novell.com>
12101
12102         * Control.cs(Select): Moved SetFocus call to avoid potential
12103           loops if controls change the active control when getting focus
12104         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
12105           the up/down buttons
12106
12107 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
12108
12109         * ImageListConverter.cs: Implemented
12110
12111 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
12112
12113         * MonthCalendar.cs: Wired in NumericUpDown control for year
12114
12115 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
12116
12117         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
12118           DoubleClick events, since they are not meant to be fired.
12119
12120 2005-06-09  Peter Bartok  <pbartok@novell.com>
12121
12122         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
12123           Jonathan's standalone controls into MWF, implemented missing
12124           events, attributes and methods; added xxxAccessible classes
12125         * AccessibleObject.cs: Made fields internal so other classes
12126           can change them if needed
12127
12128 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
12129
12130         * UpDownBase.cs: Complete implementation
12131         * NumericUpDown.cs: Complete implementation
12132         * DomainUpDown.cs: Complete implementation
12133
12134 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
12135
12136         * DataGridTextBoxColumn.cs: drawing fixes
12137         * DataGridCell.cs: fixes ToString method to match MSNet
12138         * DataGridTableStyle.cs: fixes
12139         * DataGridBoolColumn.cs: fixes, drawing
12140         * DataGridDrawingLogic.cs: fixes, new methods
12141         * DataGridTextBox.cs: Keyboard and fixes
12142         * DataGrid.cs:
12143                 - Keyboard navigation
12144                 - Scrolling fixes
12145                 - Row selection (single, multiple, deletion, etc)
12146                 - Lots of fixes
12147         
12148 2005-06-07  Jackson Harper  <jackson@ximian.com>
12149
12150         * ThemeWin32Classic.cs: Clear the background area when drawing
12151         buttons.
12152
12153 2005-06-06  Peter Bartok  <pbartok@novell.com>
12154
12155         * ImageListStreamer.cs: Fixed signature for GetData
12156         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
12157         * ComboBox.cs:
12158           - Added missing ChildAccessibleObject class
12159           - Added missing OnXXXFocus overrides, switched to using those
12160             instead of the event handler
12161         * Control.cs:
12162           - Added Parent property for ControlAccessibleObject
12163           - Fixed signatures
12164           - Fixed attributes
12165           - Added ResetBindings()
12166         * ListBindingConverter.cs: Implemented some methods
12167         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
12168         * ImageList.cs: Implemented basic handle scheme, removed TODOs
12169         * ContainerControl.cs: Fixed signature, now subscribing to the
12170           ControlRemoved event instead of overriding the handler, LAMESPEC
12171         * CurrencyManager.cs: Added missing attribute
12172         * MonthCalendar.cs: Added missing properties
12173
12174 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
12175
12176         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
12177         
12178 2005-06-06  Gaurav Vaish and Ankit Jain
12179
12180         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
12181         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
12182         
12183 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
12184
12185         * Control.cs: fixes CreateParams Width / Height.
12186
12187 2005-06-05  Peter Bartok  <pbartok@novell.com>
12188
12189         * Win32DnD.cs: Removed compilation warnings
12190
12191 2005-06-05  Peter Bartok  <pbartok@novell.com>
12192
12193         * Control.cs (CreateParams): Since we don't know if one of the
12194           properties we use is overridden, lets make sure if we fail accessing
12195           we continue with a backup plan
12196
12197 2005-06-05  Peter Bartok  <pbartok@novell.com>
12198
12199         * Win32DnD.cs:
12200           - Removed debug output
12201           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
12202             struct
12203           - Plugged resource leak
12204         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
12205           MS size
12206
12207 2005-06-05  Peter Bartok  <pbartok@novell.com>
12208
12209         * XplatUIWin32.cs: Removed DnD code
12210         * Win32DnD.cs: Implemented drop source and drop target functionality
12211
12212 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12213
12214         * UpDownBase.cs: remove duplicate addition of event, enable some code
12215         that was commented out.
12216         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
12217         Validate input when a key is pressed. It works fine now for every
12218         combination of Hexadecimal. Only missing some drawing love when sharing
12219         space with other controls.
12220
12221 2005-06-04  Peter Bartok  <pbartok@novell.com>
12222
12223         * Control.cs:
12224           - We need to pass a window for DragDrop, so enable callback events
12225           - Added DnD callback events when being a DragSource
12226         * XplatUI.cs (StartDrag): Added window handle argument
12227         * XplatUIDriver.cs (StartDrag): Added window handle argument
12228         * QueryContinueDragEventArgs: Made fields internally accessible so
12229           drivers can set them
12230         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
12231           can set them
12232
12233 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
12234
12235         * DataGridTextBoxColumn.cs: column text editing
12236         * DataGridTableStyle.cs: Respect columns styles created by the user
12237         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
12238         * DataGridBoolColumn.cs: bool column editing
12239         * DataGrid.cs: fixes to scrolling, properties, etc
12240         * DataGridTextBox.cs: handle keyboard
12241         * DataGridColumnStyle.cs: fixes
12242
12243 2005-06-02  Jackson Harper  <jackson@ximian.com>
12244
12245         * ImageListStreamer.cs: Somewhat broken implementation of
12246         GetObjectData. The RLE needs some work to match MS properly.
12247
12248 2005-06-02  Jackson Harper  <jackson@ximian.com>
12249
12250         * X11Dnd.cs: Attempting to keep at least one file in MWF
12251         monostyled.
12252
12253 2005-06-02  Peter Bartok  <pbartok@novell.com>
12254
12255         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
12256           that way
12257
12258 2005-06-02  Peter Bartok  <pbartok@novell.com>
12259
12260         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
12261         * XplatUI.cs: Added DoDragDrop() method
12262         * XplatUIDriver.cs: Added DoDragDrop() method
12263
12264 2005-06-02  Jackson Harper  <jackson@ximian.com>
12265
12266         * Splitter.cs: Implement BorderStyle.
12267
12268 2005-06-02  Jackson Harper  <jackson@ximian.com>
12269
12270         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
12271         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
12272         X11 using XDND.
12273
12274 2005-06-02  Peter Bartok  <pbartok@novell.com>
12275
12276         * DataObject.cs:
12277           - Added Data setter
12278           - Fixed broken insertion code for SetData, now also
12279             overwrites any existing entry of the same format name
12280         * Hwnd.cs: Added list of pointers that automatically gets
12281           freed when the window is disposed
12282         * XplatUI.cs: Call driver initialization method when loading
12283           a driver
12284         * Control.cs:
12285           - OnDragLeave takes EventArgs, not DragEventArgs
12286           - Added setting of WS_EX_ACCEPTFILES style when dropping is
12287             supported
12288           - Forces style update when drop state changes
12289         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
12290           not perfect since we cannot (yet) call the IDataObject.GetData()
12291           method, we keep getting 0x80004005 error, dunno why)
12292
12293 2005-06-02  Peter Bartok  <pbartok@novell.com>
12294
12295         * DragEventArgs.cs: Make fields internal so we can cache the
12296           object and re-set the fields from XplatUI
12297
12298 2005-06-02  Jackson Harper  <jackson@ximian.com>
12299
12300         * Control.cs: Add some internal methods so the DnD subsystem can
12301         raise DnD events. Also call into the driver when AllowDrop is set.
12302         * XplatUI.cs:
12303         * XplatUIDriver.cs: New method for setting whether or not a window
12304         is allowed to accept drag and drop messages.
12305                 
12306 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
12307         
12308         * ScrollBar.cs: Make sure that values sent in Scroll events
12309         are always between Maximum and Minimum.
12310
12311 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
12312
12313         * Menu.cs: Call MenuChanged when menuitem visibility has been
12314         changed.
12315         * MenuItem.cs: Rebuild menu when item is (not) visible.
12316         * MainMenu.cs: MainMenu has special MenuChanged.
12317         * Theme.cs: Caption and FrameBorderSize are not fixed.
12318         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
12319         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
12320         * XplatUIX11.cs,
12321         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
12322         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
12323
12324 2005-05-30  Jackson Harper  <jackson@ximian.com>
12325
12326         * DataFormat.cs: We can't statically initialize this stuff because
12327         it calls into the xplatui and could create a loop. So we lazy init
12328         it.
12329
12330 2005-05-28  Jackson Harper  <jackson@ximian.com>
12331
12332         * Control.cs: Proper implementation of Product(Name/Version).
12333
12334 2005-05-27  Jackson Harper  <jackson@ximian.com>
12335
12336         * DataObject.cs: Dont crash if no data is found.
12337
12338 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
12339         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
12340                 as per status page, guessing it should be set to true
12341
12342 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
12343
12344         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
12345         * DataGridTableStyle.cs: set proper formatting text, def header text
12346         * ThemeWin32Classic.cs: new themable paramaters
12347         * DataGridBoolColumn.cs: paint check box, get data, fixes
12348         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
12349         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
12350         * DataGridColumnStyle.cs: fixes
12351         * Theme.cs: new themable paramaters
12352                 
12353 2005-05-26  Peter Bartok  <pbartok@novell.com>
12354
12355         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
12356
12357 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
12358         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
12359
12360 2005-05-24  Peter Bartok  <pbartok@novell.com>
12361
12362         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
12363           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
12364           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
12365           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
12366           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
12367           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
12368           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
12369           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
12370           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
12371           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
12372           missing attributes, etc
12373         * DataGridPreferredColumnWidthTypeConverter.cs: Added
12374
12375 2005-05-24  Peter Bartok  <pbartok@novell.com>
12376
12377         * Help.cs: Added, implemented trivial functions, throws up MessageBox
12378           when user tries to get help
12379         * DataObject.cs, DataFormats.cs, LinkArea.cs,
12380           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
12381           to suppress warnings
12382         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
12383           avoid unreachable code warning
12384
12385 2005-05-20  Peter Bartok  <pbartok@novell.com>
12386
12387         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
12388
12389 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
12390
12391         * DataGridTextBoxColumn.cs: Basic painting methods
12392         * DataGridTableStyle.cs: Set table style in the column
12393         * ThemeWin32Classic.cs: Use Theme for colors
12394         * DataGridDrawingLogic.cs: Implement more drawing
12395         * DataGrid.cs: drawing, theming, enhacements, fixes
12396         * DataGridColumnStyle.cs: fixes, drawing
12397         * Theme.cs: theming for Datagrid
12398
12399 2005-05-20  Peter Bartok  <pbartok@novell.com>
12400
12401         * Cursor.cs: Implemented GetObjectData() method
12402
12403 2005-05-20  Peter Bartok  <pbartok@novell.com>
12404
12405         * Cursors.cs: Added setting of cursor name
12406         * Cursor.cs:
12407           - Implemented constructors
12408           - Implemented Draw and DrawStretched
12409           - Implemented Current property
12410           - Implemented == and != operators
12411           - Implemented Dispose()
12412           - Implemented ToString
12413           - Added missing attributes
12414         * XplatUIX11.cs:
12415           - Added missing reset for OverrideCursor when DoEvents is called
12416           - Fixed creation of cursor, logic was wrong
12417         * XplatUIWin32.cs:
12418           - Added missing reset for OverrideCursor when DoEvents is called
12419           - Fixed creation of cursor, bit arrays were swapped
12420         * Clipboard.cs: Removed obsolete MonoTODO attribute
12421
12422 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
12423
12424         * ComboBox.cs: fixes OnSelectedItemChanged
12425         * ControlBindingsCollection.cs: fixes item range check
12426
12427 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
12428
12429         * UpDownBase.cs:
12430                 - Calc preferred height properly
12431                 - Implement missing properties
12432                 
12433         * NumericUpDown.cs: Implement missing events
12434
12435 2005-05-19  Jackson Harper  <jackson@ximian.com>
12436
12437         * TabControl.cs: New method that resizes the tab pages before
12438         redrawing them. This as needed as the control is double buffered
12439         and sizing will not be recalculated unless ResizeTabPages is
12440         called.
12441         * TabPage.cs: Set base.Text instead of Text in the constructor so
12442         that UpdateOwner does not get called. Use the new Redraw method of
12443         TabControl instead of Refresh so the sizing is recalculated.
12444         * ThemeWin32Classic.cs: Draw the text for button tabs.
12445
12446 2005-05-19  Jackson Harper  <jackson@ximian.com>
12447
12448         * Control.cs: Paint control background images. Fix typo where
12449         PaintControlBackground was not getting called correctly.
12450
12451 2005-05-19  Peter Bartok  <pbartok@novell.com>
12452
12453         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
12454           I can investigate, apparently I broke FileDialog
12455
12456 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
12457
12458         * AxHost.cs: Some simple properties.
12459         * Control.cs: window must be accessible after ctor.
12460         * Form.cs: Added TransparencyKey property.
12461         * TextBoxBase.cs: Implemented Clear. Text property can be null.
12462         * XplatUIWin32.cs: SetBorderStyle implemented.
12463
12464 2005-05-18  Peter Bartok  <pbartok@novell.com>
12465
12466         * DataObject.cs: Entries are not global but particular to the
12467           DataObject, now it behaves that way
12468         * XplatUIWin32.cs: Implemented Clipboard methods
12469         * Clipboard.cs: Implemented
12470         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
12471         * XplatUIOSX.cs: Updated to final clipboard prototypes
12472         * XplatUIX11.cs: Implemented Clipboard methods
12473         * XplatUIDriver.cs: Updated to final clipboard prototypes
12474         * XplatUIStructs.cs:
12475           - Added BITMAPINFOHEADER struct
12476           - Added ClipboardFormats enum
12477         * X11Structs.cs:
12478           - Added ClipboardStruct
12479           - Added Atom enum items for clipboard types
12480           - Fixed atom types for Selection event structures
12481         * DataFormats.cs:
12482           - Added internal properties and methods for drivers to enumerate
12483             all known formats
12484           - Switched initialization method to allow drivers to assign their
12485             own IDs even for the MS predefined clipboard IDs
12486         * XplatUI.cs: Updated to final clipboard interface
12487
12488 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
12489         * PropertyGridView.cs: Fixed compiler warnings.
12490
12491 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
12492         * PropertyGrid.cs: Added some event calls
12493         * PropertyGridView.cs: Change drawing code to use double buffering
12494         * PropertyGridTextBox.cs: Changed Text property name
12495         * GridItem.cs: Added Bounds property.
12496         * GridEntry.cs: Added Bounds property.
12497
12498 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
12499
12500         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
12501         since GetType() may not return the correct type if the object is
12502         a remoting proxy.
12503
12504 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
12505
12506         * TreeNodeCollection.cs: fixes get/set item ranges
12507         
12508 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
12509
12510         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
12511                 
12512 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
12513
12514         * ComboBox.cs: Fix item range comparation
12515         * ListView.cs: Fix item range comparation
12516
12517 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
12518
12519         * FontDialog.cs:
12520           - Clear example panel when OnPaint is called
12521           - Better solution for displaying the example panel text
12522           - Select default indexes in the ListBoxes
12523
12524 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
12525
12526         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
12527
12528 2005-05-11  Peter Bartok  <pbartok@novell.com>
12529
12530         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
12531         * SelectionRangeConverter.cs: Implemented
12532         * PropertyGrid.cs: Fixed attribute value
12533         * Control.cs:
12534           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
12535           - Added Sebastien Pouliot's CAS Stack Propagation fixes
12536         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
12537           that's common to all drivers. First methods to go there are
12538           Sebastien Pouliot's CAS Stack Propagation helper methods
12539         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
12540           Sebastien Pouliot for CAS Stack Propagation
12541
12542 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
12543
12544         * OSXStructs.cs:
12545           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
12546
12547 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
12548
12549         * DataGridTextBoxColumn.cs: fixed some members
12550         * GridColumnStylesCollection.cs: indexed column is case insensitive
12551         * DataGridTableStyle.cs: fixes
12552         * ThemeWin32Classic.cs: add new theme parameter
12553         * Theme.cs: add new theme parameter
12554         * DataGridDrawingLogic.cs: Datagrid's drawing logic
12555         * DataGrid.cs: fixes, new internal properties, etc.
12556         * DataGridColumnStyle.cs: allows to set grid value
12557         *
12558
12559 2005-05-10  Peter Bartok  <pbartok@novell.com>
12560
12561         * AccessibleObject.cs:
12562           - Removed MonoTODO attribute on help, method is correct
12563           - Fixed Bounds property
12564         * AxHost.cs: Moved MonoTODO
12565         * ButtonBase.cs: Now setting AccessibleObject properties
12566         * RadioButton.cs: Setting proper AccessibleObject role
12567         * CheckBox.cs: Setting proper AccessibleObject role
12568         * ControlBindingsCollection.cs: Added properties, methods and attributes
12569         * DataFormats.cs: Fixed awkward internal API, and changed to enable
12570           userdefined DataFormats.Format items as well
12571         * ListControl.cs: Removed data_member from the public eye
12572         * OpenFileDialog.cs:
12573           - Made class sealed
12574           - Added missing attributes
12575         * SaveFileDialog.cs: Added missing attributes
12576         * ImageListStreamer.cs: Fixed code that caused warnings
12577         * LinkLabel.cs: Removed unreachable code
12578         * TreeView.cs: Fixed code that caused warnings
12579         * PropertyGridView.cs: Fixed code that caused warnings
12580         * GridColumnStylesCollection.cs: Added missing attributes
12581         * GridTableStylesCollection: Added missing attribute
12582         * PropertyManager: Added .ctor
12583         * SecurityIDType: Added
12584         * DataObject.cs: Implemented class
12585         * LinkArea.cs: Added missing attribute
12586
12587 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
12588
12589         * RadioButton.cs: call base method to allow to fire OnClick event
12590         * UpDownBase.cs: OnMouseUp call base method
12591         * CheckedListBox.cs: call base method before returning
12592         * TrackBar.cs: call base method before returning
12593         
12594
12595 2005-05-10  Peter Bartok  <pbartok@novell.com>
12596
12597         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
12598           for messages
12599
12600 2005-05-10  Peter Bartok  <pbartok@novell.com>
12601
12602         * DataFormats.cs: Implemented
12603         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
12604           XplatUIX11.cs: Added Clipboard APIs
12605         * XplatUIWin32.cs: Implemented Clipboard APIs
12606         * FolderBrowserDialog.cs: Added missing event, attributes
12607
12608 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
12609
12610         * CheckBox.cs: call base method to allow to fire OnClick event
12611
12612 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
12613
12614         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
12615
12616 2005-05-06  Peter Bartok  <pbartok@novell.com>
12617
12618         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
12619         * Screen.cs: Implemented
12620         * HelpNavigator.cs: Added
12621         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
12622           property
12623         * HelpProvider.cs: Implemented all we can do until we have a CHM
12624           help library (which means that "What's This" does work now)
12625
12626 2005-05-06  Jackson Harper  <jackson@ximian.com>
12627
12628         * XplatUIX11.cs: Fix waking up the main loop.
12629                 
12630 2005-05-05  Peter Bartok  <pbartok@novell.com>
12631
12632         * XplatUI.cs: Updated revision
12633         * Form.cs: Removed enless loop
12634         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
12635         * Label.cs (OnPaint): Added call to base.OnPaint()
12636         * ToolTip.cs: Made ToolTipWindow reusable for other controls
12637         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
12638         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
12639         * AxHost.cs: Added
12640         * ButtonBase.cs: Moved base.OnPaint() call to end of method
12641         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
12642           to ToolTip.ToolTipWindow for drawing and size methods; this allows
12643           reuse of ToolTipWindow by other controls
12644         * SizeGrip.cs: Moved base.OnPaint() call to end of method
12645         * XplatUIX11.cs: Now clipping drawing area (experimental)
12646         * PictureBox.cs: Moved base.OnPaint() call to end of method
12647         * Theme.cs: Fixed ToolTip abstracts to match new format
12648         * ErrorProvider.cs: Implemented
12649
12650 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
12651
12652         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
12653         * LinkLabel.cs:
12654                 - Adds cursors
12655                 - Handles focus
12656                 - Implements LinkBehavior
12657                 - Fixes many issues
12658
12659 2005-05-03  Jackson Harper  <jackson@ximian.com>
12660
12661         * ListView.cs: Calculate the scrollbar positioning on resize and
12662         paint, so they get put in the correct place.
12663
12664 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
12665
12666         * ColorDialogs.cs: The small color panels are now handled by
12667           SmallColorControl. This fixes drawing of the focus rectangle
12668           and adds a 3D border.
12669
12670 2005-05-03  Peter Bartok  <pbartok@novell.com>
12671
12672         * Control.cs: Modified version of Jonathan Chamber's fix for
12673           double-buffering
12674
12675 2005-05-03  Jackson Harper  <jackson@ximian.com>
12676
12677         * ListView.cs: Remove redraw variable. Control now handles whether
12678         or not a redraw needs to be done, and will only raise the paint
12679         event if redrawing is needed.
12680
12681 2005-05-03  Jackson Harper  <jackson@ximian.com>
12682
12683         * Splitter.cs: No decorations for the splitter form. Cache the
12684         hatch brush.
12685
12686 2005-05-03  Jackson Harper  <jackson@ximian.com>
12687
12688         * TreeView.cs: Use dashed lines to connect nodes. Use the
12689         ControlPaint method for drawing the focus rect instead of doing
12690         that in treeview.
12691
12692 2005-05-02  Peter Bartok  <pbartok@novell.com>
12693
12694         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
12695
12696 2005-04-29  Jackson Harper  <jackson@ximian.com>
12697
12698         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
12699         entire image buffer. Just clear the clipping rectangle.
12700
12701 2005-04-29  Jackson Harper  <jackson@ximian.com>
12702
12703         * ThemeWin32Classic.cs: Don't draw list view items that are
12704         outside the clipping rectangle.
12705
12706 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
12707
12708         * ListBox.cs: added horizontal item scroll
12709
12710 2005-04-29  Jackson Harper  <jackson@ximian.com>
12711
12712         * ThemeWin32Classic.cs: Remove some old debug code that was
12713         causing flicker with the new double buffering code.
12714
12715 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
12716
12717         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
12718         behave like combobox and comboboxlist (still not sure if this is
12719         correct though).
12720
12721 2005-04-28  Jackson Harper  <jackson@ximian.com>
12722
12723         * ThemeWin32Classic.cs: Don't fill the middle of progress
12724         bars. This fills areas outside of the clip bounds that don't need
12725         to be filled.
12726
12727 2005-04-28  Jackson Harper  <jackson@ximian.com>
12728
12729         * Control.cs: Don't expose functionality to touch the image buffers.
12730         * ProgressBar.cs:
12731         * ListView.cs: We do not need to (and no longer can) manipulate
12732         the image buffers directly. All of this is handled by Control.
12733
12734 2005-04-28  Peter Bartok  <pbartok@novell.com>
12735
12736         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
12737           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
12738           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
12739
12740 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
12741
12742         * Combobox:
12743                 - Adjust control's height for non-simple comboboxes (bug fix)
12744                 - Remove dead code
12745         * MenuAPI.cs: remove unused var
12746         * ScrollBar.cs: remove unsed var
12747                  
12748         * ListBox.cs: unselect items when clearing
12749
12750 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
12751
12752         * ListControl.cs: honors OnPositionChanged and default Selected Item
12753         * ListBox.cs: unselect items when clearing
12754
12755 2005-04-27  Jackson Harper  <jackson@ximian.com>
12756
12757         * X11Keyboard.cs: Initialize a default keyboard and give a warning
12758         if a "correct" keyboard is not found. This will make us not crash,
12759         but might give some users bad keyboard layouts...seems to be the
12760         same thing rewind does.
12761
12762 2005-04-27  Jackson Harper  <jackson@ximian.com>
12763
12764         * BindingManagerBase.cs: Attach the current/position changed
12765         handlers to their respective events.
12766
12767 2005-04-27  Jackson Harper  <jackson@ximian.com>
12768
12769         * Control.cs: Make sure that the first WM_PAINT does a full draw,
12770         not just a blit.
12771         * ThemeWin32Classic.cs: Don't fill the background for picture
12772         boxes. This could overright user drawing.
12773         * ComboBox.cs: Just fill the clipping rect not the entire client
12774         rect when drawing the background. This prevents pieces of the
12775         image buffer from getting overwritten and is theoretically faster.
12776
12777 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
12778
12779         * ComboBox.cs: Databinding support fixes, fire missing events
12780         * ListControl.cs: implement missing methods and properties, fixes
12781         * ThemeWin32Classic.cs: Databiding support on Drawing
12782         * CheckedListBox.cs: Databinding support fixes, fire missing events
12783         * ListBox.cs: Databinding support fixes, fire missing events
12784         
12785 2005-04-25  Peter Bartok  <pbartok@novell.com>
12786
12787         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
12788
12789 2005-04-25  Jackson Harper  <jackson@ximian.com>
12790
12791         * TreeView.cs: Use the horizontal scrollbars height not width when
12792         determining how much of the client area is available.
12793
12794 2005-04-25  Jackson Harper  <jackson@ximian.com>
12795
12796         * Control.cs: Double buffering is handled differently now. As per
12797         the spec, the extra buffer is created in the WM_PAINT message and
12798         passed down to the control's drawing code.
12799         * GroupBox.cs:
12800         * Label.cs:
12801         * CheckBox.cs:
12802         * ProgressBar.cs:
12803         * RadioButton.cs:
12804         * ColorDialog.cs:
12805         * ComboBox.cs:
12806         * PropertyGridView.cs:
12807         * UpDownBase.cs:
12808         * MessageBox.cs:
12809         * MenuAPI.cs:
12810         * ListView.cs:
12811         * ButtonBase.cs:
12812         * SizeGrip.cs:
12813         * ScrollBar.cs:
12814         * ListBox.cs:
12815         * TrackBar.cs:
12816         * ToolBar.cs:
12817         * PictureBox.cs:
12818         * DateTimePicker.cs:
12819         * StatusBar.cs:
12820         * TreeView.cs: Update to new double buffering system.
12821         * MonthCalendar.cs: Uncomment block, as Capture is now
12822         working. Update to new double buffering
12823         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
12824         * PaintEventArgs.cs: New internal method allows us to set the
12825         graphics object. This is used for double buffering.
12826         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
12827         rectangle. The internal paint_area var has been removed from
12828         StatusBar. The clipping rect should be used instead.
12829         * Theme.cs: Give the PictureBox drawing method a clipping rect.
12830         * TabPage.cs: The RefreshTabs method was removed, so just call the
12831         tab controls Refresh method now.
12832         * TabControl.cs: Update to new double buffering. Make sure the
12833         handle is created before sizing the tab pages, otherwise we will
12834         get stuck in a loop.
12835
12836 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
12837
12838         * LinkLabel.cs: Fix typo, bug #74719; patch
12839           from Borja Sanchez Zamorano
12840
12841 2005-04-22  Jackson Harper  <jackson@ximian.com>
12842
12843         * TreeNode.cs: Implement Handle stuff.
12844         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
12845
12846 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
12847
12848         * DataGridTextBoxColumn.cs: call base constructors, fixes
12849         * GridColumnStylesCollection.cs: missing events, methods, and functionality
12850         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
12851         * DataGridTableStyle.cs: implements create default column styles
12852         * DataGridBoolColumn.cs: which types can handle
12853         * DataGrid.cs: missing methods, fixes, new functionality
12854         * DataGridColumnStyle.cs: fixes
12855
12856 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
12857         * FolderBrowserDialog.cs:
12858         - Use a thread to fill the TreeView
12859         - Adjusted some sizes
12860
12861 2005-04-19  Peter Bartok  <pbartok@novell.com>
12862
12863         * LinkLabel.cs: (Re-)create the pieces when setting the Text
12864           property. Fixes #74360.
12865
12866 2005-04-19  Jackson Harper  <jackson@ximian.com>
12867
12868         * XEventQueue.cs: Lock when getting the lockqueue size.
12869         * PictureBox.cs: Call base OnPaint
12870         
12871 2005-04-19  Peter Bartok  <pbartok@novell.com>
12872
12873         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
12874           messages were no longer being processed (this broke BeginInvoke)
12875
12876           
12877 2005-04-18  Jackson Harper  <jackson@ximian.com>
12878
12879         * TreeView.cs: buglet that caused node images to get drawn
12880         regardless of whether or not they were in the clipping rectangle.
12881
12882 2005-04-18  Jackson Harper  <jackson@ximian.com>
12883
12884         * CurrencyManager.cs: There are four rules for GetItemProperties:
12885         - If the type is an array use the element type of the array
12886         - If the type is a typed list, use the type
12887         - If the list contains an Item property that is not an object, use
12888         that property
12889         - use the first element of the list if there are any elements in
12890         the list.
12891         
12892 2005-04-17  Jackson Harper  <jackson@ximian.oom>
12893
12894         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
12895         click. This handles offsets for scrolling properly and reduces
12896         memory. Also fixed GetNode to not offset now that TopNode works
12897         properly.
12898         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
12899         
12900 2005-04-17  Jackson Harper  <jackson@ximian.com>
12901
12902         * CursorConverter.cs: Initial implementation.
12903
12904 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
12905
12906         * ListControl.cs: work towards complex data binding support on ListControl
12907         * CurrencyManager.cs: work towards complex data binding support on ListControl
12908         * ListBox.cs: work towards complex data binding support on ListControl
12909
12910
12911 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
12912
12913         * GridTableStylesCollection.cs: fixes name and constructor
12914         * DataGridTableStyle.cs: fixes
12915         * DataGridBoolColumn.cs: fixes names and constructors
12916         * DataGrid.cs: define methods and properties. Some init implementations
12917         * DataGridCell.cs: define methods and properties. Some init implementations
12918         * GridTablesFactory.cs: Define methods and properties
12919
12920 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
12921
12922         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
12923         graphics port changes.  We still want the coordinates in global screen
12924         coordinates.
12925
12926 2005-04-14  Jackson Harper  <jackson@ximian.com>
12927
12928         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
12929         check plus minus or checkbox clicks unless those features are enabled.
12930
12931 2005-04-14  Jackson Harper  <jackson@ximian.com>
12932
12933         * TreeView.cs: Add methods for setting the top and bottom visible
12934         nodes. TreeNode::EnsureVisible uses these methods.
12935         * TreeNode.cs: Implement EnsureVisible
12936
12937 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
12938
12939         * Form.cs: Pospone menu assignation if the window has not been created yet
12940         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
12941         size and position
12942
12943 2005-04-12  Jackson Harper  <jackson@ximian.com>
12944
12945         * TreeView.cs: Set the TopNode properly when scrolling
12946         occurs. This has the added benifit of reducing the amount of
12947         walking that needs to be done when drawing. Also removed an old
12948         misleading TODO.
12949         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
12950         
12951 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
12952
12953         * Timer.cs: fixes interval setting when the timer is already enabled
12954         
12955 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
12956
12957         * FolderBrowserDialog.cs: First approach
12958
12959 2005-04-09  Peter Bartok  <pbartok@novell.com>
12960
12961         * FolderBrowserDialog: Added
12962
12963 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
12964
12965         * LinkLabel.cs: move drawing code into the theme
12966         * ThemeWin32Classic.cs: drawing code and painting background bugfix
12967         * Theme.cs: define DrawLinkLabel method
12968
12969 2005-04-05  Jackson Harper  <jackson@ximian.com>
12970
12971         * BindingContext.cs: Use weak references so these bad actors don't
12972         stay alive longer then they need to.
12973
12974 2005-04-05  Jackson Harper  <jackson@ximian.com>
12975
12976         * ListControl.cs: Basic implementation of complex databinding.
12977         * ComboBox.cs:
12978         * ListBox.cs: Add calls to ListControl databinding methods.
12979
12980 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
12981
12982         * FileDialog.cs:
12983           - Don't change PopupButtonState to Normal when the
12984             PopupButton gets pressed several times.
12985           - Renamed ButtonPanel to PopupButtonPanel
12986
12987 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
12988
12989         * ColorDialog.cs: Use cached objects instead of creating them
12990         * LinkLabel.cs: Use cached objects instead of creating them
12991         * Splitter.cs: Use cached objects instead of creating them
12992         * FontDialog.cs: Use cached objects instead of creating them
12993         * PropertyGridView.cs: Use cached objects instead of creating them
12994         * MessageBox.cs: Use cached objects instead of creating them
12995         * FileDialog.cs: Use cached objects instead of creating them
12996         * ThemeWin32Classic.cs: Use cached objects instead of creating them
12997         * TreeView.cs: Use cached objects instead of creating them
12998         
12999 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
13000
13001         * Control.cs: use Equals to compare the font since no == op
13002         * ScrollBar.cs: use Equals to compare the font since no == op
13003
13004 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
13005
13006         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
13007
13008 2005-04-01  Jackson Harper  <jackson@ximian.com>
13009
13010         * Binding.cs: Implement IsBinding.
13011         * BindingManagerBase.cs:
13012         * PropertyManager.cs:
13013         * CurrencyManager.cs: Add IsSuspended property.
13014
13015 2005-04-01  Jackson Harper  <jackson@ximian.com>
13016
13017         * Binding.cs: Had some IsAssignableFrom calls backwards.
13018
13019 2005-04-01  Jackson Harper  <jackson@ximian.com>
13020
13021         * Binding.cs: Handle null data members when pulling data.
13022         * PropertyManager.cs: Handle the data member being a property that
13023         does not exist.
13024
13025 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
13026
13027         * DataGridTextBoxColumn.cs: fixes signature
13028         * DataGrid.cs: calls right constructor
13029
13030 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
13031
13032         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
13033         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
13034         * GridTableStylesCollection.cs: implements GridTableStylesCollection
13035         * DataGridTableStyle.cs: implements DataGridTableStyle
13036         * DataGridBoolColumn.cs: implements DataGridBoolColumn
13037         * DataGridTextBox.cs: implements DataGridTextBox
13038         * DataGridColumnStyle.cs: implements DataGridColumnStyle
13039
13040 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
13041
13042         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
13043
13044 2005-03-29  Peter Bartok  <pbartok@novell.com>
13045
13046         * Application.cs:
13047           - Properly implemented CompanyName property
13048           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
13049             returns a path that includes CompanyName, ProductName and
13050             Version (fixes bug #70330)
13051
13052 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
13053
13054         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
13055           fixes bug #72588.
13056
13057 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
13058
13059         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
13060         
13061           - Added ReadOnly CheckBox
13062           - Further refactoring: moved some code from Open-/SaveFileDialog
13063             to FileDialog
13064
13065 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
13066
13067         * OpenFileDialog.cs: Fixed CheckFileExists
13068         * FileDialog.cs:
13069           Moved FileView and DirComboBox outside FileDialog class.
13070           They can now be used outside FileDialog
13071
13072 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
13073
13074         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
13075         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
13076
13077 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
13078
13079         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
13080           - Added missing CreatePrompt property in SaveDialog
13081           - Overall SaveDialog handling should be better now
13082           - Added non standard ShowHiddenFiles property
13083           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
13084           - Added InitialDirectory and RestoreDirectory support
13085
13086 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
13087
13088         * FileDialog.cs: Made dirComboBox usable
13089
13090 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
13091
13092         * FileDialog.cs: Added Filter support (case sensitiv)
13093
13094 2005-03-24  Jackson Harper  <jackson@ximian.com>
13095
13096         * TabControl.cs: Need a couple more pixels for the lines.
13097
13098 2005-03-23  Jackson Harper  <jackson@ximian.com>
13099
13100         * TabControl.cs: Give the tab page focus when it is selected.
13101
13102 2005-03-23  Jackson Harper  <jackson@ximian.com>
13103
13104         * TabControl.cs: Account for the drawing of tabs borders when
13105         invalidating. If the slider was clicked dont do click detection on
13106         the tabs.
13107
13108 2005-03-23  Jackson Harper  <jackson@ximian.com>
13109
13110         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
13111
13112 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
13113
13114         * CategoryGridEntry.cs: Added
13115         * GridItem.cs: Added helper properties
13116         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
13117         * GridEntry.cs: Updated code for collection
13118         * PropertyGrid.cs: Cleaned up some formatting
13119         * PropertyGridView.cs: Added drop down functionality for enums.
13120         * GridItemCollection.cs: Added enumerator logic
13121         * PropertyGridEntry.cs: Added
13122
13123 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
13124
13125         * FileDialog.cs:
13126           - Removed unnecessary commented code
13127           - Fixed handling for entering the filename manually in the combobox
13128
13129 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
13130
13131         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
13132
13133 2005-03-18  Peter Bartok  <pbartok@novell.com>
13134
13135         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
13136           them being touching the border
13137
13138 2005-03-18  Peter Bartok  <pbartok@novell.com>
13139
13140         * TextControl.cs: Quick hack to center text better
13141
13142 2005-03-18  Peter Bartok  <pbartok@novell.com>
13143
13144         * ControlPaint.cs:
13145           - Don't throw NotImplemented exceptions, just print a notice once
13146             instead (requested by Miguel). This makes running existing SWF
13147             apps a bit easier
13148         * Control.cs:
13149           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
13150           - Added context menu trigger on right click
13151         * Panel.cs: Trigger invalidate on resize
13152         * StatusBar.cs:
13153           - Removed old double-buffer drawing
13154           - Added ResizeRedraw style to force proper update of statusbar
13155         * ListView.cs:
13156           - Removed debug output
13157         * ThemeWin32Classic.cs:
13158           - Fixed drawing of status bar, now draws Text property if there
13159             are no defined panels
13160
13161 2005-03-18  Jackson Harper  <jackson@ximian.com>
13162
13163         * ImageList.cs: When the image stream is set pull all the images
13164         from it.
13165         * ImageListStreamer.cs: Implement reading image list streams.
13166
13167 2005-03-18  Peter Bartok  <pbartok@novell.com>
13168
13169         * ThemeWin32Classic.cs (DrawPictureBox):
13170           - Fixed calculations for centered drawing
13171           - Fixed drawing for normal mode, not scaling the image on normal
13172
13173 2005-03-18  Peter Bartok  <pbartok@novell.com>
13174
13175         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
13176           textbox
13177         * FileDialog.cs:
13178           - Made Open/Save button the accept button for FileDialog
13179           - Tied the cancel button to the IButtonControl cancel button
13180           - Save/Open now properly builds the pathname
13181           - Now handles user-entered text
13182           - Preventing crash on right-click if no item is selected
13183           - Fixed Text property, now uses contents of textbox
13184           - Fixed SelectedText property, now just returns the text part that
13185             is selected in the text box
13186
13187 2005-03-18  Jackson Harper  <jackson@ximian.com>
13188
13189         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
13190         rect, make sure to de-adjust the interior rect after drawing the
13191         tab text.
13192
13193 2005-03-18  Peter Bartok  <pbartok@novell.com>
13194
13195         * MenuAPI.cs: Remove menu *before* executing selected action to
13196           prevent the menu from 'hanging around'
13197           
13198 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
13199
13200         * XplatUIOSX.cs: Implemented WorkingArea property
13201
13202 2005-03-17  Peter Bartok  <pbartok@novell.com>
13203
13204         * XplatUIX11.cs: Fixed menu coord calculations
13205         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
13206           for calculating offsets
13207
13208 2005-03-17  Peter Bartok  <pbartok@novell.com>
13209
13210         * Hwnd.cs: Do not consider menu presence for default client
13211           rectangle location/size
13212         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
13213           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
13214           translation functions
13215         * FileDialog.cs: Fixed (what I presume is a) typo
13216
13217 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
13218
13219         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
13220           X access (avoids X-Async errors)
13221
13222 2005-03-16  Jackson Harper  <jackson@ximian.com>
13223
13224         * TabControl.cs: Raise the SelectedIndexChanged event.
13225
13226 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
13227
13228         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
13229           - Removed vertical ToolBar and replaced it with a custom panel
13230             (desktop and home button already work)
13231           - Added Help button (some controls get resized or relocated then)
13232           - Draw correct text depending on Open or Save.
13233           - Fixed some typos...
13234
13235 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
13236
13237         * ScrollBar.cs:
13238           - Only change Maximum and Minimum when need it (bug fix)
13239
13240 2005-03-15  Peter Bartok  <pbartok@novell.com>
13241
13242         * Form.cs: Use Handle for icon, to trigger creation if
13243           the window does not yet exist
13244         * Control.cs:
13245           - CanSelect: Slight performance improvement
13246           - Focus(): Preventing possible recursion
13247           - Invalidate(): Removed ControlStyle based clear flag setting
13248           - WM_PAINT: fixed logic for calling OnPaintBackground
13249           - WM_ERASEBKGND: Fixed logic, added call to new driver method
13250             EraseWindowBackground if the control doesn't paint background
13251         * XplatUIWin32.cs:
13252           - Moved EraseWindowBackground() method to internal methods
13253           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
13254             is sent via SendMessage on BeginPaint call on Win32
13255         * XplatUIX11.cs:
13256           - Added EraseWindowBackground() method
13257           - No longer sends WM_ERASEBKGND on .Expose, but on call to
13258             PaintEventStart, which more closely matches Win32 behaviour
13259           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
13260           - Fixed SetFocus() to properly deal with client and whole windows
13261         * Hwnd.cs: Added ErasePending property
13262         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
13263         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
13264
13265 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
13266
13267         * XplatUIOSX.cs:
13268           - Fix hard loop when timers exist.
13269           - Fix bugs with middle and right click for 3 button mice.
13270
13271 2005-03-11  Peter Bartok  <pbartok@novell.com>
13272
13273         * XplatUIX11.cs:
13274           - get_WorkingArea: Need to call X directly, GetWindowPos only
13275             returns cached data now
13276           - Added sanity check to GetWindowPos hwnd usage
13277
13278 2005-03-11  Jackson Harper  <jackson@ximian.com>
13279
13280         * BindingManagerBase.cs: This method isn't used anymore as
13281         PullData now updates the data in the control.
13282
13283 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
13284
13285         * Form.cs: fixes menu drawing on X11
13286         * MenuAPI.cs:  fixes menu drawing on X11
13287
13288 2005-03-11  Peter Bartok  <pbartok@novell.com>
13289
13290         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
13291           from Jonathan Gilbert; should fix bug #73606
13292         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
13293           in Screen coordinates. Thanks, Jordi.
13294         * Form.cs: Added missing attribute
13295
13296 2005-03-11  Peter Bartok  <pbartok@novell.com>
13297
13298         * Form.cs:
13299           - Rudimentary Mdi support
13300           - Removed outdated FormParent code
13301           - Implemented lots of missing properties and methods, still missing
13302             transparency support
13303           - Added missing attributes
13304           - Implemented support for MaximumBounds
13305           - Added firing of various events
13306         * XplatUI.cs: Added SetIcon() method
13307         * XplatUIDriver.cs: Added SetIcon() abstract
13308         * XplatUIOSX.cs: Stubbed out SetIcon() method
13309         * XplatUIX11.cs:
13310           - Implemented SetIcon() support
13311           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
13312           - Switched to unix line endings
13313         * XplatUIWin32.cs:
13314           - Made POINT internal so for can access it as part of MINMAX
13315           - Implemented SetIcon() support
13316           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
13317             native Mdi support again, might have to go managed)
13318         * Control.cs: Now fires the StyleChanged event
13319         * MdiClient.cs: Added; still mostly empty
13320
13321 2005-03-10  Peter Bartok  <pbartok@novell.com>
13322
13323         * SaveFileDialog.cs: Added emtpy file
13324
13325 2005-03-08  Peter Bartok  <pbartok@novell.com>
13326
13327         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
13328           in turn triggers OnCreateContro) when creating a handle for the
13329           first time.
13330         * TextControl.cs: Fixed endless loop in certain cases when
13331           replacing the current selection
13332
13333 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
13334
13335         * ScrollBar.cs:
13336           - Honors NewValue changes in Scroll events allowing apps to change it
13337           - Adds First and Last Scroll events
13338           - Fixes Thumb events
13339
13340 2005-03-07  Peter Bartok  <pbartok@novell.com>
13341
13342         * Hwnd.cs: Added DefaultClientRectangle property
13343         * XplatUI.cs: Now using the X11 driver Where() method, which provides
13344           more detailed debug information
13345         * XplatUIX11.cs:
13346           - Fixed size-change feedback loop, where we would pull an old size
13347             off the queue and mistakenly change our window's size to an
13348             earlier value
13349           - Now compressing ConfigureNotify events, to reduce looping and
13350             redraw issues
13351         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
13352           is called
13353
13354 2005-03-07  Jackson Harper  <jackson@ximian.com>
13355
13356         * Binding.cs: Push data pushes from data -> property. Check if the
13357         property is readonly when attempting to set it.
13358
13359 2005-03-07  Jackson Harper  <jackson@ximian.com>
13360
13361         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
13362         instead of IsSubclassOf. Pulling data now sets the value on the
13363         control.
13364         * PropertyManager.cs:
13365         * CurrencyManager.cs: Just need to pull data when updating now,
13366         because PullData will set the value on the control.
13367
13368 2005-03-04  Jackson Harper  <jackson@ximian.com>
13369
13370         * Binding.cs: Implement data type parsing and converting on pulled
13371         data. TODO: Are there more ways the data can be converted?
13372
13373 2005-03-04  Jackson Harper  <jackson@ximian.com>
13374
13375         * Binding.cs: Support <Property>IsNull checks. Also bind to the
13376         controls Validating method so we can repull the data when the
13377         control loses focus.
13378
13379 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
13380
13381         * ColumnHeader.cs:
13382           - Fixes null string format
13383           
13384         * ListView.cs:
13385           - Adds enum type checks
13386           - Fixes redrawing and recalc need after changing some properties
13387           - Fixes on focus_item set after the event
13388           - Fixes adding columns after the control has been created
13389           
13390         * ThemeWin32Classic.cs:
13391           - Fixes CheckBox focus rectangle
13392           - Fixes ColumnHeader drawing
13393
13394
13395 2005-03-03  Jackson Harper  <jackson@ximian.com>
13396
13397         * Binding.cs: Bind to <Property>Changed events so we can detect
13398         when properties are changed and update the data.
13399
13400 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
13401
13402         * ImageList.cs:
13403           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
13404           - Fixes ImageList constructor with ImageList container
13405           - Fixes image scaling (wrong parameters at DrawImage)
13406
13407 2005-02-02  Jackson Harper  <jackson@ximian.com>
13408
13409         * Binding.cs: Make property searches case-insensitive. Eliminate
13410         some duplicated code.
13411
13412 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
13413
13414         * ComboBox.cs:
13415                 - Handle focus event
13416                 - Fix scrollbar events
13417                 - Discard highlighted item if remove it
13418                 - Fixes SelectedItem with strings
13419
13420 2005-03-01  Peter Bartok  <pbartok@novell.com>
13421
13422         * Control.cs:
13423           - Fixed Visible property, now follows (once again) parent chain
13424             to return false if any control in the chain is visible=false
13425           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
13426           - Fixed several places where is_visible instead of Visible was used
13427           - Implemented FIXME related to focus selection when setting focused
13428             control to be invisible
13429
13430         * XplatUIWin32.cs: Now using proper method to find out if window is
13431           visible. Thanks to Jordi for pointing it out
13432
13433 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
13434
13435         * ComboBox.cs: show/hide scrollbar instead of creating it
13436
13437 2005-02-27  Jackson Harper  <jackson@ximian.com>
13438
13439         * CurrencyManager.cs: Add PositionChanged stuff.
13440
13441 2005-02-27  Peter Bartok  <pbartok@novell.com>
13442
13443         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
13444         * XplatUIOSX.cs: Added GetMenuOrigin() stub
13445         * XplatUIWin32.cs: Implemented GetMenuOrigin()
13446         * XplatUIX11.cs:
13447           - Implemented GetMenuDC()
13448           - Implemented GetMenuOrigin()
13449           - Implemented ReleaseMenuDC()
13450           - Implemented generation of WM_NCPAINT message
13451           - Implemented generation and handling of WM_NCCALCSIZE message
13452         * Form.cs: Added debug helper message for Jordi's menu work
13453         * Hwnd.cs:
13454           - Modified ClientRect property; added setter, fixed getter to handle
13455             setting of ClientRect
13456           - Added MenuOrigin property
13457
13458 2005-02-26  Peter Bartok  <pbartok@novell.com>
13459
13460         * XplatUIX11.cs:
13461           - Destroys the caret if a window that's being destroyed contains it
13462           - Ignores expose events coming from the X11 queue for windows that
13463             already are destroyed
13464           - Now uses the proper variable for handling DestroyNotify, before we
13465             marked the wrong window as destroyed
13466           - Improved/added some debug output
13467
13468 2005-02-26  Peter Bartok  <pbartok@novell.com>
13469
13470         * X11Keyboard.cs: Fixes to work on 64bit systems
13471
13472 2005-02-26  Peter Bartok  <pbartok@novell.com>
13473
13474         * Control.cs:
13475           - Now calling OnHandleDestroyed from DestroyHandle()
13476             instead of Dispose()
13477           - Removed bogus call to controls.Remove() from DestroyHandle()
13478
13479 2005-02-26  Peter Bartok  <pbartok@novell.com>
13480
13481         * Control.cs: Properly destroy child windows when our handle is
13482           destroyed
13483
13484 2005-02-25  Peter Bartok  <pbartok@novell.com>
13485
13486         * XplatUI.cs:
13487           - Added 'DriverDebug' define to allow tracing XplatUI API calls
13488           - Alphabetized Static Methods and Subclasses
13489
13490         * XplatUIX11.cs:
13491           - Added XException class to allow custom handling of X11 exceptions
13492           - Created custom X11 error handler, tied into XException class
13493           - Added support for MONO_XEXCEPTIONS env var to allow the user
13494             to either throw an exception on X errors or continue running
13495             after displaying the error
13496           - Added handling of DestroyNotify message
13497           - Added handler for CreateNotify message (still disabled)
13498           - Improved (tried to at least) Where method to provide file and lineno
13499         * X11Structs.cs:
13500           - Added XErrorHandler delegate
13501           - Added XRequest enumeration (to suppor translation of errors)
13502
13503 2005-02-25  Jackson Harper  <jackson@ximian.com>
13504
13505         * PropertyManager.cs: Implement editing features
13506         * CurrencyManager.cs:
13507         * Binding.cs: First attempt at UpdateIsBinding
13508         * BindingManagerBase.cs: Call UpdateIsBinding before
13509         pushing/pulling data.
13510
13511 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
13512
13513         * MenuAPI.cs: Respect disabled items
13514         * ThemeWin32Classic.cs
13515                 - Caches ImageAttributes creation for DrawImageDisabled
13516                 - Fixes vertical menu line drawing
13517                 - Draws disabled arrows in disable menu items
13518
13519 2005-02-24  Peter Bartok  <pbartok@novell.com>
13520
13521         * Hwnd.cs:
13522           - Added UserData property to allow associating arbitrary objects
13523             with the handle
13524           - Fixed leak; now removing Hwnd references from static windows array
13525         * XplatUIWin32.cs:
13526           - Fixed Graphics leak in PaintEventEnd
13527           - Removed usage of HandleData, switched over to Hwnd class
13528         * HandleData.cs: Removed, obsoleted by Hwnd.cs
13529
13530 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
13531
13532         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
13533         * ScrollBar.cs: Fixes bug
13534         * TrackBar.cs: removes death code, clipping, mimize refreshes,
13535          keyboard navigation enhancements
13536
13537 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
13538
13539         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
13540         * GroupBox.cs: Add control styles
13541         * Label.cs: Add control styles
13542         * UpDownBase.cs: Add control styles
13543         * ListBox.cs: Add control styles
13544         * XplatUIWin32.cs: Fixes wrong parameter order
13545
13546
13547 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
13548
13549         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
13550
13551 2005-02-23  Jackson Harper  <jackson@ximian.com>
13552
13553         * PropertyManager.cs: Implement property binding. This doesn't
13554         seem to work yet though as (I think) there are some bugs in
13555         System.ComponentModel.PropertyDescriptor.
13556         * BindingContext.cs: Use new PropertyManager constructor.
13557
13558 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
13559
13560         * ProgressBar.cs: use clip region in ProgressBar
13561         * ThemeWin32Classic.cs: use clip region in ProgressBar
13562
13563 2004-02-22  Jackson Harper  <jackson@ximian.com>
13564
13565         * BindingsCollection.cs: Remove some debug code.
13566
13567 2005-02-22  Jackson Harper  <jackson@ximian.com>
13568
13569         * BindingContext.cs:
13570         * ControlBindingsCollection.cs:
13571         * CurrencyManager.cs:
13572         * Binding.cs:
13573         * BindingManagerBase.cs: Initial implementation
13574         * BindingsCollection.cs: Add an internal contains method that the
13575         BindingManagerBase uses to ensure bindings aren't added twice to
13576         the collection.
13577         * PropertyManager.cs: Stubbed out.
13578         * Control.cs:
13579         * ContainerControl.cs: Hook up databinding
13580         
13581 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
13582
13583         * XplatUIOSX.cs:
13584           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
13585           Fixed Invalidate/Update chain.
13586           Fixed tons of other minor bugs (this is almost a complete rewrite).
13587
13588 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
13589
13590         * ComboBox.cs: do subcontrol creation when the control is created
13591
13592 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
13593
13594         * Label.cs: fixes image drawing (image and imagelist)
13595         * ThemeWin32Classic.cs: cache brushes
13596         
13597 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
13598
13599         * Form.cs: Move menu drawing code to Theme class
13600         * ComboBox.cs: Move ComboBox drawing code to Theme class
13601         * MenuItem.cs: Move menu drawing code to Theme class
13602         * MenuAPI.cs: Move menu drawing code to Theme class
13603         * ThemeWin32Classic.cs: New methods
13604         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
13605         * ListBox.cs: Move Listbox drawing code to Theme class
13606         * Theme.cs: New methods
13607
13608 2005-02-20  Peter Bartok  <pbartok@novell.com>
13609
13610         * Control.cs:
13611           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
13612             only process mnemonics on those)
13613           - Fixed event sequence for key handling; first calling
13614             ProcessKeyEventArgs now
13615         * TextBoxBase.cs:
13616           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
13617             for processing non-character keys
13618           - Fixed WM_CHAR to generate proper event sequence before processing
13619         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
13620           generation
13621
13622 2005-02-19  Peter Bartok  <pbartok@novell.com>
13623
13624         * UserControl.cs: Added TextChanged event; added attributes
13625         * SizeGrip.cs: Implemented resizing and optional display of grip
13626         * Form.cs: Fixed attribute
13627         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
13628           Changed meaning of ScrollWindow bool argument; instead of the
13629           clear attribute (which will be true usually anyway), it gives the
13630           option of moving child controls as well.
13631         * XplatUIX11.cs:
13632           - Changed to match new ScrollWindow argument
13633           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
13634             now handles the implicit parent window a WM puts around us
13635         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
13636           to work)
13637         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
13638         * TreeView.cs: Adjusted to new ScrollWindow arguments
13639
13640 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
13641
13642         * Form.cs: Menu integration with non-client area
13643         * MenuItem.cs: Menu integration with non-client area
13644         * MenuAPI.cs: Menu integration with non-client area
13645
13646 2005-02-18  Peter Bartok  <pbartok@novell.com>
13647
13648         * MethodInvoker.cs: Added
13649         * MdiLayout.cs: Added
13650         * SendKeys.cs: Started implementation
13651         * ErrorIconAlignment.cs: Added
13652
13653 2005-02-18  Peter Bartok  <pbartok@novell.com>
13654
13655         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
13656         * Form.cs: Added handling for Menu-related Non-client messages
13657
13658 2005-02-17  Peter Bartok  <pbartok@novell.com>
13659
13660         * UpDownBase.cs: Fixed typo, compilation errors
13661         * DomainUpDown.cs: Fixed attribute value
13662
13663 2005-02-16  Miguel de Icaza  <miguel@novell.com>
13664
13665         * UpDownBase.cs: Attach entry events.
13666         Propagate events.
13667         Add ForeColor property, Focused, InterceptArrowKeys (interception
13668         does not work yet).
13669
13670 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
13671
13672         * Form.cs:
13673                 - Redraw non client are on Setmenu
13674                 - Calc proper menu starting point
13675
13676 2005-02-17  Peter Bartok  <pbartok@novell.com>
13677
13678         * Application.cs: Fixed message_filter check
13679
13680 2005-02-17  Peter Bartok  <pbartok@novell.com>
13681
13682         * Application.cs: Now calls registered message filters
13683         * DockStyle.cs: Fixed attribute
13684         * Form.cs: Fixed attribute
13685         * Menu.cs: Fixed attribute
13686         * ToolTip.cs: Fixed attribute
13687         * TreeNode.cs: Added missing attributes and arranged in regions
13688         * PropertyGrid.cs: Fixed signatures
13689         * TreeNodeCollection.cs: Added attributes
13690         * Splitter.cs: Added missing attributes; arranged into regions
13691         * TabPage.cs: Added missing attributes; arranged into regions
13692         * TextBoxBase.cs: Added missing attributes
13693         * TextBox.cs: Added missing attributes
13694         * ArrangeDirection.cs: Added missing attributes
13695         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
13696         * ToolBarButton.cs: Fixed attributes
13697         * AnchorStyles.cs: Fixed attribute
13698         * TrackBar.cs: Fixed attributes
13699         * TabControl.cs: Added missing attributes and arranged into regions
13700         * ToolBar.cs: Fixed attribute
13701         * StatusBar.cs: Fixed signature, organized into regions and added
13702           attributes
13703         * StatusBarPanel.cs: Fixed attributes
13704         * ContentsResizedEventArgs.cs: Implemented
13705         * ContentsResizedEventHandler.cs: Implemented
13706         * DateBoldEventArgs.cs: Implemented
13707         * DateBoldEventHandler.cs: Implemented
13708         * UpDownEventArgs.cs: Implemented
13709         * UpDownEventHandler.cs: Implemented
13710         
13711 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
13712
13713         * Form.cs: first Menu NC refactoring
13714         * MenuAPI.cs: first Menu NC refactoring
13715         
13716 2005-02-16  Peter Bartok  <pbartok@novell.com>
13717
13718         * ImeMode.cs: Added missing attributes
13719         * Menu.cs: Fixed attribute
13720         * GroupBox.cs: Fixed attribute
13721         * Label.cs: Fixed attribute
13722         * ColorDialog.cs (RunDialog): Removed TODO attribute
13723         * ComboBox.cs: Fixed attributes
13724         * ListControl.cs: Added missing attributes
13725         * PropertyGrid.cs: Fixed attributes
13726         * Control.cs: Fixed attributes
13727         * ListViewItem.cs: Added TypeConverter attribute
13728         * NotifyIcon.cs: Fixed attributes
13729         * ListView.cs: Fixed attributes
13730         * ButtonBase.cs: Fixed attribute
13731         * ImageList.cs: Added missing attributes
13732         * ContainerControl.cs: Fixed signature
13733         * CheckedListBox.cs: Fixed attribute; added missing attributes
13734         * Panel.cs: Fixed attributes
13735         * PropertyTabChangedEventArgs.cs: Added missing attribute
13736         * PropertyValueChangedEventArgs.cs: Added missing attribute
13737         * Binding.cs: Fixed attribute
13738         * ListViewItemConverter: Implemented ListViewSubItemConverter class
13739         * ListBox.cs: Fixed attribute; added missing attributes;
13740         * ScrollableControl.cs: Added missing attributes
13741         * PictureBox.cs: Added missing attributes; implemented missing property
13742         * DateTimePicker.cs: Added missing attributes
13743         * Theme.cs (ToolWindowCaptionHeight): Fixed type
13744         * MonthCalendar.cs: Fixed attributes
13745         * StatusBarPanel.cs: Added missing attributes
13746         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
13747
13748 2005-02-16  Peter Bartok  <pbartok@novell.com>
13749
13750         * TextBoxBase.cs: The previous method to enforce height yet remember
13751           the requested high was less than ideal, this is an attempt to do
13752           it better.
13753         * Control.cs: Added comment about possible problem
13754         * Copyright: Updated format
13755         * GridItemType.cs: Fixed swapped values
13756
13757 2005-02-15  Jackson Harper  <jackson@ximian.com>
13758
13759         * BaseCollection.cs: Use property so we never access an
13760         uninitialized list. Also initialize the list in the property.
13761
13762 2005-02-15  Peter Bartok  <pbartok@novell.com>
13763
13764         * GroupBox.cs (ProcessMnemonic): Implemented
13765         * Label.cs (ProcessMnemonic): Implemented
13766         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
13767           hotkeys
13768
13769 2005-02-15  Peter Bartok  <pbartok@novell.com>
13770
13771         * RadioButton.cs (ProcessMnemonic): Implemented
13772         * CheckBox.cs (ProcessMnemonic): Implemented
13773         * Control.cs:
13774           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
13775             handling
13776           - Added internal method to allow calling ProcessMnemonic from other
13777             controls
13778         * ContainerControl.cs:
13779           - Started support for handling validation chain handling
13780           - Implemented ProcessMnemonic support
13781           - Added Select() call to Active, to make sure the active control
13782             receives focus
13783         * Form.cs: Setting toplevel flag for Forms (this was lost in the
13784           FormParent rewrite)
13785         * ThemeWin32Classic.cs:
13786           - DrawCheckBox(): Fixed stringformat to show hotkeys
13787           - DrawRadioButton(): Fixed stringformat to show hotkeys
13788         * CommonDialog.cs: Removed WndProc override, not needed
13789
13790 2005-02-14  Peter Bartok  <pbartok@novell.com>
13791
13792         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
13793           missed those in the rewrite
13794
13795 2005-02-14  Miguel de Icaza  <miguel@novell.com>
13796
13797         * NumericUpDown.cs (Increment, ToString): Add.
13798         (DecimalPlaces): implement.
13799         
13800         Add attributes.
13801         
13802         * UpDownBase.cs: Add the designer attributes.
13803
13804 2005-02-13  Peter Bartok  <pbartok@novell.com>
13805
13806         * Panel.cs: Removed border_style, now in Control
13807         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
13808           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
13809
13810 2005-02-13  Peter Bartok  <pbartok@novell.com>
13811
13812         * MouseButtons.cs: Added missing attributes
13813         * XplatUIStructs.cs: Added enumeration for title styles
13814         * LeftRightAlignment.cs: Added missing attributes
13815         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
13816           it compatible with Graphics.FromHwnd()
13817         * SelectedGridItemChangedEventArgs.cs: Fixed property type
13818         * Keys.cs: Added missing attributes
13819         * SelectionRange.cs: Added missing attributes
13820         * SelectionRangeConverter.cs: Added
13821         * XplatUI.cs:
13822           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
13823             ReleaseMenuDC methods
13824           - Renamed ReleaseWindow to UngrabWindow
13825           - Added proper startup notice to allow version identification
13826         * Form.cs:
13827           - Added missing attributes
13828           - Removed FormParent concept
13829         * Label.cs: Removed border_style field, now in Control
13830         * RadioButton.cs: Now properly selects RadioButton when focus is
13831           received
13832         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
13833         * Control.cs:
13834           - Added missing attributes
13835           - Added borderstyle handling
13836           - Removed FormParent concept support
13837           - Fixed calls to XplatUI to match changed APIs
13838           - Fixed bug that would case us to use disposed Graphics objects
13839           - Removed unneeded internal methods
13840           - PerformLayout(): Fixed to handle DockStyle.Fill properly
13841           - SelectNextControl(): Fixed to properly check common parents
13842         * TextBoxBase.cs: Removed border_style field (now in Control)
13843         * MessageBox.cs:
13844           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
13845             fixed calculations for form size
13846           - Added support for localized strings and icons
13847           - Improved form size calculations, added border
13848         * ListView.cs: Removed border_style field (now in Control)
13849         * X11Structs.cs: Moved several structs from X11 driver here
13850         * X11Keyboard.cs: Changed debug message
13851         * Application.cs: Removed FormParent concept support
13852         * CommonDialog.cs:
13853           - Resetting end_modal flag
13854           - Removed FormParent concept support
13855         * NativeWindow.cs: Removed FormParent concept support
13856         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
13857           Client area and Non-Client whole window to allow support for WM_NC
13858           messages
13859         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
13860           prevent using it until it supports Hwnd as per Geoff Norton's request
13861         * ToolBar.cs: Fixed drawing, was not doing proper drawing
13862         * PictureBox.cs: Removed border_style field, now in Control
13863         * XplatUIWin32.cs: Added new driver methods
13864
13865 2005-02-12  Peter Bartok  <pbartok@novell.com>
13866
13867         * OpacityConverter.cs: Implemented
13868         * Hwnd.cs: Internal class to support drivers that need to emulate
13869           client area/non-client area window behaviour
13870
13871 2005-02-11  Peter Bartok  <pbartok@novell.com>
13872
13873         * KeysConverter.cs: Implemented
13874
13875 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
13876
13877         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
13878         * LinkLabel: Added missing attributes
13879         * MainMenu.cs: fixes ToString
13880         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
13881         * ListBox.cs: fixes event position
13882         * TrackBar.cs: adds missing attributes and events
13883         
13884 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
13885
13886         * MenuItem.cs: Use SystemInformation and bug fixes
13887         * MenuAPI.cs: Use SystemInformation and bug fixes
13888
13889 2005-02-09  Jackson Harper  <jackson@ximian.com>
13890
13891         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
13892         their keystate otherwise things like VK_MENU get stuck "on".
13893
13894 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
13895
13896         * ListBox.cs: Fixes AddRange bug
13897         
13898 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
13899
13900         * ProgressBar.cs
13901                 - Add missing attributes
13902                 - Add missing method
13903                 
13904         * CheckedListBox.cs: Added missing attributes
13905                 - Add missing attributes
13906                 - Remove extra method
13907         
13908         * ComboBox.cs: Added missing attributes
13909         * VScrollBar.cs: Added missing attributes
13910         * ScrollBar.cs:  Added missing attributes
13911         * ListBox.cs: Fixes signature, add missing consts
13912         * LinkArea.cs:   Added missing attributes
13913         
13914
13915 2005-02-08  Peter Bartok  <pbartok@novell.com>
13916
13917         * Menu.cs: Added missing attributes
13918         * MainMenu.cs: Added missing attributes
13919         * GroupBox.cs: Added missing attributes
13920         * Label.cs: Added missing attributes
13921         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
13922         * ColorDialog.cs:
13923           - Added Instance and Options properties
13924           - Added missing attributes
13925         * Cursor.cs: Made Serializable
13926         * NotifyIcon: Added missing attributes
13927         * MenuItem.cs: Added missing attributes
13928         * TextBoxBase.cs: Implemented AppendText() and Select() methods
13929         * Panel.cs: Added Missing attributes
13930         * MonthCalendar.cs: Fixed CreateParams
13931
13932 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
13933         
13934         * LinkLabel.cs:
13935                 - Fixes signature
13936                 - Fixes issues with links
13937                 - Adds the class attributes
13938
13939 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
13940         
13941         * ComboBox.cs:
13942                 - Fixes button when no items available in dropdown
13943                 - Fixes repainting problems
13944                 - Adds the class attributes
13945                 
13946 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
13947
13948         * XplatUIOSX.cs: Detect the menu bar and title bar height from
13949         the current theme.  Cache these on startup.
13950
13951 2005-02-07  Jackson Harper  <jackson@ximian.com>
13952
13953         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
13954         the scrollbar buttons when they are depressed.
13955
13956 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
13957
13958         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
13959         Get the display size from the main displayid.  We currently dont
13960         support multiple display configurations.
13961
13962 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
13963
13964         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
13965
13966 2005-02-07  Miguel de Icaza  <miguel@novell.com>
13967
13968         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
13969
13970 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
13971
13972         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
13973
13974 2005-02-04  Jackson Harper  <jackson@ximian.com>
13975
13976         * ThemeWin32Classic.cs: Respect the clipping rect when
13977         drawing. Only fill the intersection of clips and rects so there
13978         isn't a lot of large fills.
13979         * ScrollBar.cs: Pass the correct clipping rect to the theme
13980         engine. Remove some debug code.
13981
13982 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
13983         
13984         * DateTimePicker.cs:
13985                 - Fixed crash on DateTime.Parse, use Constructor instead
13986
13987 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
13988         
13989         * MenuItem.cs:
13990         * MenuAPI.cs:
13991                 - Owner draw support (MeasureItem and DrawItem)
13992
13993 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
13994         
13995         *  Menu.cs:
13996                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
13997                 - Fixes MenuItems.Add range
13998         * MenuItem.cs:
13999                 - MergeMenu and Clone and CloneMenu functions
14000
14001 2005-02-03  Jackson Harper  <jackson@ximian.com>
14002
14003         * ScrollBar.cs: Make abstract
14004         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
14005         is abstract.
14006
14007 2005-02-03  Jackson Harper  <jackson@ximian.com>
14008
14009         * ScrollBar.cs: First part of my scrollbar fixups. This removes
14010         all the unneeded refreshes and uses invalidates with properly
14011         computed rects.
14012
14013 2005-02-03  Peter Bartok  <pbartok@novell.com>
14014
14015         * ComponentModel.cs: Added
14016         * IDataGridEditingService.cs: Added
14017         * Timer.cs: Added missing attributes
14018         * ToolTip.cs: Added missing attributes
14019
14020 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
14021
14022         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
14023
14024 2005-02-03  Peter Bartok  <pbartok@novell.com>
14025
14026         * ListBox.cs: Added missing attributes
14027
14028 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
14029         
14030         * ListBox.cs:
14031                 - Fixes font height after font change
14032                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
14033                 
14034 2005-02-02  Peter Bartok  <pbartok@novell.com>
14035
14036         * HandleData.cs: Introduced static methods to allow class
14037           to be more self-contained and track it's own HandleData objects
14038         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
14039           HandleData to use new static methods
14040
14041 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
14042
14043         * Combobox.cs:
14044                 - Fixes default size and PreferredHeight
14045                 - Missing events
14046                 - ObjectCollection.Insert implementation
14047                 
14048         * ListControl.cs
14049                 - Fixes signature
14050         * ListBox.cs:
14051                 - Several fixes
14052                 - ObjectCollection.Insert implementation
14053                 - No selection after clean
14054                 - Small fixes
14055
14056 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
14057
14058         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
14059
14060 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
14061
14062         * Combobox.cs:
14063                 - Caches ItemHeight calculation for OwnerDrawVariable
14064                 - Handles dropdown properly
14065                 - Fixes several minor bugs
14066
14067 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
14068
14069         * ListBox.cs:
14070                 - Fixes 71946 and 71950
14071                 - Fixes changing Multicolumn on the fly
14072                 - Fixes keyboard navigation on Multicolumn listboxes
14073
14074 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14075         
14076         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
14077         crash reporter log.
14078
14079 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14080
14081         * XplatUIOSX.cs: Allow applications to actually exit.
14082
14083 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
14084
14085         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
14086         their parent at creation time rather than lazily later.  Fixes a major
14087         regression we were experiencing.
14088
14089 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
14090
14091         * ThemeWin32Classic.cs: more date time picker painting fixes
14092         * DateTimePicker.cs: more monthcalendar drop down fixes
14093         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
14094
14095 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
14096
14097         * ScrollBar.cs:
14098                 - When moving the thumb going outside the control should stop the moving
14099                 - Adds the firing of missing events
14100                 - Fixes no button show if Size is not specified
14101                 - End / Home keys for keyboard navigation
14102
14103 2005-01-30  Peter Bartok  <pbartok@novell.com>
14104
14105         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
14106           sanity check to prevent theoretical loop
14107         * XplatUIWin32.cs (SetVisible): Removed debug output
14108         * XplatUIX11.cs (SystrayChange): Added sanity check
14109         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
14110         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
14111           behaviour, valid until the X11 client window rewrite is done
14112         * TextBox.cs (ctor): Setting proper default foreground and background
14113           colors
14114
14115 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
14116
14117         * Theme: Added DrawDateTimePicker to interface
14118         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
14119         * DateTimePicker.cs: Created (still needs keys and painting code)
14120         * DateTimePickerFormat.cs: added
14121         * MonthCalendar.cs: fixed CreateParams for popup window mode
14122           
14123 2005-01-29  Peter Bartok  <pbartok@novell.com>
14124
14125         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
14126           this should also the calculations for ligher/darker
14127         * Theme.cs: Fixed defaults for ScrollBar widths/heights
14128
14129 2005-01-29  Peter Bartok  <pbartok@novell.com>
14130
14131         * ArrangeDirection.cs: Added
14132         * ArrangeStartingPositon.cs: Added
14133         * SystemInformation.cs: Implemented
14134         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14135           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
14136           used by SystemInformation class
14137         * X11Strucs.cs: Added XSizeHints structure
14138         * MenuAPI.cs:
14139           - Fixed CreateParams to make sure the menu window is always visible
14140           - TrackPopupMenu: Added check to make sure we don't draw the
14141             menu offscreen
14142
14143 2005-01-29  Peter Bartok  <pbartok@novell.com>
14144
14145         * HandleData.cs: Added method for altering invalid area
14146         * TextBoxBase.cs: Implemented TextLength
14147
14148 2005-01-28  Peter Bartok  <pbartok@novell.com>
14149
14150         * XplatUIX11.cs: Improvement over last patch, not sending
14151           the WM_PAINT directly anymore, instead we scroll any pending
14152           exposed areas and let the system pick out the WM_PAINT later
14153
14154 2005-01-28  Peter Bartok  <pbartok@novell.com>
14155
14156         * SWF.csproj: Deleted, no longer used. Instead,
14157           Managed.Windows.Forms/SWF.csproj should be used
14158         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
14159           directly, to avoid a potential race condition with the next
14160           scroll
14161
14162 2005-01-28  Peter Bartok  <pbartok@novell.com>
14163
14164         * XplatUI.cs: Made class internal
14165
14166 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
14167
14168         * CheckedListBox.cs:
14169                 - Draw focus
14170                 - Fixed Drawing
14171                 - Missing methods and events
14172
14173 2005-01-27  Peter Bartok  <pbartok@novell.com>
14174
14175         * Application.cs (Run): Don't use form if we don't have one
14176
14177 2005-01-27  Peter Bartok  <pbartok@novell.com>
14178
14179         * TextBoxBase.cs (get_Lines): Fixed index off by one error
14180
14181 2005-01-27  Peter Bartok  <pbartok@novell.com>
14182
14183         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
14184         * GridItem.cs: Added; Patch by Jonathan S. Chambers
14185         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
14186         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
14187         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
14188         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
14189         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14190         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
14191         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14192         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14193         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
14194         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
14195
14196 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
14197
14198         * Combobox.cs:
14199                 - Draw focus on Simple Combobox
14200                 - Fixes drawing issues
14201                 - fixes 71834
14202
14203 2005-01-27  Peter Bartok  <pbartok@novell.com>
14204
14205         * Form.cs:
14206           - Place window in default location, instead of hardcoded 0/0
14207           - Send initial LocationChanged event
14208         * Control.cs:
14209           - UpdateBounds after creation to find out where the WM placed us
14210           - Make sure that if the ParentForm changes location the Form
14211             is notified
14212         * XplatUIX11.cs: XGetGeometry will not return the coords relative
14213             to the root, but to whatever the WM placed around us.
14214             Translate to root coordinates before returning toplevel
14215             coordinates
14216         * XplatUIWin32.cs: Removed debug output
14217         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
14218           flag to GetWindowPos, to allow translation of coordinates on X11
14219
14220 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
14221
14222         * ListBox.cs: connect LostFocus Event
14223
14224 2005-01-27  Peter Bartok  <pbartok@novell.com>
14225
14226         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
14227           XplatUIX11.cs: Extended the Systray API
14228         * Form.cs: Removed debug output
14229         * Application.cs: Fixed focus assignment, always need to call
14230           XplatUI.Activate() since Form.Activate() has rules that may
14231           prevent activation
14232         * NotifyIcon.cs: Should be complete now
14233         * ToolTip.cs: Worked around possible timer bug
14234
14235 2005-01-27  Jackson Harper  <jackson@ximian.com>
14236
14237         * TabControl.cs:
14238         - Only invalidate the effected tabs when the
14239         selected index changes. This reduces drawing and gets rid of some
14240         flicker.
14241         - Only refresh if the tabs need to be shifted, otherwise only
14242         invalidate the slider button.
14243         - On windows the tabs are not filled to right if the slider is
14244         visible.
14245         
14246 2005-01-27  Jackson Harper  <jackson@ximian.com>
14247
14248         * TabControl.cs: Only refresh on mouseup if we are showing the
14249         slider. Also only invalidate the button whose state has changed.
14250
14251 2005-01-26  Peter Bartok  <pbartok@novell.com>
14252
14253         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
14254         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
14255           and SystrayRemove() methods
14256         * XplatUIOSX.cs: Stubbed Systray methods
14257         * XplatUIX11.cs:
14258           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
14259             methods
14260           - Fixed broken XChangeProperty calls (marshalling messed up things)
14261         * X11Structs.cs: Added enums and structs required for Size hinting
14262         * NotifyIcon.cs: Added & implemented
14263
14264 2005-01-26  Jackson Harper  <jackson@ximian.com>
14265
14266         * TabControl.cs: Space vertically layed out tabs properly.
14267
14268 2005-01-26  Peter Bartok  <pbartok@novell.com>
14269
14270         * Form.cs (CreateClientParams): Always set the location to 0,0
14271           since we're a child window.
14272
14273         * Control.cs (SetVisibleCore): Always explicitly setting the location
14274           of a toplevel window, apparently X11 doesn't like to move windows
14275           while they're not mapped.
14276
14277 2005-01-26  Jackson Harper  <jackson@ximian.com>
14278
14279         * TabControl.cs: Implement FillToRight size mode with vertically
14280         rendered tabs.
14281
14282 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
14283
14284         * ControlPaint.cs, ThemeWin32Classic.cs
14285                 - Fixes DrawFocusRectangle
14286
14287 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
14288
14289         * MenuAPI.cs:
14290                 - MenuBar tracking only starts when item is first clicked
14291                 - Fixes menu hidding for multiple subitems
14292                 - Unselect item in MenuBar when item Executed
14293                 - Fixes bug 71495
14294
14295 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
14296
14297         * ListControl.cs:
14298                 - IsInputKey for ListBox
14299         * ListBox.cs:
14300                 - Focus item
14301                 - Shift and Control item selection
14302                 - Implement SelectionMode.MultiExtended
14303                 - Fixes RightToLeft
14304         * ComboBox.cs:
14305                 - IsInputKey implemented
14306                 - Do not generate OnTextChangedEdit on internal txt changes
14307                 
14308 2005-01-23  Peter Bartok  <pbartok@novell.com>
14309
14310         * AccessibleObject.cs: Partially implemented Select()
14311         * MonthCalendar.cs: Added missing attributes and events
14312         * Form.cs: Fixed CreateParams behaviour, now controls derived from
14313           form can properly override CreateParams.
14314         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
14315           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
14316           Control performs Invalidate & Update
14317         * NativeWindow (CreateHandle): Added special handling for Form
14318           and Form.FormParent classes to allow overriding of From.CreateParams
14319         * Control.cs:
14320           - ControlNativeWindow: Renamed 'control' variable to more intuitive
14321             name 'owner'
14322           - ControlNativeWindow: Added Owner property
14323           - Removed usage of Refresh() on property changes, changed into
14324             Invalidate(), we need to wait until the queue is processed for
14325             updates, direct calls might cause problems if not all vars for
14326             Paint are initialized
14327           - Added call to UpdateStyles() when creating the window, to set any
14328             styles that CreateWindow might have ignored.
14329           - Added support for Form CreateParent overrides to UpdateStyles()
14330         * MessageBox.cs: Removed no longer needed FormParent override stuff,
14331           CreateParams are now properly overridable
14332         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
14333           CreateParams are now properly overridable
14334
14335 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
14336
14337         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
14338         OnTextBoxChanged.
14339
14340         Capture LostFocus and OnTextBoxChanged.  The later introduces a
14341         recursive invocation that I have not figured out yet.
14342
14343         Reset the timer when not using (it was accumulating).
14344
14345
14346         (OnTextBoxChanged): Set UserEdit to true here to track whether the
14347         user has made changes that require validation.
14348
14349         Reset changing to avoid loops.
14350
14351 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
14352
14353         * NumericUpDown.cs: Display value at startup.
14354
14355         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
14356         ValidateEditText.
14357
14358         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
14359         filled in.  Added some basic parsing of text.
14360
14361         Still missing the OnXXX method overrides, and figuring out the
14362         events that must be emitted.
14363
14364         * UpDownBase.cs: Handle UserEdit on the Text property.
14365         
14366 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
14367
14368         * ComboBox.cs:
14369           - Fixes IntegralHeight
14370           - ToString method
14371
14372 2005-01-21  Jackson Harper  <jackson@ximian.com>
14373
14374         * TabControl.cs: Set the SelectedIndex property when SelectedTab
14375         is set so that the page visibility is updated and the tabs are
14376         sized correctly.
14377
14378 2005-01-21  Jackson Harper  <jackson@ximian.com>
14379
14380         * TabControl.cs: Use cliping rectangle for blitting. Give the
14381         theme the clipping rect so we can do clipping while
14382         drawing. Remove some debug code.
14383
14384 2005-01-21  Jackson Harper  <jackson@ximian.com>
14385
14386         * TabPage.cs: Add a new method so tab pages can force the tab
14387         control to recalculate the tab page sizes.
14388         * TabControl.cs: UpdateOwner needs to make the tab control recalc
14389         sizes.
14390
14391 2005-01-20  Jackson Harper  <jackson@ximian.com>
14392
14393         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
14394
14395 2005-01-20  Jackson Harper  <jackson@ximian.com>
14396
14397         * TreeView.cs: Set the bounds for nodes properly. They were
14398         getting screwed up when checkboxes were not enabled, but images
14399         were.
14400
14401 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
14402
14403         * ListBox.cs:
14404                 - Owner draw support
14405                 - Fixes
14406                 
14407 2005-01-20  Jackson Harper  <jackson@ximian.com>
14408
14409         * XplatUIStructs.cs: More misc keys
14410         * X11Keyboard.cs: Ignore some control keys.
14411
14412 2005-01-20  Jackson Harper  <jackson@ximian.com>
14413
14414         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
14415         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
14416
14417 2005-01-19  Peter Bartok  <pbartok@novell.com>
14418
14419         * Control.cs: Un-selecting the control when it is loosing focus
14420
14421 2005-01-19  Jackson Harper  <jackson@ximian.com>
14422
14423         * TreeView.cs: Hook up to the text controls leave event so we can
14424         end editing when the users clicks outside the text box.
14425         
14426 2005-01-19  Jackson Harper  <jackson@ximian.com>
14427
14428         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
14429         get set in the conversion array.
14430
14431 2005-01-19  Peter Bartok  <pbartok@novell.com>
14432
14433         * Application.cs (ModalRun): Added a call to CreateControl to ensure
14434           focus is properly set
14435         * Button.cs:
14436           - Added missing attributes
14437           - removed styles, those are already set in the base class
14438         * ButtonBase.cs:
14439           - Added missing attributes
14440           - Added clip window styles
14441         * CheckBox.cs: Added missing attributes
14442         * CommonDialog.cs:
14443           - FormParentWindow.CreateParams: Added required clip styles
14444         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
14445           also filters modifier keys
14446         * MessageBox.cs:
14447           - Added assignment of Accept and Cancel button to enable Enter
14448             and Esc keys in MessageBox dialogs
14449           - FormParentWindow.CreateParams: Added required clip styles
14450         * RadioButton.cs: Added missing attributes
14451         * TextControl.cs: No longer draws selection if control does not
14452           have focus
14453         * TextBoxBase.cs:
14454           - Now draws simple rectangle around test area to make it obvious
14455             there's a control. This is a hack until we properly support borders
14456           - A few simple fixes to support selections better, now erases selected
14457             text when typing, and resets selection when using movement keys
14458
14459 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
14460
14461         * UpDownBase.cs: Added some new properties.
14462
14463         * DomainUpDown.cs: Implement a lot to get my test working.
14464
14465 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14466
14467         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
14468
14469 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14470
14471         * OSXStructs (WindowAttributes): Fixed csc complaints
14472
14473 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14474
14475         * XplayUIOSX.cs:
14476           OSXStructs.cs: Initial refactor to move enums and consts into
14477           OSXStructs and use them in the driver for greater readability.
14478
14479 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
14480
14481         * XplatUIOSX.cs: Initial support for Standard Cursors.
14482         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
14483
14484 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
14485
14486         * ComboBox.cs: ability to change style when the ctrl is already
14487         created, missing methods and events, bug fixes, signature fixes
14488
14489 2005-01-19  Peter Bartok  <pbartok@novell.com>
14490
14491         * Cursors.cs (ctor): Added ctor to fix signature
14492
14493 2005-01-18  Peter Bartok  <pbartok@novell.com>
14494
14495         * Button.cs: Implemented DoubleClick event
14496         * ButtonBase.cs:
14497           - Fixed keyboard handling to behave like MS, where the press of
14498             Spacebar is equivalent to a mousedown, and the key release is
14499             equivalent to mouseup. Now a spacebar push will give the same
14500             visual feedback like a mouse click.
14501           - Added missing attributes
14502           - Added ImeModeChanged event
14503           - Added support for generating DoubleClick event for derived classes
14504         * CheckBox.cs:
14505           - Implemented DoubleClick event
14506           - Added missing attributes
14507         * CommonDialog.cs: Added missing attribute
14508         * ContextMenu.cs: Added missing attributes
14509         * RadioButton.cs:
14510           - AutoChecked buttons do not allow to be unselected when clicked
14511             (otherwise we might end up with no selected buttons in a group)
14512           - Added missing attributes
14513           - Implemented DoubleClickEvent
14514         * ThreadExceptionDialog.cs: Enabled TextBox code
14515
14516 2005-01-18  Peter Bartok  <pbartok@novell.com>
14517
14518         * Form.cs: Removed debug output
14519         * Button.cs: Added support for DoubleClick method
14520
14521 2005-01-18  Peter Bartok  <pbartok@novell.com>
14522
14523         * Form.cs:
14524           - Added method to parent window that allows triggering size
14525             calculations when a menu is added/removed
14526           - set_Menu: Cleaned up mess from early days of Form and Control,
14527             now properly triggers a recalc when a menu is added/removed
14528           - Added case to select form itself as focused form if no child
14529             controls exist
14530           - Added PerformLayout call when showing dialog, to ensure properly
14531             placed controls
14532         * Control.cs:
14533           - Select(): Made internal so Form can access it
14534           - Focus(): Only call Xplat layer if required (avoids loop), and sets
14535             status
14536         * Application.cs (Run): Removed hack and calls PerformLayout instead
14537           to trigger calculation when Form becomes visible
14538
14539 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
14540
14541         * ComboBox.cs: fixes for ownerdraw
14542
14543 2005-01-18  Peter Bartok  <pbartok@novell.com>
14544
14545         * TextControl.cs:
14546           - Sentinel is no longer static, each Document gets it's own, this
14547             avoids locking or alternatively overwrite problems when more
14548             than one text control is used simultaneously.
14549           - Switched to use Hilight and HilightText brushes for text selection
14550
14551         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
14552
14553 2005-01-18  Peter Bartok  <pbartok@novell.com>
14554
14555         * Control.cs:
14556           - Hooked up the following events:
14557                 o ControlAdded
14558                 o ControlRemoved
14559                 o HandleDestroyed
14560                 o ImeModeChanged
14561                 o ParentChanged
14562                 o TabStopChanged
14563                 o Invalidated
14564                 o SystemColorsChanged
14565                 o ParentFontChanged
14566                 o Move
14567           - Removed debug output
14568           - Added a call to the current theme's ResetDefaults when a color change
14569             is detected
14570         * Form.cs: Now setting the proper ImeMode
14571         * Theme.cs: Defined a method to force recreation of cached resources
14572           and rereading of system defaults (ResetDefaults())
14573         * ThemeWin32Classic.cs: Added ResetDefaults() stub
14574
14575 2005-01-17  Peter Bartok  <pbartok@novell.com>
14576
14577         * Control.cs: Added missing attributes
14578
14579 2005-01-17  Jackson Harper  <jackson@ximian.com>
14580
14581         * TreeNode.cs: Implement editing. Add missing properties selected
14582         and visible.
14583         * TreeView.cs: Implement node editing. Also some fixes to use
14584         Invalidate (invalid area) instead of Refresh when selecting.
14585
14586 2005-01-17  Peter Bartok  <pbartok@novell.com>
14587
14588         * Control.cs:
14589           - Implemented InvokeGotFocus() method
14590           - Implemented InvokeLostFocus() method
14591           - Implemented InvokePaint() method
14592           - Implemented InvokePaintBackground() method
14593           - Implemented InvokeClick() method
14594           - Implemented FindForm() method
14595           - Implemented RectangleToClient() method
14596           - Implemented ClientToRectangle() method
14597           - Implemented ResetBackColor() method
14598           - Implemented ResetCursor() method
14599           - Implemented ResetFont() method
14600           - Implemented ResteForeColor() method
14601           - Implemented ResetImeMode() method
14602           - Implemented ResetLeftToRight() method
14603           - Implemented ResetText() method
14604           - Implemented Scale() methods
14605           - Implemented ScaleCore() method
14606           - Implemented Update() method
14607           - Removed unused variables
14608           - Stubbed AccessibilityNotifyClients and
14609             ControlAccessibleObject.NotifyClients() methods (dunno what to do
14610             with those yet)
14611           - Now setting proper default for RightToLeft property
14612           - Fixed bug in SetClientSizeCore that would cause windows to get
14613             really big
14614           - Now sending Click/DoubleClick events
14615           - Now selecting controls when left mouse button is clicked on
14616             selectable control
14617         * AccessibleEvents.cs: Added
14618         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
14619         * XplatUIOSX.cs: Stubbed UpdateWindow() method
14620         * XplatUIWin32.cs: Implemented UpdateWindow() method
14621         * XplatUIX11.cs: Implemented UpdateWindow() method
14622         * Form.cs: Removed stray semicolon causing CS0162 warning
14623         * ThemeWin32Classic.cs: Fixed unused variable warnings
14624         * ScrollableControl.cs: Now calls base method for ScaleCore
14625         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
14626           style to avoid interference with internal click handler (which is
14627           different than standard Control click handling)
14628         * RadioButton.cs:
14629           - Now unchecks all sibling radio buttons when control is
14630             selected (Fixes #68756)
14631           - Removed internal tabstop variable, using the one inherited from
14632             Control
14633
14634 2005-01-17  Jackson Harper  <jackson@ximian.com>
14635
14636         * NavigateEventArgs.cs: Fix base type.
14637         * LinkLabel.cs: Sig fix
14638         
14639 2005-01-17  Jackson Harper  <jackson@ximian.com>
14640
14641         * TreeView.cs: Only invalidate the effected nodes bounds when
14642         selecting nodes.
14643
14644 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
14645
14646         * XplatUIWin32.cs: fixes Win32 marshaling
14647         * XplatUIX11.cs: fixes method signature
14648
14649 2005-01-17  Peter Bartok  <pbartok@novell.com>
14650
14651         * XplatUIX11.cs: Clean up resources when we no longer need them
14652
14653 2005-01-17  Peter Bartok  <pbartok@novell.com>
14654
14655         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
14656           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
14657           and DestroyCursor() methods.
14658         * Cursor.cs: Partially implemented, now supports standard cursors;
14659           still contains some debug code
14660         * Cursors.cs: Implemented class
14661         * Control.cs:
14662           - WndProc(): Added handling of WM_SETCURSOR message, setting the
14663             appropriate cursor
14664           - Implemented Cursor property
14665           - Replaced break; with return; more straightforwar and possibly
14666             faster
14667           - Now properly setting the result for WM_HELP
14668         * X11Structs.cs: Added CursorFontShape enum
14669         * XplatUIStructs.cs:
14670           - Added StdCursor enum (to support DefineStdCursor() method)
14671           - Added HitTest enum (to support sending WM_SETCURSOR message)
14672         * XplatUIX11.cs:
14673           - Now sends the WM_SETCURSOR message
14674           - Implemented new cursor methods
14675         * XplatUIOSX.cs: Stubbed new cursor methods
14676         * XplatUIWin32.cs:
14677           - Implemented new cursor methods
14678           - Added GetSystemMetrics function and associated enumeration
14679
14680 2005-01-15  Peter Bartok  <pbartok@novell.com>
14681
14682         * Control.cs:
14683           - WndProc(): Now handles EnableNotifyMessage
14684           - SelectNextControl(): Fixed bug where if no child or sibling
14685             controls exist we looped endlessly
14686
14687 2005-01-14  Jackson Harper  <jackson@ximian.com>
14688
14689         * TreeView.cs: Recalculate the tab pages when a new one is added
14690         so that the proper bounding rects are created.
14691
14692 2005-01-14  Jackson Harper  <jackson@ximian.com>
14693
14694         * TreeView.cs: Draw a gray box instead of a grip in the lower
14695         right hand corner when there are both horizontal and vertical
14696         scroll bars.
14697
14698 2005-01-14  Jackson Harper  <jackson@ximian.com>
14699
14700         * Control.cs: When erasing backgrounds use FromHwnd instead of
14701         FromHdc when there is a NULL wparam. This occurs on the X driver.
14702         * XplatUIX11.cs: Set the wparam to NULL.
14703
14704 2005-01-13  Jackson Harper  <jackson@ximian.com>
14705
14706         * PictureBox.cs: Implement missing methods (except ToString, need
14707         to test that on windows) and events. When visibility is changed we
14708         need to redraw the image because the buffers are killed. When size
14709         is changed refresh if the sizemode needs it.
14710
14711 2005-01-13  Peter Bartok  <pbartok@novell.com>
14712
14713         * Control.cs (SelectNextControl): Was using wrong method to select
14714           a control
14715
14716 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
14717
14718         * ComboBox.cs: fixes dropstyle
14719
14720 2005-01-13  Peter Bartok  <pbartok@novell.com>
14721
14722         * Form.cs:
14723           - Implemented Select() override
14724           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
14725           - Now sets keyboard focus on startup
14726         * Control.cs (SelectNextControl): Now properly handles directed=true
14727         * TextBoxBase.cs:
14728           - WndProc: Now passes tab key on to base if AcceptTabChar=false
14729           - Added (really bad) focus rectangle (mostly for testing)
14730         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
14731           to enforce redraw on focus changes
14732         * ContainerControl.cs:
14733           - Fixed detection of Shift-Tab key presses
14734           - Fixed traversal with arrow keys
14735         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
14736           gonna keep this or if it's complete yet
14737         
14738 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
14739
14740         * ComboBox.cs: missing properties, fixes
14741
14742 2005-01-13  Peter Bartok  <pbartok@novell.com>
14743
14744         * Panel.cs (ctor): Setting Selectable window style to off
14745         * Splitter.cs (ctor): Setting Selectable window style to off
14746         * GroupBox.cs (ctor): Setting Selectable window style to off
14747         * Label.cs (ctor): Setting Selectable window style to off
14748
14749 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
14750
14751         * UpDownBase.cs (InitTimer): If the timer has been already
14752         created, enable it.
14753
14754         Use a TextBox instead of a Label.
14755
14756 2005-01-12  Jackson Harper  <jackson@ximian.com>
14757
14758         * TreeView.cs: Refresh the tree after sorting the nodes. Always
14759         draw the connecting node lines (when ShowLines is true).
14760         * TreeNode.cs: The nodes index can now be updated. This is used
14761         when a node collection is sorted.
14762         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
14763         insert or an existing unsorted node collection can be sorted.
14764         
14765 2005-01-12  Peter Bartok  <pbartok@novell.com>
14766
14767         * ContainerControl.cs: Implemented ProcessDialogKeys()
14768
14769 2005-01-12  Peter Bartok  <pbartok@novell.com>
14770
14771         * Control.cs:
14772           - Implemented SelectNextControl() method
14773           - Several focus related bug fixes
14774           - Fixed Docking calculations to match MS documentation and
14775             behaviour
14776
14777 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
14778
14779         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
14780         bug fixes
14781
14782 2005-01-12  Peter Bartok  <pbartok@novell.com>
14783
14784         * Control.cs:
14785           - Fixed broken Contains() method
14786           - Implemented GetNextControl() method. Finally. This is the pre-
14787             requisite for focus handling.
14788
14789 2005-01-12  Peter Bartok  <pbartok@novell.com>
14790
14791         * OSXStrucs.cs: Added
14792
14793 2005-01-12  Peter Bartok  <pbartok@novell.com>
14794
14795         * XplatUIWin32.cs:
14796           - Removed PeekMessageFlags
14797           - Implemented SetWindowStyle() method
14798         * XplatUIStructs.cs: Added PeekMessageFlags
14799         * X11Structs: Added missing border_width field to XWindowChanges struct
14800         * XplatUIX11.cs:
14801           - PeekMessage: Now throws exception if flags which are not yet
14802             supported are passed
14803           - Implemented SetWindowStyle() method
14804           - Fixed SetZOrder to handle AfterHwnd properly
14805         * XplatUI.cs: Added SetWindowStyle() method
14806         * XplatUIDriver.cs: Added SetWindowStyle() abstract
14807         * Control.cs:
14808           - Implemented UpdateStyles() method
14809           - Implemented UpdateZOrder() method
14810         * XplatUIOSX.cs: Added SetWindowStyle() stub
14811
14812 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
14813
14814         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
14815         button mouse).
14816
14817
14818 2005-01-11  Jackson Harper  <jackson@ximian.com>
14819
14820         * TreeView.cs: Still need to draw lines to siblings even if out of
14821         the current node is out of the clip.
14822
14823 2005-01-11  Jackson Harper  <jackson@ximian.com>
14824
14825         * TreeView.cs: When setting the hbar/vbar/grip position use
14826         SetBounds so that perform layout is only called once. Also suspend
14827         and resume layout so layout is only done once for all controls.
14828         - Removed some debug fluff
14829         * SizeGrip.cs: Call base implmentation in overriding methods.
14830         - When visibility is changed the drawing buffers are killed so we
14831         need to redraw.
14832
14833 2005-01-11  Jackson Harper  <jackson@ximian.com>
14834
14835         * TreeView.cs: Calculate the open node count while drawing. This
14836         saves us an entire tree traversal for every paint operation. Use
14837         a member var for the open node count so less vars are passed around.
14838
14839 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
14840
14841         * MonthCalendar.cs:
14842         - fixed selection to use mousemove, not mouse polling on timer
14843         * ThemeWin32Classic.cs
14844         - removed redundant unused variable "no_more_content"
14845         
14846 2005-01-11  Peter Bartok  <pbartok@novell.com>
14847
14848         * XplatUIX11.cs (DoEvents): Needs to return when no more events
14849           are pending, so it now calls PeekMessage instead of GetMessage;
14850           implemented a incomplete version of PeekMessage
14851         
14852 2005-01-11  Peter Bartok  <pbartok@novell.com>
14853
14854         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
14855           I18n issues
14856         * TextBoxBase.cs: Added sending of TextChanged event
14857
14858 2005-01-10  Jackson Harper  <jackson@ximian.com>
14859
14860         * TreeView.cs: Try not to draw outside the clipping rectangle on
14861         each node element.
14862
14863 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
14864
14865         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
14866
14867 2005-01-10  Jackson Harper  <jackson@ximian.com>
14868
14869         * TreeView.cs:
14870         - Implement fast scrolling. Now only the newly
14871         exposed nodes are drawn and the old image is moved using the
14872         XplatUI::ScrollWindow method.
14873         - Factor in height of nodes when calculating whether or not the
14874         node is in the clipping rect.
14875
14876 2005-01-10  Jackson Harper  <jackson@ximian.com>
14877
14878         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
14879
14880 2005-01-10  Peter Bartok  <pbartok@novell.com>
14881
14882         * Application.cs: Added temporary hack to resolve all our resize
14883           required issues on startup. This will get fixed properly at
14884           some point in the future
14885
14886 2005-01-10  Jackson Harper  <jackson@ximian.com>
14887
14888         * SizeGrip.cs: New internal class that is used as a sizing
14889         grip control...hence the name.
14890
14891 2005-01-10  Peter Bartok  <pbartok@novell.com>
14892
14893         * Control.cs: Implemented proper TabIndex handling, now assigning
14894           a tabindex when a control is added to a container
14895         * GroupBox.cs (ctor): Now sets the Container style bit, required
14896           for Control.GetNextControl()
14897
14898 2005-01-09  Jackson Harper  <jackson@ximian.com>
14899
14900         * TextBoxBase.cs: Clear window when scrolling (fixes build).
14901
14902 2005-01-09  Peter Bartok <pbartok@novell.com>
14903
14904         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
14905           XplatUIX11.cs: Added ability to control ScrollWindow expose and
14906           an overload for ScrollWindow to allow only scrolling a rectangle
14907
14908 2005-01-09  Peter Bartok <pbartok@novell.com>
14909
14910         * Form.cs:
14911           - Implemented SetDesktopBounds method
14912           - Implemented SetDesktopLocation method
14913
14914 2005-01-08  Jackson Harper  <jackson@ximian.com>
14915
14916         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
14917         the node count has changed, this removes to VScroll::Refresh calls
14918         when drawing.
14919
14920 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
14921
14922         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
14923
14924 2005-01-07  Jackson Harper  <jackson@ximian.com>
14925
14926         * TreeNode.cs: Just update the single node when it is
14927         checked. Don't refresh after toggling, the Expand/Collapse already
14928         handles this.
14929         * TreeView.cs: Respect clipping a little more when drawing. Try
14930         not to redraw things that don't need to be redrawn. Just hide the
14931         scrollbars when they are no longer needed instead of removing
14932         them, so they don't have to be created again and again.
14933         
14934 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
14935
14936         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
14937         coordinates to window space to place the caret properly, FIXED.
14938         Implement GetWindowState & SetWindowState
14939
14940 2005-01-06  Peter Bartok <pbartok@novell.com>
14941
14942         * Form.cs:
14943           - Implemented ClientSize property
14944           - Implemented DesktopBounds property
14945           - Implemented DesktopLocation property
14946           - Implemented IsRestrictedWindow property
14947           - Implemented Size property
14948           - Implemented TopLevel property
14949           - Implemented FormWindowState property
14950         * Control.cs:
14951           - Implemented GetTopLevel() method
14952           - Implemented SetTopLevel() method
14953         * X11Structs.cs (Atom):
14954           - Added AnyPropertyType definition
14955           - Added MapState definiton and updated XWindowAttribute struct
14956         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
14957         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
14958         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
14959         * XplatUIWin32.cs:
14960           - Implemented GetWindowState() and SetWindowState() methods
14961           - Fixed Win32GetWindowLong return type
14962         * XplatUIX11.cs:
14963           - Introduced central function for sending NET_WM messages
14964           - Implemented GetWindowState() and SetWindowState() methods
14965         * TextBoxBase.cs (set_Lines):
14966           - Now uses Foreground color for text added via Text property (Duh!)
14967           - Added code to remember programmatically requested size (fixes
14968             behaviour when Multiline is set after Size)
14969           - Added AutoSize logic
14970
14971 2005-01-06  Jackson Harper  <jackson@ximian.com>
14972
14973         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
14974
14975 2005-01-06  Jackson Harper  <jackson@ximian.com>
14976
14977         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
14978         set to less then 0.
14979
14980 2005-01-06  Jackson Harper  <jackson@ximian.com>
14981
14982         * ScrollableControl.cs: Lazy init the scrollbars.
14983         
14984 2005-01-06  Jackson Harper  <jackson@ximian.com>
14985
14986         * Theme.cs: Speed up getting pens and solid brushes, by using
14987         their ARGB as a hash instead of tostring and not calling Contains.
14988
14989 2005-01-06  Peter Bartok <pbartok@novell.com>
14990
14991         * Form.cs:
14992           - Implemented OnActivated and OnDeactivate event trigger
14993           - Implemented Activate() method
14994           - Fixed ShowDialog() to activate the form that was active before
14995             the dialog was shown
14996         * XplatUIX11.cs:
14997           - Added global active_window var that tracks the currently active
14998             X11 window
14999           - Now always grabs Property changes from the root window to always
15000             catch changes on the active window property
15001           - Added code to PropertyNotify handler to send Active/Inactive
15002             messages when state changes. This puts X11 and Win32 en par on
15003             WM_ACTIVATE notifications (except for double notifications when
15004             the user clicks away from our modal window to another one of our
15005             windows)
15006
15007 2005-01-05  Jackson Harper  <jackson@ximian.com>
15008
15009         * ImageList.cs: Implment ctor
15010
15011 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
15012
15013         * XplatUIOSX.cs: Implement Activate/SetTopmost
15014
15015 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
15016
15017         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
15018
15019 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
15020
15021         * XplatUIOSX.cs: Implement GetActive/SetFocus.
15022
15023 2005-01-05  Peter Bartok <pbartok@novell.com>
15024
15025         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
15026           XplatUIOSX.cs: Added GetActive method to return the currently
15027           active window for the application (or null, if none is active)
15028         * Form.cs:
15029           - Implemented ActiveForm
15030           - Commented out owner assignment for modal dialogs (causes problems
15031             on Win32, since the owner will be disabled)
15032           - Reworked some Active/Focus handling (still incomplete)
15033         * CommonDialog.cs: Commented out owner assignment for modal dialogs
15034           (causes problems on Win32, since the owner will be disabled)
15035         * IWin32Window: Added ComVisible attribute
15036
15037 2005-01-05  Peter Bartok <pbartok@novell.com>
15038
15039         * ToolTip.cs (WndProc): Enable setting focus now that we have the
15040           required XplatUI functions.
15041
15042 2005-01-05  Peter Bartok <pbartok@novell.com>
15043
15044         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
15045           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
15046           to implement focus and activation handling; still incomplete and
15047           with debug output
15048
15049 2005-01-04  Peter Bartok <pbartok@novell.com>
15050
15051         * TextBoxBase.cs: Changed access level for Document property to
15052           match switch to internal for TextControl
15053
15054 2005-01-04  Peter Bartok <pbartok@novell.com>
15055
15056         * AccessibleObject: Added ComVisible attribute
15057
15058 2005-01-04  Jackson Harper  <jackson@ximian.com>
15059
15060         * X11Keyboard.cs: Remove unneeded var.
15061
15062 2005-01-04  Jackson Harper  <jackson@ximian.com>
15063
15064         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
15065         but PAINT.
15066         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
15067         ClientMessage. This makes apps exit cleanly (more often).
15068         
15069 2005-01-04  Jackson Harper  <jackson@ximian.com>
15070
15071         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
15072         handling focus, return correct colors and fonts,
15073         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
15074         handle selection, horizontal scrolling, and mouse interaction.
15075
15076 2005-01-04  Peter Bartok <pbartok@novell.com>
15077
15078         * ICommandExecutor.cs: Added
15079         * IDataGridColumnStyleEditingNotificationService.cs: Added
15080         * IFeatureSupport.cs: Added
15081         * IFileReaderService.cs: Added
15082         * IDataObject.cs: Added ComVisible attribute
15083         * AmbientProperties.cs: Added
15084         * BaseCollection.cs: Added missing attributes
15085         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
15086         * BaseCollection.cs: Added missing attributes
15087         * Binding.cs: Added TypeConverter attribute
15088         * BindingContext.cs: Added DefaultEvent attribute
15089         * BindingsCollection.cs: Added DefaultEvent attribute
15090         * Button.cs: Added DefaultValue attribute
15091         * DragEventArgs.cs: Added ComVisible attribute
15092         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
15093         * KeyEventArgs.cs: Added ComVisible attribute
15094         * KeyPressEventArgs.cs: Added ComVisible attribute
15095         * MouseEventArgs.cs: Added ComVisible attribute
15096         * NavigateEventArgs.cs: Added
15097         * NavigateEventHandler.cs: Added
15098         * FeatureSupport.cs: Added
15099         * OSFeature.cs: Added
15100         * Theme.cs: Added abstract Version property to support OSFeature
15101         * ThemeWin32Classic.cs: Added Version property to
15102           support OSFeature.Themes
15103         * ProgressBar.cs: Removed OnPaintBackground override, not required since
15104           the proper styles to avoid background drawing are set, also doesn't
15105           match MS signature
15106         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
15107         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
15108         * ScrollEventArgs.cs: Added ComVisible attribute
15109         * SplitterEventArgs.cs: Added ComVisible attribute
15110         * AccessibleSelection.cs: Added Flags attribute
15111         * Appearance.cs: Added ComVisible attribute
15112         * Border3DSide.cs: Added ComVisible attribute
15113         * Border3DStyle.cs: Added ComVisible attribute
15114         * BorderStyle.cs: Added ComVisible attribute
15115         * DragAction.cs: Added ComVisible attribute
15116         * ErrorBlinkStyle.cs: Added
15117         * ScrollEventType.cs: Added ComVisible attribute
15118         * AnchorStyles.cs: Added Editor attribute
15119         * DockStyle.cs: Added Editor attribute
15120         * HorizontalAlignment.cs: Added ComVisible attribute
15121         * HelpEventArgs.cs: Added ComVisible attribute
15122         * PaintEventArgs.cs: Added IDisposable
15123
15124 2005-01-04  Peter Bartok <pbartok@novell.com>
15125
15126         * TextControl.cs: Switched Line, LineTag and Document classes to
15127           internal
15128
15129 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
15130
15131         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
15132         Simple mode, fixes, IntegralHeight, etc.
15133
15134 2005-01-04  Peter Bartok <pbartok@novell.com>
15135
15136         * TextBoxBase.cs: Using proper font variable now
15137
15138 2005-01-04  Peter Bartok <pbartok@novell.com>
15139
15140         * Form.cs (ShowDialog): Set parent to owner, if provided
15141         * GroupBox.cs: Removed unused vars
15142         * TextControl.cs:
15143           - Added GetHashCode() for Document and LineTag classes
15144           - Removed unused variables
15145           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
15146             to allow translation between continuous char position and line/pos
15147         * CheckBox.cs: Removed vars that are provided by base class
15148         * RadioButton.cs: Removed vars that are provided by base class, added
15149           new keyword where required
15150         * LinkLabel.cs: Added new keyword where required
15151         * Control.cs (WndProc): Removed unused variable
15152         * TextBoxBase.cs:
15153           - Finished SelectionLength property
15154           - Implemented SelectionStart property
15155           - Implemented Text property
15156           - Removed unused vars
15157         * MessageBox.cs: Added new keyword where required
15158         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
15159           WndProc signature
15160         * MenuAPI.cs: Added new keyword where required
15161         * ButtonBase.cs: Removed vars that are provided by base class, added
15162           new keyword where required
15163         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
15164           argument to double, to allow compiling with csc 2.0 (Atsushi ran
15165           into this)
15166         * Application.cs (Run): Now triggers the ThreadExit event
15167         * CommonDialog.cs: Added new keyword where required; now properly sets
15168           parent (owner) for dialog
15169         * XplatUIX11.cs: Commented out unused vars
15170         * StatusBar.cs: Fixed signature for Text property
15171         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
15172
15173 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
15174
15175         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
15176         TrackBar.cs, MonthCalendar.cs: remove unused vars
15177
15178 2005-01-03  Jackson Harper  <jackson@ximian.com>
15179
15180         * ThemeWin32Classic.cs:
15181         * X11Keyboard.cs: Remove unused vars.
15182
15183 2005-01-03  Peter Bartok  <pbartok@novell.com>
15184
15185         * TextBox.cs:
15186           - set_Text: Tied into TextControl
15187           - set_TextAlignment: Tied into TextControl
15188         * TextControl.cs:
15189           - Added alignment properties and implemented alignment handling
15190             and drawing (still has a bug, not generating proper expose events)
15191           - Added new Line() constructor to allow passing the line alignment
15192           - Fixed selection setting, properly handling end<start now
15193           - Added aligment considerations to RecalculateDocument()
15194         * TextBoxBase.cs:
15195           - Now properly enforces control height for single line controls
15196           - Added support for CharacterCasing
15197           - Added IsInputKey override
15198           - Fixed Keys.Enter logic
15199           - Added SetBoundsCore override
15200           - Fixed mouse selection handling
15201
15202 2005-01-03  Jackson Harper  <jackson@ximian.com>
15203
15204         * TreeView.cs:
15205           - Collapse and uncheck all nodes when CheckBoxes is disabled.
15206           - Checkboxes are always aligned to the bottom of the node,
15207           regardless of item height.
15208           - Use the node bounds to draw the text so we can center it when
15209           the item height is greater then the font height.
15210           - Node::Bounds are only the text part of the node.
15211         * TreeNode.cs: New method to combine collapsing and unchecking all
15212           nodes recursively.
15213
15214 2005-01-02  Jackson Harper  <jackson@ximian.com>
15215
15216         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
15217         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
15218         tree when a check is changed. TODO: Only refresh the checked node.
15219
15220 2004-12-30  Jackson Harper  <jackson@ximian.com>
15221
15222         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
15223         * TreeNode.cs: When collapsing make sure to never collapse the
15224         root node.
15225
15226 2004-12-29  Jackson Harper  <jackson@ximian.com>
15227
15228         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
15229         
15230 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
15231
15232         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
15233
15234 2004-12-28  Peter Bartok  <pbartok@novell.com>
15235
15236         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
15237           not yet assigned
15238
15239 2004-12-28  Peter Bartok  <pbartok@novell.com>
15240
15241         * Control.cs (WndProc): Added WM_HELP handler, now generates
15242           HelpRequested event
15243         * Form.cs: Added HelpButton property and required support code
15244         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
15245
15246 2004-12-28  Peter Bartok  <pbartok@novell.com>
15247
15248         * CommonDialog.cs:
15249           - Made DialogForm.owner variable internal
15250           - Added check to ensure owner form is set before setting
15251             owner properties in CreateParams
15252
15253 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
15254
15255         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
15256           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
15257           GetCursorPos.  Fix major visibility issues.  Rework the windowing
15258           system to support borderless/titleless windows (implements menus).
15259           Fix GetWindowPos.  Implement initial background color support for
15260           views.
15261
15262 2004-12-28  Peter Bartok  <pbartok@novell.com>
15263
15264         * Form.cs (get_CreateParams): Make sure we have an owner before using
15265           the owner variable. Implement proper default if no owner exists
15266
15267 2004-12-28  Peter Bartok  <pbartok@novell.com>
15268
15269         * In preparation for making Managed.Windows.Forms the default build target
15270           for System.Windows.Forms, the following stubbed files were added.
15271           Dialogs are currently being implemented by contributors and are only
15272           short-term place holders.
15273         * ColorDialog.cs: Initial check-in (minmal stub)
15274         * DataGrid.cs: Initial check-in (minimal stub)
15275         * DataGridLineStyle.cs: Initial check-in (minimal stub)
15276         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
15277         * DataGridTableStyle.cs: Initial check-in (minimal stub)
15278         * FontDialog.cs: Initial check-in (minimal stub)
15279         * FileDialog.cs: Initial check-in (minimal stub)
15280         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
15281         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
15282         * OpenFileDialog: Initial check-in (minimal stub)
15283         * IComponentEditorPageSite.cs: Initial check-in
15284         * Splitter.cs: Initial check-in (for Jackson)
15285         * SplitterEventArgs.cs: Initial check-in (for Jackson)
15286         * SplitterEventHandler.cs: Initial check-in (for Jackson)
15287         * TextBox.cs: Initial check-in; still needs some wiring to
15288           TextControl backend
15289         * Form.cs: Implemented ControlBox property
15290         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
15291         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
15292         * TextControl.cs: Added selection functionality; added todo header
15293         * TextBoxBase.cs:
15294           - Implemented Lines property
15295           - Implemented TextHeight property
15296           - Implemented SelectedText property
15297           - Implemented SelectionLength property
15298           - Implemented SelectAll method
15299           - Implemented ToString method
15300           - Removed and cleaned up some debug code
15301           - Implemented (still buggy) mouse text selection
15302
15303 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
15304
15305         * ComboBox.cs: Complete DropDownList implementation, fixes.
15306
15307 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
15308
15309         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
15310         * ComboBoxStyle.cs: ComboBoxStyle enum
15311         * ComboBox.cs: Initial work on ComboBox control
15312
15313 2004-12-21  Peter Bartok  <pbartok@novell.com>
15314
15315         * Control.cs (ctor, CreateParams): Moved setting of is_visible
15316           forward so that anything that creates a window gets the default,
15317           also no longer uses Visible property in CreateParams to avoid
15318           walking up the parent chain and possibly get the wrong visible
15319           status. Fixed IsVisible to no longer walk up to the parent.
15320
15321 2004-12-21  Peter Bartok  <pbartok@novell.com>
15322
15323         * Form.cs (ShowDialog): Unset modality for the proper window
15324  
15325 2004-12-20  Peter Bartok  <pbartok@novell.com>
15326
15327         * CommonDialog.cs: Initial check-in
15328
15329 2004-12-20  Peter Bartok  <pbartok@novell.com>
15330
15331         * Control.cs (Visible): Now uses the parent window instead of the
15332           client area window for the property
15333
15334         * Form.cs
15335           - ShowDialog(): Now uses the proper window for modality
15336           - The default visibility state for the form parent is now false. This
15337             will prevent the user from seeing all the changes to the form and
15338             its controls before the application hits Application.Run()
15339           - Removed some stale commented out code
15340
15341         * NativeWindow.cs:
15342           - Added FindWindow() method to have a method to check for existence
15343             of a window handle
15344           - Added ability to override default exception handling (for example
15345             when debugging with VS.Net; to do this the ExternalExceptionHandler
15346             define must be set
15347           - Removed some useless debug output
15348
15349         * XplatUIX11.cs:
15350           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
15351             not working as expected
15352           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
15353             property to allow switching back to the modal window if focus is
15354             given to another one of our windows (Application Modal)
15355           - Now only sets override_redirect if we create a window
15356             without WS_CAPTION
15357           - Moved EventMask selection before mapping of newly created window
15358             so we can catch the map event as well
15359           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
15360           - Added various Atom related DllImports
15361           - Implemented Exit() method
15362           - .ctor() : No longer shows window if WS_VISIBLE is not defined
15363             in the CreateParams
15364
15365         * MessageBox.cs: Now properly deals with the FormParent window by
15366           providing an override the FormParent CreateParams property to
15367           set as POPUP instead of OVERLAPPED window.
15368
15369 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
15370
15371         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
15372         Minor code cleanup.
15373
15374 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
15375         
15376         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
15377
15378 2004-12-18  Peter Bartok  <pbartok@novell.com>
15379
15380         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
15381           implementing SetModal() method
15382
15383 2004-12-18  Peter Bartok  <pbartok@novell.com>
15384
15385         * X11Structs.cs (XGCValues): Fixed type of function element
15386         * XplatUI.cs: Added ScrollWindow() method
15387         * XplatUIDriver.cs: Added ScrollWindow() abstract
15388         * XplatUIWin32.cs: Implemented ScrollWindow() method
15389         * XplatUIX11.cs: Implemented ScrollWindow() method
15390         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
15391
15392 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
15393
15394         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
15395         Some more keyboard support (INCOMPLETE)
15396
15397 2004-12-17  Peter Bartok  <pbartok@novell.com>
15398
15399         * TextControl.cs:
15400         - Added color attribute to line tags.
15401         - Added color argument to all functions dealing with tags
15402         - Added color argument support to various functions
15403         - Fixed miss-calculation of baseline/shift in certain circumstances
15404
15405         * TextBoxBase.cs: Added new color option to test code
15406
15407 2004-12-17  Jackson Harper  <jackson@ximian.com>
15408
15409         * TreeNode.cs:
15410         * MonthCalendar.cs: Signature fixes
15411
15412 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
15413
15414         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
15415         keyboard event moved it.  Create a new graphics context for each paint resolves this
15416
15417 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
15418
15419         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
15420         Make caret exist and go blink blink.  Initial keyboard support.
15421         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
15422         works.
15423
15424 2004-12-17  Jackson Harper  <jackson@ximian.com>
15425
15426         * XplatUIStructs.cs: Updated set of virtual keycodes.
15427         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
15428
15429 2004-12-17  Jackson Harper  <jackson@ximian.com>
15430
15431         * XplatUIX11.cs: Prune old keyboard code.
15432
15433 2004-12-17  Jackson Harper  <jackson@ximian.com>
15434
15435         * XplatUIX11.cs: When generating mouse wparams get the modifier
15436         keys from the ModifierKeys property.
15437
15438 2004-12-17  Jackson Harper  <jackson@ximian.com>
15439
15440         * X11Keyboard.cs: Send up/down input when generating
15441         messages. Remove some unused vars.
15442
15443 2004-12-17  Jackson Harper  <jackson@ximian.com>
15444
15445         * TabControl.cs:
15446         * TreeView.cs: get rid of warnings.
15447
15448 2004-12-17  Jackson Harper  <jackson@ximian.com>
15449
15450         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
15451
15452 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
15453
15454         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
15455           CheckedListBox.cs: Implementation
15456
15457 2004-12-17  Peter Bartok  <pbartok@novell.com>
15458
15459         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
15460
15461 2004-12-16  Peter Bartok  <pbartok@novell.com>
15462
15463         * TextControl.cs:
15464           - InsertCharAtCaret(): Fixed start pos fixup
15465           - CaretLine_get: No longer derives the line from the tag, the tag
15466             could be stale if lines in the document have been added or deleted
15467           - RebalanceAfterDelete(): Fixed bug in balancing code
15468           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
15469           - Line.Streamline(): Now can also elminate leading empty tags
15470           - DumpTree(): Added a few more tests and prevented exception on
15471             uninitialized data
15472           - Added Debug section for Combining lines
15473           - Delete(): Now copies all remaining properties of a line
15474           
15475         * TextBoxBase.cs:
15476           - Left mousebutton now sets the caret (and middle button still acts
15477             as formatting tester, which must go away soon)
15478           - Added Debug section for Deleting/Combining lines
15479           - Fixed calculations for UpdateView after Combining lines
15480
15481 2004-12-16  Peter Bartok  <pbartok@novell.com>
15482
15483         * TextControl.cs: Now properly aligns text on a baseline, using the
15484           new XplatUI.GetFontMetrics() method. Simplified several calculations
15485         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
15486           defined
15487
15488 2004-12-16  Peter Bartok  <pbartok@novell.com>
15489
15490         * XplatUI.cs: Added GetFontMetrics() method
15491         * XplatUIDriver.cs: Added GetFontMetrics() abstract
15492         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
15493           into libgdiplus, our private GetFontMetrics function
15494         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
15495         * XplatUIWin32.cs: Implemented GetFontMetrics() method
15496
15497 2004-12-16  Jackson Harper  <jackson@ximain.com>
15498
15499         * XplatUIStruct.cs: Add enum for dead keys
15500         * X11Keyboard.cs: Map and unmap dead keys.
15501
15502 2004-12-16  Jackson Harper  <jackson@ximian.com>
15503
15504         * X11Keyboard.cs: Detect and use the num lock mask.
15505
15506 2004-12-16  Peter Bartok  <pbartok@novell.com>
15507
15508         * Control.cs (CreateGraphics): Added check to make sure the
15509           handle of the window exists before calling Graphics.FromHwnd()
15510
15511 2004-12-16  Peter Bartok  <pbartok@novell.com>
15512
15513         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
15514           contains a lot of code that's not supposed to be there for the
15515           real thing, but required for developing/testing the textbox
15516           backend.
15517
15518 2004-12-16  Peter Bartok  <pbartok@novell.com>
15519
15520         * TextControl.cs:
15521         - Fixed Streamline method
15522         - Added FindTag method to Line
15523         - Added DumpTree method for debugging
15524         - Added DecrementLines() method for deleting lines
15525         - Fixed UpdateView to update the cursor to end-of-line on single-line
15526           updates
15527         - Added PositionCaret() method
15528         - Fixed MoveCaret(LineDown) to move into the last line, too
15529         - Added InsertChar overload
15530         - Fixed InsertChar tag offset calculations
15531         - Added DeleteChar() method
15532         - Added Combine() method for folding lines
15533         - Fixed Delete() method, no longer allocates wasted Line object and
15534           now copies all properties when swapping nodes
15535         - Delete() method now updates document line counter
15536
15537 2004-12-15  Jackson Harper  <jackson@ximian.com>
15538
15539         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
15540         * X11Keyboard.cs: Expose the currently selected modifier keys
15541         through a property.
15542
15543 2004-12-15  Peter Bartok  <pbartok@novell.com>
15544
15545         * TextControl.cs: Initial check-in. Still incomplete
15546
15547 2004-12-15  Jackson Harper  <jackson@ximian.com>
15548
15549         * TreeNode.cs:
15550         * TreeView.cs: Fix build on csc (second time today ;-))
15551
15552 2004-12-15  Jackson Harper  <jackson@ximian.com>
15553
15554         * TreeView.cs: Store the treenodes plus/minus box bounds when it
15555         is calculated and use this for click testing.
15556         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
15557
15558 2004-12-15  Jackson Harper  <jackson@ximian.com>
15559
15560         * TreeView.cs: Pass the nodes image index to the image list when
15561         drawing that image.
15562
15563 2004-12-15  Jackson Harper  <jackson@ximian.com>
15564
15565         * X11Keyboard.cs: Set messages hwnd.
15566         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
15567         post_message calls.
15568
15569 2004-12-15  Jackson Harper  <jackson@ximian.com>
15570
15571         * X11Keyboard.cs: Fix to compile with csc.
15572         
15573 2004-12-15  Jackson Harper  <jackson@ximian.com>
15574
15575         * X11Structs.cs: Add key mask values
15576         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
15577         * X11Keyboard.cs: New file - Extrapolates and interpolates key
15578         down/up foo into WM_CHAR foo
15579         * KeyboardLayouts.cs: Common keyboard layouts
15580         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
15581         post messages into the main queue.
15582
15583 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
15584
15585         * Button.cs: implement ProcessMnemonic
15586         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
15587           brushes everytime
15588         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
15589         * ButtonBase.cs: Show HotkeyPrefix (not the &)
15590
15591 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
15592         
15593         * MonthCalendar.cs: Implemented click-hold for next/previous month
15594           and date selection
15595           
15596 2004-12-11  Peter Bartok  <pbartok@novell.com>
15597
15598         * X11Structs.cs:
15599           - Added XKeyboardState (moved from XplatUIX11.cs)
15600           - Added XCreateGC related enums and structures
15601           - Added GXFunction for XSetFunction
15602
15603         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
15604
15605         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
15606           CaretVisible() calls
15607
15608         * ToolTip.cs: Added code to prevent stealing focus from app windows
15609
15610         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
15611           DestroyCaret, SetCaretPos and CaretVisible)
15612
15613         * XplatUIX11.cs:
15614           - Added implementation for caret functions
15615           - Moved hover variables into a struct, to make it a bit easier
15616             on the eyes and to debug
15617           - Removed XKeyboardState (moved to XplatUIX11.cs)
15618           - Moved Keyboard properties into the properties region
15619
15620         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
15621           call to get a graphics context for our control
15622
15623         * XplatUIOSX.cs: Added empty overrides for the new caret functions
15624
15625         * TreeView.cs: Fixed bug. No matter what color was set it would always
15626           return SystemColors.Window
15627
15628         * XplatUIWin32.cs: Implemented caret overrides
15629
15630 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
15631
15632         * ListBox.cs: fire events, implement missing methods and properties,
15633         sorting.
15634
15635 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
15636
15637         * MonthCalendar.cs: invalidation bug fixing
15638         * ThemeWin32Classic.cs: paint fixing
15639
15640 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
15641
15642         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
15643         prepare the CGContextRef there now.
15644
15645 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
15646
15647         * MonthCalendar.cs:
15648           - optimisationL only invalidate areas that have changed
15649         * ThemeWin32Classic.cs:
15650           - only paint parts that intersect with clip_area
15651
15652 2004-12-09  Peter Bartok  <pbartok@novell.com>
15653
15654         * Application.cs: Undid changes from r37004 which cause problems
15655         on X11
15656
15657 2004-12-09  Ravindra  <rkumar@novell.com>
15658
15659         * ToolBar.cs: Added support for displaying ContextMenu
15660         attached to a button on ToolBar.
15661         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
15662         property.
15663
15664 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
15665
15666         * Label.cs: autosize works in text change and removes unnecessary
15667         invalidate
15668
15669 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
15670
15671         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
15672         remove warnings
15673
15674 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
15675
15676         * XplatUIOSX.cs: Added mouse move/click/grab support
15677         Remove some debugging WriteLines not needed anymore.
15678         Add window resizing/positioning.
15679         Fix visibility on reparenting.
15680
15681 2004-12-08  Peter Bartok  <pbartok@novell.com>
15682
15683         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
15684
15685 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
15686
15687         * XplatUIOSX.cs: Initial checkin
15688         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
15689
15690 2004-12-03  Ravindra <rkumar@novell.com>
15691
15692         * ListView.cs: Added some keybindings and fixed scrolling.
15693         ScrollBars listen to ValueChanged event instead of Scroll
15694         Event. This would let us take care of all changes being
15695         done in the scrollbars' values programmatically or manually.
15696         * ListView.cs (CanMultiselect): Added a check for shift key.
15697         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
15698         * ListViewItem.cs (Clone): Fixed. We need to make a copy
15699         of ListViewSubItemCollection as well.
15700
15701 2004-12-06  Peter Bartok <pbartok@novell.com>
15702
15703         * Control.cs (Parent): Added check and exception to prevent
15704         circular parenting
15705
15706 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
15707
15708         * ListBox.cs: implemented clipping, selection single and multiple,
15709         bug fixing
15710
15711 2004-12-03  Ravindra <rkumar@novell.com>
15712
15713         * ListView.cs (ListView_KeyDown):
15714         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
15715         when CTRL key is pressed.
15716         * ListViewItem.cs (Selected): Fixed setting the property.
15717
15718 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
15719
15720         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
15721
15722         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
15723         MinimizeBox, ShowInTaskbar, TopMost properties.
15724
15725         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
15726         will be implemented).
15727
15728 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
15729
15730         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
15731
15732         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
15733         tests.
15734         
15735         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
15736         
15737         * TreeView.cs: BackColor is Colors.Window.
15738
15739 2004-12-01  Jackson Harper  <jackson@ximian.com>
15740
15741         * TreeView.cs: When resizing the tree if the user is making it
15742         smaller we don't get expose events, so we need to handle adding
15743         the horizontal scrollbar in the size changed handler as well as
15744         the expose handler.
15745
15746 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
15747
15748         * DrawItemState.cs: fixes wrong enum values
15749
15750 2004-12-01  Jackson Harper  <jackson@ximian.com>
15751
15752         * TreeView.cs: Resize the hbar as well as the vbar on resize.
15753
15754 2004-12-01  Jackson Harper  <jackson@ximian.com>
15755
15756         * NodeLabelEditEventArgs.cs:
15757         * NodeLabelEditEventHandler.cs:
15758         * OpenTreeNodeEnumerator.cs:
15759         * TreeNode.cs:
15760         * TreeNodeCollection.cs:
15761         * TreeView.cs:
15762         * TreeViewAction.cs:
15763         * TreeViewCancelEventArgs.cs:
15764         * TreeViewCancelEventHandler.cs:
15765         * TreeViewEventArgs.cs:
15766         * TreeViewEventHandler.cs: Initial implementation.
15767
15768 2004-12-01  Ravindra <rkumar@novell.com>
15769
15770         * ListView.cs (CalculateListView): Fixed scrolling related
15771         calculations. Also, removed some debug statements from other
15772         places.
15773         * ListViewItem.cs: Changed access to 'selected' instance variable
15774         from private to internal.
15775         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
15776
15777 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
15778
15779         * ThemeWin32Classic.cs: remove cache of brush and pens for
15780         specific controls and use the global system, fixes scrollbutton
15781         bugs (for small sizes, disabled, etc)
15782         
15783         * ScrollBar.cs: does not show the thumb for very small controls
15784         (as MS) and allow smaller buttons that the regular size
15785
15786 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
15787
15788         * UpDownBase.cs: Add abstract methods for the interface.
15789         Add new virtual methods (need to be hooked up to TextEntry when it
15790         exists).
15791         Add override methods for most features.
15792         Computes the size, forces the height of the text entry.
15793
15794         * NumericUpDown.cs: Put here the current testing code.
15795
15796         * Set eol-style property on all files that do not have mixed line
15797         endings, to minimize the future problems.  There are still a few
15798         files with mixed endings, and someone should choose whether they
15799         want to move it or not.
15800
15801 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
15802
15803         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
15804         System.Colors
15805         
15806 2004-11-30  Ravindra <rkumar@novell.com>
15807
15808         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
15809         drawing and replaced use of SystemColors by theme colors.
15810         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
15811         * ListView.cs (ListViewItemCollection.Add): Throw exception when
15812         same ListViewItem is being added more than once.
15813
15814 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
15815
15816         * MonthCalendar.cs:
15817           - ControlStyles love to make the control not flicker
15818           
15819 2004-11-30  Peter Bartok  <pbartok@novell.com>
15820
15821         * CharacterCasing.cs: Added
15822
15823 2004-11-29  Peter Bartok  <pbartok@novell.com>
15824
15825         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
15826           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
15827           I am removing these files as they conflict with already completed
15828           work. While it is fantastic to get contributions to MWF, I
15829           respectfully ask that everyone please coordinate their contributions
15830           through mono-winforms-list or #mono-winforms at this time. We're
15831           explicitly avoiding stubbing and don't want controls that don't have
15832           their basic functionality implemented in svn. Please also see
15833           http://www.mono-project.com/contributing/winforms.html
15834
15835
15836 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
15837
15838         * Application.cs (ModalRun): Don't hang after exit.
15839
15840         * Theme.cs: New TreeViewDefaultSize property.
15841
15842         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
15843         with less hardcoded SystemColors constant.
15844         Implemented TreeViewDefaultSize.
15845
15846         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
15847         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
15848
15849
15850 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
15851
15852         * MonthCalendar.cs:
15853           - Fix NextMonthDate and PrevMonthDate click moving calendar
15854
15855 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
15856
15857         * MonthCalendar.cs:
15858           - Fix usage of ScrollChange Property when scrolling months
15859
15860 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
15861
15862         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
15863          - Fixes menu destroying
15864          - Support adding and removing items on already created menus
15865
15866 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
15867
15868         * MonthCalendar.cs:
15869           - Re-worked all bolded dates handling to match win32
15870         * ThemeWin32Classic.cs:
15871           - Fixed rendering with bolded dates
15872
15873 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
15874
15875         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
15876         - Horizontal scroolbar
15877         - Multicolumn
15878         - Fixes
15879
15880
15881 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
15882
15883         * MonthCalendar.cs:
15884           - Fix Usage of MaxSelectionCount from SelectionRange
15885           - Fixed Shift + Cursor Selection
15886           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
15887           - Fixed normal cursor selection to be compat with win32
15888           - Fixed Shift + Mouse Click selection
15889
15890 2004-11-24  Peter Bartok <pbartok@novell.com>
15891
15892         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
15893         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
15894         * XplatUIX11.cs:
15895           - CreatedKeyBoardMsg now updates keystate with Alt key
15896           - Added workaround for timer crash to CheckTimers, Jackson will
15897             develop a proper fix and check in later
15898           - Implemented DispatchMessage
15899           - Removed calling the native window proc from GetMessage (call
15900             now moved to DispatchMessage)
15901
15902         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
15903           the keydata (Fixes bug #69831)
15904
15905         * XplatUIWin32.cs:
15906           - (DispatchMessage): Switched to return IntPtr
15907           - Added DllImport for SetFocus
15908
15909 2004-11-24  Ravindra <rkumar@novell.com>
15910
15911         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
15912         background drawing.
15913         * ListViewItem.cs: Fixed various properties, calculations
15914         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
15915         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
15916         and some internal properties. Fixed MouseDown handler and Paint
15917         method.
15918
15919 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
15920
15921         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
15922
15923 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
15924
15925         * ContainerControl.cs: correct accidental check in of local changes
15926
15927 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
15928
15929         * ThemeWin32Classic.cs:
15930                 - Fixed Drawing Last month in grid (sometimes not showing)
15931         * MonthCalendar.cs:
15932                 - Fixed title width calculation bug (makeing title small)
15933
15934 2004-11-23  Peter Bartok <pbartok@novell.com>
15935
15936         * XplatUIX11.cs:
15937           - Added generation of WM_MOUSEHOVER event
15938           - Added missing assignment of async_method atom
15939           - Fixed WM_ERASEBKGND; now only redraws the exposed area
15940
15941 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
15942
15943         * ThemeWin32Classic.cs:
15944                 - Fixed Drawing of today circle when showtodaycircle not set
15945                 - fixed drawing of first and last month in the grid (gay dates)
15946         * MonthCalendar.cs:
15947                 - Fixed Drawing of today circle
15948                 - Fixed drawing of grady dates
15949                 - Fixed HitTest for today link when ShowToday set to false
15950                 - Fixed DefaultSize to obey ShowToday
15951
15952 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
15953
15954         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
15955         * System.Windows.Forms/Theme.cs
15956         * MonthCalendar.cs: added for MonthCalendar
15957         * SelectionRange.cs: added for MonthCalendar
15958         * Day.cs: added for MonthCalendar: added for MonthCalendar
15959         * DateRangeEventArgs.cs: added for MonthCalendar
15960         * DateRangeEventHandler.cs: added for MonthCalendar
15961
15962 2004-11-22  Ravindra <rkumar@novell.com>
15963
15964         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
15965         property.
15966
15967 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
15968
15969         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
15970         event handler.
15971         
15972         * NumericUpDown.cs: Added new implementation.
15973         * UpDownBase.cs: Added new implementation.
15974
15975         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
15976         implementations.
15977         
15978         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
15979         implementations.
15980
15981         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
15982         methods.
15983
15984 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
15985
15986         * Timer.cs  (Dispose): Should call the base dispose when
15987         overriding.
15988
15989 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
15990
15991         * ScrollBar.cs: updates thumb position when max, min or increment
15992         is changed
15993
15994 2004-11-21  Ravindra <rkumar@novell.com>
15995
15996         * ListView.cs: Implemented item selection, activation and
15997         column header style. Fixed properties to do a redraw, if
15998         required. Added support for MouseHover, DoubleClick, KeyDown
15999         and KeyUp event handling and some minor fixes.
16000         * ListViewItem.cs: Fixed constructor.
16001         * ThemeWin32Classic.cs: Improved drawing for ListView.
16002
16003 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
16004
16005         * ThemeWin32Classic.cs: initial listbox drawing code
16006         * DrawMode.cs: new enumerator
16007         * ListControl.cs: stubbed class
16008         * ListBox.cs: initial implementation
16009         * Theme.cs: new methods definitions
16010         * SelectionMode.cs: new enumerator
16011
16012 2004-11-17  Peter Bartok  <pbartok@novell.com>
16013
16014         * XplatUIWin32.cs: Added double-click events to the class style
16015         * Control.cs (WndProc):
16016           - Added handling of click-count to MouseDown/ MouseUp events.
16017           - Added handling of middle and right mouse buttons
16018           - Removed old debug code
16019
16020 2004-11-17  Jackson Harper  <jackson@ximian.com>
16021
16022         * XplatUIX11.cs: Use the new Mono.Unix namespace.
16023
16024 2004-11-17  Ravindra <rkumar@novell.com>
16025
16026         * ListView.cs: Added event handling for MouseMove/Up/Down.
16027         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
16028         * ThemeWin32Classic.cs: We need to clear the graphics context and
16029         draw column header in a proper state.
16030
16031
16032 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
16033
16034         *  Menu.cs: fixes signature
16035
16036 2004-11-16  Peter Bartok  <pbartok@novell.com>
16037
16038         * XplatUIX11.cs (GetMessage): Implemented generation of
16039           double click mouse messages
16040
16041 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
16042
16043         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
16044         not by menu
16045
16046 2004-11-11  Peter Bartok  <pbartok@novell.com>
16047
16048         * HandleData.cs: Added Visible property
16049         * XplatUIX11.cs (IsVisible): Now uses Visible property from
16050           HandleData
16051         * XplatUIX11.cs: Removed old debug leftovers
16052         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
16053         * Control.cs (WndProc): Removed old debug leftovers,
16054           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
16055           needed WM_SIZE handling
16056
16057 2004-11-11  Jackson Harper  <jackson@ximian.com>
16058
16059         * OwnerDrawPropertyBag.cs:
16060         * TreeViewImageIndexConverter.cs: Initial implementation
16061
16062 2004-11-10  Jackson Harper  <jackson@ximian.com>
16063
16064         * ThemeWin32Classic.cs:
16065         * TabControl.cs: instead of moving tabs by the slider pos just
16066         start drawing at the tab that is offset by the slider. This way
16067         scrolling always moves by exactly one tab.
16068
16069 2004-11-10  Jackson Harper  <jackson@ximian.com>
16070
16071         * TabControl.cs: You can only scroll left when the slider has
16072         already ben moved right.
16073         
16074 2004-11-10  Jackson Harper  <jackson@ximian.com>
16075
16076         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
16077         the clip area.
16078         
16079 2004-11-10  Jackson Harper  <jackson@ximian.com>
16080
16081         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
16082         clip area.
16083         
16084 2004-11-09  Jackson Harper  <jackson@ximian.com>
16085
16086         * TabControl.cs (CalcXPos): New helper method so we can determine
16087         the proper place to start drawing vertical tabs.
16088         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
16089         
16090 2004-11-09  Jackson Harper  <jackson@ximian.com>
16091
16092         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
16093         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
16094         and Bottom, left and right are illegal values for this and
16095         multiline is enabled when the alignment is set to left or right.
16096         (DrawTab): Each alignment block should draw the text itself now
16097         because Left requires special love. Also add rendering for Left
16098         aligned tabs.
16099         
16100 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
16101
16102         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
16103         does not destroy the windows, removes debugging messages
16104
16105 2004-11-09  jba  <jba-mono@optusnet.com.au>
16106
16107         * ThemeWin32Classic.cs
16108         (DrawButtonBase): Fix verticle text rect clipping in windows
16109         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
16110         rendering and incorrect text rect clipping
16111         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
16112         rendering and incorrect text rect clipping
16113         
16114 2004-11-08  Jackson Harper  <jackson@ximian.com>
16115
16116         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
16117         bottom when they are bottom aligned so the bottoms of the tabs get
16118         displayed.
16119         * TabControl.cs (DropRow): Move rows up instead of down when the
16120         tab control is bottom aligned.
16121
16122 2004-11-08 13:59  pbartok
16123
16124         * XplatUIX11.cs:
16125           - Added handling for various window styles
16126           - Added handling for popup windows
16127           - Added SetTopmost handling
16128
16129 2004-11-08 13:55  pbartok
16130
16131         * XplatUIWin32.cs:
16132           - Added argument to SetTopmost method
16133           - Fixed broken ClientToScreen function
16134
16135 2004-11-08 13:53  pbartok
16136
16137         * XplatUIStructs.cs:
16138           - Added missing WS_EX styles
16139
16140 2004-11-08 13:53  pbartok
16141
16142         * XplatUI.cs, XplatUIDriver.cs:
16143           - Added argument to SetTopmost
16144
16145 2004-11-08 13:52  pbartok
16146
16147         * X11Structs.cs:
16148           - Added XSetWindowAttributes structure
16149           - Improved XWindowAttributes structure
16150           - Added SetWindowValuemask enum
16151           - Added window creation arguments enum
16152           - Added gravity enum
16153           - Added Motif hints structure
16154           - Added various Motif flags and enums
16155           - Added PropertyMode enum for property functions
16156
16157 2004-11-08 13:50  pbartok
16158
16159         * Form.cs:
16160           - Fixed arguments for updated SetTopmost method
16161
16162 2004-11-08 13:49  pbartok
16163
16164         * ToolTip.cs:
16165           - Fixed arguments for updated SetTopmost function
16166           - Fixed usage of PointToClient
16167
16168 2004-11-08 13:44  pbartok
16169
16170         * MenuAPI.cs:
16171           - Added Clipping of children and siblings
16172
16173 2004-11-08 13:41  pbartok
16174
16175         * MainMenu.cs:
16176           - Removed SetMenuBarWindow call. We do this in Form.cs
16177
16178 2004-11-08 13:40  jackson
16179
16180         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
16181           scrolling jimmi in the correct location with bottom aligned tabs
16182
16183 2004-11-08 13:36  pbartok
16184
16185         * ContainerControl.cs:
16186           - Implemented BindingContext
16187           - Implemented ParentForm
16188
16189 2004-11-08 12:46  jackson
16190
16191         * TabControl.cs: Put bottom rendered tabs in the right location
16192
16193 2004-11-08 07:15  jordi
16194
16195         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
16196           removes dead code
16197
16198 2004-11-05 17:30  jackson
16199
16200         * TabControl.cs: When selected tabs are expanded make sure they
16201           don't go beyond the edges of the tab control
16202
16203 2004-11-05 14:57  jackson
16204
16205         * TabControl.cs: Reset show_slider so if the control is resized to
16206           a size where it is no longer needed it's not displayed anymore
16207
16208 2004-11-05 13:16  jackson
16209
16210         * TabControl.cs: Make tab pages non visible when added to the
16211           control
16212
16213 2004-11-05 12:42  jackson
16214
16215         * TabControl.cs: Implement SizeMode.FillToRight
16216
16217 2004-11-05 12:16  jackson
16218
16219         * Control.cs: Do not call CreateHandle if the handle is already
16220           created
16221
16222 2004-11-05 11:46  jackson
16223
16224         * TabControl.cs: Remove superflous call to CalcTabRows
16225
16226 2004-11-05 09:07  jackson
16227
16228         * XplatUIX11.cs: Update for Mono.Posix changes
16229
16230 2004-11-05 07:00  ravindra
16231
16232         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
16233           scrolling.
16234
16235 2004-11-04 22:47  jba
16236
16237         * ThemeWin32Classic.cs:
16238           - Fix Button rendering for FlatStyle = Flat or Popup
16239           - Fix RadioButton and CheckBox rendering when Appearance = Button
16240             (normal and flatstyle).
16241           - Correct outer rectangle color when drawing focus rectangle
16242           - Adjust button bounds to be 1 px smaller when focused
16243           - Make button not draw sunken 3d border when pushed (windows compat)
16244           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
16245           - Offset the text in RadioButton and Checkbox when being rendered as
16246           a button.
16247           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
16248           radiobuttons
16249           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
16250           - Fixed disabled text rendering for normally rendered radiobuttons
16251
16252 2004-11-04 10:26  jackson
16253
16254         * TabControl.cs: Recalculate tab rows when resizing
16255
16256 2004-11-04 07:47  jordi
16257
16258         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
16259           collection completion, drawing issues, missing features
16260
16261 2004-11-04 05:03  ravindra
16262
16263         * ScrollBar.cs:
16264                 - We need to recalculate the Thumb area when
16265                 LargeChange/maximum/minimum values are changed.
16266           - We set the 'pos' in UpdatePos() method to minimum, if it's less
16267                 than minimum. This is required to handle the case if large_change is
16268                 more than max, and use LargeChange property instead of large_change
16269                 variable.
16270           - We return max+1 when large_change is more than max, like MS does.
16271
16272 2004-11-04 04:29  ravindra
16273
16274         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
16275                 - Changed default value signatures (prefixed all with ListView).
16276                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
16277                 ListView.
16278           - Fixed calculations for ListViewItem and implemented Clone()
16279           method.
16280
16281 2004-11-04 04:26  ravindra
16282
16283         * Theme.cs, ThemeWin32Classic.cs:
16284                 - Changed default ListView values signatures (prefixed all with
16285                 ListView).
16286           - Fixed default size values for VScrollBar and HScrollBar.
16287                 - Fixed DrawListViewItem method.
16288
16289 2004-11-04 04:05  ravindra
16290
16291         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
16292
16293 2004-11-04 04:04  ravindra
16294
16295         * ImageList.cs: Implemented the missing overload for Draw method.
16296
16297 2004-11-03 19:29  jackson
16298
16299         * TabControl.cs: Handle dropping rows on selection properly
16300
16301 2004-11-03 11:59  jackson
16302
16303         * TabControl.cs: remove debug code
16304
16305 2004-11-03 11:52  jackson
16306
16307         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
16308           the scrolly widgerywoo
16309
16310 2004-11-02 13:52  jackson
16311
16312         * TabControl.cs: Resize the tab pages and tabs when the tab control
16313           is resized
16314
16315 2004-11-02 13:40  jackson
16316
16317         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
16318           selected tab to the bottom
16319
16320 2004-11-02 13:39  jackson
16321
16322         * TabPage.cs: Store the tab pages row
16323
16324 2004-11-02 12:33  jordi
16325
16326         * MenuItem.cs: fixes handle creation
16327
16328 2004-11-02 11:42  jackson
16329
16330         * TabControl.cs: signature fix
16331
16332 2004-11-02 08:56  jackson
16333
16334         * TabControl.cs: Calculate whether the tab is on an edge properly.
16335           Remove top secret debugging code
16336
16337 2004-11-01 19:57  jackson
16338
16339         * TabControl.cs: Add click handling, and proper sizing
16340
16341 2004-11-01 19:47  jackson
16342
16343         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
16344           tab controls
16345
16346 2004-11-01 19:39  jackson
16347
16348         * TabPage.cs: add internal property to store the bounds of a tab
16349           page
16350
16351 2004-10-30 04:23  ravindra
16352
16353         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
16354           values.
16355
16356 2004-10-30 04:21  ravindra
16357
16358         * ListView.cs, ListViewItem.cs: Added support for scrolling and
16359           fixed calculations.
16360
16361 2004-10-30 03:06  pbartok
16362
16363         * XplatUIX11.cs:
16364           - Removed extension of DllImported libs
16365
16366 2004-10-29 09:55  jordi
16367
16368         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
16369           navigation, itemcollection completion, menu fixes
16370
16371 2004-10-27 22:58  pbartok
16372
16373         * XplatUIX11.cs:
16374           - Now throws a nice error message when no X display could be opened
16375
16376 2004-10-26 13:51  jordi
16377
16378         * ListView.cs: removes warning
16379
16380 2004-10-26 03:55  ravindra
16381
16382         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
16383           ThemeWin32Classic.cs: Some formatting for my last checkins.
16384
16385 2004-10-26 03:36  ravindra
16386
16387         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
16388           control and default values.
16389
16390 2004-10-26 03:35  ravindra
16391
16392         * Theme.cs: Added some default values for ListView control.
16393
16394 2004-10-26 03:33  ravindra
16395
16396         * ToolBar.cs: ToolBar should use the user specified button size, if
16397           there is any. Added a size_specified flag for the same.
16398
16399 2004-10-26 03:33  ravindra
16400
16401         * ColumnHeader.cs: Added some internal members and calculations for
16402           ColumnHeader.
16403
16404 2004-10-26 03:32  ravindra
16405
16406         * ListViewItem.cs: Calculations for ListViewItem.
16407
16408 2004-10-26 03:31  ravindra
16409
16410         * ListView.cs: Added some internal members and calculations for
16411           ListView.
16412
16413 2004-10-22 13:31  jordi
16414
16415         * MenuAPI.cs: speedup menus drawing
16416
16417 2004-10-22 13:16  jackson
16418
16419         * XplatUIX11.cs: Make sure to update exposed regions when adding an
16420           expose event
16421
16422 2004-10-22 11:49  jackson
16423
16424         * Control.cs: oops
16425
16426 2004-10-22 11:41  jackson
16427
16428         * Control.cs: Check to see if the window should have its background
16429           repainted by X when drawing.
16430
16431 2004-10-22 11:31  jackson
16432
16433         * XplatUIX11.cs: When invalidating areas only use XClearArea if
16434           clear is true, this way we do not get flicker from X repainting the
16435           background
16436
16437 2004-10-22 11:28  jackson
16438
16439         * XEventQueue.cs: Queue properly
16440
16441 2004-10-21 09:38  jackson
16442
16443         * XEventQueue.cs: Fix access modifier
16444
16445 2004-10-21 09:36  jackson
16446
16447         * XEventQueue.cs: Don't loose messages
16448
16449 2004-10-21 09:22  jackson
16450
16451         * XEventQueue.cs: Don't loose messages
16452
16453 2004-10-20 04:15  jordi
16454
16455         * BootMode.cs: enum need it by SystemInfo
16456
16457 2004-10-19 21:58  pbartok
16458
16459         * XplatUIWin32.cs:
16460           - Small sanity check
16461
16462 2004-10-19 21:56  pbartok
16463
16464         * Form.cs:
16465           - Added private FormParentWindow class which acts as the container
16466             for our form and as the non-client area where menus are drawn
16467           - Added/Moved required tie-ins to Jordi's menus
16468           - Fixed/Implemented the FormStartPosition functionality
16469
16470 2004-10-19 21:52  pbartok
16471
16472         * Control.cs:
16473           - Removed unneeded locals
16474           - Added code to all size and location properties to understand and
16475             deal with the parent container of Form
16476
16477 2004-10-19 21:33  pbartok
16478
16479         * Application.cs:
16480           - Fixed to deal with new Form subclasses for menus
16481
16482 2004-10-19 17:48  jackson
16483
16484         * XEventQueue.cs: commit correct version of file
16485
16486 2004-10-19 16:50  jackson
16487
16488         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
16489
16490 2004-10-19 16:15  jordi
16491
16492         * MenuAPI.cs: MenuBarCalcSize returns the height
16493
16494 2004-10-19 08:31  pbartok
16495
16496         * Control.cs:
16497           - Added missing call to PreProcessMessage before calling OnXXXKey
16498           methods
16499
16500 2004-10-19 00:04  ravindra
16501
16502         * ToolTip.cs: Fixed constructor.
16503
16504 2004-10-18 09:31  jordi
16505
16506         * MenuAPI.cs: menuitems in menubars do not have shortcuts
16507
16508 2004-10-18 09:26  jordi
16509
16510         * MenuItem.cs: fixes MenuItem class signature
16511
16512 2004-10-18 08:56  jordi
16513
16514         * MenuAPI.cs: prevents windows from showing in the taskbar
16515
16516 2004-10-18 00:28  ravindra
16517
16518         * ToolTip.cs: Suppressed a warning message.
16519
16520 2004-10-18 00:27  ravindra
16521
16522         * Control.cs: Default value of visible property must be true.
16523
16524 2004-10-17 23:19  pbartok
16525
16526         * ToolTip.cs:
16527           - Complete implementation
16528
16529 2004-10-17 23:19  pbartok
16530
16531         * XplatUIX11.cs:
16532           - Added EnableWindow method
16533           - Added SetModal stub
16534           - Added generation of WM_ACTIVATE message (still needs testing)
16535           - Added SetTopMost stub
16536           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
16537
16538 2004-10-17 23:17  pbartok
16539
16540         * XplatUIWin32.cs:
16541           - Removed VirtualKeys to XplatUIStructs
16542           - Implemented SetTopMost method
16543           - Implemented EnableWindow method
16544           - Bugfix in ScreenToClient()
16545           - Bugfixes in ClientToScreen()
16546
16547 2004-10-17 22:51  pbartok
16548
16549         * XplatUIStructs.cs:
16550           - Added WS_EX styles to WindowStyles enumeration
16551
16552 2004-10-17 22:50  pbartok
16553
16554         * XplatUI.cs, XplatUIDriver.cs:
16555           - Added method for enabling/disabling windows
16556           - Added method for setting window modality
16557           - Added method for setting topmost window
16558
16559 2004-10-17 22:49  pbartok
16560
16561         * ThemeWin32Classic.cs:
16562           - Added ToolTip drawing code
16563
16564 2004-10-17 22:49  pbartok
16565
16566         * Theme.cs:
16567           - Added ToolTip abstracts
16568
16569 2004-10-17 22:47  pbartok
16570
16571         * Form.cs:
16572           - Fixed Form.ControlCollection to handle owner relations
16573           - Added Owner/OwnedForms handling
16574           - Implemented Z-Ordering for owned forms
16575           - Removed unneeded private overload of ShowDialog
16576           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
16577             so I hope)
16578           - Fixed Close(), had wrong default
16579           - Added firing of OnLoad event
16580           - Added some commented out debug code for Ownership handling
16581
16582 2004-10-17 22:16  pbartok
16583
16584         * Control.cs:
16585           - Fixed/implemented flat list of controls
16586
16587 2004-10-17 22:14  pbartok
16588
16589         * Application.cs:
16590           - Added code to simulate modal dialogs on Win32
16591
16592 2004-10-17 16:11  jordi
16593
16594         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
16595           mouse event
16596
16597 2004-10-17 13:39  jordi
16598
16599         * MenuAPI.cs: menu drawing fixes
16600
16601 2004-10-15 09:10  ravindra
16602
16603         * StructFormat.cs: General Enum.
16604
16605 2004-10-15 09:09  ravindra
16606
16607         * SizeGripStyle.cs: Enum for Form.
16608
16609 2004-10-15 09:08  ravindra
16610
16611         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
16612           in Theme for ListView.
16613
16614 2004-10-15 09:06  ravindra
16615
16616         * ColumnHeader.cs: Flushing some formatting changes.
16617
16618 2004-10-15 09:05  ravindra
16619
16620         * ListViewItem.cs: Implemented GetBounds method and fixed coding
16621           style.
16622
16623 2004-10-15 09:03  ravindra
16624
16625         * ListView.cs: Implemented Paint method and fixed coding style.
16626
16627 2004-10-15 07:34  jordi
16628
16629         * MenuAPI.cs: fix for X11
16630
16631 2004-10-15 07:32  ravindra
16632
16633         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
16634                 - Renamed Paint() method to Draw() for clarity. Also, moved
16635                 DrawImage() to OnPaint().
16636
16637 2004-10-15 07:25  ravindra
16638
16639         * CheckBox.cs, RadioButton.cs:
16640                 - Removed Redraw (), we get it from ButtonBase.
16641                 - Implemented Paint (), to do class specific painting.
16642
16643 2004-10-15 07:16  ravindra
16644
16645         * ButtonBase.cs:
16646                 - Redraw () is not virtual now.
16647                 - Added an internal virtual method Paint (), so that
16648                 derived classes can do their painting on their own.
16649                 - Modified OnPaint () to call Paint ().
16650
16651 2004-10-15 06:43  jordi
16652
16653         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
16654           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
16655
16656 2004-10-15 00:30  ravindra
16657
16658         * MessageBox.cs:
16659                 - MessageBox on windows does not have min/max buttons.
16660                 This change in CreateParams fixes this on Windows. We
16661                 still need to implement this windowstyle behavior in
16662                 our X11 driver.
16663
16664 2004-10-14 05:14  ravindra
16665
16666         * ToolBar.cs:
16667                 - Changed Redraw () to do a Refresh () always.
16668                 - Fixed the MouseMove event handling when mouse is pressed,
16669                 ie drag event handling.
16670                 - Replaced the usage of ToolBarButton.Pressed property to
16671                 ToolBarButton.pressed internal variable.
16672
16673 2004-10-14 05:10  ravindra
16674
16675         * ToolBarButton.cs:
16676                 - Added an internal member 'inside' to handle mouse move
16677                 with mouse pressed ie mouse drag event.
16678                 - Changed 'Pressed' property to return true only when
16679                 'inside' and 'pressed' are both true.
16680                 - Some coding style love.
16681
16682 2004-10-14 00:17  ravindra
16683
16684         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
16685           public method.
16686
16687 2004-10-14 00:15  ravindra
16688
16689         * ButtonBase.cs: Redraw () related improvements.
16690
16691 2004-10-14 00:14  ravindra
16692
16693         * MessageBox.cs: Moved InitFormSize () out of Paint method and
16694           removed unnecessary calls to Button.Show () method.
16695
16696 2004-10-13 17:50  pbartok
16697
16698         * XplatUIX11.cs:
16699           - Formatting fix
16700           - Removed destroying of window until we solve the problem of X
16701             destroying the window before us on shutdown
16702
16703 2004-10-13 16:32  pbartok
16704
16705         * ButtonBase.cs:
16706           - Now Redraws on MouseUp for FlatStyle Flat and Popup
16707
16708 2004-10-13 14:18  pbartok
16709
16710         * XplatUIX11.cs:
16711           - Added code to destroy the X window
16712
16713 2004-10-13 14:18  pbartok
16714
16715         * XplatUIWin32.cs:
16716           - Added code to destroy a window
16717
16718 2004-10-13 14:12  pbartok
16719
16720         * ButtonBase.cs:
16721           - Added the Redraw on Resize that got dropped in the last rev
16722
16723 2004-10-13 09:06  pbartok
16724
16725         * ThemeWin32Classic.cs:
16726           - Path from John BouAntoun:
16727             * Fix check rendering (centre correctly for normal style, offset
16728               correctly for FlatStyle).
16729             * Fix border color usage (use backcolor) for FlatStyle.Popup
16730             * Use checkbox.Capture instead of checkbox.is_pressed when
16731               rendering flatstyle states.
16732
16733 2004-10-12 21:48  pbartok
16734
16735         * ThemeWin32Classic.cs:
16736           - Removed all occurences of SystemColors and replaced them with the
16737             matching theme color
16738
16739 2004-10-12 21:41  pbartok
16740
16741         * ThemeWin32Classic.cs:
16742           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
16743             him using the function for flatstyle drawing
16744           - Changed functions to use the new version of CPDrawBorder3D
16745
16746 2004-10-12 21:15  pbartok
16747
16748         * ControlPaint.cs:
16749           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
16750             match MS documentation. They need to return defined colors if the
16751             passed color matches the configured control color. Thanks to John
16752             BouAntoun for pointing this out.
16753
16754 2004-10-12 20:57  pbartok
16755
16756         * Control.cs:
16757           - Fix from John BouAntoun: Raise ForeColorChanged event when text
16758             color is changed
16759
16760 2004-10-12 20:46  pbartok
16761
16762         * CheckBox.cs:
16763           - Fix from John BouAntoun: Now properly sets the Appearance property
16764
16765 2004-10-12 20:45  pbartok
16766
16767         * ThemeWin32Classic.cs:
16768           - Fixes from John BouAntoun: now handles forecolors and backcolors
16769             for flatstyle rendered controls much better; It also fixes normal
16770             checkbox rendering when pushed or disabled.
16771
16772 2004-10-08 02:50  jordi
16773
16774         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
16775           work
16776
16777 2004-10-07 08:56  jordi
16778
16779         * ThemeWin32Classic.cs: Removes deletion of cached brushes
16780
16781 2004-10-06 03:59  jordi
16782
16783         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
16784           XplatUIWin32.cs: removes warnings from compilation
16785
16786 2004-10-05 12:23  jackson
16787
16788         * RadioButton.cs: Fix ctor
16789
16790 2004-10-05 11:10  pbartok
16791
16792         * MessageBox.cs:
16793           - Partial implementation by Benjamin Dasnois
16794
16795 2004-10-05 10:15  jackson
16796
16797         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
16798           by John BouAntoun
16799
16800 2004-10-05 03:07  ravindra
16801
16802         * ToolBar.cs:
16803                 - Removed a private method, Draw ().
16804                 - Fixed the ButtonDropDown event handling.
16805                 - Fixed MouseMove event handling.
16806
16807 2004-10-05 03:04  ravindra
16808
16809         * ThemeWin32Classic.cs:
16810                 - Added DrawListView method and ListViewDefaultSize property.
16811                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
16812                 - Changed DOS style CRLF to Unix format (dos2unix).
16813
16814 2004-10-05 03:03  ravindra
16815
16816         * Theme.cs:
16817                 - Added DrawListView method and ListViewDefaultSize property.
16818
16819 2004-10-05 02:42  ravindra
16820
16821         * ToolBarButton.cs: Added an internal member dd_pressed to handle
16822           clicks on DropDown arrow.
16823
16824 2004-10-04 22:56  jackson
16825
16826         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
16827           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
16828           Control handle the buffers, derived classes should not have to
16829           CreateBuffers themselves.
16830
16831 2004-10-04 21:20  jackson
16832
16833         * StatusBar.cs: The control handles resizing the buffers now.
16834
16835 2004-10-04 21:18  jackson
16836
16837         * Control.cs: When resizing the buffers should be invalidated. This
16838           should be handled in Control not in derived classes.
16839
16840 2004-10-04 14:45  jackson
16841
16842         * TabPage.cs: oops
16843
16844 2004-10-04 02:14  pbartok
16845
16846         * LeftRightAlignment.cs:
16847           - Initial check-in
16848
16849 2004-10-04 01:09  jordi
16850
16851         * ThemeWin32Classic.cs: fixes right button position causing right
16852           button not showing on horizontal scrollbars
16853
16854 2004-10-02 13:12  pbartok
16855
16856         * XplatUIX11.cs:
16857           - Simplified the Invalidate method by using an X call instead of
16858             generating the expose ourselves
16859           - Added an expose when the window background is changed
16860           - Implemented ClientToScreen method
16861
16862 2004-10-02 13:08  pbartok
16863
16864         * XplatUIWin32.cs:
16865           - Added Win32EnableWindow method (test for implementing modal
16866           dialogs)
16867           - Added ClientToScreen method and imports
16868
16869 2004-10-02 13:07  pbartok
16870
16871         * XplatUI.cs, XplatUIDriver.cs:
16872           - Added ClientToScreen coordinate translation method
16873
16874 2004-10-02 13:06  pbartok
16875
16876         * KeyPressEventArgs.cs:
16877           - Fixed access level for constructor
16878
16879 2004-10-02 13:06  pbartok
16880
16881         * NativeWindow.cs:
16882           - Changed access level for the window_collection hash table
16883
16884 2004-10-02 13:05  pbartok
16885
16886         * Form.cs:
16887           - Added KeyPreview property
16888           - Added Menu property (still incomplete, pending Jordi's menu work)
16889           - Implemented ProcessCmdKey
16890           - Implemented ProcessDialogKey
16891           - Implemented ProcessKeyPreview
16892
16893 2004-10-02 13:02  pbartok
16894
16895         * Control.cs:
16896           - Added private method to get the Control object from the window
16897           handle
16898           - Implemented ContextMenu property
16899           - Implemented PointToScreen
16900           - Implemented PreProcessMessage
16901           - Implemented IsInputChar
16902           - Implemented IsInputKey
16903           - Implemented ProcessCmdKey
16904           - Completed ProcessKeyEventArgs
16905           - Fixed message loop to call the proper chain of functions on key
16906           events
16907           - Implemented ProcessDialogChar
16908           - Implemented ProcessDialogKey
16909           - Implemented ProcessKeyMessage
16910           - Implemented ProcessKeyPreview
16911           - Added RaiseDragEvent stub (MS internal method)
16912           - Added RaiseKeyEvent stub (MS internal method)
16913           - Added RaiseMouseEvent stub (MS Internal method)
16914           - Added RaisePaintEvent stub (MS Internal method)
16915           - Added ResetMouseEventArgs stub (MS Internal method)
16916           - Implemented RtlTranslateAlignment
16917           - Implemented RtlTranslateContent
16918           - Implemented RtlTranslateHorizontal
16919           - Implemented RtlTranslateLeftRight
16920           - Added generation of KeyPress event
16921
16922 2004-10-02 05:57  ravindra
16923
16924         * ListViewItem.cs: Added attributes.
16925
16926 2004-10-02 05:32  ravindra
16927
16928         * ListView.cs: Added attributes.
16929
16930 2004-10-01 11:53  jackson
16931
16932         * Form.cs: Implement the Close method so work on MessageBox can
16933           continue.
16934
16935 2004-09-30 14:06  pbartok
16936
16937         * XplatUIX11.cs:
16938           - Bug fixes
16939
16940 2004-09-30 11:34  jackson
16941
16942         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
16943
16944 2004-09-30 07:26  ravindra
16945
16946         * ListViewItemConverter.cs: Converter for ListViewItem.
16947
16948 2004-09-30 07:26  ravindra
16949
16950         * SortOrder.cs: Enum for ListView control.
16951
16952 2004-09-30 07:25  ravindra
16953
16954         * ColumnHeader.cs: Supporting class for ListView control.
16955
16956 2004-09-30 07:24  ravindra
16957
16958         * ListView.cs, ListViewItem.cs: Initial implementation.
16959
16960 2004-09-30 07:20  ravindra
16961
16962         * ItemActivation.cs: Enum for ListView Control.
16963
16964 2004-09-29 20:29  pbartok
16965
16966         * XplatUIX11.cs:
16967           - Added lookup of pixel value for background color; tries to get a
16968             color 'close' to the requested color, it avoids having to create a
16969             colormap.  Depending on the display this could mean the used color
16970             is slightly off the desired color. Might have to change it to a more
16971             resource intensive colormap approach, but it will work as a
16972           workaround to avoid red screens.
16973
16974 2004-09-29 14:27  jackson
16975
16976         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
16977
16978 2004-09-28 12:44  pbartok
16979
16980         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
16981           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
16982           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
16983           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
16984           TrackBar.cs, VScrollBar.cs:
16985           - Streamlined Theme interfaces:
16986             * Each DrawXXX method for a control now is passed the object for
16987               the control to be drawn in order to allow accessing any state the
16988               theme might require
16989
16990             * ControlPaint methods for the theme now have a CP prefix to avoid
16991               name clashes with the Draw methods for controls
16992
16993             * Every control now retrieves it's DefaultSize from the current
16994             theme
16995
16996 2004-09-28 12:17  jackson
16997
16998         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
16999           drawing
17000
17001 2004-09-24 14:57  jackson
17002
17003         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
17004           Gives us a nice little performance boost.
17005
17006 2004-09-24 12:02  jackson
17007
17008         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
17009           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
17010           Control and supporting classes. Initial checkin
17011
17012 2004-09-23 13:08  jackson
17013
17014         * Form.cs: Temp build fixage
17015
17016 2004-09-23 01:39  ravindra
17017
17018         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
17019           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
17020           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
17021           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
17022           EventHandlers needed by ListView Control.
17023
17024 2004-09-22 14:12  pbartok
17025
17026         * ScrollableControl.cs:
17027           - Implemented DockPadding property
17028           - Implemented AutoScroll property
17029           - Implemented AutoScrollMargin property
17030           - Implemented AutoScrollMinSize property
17031           - Implemented AutoScrollPosition property
17032           - Implemented DisplayRectangle property (still incomplete)
17033           - Implemented CreateParams property
17034           - Implemented HScroll property
17035           - Implemented VScroll property
17036           - Implemented OnVisibleChanged property
17037
17038 2004-09-22 14:09  pbartok
17039
17040         * Form.cs:
17041           - Added Form.ControllCollection class
17042           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
17043             RemoveOwnedForm (still incomplete, missing on-top and common
17044             minimize/maximize behaviour)
17045           - Added StartPosition property (still incomplete, does not use when
17046             creating the form)
17047           - Added ShowDialog() methods (still incomplete, missing forcing the
17048             dialog modal)
17049
17050 2004-09-22 14:05  pbartok
17051
17052         * Application.cs:
17053           - Added message loop for modal dialogs
17054
17055 2004-09-22 14:02  pbartok
17056
17057         * GroupBox.cs:
17058           - Fixed wrong types for events
17059
17060 2004-09-22 14:00  pbartok
17061
17062         * Shortcut.cs, FormWindowState.cs:
17063           - Fixed wrong values
17064
17065 2004-09-22 12:01  jackson
17066
17067         * Control.cs: Text is never null
17068
17069 2004-09-20 22:14  pbartok
17070
17071         * XplatUIWin32.cs:
17072           - Fixed accessibility level for Idle handler
17073
17074 2004-09-20 18:54  jackson
17075
17076         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17077           XplatUIX11.cs: New message loop that uses poll so we don't get a
17078           busy loop
17079
17080 2004-09-17 10:43  pbartok
17081
17082         * ScrollBar.cs:
17083           - Fixed behaviour of arrow buttons. Now properly behaves like
17084             Buttons (and like Microsoft's scrollbar arrow buttons)
17085
17086 2004-09-17 10:14  pbartok
17087
17088         * ScrollBar.cs:
17089           - Added missing release of keyboard/mouse capture
17090
17091 2004-09-17 06:18  jordi
17092
17093         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
17094           Theme.cs: Very early menu support
17095
17096 2004-09-16 17:45  pbartok
17097
17098         * XplatUIWin32.cs:
17099           - Fixed sending a window to the front
17100           - Added overload for SetWindowPos to avoid casting
17101
17102 2004-09-16 17:44  pbartok
17103
17104         * Control.cs:
17105           - Added SendToBack and BringToFront methods
17106
17107 2004-09-16 07:00  ravindra
17108
17109         * Copyright: Added Novell URL.
17110
17111 2004-09-16 07:00  ravindra
17112
17113         * ToolBar.cs: Invalidate should be done before redrawing.
17114
17115 2004-09-15 21:19  ravindra
17116
17117         * ColumnHeaderStyle.cs: Enum for ListView Control.
17118
17119 2004-09-15 21:18  ravindra
17120
17121         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
17122           ListView Control.
17123
17124 2004-09-13 18:26  jackson
17125
17126         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
17127           properly
17128
17129 2004-09-13 18:13  jackson
17130
17131         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
17132           a second thread and post messages into the main threads message
17133           queue. This makes timing much more consistent. Both win2K and XP
17134           have a minimum timer value of 15 milliseconds, so we now do this
17135           too.
17136
17137 2004-09-13 15:18  pbartok
17138
17139         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17140           XplatUIX11.cs:
17141           - Added Z-Ordering methods
17142
17143 2004-09-13 10:56  pbartok
17144
17145         * Form.cs:
17146           - Fixed #region names
17147           - Moved properties and methods into their proper #regions
17148
17149 2004-09-13 10:51  pbartok
17150
17151         * Form.cs:
17152           - Added Accept and CancelButton properties
17153           - Added ProcessDialogKey() method
17154
17155 2004-09-13 08:18  pbartok
17156
17157         * IWindowTarget.cs:
17158           - Initial check-in
17159
17160 2004-09-10 21:50  pbartok
17161
17162         * Control.cs:
17163           - Added DoDragDrop() [incomplete]
17164           - Properly implemented 'Visible' handling
17165           - Added SetVisibleCore()
17166           - Implemented FindChildAtPoint()
17167           - Implemented GetContainerControl()
17168           - Implemented Hide()
17169
17170 2004-09-10 19:28  pbartok
17171
17172         * Control.cs:
17173           - Moved methods into their appropriate #regions
17174           - Reordered methods within regions alphabetically
17175
17176 2004-09-10 18:57  pbartok
17177
17178         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
17179           - Added method to retrieve text from window
17180
17181 2004-09-10 18:56  pbartok
17182
17183         * Control.cs:
17184           - Moved some internal functions into the internal region
17185           - Implemented FontHeight
17186           - Implemented RenderRightToLeft
17187           - Implemented ResizeRedraw
17188           - Implemented ShowFocusCues
17189           - Implemented ShowKeyboardCues
17190           - Implemented FromChildHandle
17191           - Implemented FromHandle
17192           - Implemented IsMnemonic
17193           - Implemented ReflectMessage
17194           - All public and protected Static Methods are now complete
17195
17196 2004-09-10 16:54  pbartok
17197
17198         * Control.cs:
17199           - Implemented remaining missing public instance properties
17200           - Alphabetized some out of order properties
17201
17202 2004-09-10 05:51  ravindra
17203
17204         * PictureBox.cs: Added a check for null image.
17205
17206 2004-09-10 00:59  jordi
17207
17208         * GroupBox.cs: remove cvs tag
17209
17210 2004-09-09 05:25  ravindra
17211
17212         * ToolBar.cs: Make redraw accessible from ToolBarButton.
17213
17214 2004-09-09 05:23  ravindra
17215
17216         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
17217           parent redraw.
17218
17219 2004-09-09 02:28  pbartok
17220
17221         * ThemeWin32Classic.cs:
17222           - Improve disabled string look
17223
17224 2004-09-09 01:15  jordi
17225
17226         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
17227           args and handler
17228
17229 2004-09-08 23:56  ravindra
17230
17231         * ItemBoundsPortion.cs: It's enum, not a class!
17232
17233 2004-09-08 23:47  ravindra
17234
17235         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
17236           Enums for Form.
17237
17238 2004-09-08 21:13  ravindra
17239
17240         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
17241           ListView control.
17242
17243 2004-09-08 21:03  ravindra
17244
17245         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
17246           avoid crash.
17247
17248 2004-09-08 21:01  ravindra
17249
17250         * ScrollableControl.cs: Removed unreachable code.
17251
17252 2004-09-08 06:45  jordi
17253
17254         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
17255
17256 2004-09-08 01:00  jackson
17257
17258         * XplatUIX11.cs: Only run the timers when updating the message
17259           queue. This effectively gives X messages a higher priority then
17260           timer messages. Timers still need love though
17261
17262 2004-09-07 14:01  jackson
17263
17264         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
17265           this for us and the handle is no longer valid.
17266
17267 2004-09-07 13:59  jackson
17268
17269         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
17270           loop that manages to not crash. TODO: Add poll and cleanup timers
17271
17272 2004-09-07 11:12  jordi
17273
17274         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
17275
17276 2004-09-07 03:40  jordi
17277
17278         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
17279           fixes, methods, multiple links
17280
17281 2004-09-06 06:55  jordi
17282
17283         * Control.cs: Caches ClientRectangle rectangle value
17284
17285 2004-09-05 02:03  jordi
17286
17287         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
17288           certain situations
17289
17290 2004-09-04 11:10  jordi
17291
17292         * Label.cs: Refresh when font changed
17293
17294 2004-09-02 16:24  pbartok
17295
17296         * Control.cs:
17297           - Added sanity check to creation of double buffer bitmap
17298
17299 2004-09-02 16:24  pbartok
17300
17301         * ButtonBase.cs:
17302           - Fixed selection of text color
17303           - Fixed handling of resize event; now properly recreates double
17304             buffering bitmap
17305           - Added missing assignment of TextAlignment
17306           - Added proper default for TextAlignment
17307
17308 2004-09-02 14:26  pbartok
17309
17310         * RadioButton.cs:
17311           - Added missing RadioButton.RadioButtonAccessibleObject class
17312
17313 2004-09-02 14:26  pbartok
17314
17315         * Control.cs:
17316           - Added missing Control.ControlAccessibleObject class
17317           - Started to implement Select()ion mechanisms, still very incomplete
17318
17319 2004-09-02 14:25  pbartok
17320
17321         * AccessibleObject.cs:
17322           - Added missing methods
17323
17324 2004-09-02 14:23  pbartok
17325
17326         * AccessibleNavigation.cs, AccessibleSelection.cs:
17327           - Initial check-in
17328
17329 2004-09-02 10:32  jordi
17330
17331         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
17332           pool for pens, brushes, and hatchbruses
17333
17334 2004-09-01 15:30  jackson
17335
17336         * StatusBar.cs: Fix typo
17337
17338 2004-09-01 14:44  pbartok
17339
17340         * RadioButton.cs:
17341           - Fixed state
17342
17343 2004-09-01 14:39  pbartok
17344
17345         * Button.cs, RadioButton.cs:
17346           - Functional initial check-in
17347
17348 2004-09-01 14:01  pbartok
17349
17350         * CheckBox.cs:
17351           - Added missing default
17352           - Added missing region mark
17353
17354 2004-09-01 09:10  jordi
17355
17356         * Label.cs: fixes method signatures, new methods, events, fixes
17357           autosize
17358
17359 2004-09-01 07:19  jordi
17360
17361         * Control.cs: Init string variables with an empty object
17362
17363 2004-09-01 04:20  jordi
17364
17365         * Control.cs: fires OnFontChanged event
17366
17367 2004-08-31 20:07  pbartok
17368
17369         * ButtonBase.cs:
17370           - Enabled display of strings
17371
17372 2004-08-31 20:05  pbartok
17373
17374         * Form.cs:
17375           - Added (partial) implementation of DialogResult; rest needs to be
17376             implemented when the modal loop code is done
17377
17378 2004-08-31 19:55  pbartok
17379
17380         * CheckBox.cs:
17381           - Fixed to match the removal of the needs_redraw concept
17382
17383 2004-08-31 19:55  pbartok
17384
17385         * ButtonBase.cs:
17386           - Removed the rather odd split between 'needs redraw' and redrawing
17387           - Now handles the events that require regeneration (ambient
17388             properties and size)
17389
17390 2004-08-31 19:41  pbartok
17391
17392         * Control.cs:
17393           - Added firing of BackColorChanged event
17394           - Added TopLevelControl property
17395           - Fixed handling of WM_ERASEBKGRND message
17396
17397 2004-08-31 12:49  pbartok
17398
17399         * ButtonBase.cs:
17400           - Removed debug
17401           - Minor fixes
17402
17403 2004-08-31 12:48  pbartok
17404
17405         * CheckBox.cs:
17406           - Finished (famous last words)
17407
17408 2004-08-31 04:35  jordi
17409
17410         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
17411           scrolling bugs, adds new methods
17412
17413 2004-08-30 14:42  pbartok
17414
17415         * CheckBox.cs:
17416           - Implemented CheckBox drawing code
17417
17418 2004-08-30 14:42  pbartok
17419
17420         * ButtonBase.cs:
17421           - Made Redraw() and CheckRedraw() virtual
17422           - Improved mouse up/down/move logic to properly track buttons
17423
17424 2004-08-30 09:44  pbartok
17425
17426         * CheckBox.cs:
17427           - Updated to fix broken build. Not complete yet.
17428
17429 2004-08-30 09:28  pbartok
17430
17431         * CheckState.cs:
17432           - Initial checkin
17433
17434 2004-08-30 09:17  pbartok
17435
17436         * Appearance.cs:
17437           - Initial check-in
17438
17439 2004-08-27 16:12  ravindra
17440
17441         * ToolBarButton.cs: Added TypeConverter attribute.
17442
17443 2004-08-27 16:07  ravindra
17444
17445         * ImageIndexConverter.cs: Implemented.
17446
17447 2004-08-27 14:17  pbartok
17448
17449         * Control.cs:
17450           - Removed unneeded stack vars
17451           - First attempt to fix sizing issues when layout is suspended
17452
17453 2004-08-25 15:35  jordi
17454
17455         * ScrollBar.cs: more fixes to scrollbar
17456
17457 2004-08-25 14:04  ravindra
17458
17459         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
17460           Added the missing divider code and grip for ToolBar Control.
17461
17462 2004-08-25 13:20  pbartok
17463
17464         * Control.cs:
17465           - Control now properly passes the ambient background color to child
17466             controls
17467
17468 2004-08-25 13:20  jordi
17469
17470         * ScrollBar.cs: small bug fix regarding bar position
17471
17472 2004-08-25 12:33  pbartok
17473
17474         * Timer.cs:
17475           - Now only calls SetTimer or KillTimer if the enabled state has
17476           changed
17477
17478 2004-08-25 12:33  pbartok
17479
17480         * XplatUIWin32.cs:
17481           - Fixed timer handling, now seems to work
17482           - Improved error message for window creation
17483
17484 2004-08-25 12:32  pbartok
17485
17486         * Control.cs:
17487           - Fixed generation of MouseUp message
17488
17489 2004-08-25 12:29  jordi
17490
17491         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
17492           and fixes for progressbar
17493
17494 2004-08-24 18:43  ravindra
17495
17496         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
17497           in ToolBar control.
17498
17499 2004-08-24 17:15  pbartok
17500
17501         * Panel.cs:
17502           - Added #region
17503           - Added missing events
17504           - Alphabetized
17505
17506 2004-08-24 17:14  pbartok
17507
17508         * StatusBar.cs, PictureBox.cs:
17509           - Now uses Control's CreateParams
17510
17511 2004-08-24 16:36  pbartok
17512
17513         * XplatUIX11.cs:
17514           - Fixed background color handling
17515           - Fixed sending of enter/leave events on a grab
17516
17517 2004-08-24 16:35  pbartok
17518
17519         * X11Structs.cs:
17520           - Refined definitions for CrossingEvent
17521
17522 2004-08-24 12:37  jordi
17523
17524         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
17525           formmating, methods signature, and adds missing events
17526
17527 2004-08-24 12:24  jordi
17528
17529         * Control.cs: fire OnEnabledChanged event
17530
17531 2004-08-24 11:17  pbartok
17532
17533         * XplatUIWin32.cs:
17534           - Implemented SetTimer() and KillTimer()
17535
17536 2004-08-24 11:16  pbartok
17537
17538         * XplatUIX11.cs:
17539           - Now uses Remove instead of Add to kill the timer
17540
17541 2004-08-24 10:16  jackson
17542
17543         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
17544           picture boxes in the theme now. Draw picture box borders and obey
17545           sizing modes
17546
17547 2004-08-24 05:49  jackson
17548
17549         * Timer.cs: Remove top secret debugging code
17550
17551 2004-08-24 05:34  jackson
17552
17553         * PictureBox.cs: Temp hack to make picture boxes draw their full
17554           image
17555
17556 2004-08-24 05:29  jackson
17557
17558         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
17559           XplatUIX11.cs: Move timers to the driver level. On X they are
17560           queued by the driver and checked on idle.
17561
17562 2004-08-24 01:07  jackson
17563
17564         * XplatUIX11.cs: Use a queue for async messages instead of passing
17565           them as ClientMessages since that was totally broken. Also simply
17566           check for events and return an idle message if none are found. This
17567           gives us an idle handler, and prevents deadlocking when no messages
17568           are in the queue.
17569
17570 2004-08-23 18:19  ravindra
17571
17572         * XplatUIWin32.cs: Removed the unwanted destructor.
17573
17574 2004-08-23 17:27  pbartok
17575
17576         * ButtonBase.cs:
17577           - Finishing touches. Works now, just needs some optimizations.
17578
17579 2004-08-23 16:53  jordi
17580
17581         * ScrollBar.cs: small fix
17582
17583 2004-08-23 16:45  pbartok
17584
17585         * Application.cs:
17586           - Removed debug output
17587           - Simplifications
17588
17589 2004-08-23 16:43  jordi
17590
17591         * ScrollBar.cs: [no log message]
17592
17593 2004-08-23 16:10  pbartok
17594
17595         * Form.cs:
17596           - Fixed handling of WM_CLOSE message
17597           - Removed debug output
17598
17599 2004-08-23 16:09  pbartok
17600
17601         * Application.cs:
17602           - Added handling of Idle event
17603           - Added handling of form closing
17604           - Fixed reporting of MessageLoop property
17605           - Removed some unneeded code, should provide a bit of a speedup
17606
17607 2004-08-23 15:22  pbartok
17608
17609         * Control.cs:
17610           - Added InitLayout() method
17611           - Added code to properly perform layout when Anchor or Dock property
17612             is changed
17613           - Changed 'interpretation' of ResumeLayout. MS seems to have a
17614             LAMESPEC, tried to do it in a way that makes sense
17615
17616 2004-08-23 14:10  jordi
17617
17618         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
17619           properties and methods
17620
17621 2004-08-23 13:55  pbartok
17622
17623         * Control.cs:
17624           - Properly fixed Jordi's last fix
17625           - Now uses Cursor's Position property instead of calling XplatUI
17626           directly
17627
17628 2004-08-23 13:44  jordi
17629
17630         * PaintEventHandler.cs: Adding missing attribute
17631
17632 2004-08-23 13:39  pbartok
17633
17634         * Cursor.cs:
17635           - Implemented Position property
17636
17637 2004-08-23 13:39  pbartok
17638
17639         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
17640           - Added method to move mouse cursor
17641
17642 2004-08-23 13:39  pbartok
17643
17644         * XplatUIX11.cs:
17645           - Fixed setting of background color
17646           - Added method to move mouse cursor
17647
17648 2004-08-23 13:16  jordi
17649
17650         * Control.cs: avoids null exception
17651
17652 2004-08-22 17:46  jackson
17653
17654         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
17655           PictureBox
17656
17657 2004-08-22 17:40  jackson
17658
17659         * XplatUIX11.cs: Add some missing locks
17660
17661 2004-08-22 15:10  pbartok
17662
17663         * Control.cs, Form.cs:
17664           - Removed OverlappedWindow style from Control, instead it's default
17665             now is child
17666           - Made form windows OverlappedWindow by default
17667
17668 2004-08-22 13:34  jackson
17669
17670         * ScrollBar.cs: Update the position through the Value property so
17671           the OnValueChanged event is raised.
17672
17673 2004-08-22 12:04  pbartok
17674
17675         * SWF.csproj:
17676           - Added Cursor.cs and UserControl.cs
17677
17678 2004-08-22 12:03  pbartok
17679
17680         * Cursor.cs:
17681           - Started implementation, not usable yet
17682
17683 2004-08-22 12:00  pbartok
17684
17685         * UserControl.cs:
17686           - Implemented UserControl (complete)
17687
17688 2004-08-21 19:20  ravindra
17689
17690         * ToolBar.cs: Correcting the formatting mess of VS.NET.
17691
17692 2004-08-21 18:49  ravindra
17693
17694         * ToolBar.cs: Probably this completes the missing attributes in
17695           toolbar control.
17696
17697 2004-08-21 18:03  ravindra
17698
17699         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
17700           Fixed toolbar control signatures.
17701
17702 2004-08-21 16:32  pbartok
17703
17704         * LinkLabel.cs:
17705           - Signature Fixes
17706
17707 2004-08-21 16:30  pbartok
17708
17709         * Label.cs:
17710           - Signature fixes
17711
17712 2004-08-21 16:19  pbartok
17713
17714         * Control.cs, Label.cs:
17715           - Signature fixes
17716
17717 2004-08-21 15:57  pbartok
17718
17719         * ButtonBase.cs:
17720           - Added loads of debug output for development
17721           - Fixed typo in method name
17722
17723 2004-08-21 15:52  pbartok
17724
17725         * ToolBarButtonClickEventArgs.cs:
17726           - Added missing base class
17727
17728 2004-08-21 14:53  pbartok
17729
17730         * Control.cs:
17731           - Updated to match new GrabWindow signature
17732
17733 2004-08-21 14:51  pbartok
17734
17735         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
17736           - Added method to get default display size
17737
17738 2004-08-21 14:23  pbartok
17739
17740         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
17741           - Added method to query current grab state
17742           - Added argument to allow confining a grab to a window
17743
17744 2004-08-21 14:22  pbartok
17745
17746         * Keys.cs:
17747           - Added [Flags] attribute so that modifiers can be used in bitwise
17748           ops
17749
17750 2004-08-21 14:21  pbartok
17751
17752         * TrackBar.cs, ScrollBar.cs:
17753           - Replaced direct XplatUI calls with their Control counterpart
17754
17755 2004-08-21 13:32  pbartok
17756
17757         * Control.cs:
17758           - Implemented Created property
17759
17760 2004-08-21 13:28  pbartok
17761
17762         * Control.cs:
17763           - Implemented ContainsFocus
17764
17765 2004-08-21 13:26  pbartok
17766
17767         * Control.cs:
17768           - Implemented CausesValidation
17769
17770 2004-08-21 13:21  pbartok
17771
17772         * Control.cs:
17773           - Implemented CanFocus
17774           - Implemented CanSelect
17775           - Implemented Capture
17776
17777 2004-08-21 12:35  pbartok
17778
17779         * XplatUIWin32.cs:
17780           - Fixed bug with Async message handling
17781           - Implemented getting the ModifierKeys
17782
17783 2004-08-21 12:32  jackson
17784
17785         * AsyncMethodResult.cs: Make sure we have the mutex before we
17786           release it. Fixes BeginInvoke on windows
17787
17788 2004-08-21 11:31  pbartok
17789
17790         * XplatUIWin32.cs, XplatUIX11.cs:
17791           - Drivers now return proper mouse state
17792
17793 2004-08-21 10:54  jackson
17794
17795         * Control.cs: Implement EndInvoke
17796
17797 2004-08-21 10:48  jackson
17798
17799         * Timer.cs: Remove unneeded finalizer
17800
17801 2004-08-20 19:52  ravindra
17802
17803         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
17804           in mouse event handling in the ToolBar control.
17805
17806 2004-08-20 19:50  ravindra
17807
17808         * ImageList.cs: Changed draw method to use the arguments passed in
17809           to draw the image.
17810
17811 2004-08-20 18:58  pbartok
17812
17813         * XplatUIStructs.cs:
17814           - Added private message for async communication
17815
17816 2004-08-20 17:38  ravindra
17817
17818         * Control.cs: Made RightToLeft property virtual and removed a
17819           Console.WriteLine.
17820
17821 2004-08-20 14:39  jordi
17822
17823         * ThemeGtk.cs: use style_attach
17824
17825 2004-08-20 14:39  pbartok
17826
17827         * XplatUIWin32.cs:
17828           - Added jackson's Async code from X11 to Win32
17829
17830 2004-08-20 14:09  pbartok
17831
17832         * SWF.csproj:
17833           - Added all new files
17834
17835 2004-08-20 14:09  pbartok
17836
17837         * Control.cs:
17838           - Added call to set window background color
17839
17840 2004-08-20 14:03  pbartok
17841
17842         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
17843           - Added method for setting the window background
17844
17845 2004-08-20 14:02  pbartok
17846
17847         * XplatUIWin32.cs:
17848           - Added method for setting the background color
17849           - Added handling for erasing the window background
17850
17851 2004-08-20 13:45  jordi
17852
17853         * TrackBar.cs: fixes timer, new properties and methods
17854
17855 2004-08-20 13:34  jackson
17856
17857         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
17858           correct thread
17859
17860 2004-08-20 13:22  jackson
17861
17862         * Timer.cs: Timer Tick events are now handed through Controls Async
17863           mechanism so the callbacks are executed in the same thread as X
17864
17865 2004-08-20 13:19  jackson
17866
17867         * XplatUIDriver.cs: Expose functionality to send async messages
17868           through the driver
17869
17870 2004-08-20 13:18  jackson
17871
17872         * Control.cs: Implement Begininvoke
17873
17874 2004-08-20 13:14  jackson
17875
17876         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
17877           messages through the driver
17878
17879 2004-08-20 13:12  jackson
17880
17881         * XplatUIX11.cs: Lock before all X operations. Also added Async
17882           method functionality through XSendEvent
17883
17884 2004-08-20 13:11  jackson
17885
17886         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
17887           This will screw up on 64 bit systems)
17888
17889 2004-08-20 13:10  jackson
17890
17891         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
17892           Async messages through X/Win32
17893
17894 2004-08-19 19:39  pbartok
17895
17896         * XplatUIX11.cs:
17897           - Updated code to match new HandleData.DeviceContext type
17898
17899 2004-08-19 19:38  pbartok
17900
17901         * HandleData.cs:
17902           - Made DeviceContext a generic object to allow usage from various
17903           drivers
17904           - Added support for queueing Windows messages
17905
17906 2004-08-19 19:37  pbartok
17907
17908         * XplatUIWin32.cs:
17909           - Added generation of MouseEnter, MouseLeave and MouseHover events
17910           - Added cleanup on EndPaint
17911
17912 2004-08-19 19:17  pbartok
17913
17914         * Control.cs:
17915           - Added handling of WM_MOUSEHOVER
17916           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
17917           code
17918
17919 2004-08-19 18:55  jordi
17920
17921         * ThemeGtk.cs: fixes button order
17922
17923 2004-08-19 18:12  jordi
17924
17925         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
17926
17927 2004-08-19 17:09  pbartok
17928
17929         * Control.cs:
17930           - Added Right property
17931           - Added RightToLeft property
17932
17933 2004-08-19 16:27  jordi
17934
17935         * ThemeGtk.cs: experimental GTK theme support
17936
17937 2004-08-19 16:26  jordi
17938
17939         * ITheme.cs, Theme.cs: move themes from an interface to a class
17940
17941 2004-08-19 16:25  jordi
17942
17943         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
17944           theme enhancaments
17945
17946 2004-08-19 16:04  pbartok
17947
17948         * XplatUIX11.cs:
17949           - Added colormap basics
17950           - Added a way to re-initialize with a different display handle
17951           - Fixed setting of the window background color
17952           - Added various X11 imports related to colors and colormaps
17953
17954 2004-08-19 15:51  pbartok
17955
17956         * X11Structs.cs:
17957           - Removed packing hints (Paolo suggested this a while back)
17958           - fixed colormap type
17959           - Added default Atom types
17960           - Added Screen and color structs and enums
17961
17962 2004-08-19 15:39  pbartok
17963
17964         * ImageList.cs:
17965           - Added missing Draw() method
17966           - Added missing RecreateHandle event
17967
17968 2004-08-19 15:30  pbartok
17969
17970         * Form.cs:
17971           - Added handling of WM_CLOSE
17972
17973 2004-08-18 13:16  jordi
17974
17975         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
17976           a table
17977
17978 2004-08-18 09:56  jordi
17979
17980         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
17981
17982 2004-08-17 15:31  ravindra
17983
17984         * SWF.csproj: Updated project.
17985
17986 2004-08-17 15:25  pbartok
17987
17988         * Control.cs:
17989           - Drawing improvement; don't call UpdateBounds if we are not visible
17990             (or have been minimized)
17991
17992 2004-08-17 15:24  pbartok
17993
17994         * XplatUIWin32.cs:
17995           - Finished IsVisible
17996           - Added Win32GetWindowPlacement
17997
17998 2004-08-17 15:08  jackson
17999
18000         * Panel.cs: Initial checkin of the Panel
18001
18002 2004-08-17 14:25  pbartok
18003
18004         * Control.cs:
18005           - Fixed broken handling of default window sizes
18006
18007 2004-08-17 13:29  jackson
18008
18009         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
18010           has a large startup time.
18011
18012 2004-08-17 10:25  jackson
18013
18014         * HandleData.cs: union areas properly
18015
18016 2004-08-17 10:12  jackson
18017
18018         * HandleData.cs: union areas properly
18019
18020 2004-08-16 20:00  ravindra
18021
18022         * ToolBar.cs, ToolBarButton.cs: Added attributes.
18023
18024 2004-08-16 18:48  ravindra
18025
18026         * ToolBar.cs: Added attributes.
18027
18028 2004-08-16 17:17  ravindra
18029
18030         * SWF.csproj: Updated project.
18031
18032 2004-08-16 17:16  jackson
18033
18034         * XplatUIX11.cs: Check for more expose events before sending a
18035           WM_PAINT so they can all be grouped together. This makes dragging a
18036           window across another window redraw in a sane way.
18037
18038 2004-08-16 15:47  pbartok
18039
18040         * Control.cs:
18041           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
18042             support OnMouseEnter/Leave()
18043           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
18044             exposure handling
18045
18046 2004-08-16 15:46  pbartok
18047
18048         * XplatUIStructs.cs, XplatUIX11.cs:
18049           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
18050           OnMouseEnter/Leave()
18051
18052 2004-08-16 15:34  jackson
18053
18054         * XplatUIX11.cs: Group multiple expose events in HandleData, make
18055           sure messages get the message field set to WM_NULL if they are not
18056           handled.
18057
18058 2004-08-16 15:24  jackson
18059
18060         * HandleData.cs: HandleData is used for storing message information
18061           for window handles
18062
18063 2004-08-15 17:23  ravindra
18064
18065         * ColorDepth.cs: Added attribute.
18066
18067 2004-08-15 17:23  ravindra
18068
18069         * SWF.csproj: Updated project for ToolBar Control.
18070
18071 2004-08-15 17:20  ravindra
18072
18073         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
18074           control and also dos2unix format.
18075
18076 2004-08-15 17:13  ravindra
18077
18078         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
18079           ToolBarButtonClickEventArgs.cs,
18080           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
18081           ToolBarTextAlign.cs: First Implementation of ToolBar control.
18082
18083 2004-08-15 15:31  pbartok
18084
18085         * ButtonBase.cs:
18086           - First (mostly) working version
18087
18088 2004-08-13 16:15  pbartok
18089
18090         * Control.cs:
18091           - Fixed Anchor default
18092
18093 2004-08-13 15:43  pbartok
18094
18095         * Control.cs:
18096           - Changed GetCursorPos signature
18097
18098 2004-08-13 15:42  pbartok
18099
18100         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
18101           - Changed signature for GetCursorPos
18102
18103 2004-08-13 15:25  pbartok
18104
18105         * XplatUIX11.cs:
18106           - Cleanup
18107           - Fixed resizing/exposure handling
18108
18109 2004-08-13 15:22  jordi
18110
18111         * ThemeWin32Classic.cs: removes redundant code and fixes issues
18112           with tickposition
18113
18114 2004-08-13 14:55  jordi
18115
18116         * TrackBar.cs: change from wndproc to events
18117
18118 2004-08-13 13:00  jordi
18119
18120         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18121           XplatUIX11.cs: implements PointToClient (ScreenToClient)
18122
18123 2004-08-13 12:53  pbartok
18124
18125         * XplatUIWin32.cs:
18126           - Changed GetWindowPos to also provide client area size
18127           - Fixed broken prototypes for several win32 functions
18128
18129 2004-08-13 12:53  pbartok
18130
18131         * XplatUI.cs, XplatUIDriver.cs:
18132           - Changed GetWindowPos to also provide client area size
18133
18134 2004-08-13 12:52  pbartok
18135
18136         * XplatUIX11.cs:
18137           - Added generation of WM_POSCHANGED
18138           - Changed GetWindowPos to also provide client area size
18139
18140 2004-08-13 12:52  pbartok
18141
18142         * Control.cs:
18143           - Added Dispose() and destructor
18144           - Fixed resizing and bounds calculation
18145           - Fixed Layout
18146           - Added memory savings for invisible windows
18147
18148 2004-08-13 12:46  jordi
18149
18150         * TrackBar.cs: adds timer and grap window
18151
18152 2004-08-13 10:25  jackson
18153
18154         * Timer.cs: SWF Timer
18155
18156 2004-08-12 16:59  pbartok
18157
18158         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18159           - Implemented method to get current mouse position
18160
18161 2004-08-12 14:29  jordi
18162
18163         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
18164           enhancement, fix mouse problems, highli thumb, etc
18165
18166 2004-08-12 13:31  pbartok
18167
18168         * Control.cs:
18169           - Fixed Anchoring bugs
18170
18171 2004-08-12 13:01  jackson
18172
18173         * StatusBar.cs: Don't forget things
18174
18175 2004-08-12 12:54  jackson
18176
18177         * ThemeWin32Classic.cs: Handle owner draw status bars
18178
18179 2004-08-12 12:54  jackson
18180
18181         * StatusBar.cs: Implement missing properties, events, and methods.
18182           Handle mouse clicking
18183
18184 2004-08-12 10:19  jackson
18185
18186         * StatusBarPanelClickEventArgs.cs,
18187           StatusBarPanelClickEventHandler.cs: Classes for handling status
18188           bar panel click events
18189
18190 2004-08-12 10:10  jackson
18191
18192         * Control.cs: Add missing properties
18193
18194 2004-08-12 09:46  pbartok
18195
18196         * BindingsManagerBase.cs:
18197           - Name changed to BindingManagerBase.cs
18198
18199 2004-08-12 09:25  jordi
18200
18201         * ScrollableControl.cs: calls ctrlbase instead of exeception
18202
18203 2004-08-11 16:28  pbartok
18204
18205         * InputLanguageChangingEventArgs.cs:
18206           - Never check in before compiling. Fixes the last check-in
18207
18208 2004-08-11 16:26  pbartok
18209
18210         * InputLanguageChangingEventArgs.cs:
18211           - More signature fixes
18212
18213 2004-08-11 16:20  pbartok
18214
18215         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
18216           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
18217           ImageListStreamer.cs, InputLanguage.cs,
18218           InputLanguageChangedEventArgs.cs,
18219           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
18220           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
18221           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
18222           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18223           - Signature fixes
18224
18225 2004-08-11 16:16  pbartok
18226
18227         * Application.cs:
18228           - Fixed Signature
18229           - Added .Net 1.1 method
18230
18231 2004-08-11 15:25  pbartok
18232
18233         * SWF.csproj:
18234           - Fixed BindingManagerBase.cs filename
18235
18236 2004-08-11 15:22  pbartok
18237
18238         * BindingManagerBase.cs:
18239           - Was checked in with wrong filename
18240
18241 2004-08-11 14:50  pbartok
18242
18243         * SWF.csproj:
18244           - Updated
18245
18246 2004-08-11 13:41  jordi
18247
18248         * XplatUIWin32.cs: Fixes ClientRect
18249
18250 2004-08-11 13:19  pbartok
18251
18252         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18253           XplatUIX11.cs:
18254           - We had SetWindowPos and MoveWindow to set window positions and
18255             size, removed MoveWindow. We have GetWindowPos, so it made sense to
18256             keep SetWindowPos as matching counterpart
18257           - Added some X11 sanity checking
18258
18259 2004-08-11 12:59  pbartok
18260
18261         * Control.cs:
18262           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
18263             (It seems that SetBounds is just a front for SetBoundsCore and
18264              SetBoundsCore updates the underlying window system and
18265              UpdateBounds is responsible for updating the variables associated
18266              with the Control and sending the events)
18267           - Major cleanup of Size handling; we now have two sizes, client_size
18268             and bounds. Bounds defines the window with decorations, client_size
18269             without them.
18270
18271 2004-08-11 12:55  pbartok
18272
18273         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18274           - Added method to calculate difference between decorated window and
18275             raw client area
18276
18277 2004-08-11 12:54  pbartok
18278
18279         * Label.cs:
18280           - Forcing redraw on resize
18281
18282 2004-08-11 11:43  pbartok
18283
18284         * ImageList.cs:
18285           - Removed disposing of the actual images when the list is disposed
18286
18287 2004-08-11 09:13  pbartok
18288
18289         * Control.cs:
18290           - Now properly reparents windows
18291
18292 2004-08-11 08:37  pbartok
18293
18294         * Control.cs:
18295           - Duh!
18296
18297 2004-08-11 07:47  pbartok
18298
18299         * Control.cs:
18300           - Rewrote the collection stuff. Might not be as fast now, not
18301             keeping the number of children around and accessible directly, but
18302             it's more straightforward
18303
18304 2004-08-11 07:44  pbartok
18305
18306         * AccessibleObject.cs:
18307           - Fixed to match ControlCollection rewrite
18308
18309 2004-08-11 07:43  pbartok
18310
18311         * ImageList.cs:
18312           - Added missing creation of the collection list
18313
18314 2004-08-10 20:08  jackson
18315
18316         * StatusBar.cs: Get the paint message from WndProc
18317
18318 2004-08-10 19:31  jackson
18319
18320         * ThemeWin32Classic.cs: Create Brushes as little as possible
18321
18322 2004-08-10 19:20  jackson
18323
18324         * UICues.cs: Add Flags attribute
18325
18326 2004-08-10 19:19  jackson
18327
18328         * StatusBarPanel.cs: Signature cleanup
18329
18330 2004-08-10 19:10  jackson
18331
18332         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
18333           Initial implementation of status bar item drawing
18334
18335 2004-08-10 17:27  jordi
18336
18337         * TrackBar.cs: add missing methods, properties, and restructure to
18338           hide extra ones
18339
18340 2004-08-10 16:24  jackson
18341
18342         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
18343           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
18344           attribute
18345
18346 2004-08-10 13:21  jordi
18347
18348         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
18349           enhancements and standarize on win colors defaults
18350
18351 2004-08-10 12:52  jackson
18352
18353         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
18354           ThemeWin32Classic.cs: Implement DrawItem functionality
18355
18356 2004-08-10 12:47  jordi
18357
18358         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
18359
18360 2004-08-10 12:32  jordi
18361
18362         * Control.cs: throw ontextchange event
18363
18364 2004-08-10 11:43  pbartok
18365
18366         * Control.cs:
18367           - Added more to the still unfinished Dock/Anchor layout code
18368
18369 2004-08-10 11:39  pbartok
18370
18371         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
18372           - Added GetWindowPos method
18373
18374 2004-08-10 11:36  pbartok
18375
18376         * XplatUIWin32.cs:
18377           - Implemented several methods
18378
18379 2004-08-10 09:47  jackson
18380
18381         * TrackBar.cs: Allow control to handle buffering
18382
18383 2004-08-10 09:41  jackson
18384
18385         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
18386
18387 2004-08-10 09:24  jackson
18388
18389         * Label.cs, LinkLabel.cs: Let Control handle buffering.
18390
18391 2004-08-10 09:09  jackson
18392
18393         * StatusBar.cs: Let Control handle all the buffering.
18394
18395 2004-08-10 09:08  jackson
18396
18397         * Control.cs: Control will now handle the buffering code, so each
18398           control does not have to implement this.
18399
18400 2004-08-10 08:34  jackson
18401
18402         * XplatUIDriver.cs: Use default colors from the theme
18403
18404 2004-08-09 17:12  pbartok
18405
18406         * ImageList.cs:
18407           - Fixed several bugs Ravindra pointed out
18408
18409 2004-08-09 16:11  pbartok
18410
18411         * Control.cs:
18412           - Added incomplete dock layout code
18413           - Added support for mouse wheel
18414
18415 2004-08-09 16:09  pbartok
18416
18417         * XplatUIX11.cs:
18418           - Added handling for middle and right mousebutton
18419           - Added handling for mouse wheel
18420           - Added handling for key state and mouse state and position
18421           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
18422           messages
18423
18424 2004-08-09 15:40  jackson
18425
18426         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
18427           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
18428           checkin
18429
18430 2004-08-09 15:37  jackson
18431
18432         * StatusBar.cs: Initial implementation of StatusBar
18433
18434 2004-08-09 15:36  jackson
18435
18436         * ITheme.cs: Add support for drawing status bar and getting status
18437           bar item sizes
18438
18439 2004-08-09 15:35  pbartok
18440
18441         * MouseButtons.cs:
18442           - Fixed values
18443
18444 2004-08-09 15:34  jackson
18445
18446         * ThemeWin32Classic.cs: Add support for drawing status bar and get
18447           status bar item sizes
18448
18449 2004-08-09 15:21  jackson
18450
18451         * ThemeWin32Classic.cs: Use known colors for default control
18452           colours
18453
18454 2004-08-09 15:12  jackson
18455
18456         * ThemeWin32Classic.cs: Make the default font static, it is static
18457           in control so this doesn't change functionality and creating fonts
18458           is sloooooow.
18459
18460 2004-08-09 14:56  pbartok
18461
18462         * X11Structs.cs:
18463           - Added GrabMode enum
18464
18465 2004-08-09 14:55  pbartok
18466
18467         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18468           - Removed Run method, was only required for initial development
18469
18470 2004-08-09 14:51  pbartok
18471
18472         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
18473           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
18474           capture
18475
18476 2004-08-09 13:48  pbartok
18477
18478         * XplatUIX11.cs:
18479           - Fixed default sizing for child windows
18480
18481 2004-08-09 12:56  pbartok
18482
18483         * XplatUIX11.cs:
18484           - Added generation of WM_DESTROY message
18485           - Added handling of window manager induced shutdown
18486
18487 2004-08-09 11:31  jackson
18488
18489         * ThemeWin32Classic.cs: New names for control properties
18490
18491 2004-08-09 11:25  jackson
18492
18493         * Control.cs: Use new color names
18494
18495 2004-08-09 11:02  jackson
18496
18497         * XplatUI.cs: Get default window properties from the theme
18498
18499 2004-08-09 11:01  jackson
18500
18501         * ITheme.cs: The theme engine now controls default window
18502           properties
18503
18504 2004-08-09 11:00  jackson
18505
18506         * ThemeWin32Classic.cs: Add default window color properties
18507
18508 2004-08-09 10:17  jackson
18509
18510         * ThemeWin32Classic.cs: Use correct default back color
18511
18512 2004-08-09 10:05  jackson
18513
18514         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
18515           the theme now.
18516
18517 2004-08-09 09:56  jackson
18518
18519         * XplatUI.cs: Remove defaults, these are handled by the theme now.
18520
18521 2004-08-09 09:54  jackson
18522
18523         * Control.cs: Get default properties from the theme.
18524
18525 2004-08-09 09:53  jackson
18526
18527         * ITheme.cs: Themes now handle default control properties
18528
18529 2004-08-09 09:53  jackson
18530
18531         * ThemeWin32Classic.cs: Themes now handle default control
18532           properties so coloring will be consistent
18533
18534 2004-08-08 16:54  jordi
18535
18536         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
18537
18538 2004-08-08 15:08  jordi
18539
18540         * XplatUIX11.cs: fixes keyboard crash
18541
18542 2004-08-08 13:47  jordi
18543
18544         * Label.cs: add cvs header info
18545
18546 2004-08-08 12:09  jackson
18547
18548         * ThemeWin32Classic.cs: Add pen_buttonface
18549
18550 2004-08-08 11:52  jordi
18551
18552         * Label.cs, LinkLabel.cs: [no log message]
18553
18554 2004-08-08 11:34  jordi
18555
18556         * ThemeWin32Classic.cs: Use Windows Standard Colours
18557
18558 2004-08-07 17:32  jordi
18559
18560         * TrackBar.cs: throw exceptions of invalid enums values
18561
18562 2004-08-07 17:31  jordi
18563
18564         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
18565           draw method name
18566
18567 2004-08-07 16:56  jackson
18568
18569         * HorizontalAlignment.cs: Initial checkin
18570
18571 2004-08-07 13:16  jordi
18572
18573         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
18574           methods
18575
18576 2004-08-07 13:05  jordi
18577
18578         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
18579           GetSysColor defines
18580
18581 2004-08-06 18:01  pbartok
18582
18583         * ThemeWin32Classic.cs:
18584           - Fixed some rounding issues with float/int
18585
18586 2004-08-06 18:00  jackson
18587
18588         * DockStyle.cs, AnchorStyles.cs:
18589
18590                   Add flags and serializable attributes.
18591
18592 2004-08-06 17:46  pbartok
18593
18594         * XplatUIX11.cs:
18595           - Implemented GetParent
18596
18597 2004-08-06 17:18  pbartok
18598
18599         * TrackBar.cs:
18600           - Fixed some rounding issues with float/int
18601
18602 2004-08-06 17:17  pbartok
18603
18604         * X11Structs.cs, XplatUIX11.cs:
18605           - Fixed Refresh and Invalidate
18606
18607 2004-08-06 15:30  pbartok
18608
18609         * Control.cs, X11Structs.cs, XplatUIX11.cs:
18610           - Fixed recursive loop when resizing
18611           - Improved/fixed redrawing on expose messages
18612
18613 2004-08-06 09:53  jordi
18614
18615         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
18616           keyboard navigation
18617
18618 2004-08-06 08:02  pbartok
18619
18620         * X11Structs.cs, XplatUIX11.cs:
18621           - Fixed reparenting
18622           - Fixed window border creation
18623
18624 2004-08-05 15:38  pbartok
18625
18626         * XplatUIX11.cs:
18627           - Attempted fix for reparenting problems
18628
18629 2004-08-04 15:14  pbartok
18630
18631         * Control.cs:
18632           - Fixed Invalidation bug (calculated wrong client area)
18633           - Added ClientSize setter
18634
18635 2004-08-04 15:13  pbartok
18636
18637         * Form.cs:
18638           - Added AutoScale properties
18639
18640 2004-08-04 15:13  pbartok
18641
18642         * SWF.csproj:
18643           - Added latest files
18644
18645 2004-08-04 14:11  pbartok
18646
18647         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
18648           XplatUIX11.cs:
18649           - Added Invalidate handling
18650
18651 2004-08-03 17:09  jordi
18652
18653         * XplatUIDriver.cs: fixes spelling mistake
18654
18655 2004-07-27 09:53  jordi
18656
18657         * TrackBar.cs: fixes trackbar events, def classname, methods
18658           signature
18659
18660 2004-07-27 09:29  jordi
18661
18662         * ScrollBar.cs: fixes scrollbar events
18663
18664 2004-07-27 04:38  jordi
18665
18666         * Control.cs: changes to be able to run winforms samples
18667
18668 2004-07-26 11:42  jordi
18669
18670         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
18671           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
18672
18673 2004-07-26 05:41  jordi
18674
18675         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
18676           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
18677           implementation
18678
18679 2004-07-22 09:22  jordi
18680
18681         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
18682           check link overlapping, implement events, and fixes
18683
18684 2004-07-21 10:28  jordi
18685
18686         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
18687
18688 2004-07-21 10:19  jordi
18689
18690         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
18691           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
18692           LinkLabelLinkClickedEventArgs.cs,
18693           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
18694           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
18695           implementation
18696
18697 2004-07-19 13:09  jordi
18698
18699         * Control.cs, Label.cs: label control re-written: added missing
18700           functionlity, events, and properties
18701
18702 2004-07-19 10:49  jordi
18703
18704         * Control.cs: fixes SetBounds logic
18705
18706 2004-07-19 01:29  jordi
18707
18708         * Control.cs: Call RefreshWindow only if the window has created
18709
18710 2004-07-15 14:05  pbartok
18711
18712         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
18713           - Implemented ImageList and ImageList.ImageCollection classes
18714           - Added ColorDepth enumeration
18715           - Updated SWF VS.Net project
18716
18717 2004-07-15 11:06  jordi
18718
18719         * XplatUIStructs.cs: added MsgButons enum
18720
18721 2004-07-15 11:03  jordi
18722
18723         * Control.cs: added basic mouse handeling events
18724
18725 2004-07-15 03:38  jordi
18726
18727         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
18728           Vertical TrackBar control implementation
18729
18730 2004-07-13 09:33  jordi
18731
18732         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
18733
18734 2004-07-13 09:31  jordi
18735
18736         * Control.cs, Form.cs: commit: new properties and fixes form size
18737           problems
18738
18739 2004-07-09 14:13  miguel
18740
18741         * ProgressBar.cs: Spelling
18742
18743 2004-07-09 11:25  pbartok
18744
18745         * ProgressBar.cs:
18746           - Removed usage of Rectangle for drawing. Miguel pointed out it's
18747           faster
18748
18749 2004-07-09 11:17  miguel
18750
18751         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
18752
18753                 * ProgressBar.cs: Fixed spelling for `block'
18754
18755                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
18756                 style guidelines.
18757
18758                 Avoid using the += on rect.X, that exposed a bug in the compiler.
18759
18760 2004-07-08 23:21  pbartok
18761
18762         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
18763           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
18764           BaseCollection.cs, Binding.cs, BindingContext.cs,
18765           BindingMemberInfo.cs, BindingsCollection.cs,
18766           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
18767           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
18768           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
18769           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
18770           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
18771           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
18772           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
18773           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
18774           FrameStyle.cs, GiveFeedbackEventArgs.cs,
18775           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
18776           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
18777           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
18778           InputLanguageChangedEventArgs.cs,
18779           InputLanguageChangedEventHandler.cs,
18780           InputLanguageChangingEventArgs.cs,
18781           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
18782           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
18783           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
18784           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
18785           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
18786           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
18787           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
18788           QueryAccessibilityHelpEventArgs.cs,
18789           QueryAccessibilityHelpEventHandler.cs,
18790           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
18791           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
18792           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
18793           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
18794           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
18795           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
18796           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
18797           XplatUIX11.cs, lang.cs:
18798           - Initial check-in
18799