2007-06-12 Jonathan Pobst <monkey@jpobst.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
2
3         * ThreadExceptionDialog.cs: Add 2.0 stuffs.
4
5 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
6
7         * UpDownBase.cs: Add 2.0 stuffs.
8
9 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
10
11         * NumericUpDown.cs: Add 2.0 stuffs.
12
13 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
14
15         * NotfiyIcon.cs: Add MouseDoubleClick event, hook up MouseClick event.
16
17 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
18
19         * ErrorProvider.cs: Implement 2.0 stuffs.
20
21 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
22
23         * DomainUpDown.cs: Implement 2.0 stuffs.
24
25 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
26
27         * CheckedListBox.cs: Fix RefreshItems signature.
28
29 2007-06-12  Jonathan Pobst  <monkey@jpobst.com>
30
31         * PictureBox.cs: Implement 2.0 stuffs.
32
33 2007-06-12  Andreia Gaita  <avidigal@novell.com>
34         
35         * TabControl.cs: Check if there are tabpages before checking
36         the selected index - fix #81802 (font changes raise a ResizeTabs
37         call on controls.add, which blew up nicely with no tabpages)
38
39 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
40
41         * ListView.cs:
42         * ListViewItem.cs: Implement 2.0 ItemSelectionChanged event.
43
44 2007-06-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
45
46         * ListView.cs:
47         * ListViewItem.cs: In VirtualMode the selection information
48         resides in the ListView, rather than in the Items. Also, throw
49         InvalidOperationExceptions when VirtualMode is being used and
50         CheckedItemCollection is accessed.
51
52 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
53
54         * ComboBox.cs: Add ScaleControl.
55
56 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
57
58         * ButtonBase.cs: ButtonBaseAccessibleObject.State should not be visible to 1.1.
59
60 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
61
62         * GroupBox.cs: Add 2.0 stuffs.
63
64 2007-06-08  Jonathan Pobst  <monkey@jpobst.com>
65
66         * Panel.cs: Add autosize properties/event.
67
68 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
69
70         * Control.cs:
71         - When we remove a control, remove it from the collection before performing the layout.
72         - Setup an internal property for explicit_bounds.
73         - Don't let the UpdateBounds in CreateHandle overwrite our explicit bounds.
74         - Perform a layout when we set a new AutoSizeMode.
75
76 2007-06-07  Jonathan Pobst  <monkey@jpobst.com>
77
78         * ScrollableControl.cs: Add 2.0 stuffs.
79
80 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
81
82         * ScrollBar.cs: Add 2.0 stuffs.
83
84 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
85
86         * Splitter.cs: Add 2.0 stuffs.
87
88 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
89
90         * SplitContainer.cs: Apply patch from Neil Cawse <neilcawse@geotab.com>
91         to have BindingContext simply use base implementation.
92
93 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
94
95         * ColumnHeader.cs: corcompare fix.
96
97 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
98
99         * Button.cs: corcompare fixes.
100         * ButtonBase.cs: corcompare fixes, add ButtonBaseAccessibleObject.State.
101
102 2007-06-06  Jonathan Pobst  <monkey@jpobst.com>
103
104         * Button.cs: Override GetPreferredSizeCore.
105         * ButtonBase.cs: PerformLayout after changing properties that can affect
106         AutoSize.  Simplify some mouse/keyboard code.
107         * Control.cs: PerformLayout after changing Padding if AutoSize = true.
108         * MouseEventArgs.cs: Make Location internal for 1.1.
109         * TextRenderer.cs: Make MeasureTextInternal (string, Font, bool) internal for 1.1.
110         * Theme.cs: Add CalculateButtonAutoSize.
111         * ThemeWin32Classic.cs: Implement CalculateButtonAutoSize.
112
113 2007-06-05  Miguel de Icaza  <miguel@novell.com>
114
115         * TreeNodeCollection.cs: Applied patch from Neil Cawse <neilcawse@geotab.com>
116
117 2007-06-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
118
119         * ListViewItem.cs: We can't cache Bounds in VirtualMode 
120         since we can get different item instances every time we retrieve it.
121
122 2007-06-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
123
124         * ListView.cs: Work around for #81602, since an unkown an pretty
125         infrequent condition appears only in some systems (old linux boxes, it
126         seems).
127
128 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
129
130         * Button.cs: Completely reformat and a little refactor to bring
131         this closer to Mono circa 2007.
132
133 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
134
135         * CheckBox.cs, Form.cs, RadioButton.cs: Change call to ButtonBase.Redraw
136         to be ButtonBase.Invalidate.
137
138 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
139
140         * ButtonBase.cs: GetPreferredSize is 2.0 only.  Fixes build.
141
142 2007-06-04  Jonathan Pobst  <monkey@jpobst.com>
143
144         * ButtonBase.cs: Completely reformat and a little refactor to bring
145         this closer to Mono circa 2007.
146
147 2007-06-01  Everaldo Canuto  <ecanuto@novell.com>
148
149         * Label.cs: Fixes preferred sizes for 2.0 profile, also adjust some
150         values for autosize. Fixes #80137.
151
152 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
153
154         * Control.cs: Don't perform layout when AutoSize changes.
155         * Form.cs: Perform layout in AutoSize override.  Don't set ClientSize
156         directly when autosizing, use SetBounds with BoundsSpecified.None.
157         Fixes unit tests my last commit broke.
158
159 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
160
161         * Control.cs: Perform layout when AutoSize changes.
162         * Form.cs: Implement AutoSizing.
163
164 2007-06-01  Chris Toshok  <toshok@ximian.com>
165
166         * DataGrid.cs: remove the XXX'ed check at the top of
167         ProcessGridKey.  fixes #80464.
168
169 2007-06-01  Chris Toshok  <toshok@ximian.com>
170
171         * DataGridTextBoxColumn.cs: TextBox.TextChanged event handler
172         adding idempotent (add/remove in Edit()), and also make sure we
173         don't add it until after we set the text, so it's not tripped in
174         Edit().  Fixes unit test regression.
175
176 2007-06-01  Jonathan Pobst  <monkey@jpobst.com>
177
178         * Control.cs: In UpdateBounds, only recalculate anchor distances if the
179         change is user explicit, not when the layout engine moves stuff.  Fixes
180         anchoring to bottom and right.  [Fixes bug #81790]
181
182 2007-06-01  Andreia Gaita  <avidigal@novell.com>
183
184         * PrintDialog.cs: Add collation preview thumbnails. Fixes #80726.
185
186 2007-06-01  Andreia Gaita  <avidigal@novell.com>
187
188         * ContainerControl.cs: 
189         Fire enter event for common ancestor if it is not a ContainerControl.
190         Send focus to the active_control and not the 'value', the active 
191         control might have been changed in one of the events fired.     
192         Definitely fixes #80159.
193
194 2007-06-01  Andreia Gaita  <avidigal@novell.com>
195
196         * DataGrid.cs: Finish editing when focus leave the datagrid. Fixes #80159.
197
198 2007-06-01  Rolf Bjarne Kvinge <RKvinge@novell.com> 
199
200         * PropertyGrid.cs: Anchor the help description to the bottom of the
201           help panel and refactor SelectGridItem into a
202           SelectGridItemInternal that can be set to null (and update it to
203           clear the help texts when it is set to null). Set root item to null
204           when there's no SelectedObject. Fixes #80438.
205         * ScrollableControl.cs: In Recalculate we need to ResumeLayout(true)
206           when we're recalculating after a resize (only).
207
208 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
209
210         * ListView.cs: Implement 2.0 RedrawItems method.
211
212 2007-05-31  Carlos Alberto Cortez <calberto.cortez@gmail.com>
213
214         * ListControl.cs: Disconnect PositionChanged and ItemChanged
215         handlers from previous data manager when DataSource is set to
216         null. Fixes #81771.
217
218 2007-05-31  Jackson Harper  <jackson@ximian.com>
219
220         * TextBoxBase.cs: These seem to be the correct values.
221
222 2007-05-31  Everaldo Canuto  <ecanuto@novell.com>
223
224         * FileDialog.cs: When close dialog with ok set filterindex using combobox
225         value. Fixes #81784.
226
227 2007-05-31  Jonathan Pobst  <monkey@jpobst.com>
228
229         * Control.cs: Implement 2.0 scaling methods.
230
231 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
232
233         * ProgressBar.cs, WebBrowserBase.cs, Control.cs, MaskedTextBox.cs,
234           MessageBox.cs, PropertyGrid.cs, RichTextBox.cs: Fix warnings and
235           corcompare issues.
236
237 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
238
239         * ProgressBar.cs: Implemented missing 2.0 members.
240
241 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
242
243         * Control.cs: Corcompare issues.
244         * MessageBox.cs: Implemented missing 2.0 functions.
245
246 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
247
248         * CheckedListBox.cs, ListBox.cs, ListControl.cs, ComboBox.cs:
249           Implemented more 2.0 members.
250
251 2007-05-31  Rolf Bjarne Kvinge <RKvinge@novell.com> 
252
253         * Application.cs: Try to avoid NRE when Assembly.GetEntryAssembly is
254           null (strange, but it seems to happen when running unit tests).
255
256 2007-05-30  Andreia Gaita  <avidigal@novell.com>
257
258         * ContainerControl.cs: Set active_control even earlier, before 
259         firing any events, and undo it if validation returns false.
260
261 2007-05-30  Andreia Gaita  <avidigal@novell.com>
262
263         * ContainerControl.cs: Raise Validation and Enter/Leave events
264         even if there is no Form and set active_control earlier, just
265         before firing Enter events (toshok's patches). Fixes #80647.
266
267 2007-05-30  Jackson Harper  <jackson@ximian.com>
268
269         * TextControl.cs: Redid the pageup/pagedown a little to simplify
270         things and fix bug #81311.
271
272 2007-05-30  Jackson Harper  <jackson@ximian.com>
273
274         * X11Dnd.cs: Now that we have our own event loop, we need to
275         cancel when we get a mouseup but it won't be accepted.
276
277 2007-05-30  Chris Toshok  <toshok@ximian.com>
278
279         * DataGrid.cs (set_CurrentCell): guard against negative
280         column/row.
281
282         * DataGridColumnStyle.cs (CheckValidDataSource): just use the
283         array index syntax instead of looping over the property names.
284
285         * DataGridTextBoxColumn.cs: add a changed handler on the textbox,
286         and set IsInEditOrNavigateMode to false there.
287
288 2007-05-30  Jackson Harper  <jackson@ximian.com>
289
290         * TreeView.cs: Make sure we don't get a bad visible order when
291         setting to the top node.  Fixes some misc crashing in
292         ControlInspector.
293
294 2007-05-30  Andreia Gaita  <avidigal@novell.com>
295
296         * UserControl.cs: Add 2.0 AutoSizeMode
297
298 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
299
300         * DataGridTextBoxColumn.cs: Fix textbox horizontal offset.
301
302 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
303
304         * DataGridTextBoxColumn.cs: Fix textbox position to prevent override grid
305         lines. Fixes #80285. 
306
307 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
308
309         * DataGridColumnStyle.cs: Add char trimming column header text format. 
310
311 2007-05-29  Everaldo Canuto  <ecanuto@novell.com>
312
313         * DataGridColumnStyle.cs: Fix grid header arrow drawing over column name. 
314         Fixes #80147.
315
316 2007-05-29  Jackson Harper  <jackson@ximian.com>
317
318         * TreeNode.cs: Fix off by one on calculating whether or not a node
319         is visible.
320
321 2007-05-29  Jonathan Pobst  <monkey@jpobst.com>
322
323         * Control.cs: ResumeLayout(false) should recalculate anchor distances.
324         * ScrollableControl.cs: Force an UpdateDistances when we move the
325         scrollbars.
326         [Fixes bug #80605]
327
328 2007-05-29  Andreia Gaita  <avidigal@novell.com>
329
330         * PageSetupDialog.cs: Fix #80728 - Changing the printer doesn't
331         update the page setup screen.
332
333 2007-05-29  Andreia Gaita  <avidigal@novell.com>
334
335         * PageSetupDialog.cs: Fix landscape mode.
336
337 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
338
339         * SystemInformation.cs: Add 2.0 IconSizeVerticalSpacing and
340         IconSizeHorizontalSpacing.
341
342 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
343
344         * ListView.cs: The declaration of prev_tooltip_item should be inside
345         a NET_2_0 conditional (avoid a warning).
346
347 2007-05-28  Andreia Gaita  <avidigal@novell.com>
348
349         * PageSetupDialog.cs: Implement PrintPreview control to display
350         the preview thumbnail. Change unit conversion to use 
351         PrinterUnitConvert methods.
352         
353         Note: there is a huge bug in ms.net where the default margins are 
354         interpreted as centimeters (?), when in fact they are set in inches. When 
355         loading the page setup dialog initially (ms.net), the default margins 
356         are set to 1 inch, and the dialog shows them with value 10, when in fact 
357         it should be 25 (properly converted). Our dialog doesn't have this bug.
358         
359         * Theme.cs, ThemeWin32Classic.cs: Add a CPDrawBorder override for 
360         RectangleF.
361         * ControlPaint.cs: Add a DrawBorder internal method for RectangleF.
362
363 2007-05-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
364
365         * ListView.cs:
366         * ListViewItem.cs: Implement 2.0 ToolTipText support for listview
367         items.
368
369 2007-05-28  Andreia Gaita  <avidigal@novell.com>
370
371         * X11Dnd.cs: A direct cast to VirtualKeys is not allowed from
372         an IntPtr on csc (it builds fine on mcs, could it be a compiler
373         bug?), convert the ptr to Int32 first.
374
375 2007-05-28  Jackson Harper  <jackson@ximian.com>
376
377         * X11Dnd.cs: Add a timer, so after drop, if a finish is not
378         recieved, we will exit the dnd tracking loop.
379
380 2007-05-28  Jackson Harper  <jackson@ximian.com>
381
382         * X11Dnd.cs: Keep tracking until the xdnd finished event is
383         recieved. TODO: I should probably stick a timer on the dropped
384         event, and finish the drag if the XDND Finished event never shows
385         (because some apps don't seem to send it).
386
387 2007-05-28  Everaldo Canuto  <ecanuto@novell.com>
388
389         * ToolBar.cs: Fix toolbar default width for button with image. Fixes
390         #81733.
391
392 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
393
394         * MonthCalendar.cs: Only mark the keypresses we actually handle as
395           handled.
396
397 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
398
399         * MonthCalendar.cs: Set the size after initializing all the relevant
400           variables. Fixes #81742.
401
402 2007-05-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
403
404         * KeyEventArgs.cs: Fix typo.
405
406 2007-05-28  Gert Driesen  <drieseng@users.sourceforge.net>
407
408         * DateTimePicker.cs: Changed exceptions thrown by MinDate and MaxDate
409         to match MS. Fixed MinDate to only accept value less than or equal
410         to MaxDate on 2.0 profile and less than MaxDate on 1.0 profile.
411         Removed TODO's that are now verified by unit tests.
412
413 2007-05-27  Gert Driesen  <drieseng@users.sourceforge.net>
414
415         * TreeNodeCollection.cs: Minor corrections to exceptions to match
416         MS.
417
418 2007-05-25  Jackson Harper  <jackson@ximian.com>
419
420         * X11Dnd.cs: Rework to make StartDrag a blocking call that runs
421         it's own message loop.
422         * XplatUIX11.cs: Remove some of the dnd hooks
423
424 2007-05-25  Gert Driesen  <drieseng@users.sourceforge.net>
425
426         * XplatUIX11.cs: Change MinimumWindowSize to {Width=0,Height=0}
427         instead of MinimizedWindowSize.
428
429 2007-05-25  Jackson Harper  <jackson@ximian.com>
430
431         * TextBoxBase.cs: Raise textchanged when cutting and pasting text.
432
433 2007-05-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
434
435         * KeyEventArgs.cs: Added SuppressKeyPress.
436         * Control.cs: Added support for SuppressKeyPress.
437
438 2007-05-24  Andreia Gaita  <avidigal@novell.com>
439
440         * NumericUpDown.cs: Refactor code to fix regressions on #79950 and
441         problems with PieChart. suppress_validation should not be a counter,
442         if there are several BeginInit calls, the first EndInit will 
443         activate validation. Fix exceptions thrown by set_Value.
444         * UpDownBase.cs: ValidateText only if it's the user editing it.
445
446 2007-05-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
447
448         * ListControl.cs: FilterItemOnProperty should return the filtered
449         item proeprty even if DataSource is null. The same applies for
450         GetItemText. Fixes #80427.
451
452 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
453
454         * Control.cs: If a control doesn't have a parent when it's Dock is
455         set, but it has children, it needs to do a layout.  Fixes some nested
456         controls issues.  [Fixes bug #81199]
457
458 2007-05-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
459
460         * ComboBox.cs: If there are few items in the drop down list, make it
461           the exact size the items need, no bigger. Fixes #81612.
462
463 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
464
465         * Application.cs: When we have captured the keyboard for a menu,
466         check for mouse down events in case we need to close the menu.
467         * Control.cs, Form.cs: Remove mouse down checks for menus.
468
469 2007-05-24  Jackson Harper  <jackson@ximian.com>
470
471         * TextControl.cs: Handle tabs in non multiline mode a little
472         differently.
473
474 2007-05-24  Jackson Harper  <jackson@ximian.com>
475
476         * TextControl.cs: We need to manually break apart tabbed text and
477         move the tabs, since the system.drawing tabbing mechanism relies
478         on tab stops.
479         * TextBoxBase.cs: Move the caret properly when the user enters a
480         tab.
481
482 2007-05-24  Jonathan Pobst  <monkey@jpobst.com>
483
484         * ContainerControl.cs: Don't check CanSelect before calling
485         ProcessMnemonic.
486         * ToolStrip.cs: Only do implicit mnemonics on MenuStrips.  Don't
487         release a KeyboardActive on click if it's not ours.
488
489 2007-05-23  Andreia Gaita  <avidigal@novell.com>
490
491         * ColumnHeader.cs: Add TypeConverter
492
493 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
494
495         * LinkLabel.cs: Implement LinkCollection.Add with Link parameter (2.0).
496
497 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
498
499         * LinkLabelLinkClickedEventArgs.cs, LinkLabel.cs: Implement Button property.
500
501 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
502
503         * LinkLabel.cs: Implement public Padding property.
504
505 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
506
507         * LinkLabel.cs: Implement public FlatStyle.
508
509 2007-05-23  Jonathan Pobst  <monkey@jpobst.com>
510
511         * Control.cs: Apply patch from George to call parent.PerformLayout
512         when Visible is changed.  [Fixes bugs #81118, 81718]
513
514 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
515
516         * MainMenu.cs, MenuAPI.cs: Implement Collapse event for MainMenu (2.0).
517
518 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
519
520         * ContextMenu.cs: Implement ProcessCmdKey with control parameter.
521
522 2007-05-23  Everaldo Canuto  <ecanuto@novell.com>
523
524         * ContextMenu.cs: Implement Collapse.
525
526 2007-05-23  Rolf Bjarne Kvinge <RKvinge@novell.com>
527
528         * ToolBarButton.cs: Implement Name.
529
530 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
531
532         * ToolBar.cs: Fix OnButtonDropDown to save item used in dropdown instead of
533         use current_item, it prevents some NRE. Fixes #81675.  
534
535 2007-05-22  Andreia Gaita  <avidigal@novell.com>
536
537         * NumericUpDown.cs: Fix PieChart by not returning from UpdateEditText
538         without updating the text.
539
540 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
541
542         * XplatUIWin32.cs: Plug a GDI leak caused by calling Font.ToHfont ()
543         without calling DeleteObject.  [Should fix bug #81709]
544
545 2007-05-22  Jackson Harper  <jackson@ximian.com>
546
547         * RichTextBox.cs: Set the line endings correctly, when flushing
548         RTF text.
549
550 2007-05-22  Gert Driesen  <drieseng@users.sourceforge.net>
551
552         * XplatUIX11.cs: MinimumWindowSize on X11 is actually
553          {Width=0,Height=0}.
554
555 2007-05-22  Jackson Harper  <jackson@ximian.com>
556
557         * TreeView.cs: Setting top with a null node should set to the very
558         top.
559
560 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
561
562         * Form.cs: ShowDialog: destroy the handle when message loop is
563           finished, matches MS behaviour. Refactor parts of WmClose into
564           RaiseCloseEvents, that only raises events if they haven't already
565           been raised. Fixes #81688 and #81521.
566         * Application.cs: Don't call close on the form when exiting a modal
567           loop, it will raise all the (Form)Closed/Closing events again if
568           WM_CLOSE has been sent earlier on, instead call RaiseCloseEvent,
569           which doesn'r raise any events it they have been raised before.
570
571 2007-05-22  Jonathan Pobst  <monkey@jpobst.com>
572
573         * Control.cs: Add OnPrint.
574         * ToolStrip.cs: Add GetChildAtPoint.
575         * ToolStripContainer.cs: Add OnRightToLeftChanged.
576         * ToolStripRenderer.cs: Make CreateMirrorImage internal.
577
578 2007-05-22  Everaldo Canuto  <ecanuto@novell.com>
579
580         * MenuAPI.cs: Prevent context menu to be typed as MainMenu. Fixes #81509.  
581
582 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
583
584         * InternalWindowManager.cs: ToolTipShow: Don't show tooltip if the form
585           isn't visible anymore. Fixes #81651.
586
587 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
588
589         * Control.cs: WmShowWindow: Update children's z-order after setting
590           their parent. SetParent may show the window, thereby corrupting
591           z-order, since the window will be shown on top.
592         * XplatUIWin32.cs: SetParent: don't call SetVisible on forms. Prevents
593           multiple (and redundant) WM_SHOWWINDOW messages.
594         * MdiWindowManager.cs: RaiseDeactivate: only raise after an Activate
595           event has already been raised.
596         * Form.cs: Change is_changing_visible_state to a counter, since
597           SetVisibleCore can be called recursively. CreateHandle: when
598           creating mdi children, send (De)Activated events.
599         * MdiClient.cs: Update use of is_changing_visible_state.
600         * Application.cs: OnThreadException: Surround exception handling with
601           try/finally to ensure we always reset the error-handling state
602           before leaving.
603
604 2007-05-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
605
606         * ThemeWin32Classic.cs: DrawProgressBar: Avoid a DivideByZero exception
607           (#81704).
608
609 2007-05-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
610
611         * ListView.cs: Use Theme.ListViewHorizontalSpacing for List and
612         SmallIcon views, now that we have a standarized horizontal spacing.
613
614         * ThemeWin32Classic.cs: ListViewHorizontalSpacing now has a value of
615         4, just like the other views (Match .Net).
616
617 2007-05-21  Jonathan Pobst  <monkey@jpobst.com>
618
619         * Control.cs: Delay calculating anchor distances until we actually layout.
620         Always query the WM for the actual size and location it put us at instead of
621         only when we send negative values.
622         [Fixes bugs #81694, 81695]
623
624 2007-05-21  Rolf Bjarne Kvinge <RKvinge@novell.com> 
625
626         * Application.cs: Avoid a possible stack overflow when trying to exit
627           the application.
628
629 2007-05-19  Marek Safar  <marek.safar@gmail.com>
630
631         * Theme.cs (GetHatchBrush): A key uses internal value instead of formated
632         enum value.
633
634 2007-05-19  Andreia Gaita  <avidigal@novell.com>
635
636         * NumericUpDown.cs: Added 2.0 methods (spin acceleration)
637         * NumericUpDownAcceleration.cs, 
638           NumericUpDownAccelerationCollection.cs: Added 2.0
639           implementation.
640
641 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
642
643         * RichTextBox.cs: Recalculate the document after the ScrollBars
644         property is changed. Fixes bug #81681.
645
646 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
647
648         * DataObject.cs: Implement 2.0 methods.
649
650 2007-05-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
651
652         * ThemeWin32Classic.cs: Draw the check marks in ListViewItems
653         in the center of the checkbox, not in the left-top corner. 
654         Fixes #80037.
655
656 2007-05-18  Jackson Harper  <jackson@ximian.com>
657
658         * RichTextBox.cs: Recalculate the document after the scrollbars
659         property is changed.
660         * TextBoxBase.cs: ScrollBars is not a flags enum...This fixes
661         81486.
662
663 2007-05-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
664
665         * CreateParams.cs: Make HasWindowManager marginally faster.
666         * XplatUIX11.cs, Hwnd.cs: CreateWindow: Move the default location code
667           into Hwnd so that other drivers can use it as well.
668         * XplatUIWin32.cs: CreateWindow: If the window has a window manager get
669           the default location from Hwnd. Fixes MDI client windows always
670           showing up at (0,0) in Windows (Win32 won't set the default
671           location since the window styles aren't correct).
672
673 2007-05-18  Gert Driesen  <drieseng@users.sourceforge.net>
674
675         * TreeView.cs: Modified DoubleBuffered to just use the base
676         implementation.
677
678 2007-05-18  Jackson Harper  <jackson@ximian.com>
679
680         * TreeView.cs: Set the top node to the last child node when
681         expanding all
682         - When we get focus, if there is no selected node, use the top
683         node.
684
685 2007-05-18  Jonathan Pobst  <monkey@jpobst.com>
686
687         * KeysConverter.cs: Add CanConvertTo.
688         * LinkLabel.cs: Add some 2.0 constructors and properties to LinkLabel.Link.
689         * LinkConverter.cs: Added.
690
691 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
692
693         * Cursor.cs: Apply Sebastien patch from #81669 to open file in read mode,
694         it prevents error when file dont have write access. Fixes #81669 and #81667.  
695
696 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
697
698         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw toolbar 
699         button text. Fixes #79640.  
700
701 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
702
703         * Control.cs: According to MSDN controls created in the designer theres 
704         keyboard accelerators visible by default. So included check for design
705         in ShowKeyboardCuesInternal.  
706
707 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
708
709         * ThemeWin32Classic.cs: Check for ShowKeyboardCues true when draw combobox 
710         text. Fixes #81621.  
711
712 2007-05-18  Everaldo Canuto  <ecanuto@novell.com>
713
714         * Control.cs: ShowKeyboardCuesInternal add to expose ShowKeyboardCues
715         for 1.0, becuse ShowKeyboardCues is protected on 1.0.  
716
717 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
718
719         * Control.cs: Finish implementation of UI State using WmChangeUIState
720         to send WM_UPDATEUISTATE to all child controls. Some hack will be needed
721         in some controls to check for show_keyboard_cues to draw accell keys "_".  
722
723 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
724
725         * ListBox.cs: When calculating the horizontal scrollbar
726         in single column mode, don't use values less than 0 for
727         Maximum. Fixes #81474.
728
729 2007-05-17  Carlos Alberto Cortez <calberto.cortez@gmail.com>
730
731         * ListBox.cs: Throw the some missing exceptions in
732         ListBox.ObjectCollection methods.
733
734 2007-05-17  Jackson Harper  <jackson@ximian.com>
735
736         * TextBoxBase.cs: Recalculate the document when the word wrap
737         value has changed. This fixes 81488.
738
739 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
740
741         * Clipboard.cs: Implement missing GetText overload.
742
743 2007-05-17  Chris Toshok  <toshok@ximian.com>
744
745         * Control.cs (CheckDataBindings): remove the binding_context arg
746         to binding.Check.
747
748         * CurrencyManager.cs (OnItemChanged): fix this now that
749         BindingManagerBase is fixed. also remove the comment telling where
750         the fix should go.  We set transfering_data to true/false around
751         the call to PushData to keep UpdateIsBinding from being called.
752         (ListChangedHandler): remove the extra OnMetaDataChanged call for
753         PropertyDescriptorAdded in the 1.1 case.  The extra call is
754         actually generated by System.Data generating 2 metadata changed
755         events of its own per column add.  The fix should go there.  Add a
756         comment to that affect in our test's Assert.Ignore.
757
758         * BindingManagerBase.cs: Rework PullData and PushData slightly.
759         we keep a boolean flag (transfering_data) that keeps us from
760         calling UpdateIsBinding multiple times if we re-enter either of
761         them.
762
763         * ControlBindingsCollection.cs (AddCore): remove the
764         binding_context arg to binding.Check.
765
766         * Binding.cs (IsBinding): don't check if we're binding here, just
767         return our cached value.  we update it in UpdateIsBinding.
768         (Check): don't take the binding_context arg, we'll just use our
769         control's.  Also, for some reason MS doesn't use the data member
770         field when getting the bindingmanager for this binding.  it just
771         uses the datasource.  Make this method callable multiple times,
772         and only do the is_null_desc stuff if manager.Position != -1 (so
773         we don't get an exception accessing manager.Current).
774         (UpdateIsBinding): move the code from IsBinding here.
775         (PositionChangedHandler): call Check here to we can initialize
776         things that require a non- -1 position.
777
778 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
779
780         * Form.cs: When alt keys is pressed send WM_CHANGEUISTATE to top level
781         control.
782
783 2007-05-17  Andreia Gaita  <avidigal@novell.com>
784
785         * TabControl.cs: Add 2.0 methods and events, including
786         OnEnter / OnLeave and raises it for tabpages (fixes #79869)
787         * TabPage.cs: Add 2.0 methods
788
789 2007-05-17  Everaldo Canuto  <ecanuto@novell.com>
790
791         * Control.cs: Implement WmUpdateUIState, show_focus_cues and
792         keyboard_cues is properly handled by message method.  
793
794 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
795
796         * TreeViewImageIndexConverter.cs: Add 2.0 methods.
797
798 2007-05-17  Jonathan Pobst  <monkey@jpobst.com>
799
800         * ToolStripTextBox.cs: Wire up new 2.0 Textbox methods/properties.
801
802 2007-05-16  Everaldo Canuto  <ecanuto@novell.com>
803
804         * Control.cs: 
805         - WmUpdateUIState added to handle state changes, it make call to
806         OnChangeUICues event.
807         - Fixed ShowKeyboardCues to check for MenuAccessKeysUnderlined in
808         SystemInformation.
809
810 2007-05-16  Jonathan Pobst  <monkey@jpobst.com>
811
812         * ImageKeyConverter.cs: Added.
813         * TreeViewImageKeyConverter.cs: Added.
814
815 2007-05-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
816         
817         * ToolTips.cs: Update Text if SetToolTip is called for a control
818         already showing the tooltip, as well as restarting its timer; show
819         tooltip if we are inside the control bounds by the time of calling
820         SetToolTip. Inside ShowTooltip remove the check to not show the 
821         tooltip again for the active control (it is allowed by .Net to 
822         show the tooltip on the same control multiple times).
823
824 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
825
826         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
827
828 2007-05-16  Andreia Gaita <avidigal@novell.com> 
829
830         * ContainerControl.cs: only process tab key if there are no 
831         modifier keys present, otherwise the control does the 
832         tab processing, if it needs to. Fixes #81622
833         * TabControl.cs: Fixes calculation for which tab to select on
834         shift+ctrl+tab.
835
836 2007-05-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
837
838         * MaskedTextBox.cs: Small fix for Text that fixes a broken test.
839
840 2007-05-15  Jonathan Pobst  <monkey@jpobst.com>
841
842         * Control.cs: Make IsInputCharInternal to allow controls to
843         override it and still match MS API.
844         * TextBoxBase.cs: Override IsInputCharInternal and always
845         return true.
846         [Fixes bug #81616]
847
848 2007-05-15  Jackson Harper  <jackson@ximian.com>
849
850         * TextBox.cs: Disable some of the menu options when using a
851         readonly textbox.
852
853 2007-05-15  Jackson Harper  <jackson@ximian.com>
854
855         * TextBox.cs:
856         * TextBoxBase.cs:
857         * RichTextBox.cs: Some new 2.0 methods
858
859 2007-05-15  Gert Driesen  <drieseng@users.sourceforge.net>
860
861         * FileDialog.cs: On 1.0 profile, do not support multidotted 
862         extensions.
863
864 2007-05-14  Jackson Harper  <jackson@ximian.com>
865
866         * TextBoxBase.cs: Implement some of the new 2.0 methods.
867         * RichTextBox.cs: We need to override these methods on 2.0.
868         * MaskedTextBox.cs: These are implemented now
869         * TextControl.cs: This was off by one.
870
871 2007-05-14  Jackson Harper  <jackson@ximian.com>
872
873         * TextControl.cs: Because the line endings are including in the
874         text, we don't need to add them in anymore.
875
876 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
877
878         * ToolBar.cs: Fix autosize and get it working only after hadle is created,
879         also prevent redraw in set_autosize if handle is not created. Fixes #81523.
880
881 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
882
883         * ToolBar.cs: Adjust size to default size when button theres no text and
884         image, it fixes remaining issues from #81524.
885
886 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
887
888         * ToolBar.cs: 
889         - When not flat call redraw to recalculate sizes on creare handle to match
890         win32 behavior.
891         - Revert 77220 because it causes some regressions in toobar
892         button.
893
894 2007-05-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
895
896         * MaskedTextBox.cs: Update the base text whenever the text changes. MTB
897           now actually enters a usable state.
898
899 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
900
901         * ToolBar.cs: Check for handle created in redraw to prevent unneeded size
902         calculations, it reduces the size cauculation from 7 to 3 on a toolbar with
903         3 buttons.
904
905 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
906
907         * ToolBar.cs: Save default_size on create handle to use later for buttons
908         without text, needed to mimic win32 behavior.
909
910 2007-05-11  Everaldo Canuto  <everaldo@simios.org>
911
912         * ToolBar.cs: Fix button layour to best fit width or height according to
913         vertical or not. Fixes #81524.
914
915 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
916
917         * ToolBarButton.cs: When change style call ToolBar.Redraw to update
918         toolbar size info because different styles theres different sizes.
919         Fixes #81522.
920
921 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
922
923         * ThemeWinClassic.cs: For .Net 2.0 don't draw any image
924         if we are using checkboxes, checked is true, and we have less
925         than two images in StateImageList; for the 1.1 in the same scenario
926         draw the first image if we have at least one image in StateImageList.
927         Fixes part of #81191.
928
929 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
930
931         * ToolStrip.cs, ToolStripManager.cs: We need to remove items from
932         the owner's Items collection on merge.
933
934 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
935
936         * ToolStrip.cs: Use new internal ToolStripItemCollection constructor.
937         * ToolStripItemCollection.cs: Lots of fixes to when events get called
938         and parent/owner gets changed based on gert's unit tests.
939
940 2007-05-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
941
942         * MaskedTextBox.cs: Started implementing parts of it.
943
944 2007-05-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
945
946         * ListView.cs: When clicking the checkbox on the items
947         take into account the double clicks even if we have only
948         one image in StateImageList (only for 1.0/1.1). Also 
949         generate an extra change of checked state when we receive
950         the second click on checkbox (match .Net behaviour). 
951         Fixes part of #81191.
952
953 2007-05-10  Everaldo Canuto  <everaldo@simios.org>
954
955         * ThemeWin32Classic.cs: Fix text rectangles in Tooltips.
956
957 2007-05-10  Jonathan Pobst  <monkey@jpobst.com>
958
959         * Form.cs: Move some of OnLoad to OnLoadInternal so it gets called
960         even if OnLoad is overriden and base.OnLoad is not called.
961         [Fixes bug #81582]
962
963 2007-05-10  Andreia Gaita  <avidigal@novell.com>
964
965         * TableLayoutSettings.cs: A big doh! fix and bowing down of head in 
966         shame. (I blame my ever-persisting and annoying cold)
967
968 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
969
970         * ListView.cs: Don't eat navigation keys.  Let them flow through to
971         KeyDown/KeyPress routines.  [Fixes bug #81569]
972
973 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
974
975         * ListView.cs: When handling keys for selecting the item based off
976         keyboard input, do not consider keys pressed with Alt or Control.  Also,
977         correctly handle keys when the Shift key is down. [Fixes bug #81578]
978
979 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
980
981         * Control.cs: When using UseWaitCursor, we have to store the requested
982         Cursor to use when UseWaitCursor is turned off.
983
984 2007-05-09  Jonathan Pobst  <monkey@jpobst.com>
985
986         * Control.cs: Implement PreProcessControlMessage.  Default IsInputChar
987         to false.
988         * Application.cs: Use PreProcessControlMessage instead of
989         PreProcessMessage.
990         * PreProcessControlMessage.cs: Make internal for 1.1.
991
992 2007-05-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
993
994         * Control.cs: Add InternalContains focus property, which hast the same
995         functionality of ContainsFocus, but also including implicit controls.
996         * ListViewItem.cs: Use InternalContainsFocus instead of ContainsFocus,
997         since we need to know if the focus is contained in our implicit
998         ItemControl when calculating Layout. Fixes part of #80888.
999
1000 2007-05-08  Everaldo Canuto  <everaldo@simios.org>
1001
1002         * ToolTip.cs: Remove center form string alignment as it must be align to
1003         left.
1004
1005 2007-05-08  Jonathan Pobst  <monkey@jpobst.com>
1006
1007         * ToolStripItemCollection.cs: Set the new item's parent and owner
1008         in Insert like we do in Add.  [Fixes bug #81568]
1009
1010 2007-05-08  Jackson Harper  <jackson@ximian.com>
1011
1012         * TreeView.cs: GotFocus differences between 1.1 and 2.0.
1013         - Off by one error in SetTop
1014         - Disable DoubeBuffering
1015         
1016 2007-05-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1017
1018         * ScrollableControl.cs: ScrollIControlntoView: we now only move the
1019           control as much as necessary in order to make it entirely visible,
1020           instead of centering the control in the container (matches MS
1021           behaviour). CalculateCanvasSize: we need to take the current scroll
1022           position into account when calculating the maximum canvas,
1023           otherwise the following scenario will fail: resize so that the
1024           scrollbars appear, use the scrollbars to scroll, resize again
1025           smaller, and now the canvas size is too small. Recalculate: when
1026           showing scrollbars make sure they start off at 0, and try to scroll
1027           the active control into view. Fixes #79540. HandleScrollBar: don't
1028           scroll anywhere if the scrollbar isn't visible.
1029
1030 2007-05-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1031
1032         * ListView.cs: When focus changed, call Layout/Invalidate
1033         in the focused item to update the selected state (should show
1034         entire label when ListView is focused, and a part of it if is not).
1035         * ListViewItem.cs: When doing layout for LargeIcon, take into account
1036         for displaying the entire label not only the Focused state of the
1037         item, but also the Focused state of the ListView (match .Net
1038         behaviour).
1039
1040 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
1041
1042         * Control.cs: Stub CanRaiseEvents, IsMirrored, and NotifyClients.
1043         Implement UseWaitCursor. 
1044
1045 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
1046         Applying contributed patch from Sergey Volk.
1047
1048         * Clipboard.cs: Implement SetDataObject retry logic and new overload
1049         of SetDataObject.
1050         * XplatUIWin32.cs: Throw an ExternalException if the clipboard set fails.
1051
1052 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
1053
1054         * Control.cs: Implement DrawToBitmap.
1055
1056 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
1057         Applying contributed patch from Stefan Noack.
1058         
1059         * Control.cs: Add [Get|Set]AutoSizeMode.
1060
1061 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
1062
1063         * MdiClient.cs: Unmerge menus when the last child is closed.
1064
1065 2007-05-07  Jonathan Pobst  <monkey@jpobst.com>
1066
1067         * ToolStrip.cs: Do not call BeginMerge on DropDowns.
1068         * ToolStripManager.cs: Call Merge on DropDowns.
1069         [Fixes bug #81477]
1070
1071 2007-05-07  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1072
1073         * XplatUIWin32.cs: Changed Win32CreateWindow to take enums instead of
1074           uints.
1075         * Form.cs: CreateParams: don't set WS_VISIBLE if we're changing
1076           visibility. We can't create forms visible, since we have to set the
1077           owner before making the form visible (otherwise Win32 will do
1078           strange things with task bar icons). The problem is that we set the
1079           internal is_visible to true before creating the control, so
1080           is_changing_visible_state is the only way of determining if we're
1081           in the process of creating the form due to setting Visible=true -
1082           this works because SetVisibleCore explicitly makes the form
1083           visibile afterwards anyways. Fixes #80775.
1084
1085 2007-05-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1086
1087         * ThemeWin32Classic.cs: When drawing ListViewItems,
1088         use StringTrimming.EllipsisCharacter if the view is Tile, Details,
1089         or LargeIcon _and_ item is not focused (match .Net behaviour).
1090
1091 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
1092
1093         * Control.cs, Form.cs: Fix some obsolete method warnings.
1094
1095 2007-05-04  Jonathan Pobst  <monkey@jpobst.com>
1096
1097         * Control.cs: Implement GetChildAtPoint and OnParentCursorChanged.
1098         * GetChildAtPointSkip.cs: Make internal for 1.1 profile.
1099
1100 2007-05-04  Andreia Gaita  <avidigal@novell.com>
1101
1102         * ContainerControl.cs: Fix active_control attribution when going
1103         up the parent chain so that the first parent container gets the control
1104         and the rest of the parent containers get the child containers (skips
1105         non-containers). Fixes #80729
1106
1107 2007-05-04  Randolph Chung  <tausq@debian.org>
1108
1109         * FileDialog.cs: Implement the SupportMultiDottedExtensions property.
1110         [Fixes bug #81499]
1111
1112 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1113
1114         * XplatUIX11.cs: Add a TranslateWindowSizeToXWindowSize overload that
1115           takes a size parameter, since the CreateParam's size isn't true for
1116           minimized forms. Fixes #81518,
1117
1118 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1119
1120         * Form.cs: Add OnDeactivateInternal.
1121         * MdiClient.cs: Raise Deactivate event. Fixes #81409.
1122
1123 2007-05-04  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1124
1125         * DateTimePicker.cs: CalculateDropDownLocation: do a null check before
1126           accessing the parent. Fixes #81508.
1127
1128 2007-05-03  Chris Toshok  <toshok@ximian.com>
1129
1130         * CurrencyManager.cs (CurrencyManager.ListChangeHandler): in the
1131         2.0 block, pass listposition + 1 to ChangeRecordState when a row
1132         was added before the current listposition.  Fixes the
1133         TestInsertRowBeforeCurrent unit test.
1134
1135 2007-05-03  Jonathan Pobst  <monkey@jpobst.com>
1136
1137         * Application.cs: Add RaiseIdle.
1138         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
1139         XplatUIX11.cs: Implement RaiseIdle.
1140
1141 2007-05-02  Jonathan Pobst  <monkey@jpobst.com>
1142         corcompare work: N - Z
1143         * NotifyIcon.cs
1144         * ProgressBar.cs
1145         * RadionButton.cs
1146         * ScrollableControl.cs
1147         * SplitContainer.cs
1148         * SplitterPanel.cs
1149         * StatusBar.cs
1150         * SystemInformation.cs
1151         * TabControl.cs
1152         * TableLayoutControlCollection.cs
1153         * TableLayoutPanel.cs
1154         * TabPage.cs
1155         * ToolBar.cs
1156         * ToolBarButton.cs
1157         * ToolStrip.cs
1158         * ToolStripComboBox.cs
1159         * ToolStripContainer.cs
1160         * ToolStripContentPanel.cs
1161         * ToolStripDropDown.cs
1162         * ToolStripDropDownItem.cs
1163         * ToolStripDropDownMenu.cs
1164         * ToolStripItem.cs
1165         * ToolStripItemCollection.cs
1166         * ToolStripMenuItem.cs
1167         * ToolStripPanel.cs
1168         * ToolStripSplitButton.cs
1169         * ToolTip.cs
1170         * TreeNode.cs
1171         * TreeNodeCollection.cs
1172         * TreeNodeMouseHoverEventArgs.cs
1173         * TreeView.cs
1174
1175 2007-05-01  Everaldo Canuto  <everaldo@simios.org>
1176
1177         * ContextMenu.cs: Add public method Show with alignment property to 2.0
1178         stuff. Thanks aatdark for the patch. 
1179
1180 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
1181
1182         * GridItem.cs: Implement 2.0 Tag property.
1183
1184 2007-05-01  Frederik Carlier <frederik.carlier@carlier-online.be> 
1185
1186         * TreeNodeCollection.cs: Fix ContainsKey and IndexOfKey methods to use
1187         count instead of Nodes.Length.  [Fixes bug #81448]
1188
1189 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
1190
1191         * ComboBox.cs: Fix paramName sent to ArgumentOutOfRangeException's.
1192         [Fixes bug #81506]
1193
1194 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
1195         corcompare work: A - M
1196         * BindingNavigator.cs
1197         * Button.cs
1198         * ButtonBase.cs
1199         * CheckBox.cs
1200         * Control.cs
1201         * FlowLayoutPanel.cs
1202         * Form.cs
1203         * Label.cs
1204         * LinkLabel.cs
1205         * ListView.cs
1206
1207 2007-05-01  Jonathan Pobst  <monkey@jpobst.com>
1208
1209         * Application.cs: Give toolstrips a chance to process mnemonics.
1210         * ToolStrip.cs, ToolStripDropDownButton.cs, ToolStripItem.cs,
1211         ToolStripItemTextRenderEventArgs.cs, ToolStripLabel.cs,
1212         ToolStripMenuItem.cs, ToolStripSplitButton.cs: Implement keyboard mnemonics.
1213
1214 2007-05-01  Jackson Harper  <jackson@ximian.com>
1215
1216         * TextBoxBase.cs: Better preferred height, FixedSingle gets the
1217         wider area too.
1218         - Don't set the BoundsSpecified
1219
1220 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
1221
1222         * Application.cs: When using the toolstrip shortcut mechanism, allow the
1223         message to pass through to a regular control if it hosted by a toolstrip.
1224         * ToolStrip.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
1225         ToolStripManager.cs: Enable keyboard navigation for ToolStrips.
1226
1227 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
1228
1229         * TextRenderer.cs: Use the flags argument when using the MeasureString
1230         fallback algorithm.
1231
1232 2007-04-30  Jonathan Pobst  <monkey@jpobst.com>
1233
1234         * MenuStrip.cs: Don't let multiple ToolStripSeparators get added to
1235         the MDI menu item.  [Fixes bug #81483]
1236
1237 2007-04-30  Gert Driesen  <drieseng@users.sourceforge.net>
1238
1239         * DataGridViewColumn.cs: Initialize value of headercell to zero-length
1240         string. When setting Name to null, use zero-length string instead.
1241
1242 2007-04-29  Andreia Gaita  <avidigal@novell.com>
1243
1244         * TabControl.cs: Implement missing 2.0 methods (SelectTab, 
1245         DeselectTab). Implement missing 2.0 TabPageCollection methods
1246         (Add, ContainsKey, RemoveByKey, IndexOfKey)
1247
1248 2007-04-29  Pedro Martínez Juliá  <pedromj@gmail.com>
1249
1250         * DataGridViewColumn.cs: Make HeaderText take preference over Name.
1251
1252 2007-04-29  Gert Driesen  <drieseng@users.sourceforge.net>
1253
1254         * RichTextBox.cs: In LoadFile, use StreamReader to read plain text.
1255         Fixes bug #81479. Include details of exception when LoadFile fails.
1256
1257 2007-04-28  Alan McGovern <alan.mcgovern@gmail.com>
1258
1259         * DrawListViewSubItemEventArgs.cs: Added missing setter
1260
1261 2007-04-27  Andreia Gaita  <avidigal@novell.com>
1262
1263         * ToolTip.cs: Add missing 2.0 properties. Implement 2.0 Show and 
1264         Hide methods (not complete). Implement missing 2.0 OnPopup event.
1265
1266 2007-04-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1267
1268         * ListView.cs: In ItemControl.OnMouseDown restore a pair of braces I
1269         removed in ly last commit (it was breaking the Label edit feature).
1270
1271         * ThemeWin32Classic.cs: When drawing a ListViewItem use
1272         StringAlignment.Near for LineAlignment (match .Net).
1273
1274 2007-04-27  Andreia Gaita  <avidigal@novell.com>
1275
1276         * TabControl.cs: Change SetTab so it adds the tabpage to the list
1277         of controls if it isn't already there - was blowing up when doing
1278         tabcontrol.TabPages[i]=new TabPage(). 
1279         SetTab now does a replace by removing the page at the index. 
1280         Add a new InsertTab method that inserts a page in a given index 
1281         instead of replacing. 
1282         Implements TabPageCollection.Insert(int, TabPage).
1283
1284 2007-04-27  Chris Toshok  <toshok@ximian.com>
1285
1286         * BindingManagerBase.cs: fill in CurrentItemChanged (and have an
1287         internal handler that can be invoked from our subclasses.)  Also,
1288         add a comment to PushData about how we need to fix it.
1289
1290         * CurrencyManager.cs: tons of changes here.  trying to get things
1291         matching the behavior of .net wrt event orders (ItemChanged,
1292         CurrentChanged, PositionChanged.)  I've implemented a private .net
1293         symbol (ChangeRecordState) that appears in stack traces because
1294         it's actually easier to do this than to effective inline all its
1295         various behaviors at every call site.
1296
1297         * RelatedPropertyManager.cs: guard against an exception here by
1298         not using parent.Current if the position is set to -1 (if the
1299         parent datasource is cleared, for instance).
1300
1301         * Binding.cs: don't parse data in PushData (this might be wrong,
1302         but it jives with MS's behavior.)  Also, don't call PushData when
1303         we get a CurrentChanged event.
1304
1305 2007-04-27  Andreia Gaita  <avidigal@novell.com>
1306
1307         * WebBrowser.cs,
1308           WebBrowserBase.cs,
1309           WebBrowserSiteBase.cs,
1310           HtmlDocument.cs: Added stubbed out classes, no real implementations 
1311           yet.
1312
1313 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
1314
1315         * MainMenu.cs: In draw method without parameters call draw method with 
1316         PaintEvent, another one (just rect) adjust rectangle and we dont need it
1317         as Rect property is already adjusted. Fixes #80694.
1318
1319 2007-04-27  Jonathan Pobst  <monkey@jpobst.com>
1320
1321         * Application.cs: Need to handle keyboard menu deselection here.
1322         * Control.cs: Use WM_SYSKEYUP instead of WM_SYSCOMMAND to start menu keyboard
1323         navigation, allowing keyboard to work on X11.
1324         * ToolStrip.cs: Don't worry about handling the Menu key here anymore.
1325
1326 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
1327
1328         * MenuAPI.cs: When deactivate menu verify if hotkey (_) is active and redraw
1329         menu bar. It fixes some drawing issues in menu bar.
1330
1331 2007-04-27  Everaldo Canuto  <everaldo@simios.org>
1332
1333         * MenuAPI.cs: Remove unneeded "keynav_state = KeyNavState.Idle" before 
1334         Deactivate calls, Deactivate method already do it. Also ser ActiveTracker
1335         when <alt> key is pressed.
1336
1337 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
1338
1339         * XplatUIX11.cs: Simplify SystrayRemove to be like other libraries,     Gtk as 
1340         example just set visible to false and make this prevent from other problems.
1341         In SystrayAdd always remove pending expose. Fixes #81072.
1342
1343 2007-04-26  Marek Safar  <marek.safar@gmail.com>
1344
1345         * TextBoxBase.cs (CaretMoved): Consider scroll maximum when scroll
1346         value is set.
1347
1348 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
1349
1350         * ListView.cs: Added three missing 2.0 events and corresponding
1351         EventHandlers. Added the OwnerDraw property.
1352         * DrawListViewColumnHeaderEventHandler.cs: fixed typo
1353
1354 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
1355
1356         * DrawListViewItemEventArgs.cs
1357         * DrawListViewSubItemEventArgs.cs: Brought classes up to 2.0 status.
1358
1359 2007-04-26  Alan McGovern <alan.mcgovern@gmail.com>
1360
1361         * TextControl.cs: Fixed typo in constructor
1362
1363 2007-04-26  Jonathan Pobst  <monkey@jpobst.com>
1364
1365         * Application.cs: Create a shortcut path so that currently selected
1366         MenuStrips can intercept keyboard events without having focus.
1367         * Control.cs: Handle WM_SYSCOMMAND message to activate MenuStrips.
1368         * MenuStrip.cs, ToolStrip.cs, ToolStripDropDown.cs, ToolStripDropDownItem.cs,
1369         ToolStripItem.cs, ToolStripManager.cs, ToolStripMenuItem.cs: Support
1370         keyboard navigation (arrows, tab, enter, esc) on Windows.  Still need to
1371         generate WM_SYSCOMMAND message in X11 for other platforms.
1372         * ToolStripProfessionalRenderer.cs: ToolStripMenuItems need to be painted
1373         in OnRenderMenuItemBackground instead of OnRenderButtonBackground.
1374         * ToolStripSplitButton.cs: Add DefaultItem property.
1375         
1376 2007-04-26  Everaldo Canuto  <everaldo@simios.org>
1377
1378         * MainMenu.cs: In OnMenuChanged pass PaintEventArgs to Draw method, it
1379         fixes some menu draw problem on Windows with border diferent from default
1380         it also fixes #81403.
1381
1382 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1383
1384         * Form.cs: Refactor WndProc into separate methods, just like Control is
1385           doing it.
1386
1387 2007-04-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1388
1389         * Control.cs: set_Text: move the call to the driver into a seperate
1390           virtual method so that Form can override it.
1391         * MaskedTextBox.cs: Corcompare fixes.
1392         * Form.cs: Override UpdateWindowText and only update the styles if the
1393           form has been shown (fixes #81405).
1394
1395 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
1396
1397         * Control.cs, Form.cs: Use the better supported WM_?BUTTONDOWN and
1398         WM_ACTIVATE messages instead of WM_MOUSEACTIVATE and
1399         WM_ACTIVATEAPP.  This fixes menus not disappearing on X11 when
1400         the form lost focus or another control was clicked.
1401
1402 2007-04-25  Gert Driesen  <drieseng@users.sourceforge.net>
1403
1404         * DataGrid.cs: Uncomment MakeTransparent calls since bug #80151 is
1405         fixed.
1406
1407 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1408
1409         * DrawListViewColumnHeaderEventHandler.cs, DrawToolTipEventArgs.cs,
1410           DrawListViewItemEventHandler.cs,
1411           DrawListViewSubItemEventHandler.cs, DrawToolTipEventHandler.cs:
1412           Added.
1413         * X11Structs.cs: More ToString implementation.
1414
1415 2007-04-25  Jonathan Pobst  <monkey@jpobst.com>
1416
1417         * ToolStripDropDownItem.cs: Don't lazy create a DropDown in Dispose.
1418         * ToolStripOverflowButton.cs: Don't lazy create a DropDown in HasDropDownItems.
1419
1420 2007-04-25  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1421
1422         * Control.cs: Only raise OnVisibleChanged if we're not recreating the
1423           handle.
1424         * FormCollection.cs: Don't add a form if it's already in the
1425           collection.
1426         * Form.cs: Change ShowDialog () to call ShowDialog (owner) with a null
1427           according to behaviour and MSDN. The ownerWin32 is the active
1428           window at the moment when we call ShowDialog, not the context's
1429           main form (the context's main form may open another form that opens
1430           a form with ShowDialog, the win32 owner is the second form). Add
1431           and remove forms to the Application.OpenForms in other places to
1432           better match MS behaviour. Add an IsActive property that raises
1433           On(de)Activated only if the active state has changed (we were
1434           raising OnDeactivated before OnActivated while creating forms).
1435         * Application.cs: Refactor Enabling/Disabling of windows for modal
1436           dialog loops out to separate methods, and restore the thread
1437           context when we quit the method. Fixes #81407.
1438
1439 2007-04-25  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1440
1441         * ListView.cs: In ItemControl.HandleClicks, also fire 
1442         2.0 MouseClick or MouseDoubleClick events on the parent,
1443         not only the Click/DoubleClick events.
1444
1445 2007-04-24  Andreia Gaita  <avidigal@novell.com>
1446
1447         * TableLayoutSettings.cs: 
1448         - Added a GetControls method and a support structure to help the 
1449         TypeConverter to enumerate the controls for     serialization. 
1450         - Added a new serialization constructor. 
1451         - Added a isSerialized flag initialized to true on the 
1452         serialization constructor so that the TableLayoutPanel.LayoutSettings 
1453         setter does not throw the designed NotSupportedOperation exception
1454         when the object is built through deserialization.
1455         - Implemented GetObjectData
1456         
1457         * TableLayoutPanel.cs: Added check on LayoutSettings.
1458
1459 2007-04-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1460
1461         * ListView.cs: Report Click and DoubleClick events to the parent
1462         from ItemsMouseUp, instead of ItemsMouseDown. This prevents us
1463         from breaking the click count state when using dialog forms (Control
1464         reports the clicks in a similar fashion). In the previous behaviour
1465         the last WM_LBUTTONUP message in a  double click was sent to the
1466         ListView's form, instead of the ListView, which was breaking the click
1467         count for it. Fixes #80387.
1468
1469 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
1470
1471         * BindingNavigator.cs : fixed bugs revealed by new nunit tests
1472
1473 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
1474
1475         * ToolStripDropDownItem.cs: Lazy initialize the DropDown.  This prevents
1476         us from created dropdowns for menu items that do not have subitems.
1477         * ToolStripItem.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs:
1478         Check HasDropDownItems before calling DropDown so a dropdown will not be
1479         created if it isn't needed.
1480
1481 2007-04-24  Jackson Harper  <jackson@ximian.com>
1482
1483         * TreeView.cs: Set the first node to the selected node when we get
1484         focus if there is no selected node.
1485
1486 2007-04-24  Andreia Gaita  <avidigal@novell.com>
1487
1488         * MimeIcon.cs: remove using blocks so that image streams are
1489         not disposed of. Fixes #80151
1490
1491 2007-04-24  Jackson Harper  <jackson@ximian.com>
1492
1493         * TextBoxBase.cs: Fixup the height of textboxes when the control
1494         is created.
1495
1496 2007-04-24  Jonathan Pobst  <monkey@jpobst.com>
1497
1498         * ToolStrip.cs: Fully implement GetNextItem.  Call OnParentRightToLeftChanged
1499         for each ToolStripItem when the parent's RightToLeftChanged is called.
1500
1501 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1502
1503         * ComboBox.cs: Forward ContextMenu to the underlying textbox, if any.
1504           Fixes #80163.
1505         * Control.cs: Replace GetContextMenuInternal() with ContextMenuInternal
1506           property, so that the setter can be overriden too.
1507         * TextBox.cs: Change GetContextMenuInternal() to use
1508           ContextMenuInternal.
1509
1510 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1511
1512         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
1513           #81406.
1514
1515 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1516
1517         * ThemeWin32Classic.cs: Use a black pen to draw checkboxes, fixes
1518           #81406.
1519
1520 2007-04-24  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1521
1522         * MaskedTextBox.cs: Commit this so nobody else starts working on it and
1523           avoid duplicate work. Mostily skeleton code, it's not working at
1524           all yet.
1525
1526 2007-04-20  Leszek Ciesielski <skolima@gmail.com>
1527
1528         * NotifyIcon.cs : stub for MouseClick event
1529         * Application.cs: stub for SetUnhandledExceptionMode
1530
1531 2007-04-24  Alan McGovern <alan.mcgovern@gmail.com>
1532
1533         * BindingNavigator.cs : Initial (partial) implementation
1534
1535 2007-04-23  Jackson Harper  <jackson@ximian.com>
1536
1537         * TreeView.cs: Do not create the treeview's handle when setting
1538         the scroll position.
1539         - ExpandAll needs to compute the scrollbars so it knows which
1540         position to set the bar too.
1541         * TreeNode.cs: 
1542         * TreeNodeCollection.cs: Pass new flag to UpdateScrollBars
1543
1544 2007-04-23  Jackson Harper  <jackson@ximian.com>
1545
1546         * TextBoxBase.cs: Non multiline textboxes shouldn't take the enter
1547         key. Fixes #81408.
1548
1549 2007-04-23  Jonathan Pobst  <monkey@jpobst.com>
1550
1551         * ToolStripItem.cs: Make GetImageSize internal.
1552         * ToolStripMenuItem.cs: Use GetImageSize to determine the size we
1553         need to draw an item.  Fixes a reported issue where images on menus
1554         that were not 16x16 were drawing incorrectly.
1555
1556 2007-04-21  Miguel de Icaza  <miguel@novell.com>
1557
1558         * Padding.cs: Use the converter, fixes the resgen2 issue with
1559         XMLNotePad. 
1560
1561 2007-04-21  Jackson Harper  <jackson@ximian.com>
1562
1563         * TreeView.cs: Dont try to unhighlight the selected node if there
1564         isn't a selected node.
1565
1566 2007-04-21  Jackson Harper  <jackson@ximian.com>
1567
1568         * UpDownBase.cs:
1569         * TextBoxBase.cs:
1570         * ListView.cs:
1571         * ListBox.cs:
1572         * TreeView.cs: Use the InternalBorderStyle property to set the
1573         initial border style, this forces the client rectangle to be sized
1574         correctly.
1575
1576 2007-04-20  Jackson Harper  <jackson@ximian.com>
1577
1578         * TreeView.cs: Simplify scrolling to the last node after expanding
1579         all.
1580         - Fix some off by ones with setting the bottom.
1581
1582 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
1583
1584         * Control.cs: Use DefaultSize for Size, calculate ClientSize from
1585         that.  We were incorrectly doing it the other way around.  Also,
1586         update ClientSize if we change the BorderStyle before the control
1587         is created.
1588
1589 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
1590
1591         * XplatUI.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
1592         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
1593         XplatUIDriver.Caption to CaptionHeight. Spaces to tabs.
1594         * XplatUIDriver.cs: Added Border3DSize, BorderSize, CaptionButtonSize,
1595         DoubleClickSize, DoubleClickTime and FixedFrameBorderSize. Renamed
1596         Caption to CaptionHeight.
1597         * XplatUIX11.cs: Renamed Caption to CaptionHeight.
1598         * Theme.cs: Modified Border3DSize, BorderSize, CaptionButtonSize
1599         and FixedFrameBorderSize to return value from current XplatUI driver.
1600         * XplatUIWin32.cs: Implemented Border3DSize, BorderSize,
1601         CaptionButtonSize, DragFullWindows, DoubleClickSize, DoubleClickTime
1602         and FixedFrameBorderSize using win32 API. Renamed Caption to
1603         CaptionHeight.
1604         * XplatUIOSX.cs: Renamed Caption to CaptionHeight.
1605         * SystemInformation.cs: Fixed typo in BorderSize.
1606
1607 2007-04-20  Gert Driesen  <drieseng@users.sourceforge.net>
1608
1609         * XplatUI.cs: Added MenuAccessKeysUnderlined.
1610         * XplatUIDriver.cs: Added MenuAccessKeysUnderlined.
1611         * XplatUIX11.cs: Implemented MenuAccessKeysUnderlined by always
1612         returning false.
1613         * Theme.cs: Modified MenuAccessKeysUnderlined to return corresponding
1614         value from XplatUI driver.
1615         * XplatUIWin32.cs: Implemented MenuAccessKeysUnderlined using
1616         SystemParametersInfo.
1617         * ThemeWin32Classic.cs: Remove obsolete MenuAccessKeysUnderlined
1618         override.
1619         * XplatUIOSX.cs: Implemented MenuAccessKeysUnderlind by always
1620         returning false.
1621
1622 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1623
1624         * XplatUIX11.cs, Hwnd.cs: Remove warnings.
1625
1626 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1627
1628         * MessageBox.cs, XplatUIX11.cs, Hwnd.cs: Remove warnings.
1629
1630 2007-04-20  Jonathan Pobst  <monkey@jpobst.com>
1631
1632         * ToolStripManager.cs: Fix a reported InvalidCastException when unmerging
1633         MenuStrips that contain ToolStripSeparators.
1634
1635 2007-04-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1636
1637         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Add
1638           DefineStdCursorBitmap.
1639         * Cursor.cs: Add an internal constructor so that the Cursor knows if it
1640           has been created off a standard cursor. This is used to get a
1641           bitmap of the standard cursor when Draw or DrawStretched is called
1642           in order to draw the cursor.
1643         * X11Structs.cs: Added XcursorImage and XcursorImages.
1644         * XplatUIX11.cs, XplatUIWin32.cs: Add and implement
1645           DefineStdCursorBitmap.
1646         * Cursors.cs: Update all relevant creations of Cursor to use the new
1647           internal constructor.
1648
1649 2007-04-19  Jackson Harper  <jackson@ximian.com>
1650
1651         * TextBox.cs: Move the has_been_focused into the base control, so
1652         some of the text adding methods can manipulate it (probably time
1653         for a better name for this flag too).
1654         - Call a new version of selectall that doesn't scroll
1655         * TextBoxBase.cs: When we append text, if the document is empty,
1656         don't scroll.  If the document has text already, we scroll to the
1657         end of the appended text.
1658         - When the text is changed, we reset the has_been_focused, so the
1659         next time the control gets focused, all the text is selected.
1660
1661 2007-04-19  Jackson Harper  <jackson@ximian.com>
1662
1663         * TextControl.cs: Move the margins to the document, add a method
1664         so the margin sizes can be updated.
1665         * TextBoxBase.cs: When the border style is changed, update the
1666         border sizes.
1667
1668 2007-04-19  Jonathan Pobst  <monkey@jpobst.com>
1669
1670         * Control.cs: Respect DefaultPadding.
1671         * GroupBox.cs: Implement DefaultPadding, DisplayRectangle takes
1672         padding into account.
1673         * ToolStrip.cs: Remove setting padding to DefaultPadding in constructor.        
1674
1675 2007-04-19  Jackson Harper  <jackson@ximian.com>
1676
1677         * TextControl.cs: Oops, we need to use the ClientRect not the
1678         bounds here.
1679
1680 2007-04-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1681
1682         * ListView.cs: In ItemControl.ItemsMouseDown, take into
1683         account the double clicks when CheckBoxes are used and
1684         the pointer is inside the checkbox. Fixes part of #81191.
1685
1686 2007-04-18  Jackson Harper  <jackson@ximian.com>
1687
1688         * TextControl.cs: Pressing the end key shouldn't move the caret
1689         past the line ending.
1690         * TextBoxBase.cs: We can still delete if we are in the line
1691         ending and the combine will just kill the existing line ending.
1692
1693 2007-04-18  Jackson Harper  <jackson@ximian.com>
1694
1695         * TextControl.cs: We can't move lines, then invalidate their
1696         bounds, we need to get the old bounds and combine that with the
1697         new bounds.
1698         * TextBoxBase.cs: Before combining two lines for a delete, we need
1699         to invalidate the area of the old line, since that will be moved
1700         in the combine operation.
1701
1702 2007-04-18  Everaldo Canuto  <everaldo@simios.org>
1703
1704         * LinkLabel.cs: In OnPaint invoke draw background to fix problems
1705         with transparent background. Fixes #80482.
1706
1707 2007-04-18  Jonathan Pobst  <monkey@jpobst.com>
1708
1709         * PictureBox.cs: Refresh on resize when SizeMode = Zoom.
1710         * ThemeWin32Classic.cs: Implement PictureBox.SizeMode = Zoom.
1711         [Fixes bug #81391]
1712
1713 2007-04-18  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1714
1715         * CreateParams.cs: Add a couple of helper methods and do a less string
1716           concatenation in ToString.
1717         * XplatUIX11.cs: Add an TranslateClientRectangleToXClientRectangle
1718           overload that takes a Control parameter, since this method may be
1719           called before a control is assigned to the hwnd (from
1720           CreateWindow), and update CreateWindow to use the new overload. In
1721           GetMenuOrigin subtract the title bar from the y position if the
1722           form has a window manager (since we're painting it and not X).
1723         * XplatUIWin32.cs: If we can get a form in GetMenuOrigin use the form's
1724           CreateParams to calculate the origin (since border sizes may vary).
1725           In ScreenToMenu only subtract the title height if we actually have
1726           a title.
1727         * MdiWindowManager.cs: Override MenuHeight to always return 0, since
1728           mdi children never have menus of themselves.
1729         * InternalWindowManager.cs: Implement menu handling like form does.
1730           Added GetMenuOrigin to calculate the menu origin, can't use the
1731           CreateParams from the form like normally since it's lying.
1732         * Hwnd.cs: Implement GetBorderSize better (in the sense more
1733           windows-like) and add Inflate and comparison operators to the
1734           Borders type. When calculating MenuOrigin and it's a form with a
1735           window manager, use the window manager to calculate it.
1736
1737 2007-04-17  Chris Toshok  <toshok@ximian.com>
1738
1739         * Control.cs (CreateControl): turns out in 2.0 we don't need this
1740         OnBindingContextChanged thing here.  It's only generated from
1741         ContainerControl.OnCreateControl.  Fixes a newly written unit test
1742         - BindingTest.BindingContextChangedTest4.
1743         
1744 2007-04-17  Jackson Harper  <jackson@ximian.com>
1745
1746         * ScrollBar.cs: When setting values, make sure the current
1747         position stays within the new values range.
1748
1749 2007-04-17  Chris Toshok  <toshok@ximian.com>
1750
1751         * Control.cs (CreateControl): talk about a bizarre corner case.
1752         Don't emit OnBindingContextChanged here if we're a parentless
1753         control (i.e. if we're a form.).  Fixes
1754         BindingTest.BindingContextChangedTest2.
1755
1756 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
1757
1758         * ButtonBase.cs: Remove TextFormatFlags.WordBreak to mimic same behavior 
1759         from win32. Fixes #81255.
1760
1761 2007-04-17  Everaldo Canuto  <everaldo@simios.org>
1762
1763         * ThemeWin32Classic.cs: Remove text offset from DrawButtonText as it is
1764         already present in CalculateButtonTextAndImageLayout.
1765
1766 2007-04-17  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1767
1768         * XplatUIX11.cs: When setting min/max size for a window we need to
1769           translate the coordinates to x coordinates. Create an overload of
1770           SetWindowMinMax that takes a CreateParams handling this, and change
1771           SetWMStyles to call this function (can't use Control.FromHandle in
1772           the SetWindowMinMax to get the control/CreateParams from the handle
1773           because the handle might not have been assigned to the control
1774           yet). Fixes #81371.
1775
1776 2007-04-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1777
1778         * ListView.cs: In ItemControl.ItemMouseDown, don't change check state
1779         if StateImageList is non-null and it has less than two items (match MS
1780         behaviour). Also, in HandleNavKeys handle the Space key, calling
1781         the new ToggleItemsCheckState method, which tries to change the
1782         checked state of the selected items. Fixes part of #81191.
1783
1784 2007-04-16  Jackson Harper  <jackson@ximian.com>
1785
1786         * RichTextBox.cs: namespace cleanup.
1787
1788 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
1789
1790         * XplatUIWin32.cs: Back last parameter to true in SetClipRegion.
1791
1792 2007-04-16  Everaldo Canuto  <everaldo@simios.org>
1793
1794         [Fixes #79447]
1795         * Control.cs: Call invalidate in set_Region.
1796
1797         * XplatUIX11.cs, XplatUIWin32.cs: Remove invalidate from SetClipRegion as
1798         it dont works here.
1799
1800 2007-04-16  Jackson Harper  <jackson@ximian.com>
1801
1802         * TextBoxBase.cs: When enter is pressed, we need to update all
1803         lines below the current.
1804
1805 2007-04-16  Jonathan Pobst  <jpobst@monkey.com>
1806
1807         * MdiClient.cs: Implement implicit menu merging for MDI
1808         children.  When a child form is active, if it has a menustrip
1809         and the parent form has a MainMenuStrip, automatically merge
1810         the menus.
1811
1812 2007-04-15  Andreia Gaita  <avidigal@novell.com>
1813
1814         * TabControl.cs: Refactored sizing methods to not repeat
1815         code all over the place. Tab bounds are now calculated
1816         as if alignment is top and single line, and only when 
1817         setting the bounds are the positions adjusted according
1818         to alignment. Replaced hardcoded positions, spacings and
1819         paddings by getting the values the ThemeEngine. 
1820         Fixes #79619.
1821         
1822         * Theme.cs: Change TabControl properties and methods so
1823         that all start with TabControl*. Added more properties
1824         to help remove hardcoded values on tabcontrol.
1825         Add CPDrawBorder3D declaration so the Theming classes
1826         can access it.
1827         
1828         * ThemeClearlooks.cs, ThemeNice.cs: Method signature changes from Theme.
1829
1830         * ThemeWin32Classic.cs: Rector TabControl out to the TabControlPainter
1831         on the Theming namespace, and call the appropriate methods here.
1832         Change CPDrawBorder3D to public.
1833
1834 2007-04-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1835
1836         * Control.cs: In WmRButtonUp, send the WM_CONTEXTMENU message to
1837         the control after firing the OnMouseUp event, instead of sending
1838         the message before the mentioned event. This is so we can match the
1839         MS behaviour. Fixes part of #80385.
1840
1841 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
1842
1843         * ToolStripItem.cs: Call the RightToLeftChanged event when setting the
1844         RightToLeft property.
1845
1846 2007-04-13  Jonathan Pobst  <monkey@jpobst.com>
1847
1848         * ToolStrip.cs: Add properties and internal methods to support merging.
1849         * ToolStripItem.cs: Add MergeAction and MergeIndex.
1850         * ToolStripItemCollection.cs: Add Insert and Remove methods that do
1851         not trigger reparenting or layouts.
1852         * ToolStripManager.cs: Add Merge and RevertMerge methods.
1853         * ToolStripOverflow.cs: Add a convenience method to find the ToolStrip that
1854         is hosting the overflow menu.
1855
1856 2007-04-13  Jackson Harper  <jackson@ximian.com>
1857
1858         * TextControl.cs: Set the line ending correctly for the first
1859         inserted line.
1860
1861 2007-04-13  Sebastien Pouliot  <sebastien@ximian.com>
1862
1863         * Theme.cs: Update GetMethod to get the new definition for 
1864         KnownColors.Update (and fix theme color updates).
1865
1866 2007-04-12  Everaldo Canuto  <everaldo@simios.org>
1867
1868         * MessageBox.cs: Fix some test and button position.
1869
1870 2007-04-12  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1871
1872         * Form.cs: Consider the implicit controls in
1873         GetRealChildAtPoint. We need it since this method
1874         is called on Form when handling the some messages in
1875         WndProc, and need to consider those implicit ones too.
1876         Fixes #80385.
1877
1878 2007-04-12  Jonathan Pobst  <monkey@jpobst.com>
1879
1880         * ToolStripMenuItem.cs: Display the ShortcutKeyDisplayString even
1881         if there are no ShortcutKeys set.
1882         * ToolStripProfessionalRenderer.cs: If an item has had its BackColor
1883         set, use it when painting.
1884
1885 2007-04-12  Jackson Harper  <jackson@ximian.com>
1886
1887         * TextControl.cs: Fix some off-by-one issues in line duplication
1888         and insertion in the undo manager. Also, overwrite the first tag
1889         of a line on insert, if it is just a zero lengthed tag. This
1890         prevents us from getting an extra stranded tag at the beginning of
1891         the first line.
1892
1893 2007-04-11  Everaldo Canuto  <everaldo@simios.org>
1894
1895         * Label.cs: Remove check for handle created in CalcAutoSize, we need 
1896         to calculated proper size including when handle was not created yet.
1897
1898 2007-04-11  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1899
1900         * MdiWindowManager.cs: When moving a form, allow the form to be moved
1901           when the mouse is outside of it's parent's client rectangle. Fixes
1902           #79982 (take 3, part 2).
1903
1904 2007-04-10  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1905
1906         * X11Structs.cs: Add a few ToString() overrides.
1907         * XplatUIX11.cs: Added GetTopLevelWindowLocation to try to calculate
1908           the window location in a window-manager independent way. Reworked
1909           FrameExtents, it now actually works. Reworked AddConfigureNotify
1910           and ReparentNotify handling to use GetTopLevelWindowLocation
1911           instead of the earlier, more hacky solution. Reworked SetWMStyles,
1912           hopefully for the better: we now set _NET_WM_WINDOW_TYPE* for all
1913           windows, DIALOG for modal windows, UTILITY for toolboxes and NORMAL
1914           for all other windows (fixes #81281 part 1), a toolwindow is hidden
1915           from the taskbar if it has a parent (fixes #81281 part 2 for kwin),
1916           and generally refactored to do as few calculations as possible
1917           inside the lock.
1918
1919 2007-04-09  Sebastien Pouliot  <sebastien@ximian.com>
1920
1921         * Theme.cs: Change "reflective-contract" between MWF and SD to 
1922         minimize # of calls, avoid Color serialization and avoid updating 
1923         every "known colors" each time a single one is updated.
1924
1925 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
1926
1927         * DataGridTextBoxColumn.cs: Only set IsInEditOrNavigateMode to false
1928         when not readonly and the text is explicitly set. Code style updates.
1929         * DataGridTableStyle.cs: Removed extra line.
1930         * DataGrid.cs: Code style updates. Removed extra whitespace.
1931         * DataGridColumnStyle.cs: Code style updates. Removed extra 
1932         whitespace.
1933
1934 2007-04-09  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1935
1936         * XplatUIX11.cs: Added comment that "fixes" #80021.
1937
1938 2007-04-09  Jackson Harper  <jackson@ximian.com>
1939
1940         * TextControl.cs: We don't need this -1 on the line count anymore.
1941
1942 2007-04-09  Gert Driesen  <drieseng@users.sourceforge.net>
1943
1944         * DataGridTextBoxColumn.cs: In Commit, use TypeConverter to convert
1945         entered value to underlying type, and convert it back to a string to
1946         apply formatting. Modified GetFormattedValue to use TypeConverter
1947         if available.
1948
1949 2007-04-08  Gert Driesen  <drieseng@users.sourceforge.net>
1950
1951         * ListViewItem.cs: Added null checks. Avoid duplicating code in ctors.
1952         Use SubItems property when we want to ensure there's at least one
1953         subitem. Modified SubItems property to ensure there's always at least
1954         one subitem. Avoid using ListViewSubItemCollection.AddRange to match
1955         the NRE's reported by MS.
1956
1957 2007-04-07  Gert Driesen  <drieseng@users.sourceforge.net>
1958
1959         * ProgressBar.cs: On 2.0 profile, default forecolor is Highlight. Added
1960         ResetForeColor override on 2.0. Fixed a few API compatibility issues.
1961         Spaces to tabs. Removed extra tabs.
1962
1963 2007-04-06  Jonathan Pobst  <monkey@jpobst.com>
1964
1965         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
1966         infinite loop.  (Forgot to copy to the horizontal toolstrip case.)
1967
1968 2007-04-06  Jackson Harper  <jackson@ximian.com>
1969
1970         * TextBoxBase.cs: When a delete removes a line, recalculate all
1971         lines below that line (they need to get offsets setup correctly)
1972         and invalidate.
1973
1974 2007-04-05  Jackson Harper  <jackson@ximian.com>
1975
1976         * TextControl.cs: We need to invalidate across the width of the
1977         document when we are invalidating multiple lines.
1978         * TextBoxBase.cs: Don't delete into the line ending.
1979
1980 2007-04-05  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1981
1982         * ListView.cs: Restore the check for the MouseHover event
1983         in ListView. It looks like the ListView fires more than one MouseHover
1984         event when HoverSelection is true  _only_ in weird-corner scenarios, but
1985         in most of the cases it only fires one. Also, add the 2.0 ItemMouseHover
1986         event.
1987
1988 2007-04-05  Mike Kestner  <mkestner@novell.com>
1989
1990         * ListView.cs : raise MouseDown before updating selection.
1991         [Fixes #80373 tab 1&3]
1992
1993 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
1994
1995         * ToolStripRenderer.cs: Add static method to mirror image.
1996         * ToolStripProfessionalRenderer.cs: Support ImageTransparentColor
1997         and RightToLeftAutoMirrorImage.
1998         * ToolStripItem.cs: Remove MonoTODO from ImageTransparentColor.
1999
2000 2007-04-05  Jonathan Pobst  <monkey@jpobst.com>
2001
2002         * ToolStripSplitStackLayout.cs: Support Alignment property.
2003         * ToolStripItem.cs: Remove MonoTODO from the Alignment property.
2004
2005 2007-04-05  Jackson Harper  <jackson@ximian.com>
2006
2007         * TextControl.cs: Move around the line endings when crossing line
2008         boundaries.
2009         - When combining lines, strip the ending text off the first line.
2010
2011 2007-04-05  Jackson Harper  <jackson@ximian.com>
2012
2013         * TextControl.cs:
2014         * TextBoxBase.cs: Try to never move the cursor into the line
2015         ending.
2016         
2017 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
2018
2019         * ToolStripItem.cs: Make sure we aren't firing mouse events when
2020         the item is disabled.  Also add a few missing methods.
2021
2022 2007-04-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2023
2024         * ListView.cs: We don't need the MouseEnter/MouseLeave check
2025         to fire just one MouseHover event when HoverSelection is true, since
2026         .Net does fire more than one MouseHover event in that scenario. Also,
2027         fix the selection in HoverSelection, by invoking UpdateMultiSelect
2028         if MultiSelect is true, instead of only setting ListViewItem.Selected.
2029         Finally, we need to reset the Hover logic in MouseMove, even when we
2030         don't have a selected item.
2031
2032 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
2033
2034         * ToolStrip.cs: Add several missing methods, properties, and events.
2035
2036 2007-04-04  Chris Toshok  <toshok@ximian.com>
2037
2038         * DataGridTextBoxColumn.cs: set the bounds of the text box to
2039         (0,0,0,0) in Commit, as MS does.
2040
2041         * DataGrid.cs: call EndEdit() from Select() as microsoft does, and
2042         make sure we set CurrentRow on a row header click *before* calling
2043         Select.  This moves the current cell (and the textbox) to the new
2044         row.  The call to Select then hides the textbox, giving us the
2045         correct behavior.  Fixes #80362.
2046
2047         * CurrencyManager.cs (UpdateIsBinding): raise ItemChanged (-1).
2048         (ListChangedHandler): reorder the position/current changed events,
2049         and call UpdateIsBinding in the ItemAdded case.
2050
2051         * GridColumnStylesCollection.cs: add some columns events, one of
2052         which raises the CollectionChanged event.
2053
2054 2007-04-04  Jackson Harper  <jackson@ximian.com>
2055
2056         * TextControl.cs: When we delete multiple selection lines
2057         invalidate the selection area, don't need to do that for single
2058         lines because the final update view will handle it.
2059
2060 2007-04-04  Jonathan Pobst  <monkey@jpobst.com>
2061
2062         * Control.cs: When we CreateControl, we need to also create all of the
2063         control's children.  The child's OnLoad must also fire before the parent's
2064         OnLoad.  Fixes the toolbox size in PDN.
2065
2066 2007-04-04  Jackson Harper  <jackson@ximian.com>
2067
2068         * TextBoxBase.cs: When the user presses enter, insert a line
2069         ending into the text. (Maybe this would be a good spot for
2070         Environment.NewLine).
2071         * TextControl.cs: Remove undo manager hack, line endings get
2072         inserted properly now.
2073         
2074 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
2075
2076         * MenuAPI.cs: 
2077         - Remove unneeded parameters in UpdateCursor.
2078         - Fix UpdateCursor to check if menu is active.
2079         - Call UpdateCursor when menu deactivate my click.
2080         [Fixes remaining issues from #80410]
2081
2082 2007-04-04  Everaldo Canuto  <everaldo@simios.org>
2083
2084         * Control.cs: GetRealChildAtPoint method added, it make an
2085         recursive child control search for the point. 
2086
2087         * Form.cs: Makes use of GetRealChildAtPoint in mouse event after closes
2088         menu.
2089
2090         * MenuAPI.cs: Makes use of GetRealChildAtPoint in UpdateCursor.
2091
2092 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
2093
2094         * Form.cs: Fix mouse position when send back mouse event after closes
2095         menu.
2096
2097 2007-04-03  Everaldo Canuto  <everaldo@simios.org>
2098
2099         * Form.cs: Simplify the BUTTONDOWN for active tracker.
2100
2101 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
2102
2103         * Control.cs: Fix an issue where if a user resized a control inside
2104         a sizing method like OnResize, we would overwrite their explicit
2105         value.  Also, only call DefaultSize once in the constructor instead
2106         of 4 times.  Also, do not call SetBoundsCore from SetBounds if 
2107         nothing actually changed.
2108
2109 2007-04-03  Jackson Harper  <jackson@ximian.com>
2110
2111         * TextControl.cs: Don't attempt to copy text for lines with no
2112         text in them (technically this shouldn't happen, but we aren't
2113         always inserting line endings when we should be).
2114
2115 2007-04-03  Jackson Harper  <jackson@ximian.com>
2116
2117         * TextBoxBase.cs: Calculate the scrollbars before calculating the
2118         document, because this sets some of the document size properties
2119         that are needed.
2120
2121 2007-04-03  Jackson Harper  <jackson@ximian.com>
2122
2123         * TextBoxBase.cs: We need to calculate maximums even if this is
2124         not a multiline control, because the maxs are used for scrolling.
2125         - Display the caret after doing a page up/down, we need to
2126         manually display it because a proper CaretMoved event isn't
2127         triggered (this is because of the way the math is done to
2128         determine how far to scroll).
2129
2130 2007-04-03  Jonathan Pobst  <monkey@jpobst.com>
2131
2132         * ToolBar.cs: Fix some breakage caused by the SetBoundsCore change.
2133         (ToolBar was relying on SetBoundsCore to default the values sent 
2134         base off of BoundsSpecified.)
2135
2136 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2137
2138         * DateTimePicker.cs: Change Text so that when a null value or empty
2139           string is assigned to the test we always raise ValueChanged and
2140           TextChanged (earlier implementation would only raise ValueChanged
2141           if the current date value was different from DateTime.Now).
2142
2143 2007-04-03  Andreia Gaita <avidigal@novell.com> 
2144
2145         * ButtonBase: Call update after invalidation, fixes #80194
2146
2147 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2148
2149         * ThemeWin32Classic.cs: Draw StatusBar using double buffering. Fixes
2150           #79335.
2151
2152 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2153
2154         * XplatUIX11.cs: SetWMStyles: If the control is a form with
2155           FormBorderStyle = None, don't give the window any decorations.
2156           Fixes #81276.
2157
2158 2007-04-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2159
2160         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
2161         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style
2162           to check for is a mix of several styles (such as WS_CAPTION for
2163           instance).
2164         * Control.cs: Don't paint an area bigger than the client area when
2165           painting the background colour. Add an internal GetCreateParams.
2166           Update calls to XplatUI.CalculateWindowRect due to API change.
2167         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole
2168           window's size, and handle WM_NCCALCSIZE in DefWndProc to calculate
2169           the size if it hasn't been handled by any windows. When creating
2170           and moving windows, X wants the location of the entire window, but
2171           the size of the client window, so add
2172           TranslateClientRectangleToXClientRectangle,
2173           TranslateWindowSizeToXWindowSIze and
2174           TranslatedXWindowSizeToWindowSize to cope with this, and call them
2175           before every window creation and move. Update CalculateWIndowRect
2176           to use Hwnd.GetWindowRect (one step towards removing DeriveStyles).
2177           In AddConfigureNotify don't do anything if the hwnd is a zombie
2178           (fixes the BadWindow we were getting while running the tests),
2179           always calculate the offsets when it's a parentless window, not
2180           only when reparented, and translate the window size, since we're
2181           getting the client size of the whole window, excluding entire
2182           window.
2183         * Theme.cs: Added BorderSizableSize.
2184         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
2185           anymore. Update calls to XplatUI.CalculateWindowRect due to API
2186           chang
2187         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API
2188           change. Fake the window styles here instead of in XplatUIWin32 so
2189           that all back-ends get the same window styles (and it's Form that's
2190           deciding when to use wm, not the Win32 backend anyways)
2191         * Hwnd.cs: Completely reworked GetWindowRectangle and
2192           GetClientRectangle - they are now passed a CreateParams and they
2193           only use Style and ExStyle to determine the rectangles (they should
2194           now work just like Win32AdjustWindowRectEx - though quite a few
2195           special cases are probably missing). They should also be 100%
2196           complimentary (i.e. GetWindowRectangle (GetClientRectangle (rect))
2197           == rect), and all numbers (borders, menu sizes) are taken from the
2198           current theme. Added a GetBorders helper function that will return
2199           the borders for any given CreateParams (including captions and
2200           menus), and GetBorderSize that returns the given border size only.
2201         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
2202           Hwnd.GetClientRectangle.
2203
2204 2007-04-02  Chris Toshok  <toshok@ximian.com>
2205
2206         * DataGridBoolColumn.cs: rewrite things a bit, and fix up the
2207         logic between the values we present to the user and the values
2208         which are stored in the column's property.  Also, don't call
2209         GetPreferredSize - it's virtual. Along the way, fix bug #80965.
2210
2211 2007-04-02  Jackson Harper  <jackson@ximian.com>
2212
2213         * TextBoxBase.cs: Scroll faster!
2214
2215 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
2216
2217         * StatusStrip.cs: Layout fixes for PDN.
2218         * ToolStrip.cs: Set item's available to true, and placement to main when
2219         added.
2220         * ToolStripItem.cs: Fix an Available issue, check that Parent is really
2221         changing in setter before doing any work, add InternalVisible.
2222         * ToolStripPanel.cs: Remove unused variable to fix compiler warning.
2223         * ToolStripSplitStackLayout.cs: If we run out of things to hide, don't
2224         infinite loop.
2225
2226 2007-04-02  Jackson Harper  <jackson@ximian.com>
2227
2228         * TextBox.cs: LBUTTON does not make the textbox select all of it's
2229         text on focus.
2230
2231 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2232
2233         * XplatUIWin32.cs: Use the previous change in SetParent for forms only.
2234           Makes ToolStripComboBoxes show up again.
2235
2236 2007-04-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2237
2238         * ListView.cs: Add a hover_pending field in ListView
2239         to fire just one OnMouseHover event for each MouseEnter/MouseLeave
2240         cycle (we are resetting the MouseHover logic in XplatUI
2241         to handle HoverSelection). Fixes #80429.
2242
2243 2007-04-02  Jackson Harper  <jackson@ximian.com>
2244
2245         * TextControl.cs: Make sure the attributes get set on the last
2246         tag.
2247         - Still have to do the end tag if we have stepped all the ways to
2248         the end.
2249
2250 2007-04-02  Sebastien Pouliot  <sebastien@ximian.com>
2251
2252         * XplatUIOSX.cs, XplatUIX11.cs, XplatUIX11GTK.cs: Remove dependency
2253         on an internal libgdiplus call when the information is already 
2254         available via the public API.
2255
2256 2007-04-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2257
2258         * Control.cs: Call ContainerControl.ChildControlRemoved whenever a
2259           control is removed from a control collecftion.
2260         * XplatUIX11.cs: The first location for toplevel form is (22, 22).
2261           Fixes FormPropertyTest (failed on rare occasions).
2262         * XplatUIWin32.cs: Add a workaround in SetParent for strange behaviour
2263           of Win32SetParent (when changing from no parent to a parent it
2264           might add the new parent's location in screen coordinates to this
2265           window's location).
2266         * Form.cs: Rework ChangingParent once again, now the handle is
2267           recreated whenever a FormWindowManager is added or removed (that is
2268           whenever a normal form is parented or abandoned). Also change
2269           CreateParams so that all non-toplevel windows always get the
2270           specified sice (StartupPosition is never considered for
2271           non-TopLevel forms).
2272         * ContainerControl.cs: Add ChildControlRemoved, the container control
2273           needs to be notified when a control is removed from it's
2274           collection, in the case the removed control is the active control.
2275
2276 2007-04-02  Jackson Harper  <jackson@ximian.com>
2277
2278         * RichTextBox.cs: Use the new methods for setting the font and
2279         color, these methods set the specified attribute without
2280         overriding the other attributes.
2281
2282 2007-04-02  Jonathan Pobst  <monkey@jpobst.com>
2283
2284         * ToolStripPanel.cs: Fixes for better layouts in PDN.
2285
2286 2007-03-31  Gert Driesen  <drieseng@users.sourceforge.net>
2287
2288         * TextBox.cs: Added internal ChangeBackColor method to special-case
2289         Color.Empty. Added check for invalid ScrollBars value.
2290         * TextBoxBase.cs: Added internal ChangeBackColor method.
2291         * RichTextBox.cs: Only set backcolor_set on 2.0 profile. Added
2292         internal ChangeBackColor method to special-case Color.Empty. Added
2293         check for invalid ScrollBars value.
2294
2295 2007-03-30  Everaldo Canuto  <everaldo@simios.org>
2296
2297         * MenuItem.cs: On invalidate prevent form to create handle. [Fixes #81272]
2298
2299 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
2300
2301         * ScollableControl.cs: Add HorizontalScroll and VerticalScroll properties.
2302         * ScrollProperties.cs, HScrollProperties.cs, VScrollProperties.cs: Added.
2303         [Based on submitted patch from Olivier Duff.]
2304
2305 2007-03-30  Jackson Harper  <jackson@ximian.com>
2306
2307         * TextBox.cs: Only select all on initial focus if the user has not
2308         specified a selection area.
2309
2310 2007-03-30  Jonathan Pobst  <monkey@jpobst.com>
2311
2312         * UserControl.cs: Override CreateParams.
2313
2314 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2315
2316         [ Fixes #80995 ]
2317
2318         * XplatUI.cs, XplatUIDriver.cs: Updated CalculateWindowRect parameters.
2319         * CreateParams.cs: Fix IsSet, wasn't working correctly when the style to
2320           check for is a mix of several styles (such as WS_CAPTION for instance).
2321         * Control.cs: Don't paint an area bigger than the client area when painting
2322           the background colour. Add an internal GetCreateParams. Update calls to
2323           XplatUI.CalculateWindowRect due to API change.
2324         * XplatUIX11.cs: In PerformNCCalc set the initial size to the whole window's
2325           size, and handle WM_NCCALCSIZE in DefWndProc to calculate the size if it
2326           hasn't been handled by any windows. When creating and moving windows, X
2327           wants the location of the entire window, but the size of the client
2328           window, so add TranslateClientRectangleToXClientRectangle,
2329           TranslateWindowSizeToXWindowSIze and TranslatedXWindowSizeToWindowSize
2330           to cope with this, and call them before every window creation and move.
2331           Update CalculateWIndowRect to use Hwnd.GetWindowRect (one step towards
2332           removing DeriveStyles). In AddConfigureNotify don't do anything if the
2333           hwnd is a zombie (fixes the BadWindow we were getting while running the
2334           tests), always calculate the offsets when it's a parentless window, not
2335           only when reparented, and translate the window size, since we're getting
2336           the client size of the whole window, excluding entire window.
2337         * Theme.cs: Added BorderSizableSize.
2338         * XplatUIWin32.cs: Fix RECT Height and Width. Don't fake styles here
2339           anymore. Update calls to XplatUI.CalculateWindowRect due to API change.
2340         * Form.cs: Update calls to XplatUI.CalculateWindowRect due to API change.
2341           Fake the window styles here instead of in XplatUIWin32 so that all
2342           back-ends get the same window styles (and it's Form that's deciding when
2343           to use wm, not the Win32 backend anyways)
2344         * Hwnd.cs: Completely reworked GetWindowRectangle and GetClientRectangle -
2345           they are now passed a CreateParams and they only use Style and ExStyle
2346           to determine the rectangles (they should now work just like
2347           Win32AdjustWindowRectEx - though quite a few special cases are probably
2348           missing). They should also be 100% complimentary (i.e. GetWindowRectangle
2349           (GetClientRectangle (rect)) == rect), and all numbers (borders, menu
2350           sizes) are taken from the current theme. Added a GetBorders helper
2351           function that will return the borders for any given CreateParams
2352           (including captions and menus), and GetBorderSize that returns the given
2353           border size only.
2354         * XplatUIOSX.cs: Update calls to CalculateWindowRect and
2355           Hwnd.GetClientRectangle.
2356
2357 2007-03-30  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2358
2359         * Form.cs: Don't layout mdi children on MdiParent creation, the initial
2360           layout of the mdi children is handled by CreateParams. Fixes
2361           #79964,
2362
2363 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
2364
2365         * MenuAPI.cs: Make OnMouseDown returns a boolean to identify if event is
2366         processed.
2367
2368         * Form.cs: When active tracker mouse down is not processed, send event 
2369         back to control inside mouse position. [Fixes #81227]
2370
2371 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
2372
2373         * ComboBox.cs: Override the ComboListBox's ActivateOnShow property and
2374         remove WS_VISIBLE from CreateParams to prevent combobox dropdowns from
2375         stealing focus from the active form on Windows.  (Control will be made
2376         visible in ShowWindow.)
2377
2378 2007-03-29  Mike Kestner  <mkestner@novell.com>
2379
2380         * ImageList.cs : add internal Changed event.
2381         * ListView.cs : hook up to StateImageList.Changed to perform
2382         invalidations when the the state icon list changes. [Fixes #81191]
2383
2384 2007-03-29  Jonathan Pobst  <monkey@jpobst.com>
2385
2386         * ToolTip.cs: Override the ToolTipWindow's ActivateOnShow property
2387         to prevent tooltips from stealing focus from the active form on Windows.
2388
2389 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
2390
2391         * ThemeWin32Classic.cs: Small stetic fixes in notifyicon balloon. 
2392
2393         * ThemeClearlooks.cs: Implement notifyicon balloon for clearlooks theme.
2394
2395 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
2396
2397         * NotifyIcon.cs, ThemeWin32Classic.cs: Icon support added to notifyicon
2398         balloons.
2399
2400 2007-03-29  Jackson Harper  <jackson@ximian.com>
2401
2402         * TextControl.cs: When deleting text from non multiline textboxes,
2403         we need to update the entire document, because line offsets will
2404         be shifting.
2405
2406 2007-03-29  Everaldo Canuto  <everaldo@simios.org>
2407
2408         * XplatUIX11.cs, ThemeWin32Classic.cs, Theme.cs: ShowBalloonWindow method
2409         added to theme, now we can create themes that uses diferent notify engines
2410         like notification-daemon from galago project or growl for Mac OS.
2411
2412 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
2413
2414         * NotifyIcon.cs: Prevent Balloon to show in task bar.
2415
2416 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
2417
2418         * XplatUIX11.cs: Prevent system to open more than one balloon.
2419
2420         * NotifyIcon.cs: Prevent system to open more than one balloon and remove
2421         some compiler warning messages.
2422
2423 2007-03-28  Everaldo Canuto  <everaldo@simios.org>
2424
2425         [Fixes #79149]
2426
2427         * XplatUIX11.cs: Implement SystrayBalloon for X11 systems.
2428
2429         * ThemeWin32Classic.cs, Theme.cs: DrawBalloonWindow and BalloonWindowRect 
2430         implemented, this methods is used by NotifyIcon.BalloonWindow class.
2431
2432         * NotifyIcon.cs: BalloonWindow class added to support Balloon in X11 
2433         systems.
2434
2435 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2436
2437         * ListViewItem.cs: Forgot to make Invalidate internal.
2438
2439 2007-03-28  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2440
2441         * ListView.cs: Add a InvalidateSelection method to
2442         invalidate methods which are currently selected, and call
2443         it when setting FullRowSelect and HideSelection, instead of
2444         calling Redraw.
2445
2446 2007-03-28  Chris Toshok  <toshok@ximian.com>
2447
2448         * XplatUIX11.cs (UnmapWindow): reindent this block.
2449
2450         * DataGrid.cs (UpdateSelectionAfterCursorMove): we need to update
2451         the selection_start if we're moving the selection (that is, not
2452         extending it). Fixes bug #80461.
2453
2454 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
2455
2456         * ProgressBar.cs: Make the default MarqueeAnimationSpeed = 100.
2457         * ToolStripPanel.cs: Fix RowMargin, Renderer, RenderMode, and
2458         create private ControlCollection.
2459
2460 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
2461
2462         * Control.cs: We need to call OnVisibleChanged for our implicit
2463         children as well as our normal children.  Fixes scrollbars in
2464         comboboxes not showing up.
2465
2466 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
2467
2468         * Control.cs, Form.cs: Anywhere we call CreateHandle, we need to do
2469         the check for IsHandleCreated first.  The check in CreateHandle is not
2470         good enough because CreateHandle can be overriden, and the override 
2471         should not be called if the handle is already created.
2472
2473 2007-03-28  Jonathan Pobst  <monkey@jpobst.com>
2474
2475         * ToolStrip.cs: Remove MonoTODO for tooltips.
2476         * ToolStripComboBox.cs: Fix MonoTODO for DropDownHeight and events.
2477         * ToolStripContainer.cs: Add custom ControlCollection class.
2478         * ToolStripContentPanel.cs: Fix Renderer setting to match MS behavior.
2479         * ToolStripDropDown.cs: Add some missing properties/methods.
2480         * ToolStripDropDownMenu.cs: Override OnLayout and SetDisplayedItems.
2481         * ToolStripItem.cs: Remove MonoTODO for tooltips.
2482         * ToolStripManager.cs: Add IsShortcutDefined.
2483         * ToolStripOverflow.cs: Override LayoutEngine.
2484         * ToolStripProgressBar.cs: Add MarqueeAnimationSpeed.
2485         * ToolStripSeparator.cs: Add ImageKey.
2486
2487 2007-03-28  Jackson Harper  <jackson@ximian.com>
2488
2489         * TextControl.cs: If a char delete removes a line ending, we need
2490         to update the ending style.
2491         - Make sure the line ending calcs get called.
2492
2493 2007-03-28  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2494
2495         * XplatUIX11.cs: CreateWindow: Remove old default form location code,
2496           it was making the new code not work. Fixed a typo in the new code
2497           as well. Fixes #79826.
2498
2499 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
2500
2501         * XplatUIWin32.cs:
2502         - NIF_STATE and NIF_INFO added to NotifyIconFlags.
2503         - NOTIFYICONDATA properties sizes fixed, szTip is 128, not 64.
2504         - SystrayBalloon method implemented.
2505         [Add support for notifyicon balloon on win32, #79149]
2506
2507 2007-03-27  Mike Kestner  <mkestner@novell.com>
2508
2509         * ThemeWin32Classic.cs : update StateImageList selection to mirror
2510         the ms behavior when only one image is added to the list.
2511         [Fixes #81191]
2512
2513 2007-03-27  Jackson Harper  <jackson@ximian.com>
2514
2515         * TextControl.cs: Improvements to non multiline line ending
2516         drawing/measuing.
2517
2518 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
2519
2520         * XplatUIX11.cs: Fix the time which tooltip is opened for NotifyIcon. 
2521
2522 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
2523
2524         * NotifyIcon.cs: 
2525         - Balloon message handling added.
2526         - Call XplatUI.SystrayBalloon in ShowBalloonTip. 
2527
2528         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
2529         XplatUIOSX.cs, XplatUIX11-new.cs: ShowBalloonTip method renamed 
2530         to SystrayBalloon to me like other Systray method, also a
2531         handle parameter added.
2532
2533 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2534
2535         * ListView.cs: Show scrollbars even when items.Count == 0
2536         but the columns Width is bigger than the ListView.Width.
2537         Also, when columns.Count == 0 set layout_wd and layout_ht
2538         to the ClientRectangle values, so we don't show any scrollbar
2539         in that case.
2540
2541 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
2542
2543         * XplatUIStructs.cs: Balloon (NIN_BALLOON*) constants added.
2544
2545 2007-03-27  Jackson Harper  <jackson@ximian.com>
2546
2547         * RichTextBox.cs: The RTF library decodes the text properly for us
2548         now.
2549
2550 2007-03-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2551
2552         * ListView.cs: Display HeaderControl even when columns.Count == 0.
2553         * ThemeWin32Classic.cs: Use SystemBrushes.Control to draw the
2554         ListView header (HeaderControl), instead of Control.BackColor.
2555
2556 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
2557
2558         * Control.cs: Call OnVisibleChanged in SetVisibleCore for non-forms.
2559         Fixes tab control issues where controls would not show up because they
2560         never received their OnVisibleChanged call.
2561
2562 2007-03-27  Everaldo Canuto  <everaldo@simios.org>
2563
2564         * NotifyIcon.cs: Balloon events added (BalloonTipClicked, BalloonTipClosed,
2565         BalloonTipShown).
2566
2567 2007-03-27  Jonathan Pobst  <monkey@jpobst.com>
2568
2569         * Control.cs: We won't get a WM_SHOWWINDOW when we create a window that
2570         is maximized or minimized, so move CreateControl to Control.OnVisibleChanged.
2571         * Form.cs: After we set the form visible, send a fake WM_SHOWWINDOW if we
2572         are max or min.  Remove WS_VISIBLE from CreateParams unless we are recreating
2573         the handle.  Fix WindowState by using the internal variable until we are 
2574         sure that we've been shown.
2575         * XplatUIX11.cs: Do not generate a WM_SHOWWINDOW message if new form is
2576         max or min.
2577         [Fixes bug #81198]
2578
2579 2007-03-27  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2580
2581         * XplatUIX11.cs: Windows without WS_CAPTION can still get decorations
2582           (at least borders). Fixes #79386 on Linux (with a small difference
2583           in behaviour: when trying to resize a caption-less window metacity
2584           shows the sysmenu. Resizing is still possible though).
2585         * XplatUIWin32.cs: When setting window styles send request an extra
2586           WM_NCCALCSIZE when it's a form without title (due to no text and no
2587           caption), since Win32 seems to calculate it wrong the first time we
2588           get the message, though the second time things work as they should.
2589         * Form.cs: Reorder a few statements in ChangingParent, otherwise the
2590           newly reparented window might show up unparented. Update
2591           CreateParams to exclude WS_DLGFRAME if ControlBox is false and
2592           there's no title text. Fixes #79386.
2593
2594 2007-03-27  Mike Kestner  <mkestner@novell.com>
2595
2596         * ListBox.cs : don't perform invalidations if the handle hasn't been
2597         created.  [Fixes #80753]
2598
2599 2007-03-27  Mike Kestner  <mkestner@novell.com>
2600
2601         * ListBox.cs : don't adjust top item when SelectedIndex is set to -1.
2602         [Fixes #80428]
2603
2604 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
2605
2606         * XplatUIWin32.cs: Complete NOTIFYICONDATA structure, additional fields 
2607         needed to implement Balloon.
2608
2609 2007-03-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2610
2611         * ListViewItem.cs: In the constructors that take
2612         an array of strings, don't use ListViewSubItemCollection.AddRange
2613         method to add items, since we need to have a different behaviour (in
2614         the constructors we add an item for each null string, opposed to
2615         the behaviour of AddRange, which adds nothing).
2616
2617 2007-03-26  Andreia Gaita  <avidigal@novell.com>
2618
2619         * NumericUpDown.cs: Fix broken 1.1 api for ParseEditText
2620
2621 2007-03-26  Jackson Harper  <jackson@ximian.com>
2622
2623         * TextControl.cs: Draw and measure line endings when in non
2624         multiline mode.
2625         - When searching the text, count the end of the last line as a
2626         word boundary.
2627
2628 2007-03-26  Jackson Harper  <jackson@ximian.com>
2629
2630         * RichTextBox.cs: The selection_start and selection_end don't
2631         really track the correct tags for the selection. So we'll manually
2632         compute the correct tag here.
2633
2634 2007-03-26  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2635
2636         * ProgressBar.cs, ThemeWin32Classic.cs: Implemented drawing of Marquee
2637           and Continuous styles. Fixes #79469.
2638
2639 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
2640
2641         * ToolStrip.cs: Implement Tooltips.
2642         * ToolStripItem.cs: Create internal method for determining tooltip.
2643
2644 2007-03-26  Jonathan Pobst  <monkey@jpobst.com>
2645
2646         * PropertyGrid.cs: Hide a EditorBrowsable attribute from 1.1 API.
2647
2648 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
2649
2650         * NotifyIcon.cs: On disposing verify if icon is visible and hide it,
2651         it prevents a problem thak keeps icon visible after application 
2652         closes on win32.
2653
2654 2007-03-26  Everaldo Canuto  <everaldo@simios.org>
2655
2656         * NotifyIcon.cs: Balloon properties and methods created.
2657
2658         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
2659         XplatUIOSX.cs, XplatUIX11-new.cs: Implement ShowBalloonTip method.
2660
2661 2007-03-25  Jonathan Pobst  <monkey@jpobst.com>
2662
2663         * ToolStripComboBox.cs: Default the ComboBox's FlatStyle to Popup.
2664
2665 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
2666
2667         * Control.cs: Make SetBoundsCore match MS better.  The BoundsSpecified
2668         parameter indicates which aspects were explicit/user-set.
2669         * ComboBox.cs, ListBox.cs: Call SetBoundsCore correctly. (no 0 parameters).
2670
2671 2007-03-24  Jonathan Pobst  <monkey@jpobst.com>
2672
2673         * ProgressBar.cs: Throw AOORE instead of AE for property Value (2.0).
2674         * ScrollBar.cs: Throw AOORE instead of AE for properties LargeChange,
2675         SmallChange, and Value (2.0).
2676         * Timer.cs: Throw AOORE instead of AE for property Interval (2.0).
2677
2678 2007-03-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2679
2680         * ListView.cs: Always set item_control.Width in LayoutDetails
2681         if View is Details. Setting it later in CalculateScrollBars
2682         in a not-so-corner scenario (the sum of columns width is
2683         not bigger than the ListView width when handle is created, and then
2684         that sum gets bigger by increasing the width of the columns)
2685         causes a very weird recursion path (which shouldn't be happening,
2686         since header_control sets it in CalculateScrollBars too). This bug
2687         appeared after Chris' fixes for handle created issues, so probably
2688         it's related to some handle-creation time.
2689
2690 2007-03-23  Chris Toshok  <toshok@ximian.com>
2691
2692         * DataGrid.cs (GetVisibleRowCount): increase the row count in the
2693         case where there's an add row, just so we don't end up in a case
2694         where it's not displayed (this happens when the row is partially
2695         obscured).  Fixes bug #79574.
2696
2697 2007-03-23  Jackson Harper  <jackson@ximian.com>
2698
2699         * TextControl.cs:
2700         * TextBoxBase.cs:
2701         * RichTextBox.cs: Preserve line endings in the lines text buffer,
2702         also added an enum that represents the line ending type. 
2703
2704 2007-03-23  Andreia Gaita  <avidigal@novell.com>
2705
2706         * NumericUpDown.cs: Fix logic so Text and Value properties are not
2707         messed with in every method call, but only from DownButton, 
2708         UpButton, UpdateEditText() and ValidateText. Fixes #80346
2709
2710 2007-03-23  Chris Toshok  <toshok@ximian.com>
2711
2712         * DataGridTextBoxColumn.cs (GetFormattedValue): don't try to
2713         format objects if the format spec is "".  Fixes bug #80889.
2714
2715 2007-03-22  Miguel de Icaza  <miguel@novell.com>
2716
2717         * ToolStripPanel.cs (Join): added stubs to build PDN3
2718
2719         * Control.cs (AutoScrollOffset): Add.
2720
2721         * SystemInformation.cs (MouseWheelScrollDelta): Expose this
2722         property, its only implemented for Win32, on X11 it defaults to
2723         some hardcoded value.
2724
2725         * ToolStripItem.cs (AllowDrop): Add property
2726
2727 2007-03-22  Mike Kestner  <mkestner@novell.com>
2728
2729         * ListView.cs : in FullRowSelect Details mode, only enable box
2730         selection if the user clicks over the "item" column outside of the
2731         text area.  Mmmmm, compatibility.  [Fixes #80374 subpart 7]
2732
2733 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2734
2735         * Control.cs: ChangeParent: Call Form's ChangingParent even if the
2736           handle is not created yet.
2737         * Form.cs: Select: Don't call CreateHandle if the handle is already
2738           created, avoids a stack overflow on Windows when we are recreating
2739           controls.
2740         * ScrollableControl.cs: Set the correct z-order for the scrollbars when
2741           they are made visible, and override AfterTopMostControl to keep
2742           them on top when other controls are brought to front.
2743           CalculateCanvas: Scrollbars are only visible if auto_scroll is true
2744           or force_*scroll_visible is true (old implementation always shows
2745           scrollbars when needed, no matter what auto_scroll was set to).
2746         * InternalWindowManager.cs: UpdateWindowDecorations: Add a
2747           IsHandleCreated check.
2748
2749 2007-03-22  Andreia Gaita  <avidigal@novell.com>
2750
2751         * DataGrid.cs: Implement Column and Row auto sizing when double-clicking on
2752         row or col separator.
2753         * DataGridTextBoxColumn.cs: Implement GetPreferredHeight and GetPreferredSize
2754
2755 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
2756
2757         * MenuAPI.cs: Remove unneeded check for grab_control in UpdateCursor.
2758
2759 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
2760
2761         * MenuAPI.cs: UpdateCursor method added, it is calling in OnMotion to update
2762         cursor for child controls. In ShowWindow and HideWindow now call SetCursor 
2763         every time. Fixes #80410.
2764
2765 2007-03-22  Chris Toshok  <toshok@ximian.com>
2766
2767         * BindingSource.cs (AddNew): partially implement.
2768
2769         remove a couple of NotImplementedException's
2770         to get bug #81148 closed.
2771
2772 2007-03-22  Everaldo Canuto  <everaldo@simios.org>
2773
2774         [Fixes #80380]
2775         
2776         * Control.cs:
2777         - UpdateCursor method added to update the screen cursor.
2778         - GetAvailableCursor method added to return cursor for enabled tree,
2779         it searches for cursor on control and it's parent's for enabled control.
2780         - Call UpdateCursor method on setter of Cursor property.
2781         - On setter of Enabled call UpdateCursor when it is false, we need to
2782         change cursor to normal (or to this parent cursor) because cursor 
2783         setting theres no effect to disabled controls.
2784         - Some minor source changes to follow the coding style guidelines.
2785
2786         * XplatUIX11.cs: In MotionNotify only dispatch SET_CURSOR event for enabled 
2787         controls.
2788
2789 2007-03-22  Chris Toshok  <toshok@ximian.com>
2790
2791         * XplatUIX11.cs: ignore the BadPicture errors cairo+render
2792         generates.
2793
2794 2007-03-22  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2795
2796         * XplatUIX11.cs: Implement default locations for forms.
2797         * Form.cs: Completely rework startup location for forms. Fixes #79964.
2798         * Hwnd.cs: Add previous_child_startup_location (to track the current
2799           startup location for any child forms of the current form) and
2800           previous_main_startup_location (to track the startup location for
2801           the current toplevel form).
2802
2803 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
2804
2805         * Control.cs: Don't trigger a layout if an implicit control is added
2806         that isn't visible.  Also, don't notify the owner when an implicit control
2807         is added.  (Owners shouldn't even know about their implicit controls.)
2808
2809 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
2810
2811         * ScrollableControl.cs: Add implicit controls with AddRangeImplicit
2812         to save some re-layouts.
2813
2814 2007-03-21  Everaldo Canuto  <everaldo@simios.org>
2815
2816         * MenuAPI.cs: In ProcessKeys returns false when key is not processed.
2817         [Fixes #81203]
2818
2819 2007-03-21  Jonathan Pobst  <monkey@jpobst.com>
2820
2821         * FlowLayoutSettings.cs, ToolStrip.cs, ToolStripPanel.cs,
2822         ToolStripPanelRow.cs: Lazy instantiate the LayoutEngine.
2823
2824 2007-03-21  Mike Kestner  <mkestner@novell.com>
2825
2826         * ListView.cs : disable selection update for non-left button clicks
2827         with mods and over selected items.  [Fixes #80524]
2828
2829 2007-03-20  Jackson Harper  <jackson@ximian.com>
2830
2831         * TextControl.cs:
2832         * TextBoxBase.cs: Allow different types of line endings. \r, \r\n,
2833         \r\r\n, \n.
2834
2835 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2836
2837         * ComboBox.cs: PreferredHeight seems to be ItemHeight + 6, but there is
2838           very probably a more complicated calculation there. Update the
2839           textbox' ForeColor and BackColor when the ComboBox' colors are
2840           changed. Change the border change in LayoutComboBox to only affect
2841           the textbox, not all the calculations there. Seems to fix most of
2842           #79436.
2843
2844 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2845
2846         * ComboBox.cs: Handle Home and End keys as well as all combinations of
2847           modifiers + navigation keys as input keys, enables advanced text
2848           selection in the combobox (like Shift+Left Arrow for instance).
2849           ComboTextBox now overrides Focused and returns whatever
2850           ComboBox.Focused returns, since it really should be focused
2851           whenever the ComboBox is. Fixes #80795. Also make the border around
2852           the text box one pixel bigger, as mentioned in #79436.
2853
2854 2007-03-20  Jackson Harper  <jackson@ximian.com>
2855
2856         * TreeView.cs: Don't offset the images, this was causing some
2857         artifacts when expanding/collapsing with images that were the
2858         exact height of the treenode.
2859
2860 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2861
2862         * TrackBar.cs: Query the theme for the correct value when the mouse
2863           moves and the thumb is pressed. 
2864         * Theme.cs: Added TrackBarValueFromMousePosition
2865         * ThemeWin32Classic.cs: Reworked TrackBar drawing. Earlier
2866           implementation was updating the trackbar value when drawing, now
2867           the drawing methods only draw. Fixes #80900. Refactored the
2868           calculations out to TrackBarValueFromMousePosition and
2869           GetTrackBarDrawingInfo, so that TrackBar can get the correct value
2870           according to the mouse position whenever it wants to. Changed the
2871           light coloured pen when drawing the thumb from ControlLight to
2872           ControlLightLight, because the ControlLight is the same colour as
2873           the background so the 3D effect is lost. 
2874
2875 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
2876
2877         * Form.cs: In ShowDialog uses MainForm as transient form when no form is
2878         defined. Fixes #80784.
2879
2880 2007-03-20  Marek Habersack  <mhabersack@novell.com>
2881
2882         * ContextMenuStrip.cs: align with the change introduced in
2883         revision 74664.
2884
2885 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
2886
2887         * XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs, 
2888         XplatUI.cs, Form.cs, ToolTip.cs: Remove unneeded parameter owner 
2889         in SetTopmost.
2890
2891 2007-03-19  Chris Toshok  <toshok@ximian.com>
2892
2893         * Control.cs (WmPaint): don't make use of the Handle property
2894         after an event is emitted, as the user could have closed the
2895         form/destroyed the control.  Store the Handle in a local variable
2896         and make use of that.  Fixes bug #80768.
2897
2898 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
2899
2900         * XplatUIX11.cs: Set _NET_WM_STATE_ABOVE on SetTopmost, it fixes Topmost
2901         behavior in X11 environments.
2902
2903 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
2904
2905         * Form.cs: Call SetTopmost in CreateHandle when window is topmost, its
2906         because on setter of topmost we dont call SetTopmost when handle is not
2907         created.
2908
2909 2007-03-20  Jackson Harper  <jackson@ximian.com>
2910
2911         * TextControl.cs: Need to use SelectionLength () not
2912         selection_length, since that var is reset to -1.
2913         - Draw the caret when we don't have focus.
2914         * TextBox.cs: The selectall actually doesn't occur until the first
2915         focus.
2916         * TextBoxBase.cs: Need to update the caret position after a
2917         selectall.
2918         
2919 2007-03-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2920
2921         * ListView.cs: Enable scrolling when using Tile view.
2922
2923 2007-03-20  Everaldo Canuto  <everaldo@simios.org>
2924
2925         [Fixes #80902]
2926
2927         * XplatUIDriver.cs: Abstract SetOwner method created.
2928
2929         * XplatUIOSX.cs: Override SetOwner to prevent compilation errors method 
2930         must be implemented and was masked as todo.
2931
2932         * XplatUIWin32.cs: SetOwner implemented using SetWindowLong with 
2933         GWL_HWNDPARENT.
2934
2935         * XplatUIX11.cs: SetOwner implemented using same code from SetTopmost but 
2936         cheking for null owner to remove transient. The SetTopmost will be change
2937         on a decond step.
2938
2939         * Form.cs: In set_Owner and CreateHandle uses new SetOwner instead of
2940         SetTopmost. Now owned forms will work properly in win32 and X11.
2941
2942 2007-03-20  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2943
2944         * MdiWindowManager.cs: Update function name.
2945         * Form.cs: After closing a form MdiParent is always null.
2946         * MdiClient.cs: Rename CloseChildForm to ChildFormClosed to explain
2947           better what it should do: necessary book-keeping when the form is
2948           closed, it should not close the form itself.
2949
2950 2007-03-19  Andreia Gaita  <avidigal@novell.com>
2951
2952         * ListViewItem.cs: Fix back and fore color. The subitems only
2953         use their own colors if they are set, otherwise use the listview's
2954         colors. Don't set default colors on constructor for subitem.
2955         Fixes #79315.
2956
2957 2007-03-19  Mike Kestner  <mkestner@novell.com>
2958
2959         * ListView.cs : make box selection for Details views with 
2960         FullRowSelect conform to MS behavior when clicking in the "item" 
2961         column and clicking outside the defined columns.
2962         [Fixes case 5-6 of #80374]
2963
2964 2007-03-19  Chris Toshok  <toshok@ximian.com>
2965
2966         * ScrollableControl.cs: create the controls from within the ctor,
2967         but don't actually add them until our handle is created.  this
2968         fixes a NRE possibility jpobst found (if you override OnLayout in
2969         a subclass, it's called before your ctor).  Also, add a
2970         IsHandleCreated guard to UpdateSizeGripVisibility as well.
2971
2972 2007-03-19  Jackson Harper  <jackson@ximian.com>
2973
2974         * TextBox.cs: Reduce the amount of invalidation we do.
2975         * TextBoxBase.cs: Make shortcuts enabled true by default, at least
2976         some of them are true by default on MS.
2977         - Add some functions to reduce the amount of invalidates we do.
2978         * TextControl.cs: Less invalidation.
2979
2980 2007-03-19  Chris Toshok  <toshok@ximian.com>
2981
2982         [ Fixes #81773, and *seems* to fix #81553 as well ]
2983
2984         * XplatUIX11.cs: remove the assignment of hwnd.zombie = true from
2985         AccumulateDestroyedHandles.  We need to do it *after* we send
2986         WM_DESTROY, as the user's code can access Control.Handle in
2987         OnHandleDestroyed, and this shouldn't cause a recreation.  Also,
2988         move the WM_DESTROY/zombie handling to before the call to
2989         XDestroyWindow.  For some reason without this ordering
2990         FormTest.RecreateHandle hangs.  This ordering is semantically
2991         equivalent, however, as XDestroyWindow is async anyway.
2992
2993 2007-03-19  Gert Driesen  <drieseng@users.sourceforge.net>
2994
2995         * RichTextBox.cs: Reset backcolor_set after setting default.
2996
2997 2007-03-19  Chris Toshok  <toshok@ximian.com>
2998
2999         * ScrollableControl.cs: the scroll position should not effect the
3000         canvas size.  commit patch from georgegiolfan@yahoo.com, which
3001         fixes some really bizarre behavior on resizing.  Fixes bug #80778.
3002         
3003 2007-03-19  Chris Toshok  <toshok@ximian.com>
3004
3005         * ScrollableControl.cs: clean this up a bit.  create the
3006         scrollbars in the ctor and just show/hide them as needed.  Also,
3007         make hscroll_visible/vscroll_visible internal to Recalculate, and
3008         just use hscrollbar.VisibleInternal/vscrollbar.VisibleInternal
3009         everywhere else.  This seems to fix the scrollbars appearing
3010         beneath the content for me (i have *no* idea why that is,
3011         however.)
3012
3013 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
3014
3015         * ToolStrip.cs: Don't call DoAutoSize when we change Dock.  Also, remove
3016         some redundacy for stuff in Anchor and Dock that base will take care of.
3017         [Fixes #80762]
3018
3019 2007-03-19  Mike Kestner  <mkestner@novell.com>
3020
3021         * ListView.cs : make box selection for Details views without 
3022         FullRowSelect dependent on the text bounds, not item bounds.
3023         * ListViewItem.cs : add an internal property to obtain the TextBounds
3024         in Details view.  [Fixes case 1-4 of #80374]
3025
3026 2007-03-19  Andreia Gaita  <avidigal@novell.com>
3027
3028         * PaintEventArgs.cs (Dispose): Only dispose of graphics object if
3029         we're < 2.0. #78448 && #80316
3030
3031 2007-03-19  Jonathan Pobst  <monkey@jpobst.com>
3032
3033         * FontDialog.cs: Don't crash when we switch to a new font that doesn't
3034         have the same style available as the previously selected one.  Also,
3035         support FixedPitchOnly property.  [Fixes bugs #80918, #80947]
3036
3037 2007-03-19  Jackson Harper  <jackson@ximian.com>
3038
3039         * TextControl.cs: Add an alignment property that all new lines
3040         will be given.
3041         - Make sure to use the align shift when calculating the line's X
3042         position.
3043         * TextBox.cs: Set the alignment on the document as well as on all
3044         the document lines.
3045
3046 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3047
3048         * Control.cs: ControlCollection.Add: Remove a couple of duplicated casts and
3049           throw if setting the parent of an mdichild that already has an
3050           mdiparent. Update signature for 2.0 profile. ProductName: If there's no
3051           AssemblyProductAttribute in the assembly, use the type's namespace (as
3052           MS seems to do). CreateControl: don't create the handle if the control
3053           is not visible (according to MS behaviour and spec).  SetTopLevel: Only
3054           create handle if the control is not a form. Change FocusInternal to
3055           virtual so that it can be overriden by Form.
3056         * TextBox.cs: Update call to FocusInternal.
3057         * Form.cs: Always create the handle when calling Focus on a MdiChild. The
3058           form is not a toplevel form when it's a mdi child, so update is_toplevel
3059           accordingly. ShowIcon/TransparencyKey: avoid creating the handle if it
3060           hasn't been created. Show (IWin32Window): Don't allow this overload for
3061           toplevel windows. CenterToParent/CenterToScreen/Select: create the
3062           handle as MS does. SetVisibleCore: if called on a MdiChild and the
3063           parent isn't visible yet, save the visibility and restore it when the
3064           parent is made visible.
3065         * ScrollableControl.cs: Refactor out scrollbar visibility code to separate
3066           methods, since the visibility of the scrollbars can be changed from
3067           several places, not only from AutoScroll.
3068           [Fixes #81179]
3069
3070 2007-03-19  Jackson Harper  <jackson@ximian.com>
3071
3072         * RichTextBox.cs: Enable shortcuts by default.
3073         * TextBoxBase.cs: Add conditional shortcuts.  
3074
3075 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
3076
3077         * MenuItem.cs: Dont call OnDrawItem when OwnerDraw is false (#81182).  
3078
3079 2007-03-19  Chris Toshok  <toshok@ximian.com>
3080
3081         [ Fixes bug #80604]
3082         
3083         * XplatUIX11.cs (WaitForHwndMessage): change this to actually
3084         swallow the message we're waiting on, instead of delivering it, as
3085         this is only used for the WM_SHOWWINDOW raised from
3086         MapWindow/UnmapWindow, and the message needs to be generated
3087         (MapWindow, UnmapWindow): generate the WM_SHOWWINDOW message
3088         before doing the Map/Unmap.  Also make sure that the Hwnd is still
3089         alive after the message has been handled.
3090
3091         *before* the window is shown.
3092
3093         * Control.cs (CreateControl): guard a few more things inside the
3094         if (!is_created) block, as we might end up being called again -
3095         yay .net.
3096         (WmShowWindow): call CreateControl if we're showing the control.
3097
3098 2007-03-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3099
3100         * Control.cs: Fix 2.0 signature for Invoke. Support invoking on
3101           controls without a handle if they have any parent with a handle. In
3102           Dispose add a check whether the handle is created or not before
3103           calling BeginInvoke, this removes the need of the extra disposing
3104           parameter (which was bogus anyway since it didn't prevent the
3105           invoke from happening, it only skipped the check for an existing
3106           handle, meaning that the invoke would call on an inexistent
3107           handle).
3108
3109 2007-03-19  Everaldo Canuto  <everaldo@simios.org>
3110
3111         * MessageBox.cs: Remove WS_POPUP from CreateParams style, with it form
3112         appears in taskbar.
3113
3114 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
3115
3116         * MessageBox.cs:
3117         - Fixed a problem that dont show help button for messages with 3 buttons.
3118         - Refactory button size and position calculations, now dont use fixed 
3119         values, also fixed button sizes (#80043) and form's border space.
3120         - AddButton method created, now all other AddButton methods call this one.
3121         - Some other source code cosmetic changes.
3122
3123 2007-03-18  Jackson Harper  <jackson@ximian.com>
3124
3125         * RichTextBox.cs: Don't do this all fonts must match check if
3126         there is only one char selected.
3127
3128 2007-03-18  Jackson Harper  <jackson@ximian.com>
3129
3130         * TreeView.cs: ScrollWindow works properly now, so we don't need
3131         to screw around with the scroll area.  This fixes some artifacts
3132         when expanding and collapsing.
3133
3134 2007-03-18  Jackson Harper  <jackson@ximian.com>
3135
3136         * TextBoxBase.cs: Allow updating the selection position when the
3137         cursor is outside the textarea, but we have a capture.
3138         * TextControl.cs: A special case for when the cursor is outside
3139         the bounds of the TB.
3140         
3141 2007-03-18  Jackson Harper  <jackson@ximian.com>
3142
3143         * TextBoxBase.cs: Remove image pasting code for now.  There is no
3144         way to get an image on the clipboard right now anyways.
3145         * TextControl.cs:
3146         * RichTextBox.cs: Use the new RTF Picture class for pictures.
3147
3148 2007-03-18  Everaldo Canuto  <everaldo@simios.org>
3149
3150         * MessageBox.cs:
3151         - Set window properties in constructor intead of on CreateParams.
3152         - Remove topmost from Window ExStyle.
3153         - Set ShowInTaskbar to false.
3154         - Set form border to FixedDialog.
3155         - Some cosmetic changes and remove unneeded comments.
3156         - It fixes itens 2,3 and 4 of bug #80043.
3157
3158 2007-03-18  Gert Driesen  <drieseng@users.sourceforge.net>
3159
3160         * TextBoxBase.cs: In setter for ReadOnly, only chance BackColor if
3161         none was explicitly set. Fixes part of bug #79949.
3162
3163 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
3164
3165         * ToolStripComboBox.cs: Add AutoComplete*.
3166
3167 2007-03-16  George Giolfan  <georgegiolfan@yahoo.com>
3168
3169         * ToolStripComboBox.cs: Add FlatStyle.
3170
3171 2007-03-16  Jonathan Pobst  <monkey@jpobst.com>
3172
3173         * ToolStrip.cs, ToolStripProfessionalRenderer.cs,
3174         ToolStripSplitStackLayout.cs: Implement some basic vertical toolbar support.
3175
3176 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3177
3178         * ButtonBase.cs, ToolStrip.cs, SendKeys.cs, TextRenderer.cs,
3179           CheckBox.cs, RadioButton.cs, BindingSource.cs,
3180           DataGridColumnStyle.cs: Remove warnings.
3181
3182 2007-03-16  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3183
3184         * Menu.cs: MergeMenu: Check menu argument for null before looping over
3185           it.
3186         * MdiWindowManager.cs: Add IsVisiblePending to track the pending
3187           visibility of mdi child forms. FormSizeChangedHandler: update the
3188           maximized size if size has changed while maximized.
3189         * MdiClient.cs: SizeScrollbars/ArrangeWindows/ActivateChild: Avoid
3190           creating the handle.
3191         * InternalWindowManager.cs: UpdateBorderStyle/FormSizeChangedHandler:
3192           avoid creating the handle if not created.
3193         * XplatUI.cs: Update debug output.
3194         * XplatUIStructs.cs: Added ToString's for a couple of structs.
3195
3196 2007-03-16  Jonathan Pobst <monkey@jpobst.com>
3197
3198         * ContainerControl.cs: Give ToolStripManager the opportunity to handle
3199         ProcessCmdKey().
3200         * ToolStripDownItem.cs, ToolStripItem.cs, ToolStripItemCollection.cs, 
3201         ToolStripItemEventType.cs, ToolStripManager.cs, ToolStripMenuItem.cs:
3202         Implement keyboard shortcuts.
3203
3204 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
3205
3206         * CommonDialog.cs: Set StartPosition to CenterScreen on form's constructor.
3207         Fixes #79560 and #80200, it also fix problem in FileDialog, SaveDialog, 
3208         ColorDialog and all derived classes.
3209
3210 2007-03-15  Everaldo Canuto  <everaldo@simios.org>
3211
3212         [ Fixes bug #79828 ]
3213
3214         * ToolBar.cs:
3215         - Rename ToolBarButtonInfor to ToolBarItem.
3216         - Add all layout and calculation stuff gtom ToolBarButton to ToolBarItem.
3217         - Maintain an array of ToolBarItem, used instead of ToolBarButton
3218         collection to be able add same button more than one time on a toolbar.
3219         - Refactory all properties and methods to use ToolBarItem. 
3220
3221         * ToolBarButton.cs: 
3222         - Remove all propeties and methods that is now in ToolBarItem.
3223         - Rectangle propery now gets the rectangle from first ToolBarItem to
3224         mimic win32 behavior.
3225         - Size calculation and layout methods also removed.
3226
3227         * ThemeWin32Classic.cs: Change all ToolBar drawing methods to receive
3228         ToolBarItem instead of ToolBarButton to right drawing buttons when
3229         same button/separator was added more than one time to ToolBar.
3230
3231         * ThemeNice.cs: Same as above. 
3232
3233 2007-03-15  Andreia Gaita  <avidigal@novell.com>
3234
3235         * XplatUIX11.cs: Fire extra MouseMove events right after
3236         MouseDown and MouseUp, emulating win32's <censored> behaviour
3237         for apps that rely on it.
3238
3239 2007-03-15  Jackson Harper  <jackson@ximian.com>
3240
3241         * TextControl.cs:
3242         * TextBoxBase.cs: On MS, a fixed single border is not in NC area,
3243         it is drawn on the controls client window and there is no NC
3244         area.
3245         - Set the background color to gray on 2.0 when we are readonly.
3246
3247 2007-03-15  Chris Toshok  <toshok@ximian.com>
3248
3249         [ Fixes bug #81144 ]
3250         
3251         * XplatUIX11.cs: implement VirtualScreen independently of
3252         WorkingArea, by querying the _NET_DESKTOP_GEOMETRY root window
3253         property.
3254
3255 2007-03-15  Chris Toshok  <toshok@ximian.com>
3256
3257         * Hwnd.cs: add an internal field for the cached_window_state.
3258
3259         * XplatUIX11.cs: cache the window state, invalidating the cache
3260         (and thus re-querying the X server) only when we see an update to
3261         the _NET_WM_STATE property.
3262
3263 2007-03-15  Chris Toshok  <toshok@ximian.com>
3264
3265         * BindingSource.cs: get a lot of the unit tests working.
3266
3267 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
3268
3269         * Control.cs: Modify UpdateStyles to store distances when bounds >=
3270         0 instead of just bounds > 0.  [Fixes bug #80912]
3271
3272 2007-03-15  Jonathan Pobst  <monkey@jpobst.com>
3273
3274         * ToolStrip.cs, ToolStripItem.cs: Implement several new properties
3275         and methods.
3276
3277 2007-03-15  Ivan N. Zlatev <contact@i-nz.net>
3278         
3279         * ComboBox.cs, Control.cs, XplatUIStructs.cs, XplatUIX11GTK.cs,
3280         XplatUIX11.cs, XplatUIWin32.cs, InternalWindowManager.cs,
3281         XplatUIOSX.cs, TextControl.cs: Replaces all uses of the custom
3282         WM_MOUSE_LEAVE with the system WM_MOUSELEAVE message.
3283
3284 2007-03-15  Chris Toshok  <toshok@ximian.com>
3285
3286         [ Fixes #81101 ]
3287         
3288         * Control.cs: add Ivan's fix for 81101, with a slight modification
3289         - you can set control.Target to null.
3290
3291 2007-03-14  Jonathan Pobst  <monkey@jpobst.com>
3292
3293         * ToolStripItem.cs: If our OwnerItem is null, we can't use 
3294         HideDropDown, use Hide instead to prevent an NRE.
3295         [Fixes bug #81147]
3296
3297 2007-03-14  Jackson Harper  <jackson@ximian.com>
3298
3299         * TextBoxBase.cs: Mess with the creation stuff a little. We need
3300         to calculate the document before the handle is created, in some
3301         cases. (Actually just one case).
3302
3303 2007-03-14  Jackson Harper  <jackson@ximian.com>
3304
3305         * TextBoxBase.cs: Need to display the caret after letting the base
3306         wndproc handle the focus methods, because the caret display
3307         methods check the focus state.
3308         - Try to display the caret after updating it's position with SelectWord.
3309         - Don't need to do an immediate update on this recalc, since there
3310         will be an invalidate anyways.
3311
3312 2007-03-14  Jackson Harper  <jackson@ximian.com>
3313
3314         * TreeView.cs: Some workarounds so that we can match event order a
3315         little better.
3316
3317 2007-03-14  Gert Driesen  <drieseng@users.sourceforge.net>
3318
3319         * ErrorProvider.cs: Invoke default ctor from 2.0-only ctor. Fixes bug
3320         #80803. Avoid NullReferenceException when Control does not have
3321         parent. Fixed different blinkstyle issues. Only subscribe to Tick
3322         event a single time. Only draw error icon when control is created and
3323         visible. Fixes failing unit tests.
3324
3325 2007-03-14  Andreia Gaita  <avidigal@novell.com>
3326
3327         * TabControl.cs: Add support for 2.0 Deselecting, Deselected and
3328         Selecting events. Fire Leave and Enter events when changing tabs.
3329
3330 2007-03-14  George Giolfan  <georgegiolfan@yahoo.com>
3331
3332         * TreeView.cs: Add TreeViewNodeSorter.
3333         * TreeNodeCollection.cs: Add sorter parameter to Sort method.
3334
3335 2007-03-14  Chris Toshok  <toshok@ximian.com>
3336
3337         * Form.cs: go ahead and remove the RecreateHandles that jpobst
3338         removed earlier and I had him add back it.  It turns out metacity
3339         *does* in fact handle the MOTIF_WM_HINTS property changing, it
3340         just doesn't redraw the window titlebar until you resize the
3341         window.  This also means we aren't recreating the entire window
3342         hierarchy on X when you change this property.  And it looks better
3343         on windows, too.
3344
3345 2007-03-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3346
3347         * ListViewItem.cs:
3348         * ListView.cs: Collecting selection information
3349         is now done in SelectedIndexCollection rather than in
3350         SelectedListViewItemCollection. This is done so we can
3351         have the selection information code in one single place
3352         (virtual mode selection information entirely depends on
3353         SelectedIndexCollection).
3354
3355 2007-03-13  Miguel de Icaza  <miguel@novell.com>
3356
3357         * ErrorProvider.cs: Add stubs for ISupportInitialize
3358
3359 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3360
3361         * ListViewItem.cs: Trigger the ItemCheck and ItemChecked events
3362         in the right order with the right values, from the Checked property, 
3363         just as MS does (instead of triggering them from ListView).
3364
3365         * ListView.cs: Make OnItemCheck and OnItemChecked internal.
3366
3367 2007-03-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3368
3369         * ListView.cs: Implement ItemChecked 2.0 event. Also cast to 
3370         the correct handler in OnItemCheck method (ItemCheckEventHandler 
3371         instead of EventHandler). This used to throw an InvalidCastException.
3372
3373 2007-03-13  Jackson Harper  <jackson@ximian.com>
3374
3375         * TextBoxBase.cs: Calculate the document before the handle is
3376         created, so there isn't an extra invalidate called.
3377
3378 2007-03-13  Jonathan Pobst  <monkey@jpobst.com>
3379
3380         * Form.cs: Don't set owner in ShowDialog until we are sure
3381         that we aren't going to throw an exception.  [Fixes bug #80773]
3382
3383 2007-03-12  George Giolfan  <georgegiolfan@yahoo.com>
3384
3385         * TreeView.cs: Make it compile.
3386
3387 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
3388
3389         * Control.cs: Another place we don't call SizeFromClientSize.
3390         * Form.cs: Another place we don't call SizeFromClientSize.
3391         [Fixes bug #81125]
3392
3393 2007-03-12  Jackson Harper  <jackson@ximian.com>
3394
3395         * TreeView.cs: Basically emulating some strangness here with
3396         exanding nodes and setting node positions when windows aren't
3397         created.
3398         - Also attempting to walk the node tree less than previously, and
3399         just use visible order calculations for determining offsets.
3400         - oops made scrolling backwards.
3401         * TreeNode.cs: We need to start nodes with a zero visible order,
3402         because the order calcs are based on the first nodes order.
3403
3404 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
3405
3406         * Form.cs: Don't exit the program if RecreateHandle is called on
3407         the main form.
3408
3409 2007-03-12  Chris Toshok  <toshok@ximian.com>
3410
3411         * XEventQueue.cs: remove the use of PostQuitState.
3412
3413         * XplatUIX11.cs: remove the use of PostQuitState.  If we get a
3414         WM_QUIT message in GetMessage, return false (and if we're in the
3415         nested WaitForHwndMessage, repost the WM_QUIT message).
3416
3417 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
3418
3419         * Form.cs: Don't call RecreateHandle when we change the MinimizeBox
3420         or the MaximizeBox properties.  [Part of bug #80640]
3421
3422 2007-03-12  Everaldo Canuto  <everaldo@simios.org>
3423
3424         * LinkLabel.cs: When calculate pieces make LinkArea empty if theres
3425         no links.
3426
3427 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
3428
3429         * ToolStripItem.cs: Fix some tests I broke by checking Visible
3430         instead of visible.
3431
3432 2007-03-12  Gert Driesen  <drieseng@users.sourceforge.net>
3433
3434         * FileDialog.cs: Use text of File name combobox to determine what
3435         files the user selected. Added tokenizer to parse the file names.
3436         Fixes bug #81123.
3437
3438 2007-03-12  Jonathan Pobst  <monkey@jpobst.com>
3439
3440         * Control.cs: We can't call SizeFromClientSize in the constructor,
3441         but we still need to do the same work, so make an internal version.
3442         [Fixes bug #80621]
3443
3444 2007-03-12  Jackson Harper  <jackson@ximian.com>
3445
3446         * TreeView.cs:
3447         * TreeNode.cs:
3448         * OpenTreeNodeEnumerator: Match MS better for IsVisible and
3449         IsExpanded.
3450
3451 2007-03-12  Jackson Harper  <jackson@ximian.com>
3452
3453         * TextBoxBase.cs: Now that the handles are being created a little
3454         later, we need to make sure that the document is recalculated when
3455         the handle is created.
3456
3457 2007-03-11  Everaldo Canuto  <everaldo@simios.org>
3458
3459         * Theme.cs: GetLinkFont abstract method added.
3460         
3461         * LinkLabel.cs: 
3462         - Remove CalcTrimRectangle, no longer needed.
3463         - Factor also remove, position issues must be fixed in libgdiplus.
3464         - Move GetPieceColor to ThemeWin32Classic.cs as it is theme related.
3465         - GetPieceFont, CreateLinkFont and link_font removed, theme must be 
3466         care about font used to draw links.
3467         - Set TabStop to true when control is "Selectable", control is selectable
3468         when have one or more links. Fixes #80501 (test case is also added).
3469         - Set the LinkArea values after links change, LinkArea values must be
3470         based in first link position and size, a test case was created.
3471         - Fix ControlStyles.Selectable value, now is based on LinkArea value, 
3472         the attribute must be true LinkArea.Length > 0. The same was applied to
3473         TabStop.
3474         
3475         * ThemeWin32Classic.cs: 
3476         - LinkLabelGetPieceColor and LinkLabelGetPieceFont created and used 
3477         in draw method.
3478         - Use CPDrawStringDisabled to draw disabled text instead of hard code 
3479         color change.
3480         - Draw focus rectangle for every parts focused, including parts that 
3481         is on another line, its because regions returns various rectangles
3482         and not only one. Needed to mimic W32 look.
3483         - Uses Graphics.Clip to delimite region painted, it mean that now 
3484         complete text is passed to DrawString, with this we solve layout
3485         issues without create another text renderer.
3486         - Uses Region.Intersect to fix some flickers problems, now only needed
3487         parts will redrawed.
3488         - This changes fixes #79614 and some other unreported issues, on Linux 
3489         some layout problems still remain, the problem is under 
3490         MeasureCharacterRanges but it is an libgdiplus bug.
3491
3492 2007-03-10  Gert Driesen  <drieseng@users.sourceforge.net>
3493
3494         * TextBox.cs: Set for foreground color.
3495         * TextBoxBase.cs: Remove Invalidate when setting BackColor, since
3496         this is already done in Control.
3497
3498 2007-03-10  Jackson Harper  <jackson@ximian.com>
3499
3500         * TextBox.cs: Set the background color, but reset the
3501         backcolor_set flag which is just for the user setting the
3502         background color.
3503
3504 2007-03-09  Chris Toshok  <toshok@ximian.com>
3505
3506         * Control.cs: really remove the call to XplatUI.SetVisible from
3507         CreateHandle(), like I said I did when I merged the branch.
3508
3509         * BindingSource.cs: implement some more of this stuff.
3510
3511 2007-03-09  Jackson Harper  <jackson@ximian.com>
3512
3513         * TextBox.cs: Don't explicitly set our background colors.
3514         * TextControl.cs:
3515         * TextBoxBase.cs: Draw readonly text.
3516         - Need to invalidate when backcolor or readonly are changed.
3517         
3518 2007-03-09  Jackson Harper  <jackson@ximian.com>
3519
3520         * TextBoxBase.cs: Don't set the forecolor until the handle is
3521         created.
3522         - Do not raise OnPaint, and removed some old debug code.
3523
3524 2007-03-09  George Giolfan  <georgegiolfan@yahoo.com>
3525
3526         * ScrollableControl.cs: Fix mouse wheel scrolling.
3527
3528 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
3529
3530         * Control.cs: Wire up MouseDoubleClick event.
3531
3532 2007-03-09  Jonathan Pobst  <monkey@jpobst.com>
3533
3534         * ToolStrip.cs: Rework AutoSize to adjust height when docked to the
3535         top or bottom.
3536         * ToolStripItem.cs: Make Image drawing take ImageScaling into account.
3537         * ToolStripItemCollection.cs: Don't call owner.PerformLayout when a new
3538         item is added.  This logic was moved to ToolStrip.OnItemAdded.
3539         [Fixes bug #81090]
3540
3541 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3542
3543         * ListVieItem.cs: SetIndex is only valid for 2.0 profile by now.
3544
3545 2007-03-08  Jackson Harper  <jackson@ximian.com>
3546
3547         * TreeView.cs: Show the correct image for selected node (this used
3548         to work, not sure how the code got deleted). Also implemented 2.0 feature
3549         SelectedImageKey.
3550
3551 2007-03-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3552
3553         * ListView.cs:
3554         * ListViewItem.cs: Cache index in items when retrieving them
3555         in VirtualMode.
3556
3557 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
3558
3559         * ToolStripItem.cs: Don't return the explicit_size if we are using 
3560         AutoSize.  Fixes invalidation issue when user has explicitly set a
3561         size and has AutoSize = true.
3562
3563 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
3564
3565         * XplatUIX11.cs: Hardcode FrameBorderSize value temporarily to fix MWF.
3566
3567 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
3568
3569         * DataGridView.cs: Remove event handler from DataView when a
3570         DataTable is used as DataSource.
3571
3572 2007-03-08  Jonathan Pobst  <monkey@jpobst.com>
3573
3574         * Control.cs: Create internal setter for client_size to allow it to be
3575         set without triggering resizing code.
3576         * Form.cs: Calculate client_size in constructor, only change client_size
3577         in FormBorderStyle property if Handle has been created.
3578         [Fixes #80574, #80791]
3579
3580 2007-03-08  George Giolfan  <georgegiolfan@yahoo.com>
3581
3582         * SystemInformation.cs: Add TerminalServerSession.
3583
3584 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
3585
3586         * TreeViewDrawMode.cs: Make internal for 1.1 to allow for consolidated
3587         TreeView code.
3588
3589 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
3590
3591         * XplatUIWin32.cs: The no_activate stuff was forcing us to create a
3592         Handle before we were supposed to.  Now checks ActivateOnShow property
3593         in Control.
3594         * Control.cs: Add internal ActivateOnShow property.
3595         * ComboBox.cs, Form.cs, MenuAPI.cs, ToolStripDropDown.cs: Return false
3596         for ActivateOnShow.
3597         * Hwnd.cs Remove no longer needed no_activate field.
3598
3599 2007-03-07  Jackson Harper  <jackson@ximian.com>
3600
3601         * TreeView.cs: Implement owner draw tree nodes.  And a couple more
3602         2.0 properties
3603         * DrawTreeNodeEventHandler.cs: Add
3604         * DrawTreeNodeEventArgs.cs: Correct default value.
3605         
3606 2007-03-07  Chris Toshok  <toshok@ximian.com>
3607
3608         * XplatUIWin32.cs: create InternalWndProc so that we're guaranteed
3609         to be called before NativeWindow.WndProc.  Put the HwndCreating
3610         magic there to hook up our Hwnd's to handles.
3611
3612 2007-03-07  Gert Driesen  <drieseng@users.sourceforge.net>
3613
3614         * DataGridView.cs: Comment out debug code.
3615
3616 2007-03-07  Chris Toshok  <toshok@ximian.com>
3617
3618         [merge -r72718:73765 from mwf-handle-branch, and include 2 changes
3619         to make the rest of the world happy]
3620
3621         * Control.cs (CreateHandle): there's no need to call
3622         XplatUI.SetVisible here, it's effectively done by
3623         XplatUI.CreateWindow on X now, and always was on windows.
3624
3625         * XplatUIX11.cs (WaitForHwndMessage): only use the PostQuitState
3626         shortcircuit out of the loop if we have a message loop running on
3627         this thread.
3628
3629         [Changelog from merge]
3630
3631         2007-03-05  Chris Toshok  <toshok@ximian.com>
3632
3633                 * Control.cs (AccessibilityNotifyClients): turns out in 1.1 this
3634                 causes handle creation.
3635
3636         2007-02-28  Chris Toshok  <toshok@ximian.com>
3637
3638                 * ApplicationContext.cs: Add a flag to make sure we only raise the
3639                 ThreadExit event once (ExitThreadCore can be indirectly called
3640                 from a few places.)  I don't like the additional flag, but it
3641                 makes the event ordering/count correct.
3642
3643                 * Application.cs (MWFThread.LoopCount): don't use an enumerator
3644                 without locking the collection.  An enumerator doesn't give us any
3645                 protection from modification anyway.  Lock the thread hash and
3646                 replace the complicated enumerator loop with a foreach.
3647                 (Application.CloseForms): make internal so it can be called from
3648                 ApplicationContext.  This should probably be moved to MWFThread.
3649                 (Application.ExitThread): don't call MWFThread.Current.Exit()
3650                 here.  just call XplatUI.PostQuitMessage.  We'll exit the thread
3651                 when the runloop exits (in response to WM_QUIT.)
3652                 (Application.RunLoop): add a comment (and check) for
3653                 context.MainForm being null after setting context.MainForm.Visible
3654                 = true.  This is because you're perfectly free to dispose of a
3655                 form in VisibilityChanged.  Chalk this up to another case where we
3656                 need to synchronously generate WM_ACTIVATE from Control.Show.
3657                 Also, add handling for WM_QUIT here so we'll exit the loop.
3658                 
3659                 * XplatUIX11.cs: clean up MapWindow and UnmapWindow a bit.  The
3660                 fact that we don't wait if we're only unmapping the whole_window
3661                 makes me a bit nervous, but it doesn't seem to cause any problems
3662                 yet.
3663
3664                 also, add a comment about the stupid, broken and wrong resetting
3665                 of PostQuitState to false in GetMessage().
3666
3667                 In PostQuitMessage, we need to add a WM_QUIT message to the
3668                 thread's queue.  We use the FosterParent to get the right
3669                 handle/hwnd/queue.
3670
3671                 Lastly, in SetVisible, we need to unmap both windows, since the
3672                 waiting only happens when we're unmapping the client window.  So
3673                 now, the *only* time we unmap just the whole_window is in the hack
3674                 for resizing a control to 0,0.
3675                 
3676         2007-02-21  Chris Toshok  <toshok@ximian.com>
3677
3678                 * Application.cs (CloseForms): rewrite this so that we don't
3679                 modify the list while we're traversing it.
3680
3681         2007-02-20  Chris Toshok  <toshok@ximian.com>
3682
3683                 * ListBox.cs (.ctor): move the Control.AddImplicits here instead
3684                 of OnHandleCreated.
3685                 (HorizontalScrollEvent): only call XplatUI.ScrollWindow if the
3686                 handle is created.  otherwise we'll create it here.
3687                 (VerticalScrollEvent): same here.
3688
3689                 * Application.cs (CloseForms): call Form.Dispose, don't post
3690                 WM_CLOSE_INTERNAL.
3691
3692                 * Form.cs (WndProc): we don't need to use CLOSE_INTERNAL
3693                 here. Application should Dispose() of the Form's.
3694
3695                 * XplatUIX11.cs (WaitForHwndMessage): break out of the loop on
3696                 WM_DESTROY as well.
3697                 (MapWindow,UnmapWindow): only actually do the waiting for
3698                 SHOWWINDOW if the control we're dealing with is a Form.
3699                 (CreateWindow): if the control isn't a form, SendMessage
3700                 WM_SHOWWINDOW here (if the WS_VISIBLE style is set).
3701
3702                 * Control.cs (SetVisibleCore): always use is_visible here, not
3703                 value.  If we use value, we can end up re-setting something
3704                 visible if, for instance, you do Control.Hide() in a delegate
3705                 attached to VisibleChanged as we do in FormTest.ShowDialogTest.
3706
3707         2007-02-20  Chris Toshok  <toshok@ximian.com>
3708
3709                 * XplatUIX11.cs (WaitForHwndMessage): we need to loop until we get
3710                 the message we need.  PeekMessage returning false should not be a
3711                 condition under which we exit the loop.
3712
3713         2007-02-15  Chris Toshok  <toshok@ximian.com>
3714
3715                 * Control.cs (Refresh): only refresh if we've got a handle and are
3716                 visible.
3717                 (CreateAccessibilityInstance): CreateControl() here.
3718                 (UpdateChildrenZOrder): complicate the code loop even more by
3719                 taking into account controls that haven't had their handle
3720                 created, and those that aren't visible.  But on the flip side,
3721                 simplify the code by splitting it into two loops.  one which
3722                 builds up the list of child controls we're interested in, and the
3723                 other that sets the z order of those children.
3724
3725         2007-02-14  Chris Toshok  <toshok@ximian.com>
3726
3727                 * Control.cs: Control.AccessibilityObject causes the control to be
3728                 created, not just the handle.
3729
3730         2007-02-14  Chris Toshok  <toshok@ximian.com>
3731
3732                 * Control.cs: rework UpdateChildrenZOrder to correctly handle the
3733                 problem on X where a window might have its handle created (and be
3734                 visible) while the window is unmapped.  calling XConfigureWindow
3735                 on an unmapped window is bad, and generates X errors.
3736
3737         2007-02-13  Chris Toshok  <toshok@ximian.com>
3738
3739                 * Control.cs (CreateHandle): don't loop over our children setting
3740                 their parent here.  do it when in WndProc when we're shown.
3741                 (UpdateChildrenZOrder): make this internal so we can call it from
3742                 ScrollableControl.
3743                 (WndProc): for WM_SHOWWINDOW, reparent the child control after
3744                 creating its handle.  Also, remove the calls to PerformLayout from
3745                 here.  they're done in ScrollableControl.OnVisibleChanged.  Also,
3746                 OnVisibleChanged only seems to be called directly here for the
3747                 toplevel control.  It's propagated down the window hierarchy by
3748                 calls to child.OnParentVisibleChanged.
3749                 (OnVisibleChanged): don't do layout here - it's done (oddly
3750                 enough, according to a glance at stack traces on ms.net..) in
3751                 ScrollableControl.
3752                 
3753                 * ScrollableControl.cs (OnVisibleChanged): make sure we update the
3754                 z order of our children before calling PerformLayout.
3755
3756         2007-02-12  Chris Toshok  <toshok@ximian.com>
3757
3758                 [big change, fixes #80020]
3759                 
3760                 * AccessibleObject.cs: we need to make owner internal again to fix
3761                 some of ControlAccessibleObject.
3762
3763                 * Control.cs: lots of changes here.  add support for WM_CREATE,
3764                 for which we generate OnHandleCreated.  Remove the OnHandleCreated
3765                 call from CreateHandle.  Also add support for WM_SHOWWINDOW where
3766                 we create child controls.  leave the MonoTODO's for the
3767                 accessibility calls, but fix the exceptions so the tests pass.
3768
3769                 Add the InvalidOperationExceptions to Invoke methods, and remove a
3770                 couple of InvokeInternal methods we aren't using.
3771                 
3772                 Also, add a couple of CreateHandle calls in places where we know
3773                 the handles are being created but our code doesn't reference
3774                 .Handle.
3775
3776                 Make SetVisibleCore call OnVisibleChange if the handle isn't
3777                 created.  If the handle is created, we rely on XplatUI.SetVisible
3778                 generating the event synchronously.
3779                 
3780                 Lastly, make sure we don't use this.Handle inside CreateHandle,
3781                 because we can call back into client (and that code can dispose of
3782                 the control).
3783
3784                 * XplatUIStructs.cs: misc/cleanup.
3785
3786                 * XplatUIX11.cs: Map/Unmap X events correspond to WM_SHOWWINDOW,
3787                 although we don't populate the wParam properly.
3788                 (CreateWindow): generate WM_CREATE.
3789                 (MapWindow,UnmapWindow): make these calls synchronous, at great
3790                 performance expense (particularly in the unmap case), to match
3791                 win32 behavior.
3792
3793                 * Form.cs (.ctor): remove the call to UpdateBounds. we don't need
3794                 to call it.
3795                 (set_MdiParent): don't recreate the handle unless it's been
3796                 created already.
3797                 
3798                 * MdiClient.cs (OnResize): don't InvalidateNC Parent.Handle unless
3799                 it's created.
3800
3801                 * NativeWindow.cs: this is probably the weirdest part of the
3802                 patch.  We need a way to link up the window being created to the
3803                 WM_CREATE message.  Since we can only be creating one window at a
3804                 time on a given thread, we keep track of a per-thread reference so
3805                 we can dispatch it properly.  We also need to keep track of the
3806                 Hwnd currently being created so that the win32 backend doesn't
3807                 have problems.
3808                 
3809                 * XplatUIWin32.cs: a similar change to the one we made in
3810                 NativeWindow.cs.
3811
3812 2007-03-07  Jonathan Pobst  <monkey@jpobst.com>
3813
3814         * ToolStripItem.cs: Make CalculatePreferredSize virtual.
3815         * ToolStripMenuItem.cs: Modify CalculatePreferredSize and OnPaint
3816         to draw the menu shortcut string.
3817
3818 2007-03-07  Jackson Harper  <jackson@ximian.com>
3819
3820         * TreeNode.cs: Add the 2.0 collapse method.
3821
3822 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
3823
3824         * DataGridViewColumn.cs: Fix HeaderText behaviour (Bug #80746).
3825
3826 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
3827
3828         * DataGridView.cs: Change DataSource will clear column and row
3829         lists. Call Invalidate() to reflect DataSource change.
3830
3831 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
3832
3833         * DataGridView.cs: Add rows when DataSource is System.Data.DataView
3834         and a new row is added to it.
3835
3836 2007-03-07  Pedro Martínez Juliá  <pedromj@gmail.com>
3837
3838         * DataGridView.cs: Add columns when DataSource is en empty list but
3839         is a System.Data.DataView (from a System.Data.DataTable).
3840
3841 2007-03-06  Andreia Gaita  <avidigal@novell.com>
3842
3843         * Label.cs: Implement AutoEllipsis (2.0)
3844
3845 2007-03-06  Jackson Harper  <jackson@ximian.com>
3846
3847         * TreeView.cs: Implement 2.0 TopNode setter property.
3848         - Use a local var instead of the skipped_nodes field for computing
3849         how many nodes to skip.  Otherwise we won't scroll because the
3850         valuechanged handler checks if skipped_nodes is equal to the new
3851         value.
3852         - Implement 2.0 Sort method.
3853         - Add useless 2.0 DoubleBuffer property
3854         - Implement 2.0 LineColors property.  Lets you change the color of
3855         the lines in the tree. Terribly useful for creating non cohesive
3856         desktops.
3857         - Implement 2.0 image key feature.
3858
3859 2007-03-06  Jackson Harper  <jackson@ximian.com>
3860
3861         * TreeView.cs: We can't get the bounds of the nodes before raising
3862         the AfterSelect event, because that event could change the node's
3863         bounds (scrolling, font change, etc).
3864
3865 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3866
3867         * XplatUIWin32.cs: When faking styles don't remove the WS_VISIBLE flag.
3868         * Form.cs: Don't recreate handle when creating FormWindowManager, just
3869           update window styles. In CreateParams us VisibleInternal instead of
3870           VIsible to get the actual visible flag set for this form.
3871         * FormWindowManager.cs: Activate the form whenever the mouse clicks on
3872           the nc area. Fixes #81042. Also fix HandleTitleBarDoubleClick to
3873           handle the case when the form is already maximized, in which case
3874           it should be restored. Fixes #81043.
3875
3876 2007-03-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3877
3878         * XplatUIX11.cs: Tool windows still get wm styles. Fixes toolwindows showing up with double decorations.
3879
3880 2007-03-05  Jackson Harper  <jackson@ximian.com>
3881
3882         * TreeViewHitTestInfo.cs: implement.
3883
3884 2007-03-05  Jackson Harper  <jackson@ximian.com>
3885
3886         * InternalWindowManager.cs: class status fix.
3887
3888 2007-03-05  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3889
3890         * InternalWindowManager.cs: All windows that have a parent
3891         are confined to their parent when they're being moved.
3892         Fixes #80822.
3893
3894 2007-03-04  Gert Driesen  <drieseng@users.sourceforge.net>
3895
3896         * SystemInformation.cs: Marked KeyboardDelay and KeyboardSpeed public
3897         on 2.0 profile. Fixes bug #81018. Small code formatting fixes.
3898
3899 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3900
3901         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations: Make all
3902           buttons invisible before deciding which ones should be visible
3903           (fixes minimize/maximize buttons showing up in toolwindows). Remove
3904           an unused variable.
3905         * InternalWindowManager.cs: Remove warning.
3906
3907 2007-03-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
3908
3909         * ListView.cs: Add a check in ListViewItemCollection.RemoveAt
3910         to throw an InvalidOperationException is virtual mode is being used.
3911
3912 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
3913
3914         * SplitContainer.cs, SplitterPanel.cs, StatusStrip.cs, TableLayoutPanel.cs,
3915         ToolStrip.cs, ToolStripContainer.cs, ToolStripContentPanel.cs,
3916         ToolStripControlHost.cs, ToolStripDropDownItems.cs, ToolStripItem.cs,
3917         ToolStripMenuItem.cs, ToolStripOverflowButton.cs, ToolStripPanel.cs,
3918         ToolStripPanelRow.cs, ToolStripProfessionalRenderer.cs, ToolStripSplitButton.cs,
3919         ToolStripStatusLabel.cs, ToolStripTextBox.cs: Corcompare work.
3920
3921 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3922
3923         * XplatUI.cs: Fixed returning driver.KeyboardSpeed instead of
3924           driver.KeyboardDelay from XplatUI.KeyboardDelay 
3925         * XplatUIW      in32.cs: Implemented KeyboardSpeed/KeyboardDelay properties
3926           (patch by Sergey Volk)
3927
3928 2007-03-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3929
3930         * ToolWindowManager.cs: Added, contains logic for
3931           tool windows.
3932         * CreateParams.cs: Add a few helper methods and an
3933           internal variable to know which control the CreateParams belongs
3934           to.
3935         * Control.cs: Call Form.ChangingParent when the
3936           parent is about to be changed.
3937         * XplatUIX11.cs: DeriveStyles (): Set
3938           caption_height for all windows that have captions and are children.
3939           Update to use ToolWindowManager instead of InternalWindowManager
3940           for ToolWindows.
3941         * XplatUIWin32.cs: Set fake window styles for all
3942           windows that have window managers.
3943         * MdiWindowManager.cs: Added MaximizedTitleButtons (buttons are
3944           now duplicated for mdi windows when they are
3945           maximized, first for the buttons the window itself has, then for
3946           the buttons that appear in the menu bar. Makes things a little
3947           easier). Updated UpdateWindowDecorations, SetWindowState and the
3948           mouse eventhandlers accordingly.
3949         * Form.cs: Add ChangingParent (), contains the
3950           logic of what should happen when the parent changes. In MdiParent
3951           don't set things that ChangingParent () is doing. When handling
3952           WM_CLOSE, we can close the form if there are any other modal forms
3953           and the current form is a descendent of the modal form.
3954         * InternalWindowManager.cs: A lot of refactoring,
3955           the title buttons are now extracted to a separate container class
3956           that takes care of all button code (clicks, tooltips, etc). Moved
3957           Iconic|Maximized|Normal Bounds properties to this class from
3958           MdiWindowManager, so that the window state logic can succeed for
3959           other than mdi wm's. Implemented general window state change logic.
3960           Moved CreateButtons to ThemeWin32Classic, since the theme might
3961           override which buttons are available when as well as the exact
3962           location.
3963         * FormWindowManager.cs: Added, contains logic for
3964           normal forms.
3965         * ThemeWin32Classic.cs: ManagedWindowSetButtonLocations now decides
3966           which buttons go where (and if they are at all visible). 
3967           Removed special handling of maximized windows, since they aren't special. 
3968           In DrawManagedWindowDecorations don't try to draw the text if it is
3969           empty.
3970         * MdiClient.cs: ArrangeIconicWindows: Don't  calculate any sizes, 
3971           use whatever the wm gives us.
3972
3973 2007-03-02  Jonathan Pobst  <monkey@jpobst.com>
3974
3975         * ButtonBase.cs: Add 2.0 properties.
3976         * Button.cs: Override Draw for 2.0.
3977         * Control.cs: Add Entered and Selected properties.
3978         * FlatButtonAppearance.cs, TextFormatFlags.cs, TextImageRelation.cs,
3979         TextRenderer.cs: Make internal for 1.1 to unify drawing code.
3980         * Theme.cs: New abstract functions for drawing Standard, Flat, Popup
3981         buttons.
3982         * ThemeWin32Classic.cs: Implement layout calculations for 2.0 buttons.
3983
3984 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
3985
3986         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code.  :/
3987
3988 2007-03-01  Jonathan Pobst  <monkey@jpobst.com>
3989
3990         * XplatUIWin32.cs: Register a new class with Windows each time we get
3991         a new ClassStyle.  [Fixes bugs #79432, #80817]
3992         * Controls.cs: Set the correct ClassStyle in CreateParams.
3993         * ToolStripDropDown.cs: Don't request an invalid ClassStyle.
3994
3995 2007-03-01  Gert Driesen  <drieseng@users.sourceforge.net>
3996
3997         * ListView.cs: Add fireEvent argument to ReorderColumn since the
3998         ColumnReordered event must not be signaled when modifying DisplayIndex
3999         of a ColumnHeader. Added internal ReorderColumns method which takes
4000         care of drawing, and updating the internal DisplayIndex of the
4001         ColumnHeader. Added AddColumn method which is invoked from
4002         ColumnHeaderCollection when adding or inserting columns, and which
4003         ensures that reorder_columns_indices is kept in sync. Avoid redrawing
4004         after adding each ColumnHeader in ColumnHeaderCollection.AddRange.
4005         Recalculated dispay indices after removing a ColumnHeader.
4006         * ColumnHeader.cs: Save DisplayIndex separately from ListView to
4007         match MS. Allows last display index to be returned after ListView
4008         is disposed. Update actual location of ColumnHeader when DisplayIndex
4009         is modified.
4010
4011 2007-03-01  Everaldo Canuto  <everaldo@simios.org>
4012
4013         * LinkLabel.cs: Improve CalcTrimRectangle.
4014         
4015         * ThemeWin32Classic.cs: Fix some compilation problem under VS 2003.
4016
4017 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
4018
4019         * LinkLabel.cs: Rename CalcMeasurementFactor as CalcTrimRectangle and
4020         get rectangle as a result value.
4021
4022 2007-02-28  Everaldo Canuto  <everaldo@simios.org>
4023
4024         * LinkLabel.cs: Theres some diferences between rectangle return from 
4025         MeasureCharacterRanges and the area used for DrawString to fix this 
4026         CalcMeasurementFactor method was created, it calcules the diferences
4027         to be use later to adjust rectangle in draw operations. Fixes #80473.
4028         
4029         * ThemeWin32Classic.cs: Use factor calculated by CalcMeasurementFactor
4030         to adjust draw rectangle.
4031
4032 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
4033
4034         * ThemeWin32Classic.cs: In DrawLinkLabel draw focus rectangle before draw
4035         text and some other changes to reduce and optimize source code.
4036
4037 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
4038
4039         * RadioButton.cs: Implement 2.0 event.
4040         * RelatedImageListAttribute.cs: Implement new class.
4041
4042 2007-02-27  Everaldo Canuto  <everaldo@simios.org>
4043
4044         * MenuAPI.cs: Change keynav_state before call SelectItem. Fixes #80901.
4045
4046 2007-02-27  Jonathan Pobst  <monkey@jpobst.com>
4047
4048         * CheckBox.cs: Implement 2.0 functionality.
4049
4050 2007-02-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4051
4052         * ListView.cs: Refactor Add and AddRange methods of
4053         ListViewItemCollection, to not update the ListView
4054         everytime an item is added in AddRange. Also move the update
4055         code to a new CollectionChanged method, and call it
4056         from other methods that need it as well (this should also fix some
4057         bugs when Sorting is used).
4058
4059 2007-02-27  Jackson Harper  <jackson@ximian.com>
4060
4061         * TextControl.cs: Try to never let the caret stay in a non-text
4062         tag.
4063         * TextBoxBase.cs: Update the caret.
4064
4065 2007-02-26  Jonathan Pobst  <monkey@jpobst.com>
4066
4067         * XplatUIStructs.cs: Add some convenience methods for POINT structure.
4068         * XplatUIWin32.cs: Add some convenience methods for RECT structure,
4069         delete POINT structure, duplicate of one in XplatUIStructs.
4070         * TextRenderer.cs: Use XplatUIWin32.RECT instead of UXTheme.RECT.
4071
4072 2007-02-26  Gert Driesen  <drieseng@users.sourceforge.net>
4073
4074         * ListView.cs: Initialize LabelEditEventArgs after setting Text of
4075         edit box since otherwise the Label would immediately be set (even if
4076         the user did not modify the label). In OnKeyDown set Handled to true
4077         if Return or Escape was pressed. In ColumnHeaderCollection unlink
4078         columns that are to be removed. In ListViewItemCollection unlink items
4079         that are to be removed.
4080
4081 2007-02-24  Jonathan Pobst  <monkey@jpobst.com>
4082
4083         * TextRenderer.cs: If we set a GDI clip region, we need to clear
4084         it when we are done.  [Fixes bug #80949]
4085
4086 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
4087
4088         * Form.cs: Wrap checking ShowWithoutActivation in a NET_2_0 block.
4089
4090 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4091
4092         * ListView.cs: I forgot to commit the changes for ListView 
4093         in my previous patch.
4094
4095 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
4096
4097         * Clipboard.cs: Partially implement an overload of SetDataObject.
4098         * Form.cs: Implement ShowWithoutActivation.
4099         * XPlatUIWin32.cs: Fix for WM_SHOWNOACTIVATE for forms.
4100
4101 2007-02-23  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4102
4103         This is a first set of changes to make the Virtual mode works,
4104         by avoiding the retrieval of ListViewItem instances until
4105         draw time.
4106
4107         * ListView.cs: Store item position in the ListView instead of the
4108         ListViewItem, this way we don't request the Bounds property of
4109         ListViewItem inside the ListView calculations, as well as cache the item
4110         size in item_size field. Store indexes instead of ListViewItem
4111         instances in the matrix used by icon view. Add a ItemMatrixLocation
4112         struct to hold the row and col info of the matrix info.
4113
4114         * ListViewItem.cs: Don't store the location anymore, and only cache
4115         the rectangles for GetBounds. Use the ListView.GetItemLocation
4116         method to retrieve the actual location.
4117
4118 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
4119
4120         * TextRenderer.cs: Add clipping support, thanks to George.
4121         [Fixes bug #80949]
4122
4123 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
4124
4125         * ListViewItem.cs: Cancel label edit when item is removed from 
4126         ListView.
4127         * ListView.cs: Move setting of focus to EndEdit. Fire BeforeLabelEdit
4128         event before the edit textbox is displayed.  Added CancelEdit method
4129         which is used end to editing while ignoring the value set by the
4130         user. In EndEdit, set focus to ListView to avoid losing focus to
4131         other controls. In ListViewItemCollection.Clear, cancel editing of
4132         any of the items.  In Remove, cancel editing of item being removed.
4133         Avoid udplicate code by modifing RemoveAt to invoke Remove.
4134
4135 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
4136
4137         * FileDialog.cs: Update FSEntry when move is successful. Fixes
4138         bug #80948.  
4139
4140 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
4141
4142         * MainMenu.cs: Change Draw method to take care about MenuOrigin to be 
4143         compatible with non X11 systems. Fixes #80901.
4144
4145 2007-02-23  Gert Driesen  <drieseng@users.sourceforge.net>
4146
4147         * ListView.cs: Added bool argument to UpdateMultiSelection to specify
4148         whether the item should be unselected and reselect. We do no want this
4149         when we're starting to edit the label. Do not fire the 
4150         SelectedIndexChanged event from ListView when its already been fired
4151         by modifying ListViewItem.Selected. Fixes bug #80943.
4152
4153 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
4154
4155         * TextRenderer.cs: Previos commit logic was backwards.
4156
4157 2007-02-23  Jonathan Pobst  <monkey@jpobst.com>
4158
4159         * TextRenderer.cs: Don't add padding on MeasureText if we were
4160         sent the NoPadding flag.
4161
4162 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
4163
4164         * ThemeWin32Classic.cs: Invert order of drawing operation with DrawImage
4165         after DrawButton. To prevent image overlaps button borders SetClip and 
4166         ResetClip added before and after draw image. Fixes #79129.
4167
4168 2007-02-23  Everaldo Canuto  <everaldo@simios.org>
4169
4170         * FolderBrowserDialog.cs: Use ClientSize instead of Size to specify 
4171         window size, it fix problem when you run under win32 that theres
4172         Size diferent than ClientSize. Also fix controls size and positions
4173         to mimic Win32. Fixes #80837.
4174
4175 2007-02-22  Everaldo Canuto  <everaldo@simios.org>
4176
4177         * Form.cs: Handle WM_NCHITTEST and return HTMENU when point is on 
4178         menu area to fix some problems for non X11 systems. Fixes #80613.
4179
4180 2007-02-22  Jackson Harper  <jackson@ximian.com>
4181
4182         * TreeNode.cs: When a node is expanded, set its is_expanded flag
4183         even if it doesn't have any children.
4184
4185 2007-02-22  Jackson Harper  <jackson@ximian.com>
4186
4187         * TreeView.cs: Calculate the top node 'on the fly', this
4188         eliminates issues where you need to click on the tree before
4189         scrolling it to get the top node computed correctly.
4190         * TreeNodeCollection.cs: We don't need to mess with the top node
4191         anymore.
4192
4193 2007-02-22  Jackson Harper  <jackson@ximian.com>
4194
4195         * DataGridViewRow.cs: Fix typo so height can actually be set.
4196         Patch by Peter Grimm.
4197
4198 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
4199
4200         * FileDialog.cs: Fixed support for renaming files and directories.
4201         * ListView.cs: Do not lose focus when edit is canceled. Process
4202         Escape as regular key (to prevent closing of dialogs).
4203
4204 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
4205
4206         * ListView.cs: Removed TODO for LabelEdit. Removed extra tabs and
4207         spaces. Changed spaces to tabs. Removed unnecessary init of bools.
4208
4209 2007-02-22  Gert Driesen  <drieseng@users.sourceforge.net>
4210
4211         * FileDialog.cs: LabelEditEventArgs.Label now returns null when user
4212         did not modify label.
4213         * ListView.cs: Only set LabelEditEventArgs.Label if user actually
4214         modified the text. Reset Label when user presses Escape in edit mode.
4215         Move focus to ListView after having cancelled or finished editing the
4216         label.
4217
4218 2007-02-21  Gert Driesen  <drieseng@users.sourceforge.net>
4219
4220         * ComboBox.cs: Removed unnecessary initializations. Marked items field
4221         private. Clear textbox when Text is set to null and SelectedIndex is
4222         already -1.
4223         * FileDialog.cs: Removed unnecessary initializations. Removed 
4224         workarounds for ComboBox bugs that are now fixed. Modified
4225         DefaultExt, InitialDirectory and Title property to change null to
4226         zero-length string in getters. Avoid directly accessing fields.
4227
4228 2007-02-20  Jackson Harper  <jackson@ximian.com>
4229
4230         * TextControl.cs: Remove RecalAlignments call, that was some
4231         debugging leftovers.
4232         - Don't use the line indent when we shouldn't.
4233         * RichTextBox.cs: Add support for paragraph left indents.
4234
4235 2007-02-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4236
4237         * Control.cs: Fix BeginInvoke signature for 2.0 profile.
4238         Seems like the class status pages doesn't catch params differences.
4239
4240 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
4241
4242         * ComboBox.cs: Removed extra tabs. Changes spaces to tabs.
4243
4244 2007-02-19  Gert Driesen  <drieseng@users.sourceforge.net>
4245
4246         * ComboBox.cs: Setting Text should have no effect if item text of
4247         selected item exactly matches value. First lookup text using
4248         case-sensitive comparison, and fallback to case-insensitive comparison.
4249         FindString(Exact) returns -1 if search string is null. On 2.0 profile, 
4250         allow startIndex to be last index. Changed ArgumentOutOfRangeException
4251         paramname to match MS. Restart from first item if string is not found
4252         after startIndex. Fixed paramname of ArgumentNullException that is
4253         thrown for null value in ObjectCollection.Contains.
4254
4255 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
4256
4257         * XplatUIStructs.cs: WM_XXX UISTATE elements uncommented.
4258
4259 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4260
4261         * ListControl.cs: In SelectedValue use value.Equals to compare for
4262         equality instead of ==, otherwise it will fail for strings.
4263         Fixes #80794.
4264
4265 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4266         
4267         * ComboBox.cs: Switch the order to ShowSelection and ActivateCaret,
4268         since the caret won't show up unless ShowSelection is true. 
4269         Fixes #80795.
4270
4271 2007-02-19  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4272
4273         * Application.cs: When disabling all forms but the main form, do not
4274           disable any descendants of the main form (such as mdi children or
4275           other parented forms). Fixes #80822 on Windows.
4276         * Form.cs: If we have a parent, set the WS_CHILD style.
4277         * Control.cs: Update the window styles if the control whose parent has
4278           changed is a form (the WS_CHILD style has to be switched).
4279
4280 2007-02-19  Everaldo Canuto  <everaldo@simios.org>
4281
4282         * XplatUIStructs.cs: MsgUIState structure added.
4283
4284 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
4285
4286         * FileDialog.cs: Removed need for separate fileName field. On 2.0
4287         profile, do not check filename(s) for illegal character if filename(s)
4288         were set non-interactively but always check on 1.0 profile. Fixed NRE
4289          in DefaultExt and only strip off first leading dot. Improve exception
4290         message when invalid Filter is set. Do not ignore InitialDirectory if
4291         it does no exist. Store specified Title, and if empty use default
4292         title (depending on type of dialog). Added an internal DialogTitle 
4293         property for retrieving dialog title. Fixed logic of displayed dir to
4294         more closely match MS. Avoid setting ComboBox.Text to a zero-length 
4295         string as its buggy.
4296         * OpenFileDialog.cs: In OpenFile, throw ArgumentNullException if
4297         FileName is a zero-length string (it can never be null). Override 
4298         DialogTitle property to set default title of dialog box.
4299         * SaveFileDialog.cs: Override DialogTitle property to set default
4300         title of dialog box.
4301
4302 2007-02-18  Gert Driesen  <drieseng@users.sourceforge.net>
4303
4304         * FileDialog.cs: Modify default text of filename and filetype labels
4305         to match that of MS. Reset do_not_call_OnSelectedIndexChanged...
4306         after we've updated the SelectedIndex. Fixes part of bug #80887.
4307         * SaveFileDialog.cs: Set text of filetype label.
4308
4309 2007-02-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4310
4311         * LabelEditEventArgs.cs: New internal SetLabel method, to set the
4312         label field. Needed by latest Jackson's fixes for ListView.
4313
4314 2007-02-16  Andreia Gaita  <avidigal@novell.com>
4315
4316         * PrintPreviewControl/PrintPreviewDialog: Properly dispose of 
4317         print preview images.
4318
4319 2007-02-16  Jackson Harper  <jackson@ximian.com>
4320
4321         * ListView.cs: Make AfterLabelEdit work correctly.
4322         * FileDialog.cs: After changing the name of the folder, we have to
4323         make sure that it is created, or that we pop up an error because
4324         it already exists.
4325
4326 2007-02-16  Jackson Harper  <jackson@ximian.com>
4327
4328         * X11Dnd.cs: Implement aliases on mime handlers, so things like
4329         System.String are mapped to text.
4330         - Handle dataobjects, getting all the possible formats out of them
4331         - We dont need the drag event args before we give feedback. This
4332         allows feedback cursors to be immediate before selections have
4333         been converted.
4334
4335 2007-02-16  Jackson Harper  <jackson@ximian.com>
4336
4337         * TextBoxBase.cs: Modified the method for inserting images to
4338         taking a line and position instead of tag and position.
4339         * RichTextBox.cs: Handle PngBlip data by inserting the png image
4340         into the RTF file.
4341         * TextControl.cs: Allow images to be inserted as the first tag of
4342         a line.
4343         - Fix some off by one issues when we assume the first tag is a
4344         text tag, not an image tag.
4345
4346 2007-02-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4347
4348         * ListView.cs: Set focus to ListView when ItemControl gets a
4349         WM_RBUTTONDOWN message, to mimic .Net behaviour. 
4350         Fixes part of #80467.
4351
4352 2007-02-15  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4353
4354         * DateTimePicker.cs: Call RecreateHandle if the Format changes and
4355           validate Text input (if null or empty string reset Value to default
4356           value). Fixes #80830.
4357
4358 2007-02-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4359
4360         * ListView.cs: Set owner as null for columns and items when
4361         Dispose is invoked. Fixes #80607.
4362
4363 2007-02-14  Jonathan Pobst  <monkey@jpobst.com>
4364
4365         * ToolStrip.cs: Allow LayoutStyle.Flow, make sure to call OnOpening when
4366         showing DropDowns, don't show a Grip when doing Flow layout.
4367         [This fixes the toolbox in PDN 2.72.]
4368         * ToolStripItem.cs: Add Anchor property and some internal properties to
4369         reduces needed changes to FlowLayout.
4370         * ToolStripOverflow.cs: Remove unused variable.
4371         * ToolStripSplitStackLayout.cs: If a ToolStripItem isn't visible, don't
4372         use it in the layout calculations.
4373
4374 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
4375
4376         * ToolTip.cs: Add HotkeyPrefix.Hide to MeasureString format, it fix an issue
4377         reported in #79640.
4378         
4379         * ThemeWin32Classic.cs: Uses format for MeasureString in ToolTipSize to fiz
4380         size calculation.
4381
4382 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
4383
4384         * ToolBar.cs, ToolBarButton.cs: Revert and remove HotkeyPrefix from 
4385         MeasureString format, it can make button very large in some cases, it is
4386         strange but is what win32 do.
4387
4388 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
4389
4390         * ToolBar.cs, ToolBarButton.cs: Uses format in MeasureString to fix string 
4391         size calculation.
4392
4393         * ThemeWin32Classic.cs: Set HotkeyPrefix in toolbar text format to fix text
4394         rendering, the value is based on MenuAccessKeysUnderlined.
4395
4396 2007-02-13  Everaldo Canuto  <everaldo@simios.org>
4397
4398         * Theme.cs: Change MenuAccessKeysUnderlined to "true" that is value used
4399         for most themes.
4400         
4401         * ThemeWin32Classic.cs: Override MenuAccessKeysUnderlined as false.
4402         
4403         * ThemeNice.cs, ThemeGtk.cs, ThemeClearlooks.cs: Remove always_draw_hotkeys
4404         and use MenuAccessKeysUnderlined instead.
4405
4406 2007-02-13  Andreia Gaita  <avidigal@novell.com>
4407
4408         * ContainerControl.cs: Focus fix for nunit treeview selection bug.
4409         A selected control would not get a Focus call if:
4410                 - the default active control of the container is the same as
4411                   the one that was selected
4412                 - we are switching from one container to another
4413         Under these conditions, the container being selected already has
4414         an active_control, which is the same as the one being activated, 
4415         so set_ActiveControl would always return and not send the Focus
4416         call. Fix to check if the currently active control of the container
4417         is actually focused.
4418
4419 2007-02-13  Jonathan Pobst  <monkey@jpobst.com>
4420
4421         * StatusStrip.cs: Implement the spring layout.
4422         * ToolStripControlHost.cs: Make sure the hosted control's visibility
4423         always matches the host.
4424         * ToolStripItem.cs: Write a more accurate layout for TextBeforeImage
4425         and TextAfterImage.
4426
4427 2007-02-13  Andreia Gaita  <avidigal@novell.com>
4428
4429         * Control.cs: Code reorganization only.
4430           - Reorganize the WndProc cases so that each case has it's own handling method, 
4431           to help with the no-line-numbering stack traces.
4432           - Formatting changes (it's vstudio's fault, really :p)
4433
4434 2007-02-13  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4435
4436         * MonthCalendar.cs: Switch to using Thread.CurrentCulture instead of
4437           Thread.CurrentUICulture to match DateTimePicker's (and MS)
4438           behaviour.
4439
4440 2007-02-12  Jackson Harper  <jackson@ximian.com>
4441
4442         * RichTextBox.cs:
4443         * TextBox.cs: By default we have a non multiline document
4444         - use the multiline property instead of the internal variable
4445         * TextBoxBase.cs: Treat multiline and non multiline the same in
4446         most places.
4447         - Use the documents multiline flag instead of tracking it ourself
4448         * TextControl.cs: Attempt at getting multiline to match MS
4449         behavior.  Lines now track an offset, which is either their X or Y
4450         offset depending on whether or not we are in multiline mode.
4451         - Update all the methods to understand that lines have an X value.
4452         - Fix crash in Undo::Duplicate when empty lines are deleted.
4453
4454 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
4455
4456         * Label.cs: CalcPreferredHeight and CalcPreferredWidth methods removed and 
4457         code moved to properties PreferredHeight and PreferredWidth. It solve the
4458         all problems when preferred sizes must be recalculated. Fixes #80801.
4459
4460 2007-02-12  Everaldo Canuto  <everaldo@simios.org>
4461
4462         * Label.cs: Fix CalcPreferredHeight for 2.0 that must return only
4463         font height when compatible_text_rendering is false. Partially fix #80801.
4464
4465 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
4466
4467         * Form.cs: Fixed typo in exception message. Fixes bug #80779.
4468
4469 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
4470
4471         * Form.cs: Improved exception messages in ShowDialog.
4472
4473 2007-02-09  Gert Driesen  <drieseng@users.sourceforge.net>
4474
4475         * PrintDialog.cs: On 1.0 profile, throw ArgumentException in RunDialog if
4476         PrinterSettins has not been set. On 2.0 profile, initialize PrinterSettings
4477         if not set. Fixes bug #80764. Avoid accessing current_settings field
4478         directly.
4479
4480 2007-02-08  Everaldo Canuto  <everaldo@simios.org>
4481
4482         * Theme.cs: An new property MenuAccessKeysUnderlined added with default value
4483         false.
4484
4485         * SystemInformation.cs: An new property MenuAccessKeysUnderlined added, it is
4486         public in 2.0 and for easy maintenance and dont break compatibility it is 
4487         internal in 1.1.
4488         
4489 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
4490
4491         * ToolStripItem.cs: Implement using images from ImageList.
4492
4493 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4494
4495         * DateTimePicker.cs: Change default date-formatting culture from
4496           CurrentThread.CurrentUICulture to CurrentThread.CurrentCulture,
4497           seems to be the way MS does it.
4498
4499 2007-02-08  Andreia Gaita  <avidigal@novell.com>
4500
4501         * PrintPreviewControl.cs: rewrite toolbar code to fix #80725. Correct 6-up image 
4502         (the 6 was cut off on the right side)
4503
4504 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
4505
4506         * Form.cs: Tell MenuStrips to close when the form is clicked.
4507         * MenuStrip.cs, ToolStrip.cs, ToolStripControlHost.cs, 
4508         ToolStripDropDown.cs, ToolStripDropDownItem.cs, ToolStripItem.cs,
4509         ToolStripItemCollection.cs, ToolStripMenuItem.cs, ToolStripProfessionalRenderer.cs,
4510         ToolStripSplitButton.cs, ToolStripSplitStackLayout.cs: Add 
4511         support for Overflow, where items that do not fit are automatically
4512         reparented to a drop down menu.
4513         * ToolStripOverflow.cs, ToolStripOverflowButton.cs: Added.
4514         Also: fixes bug #80747.
4515
4516 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4517
4518         * ComboBox.cs: Remove warning (unused code).
4519         * ScrollableControl.cs: Remove warning for 1.1 profile.
4520
4521 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4522
4523         * Form.cs: Remove a warning.
4524
4525 2007-02-08  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4526
4527         * DateTimePicker.cs: Fixed a NRE if CustomFormat was null. Handles the
4528           'g' specifier, not documented anywhere, but seems to always show up
4529           as a single space (might have something to do with the DateTime 'g'
4530           specifier, which is the era format, but since DateTimePicker can't
4531           go earlier than 1753 it wouldn't matter) . Fixed quote handling,
4532           won't crash if the format has an unmatched quote. Now shows
4533           single-character formats correctly. Fixes #80744.
4534
4535 2007-02-08  Jonathan Pobst  <monkey@jpobst.com>
4536
4537         * StatusStrip.cs: Stretch property needs to call base.Stretch,
4538         not this.Stretch to fix stack overflow. [Fixes bug #80760]
4539
4540 2007-02-07  Chris Toshok  <toshok@ximian.com>
4541
4542         * ThemeWin32Classic.cs (DrawButtonBase): don't clear to the
4543         background color.  it overwrites the background image we've
4544         already painted.  Fixes #80599.
4545
4546 2007-02-07  Chris Toshok  <toshok@ximian.com>
4547
4548         * DataGrid.cs: return immediately from Edit() when there are no
4549         columns.  Fixes #80662.
4550
4551 2007-02-07  Chris Toshok  <toshok@ximian.com>
4552
4553         * MessageBox.cs: fix #80625.  don't always show the Help button in
4554         2.0.  use the displayHelpButton parameter to determine if we
4555         should show it. Also, make the internal show_help field private.
4556
4557 2007-02-07  Chris Toshok  <toshok@ximian.com>
4558
4559         * Control.cs (SetVisibleCore): check in the proposed patch for
4560         80604, and set is_visible before calling CreateControl.
4561
4562 2007-02-07  Jonathan Pobst  <monkey@jpobst.com>
4563
4564         * ListView.cs: UseCompatibleStateImageBehavior setter changed from NIEX to 
4565         MonoInternalNote.  This is added automagically by VS2005, so let's not crash
4566         on it.
4567
4568 2007-02-06  Everaldo Canuto  <everaldo@simios.org>
4569
4570         * MenuAPI.cs: hotkey_active internal field added, it is required because
4571         we need to know when hotkeys must be draw, before this change a keystate
4572         Navigating was used but we can have menu in navigating state without
4573         hotkeys. Fixes #80694.
4574         
4575         * ThemeWin32Classic.cs: Only draw hot keys when hotkey_active is true.
4576
4577 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4578
4579         * Control.cs: Handle WM_CAPTURECHANGED in 1.1 code as well, and change
4580           corresponding events and methods to be internal for 1.1 profile and
4581           public for 2.0 profile (required by SizeGrip).
4582         * Form.cs: Use SizeGrip as a virtual SizeGrip (and don't add it to the
4583           implicit control list). Don't set the size nor the location of the
4584           SizeGrip anymore as it's not needed.
4585         * SizeGrip.cs: Rewrote large parts, it now supports a virtual mode to
4586           draw directly on the captured control (fixes #80656). Removed
4587           ShowGrip (it wasn't used anywhere), redraw (always true), added
4588           GetDefaultSize and GetDefaultRectangle to calculate defaults.
4589         * ScrollableControl.cs: Make UpdateSIzeGripVisible internal so it can
4590           be called from SizeGrip.
4591
4592 2007-02-06  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4593
4594         * Timer.cs: Throw ArgumentException if Interval <= 0.
4595
4596 2007-02-05  Jackson Harper  <jackson@ximian.com>
4597
4598         * TreeView.cs: We need to check scrollbar visibility when window
4599         visibility is updated, because non visible trees don't ever add
4600         scrollbars.
4601         * Cursor.cs: We want the override cursor to be reset to NULL when
4602         we set current cursor to the default cursor.
4603
4604 2007-02-05  Jackson Harper  <jackson@ximian.com>
4605
4606         * TextControl.cs: Don't have crlfs when we are non multiline.
4607         - Consolidate the line position.
4608
4609 2007-02-05  Jackson Harper  <jackson@ximian.com>
4610
4611         * X11Keyboard.cs: BACK+CTRL gets a special char code.
4612
4613 2007-02-03  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4614
4615         * XplatUIX11.cs: Implemented WM_CAPTURECHANGED support, we're now
4616           handling LeaveNotify->NotifyUngrab in order to send
4617           WM_CAPTURECHANGED. However sometimes the NotifyUngrab arrives late
4618           after calling XUngrabPointer, so we call WindowUngrabbed directly
4619           from UngrabWindow in order to send WM_CAPTURECHANGED immediately.
4620         * Control.cs: Handle WM_CAPTURECHANGED in order to raise
4621           MouseCaptureChanged correctly. Also create handles if changing
4622           Capture (matches MS behaviour).
4623
4624 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4625
4626         * SizeGrip.cs: Make the last change 2.0 only.
4627
4628 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4629
4630         * SizeGrip.cs: If resizing and the capture is lost, revert any size
4631           changes to initial size (fixes #80597).
4632
4633 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4634
4635         * SizeGrip.cs: Use the normal icon for SizeGrip if it is disabled.
4636
4637 2007-02-02  Rolf Bjarne Kvinge <RKvinge@novell.com> 
4638
4639         * SizeGrip.cs: Only draw sizegrip if enabled (but always draw
4640           background) and only allow dragging if enabled. This way the
4641           sizegrip can be used to fill the open square that otherwise would
4642           have been shown in the bottom right corner of ScrollableControl
4643           when ScrollableControl is not suppose to support sizing.
4644         * ScrollableControl.cs: Create UpdateSizeGripVisible to decide when the
4645           sizegrip is shown and enabled, and hook up with necessary events.
4646
4647 2007-02-01  Chris Toshok  <toshok@ximian.com>
4648
4649         * DataGridTextBoxColumn.cs: clean up the
4650         GetFormattedString/GetColumnValueAtRow combination of functions.
4651         Also fix UpdateUI, and the initial state of
4652         IsInEditOrNavigateMode.
4653
4654         * DataGridTextBox.cs: don't chain up to base.OnMouseWheel - we
4655         aren't supposed to scroll the textbox here, we're supposed to
4656         scroll the datagrid.
4657
4658 2007-02-01  Chris Toshok  <toshok@ximian.com>
4659
4660         * ComboBox.cs: use vscrollbar_ctrl.Dock instead of explicitly
4661         setting the position.
4662
4663 2007-02-01  Chris Toshok  <toshok@ximian.com>
4664
4665         * DataGrid.cs (OnLeave): we can now do the CancelCurrentEdit thing
4666         here, since the most recent focus fixes keep us from generating
4667         the Leave event when our textbox gets focus.
4668         (Edit): we should be passing null for the column style's
4669         instantText parameter.
4670         
4671 2007-02-01  Jonathan Pobst  <monkey@jpobst.com>
4672
4673         * ToolStripDropDownItem.cs: Make sure DropDownOpening event is 
4674         raised.  Fixes menu text/icons not showing up in PDN.
4675
4676 2007-02-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4677
4678         * Control.cs: Remove code in constructor that makes every
4679         control with WS_CHILD set have initial location -1, -1.
4680
4681 2007-01-31  Jackson Harper  <jackson@ximian.com>
4682
4683         * X11Dnd.cs: Take the keyboard on init to reduce coupling with
4684         XplatUIX11.
4685         * XplatUIX11.cs: Give teh keyboard to teh dnd.
4686
4687 2007-01-31  Jackson Harper  <jackson@ximian.com>
4688
4689         * X11Dnd.cs: Use IDataObject instead of the DataObject class.
4690         - Remove some debug code.
4691
4692 2007-01-31  Jackson Harper  <jackson@ximian.com>
4693
4694         * XplatUIX11.cs: If you set the override cursor during a grab, it
4695         should actually override the grab cursor.  This comes into play
4696         when you are setting custom cursors in a DND feedback method.
4697
4698 2007-01-31  Jackson Harper  <jackson@ximian.com>
4699
4700         * X11Dnd.cs: Add support for handling the QueryContinue and
4701         GiveFeedback events.
4702         - Cancel drag and drop actions when the escape key is clicked.
4703         * XplatUIX11.cs: Let the dnd subsystem get key events, so that it
4704         can handle the ESCAPE key.
4705         - Allow dnd to swallow BUTTONUP messages if it needs to.  This is
4706         done when dnd events are continued after the button is released.
4707         - Add a new helper method so that dnd can translate key events.
4708
4709 2007-01-31  Alexander Olk  <alex.olk@googlemail.com>
4710
4711         * FileDialog.cs: Rewrite of Jacksons OnClickCancelButton patch to
4712         make it more obvious what is happening.
4713
4714 2007-01-30  Jackson Harper  <jackson@ximian.com>
4715
4716         * XplatUIX11.cs: Don't break when handling button release in drag
4717         and drop operations. We need that BUTTONUP message to get through
4718         so capture is released.
4719         * X11Dnd.cs: We don't need to manually grab the pointer anymore,
4720         this is handled automatically when the mouse is down.
4721
4722 2007-01-30  Jackson Harper  <jackson@ximian.com>
4723
4724         * FileDialog.cs: OnClickCancelButton gets called whenever the dialog
4725         is closed, so we need to make sure that we aren't changing the
4726         dialog result when the OK (Open or Save) button has been clicked
4727         and we are closing the window ourselves.  Note we don't need to
4728         worry about the cache being written in this case, because it was
4729         already done in the previous FilOk call.
4730
4731 2007-01-30  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4732         
4733         * DateTimePicker.cs: Remove a warning.
4734         * ComboBox.cs: Remove a couple of warnings.
4735
4736 2007-01-29  Chris Toshok  <toshok@ximian.com>
4737
4738         * XplatUIX11.cs: don't crash, and remove the icon if the user has
4739         set one, if SetIcon is passed a null icon.
4740
4741 2007-01-29  Andreia Gaita  <avidigal@novell.com>
4742
4743         * TextBox.cs: Redraw when the password characters changes
4744         * TextControl.cs: Check if textbox has a password char and draw 
4745         a line of password chars instead of the text in the line. LineTag gets 
4746         an extra Draw() method which allows document.Draw to override the text 
4747         that will be drawn. Removes 1024 char limitation on length of passworded 
4748         lines.
4749
4750 2007-01-29  Jackson Harper  <jackson@ximian.com>
4751
4752         * TextBoxBase.cs: Deleting sections of text is undoable.  Deleting
4753         single chars is not.
4754
4755 2007-01-28  Jonathan Pobst  <monkey@jpobst.com>
4756
4757         * TextRenderer.cs: Fix cutting off the bottom of letters like "j" by
4758         one pixel.  Fix a StackOverflowException caused by an overload wrongly
4759         calling itself.
4760
4761 2007-01-26  Everaldo Canuto  <everaldo@simios.org>
4762
4763         * MenuAPI.cs: Fixed kerboard grab problem when "enter"key is pressed,
4764         also remove ProcessArrowKey and put the code inside ProcessKeys.
4765
4766 2007-01-26  Jonathan Pobst  <monkey@jpobst.com>
4767
4768         * PaddingConverter.cs: Added.
4769
4770 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4771         
4772         * ThemeWin32Classic.cs: Only draw the text of a StatusBar if
4773         ShowPanels is false (fixes #80600). Only draw up to 127 characters
4774         of text (fixes #80601). For panels clip the text to draw to the
4775         panel (fixes #80603).
4776
4777 2007-01-26  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4778
4779         * ComboBox.cs: Fixed implementation of ResetText.
4780
4781 2007-01-25  Jackson Harper  <jackson@ximian.com>
4782
4783         * TextControl.cs: For the last char of a line we need to use the
4784         line size, not that chars width, since it won't actually be
4785         computed since the right side of a char is based on the start of
4786         the left side of the next char, and the next char does not exist.
4787
4788 2007-01-25  Chris Toshok  <toshok@ximian.com>
4789
4790         * Splitter.cs: fix the new unit tests, and reindent some switch
4791         statements.
4792
4793 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4794
4795         * ComboBox.cs: Implemented 2.0 methods and events.
4796         * TextBoxBase.cs: Added OnTextUpdate, so that
4797         ComboBox.ComboTextBox can inform ComboBox of it.
4798
4799 2007-01-25  Jackson Harper  <jackson@ximian.com>
4800
4801         * TextControl.cs: Respect ShowSelection when deciding whether or
4802         not to display the caret, this allows comboboxes to have carets
4803         when the combotextbox does not have focus.
4804
4805 2007-01-25  Jackson Harper  <jackson@ximian.com>
4806
4807         * TextControl.cs: Add a Suspend/Resume for updating, basically the
4808         same as the Suspend/Resume for recalc, except this will do actual
4809         Invalidates.
4810         - New Undo manager, works much like the MS version.
4811         - Implemented Redo
4812         * TextBoxBase.cs: The Cut operation is undoable.
4813
4814 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4815         
4816         * TextBoxBase.cs: Don't antialias text. Makes it look way better
4817         on Windows (no difference on Linux).    
4818
4819 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4820
4821         * XplatUIWin32.cs: Set SWP_NOACTIVATE in RequestNCRecalc as well,
4822         we don't want to activate any windows. Fixes #79433.
4823
4824 2007-01-25  Jonathan Pobst  <monkey@jpobst.com>
4825
4826         - ButtonBase.cs: Fix capitalization of parameter: disposing.
4827         [Fixes bug #80609]
4828
4829 2007-01-25  Alexander Olk  <alex.olk@googlemail.com>
4830
4831         * FileDialog.cs:
4832         - Move to using System.ComponentModel.EventHandlerList
4833         - Replace Refresh with Invalidate
4834         - Clear the mime filecache on closing
4835         - Some other memory reducing work. After beeing closed FD now uses
4836           only about 300 KB for the fdo mime stuff plus the memory of the
4837           cached icons.
4838         * Mime.cs: Changed coding style and removed unnecessary commented
4839         code. Some more memory memory reducing work.
4840
4841 2007-01-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4842
4843         * ComboBox.cs: Implemented FlatStyle and DropDownHeight, and added
4844         a few other missing 2.0 properties.
4845         * Theme.cs: Added DrawFlatStyleComboBox.
4846         * ThemeWin32Classic.cs: Implemented DrawFlatStyleComboBox.
4847
4848 2007-01-24  Chris Toshok  <toshok@ximian.com>
4849
4850         * XplatUIX11.cs: fix the wake_waiting logic - we always clear the
4851         wake_waiting flag, not just when there's data to be read.  if we
4852         don't, then future wakeup's won't reach us and we'll be doomed to
4853         wait for the entire 1 second timeout forever (unless there are X
4854         events to be had).
4855
4856 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
4857
4858         * ComboBox.cs: FindStringExactMaxException doesn't throw AOORE on 2.0
4859         until you pass Items.Count, not Items.Count - 1 like 1.1.
4860
4861 2007-01-24  Gert Driesen  <drieseng@users.sourceforge.net>
4862
4863         * ColumnHeader.cs: Fixed ParamName in ArgumentOutOfRangeException.
4864
4865 2007-01-24  Jonathan Pobst  <monkey@jpobst.com>
4866
4867         * ToolStripContainer.cs: The recent Dock fix exposed that I was
4868         adding the panels in the wrong order.
4869
4870 2007-01-24  Jackson Harper  <jackson@ximian.com>
4871
4872         * TextBoxBase.cs: When we move the caret we also need to move the
4873         selection, this fixes some random crashing after doing select
4874         text, unselect, delete a char, paste.
4875
4876 2007-01-24  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4877
4878         * Form.cs: Update SizeGrip's location even if it's not visible (fixes #80592).
4879
4880 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
4881
4882         * Control.cs: In OnParentBackgroundImageChanged remove conditions to call
4883         OnBackgroundImageChanged, it mimics win32 behavior. Fixes #80553. 
4884         * ToolBar.cs: Force redraw in BackgroundImageChanged.
4885
4886 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
4887
4888         * ToolBar.cs:
4889         - Implement support for vertical toolbars. Fixes #80539;
4890         - Call LayoutToolBar when resize, it fix some other problems in layout.
4891         - Rename requested_height to requested_size, as we can have width on it
4892         when toolbar is vertical.
4893         - Create a private property "Vertical" that uses Dock to verify when 
4894         toolbar is vertical or not.
4895         - Set ControlStyles when change Dock property.
4896         - Refactory in LayoutToolBar to have better variables names and to support
4897         vertical toolbars.
4898         - Fixes default value for ButtonSize when button count is equal zero, size
4899         must be (39, 36) test case writed.
4900
4901 2007-01-23  Chris Toshok  <toshok@ximian.com>
4902
4903         * Control.cs: fix the checks so that they work correctly for mdi
4904         parents/children.
4905
4906 2007-01-23  Chris Toshok  <toshok@ximian.com>
4907
4908         * Control.cs: ControlCollection seems to have super-secret
4909         abstraction breaking knowledge of Mdi containers.  allow MdiClient
4910         to add toplevel controls.
4911
4912 2007-01-23  Chris Toshok  <toshok@ximian.com>
4913
4914         * Control.cs: throw an ArgumentException if a toplevel control is
4915         added to our control collection from ControlCollection.Add, as
4916         well as from ControlCollection.IList.Add.  This fixes the
4917         ControlSetTopLevelTest.TestTopLevelAdd unit test.
4918
4919         Also, in ControlCollection.IList.Add, don't through an
4920         ArgumentNullException, throw an ArgumentException, when value ==
4921         null.  This matches MS.
4922
4923 2007-01-23  Chris Toshok  <toshok@ximian.com>
4924
4925         * BindingSource.cs: initial, incomplete, implementation of
4926         BindingSource.
4927
4928 2007-01-23  Jackson Harper  <jackson@ximian.com>
4929
4930         * TextControl.cs:
4931         * TextBoxBase.cs: Checking in some pieces of the undo stuff so
4932         that I can fix a broken unit test (TextBoxTest::ClearUndo)
4933         
4934 2007-01-23  Everaldo Canuto  <everaldo@simios.org>
4935
4936         * ToolBar.cs: Add status fields to ToolBarButtonInfo.
4937
4938 2007-01-23  Andreia Gaita  <avidigal@novell.com>
4939
4940         * TreeNode.cs: Add new 2.0 ImageKey and SelectedImageKey properties.
4941         * TreeNodeCollection.cs: New Add() methods, ContainsKey and
4942         IndexOfKey() for 2.0
4943
4944 2007-01-23  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4945
4946         * XplatWin32.cs: In RequestNCRecalc call SetWindowPos with SWP_NOZORDER
4947         to prevent it from changing z-order.
4948         * MdiWindowManager.cs: Refactor part of SetWindowState to MdiClient, only
4949         leave UI updates in MdiWindowManager.
4950         * InternalWindowManager.cs: Check for 0 sized nc areas and make them
4951         1 sized (NC handling goes weird on Linux otherwise).
4952         * MdiClient.cs: Add missing ExStyle (WS_EX_CLIENTEDGE), so it's no longer
4953         necessary to handle WM_NCCALCSIZE anymore. This also made it possible to
4954         remove a few NCRequestRecalcs. Changed calculations in IconicBounds
4955         to use ClientSize of MdiClient instead of entire size. Refactored ActivateChild
4956         and SetWindowState(s) to allow for changing the size of an activated child
4957         before activating it (reduces a lot of flicker).
4958
4959 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
4960
4961         * Form.cs: Changing FormBorderStyle has different semantics based
4962         on whether the Form is visible or not.  If not visible, don't change
4963         the Size.  But InvalidateNC needs to be called to force the window
4964         to pick up the changes and redraw itself.  [Fixes bug #80574]
4965
4966 2007-01-22  Jonathan Pobst  <monkey@jpobst.com>
4967
4968         [Moma work]
4969         * ContainerControl.cs: ProcessCmdKey.
4970         * ErrorProvider.cs: new constructor.
4971         * Form.cs: fix AutoValidateEvent compiler warning.
4972         * Label.cs: fix OnAutoSizeChanged compiler warning.
4973         * MenuStrip.cs: fix CanOverflow compiler warning.
4974         * TabControl.cs: SelectTab, OnSelected methods, Selected event.
4975         * TextBox.cs: Dispose.
4976         * ToolStrip.cs: CanOverflow, re-enable double buffering.
4977         * ToolStripControlHost.cs: fix CausesValidation compiler warning.
4978         * ToolStripDropDown.cs: fix ContextStripMenu compiler warning.
4979         * ToolStripItem.cs: Overflow, RightToLeft properties.
4980
4981 2007-01-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
4982
4983         * Form.cs: Move the layout of the main form to MdiWindowManager.
4984         * MdiWindowManager.cs: If WindowState changes from or to Maximized,
4985         do a layout of the main window to update MdiClient's client area to
4986         the right area. Fixes #80533. Remove the calculation of nc size, 
4987         it was just wrong and the correct one is the same as for 
4988         InternalWindowManager. 
4989
4990 2007-01-20  Jonathan Pobst  <monkey@jpobst.com>
4991
4992         * Control.cs: Setting Anchor or Dock needs to reset the other
4993         to its default.  [Fixes bug #80556]
4994
4995 2007-01-20  Chris Toshok  <toshok@ximian.com>
4996
4997         * CheckedListBox.cs: class status changes.
4998
4999         * ScrollableControl.cs: same.
5000
5001         * RichTextBox.cs: same.
5002
5003         * ContainerControl.cs: same.
5004
5005         * ListView.cs: same.
5006
5007         * NotifyIcon.cs: same.
5008
5009         * MenuStrip.cs: same.
5010
5011         * RadioButton.cs: same.
5012
5013         * CheckBox.cs: same.
5014
5015         * PrintPreviewDialog.cs: same.
5016
5017         * Form.cs: same.
5018
5019 2007-01-19  Jonathan Pobst  <monkey@jpobst.com>
5020
5021         * TreeNode.cs: Apply Alan's patch for Name property.
5022
5023 2007-01-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5024         
5025         * Form.cs: Implemented SizeGripStyle.
5026         * SizeGrip.cs: Check for minimum and maximum size for the
5027         control being resized and only resize if size has actually
5028         changed.
5029
5030 2007-01-19  Chris Toshok  <toshok@ximian.com>
5031
5032         * DataGridColumnStyle.cs: stop setting _readonly in the
5033         PropertyDescriptor setter.  fixes a unit test failure.
5034
5035         also, rename ParentReadOnly to TableStyleReadOnly, and have it
5036         just consult our table style (if we have one).  We don't need to
5037         consult the datagrid readonly attribute because that's passed in
5038         as the _ro arg to Edit.  this simplifies things a little.
5039         
5040         * DataGrid.cs: use CurrentColumn instead of
5041         current_cell.ColumnNumber just to simplify some of the code.
5042
5043         switch the order of some things in the CurrentCell setter to keep
5044         the previous cell from getting a textbox again -
5045         EnsureCellVisibility causes scrolling to happen, which calls Edit.
5046         So we need to set the new cell before calling it.
5047         
5048         call Edit in OnEnter, as does Microsoft.
5049         
5050         also, make sure the current table style isn't the one we create
5051         initially when checking to see if it's different than the one
5052         we're setting it to in BindColumns (this fixes #80421).
5053
5054         * GridTableStylesCollection.cs: table styles can have "" for a
5055         mapping name.  part of the fix for #80421.
5056
5057         * DataGridTextBoxColumn.cs: simplify the readonly calculation in
5058         Edit significantly.
5059
5060 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
5061
5062         * TextRenderer.cs: Rewrote to be complete-er, more MS-matching-er,
5063         and less GDI object leaky-er.
5064
5065 2007-01-18  Andreia Gaita  <avidigal@novell.com>
5066
5067         * LinkLabel.cs: Add opaque control style
5068
5069 2007-01-18  Jackson Harper  <jackson@ximian.com>
5070
5071         * TextControl.cs: Calculate width properly.
5072         - Don't store the tag's X offset, this can be figured out very
5073         easily.
5074         - When getting the caret tag make sure to get the last empty tag.
5075
5076 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
5077
5078         * Form.cs: Recalculate our size after setting a new FormBorderStyle.
5079         [Fixes bug #79959]
5080
5081         * Control.cs: Color.Empty shouldn't count for previous transparent
5082         redraw changes.
5083
5084 2007-01-18  Jackson Harper  <jackson@ximian.com>
5085
5086         * TextBox.cs:
5087         * RichTextBox.cs:
5088         * TextControl.cs: Starting to merge in some pieces of my older
5089         undo work.  Basically just some slight cleanup of the undo API.
5090
5091 2007-01-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5092
5093         * TrackBar.cs: Fix signature of RightToLeftLayout.
5094         * StatusBar.cs: Implemented missing 2.0 methods and attributes.
5095         * StatusBarPanel.cs: Implemented missing 2.0 methods and attributes.
5096         * Application.cs: Implemented UseWaitCursor.
5097
5098 2007-01-18  Jackson Harper  <jackson@ximian.com>
5099
5100         * TextControl.cs: We can't skip tags if any part of the tag is
5101         visible.
5102
5103 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
5104
5105         * ContainerControl.cs: Override OnLayout.
5106
5107 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
5108
5109         * NotifyIcon.cs: Add ContextMenuStrip and Tag properties.
5110
5111         * ContextMenuStrip.cs: Make sure context menu is shown on top of 
5112         everything else.
5113
5114 2007-01-18  Chris Toshok  <toshok@ximian.com>
5115
5116         * ContainerControl.cs: remove the partial handling of LBUTTONDOWN
5117         (leftover from the container_selected days, I'd wager).  fixes bug
5118         #80546.
5119
5120 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
5121
5122         * Control.cs: Apply patch from George to fix the new testcase on
5123         bug #80451.  We can't just check for Color.Transparent, we need 
5124         to check if the back color's alpha channel is < 255.
5125
5126 2007-01-18  Jonathan Pobst  <monkey@jpobst.com>
5127
5128         * Form.cs: Move setting show_icon = true to before the constructor
5129         so that the base constructor has that information when it calculates
5130         the form's size.  Was causing forms to be (6, 6) bigger than they
5131         were supposed to be.  Thanks for catching this Rolf!
5132
5133 2007-01-18  Jackson Harper  <jackson@ximian.com>
5134
5135         * TextControl.cs: When replacing a selection we need to invalidate
5136         from the initial selection start, because selection start is moved
5137         to the end of the replacement.
5138
5139 2007-01-18  Andreia Gaita  <avidigal@novell.com>
5140
5141         * LinkLabel.cs: Missing ControlStyles. Fixes #80482
5142
5143 2007-01-18  Chris Toshok  <toshok@ximian.com>
5144
5145         * DataGridTextBoxColumn.cs: fix most of the NotWorking unit tests
5146         I just added.
5147
5148 2007-01-17  Everaldo Canuto  <everaldo@simios.org>
5149
5150         * ToolBar.cs: Add layout methods to ToolBarButtonInfo class, every 
5151         layout methods and properties from ToolBarButton must be available
5152         into ToolBarButtonInfo.
5153
5154 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
5155
5156         * Control.cs: If the control has a transparent background, we
5157         need to refresh it when it moves and when it's parent's background
5158         image changes.  [Fixes bug #80451]
5159
5160 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
5161
5162         * XplatUIWin32.cs: Don't use 2.0 methods in 1.1 code!  Doh!
5163
5164 2007-01-17  Jonathan Pobst  <monkey@jpobst.com>
5165
5166         * XplatUIWin32.cs: Implement proper double buffering for Windows.
5167         [Fixes bug #80447, and probably speeds up things as well]
5168
5169 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5170
5171         * XplatUIX11.cs: Caption height for MDI children is 19, not 26.
5172         * XplatUIWin32.cs: We need to recalculate NC size after changing 
5173         window style to toolwindow (otherwise the client rectangle will be
5174         3 pixels to small for some reason).
5175         * MdiWindowManager.cs: Revert NC size calculations to match how
5176         they are calculated only based on window styles (to match
5177         Win32AdjustWindowRectEx, since otherwise when setting size or 
5178         location, Control will call Win32AdjustWindowRectEx to update client 
5179         size, which would provoke a paint, then we'd get a NCCALCSIZE and 
5180         calculate a different value of client size causing another paint 
5181         (and flickering))
5182         * InternalWindowManager.cs: When moving or resizing a window only
5183         update size or location if they actually changed.
5184         * ThemeWin32Classic.cs: ManagedWindowsBorderWidth is now 4 instead of 3
5185         (seems to match Windows behaviour better). Cleaned up 
5186         ManagedWindowDecorations to draw what's needed and nothing else
5187         (was drawing borders and lines where they shouldn't be)
5188         * Hwnd.cs: GetWindowRectangle now knows about MDI border sizes
5189         (style = 0xFFFF) and takes into account caption height when 
5190         calculating window rectangle.   
5191
5192 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
5193
5194         * ToolBar.cs: Internal ToolBarButtonInfo class added, Because same button 
5195         can be added to toolbar multiple times, we need to maintain a list of 
5196         button information for each positions.
5197
5198 2007-01-16  Everaldo Canuto  <everaldo@simios.org>
5199
5200         * ToolBar.cs: Some small stetic changes.
5201
5202 2007-01-16  Jackson Harper  <jackson@ximian.com>
5203
5204         * TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
5205         that allow us to have nested recalc = false blocks.
5206         - Add paste support for images in the RichTextBox
5207         * RichTextBox.cs: flush the text after the color is changed, so
5208         the change takes effect.
5209         - Use SuspendRecalc
5210         - Some extra debugging info
5211         * TextControl.cs: Tags no longer track their length, it is just
5212         computed from the next tags length, this makes things a little
5213         simpler and reduces places that we have to track length changes.
5214         - Refactored the linetag class a little so we could make it
5215         a base class for different kinds of tags
5216         - Created a image tag, a tag that can have a single image inserted
5217         into it
5218         - Replace the norecalc flag with a Suspend/Resume Recalc pair, so
5219         that we can call suspend multiple times.
5220         - Add some debugging methods
5221
5222 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5223
5224         * MdiClient.cs: Add ActivatePreviousChild for 
5225         mdi child window navigation.
5226         * Form.cs: Use MdiClient.ActivateNextChild/
5227         ActivatePreviousChild instead of Form.SelectNextControl
5228         to select the next/previous child since 
5229         SelectNextControl doesn't do it in the same order
5230         as mdi children should do it.
5231
5232 2007-01-16  Chris Toshok  <toshok@ximian.com>
5233
5234         * Control.cs: remove container_selected field.
5235
5236 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5237
5238         * MdiClient.cs: Update main form's ActiveChild when
5239         updating keyboard focus for the mdi child.
5240
5241 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
5242
5243         * Control.cs: PreferredSize fix.
5244
5245         * Form.cs: Add several 2.0 events, properties, and methods.
5246
5247 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
5248
5249         * Form.cs: Provide meaningful message when MdiParent is assigned a
5250         Form that is not an MdiContainer.
5251
5252 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5253
5254         * MdiClient.cs: Update main form's ActiveChild when
5255         activating a mdi child.
5256
5257 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5258
5259         * MdiWindowManager.cs: Fix NRE when merging menus and main form
5260         doesn't have a menu.
5261
5262         * Form.cs: Request NCRecalc after creating a mdi child window.
5263         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
5264         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
5265         
5266         * MdiClient.cs: Add new method SendFocusToActiveChild that either
5267         sends keyboard focus to the active child, or to the MdiClient
5268         if there are no child forms.
5269         
5270 2007-01-15  Chris Toshok  <toshok@ximian.com>
5271
5272         * ListView.cs: drop the *Internal overrides, just do our work in
5273         ItemControl's WndProc instead.
5274
5275         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
5276         of the various controls, and forward the events properly (in the
5277         same manner as MS) from the textbox to the UpDown.  Also the
5278         ActiveControl of the UpDownBase gets set properly now.  Finally,
5279         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
5280
5281         * NumericUpDown.cs: set Text in the ctor.
5282
5283         * DomainUpDown.cs: call UpdateEditText in the ctor.
5284         
5285         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
5286         so even a Selectable = false textbox can be focused if you click
5287         in it.  Go figure.
5288
5289         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
5290         just add their handling in their respective WndProc's.  Also add
5291         an explicit FocusInternal method that doesn't consult CanFocus
5292         before calling Select(this).
5293
5294         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
5295         do our work in WndProc instead.
5296
5297         * TabControl.cs: same.
5298
5299         * ComboBox.cs: same.
5300
5301 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
5302
5303         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
5304         Fixes #80006.
5305
5306 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
5307
5308         * ListViewItem.cs:
5309         * ThemeWin32Classic.cs: Don't draw the item text outside
5310         item bounds in Details view, as well as use trimming.
5311         Fixes bug #80376.
5312
5313 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
5314
5315         * Form.cs: Implement Form.ShowIcon.
5316         
5317         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
5318         null, which when combined with the DlgModalFrame window style removes
5319         the icon from the title bar.
5320
5321 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
5322
5323         * Control.cs: Call OnMouseClick after OnClick. (2.0)
5324
5325 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
5326
5327         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
5328         menu when mdi child windows theres a menu, uses insert to get icon
5329         at first position. Partially fix #80006.
5330
5331 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
5332
5333         * Clipboard.cs: Implement 2.0 methods.
5334
5335 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
5336
5337         * Menu.cs: Implement Insert method of MenuItemCollection class
5338         to fix MenuMerge.
5339
5340 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5341
5342         * ListView.cs: Implement 2.0 FindItemWithText method.
5343
5344 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
5345
5346         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
5347         to calculate menu bar size. Fixes #80290.
5348
5349 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
5350
5351         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
5352
5353 2007-01-11  Chris Toshok  <toshok@ximian.com>
5354
5355         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
5356         initial form.
5357
5358 2007-01-11  Chris Toshok  <toshok@ximian.com>
5359
5360         * LinkLabel.cs: make sure to call base.Select in our Select method
5361         if it turns out we're going to be selected (i.e. if we have a link
5362         that is going to receive focus).  That way our container's
5363         ActiveControl is updated properly.
5364
5365 2007-01-11  Chris Toshok  <toshok@ximian.com>
5366
5367         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
5368         they have 1 or more links.  this fixes the crash gert reported.
5369
5370 2007-01-11  Andreia Gaita  <avidigal@novell.com>
5371
5372         * ContainerControl.cs: Remove ContainerSelected flag, not needed
5373         anymore.
5374
5375         * Control.cs (Controls.Add): Check if control to be added to the collection
5376         is a top level control, and throw an ArgumentException if it is.
5377         Remove ContainerSelectedFlag, not needed anymore.
5378
5379         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
5380         top most control doesn't activate the form. This fixes a problem in the
5381         MessageBox, where the default button wouldn't get focus because the form
5382         was activated before being Loaded - when the Owner is set, SetTopMost is
5383         called, and it would activate it.
5384
5385 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
5386
5387         * Button.cs: When clicked and setting the parent form's DialogResult,
5388         use FindForm instead of Parent, since parent could be a container
5389         control and not the Form.  Fixes bug #80495.
5390
5391 2007-01-10  Chris Toshok  <toshok@ximian.com>
5392
5393         * Form.cs: move the call to SendControlFocus into the same
5394         is_loaded check.
5395
5396 2007-01-10  Chris Toshok  <toshok@ximian.com>
5397
5398         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
5399         It breaks in the face of the new ActiveControl stuff, and should
5400         be unnecessary.
5401
5402         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
5403         activecontrol's focus if it's not already set, after we set
5404         ActiveControl, but before we call OnActivated.  Re-fixes #79667
5405         after the previous focus/active control fixes regressed it.
5406
5407         * Control.cs: reindent some code.
5408         
5409 2007-01-10  Chris Toshok  <toshok@ximian.com>
5410
5411         * Splitter.cs: clearing some outstanding changes from my tree.
5412         Replace all accesses (not writes) to the internal dock_style field
5413         with the Dock property.
5414
5415 2007-01-10  Chris Toshok  <toshok@ximian.com>
5416
5417         * Control.cs: make FireEnter, FireLeave, FireValidating, and
5418         FireValidated virtual.
5419
5420         * Form.cs: override and don't chain up calls to FireEnter and
5421         FireLeave.
5422
5423 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5424
5425         * ListView.cs: Add more text padding space when using
5426         auto resize for columns (the previous value didn't work fine).
5427
5428         * ThemeWin32Classic.cs: Update text position inside columns,
5429         to match the appeareance of .Net.
5430
5431         * ColumnHeader.cs: When using auto resize, only the Width should
5432         depend on the sub items, not the Height. Also, set width after
5433         auto resizing (the value of Width should never remain as -1 or -2).
5434
5435 2007-01-10  Chris Toshok  <toshok@ximian.com>
5436
5437         * Application.cs: fix compilation errors when debug is enabled.
5438
5439 2007-01-10  Chris Toshok  <toshok@ximian.com>
5440
5441         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
5442         add some nice ascii art pictures and explanation of the process).
5443         (GetMostDeeplyNestedActiveControl): new utility function we need
5444         because our ActiveControl can refer to a child container with its
5445         own ActiveControl.
5446
5447         * Form.cs (OnActivated): remove the call to SelectActiveControl
5448         from here, since you can override this method and not chain up,
5449         and winforms still sets the active control.
5450         (OnCreateControl): also remove the unnecessary SelectActiveControl
5451         call from here.
5452         (WndProc): it's actually called from the WM_ACTIVATE block, just
5453         before calling OnActivated.
5454
5455         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
5456         inside the else.  the ActiveControl setter will end up setting
5457         focus on @control.  This keeps us from setting it again (and
5458         generating an extra LostFocus/GotFocus pair).
5459         (Select (bool, bool)): reindent.
5460
5461 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
5462
5463         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
5464         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
5465         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
5466         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
5467         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
5468         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
5469         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
5470         ToolStripTextBox.cs: Another wave of corcompare work.
5471
5472 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5473
5474         * ColumnHeader.cs: Implement 2.0 AutoResize method using
5475         the Width property.
5476
5477         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
5478         methods by callling Column.AutoResize method on columns.
5479
5480 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
5481
5482         * Control.cs: Provide proper implementations of PreferredSize
5483         and GetPreferredSize (2.0).
5484
5485 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
5486
5487         * Form.cs: Remove one character (!) to make my previous OnClosing
5488         stuff work for modal windows like MessageBox.
5489
5490 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5491
5492         * ListView.cs:
5493         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
5494         ListView.Columns to get the last displayed column. Fixes #80452.
5495
5496 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
5497
5498         * Label.cs, LinkLabel.cs: Source code identation fixes.
5499
5500 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
5501
5502         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
5503         we dont need to invalidate only borders because when we invalidate four
5504         border lines the invalidate's generates a complete redraw of button, 
5505         because it now invalidate a complete rect some other redraws operations
5506         are fixed. Fixes #80196.
5507         
5508         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
5509         Remove ToolBarInvalidateEntireButton as it is not used.
5510
5511 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
5512         
5513         * Form.cs: Make sure that both OnClosing and OnFormClosing are
5514         called for 2.0 profile.
5515         * CloseReason.cs: Make class internal for 1.1.
5516
5517 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
5518
5519         * ToolStripManager.cs: Implement FindToolStrip functionality.
5520         * ToolStrip.cs: Register and unregister with ToolStripManager.
5521
5522 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
5523
5524         * Control.cs: This was messy.  2.0 moves much of ControlCollection
5525         to ArrangedElementCollection.  Implemented this with as few #if's as 
5526         possible (which is still too many).
5527
5528 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
5529
5530         * Control.cs: Implement SizeFromClientSize() [2.0].
5531
5532 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
5533
5534         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
5535         use Theme.BorderSize to calculate area instead of static value 1, 
5536         by the way use new BorderStaticSize instead     Border3DSize when 
5537         border_static is true. Fixes #79537.
5538         
5539         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
5540         
5541         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
5542         it is not needed.
5543
5544 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
5545
5546         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
5547
5548 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
5549
5550         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
5551         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
5552         
5553         * Hwnd.cs: 
5554         - border_static field added, it will used to define when a control 
5555         theres 3D border but it must be static (thin).
5556         - In GetWindowRectangle use Theme.BorderSize to calculate area 
5557         instead of static value 1, by the way use new BorderStaticSize instead
5558         Border3DSize when border_static is true.
5559
5560         * XplatUIX11.cs, XplatUIOSX.cs: 
5561         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
5562         
5563         * Theme.cs: BorderStaticSize field added.
5564
5565 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
5566
5567         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
5568
5569 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
5570
5571         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
5572         mimic same behavior than win32 that set border only in CreateParams,
5573         it fix problems under CreateParams overrides. Fix #79442 and partial
5574         fix #79537.
5575         
5576         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
5577         of thi control you must call recreate handle. 
5578         
5579         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
5580         need to do anything as RecreateHangle will take care about borders.
5581
5582 2007-01-05  Mike Kestner  <mkestner@novell.com>
5583
5584         * ListView.cs: hack to eliminate Lost/Got focus notifications on
5585         cycles between the ItemControl and parent.  Fixes #80388.
5586
5587 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
5588
5589         * Control.cs: Lazy init layout engine. Do not directly use 
5590         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
5591
5592 2007-01-05  Chris Toshok  <toshok@ximian.com>
5593
5594         * DataGrid.cs: don't forceably rebind columns in SetDataSource
5595         unless our list manager has changed (i.e. unless we have reason to
5596         believe our columns have changed).  Fixes #80422.
5597         
5598         also, disable the call do BindColumns in
5599         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
5600         1.1 the event isn't raised in response to a column addition on a
5601         table.)
5602
5603 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
5604
5605         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
5606         that inheritors can not call it if they choose.  Fixes bug #80456.
5607
5608 2007-01-05  Andreia Gaita  <avidigal@novell.com>
5609
5610         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
5611         doesn't blow up with a null exception on marshalling.
5612         
5613 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
5614
5615         * Control.cs: Implement several 2.0 protected properties and methods.
5616         Ensure that all necessary events are being called when properties
5617         are set.
5618
5619 2007-01-05  Mike Kestner  <mkestner@novell.com>
5620
5621         * ListView.cs: implement PgUp/PgDn for Details view.  Also
5622         fixes First/LastVisibleIndex to use the item_control.ClientRect 
5623         instead of the parent control.  Fixes #80378.
5624
5625 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
5626
5627         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
5628           determine whether to use yard-pound or not (bug #78399).
5629
5630 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
5631
5632         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
5633         problems. So it is time to bring back the old popupbutton colors.
5634
5635 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5636
5637         * ColumnHeader.cs:
5638         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
5639         property by using the internal information of the
5640         columns order in ListView.
5641
5642 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
5643
5644         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
5645         Add 2.0 Tag properties.
5646
5647         * LinkArea.cs: Add 2.0 ToString method.
5648
5649 2007-01-03  Chris Toshok  <toshok@ximian.com>
5650
5651         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
5652         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
5653         when we're editing, which fixes #80047.
5654
5655 2007-01-03  Chris Toshok  <toshok@ximian.com>
5656
5657         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
5658         #80404.
5659
5660 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
5661
5662         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
5663         property and implementation.
5664
5665         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
5666         for MdiWindowListItem property.
5667
5668         * ToolStripDropDown.cs: Don't consider hidden menu items while
5669         laying out the menu.
5670
5671 2007-01-03  Andreia Gaita  <avidigal@novell.com>
5672
5673         * SendKeys.cs: window handle is not needed in win32, so just
5674         get the active window for X after parsing keys and don't use
5675         it when building the message; it is passed by parameter to the 
5676         Xplat method and used there to build the message instead. Also,
5677         wait for events to be processed on SendWait, as opposed to Send,
5678         which doesn't wait :) Playing with threads and Send() completely 
5679         hangs on ms.net, only SendWait() works.
5680         
5681         XplatUIX11.cs
5682         X11Display.cs: Check for valid window handle.
5683
5684 2007-01-03  Jackson Harper  <jackson@ximian.com>
5685
5686         * TextControl.cs: Need to prevent wrap calculations when replacing
5687         text (this was there before i removed it accidently).
5688         - Don't update the cursor during the positioning, just set it to
5689         selection_start at the end of the operaion.
5690
5691 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5692
5693         * Control.cs:
5694         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
5695         
5696 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5697
5698         * MonthCalendar.cs: Added Click and DoubleClick events again,
5699         but this time they only hide Control's Click and DoubleClick.
5700         
5701 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
5702
5703         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
5704         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
5705
5706 2007-01-02  Jackson Harper  <jackson@ximian.com>
5707
5708         * TextBoxBase.cs: We move the caret with the split now, so we
5709         don't need to explicitly move the caret after splitting.  This
5710         fixes the caret bumping down an extra line on Enter.
5711
5712 2007-01-02  Miguel de Icaza  <miguel@novell.com>
5713
5714         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
5715         2.72). 
5716
5717         * ScrollableControl.cs: Add Scroll event.
5718
5719 2007-01-02  Mike Kestner  <mkestner@novell.com>
5720
5721         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
5722         to fix all hdr height padding codepaths.  Fixes #80207.
5723
5724 2007-01-02  Chris Toshok  <toshok@ximian.com>
5725
5726         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
5727         setting it to the Control defaults anyway, and it being after the
5728         Dock set was screwing up layout.
5729         (set_Dock): don't short circuit out of setting base.Dock.  Also,
5730         no need to call UpdateStatusBar here, as it'll be re-layed out if
5731         it needs to be.
5732
5733 2007-01-02  Mike Kestner  <mkestner@novell.com>
5734
5735         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
5736         to header height for width == -1. Fixes the rest of #80207.
5737
5738 2007-01-02  Mike Kestner  <mkestner@novell.com>
5739
5740         * ListView.cs: rework the mouse event forwarding everaldo added
5741         to translate the coordinates to the parent control not
5742         raise the parent events until after we've done our work. Hover
5743         needs more work, in the case where HoverSelection is on, because
5744         the item control receives more than one MouseHover per Enter
5745         event, so we need to ensure only the "first" hover gets forwarded.
5746         Opening a minor bug for that.
5747
5748 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
5749
5750         * CheckedListBox.cs: Fixed SelectionMode to match MS.
5751         * ListControl.cs: Implemented AllowSelection property. Removed extra
5752         tabs.
5753         * ListBox.cs: Implemented AllowSelection property.
5754
5755 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
5756
5757         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
5758         SelectedItem, it prevent for errors when you must disable item
5759         before perform click. Fixes #80409.
5760
5761 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
5762
5763         * MenuAPI.cs: Prevent second level and beyond submenus to close
5764         until first level when move out side of popup.
5765         
5766 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
5767
5768         * MenuAPI.cs:
5769         - Down submenu positin in three pixels.
5770         - Closes sub menu when mouse leaves from menu. Fixes #80402.
5771
5772 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
5773
5774         * ThemeWin32Classic.cs:
5775         - Fix popup menu size adding one pixel on the top.
5776         - Down menu item border from two to one to mimic Win32.
5777         - Some source identation fixes. 
5778
5779 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
5780
5781         * ThemeWin32Classic.cs: Use float numbers to calculate size and
5782         position of menu arrows, it fix wrong arrow size.
5783
5784 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
5785
5786         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
5787         instead of line, it simplify draw operation and fix it using 3D
5788         borders to mimic Win32.
5789
5790 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
5791
5792         * StatusStrip.cs: Add implementation of the sizing grip.
5793
5794         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
5795         StatusStrip rendering.
5796
5797 2006-12-31  Chris Toshok  <toshok@ximian.com>
5798
5799         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
5800         override the layout style (anchor/dock) of the control.  assign to
5801         Dock instead.  Fixes bug #80416.
5802
5803         * ToolStrip.cs: same.
5804
5805 2006-12-31  Andreia Gaita  <avidigal@novell.com>
5806
5807         * ContainerControl.cs: Use ContainerSelected flag to check if 
5808         a Container is directly selected, or if Select is called on a 
5809         non-container. If a container is directly selected, focus events 
5810         should not be raised.
5811         Apply #80411 patch to throw exception on set_ActiveControl if 
5812         control is the same as the current one.
5813         
5814         * Control.cs: Use ContainerSelected flag (see above).
5815         Add invalidation check to raise event but not invalidate if 
5816         dimensions are 0.       
5817         Apply #80411 patch.
5818         
5819
5820 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
5821
5822         * MenuAPI.cs: After click, dont close popup menu when menu is
5823         ContextMenu. Fixes #80399.
5824
5825 2006-12-30  Chris Toshok  <toshok@ximian.com>
5826
5827         * ContainerControl.cs: make sure we throw the exception if the
5828         container control doesn't contain the control we're setting
5829         ActiveControl to.
5830
5831 2006-12-30  Chris Toshok  <toshok@ximian.com>
5832
5833         * Control.cs (SetTopLevel): fix the exception raised by
5834         SetTopLevel for child controls.
5835         (set_Anchor): call UpdateDistances when setting the anchor type.
5836         This fixes bug #80336.
5837
5838 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
5839
5840         * Theme.cs: For now, revert back to 8pt font.
5841
5842 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
5843
5844         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
5845         Fixes #80395.
5846
5847 2006-12-29  Chris Toshok  <toshok@ximian.com>
5848
5849         * Control.cs: reorder the code in OnResize to give the same event
5850         ordering as MS.
5851
5852 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5853
5854         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
5855         TileHorizontally and TileVertically.
5856         
5857 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
5858
5859         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
5860         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
5861         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
5862         Corrected copyright and email adress.
5863
5864 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
5865
5866         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
5867         of Exception in FullPath property if no TreeView is associated with
5868         the TreeNode.
5869
5870 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
5871
5872         * Theme.cs: Marked default_font as private, and initialize it in ctor
5873         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
5874         on 2.0 profile.
5875         * ThemeGtk.cs: Removed default_font intialization.
5876         * ThemeWin32Classic.cs: Removed default_font initialization.
5877
5878 2006-12-28  Chris Toshok  <toshok@ximian.com>
5879
5880         * Control.cs: fix a couple of place where we were creating handles
5881         more aggressively than we should be.  Fixes ControlRefresh unit
5882         tests.
5883
5884 2006-12-28  Chris Toshok  <toshok@ximian.com>
5885
5886         * Control.cs: contrary to what the comment said, Control.Dock does
5887         not supercede Control.Anchor - the last one you assign to decides
5888         the layout behavior.  so we need to keep track of which was the
5889         last set.  Also, fix some of the affected property arguments in
5890         PerformLayout calls, and remove an redundant parent.PerformLayout
5891         call in OnResized.
5892
5893         Add a VisibleInternal property, which returns is_visible.  We
5894         can/should get rid of all the usage of this field elsewhere.
5895
5896 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5897         
5898         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
5899         control style, not DoubleBuffer. Added UseDoubleBuffering property
5900         that indicates whether doublebuffering is enabled and supported.
5901         (comment from and code based on Gert Driesen's patch in #80324).
5902         Fixes #80324.
5903
5904 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5905         
5906         * Control.cs: Fixed a NRE.
5907
5908 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5909
5910         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
5911         for 2.0.
5912
5913 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5914
5915         * Control.cs: Rewrote double buffering, now a seperate
5916         class handles all the buffering, no Graphics is disposed of
5917         until the painting is finished (earlier implementation 
5918         would crash if the control was resized in the OnPaint, 
5919         since it would cause the double buffer to be recreated
5920         and the old one disposed), a separate Graphics is 
5921         created for every paint (MS behaviour and anyways the state
5922         of the Graphics would have to be saved and restored otherwise)
5923         
5924         * XplatUIDriver.cs: 
5925         * XplatUIX11.cs:
5926         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
5927         so that we can get the graphics for the back buffer without
5928         having to create a new one and remove the offscreen_dc parameter
5929         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
5930         
5931 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5932
5933         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
5934         Also make virtual all the key-related methods.
5935
5936         * ListViewItem.cs: Make virtual the key related methods for
5937         ListViewSubItemCollection.
5938
5939 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5940
5941         * ListView.cs:
5942         * ListViewItem.cs:
5943         * ThemeWin32Classic.cs:
5944         * Theme.cs: Initial support for Tile view in ListView,
5945         as well as the implementation of the required bits for it (Item
5946         and Subitem).
5947
5948 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
5949
5950         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
5951         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
5952         Provide useful exception messages.
5953
5954 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
5955
5956         * TrackBar.cs: Remove a warning.
5957         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
5958         when used by DateTimePicker, fixes #80287. This also requires that 
5959         MonthCalendar implements it's own drawing for the yearly updown control,
5960         otherwise the Capture tracking would be too complicated. Removed the Click 
5961         and DoubleClick events (according to comments they were hiding the base class
5962         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
5963         raise these events, not that they cannot be raised. It is possible to raise 
5964         them by calling OnClick and OnDoubleClick). Added two internal fields in 
5965         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
5966         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
5967         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
5968         event, no longer needed.
5969         
5970 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
5971
5972         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
5973         true if new value differs from current value.
5974
5975 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
5976
5977         * Control.cs: ControlCollection.Count must be public. Fixed build of
5978         unit tests.
5979
5980 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
5981
5982         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
5983
5984 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
5985
5986         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
5987
5988 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
5989
5990         * Control.cs: Invalidates control including when Width and Height is 
5991         equal zero or is not visible, only Paint event must be care about 
5992         this. Fixes #79913.
5993
5994 2006-12-26  Chris Toshok  <toshok@ximian.com>
5995
5996         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
5997         more corcompare work.
5998
5999         * DataGridView.cs: fix compiler warning.
6000
6001         * ColumnHeader.cs: some corcompare work, and also take the
6002         opportunity to make the internal fields private.
6003
6004         * ListView.cs: fix the fallout from the above field change.
6005
6006 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
6007
6008         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
6009         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
6010         ToolStripTextBox.cs: Fixes to events and corcompare.
6011
6012 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
6013
6014         * ListView.cs: Call owner.OnMousexx event to propagate events from
6015         item to ListView. Fixes #80367.
6016
6017 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
6018
6019         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
6020         if value is less than one. ItemHeight should not be set to a value
6021         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
6022         Removed extra tabs.
6023
6024 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
6025
6026         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
6027         * ToolStripStatusLabel.cs: Add Spring for Moma.
6028
6029 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
6030
6031         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
6032         Fixed code formatting. Removed debug code.
6033         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
6034
6035 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
6036
6037         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
6038         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
6039         ArgumentOutOfRangeException if ColumnCount is negative. In 
6040         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
6041         less than 4 or higher than 32768.
6042         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
6043         Fixed FormatProvider to return CurrentCulture unless explicitly set.
6044         Fixed IsFormatProviderDefault to return true if FormatProvider has
6045         not been explicitly set.
6046
6047 2006-12-25  Chris Toshok  <toshok@ximian.com>
6048
6049         * Application.cs: add a couple of 2.0 events.
6050
6051 2006-12-25  Chris Toshok  <toshok@ximian.com>
6052
6053         * Control.cs: fix compiler warning.
6054
6055         * AxHost.cs: corcompare fixes.
6056
6057         * ApplicationContext.cs: corcompare fixes.
6058
6059 2006-12-25  Chris Toshok  <toshok@ximian.com>
6060
6061         * Control.cs: only update dist_right/dist_bottom if the
6062         width/height is > 0.  this fixes anchored controls being resized
6063         smaller until they disappear and then resized larger again.
6064
6065 2006-12-25  Chris Toshok  <toshok@ximian.com>
6066
6067         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
6068         since they're nothing more than X/Left and Y/Top, respectively.
6069
6070         Also, move back to a per-control Bitmap/Graphics for
6071         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
6072         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
6073         Height.
6074
6075 2006-12-25  Miguel de Icaza  <miguel@novell.com>
6076
6077         * MessageBox.cs: Implemented overload that takes a new "bool
6078         displayHelpButton" by adding a new internal field "show_help".
6079         When clicked this will raise the HelpRequested on the owner or the
6080         main form. 
6081
6082         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
6083         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
6084
6085         * ListView.cs: Add support ColumnWidthChanged and
6086         ColumnWidthChanging. 
6087
6088         Add support for ColumnReordered event.
6089         (ReorderColumn): Add NET_2_0 specific support for cancelling the
6090         reorder.
6091
6092         Very nice codebase!
6093
6094         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
6095
6096         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
6097
6098 2006-12-24  Chris Toshok  <toshok@ximian.com>
6099
6100         * GridTablesFactory.cs: 2.0 corcompare work.
6101
6102         * ToolStripContainer.cs: add "override" to
6103         ContextMenuStripChanged, and remove the local event object.
6104
6105         * ToolStripDropDown.cs: same with a couple properties.
6106
6107         * ToolStripPanel.cs: same with AutoSizeChanged event.
6108
6109         * TextBoxBase.cs: add "override" to AutoSizeChanged.
6110
6111         * Form.cs: add the remaining 2.0 events, and do some corcompare
6112         attribute work.
6113
6114         * DateTimePicker.cs: add "new" to padding.
6115
6116         * ButtonBase.cs: use Control's use_compatible_text_rendering.
6117
6118         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
6119
6120         * DataGridView.cs: PaddingChanged is overridden.
6121
6122 2006-12-24  Chris Toshok  <toshok@ximian.com>
6123
6124         * Control.cs: corecompare work here too.
6125
6126         * DataGridViewElement.cs, DataGridView.cs,
6127         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
6128         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
6129         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
6130         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
6131         work.
6132
6133 2006-12-24  Miguel de Icaza  <miguel@novell.com>
6134
6135         * Control.cs: Switched the error message on the console for a
6136         todo.  A review of the code will have to cope with this anyways
6137         (since its a large feature, it is in our radar) and it was
6138         producing too much output when running PDN.
6139
6140         * ToolStripComboBox.cs: Set the text when the SelectedIndex
6141         changes.  Applications depend on this (PDN 2.72)
6142
6143 2006-12-23  Chris Toshok  <toshok@ximian.com>
6144
6145         * TableLayoutSettings.cs: finish up the corcompare work for this
6146         class.
6147
6148 2006-12-23  Chris Toshok  <toshok@ximian.com>
6149
6150         * Control.cs: make SetImplicitBounds internal, do some futzing
6151         with LayoutEngine so that it's available in 1.1, and remove the
6152         entire duplicated code mess from PerformLayout.  Use
6153         System.Windows.Forms.Layout.DefaultLayout instead.
6154
6155         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
6156
6157 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
6158
6159         * Form.cs: Add MainMenuStrip property.
6160
6161 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
6162
6163         * Control.cs: Add ContextMenuStrip property and implementation.
6164         Fix ContextMenu implementation to show menu centered on control when
6165         activated using the keyboard instead of showing at screen (0,0).
6166
6167         * ToolStripDropDown.cs: Fix needed overload of Show ().
6168
6169 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
6170
6171         * Menu.cs: Name property added for 2.0 profile.
6172         
6173 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
6174
6175         * Menu.cs: Update information about FindMenuItem, method to be
6176         implemented soon.
6177
6178 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
6179
6180         * MenuAPI.cs: When deselect items deselect also selected subitems.
6181         
6182 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
6183
6184         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
6185         FindSubItemByCoord to found itens that is not active, also an
6186         cheking added to FindSubItemByCoord to search for items only 
6187         in visible popup windows. Fixes #80274.
6188
6189 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
6190
6191         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
6192         internal property, it be care about change ExStyle. 
6193
6194 2006-12-22  Andreia Gaita  <avidigal@novell.com>
6195
6196         * ContainerControl.cs: set activeControl for parent forms up the 
6197         tree when the new activecontrol is a container.
6198         When validating the active control, if it is a container, also
6199         raise up the validation for it's active control. Fixes #80280
6200         
6201         * Control.cs: Add internal property flag and check to prevent
6202         Focus events from getting raised when Select() is called for
6203         a ContainerControl. There are still too many focus events being
6204         raised at the moment though.
6205         Cleaned up the code a bit.
6206
6207 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6208
6209         * Control.cs: Added all missing 2.0 events.and
6210         fixed a couple of corcompare issues.
6211         * TrackBar.cs: Implemented missing 2.0 bits.
6212         * MonthCalendar.cs, 
6213         * DateTimePicker.cs, 
6214         * MdiClient.cs: Fixed some corcompare issues.
6215
6216 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
6217
6218         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
6219         SplitterPanel.cs: corecompare work.
6220
6221 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
6222
6223         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
6224         Clean up warnings for BackgroundImageChanged and PaddingChanged
6225         events now that they are implemented in Control.cs.
6226
6227 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
6228
6229         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
6230         
6231         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
6232         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
6233         of TableLayoutPanel and supporting cast.
6234
6235 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6236
6237         * XplatUIWin32.cs: 
6238         - GrabWindow now confines the mouse pointer to the confine window.
6239         - Added Win32ClipCursor and Win32GetClipCursor.
6240
6241         * Control.cs: 
6242         - Added CaptureWithConfine to be able to capture and confine 
6243         mouse pointer.
6244         
6245         * InternalWindowManager.cs: 
6246         - Call CaptureWithConfine instead of Capture if we're an
6247         MdiChild (fixes #79982).
6248
6249 2006-12-21  Chris Toshok  <toshok@ximian.com>
6250
6251         * DataGrid.cs: guard against the initial state of selection, where
6252         selection_start == -1.  make sure we only select from index >= 0.
6253         Fixes bug #80291.
6254
6255 2006-12-21  Chris Toshok  <toshok@ximian.com>
6256
6257         * Control.cs: we don't need to be so draconian with
6258         UpdateDistances, and we thusly don't need to call it before
6259         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
6260
6261 2006-12-21  Daniel Nauck  <dna@mono-project.de>
6262
6263         * ComboBox.cs,
6264         TextBox.cs: Implemented AutoComplete properties.
6265
6266 2006-12-20  Chris Toshok  <toshok@ximian.com>
6267
6268         * DataGridView*.cs: some corecompare work.
6269
6270 2006-12-20  Jackson Harper  <jackson@ximian.com>
6271
6272         * XplatUIX11.cs: We need to hide the caret when deleting it,
6273         otherwise you get carets left lying around everywhere.
6274         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
6275         prevents getting some weird half drawn caret tracers when
6276         scrolling.
6277         * TextControl.cs: Attempt to reduce the number of times we need to
6278         recreate the caret.
6279
6280 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
6281
6282         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
6283
6284 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6285
6286         * DateTimePicker.cs:
6287         - Implemented missing 2.0 bits.
6288         - Changed some default values to match MS.
6289         
6290 2006-12-20  Jackson Harper  <jackson@ximian.com>
6291
6292         * TextBoxBase.cs: When changing the font across the document we
6293         can't recalculate after changing each line, since that will cahnge
6294         the line count.
6295         - PreferredHeight is a little different than i thought.
6296         - When backspacing, move the caret before we do the actual char
6297         delete, because when that delete crosses a wrap boundary the
6298         positional information will change.
6299
6300 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6301
6302         * Control.cs: Added some missing 2.0 bits: 
6303         BackgroundImageLayout, BackgroundImageLayoutChanged, 
6304         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
6305         add IBindableComponent and IDropTarget implementation.
6306         
6307         * MonthCalendar.cs: 
6308         - Added all missing 2.0 features:
6309         BackgroundImageLayout, RightToLeftLayout, 
6310         OnHandleDestroyed, RightToLeftLayoutChanged, 
6311         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
6312         PaddingChanged.
6313         - Rewrote all the BoldDate code, it was completely broken.
6314         - Fixed all the tests (the tests can now be re-enabled, the
6315         problems were not with the tests, but with the control, it was
6316         mostly broken).
6317         
6318         * DateTimePicker.cs: Changed the location where the 
6319         MonthCalendar is shown.
6320         
6321 2006-12-19  Chris Toshok  <toshok@ximian.com>
6322
6323         * DataGridView.cs: add IDropTarget implementation.
6324
6325         * ToolStripPanel.cs: add IDropTarget implementation.
6326
6327 2006-12-19  Jackson Harper  <jackson@ximian.com>
6328
6329         * TextControl.cs: soft now means something different than what it
6330         used to mean, we want to move the caret regardless of whether or
6331         not this break was soft (would we really have wanted the caret
6332         to not move with the break in the old context?)
6333         * TreeView.cs: Make sure we factor in the vert scrollbar when
6334         calculating the horizontal scrollbar's maximum.
6335
6336 2006-12-19  Andreia Gaita  <avidigal@novell.org>
6337
6338         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
6339         check for keywords in alternate casing, close bug #80049.
6340
6341 2006-12-19  Chris Toshok  <toshok@ximian.com>
6342
6343         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
6344         methods (which all do nothing).
6345
6346         * IDropTarget.cs: add the 4 missing methods.
6347
6348 2006-12-19  Chris Toshok  <toshok@ximian.com>
6349
6350         * TableLayoutRowStyleCollection.cs: corcompare work.
6351         
6352         * TableLayoutSettings.cs: same.
6353
6354         * TableLayoutStyle.cs: same.
6355
6356         * TableLayoutColumnStyleCollection.cs: same.
6357
6358 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
6359
6360         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
6361         TableLayoutPanel I've had in my local tree for way too long.
6362
6363 2006-12-19  Miguel de Icaza  <miguel@novell.com>
6364
6365         * TableLayoutSettings.cs: Finish the public API (still needs all
6366         the logic to update on changes). 
6367
6368         * TableLayoutPanelCellPosition.cs: new file.
6369         
6370         * TableLayoutRowStyleCollection.cs,
6371         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
6372         TableLayoutSettings.cs: Track the final 2.0 table api.
6373
6374 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6375
6376         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
6377         and Image List 2.0 members for ColummnHeader.
6378         * ListView.cs: Add key-related 2.0 methods for
6379         ColumnHeaderCollection.
6380
6381 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
6382
6383         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
6384         ArgumentNullException if items argument is null. Ignore null item in
6385         arrays. Removed extra tabs.
6386
6387 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
6388
6389         * MonthCalendar.cs: Fixed InvalidCastException.
6390
6391 2006-12-19  Jackson Harper  <jackson@ximian.com>
6392
6393         * TextControl.cs: Don't increment the position here.
6394         - When calculating char positions only add in the line break size
6395         for hard line breaks.
6396
6397 2006-12-19  Andreia Gaita  <avidigal@novell.org>
6398
6399         * SendKeys.cs: Changed some things to match ms.net behaviour
6400         when parsing shifted capital letters.
6401         
6402         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
6403         Add window handle as parameter to SendInput. X11 needs the 
6404         window handle, and the handle being passed      to it in the keys 
6405         queue is the active control handle (which windows needs), not 
6406         the window handle.
6407         
6408         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
6409         to support SendKeys on X.       
6410         
6411         * X11Keyboard: Implement helper method to lookup a linux keycode
6412         given the virtual keycode. Added table of keycode-2-virtualkey
6413         values to support this.
6414
6415 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6416
6417         * ListView.cs: Add support for SelectedIndexCollection
6418         and SelectedItemCollection 2.0 methods. Implement support
6419         for ImageKey too.
6420         * ListViewItem.cs: Add support for ListViewSubItemCollection
6421         2.0 methods. Also, fix an incorrect behavior of AddRange method
6422         (it shouldn't call Clear).
6423         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
6424
6425 2006-12-19  Jackson Harper  <jackson@ximian.com>
6426
6427         * RichTextBox.cs: 
6428         * TextBoxBase.cs: New args for FormatText
6429         * TextControl.cs: Rewrote the main drawing method, this version
6430         feels a little easier to understand and debug to me.  Hopefully it
6431         does to others also
6432         - Fix FormatText to OR in the new formating values.  Added
6433         FormatSpecified param, basically this works in the same way as
6434         BoundsSpecified in Control.
6435         - Set the caret properties when the caret is positioned.
6436         - When wrapping text make sure that we calculate the width of the
6437         last character
6438         - when calculating alignments we might have wrapped down to the
6439         next line, so don't search for an individual tag, search for the
6440         end of the line
6441         - We need to invalidate the selection area when we replace the
6442         selection.
6443         
6444 2006-12-19  Daniel Nauck  <dna@mono-project.de>
6445
6446         * Application.cs: add Restart () 2.0 support
6447
6448 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
6449
6450         * MenuItem.cs: Invalidate menu item rectangle after change Enable
6451         property. Fixes #80268.
6452         
6453 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
6454
6455         * MenuAPI.cs: Dont trigger select event when closes top menu
6456         item. Fixes #80270.
6457
6458 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
6459
6460         * MenuAPI.cs: When you click on menuitem only trigger onselect
6461         event for top menu itens. Fixes #80271.
6462         
6463 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6464
6465         * MdiWindowManager.cs: Make IconicBounds depend on
6466         the bottom of MdiClient, not the top (fixes #80267)
6467         
6468 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6469
6470         * MdiClient.cs: Added missing 2.0 attribute
6471
6472 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6473
6474         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
6475         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
6476
6477 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
6478
6479         * MenuAPI.cs: Fix click when menuitem is not popup,
6480         this regression was caused by last commit (#80272).
6481
6482 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
6483
6484         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
6485         fire click event or close menu. Fixes #80272.
6486
6487 2006-12-17  Daniel Nauck  <dna@mono-project.de>
6488
6489         * ListViewHitTestInfo.cs: add
6490
6491 2006-12-17  Daniel Nauck  <dna@mono-project.de>
6492
6493         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
6494         * FlatButtonAppearance.cs: add
6495         * DockingAttribute.cs: add
6496
6497 2006-12-17  Chris Toshok  <toshok@ximian.com>
6498
6499         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
6500         and rebind our columns when it does - this way, if you make
6501         changes to the DataTable (or set the Table attribute on a DataView
6502         after setting it as the DataGrid's DataSource, the changes are
6503         made visible.)  Fixes bug #80107.
6504
6505 2006-12-17  Daniel Nauck  <dna@mono-project.de>
6506
6507         * ListViewGroup.cs: add internal Location property for layouting.
6508         * Theme.cs: add abstract ListViewGroupHeight function.
6509         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
6510
6511 2006-12-16  Andreia Gaita  <avidigal@novell.com>
6512
6513         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
6514         Added reset of selected index to 0 when adding first tab page.
6515         Fixes #80264
6516         
6517         * NumericUpDown.cs: Fix NET_2_0 check
6518
6519 2006-12-16  Daniel Nauck  <dna@mono-project.de>
6520
6521         * ListViewGroup.cs: fixed DefaultValueAttribute value
6522
6523 2006-12-16  Daniel Nauck  <dna@mono-project.de>
6524
6525         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
6526
6527 2006-12-15  Miguel de Icaza  <miguel@novell.com>
6528
6529         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
6530         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
6531         ScrollableControl.cs: Add a handful of methods that are
6532         overwritten in 2.0 
6533
6534 2006-12-15  Chris Toshok  <toshok@ximian.com>
6535
6536         * XplatUIWin32.cs: initial implementation of the Reversible
6537         drawing functions.  there are some problems.  DrawReversibleFrame
6538         doesn't seem to work at all for Dashed FrameStyle, and in the
6539         Thick case there are drawing errors at the corners (we probably
6540         need to bind Rectangle instead of doing moveto/lineto's.)
6541
6542 2006-12-16  Andreia Gaita  <avidigal@novell.com>
6543         
6544         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
6545         to send blocks of key messages. Send accumulates keys to send with Flush, 
6546         while SendWait sends all keys immediately.
6547                 
6548         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
6549         XplatUIX11.cs,  XplatUIX11-new.cs:
6550         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
6551         to Win32 SendInput.
6552         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
6553         
6554         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
6555         testing for ms.net on this class is very tricky, as the tests run too fast 
6556         to allow the hook to release, essentially freezing the keyboard and the 
6557         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
6558         category :p
6559
6560 2006-12-16  Daniel Nauck  <dna@mono-project.de>
6561
6562         * Padding.cs: fixed serialization compability to MS ("_var" field names),
6563                         added missing attributes.
6564  
6565 2006-12-15  Daniel Nauck  <dna@mono-project.de>
6566
6567         * ListViewGroup.cs: Added missing attributes.
6568         * ListViewGroupCollection.cs: Added missing attributes.
6569
6570 2006-12-15  Daniel Nauck  <dna@mono-project.de>
6571
6572         * ListViewItem.cs: fixed ListViewSubItem text property.
6573
6574 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6575         
6576         * Control.cs: Added missing 2.0 attributes
6577         
6578 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6579         
6580         * MdiClient.cs: Added missing 2.0 attribute.
6581         * MonthCalendar.cs: Added some missing 2.0 attributes 
6582         and properties.
6583         
6584 2006-12-15  Daniel Nauck  <dna@mono-project.de>
6585
6586         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
6587
6588 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
6589
6590         * MainMenu.cs: Add the new 2.0 constructor to help out people
6591         using the MainMenu in VS2005.
6592
6593 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6594         
6595         * MdiChildContext.cs: Removed it, no longer used.
6596         * MdiClient.cs: Added missing 2.0 attributes.
6597         
6598 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6599         
6600         * InternalWindowManager.cs: Fix a NullRef with previous 
6601         changes for toolwindows.
6602         
6603 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6604
6605         * Control.cs: 
6606         - Added AfterTopMostControl to allow for certain controls 
6607         to always stay on top when normal controls are brought to 
6608         front.
6609         
6610         * XplatUIWin32.cs: 
6611         - (DrawInversibleRectangle): Get window rectangle from Win32 
6612         in stead of from control, since Win32 doesn't calculate
6613         screen coords correctly from control's Location if it 
6614         have docked siblings.
6615         
6616         * MdiWindowManager.cs:
6617         - Correct the control menu popup location when clicked on
6618         the maximized form icon. (fixes #80223.1)
6619         - Don't show moving rectangle if mouse hasn't moved from
6620         the original clicked point.
6621         - Removed FormGotFocus handler (not used).
6622         - Calculate the control buttons location from the main
6623         window's size and not client size (fixes #79770).
6624         - Form is now closed when the form icon is double-clicked
6625         (fixes #79775). 
6626         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
6627         
6628         * InternalWindowManager.cs:
6629         - Moved some MDI-only methods to MdiWindowManager.
6630         - Removed unused properties and methods.
6631         - Unified method naming for methods handling wm messages.
6632         - Moved all message handling to seperate methods for
6633         each message.
6634         
6635         * ThemeWin32Classic.cs:
6636         - DrawManagedWindowDecorations now draws the title bar 
6637         with a gradient brush.
6638         - Add a CPDrawButtonInternal that allows us to specify
6639         light, normal and dark colors for the buttons (control 
6640         buttons for MDI children were drawn with the same light
6641         color as the background, therefore loosing the 3D effect).
6642         
6643         * SizeGrip.cs:
6644         - Add a CapturedControl property that is used to 
6645         determine the control to resize (defaults to parent). 
6646         Needed for MdiClient, since its SizeGrip's parent is
6647         MdiClient, but the control to resize is the main form.
6648         
6649         * MdiClient.cs:
6650         - Set SizeGrip's CapturedControl to the main form in order
6651         to resize the main form and not the MdiClient.
6652         - Override AfterTopMostControl to leave the scrollbars 
6653         always on top.
6654
6655 2006-12-15  Daniel Nauck  <dna@mono-project.de>
6656
6657         * ListView.cs: fixed ListViewItemCollection AddRange and
6658                         implemented ListViewItemCollection AddRange 2.0 support.
6659
6660 2006-12-15  Daniel Nauck  <dna@mono-project.de>
6661
6662         * ListViewGroup.cs: Add.
6663         * ListViewGroupCollection.cs: Add
6664         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
6665         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
6666                                 stub for ImageKey 2.0 support.
6667
6668 2006-12-14  Mike Kestner  <mkestner@novell.com>
6669
6670         * ListView.cs: add text padding to the autocalculation for columns
6671         of width -2.  Fixes #80207.
6672  
6673 2006-12-14  Mike Kestner  <mkestner@novell.com>
6674
6675         * ListView.cs: add some index guarding for partial row navigation 
6676         logic.  Fixes #80250.
6677
6678 2006-12-14  Mike Kestner  <mkestner@novell.com>
6679
6680         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
6681         are added or inserted to the collection.  Fixes #81099.
6682
6683 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
6684
6685         * MenuAPI.cs: Closes menu when right click out side of popup
6686         it fix problem in ContextMenu and MainMenu. Fixes #80252.
6687
6688 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6689
6690         * ListViewItem.cs: Fix dumb error.
6691
6692         * ListView.cs: Add Find and ContainsKey methods in 
6693         ListViewItemCollection, and also return true for IsReadOnly
6694         and IsFixedSize (changes for 2.0). 
6695
6696 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
6697
6698         * Control.cs: Allow Region to be set to null.
6699
6700 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6701
6702         * MdiWindowManager.cs: Remove unused (commented out) code.
6703         * Form.cs: When the MdiChild is maximized, the form needs 
6704         WM_NCMOUSELEAVE, so request it.
6705         * InternalWindowManager.cs: 
6706         - Added tooltips to control buttons.
6707         - Removed duplicated control button handling code.
6708         - Removed unused (commented out) code.
6709         
6710 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
6711
6712         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
6713         was used because we must set cursor without trigger ChangeCursor event
6714         and without change Cursor control property. Fixes #79963.
6715
6716 2006-12-12  Andreia Gaita  <avidigal@novell.com>
6717         
6718         * Control.cs: Check if Region setter value is null, and ignore
6719
6720 2006-12-12  Jackson Harper  <jackson@ximian.com>
6721
6722         * TextControl.cs: We were almost always drawing one more line then
6723         needed, since the GetLineByPixel will return the last line found
6724         at that pixel. In most cases though, we were invalidating up to
6725         the junction between two lines.
6726         - Improve debug code.
6727
6728 2006-12-12  Chris Toshok  <toshok@ximian.com>
6729
6730         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
6731         and FillReversibleRectangle.
6732
6733         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
6734         and FillReversibleRectangle.
6735
6736         * XplatUIWin32.cs: add stubs which do nothing for
6737         DrawReversibleFrame, DrawReversibleLine, and
6738         FillReversibleRectangle.
6739
6740         * XplatUIOSX.cs: add stubs which raise NIE for
6741         DrawReversibleFrame, DrawReversibleLine, and
6742         FillReversibleRectangle.
6743
6744         * XplatUIX11.cs: add working implementation for
6745         DrawReversibleFrame, DrawReversibleLine, and
6746         FillReversibleRectangle.
6747         
6748         * ControlPaint.cs: implement DrawReversibleFrame,
6749         DrawReversibleLine, and FillReversibleRectangle, by calling into
6750         the appropriate XplatUI method.
6751
6752 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6753
6754         * Form.cs: Make MdiClient have the focus even if it's
6755         not selectable, since it should receive WM_KEY* and WM_MOUSE 
6756         messages. Fixes #79907.
6757         
6758 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6759
6760         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
6761         queried after the window is created.
6762         
6763         * XplatUIX11.cs: Added SendParentNotify to implement 
6764         WM_PARENTNOTIFY logic. Fixes #79965.
6765         
6766         * Control.cs: Added MakeParam.
6767         
6768 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6769
6770         * MdiClient.cs: Resume Layout before setting window
6771         states (fixes #80201).
6772
6773 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6774
6775         * MenuAPI.cs: Deselect a menu item after performing
6776         the click (fixes #80197).
6777
6778 2006-12-11  Jackson Harper  <jackson@ximian.com>
6779
6780         * TextBoxBase.cs: We need to cap this value, since Maximum -
6781         ViewPortHeight can be less than zero.
6782         - Only do selection with the left mouse button.
6783         * TextBox.cs: Don't tell the world that we have a context menu.
6784         * Control.cs: New method so that we can control whether or not the
6785         context menu is visible outside MWF.
6786
6787 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
6788
6789         * ToolBarButton.cs: Fix text positon. 
6790
6791 2006-12-11  Miguel de Icaza  <miguel@novell.com>
6792
6793         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
6794
6795         * Control.cs (DoubleBuffered): Add implementation.
6796
6797         * Application.cs (OpenForms): Add.
6798
6799 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
6800
6801         * Form.cs: Use opacity instead of Opactiy to determine if we need
6802         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
6803
6804 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
6805
6806         * Control.cs: Fix NRE if Control.Site was set to null.
6807
6808 2006-12-11  Chris Toshok  <toshok@ximian.com>
6809
6810         * Control.cs: ControlCollection.Remove should return if the arg is
6811         null, and ControlCollection.SetChildIndex should raise a ANE.
6812
6813 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
6814
6815         * Control.cs: Verify value set for Dock property. Code formatting
6816         updates.
6817
6818 2006-12-11  Jackson Harper  <jackson@ximian.com>
6819
6820         * TextControl.cs: Draw the caret and the selection when a flag is
6821         set on the owner.
6822         * TextBoxBase.cs: We want to draw the caret and the selection for
6823         TextBox but not for TextBoxBase.
6824         - If the window is resized and scrolling is no longer needed (the
6825         whole doc is visible) set the scroll position to zero.
6826         - The default SelectWord (the one TextBox uses) should move the
6827         caret to the end of the word.
6828         - SelectAll moves the caret to the end of the selection.
6829         * TextBox.cs: We don't selectall on focus, we just do it when the
6830         control is created.
6831         
6832 2006-12-11  Mike Kestner  <mkestner@novell.com>
6833
6834         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
6835
6836 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6837
6838         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
6839         2.0 support.
6840         * ListViewItem.cs: Add Name 2.0 property.
6841
6842 2006-12-11  Andreia Gaita  <avidigal@novell.com>
6843
6844         * TabControl.cs: Set visibility on selected or default tab 
6845         when tabcontrol handle is created, so that it's contents
6846         actually show up (duh). Fixes #80193
6847         Don't redraw the control if there is no handle created, as
6848         the selected index might be completely invalid. Added some tests
6849         to check for this.
6850
6851 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
6852
6853         * ToolBar.cs: Uses maximun width and height of all buttons as 
6854         button rectangle when ButtonSize specified, it looks strange but
6855         is what happens in Win32. Fixes #80189.
6856
6857 2006-12-11  Jackson Harper  <jackson@ximian.com>
6858
6859         * TextControl.cs: Need to track undo levels ourself, since
6860         compound actions will mess them up.
6861
6862 2006-12-10  Andreia Gaita  <avidigal@novell.com>
6863
6864         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
6865         SelectedIndex value is changed (even if it's not valid).
6866         Reset SelectedIndex to 0 when the handle is created and if
6867         the current index is invalid.
6868         Fixes SelectdeIndex unit tests and #80128
6869
6870 2006-12-08  Chris Toshok  <toshok@ximian.com>
6871
6872         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
6873         calls EndEdit, it needs to be called before we set current_cell to
6874         its new value.  Otherwise, we end up committing the value in the
6875         textbox to the new cell as well.  Fixes bug #80160.
6876
6877 2006-12-08  Chris Toshok  <toshok@ximian.com>
6878
6879         * Form.cs (set_CancelButton): if the button's DialogResult is
6880         None, set it to Cancel.  Fixes bug 80180.
6881
6882 2006-12-08  Jackson Harper  <jackson@ximian.com>
6883
6884         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
6885         to watch ourselves when setting the canvas size and setting the
6886         scrollbar values.
6887
6888 2006-12-08  Chris Toshok  <toshok@ximian.com>
6889
6890         * DataGrid.cs: comment out the two MakeTransparent calls for the
6891         time being so people using trunk (and not 1.2.2) on windows can
6892         actually use the datagrid.  This deals with bug #80151.
6893
6894 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
6895
6896         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
6897         Graphics.DrawImage (image, int, int, int, int) overload instead
6898         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
6899         the dpi difference and was blurring images it drew.
6900         [Fixes bug #79960]
6901
6902 2006-12-08  Chris Toshok  <toshok@ximian.com>
6903
6904         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
6905         rowcnt is 0 (such as with an empty datasource), and make sure we
6906         initialize not_usedarea.Y to cells.Y, so we don't draw over the
6907         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
6908
6909 2006-12-08  Chris Toshok  <toshok@ximian.com>
6910
6911         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
6912         grid.
6913
6914 2006-12-08  Chris Toshok  <toshok@ximian.com>
6915
6916         [ Fixes bug #80167 ]
6917         
6918         * ThemeWin32Classic.cs: don't draw the image if the button's flat
6919         style is FlatStyle.System.
6920
6921         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
6922         ButtonBase.flat_style private, and switch uses of it to the public
6923         property.
6924         
6925 2006-12-08  Chris Toshok  <toshok@ximian.com>
6926
6927         [ Fixes bug #80121 ]
6928         
6929         * ThemeWin32Classic.cs: center the caption text in the datagrid
6930         when we draw it.
6931
6932         * DataGrid.cs: lessen the amount we add to the caption height from
6933         6 to 2.  6 was making it huge.
6934
6935 2006-12-08  Andreia Gaita  <avidigal@novell.com>
6936
6937         * UpDownBase: Handle MouseWheel call directly instead of capturing
6938         the inner textbox's OnMouseWheel. Fixes #80166
6939
6940 2006-12-08  Jackson Harper  <jackson@ximian.com>
6941
6942         * TextControl.cs: We need to invalidate the textbox when we empty
6943         it (how had this not been discovered before?)
6944
6945 2006-12-08  Jackson Harper  <jackson@ximian.com>
6946
6947         * TextBoxBase.cs: Reworked the mouse down code so I could get it
6948         to behave like MS, we now ignore the eventargs.Click and just
6949         track state ourself, which we were already doing anyways.
6950         - Constrain the double click handler to the double click size.
6951         
6952 2006-12-08  Chris Toshok  <toshok@ximian.com>
6953
6954         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
6955         direction if that scrollbar isn't shown.  fixes bug #80158.
6956
6957 2006-12-08  Andreia Gaita  <avidigal@novell.com>
6958
6959         * NumericUpDown.cs: Update value on getter. Fixes #79950
6960
6961 2006-12-08  Chris Toshok  <toshok@ximian.com>
6962
6963         * MenuItem.cs: add back in the event cloning code.  I didn't know
6964         how to do it in the face of the EventHandlerList work i'd done
6965         last week.  Fixes bug #80183.
6966
6967 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
6968
6969         * Control.cs: Add an invalidate to the BackgroundImage setter.
6970         [Fixes 80184]
6971
6972 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
6973
6974         * ToolStrip*: Add some small properties reported by MoMA, fix event
6975         firing and default properties based off of unit tests, and add some
6976         attributes based off of the class status page.
6977
6978 2006-12-07  Jackson Harper  <jackson@ximian.com>
6979
6980         * TextBoxBase.cs: Take HideSelection into account when determining
6981         whether or not to show the selection.
6982         * RichTextBox.cs: After inserting the RTF into the document move
6983         the cursor to the beginning of the document.
6984
6985 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
6986
6987         * Control.cs: Remove static ArrayList "controls" which maintained
6988         a reference to every control created.
6989         * Application.cs: Create a static FormCollection to maintain a reference
6990         to every form created.  Use it in places that formerly enumerated through
6991         the controls one looking for forms.
6992         * Form.cs: Add and remove self from above FormCollection.
6993
6994 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
6995
6996         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
6997           not libgdk (though it makes me wonder why I didn't have any
6998           problems)
6999
7000 2006-12-07  Chris Toshok  <toshok@ximian.com>
7001
7002         [ you had to know this was coming after that last commit...]
7003         
7004         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
7005         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
7006         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
7007         XCopyArea).
7008
7009 2006-12-07  Chris Toshok  <toshok@ximian.com>
7010
7011         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
7012         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
7013         all the behavior we need for double buffering.
7014
7015         * XplatUIDriver.cs: implement the 3 double buffer methods using a
7016         client side Bitmap, just like the old Control-based double buffer
7017         code did.  The methods are virtual, so each XplatUI driver
7018         subclass can replace the implementation to use a faster, platform
7019         specific approach.
7020
7021         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
7022         double buffer code, and clean things up a bit in the process.
7023
7024 2006-12-06  Chris Toshok  <toshok@ximian.com>
7025
7026         * Control.cs: reindent WndProc.
7027
7028 2006-12-06  Chris Toshok  <toshok@ximian.com>
7029
7030         [ I wanna be like BenM when I grow up ]
7031         
7032         * Hwnd.cs: create a single static Graphics object on the static
7033         Bitmap we create.  use this for our text measurements.
7034
7035         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
7036         This was causing us to allocate a backbuffer for every control,
7037         even when it wasn't flagged as double buffered.  Instead use the
7038         single graphics instance.  This might have implications for
7039         multithreaded applications.  If we run into problems we can switch
7040         to creating 1 Graphics per control, on the static Hwnd bitmap.
7041
7042         this change nets us a 7M savings in private dirty mappings when
7043         running FormsTest.exe.
7044
7045 2006-12-06  Chris Toshok  <toshok@ximian.com>
7046
7047         * ListView.cs: the BackgroundImage override is just to set
7048         attributes.  chain up to base.BackgroundImage.
7049
7050         * RichTextBox.cs: same.
7051
7052         * ToolBar.cs: same, but we need to also redraw the toolbar when it
7053         changes, so instead a handler for BackgroundImageChanged.
7054         
7055         * Control.cs: make background_image private.
7056
7057 2006-12-06  Chris Toshok  <toshok@ximian.com>
7058
7059         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
7060         sure we even need this assignment, but roll with it for now.
7061
7062         * Control.cs: make the cursor field private.
7063
7064 2006-12-06  Chris Toshok  <toshok@ximian.com>
7065
7066         * Form.cs: we don't need to explicitly set ImeMode to
7067         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
7068         behavior in the face of ImeMode.Inherit.
7069
7070         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
7071         change the ctor's assignment to use ImeMode instead of ime_mode.
7072
7073         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
7074         ImeModeInherit.  Only check for the parent's imemode (and return
7075         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
7076         This fixes the button unit test, which sets both ImeMode and
7077         DefaultImeMode to ImeMode.Disable.
7078
7079         also make the ime_mode field private.
7080
7081 2006-12-06  Chris Toshok  <toshok@ximian.com>
7082
7083         * Control.cs: make control_style private.
7084
7085         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
7086         setting the styles to true, then setting them to false instead of
7087         reverting to their previous values.
7088
7089         also, call SetStyle on the scrollbars instead of using
7090         control_style directly.
7091
7092 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
7093
7094         * FormCollection.cs: Implement. [2.0]
7095
7096 2006-12-06  Chris Toshok  <toshok@ximian.com>
7097
7098         * Control.cs: make tab_stop private.
7099
7100         * Label.cs: set TabStop, not tab_stop.  reformat some event
7101         add/remove methods to make them more compact.
7102
7103 2006-12-06  Chris Toshok  <toshok@ximian.com>
7104
7105         * RadioButton.cs: fix TabStop handling.
7106
7107 2006-12-06  Chris Toshok  <toshok@ximian.com>
7108
7109         * TextBox.cs: remove the explicit assignments to has_focus.
7110         Control does that.
7111
7112         * ButtonBase.cs: remove the assignment to has_focus.  Control will
7113         manage that.
7114         
7115 2006-12-06  Chris Toshok  <toshok@ximian.com>
7116
7117         * ButtonBase.cs: remove all uses of is_enabled from this code.
7118         it's always true when any of the code containing the checks is
7119         executed.
7120
7121 2006-12-06  Chris Toshok  <toshok@ximian.com>
7122
7123         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
7124         with different semantics (some are present in both 1.1 and 2.0
7125         profiles) so that we match MS's behavior in our unit tests.
7126
7127 2006-12-06  Jackson Harper  <jackson@ximian.com>
7128
7129         * TextControl.cs: Make this operation undoable.
7130         * TextBoxBase.cs: Factor the border width into the preferred
7131         height.
7132         - implement Modified as per the spec.
7133
7134 2006-12-06  Chris Toshok  <toshok@ximian.com>
7135
7136         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
7137
7138 2006-12-06  Chris Toshok  <toshok@ximian.com>
7139
7140         * Control.cs: make right_to_left and context_menu fields private.
7141
7142 2006-12-06  Chris Toshok  <toshok@ximian.com>
7143
7144         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
7145         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
7146         Control.child_controls private.  switch all uses over to
7147         Control.Controls.
7148
7149 2006-12-06  Chris Toshok  <toshok@ximian.com>
7150
7151         * System.Windows.Forms/GroupBox.cs,
7152         System.Windows.Forms/AccessibleObject.cs,
7153         System.Windows.Forms/ErrorProvider.cs,
7154         System.Windows.Forms/Control.cs,
7155         System.Windows.Forms/UpDownBase.cs,
7156         System.Windows.Forms/ScrollBar.cs,
7157         System.Windows.Forms/DateTimePicker.cs,
7158         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
7159         System.Windows.Forms/ToolTip.cs,
7160         System.Windows.Forms/RadioButton.cs,
7161         System.Windows.Forms/LinkLabel.cs,
7162         System.Windows.Forms/Splitter.cs,
7163         System.Windows.Forms/TextBoxBase.cs,
7164         System.Windows.Forms/ToolStripTextBox.cs,
7165         System.Windows.Forms/ContainerControl.cs,
7166         System.Windows.Forms/ThemeWin32Classic.cs,
7167         System.Windows.Forms/SizeGrip.cs,
7168         System.Windows.Forms/ToolStripDropDown.cs,
7169         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
7170         private.  switch all uses over to Control.Parent.
7171
7172 2006-12-06  Chris Toshok  <toshok@ximian.com>
7173
7174         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
7175         Control does this before calling emitting these events.
7176
7177         * TabControl.cs: same.
7178
7179         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
7180         Control.client_rect.
7181
7182         * ButtonBase.cs: use the ClientSize property instead of the
7183         client_size field.
7184
7185         * ScrollableControl.cs: same.
7186
7187         * Control.cs: another pass at making properties private.  also,
7188         move the initialization of tab_stop to the ctor.
7189
7190 2006-12-05  Andreia Gaita <avidigal@novell.com>
7191
7192         * TabControl.cs: Let the selected index be set freely if the 
7193         control handle is not yet created.
7194
7195 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
7196
7197         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
7198         internal until I can rewrite DefaultLayout.
7199         * ToolStrip.cs: Fix build error and some general cleaning.
7200         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
7201         Fix build errors caused by making some of Control's fields private.
7202
7203 2006-12-05  Jackson Harper  <jackson@ximian.com>
7204
7205         * TextControl.cs: Redo Insert a little so that it use IndexOf
7206         instead of Split, this prevents it from messing up on things like
7207         \n\n\n. Also more effecient since the split array doesn't need to
7208         be created.
7209         * TextBoxBase.cs: AppendText doesnt handle multiline and non
7210         multiline text differently, this is the first of many fixes that
7211         will make multiline/non-multiline the same thing as far as the
7212         TextBoxBase is concerned.
7213         - Don't split the text and insert lines, this can lose some line
7214         endings (like is the last line a soft or hard break). Instead use
7215         the new Insert.
7216         - Fix an off by one when combining all the lines in the Text
7217         getter.
7218         - Remove separate multiline handling from the Text getter/setter.
7219
7220 2006-12-05  Chris Toshok  <toshok@ximian.com>
7221
7222         * ButtonBase.cs: a few changes:
7223
7224         - don't reinitialize internal Control fields in the ctor when they
7225         have the same values as Control sets them.
7226
7227         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
7228         this before calling those methods.
7229
7230         - we don't need to call Refresh for anything.  use Invalidate
7231         instead.
7232
7233         - OnEnabledChanged doesn't need to redraw at all - Control.cs
7234         calls Refresh in its OnEnabledChanged.
7235         
7236         - several of the events we were registered for in the ctor to
7237         redraw ourselves already include calls to Invalidate in the
7238         property setters that raise the events.  remove the extra
7239         invalidation.
7240
7241         - reformat a switch statement that was 83274658 columns wide.
7242         
7243 2006-12-05  Mike Kestner  <mkestner@novell.com>
7244
7245         * ComboBox.cs: fix a unit test regression from a TextBox
7246         SelectionLength return of -1 when there's no selection.  
7247
7248 2006-12-05  Chris Toshok  <toshok@ximian.com>
7249
7250         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
7251         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
7252         cleaning up some of the internal Control fields being used by
7253         subclasses.
7254
7255 2006-12-05  Mike Kestner  <mkestner@novell.com>
7256
7257         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
7258         listbox after AddImplicit calls since it defaults to hidden. Add a 
7259         hack to preserve requested heights across DropDownStyle changes.
7260
7261 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
7262
7263         * PropertyGrid.cs: Hide FindFirstItem method from public API.
7264
7265 2006-12-05  Chris Toshok  <toshok@ximian.com>
7266
7267         * DataGridView.cs: fix compiler warnings.
7268
7269         * PrintControllerWithStatusDialog.cs: same.
7270
7271         * ToolBar.cs: same.
7272
7273         * FolderBrowserDialog.cs: same.
7274
7275         * Splitter.cs: same.
7276
7277         * DataGridViewComboBoxCell.cs: same.
7278
7279         * XplatUIWin32.cs: same.
7280
7281         * PictureBox.cs: same.
7282
7283         * Win32DnD.cs: same.
7284
7285         * PageSetupDialog.cs: same.
7286
7287         * FileDialog.cs: same.
7288
7289         * PrintDialog.cs: same.
7290
7291         * DataGridTextBoxColumn.cs: same.
7292
7293         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
7294
7295 2006-12-05  Chris Toshok  <toshok@ximian.com>
7296
7297         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
7298         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
7299         System.ComponentModel.EventHandlerList work.
7300
7301 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
7302
7303         * DrawTreeNodeEventArgs.cs: Added.
7304
7305 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7306         
7307         * InternalWindowManager.cs: Remove an unused field.
7308         
7309 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7310
7311         * InternalWindowManager.cs:
7312         - Save the point where the title bar is clicked.
7313         
7314         * MdiWindowManager.cs:
7315         - Only allow moving of the window as long as the 
7316         clicked point on the title bar does not get out of
7317         MdiClient's rectangle. Fixes #79982.
7318         
7319         * MdiClient.cs:
7320         - Added Horizontal/VerticalScrollbarVisible.
7321         - Simplified the scrollbar sizing algorithm.
7322         - Cache the difference in scrolled value in
7323         H/VBarValueChanged and move the calculation out
7324         of the for loop.
7325
7326 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7327
7328         * Control.cs: Make the Console.WriteLine in WndProc 
7329         write more info.
7330
7331 2006-12-05  Chris Toshok  <toshok@ximian.com>
7332
7333         * ToolStripManager.cs, ToolStripButton.cs,
7334         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
7335         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
7336         ToolStripSplitButton.cs, ToolStripSeparator.cs,
7337         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
7338         ToolStripProgressBar.cs, ToolStripContainer.cs,
7339         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
7340         to using System.ComponentModel.EventHandlerList.
7341
7342 2006-12-04  Chris Toshok  <toshok@ximian.com>
7343
7344         * LinkLabel.cs: fix up compiler warnings.
7345
7346         * TableLayoutSettings.cs: same.
7347
7348         * TreeView.cs: same.
7349
7350         * ToolBar.cs: same.
7351
7352         * TabControl.cs: same.
7353
7354         * RichTextBox.cs: same.
7355
7356         * ListViewItem.cs: same.
7357
7358         * PropertyGrid.cs: same.
7359
7360         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
7361
7362         * ToolTip.cs same.
7363
7364         * TextRenderer.cs: fix up compiler warnings.
7365
7366         * Label.cs: same.
7367
7368         * Form.cs: corcompare fixes.
7369
7370         * PictureBox.cs: fix up compiler warnings.
7371
7372         * ImageListStreamer.cs: same.
7373
7374         * TrackBar.cs: corcompare fix.
7375
7376         * Control.cs: fix up compiler warnings.
7377
7378         * SplitterPanel.cs: same.
7379
7380         * NumericTextBox.cs: same.
7381
7382         * ImageList.cs: same.
7383
7384         * StatusStrip.cs: same.
7385
7386         * ProgressBar.cs: corcompare fix.
7387
7388         * ToolStripButton.cs: fix up compiler warnings.
7389
7390         * ToolStripStatusLabel.cs: same.
7391
7392         * ToolStripSplitButton.cs: same.
7393
7394         * ToolStripSeparator.cs: same.
7395
7396         * ToolStripProgressBar.cs: same.
7397
7398         * ToolStripDropDownMenu.cs: same
7399
7400         * ToolStripDropDown.cs: same.
7401
7402         * ToolStripDropDownButton.cs: same.
7403
7404         * ToolStrip.cs: same.
7405
7406         * ToolStripControlHost.cs: same.
7407
7408         * ToolStripContentPanel.cs: same.
7409
7410         * ToolStripDropDown.cs: same.
7411
7412         * ToolStripContainer.cs: same.
7413
7414         * ToolStripPanel.cs: same, and add "new" where we need it to work
7415         with the new ArrangedElementCollection.
7416
7417         * ToolStripItemCollection.cs: add "new" where we need it to work
7418         with the new ArrangedElementCollection.
7419
7420 2006-12-04  Andreia Gaita <avidigal@novell.com>
7421
7422         * TabControl.cs: Fix default tab selection to after TabControl
7423         gets focus and not before. Fixes #80128
7424
7425 2006-12-04  Chris Toshok  <toshok@ximian.com>
7426
7427         * DataGridTableStyle.cs: remove the gross calling of
7428         datagrid.Refresh from here.  It's a broken idea and it doesn't
7429         work anyway.
7430
7431         * DataGrid.cs: instead, just register/unregister from the
7432         DataGridTableStyle events in CurrentTableStyle.  we play it
7433         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
7434         even though some would most likely not require it.  Fixes bug
7435         #80115 (and one portion of #80117 as a side effect).
7436
7437 2006-12-04  Chris Toshok  <toshok@ximian.com>
7438
7439         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
7440         so the textbox (if any) goes away.  Fixes bug #80117.
7441
7442 2006-12-04  Chris Toshok  <toshok@ximian.com>
7443
7444         * DataGridColumnStyle.cs: set the column's readonly property
7445         initially based on the property descriptor's IsReadOnly.  Fixes
7446         bug #80044.
7447
7448 2006-12-04  Chris Toshok  <toshok@ximian.com>
7449
7450         * ComboBox.cs: wrap the dropdown style changing work in
7451         SuspendLayout/ResumeLayout.  Fixes bug #79968.
7452
7453 2006-12-04  Jackson Harper  <jackson@ximian.com>
7454
7455         * TextBoxBase.cs: Fix off by one, since these are one-based.
7456         * TextBox.cs: Select all the text when we get focus.  The TextBox
7457         does this but the RTB does not.
7458
7459 2006-12-04  Chris Toshok  <toshok@ximian.com>
7460
7461         * DataGridTextBoxColumn.cs: remove some spew.
7462
7463         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
7464         but some part of me is saying "it shouldn't be here.."  At any
7465         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
7466         setting the value.
7467
7468 2006-12-04  Chris Toshok  <toshok@ximian.com>
7469
7470         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
7471         to reassign the propertydescriptor.
7472
7473 2006-12-04  Jackson Harper  <jackson@ximian.com>
7474
7475         * TextBoxBase.cs:
7476         * TextControl.cs: Remove some unused variables.  Maybe this will
7477         patch things up between mike and I.
7478         - don't split lines less then one char wide, if the viewport is
7479         that small text won't be visible anyways.
7480         
7481 2006-12-04  Jackson Harper  <jackson@ximian.com>
7482
7483         * TextBoxBase.cs: Default selection length is -1, need to do some
7484         more testing on windows to see when this is used for the property.
7485         - Redid the Lines [] property to that we properly remove soft line
7486         breaks
7487         - added support for preserving carriage returns
7488         -  CanUndo is not a variable like 'is undo enabled' it just returns
7489         true if there is undo operations available.
7490         - AppendText doesn't need to grab the last tag itself anymore,
7491         this happens automatically when we move the cursor.
7492         * TextControl.cs: Add CompoundActions to the undo class. This
7493         allows combining the other operations into one big option.  ie a
7494         paste will combine { delete old, insert new, move cursor }
7495         - Add InsertString undo operation
7496         - New method for deleting multiline text
7497         - Add carriage returns to lines. So we can preserve carriage
7498         returns when text is 'roundtripped'
7499
7500 2006-12-04  Chris Toshok  <toshok@ximian.com>
7501
7502         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
7503         minimum 0.  Fixes the scrollbar exception in bug #80136.
7504
7505 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7506
7507         * MdiClient.cs: 
7508         * MdiWindowManager: Removed unused fields and methods.
7509         
7510 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7511         
7512         * StatusBar.cs: Update all panels when a AutoSize=Contents
7513         panel needs updating.
7514         
7515         * StatusBarPanel.cs: Remove twidth and only use initialize.
7516         Fixes #80031.
7517                 
7518 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7519
7520         * Form.cs: When a form's MdiParent is set add it directly
7521         on top of the z-order in stead of relying on MdiClient's
7522         ActivateChild to do it. Fixes #80135.
7523         
7524         * MdiClient.cs: 
7525         - Remove original_order, mdi_child_list is already doing
7526         the same thing.
7527         - Create mdi_child_list on construction in
7528         stead of first use (avoids a few null checks).
7529
7530         * MenuItem.cs: Use an already existing list of mdi children
7531         to get the correct order of children and remove the other
7532         redundant list.
7533
7534 2006-12-04  Chris Toshok  <toshok@ximian.com>
7535
7536         * PropertyGridView.cs: cached_splitter_location is only used in
7537         !DOUBLEBUFFER code.
7538
7539         * PropertyGrid.cs: implement the ComComponentNameChanged event
7540         using Events, hoping that would fix the warning.  Looks like a
7541         compiler bug instead (#80144).
7542
7543         * PropertyManager.cs: remove unused method.
7544
7545 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
7546
7547         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
7548         include parentesis to fix expression evaluation. Fixes #79634.
7549
7550 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
7551         
7552         * MenuAPI.cs:
7553         - Changes to fix behavior in Menu control, some reported in #80097
7554         and other detected during behavior refactory like a select event
7555         problems.
7556         - Remove unneded "if's" conditions.
7557         - Created an internal to flag when popup is active in control, we need 
7558         it because in .NET you can have menu active but without popup active
7559         when you active menu using popup without visible items.
7560         - Mimic win32 behavior for Select and Popup events.  
7561         - Dont open popup menu when you dont have visible subitems.
7562         - Do nothing when click on disabled menu item.
7563         - Some small changes to follow the coding style guidelines.
7564         - Unselect menu only when another control gives focus. Fixes #80097.
7565         - Remove unused code.
7566         
7567         * MenuItem.cs: internal VisibleItems method to check if menu
7568         theres visible subitems, it will be usefull to fix some 
7569         behavior in Menu control.
7570         
7571 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
7572         
7573         * Timer.cs: Tag property for 2.0 profile.
7574         
7575 2006-12-01  Chris Toshok  <toshok@ximian.com>
7576
7577         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
7578         
7579         * Win32DnD.cs: comment out some unused fields.
7580
7581         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
7582         some unused properties/methods.
7583
7584         * XplatUIX11.cs: fix MousePosition so we override the base class's
7585         property instead of conflicting with it.
7586
7587         * PictureBox.cs: comment out some unused fields
7588
7589         * OSXStructs.cs: make some struct fields public.
7590
7591         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
7592         MousePosition so we override the base class's property instead of
7593         conflicting with it.
7594
7595         * X11Dnd.cs: comment out some unused fields
7596
7597         * X11DesktopColors.cs: fix some struct field visibility to quiet
7598         the compiler.
7599
7600         * X11Dnd.cs: remove some debug code.
7601
7602         * ThemeClearlooks.cs: comment out unused field.
7603
7604         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
7605
7606         * ThemeGtk.cs: comment out some unused pinvokes.
7607
7608         * Timer.cs: remove some unused fields.
7609
7610         * ThemeClearlooks.cs: comment out unused field.
7611
7612         * UpDownBase.cs: comment out unused field.
7613
7614         * DataObject.cs: comment out unused field.
7615
7616         * DataGridBoolColumn.cs: reomve unused field.
7617
7618         * DataGrid.cs: remove unused field.
7619
7620         * Cursor.cs: remove old ToBitmap code.
7621
7622         * ControlPaint.cs: remove unused method.
7623
7624         * ScrollBar.cs: remove unused fields.
7625
7626         * ComboBox.cs: remove unused field, and chain up to
7627         AccessibleObject ctor.
7628
7629         * ListBox.cs: remove unused field.
7630
7631         * ButtonBase.cs: wrap a couple fields in NET_2_0.
7632
7633         * GridEntry.cs: remove unused fields.
7634
7635         * Binding.cs: remove unused fields.
7636
7637         * AxHost.cs: remove unused method.
7638
7639         * ContainerControl.cs: remove unused field.
7640
7641         * ScrollableControl.cs: remove unused fields.
7642
7643 2006-12-01  Chris Toshok  <toshok@ximian.com>
7644
7645         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
7646         the Where/WhereString stuff.  it's easy enough to CWL
7647         Environment.StackTrace.
7648
7649         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
7650         unused private fields.
7651
7652 2006-12-01  Jackson Harper  <jackson@ximian.com>
7653
7654         * TextControl.cs: Do not update the view while inserting multiline
7655         text. If we update the view we might wrap lines, before entering
7656         the new lines, which causes the new line insertion calculations to
7657         be totally fubared.
7658         - Remove an old TODO
7659         - Make debug output a little nicer
7660         
7661 2006-12-01  Chris Toshok  <toshok@ximian.com>
7662
7663         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
7664
7665 2006-12-01  Chris Toshok  <toshok@ximian.com>
7666
7667         [ fix the majority of the CS0108 warnings we've been suppressing ]
7668         
7669         * TreeView.cs: mark BackgroundImageChanged as 'new'.
7670
7671         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
7672         to "LayoutToolBar" to quiet mcs.
7673         
7674         * TabControl.cs: mark our ControlCollection class as 'new'.
7675
7676         * TextBoxBase.cs: mark some events as 'new'.
7677
7678         * Splitter.cs: TabStop is 'new'.
7679
7680         * ControlBindingsCollection.cs: mark a few methods as new since
7681         they change the visibility from protected to public.
7682
7683         * RadioButton.cs: DoubleClick -> base class, and remove unused
7684         HaveDoubleClick.
7685
7686         * MonthCalendar.cs: ImeMode property -> base class, and mark many
7687         events as new.
7688
7689         * NumericUpDown.cs: TextChanged -> base class.
7690
7691         * CheckedListBox.cs: mark our ObjectCollection class as new to
7692         quiet mcs.
7693
7694         * FolderBrowserDialog.cs: make HelpRequest event new and have it
7695         muck with the base class.
7696
7697         * StatusBar.cs: fix some mcs warnings about Update being the same
7698         name as a base class method.
7699
7700         * RichTextBox.cs: mark some events as new, and make them do things
7701         to the base class impl.
7702
7703         * UserControl.cs: mark TextChanged as new, and have it manipulate
7704         base.TextChanged.
7705
7706         * UpDownBase.cs: mark some things new.
7707
7708         * CheckBox.cs: mark DoubleClick "new", and add some text about
7709         what we need to look at.
7710
7711         * Panel.cs: make the events "new", and manipulate the base
7712         version.  these are just here for attributes.
7713
7714         * AccessibleObject.cs: make owner private.
7715
7716         * Control.cs: deal with AccessibleObject.owner being private.
7717         cache our own copy if we need it.
7718
7719         * Button.cs: add "new" to the DoubleClickEvent.
7720
7721         * ListBox.cs: no need to track our own has_focus here.  let
7722         Control.has_focus do it for us.  Also some other work to clear up
7723         warnings about not overriding base class methods of the same name.
7724         
7725         * ComboBox.cs: clear up some warnings about not override base
7726         class methods of the same name.
7727
7728 2006-12-01  Chris Toshok  <toshok@ximian.com>
7729
7730         * Form.cs: flag a few things as "new" to quiet some of the mcs
7731         warnings.
7732
7733         * AxHost.cs: same.
7734
7735         * PrintPreviewDialog.cs: same.
7736
7737         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
7738         now DGV isn't so horrible on the class status page.  also, move
7739         all events to using System.ComponentModel.EventHandlerList.  my
7740         wrists hurt.
7741
7742 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7743
7744         * MdiWindowManager.cs:
7745         - Set form to active mdi child if shown,
7746         and update the active mdi child to the next 
7747         remaining child in the z-order if the form is hidden.
7748
7749         * Form.cs: 
7750         - Track if the form has been visible and if its 
7751         visibility is beeing changed, so that the MdiClient
7752         can properly decide the ActiveMdiChild. The MdiClient 
7753         cannot track this since the form can change visibility 
7754         before MdiClient is created.
7755
7756         * MdiClient.cs:
7757         - Don't activate anything of the parent form is changing
7758         its visibility.
7759         - Rework ActiveMdiChild to only return visible mdi 
7760         children and take into account several other corner 
7761         cases.
7762
7763 2006-12-01  Chris Toshok  <toshok@ximian.com>
7764
7765         * IBindableComponent.cs: new 2.0 interface.
7766
7767 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
7768
7769         * DataGrid.cs: Font for caption area is bold by default.
7770
7771 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
7772
7773         * Menu.cs: Tag property for 2.0.
7774         
7775 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
7776
7777         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
7778         
7779 2006-12-01  Chris Toshok  <toshok@ximian.com>
7780
7781         * TreeView.cs: doh, the Begin* events should be
7782         TreeViewCancelEventHandler.
7783
7784 2006-12-01  Chris Toshok  <toshok@ximian.com>
7785
7786         * Form.cs: Form.ControlCollection already stores off the
7787         form_owner field.  don't access the base class's internal "owner"
7788         field.
7789
7790         * Control.cs: make all the fields in Control.ControlCollection
7791         private.  there's no need for any internal fields here.
7792
7793 2006-12-01  Chris Toshok  <toshok@ximian.com>
7794
7795         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
7796         OnHandleCreated.  Fixes bug #80109.
7797
7798 2006-12-01  Chris Toshok  <toshok@ximian.com>
7799
7800         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
7801         SplitContainer.cs, Control.cs, StatusStrip.cs,
7802         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
7803         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
7804         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
7805         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
7806         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
7807         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
7808         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
7809         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
7810         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
7811         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
7812
7813         do most of the work to convert our code over to use
7814         System.ComponentModel.Component.Events for
7815         adding/removing/dispatching events.
7816
7817
7818 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
7819
7820         * DataGridView.cs: Fix an ArgumentNullException reported 
7821         twice today in IRC.
7822
7823 2006-11-30  Mike Kestner  <mkestner@novell.com>
7824
7825         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
7826         grabbed listbox.  Fixes #80036 and #80101.
7827
7828 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
7829
7830         * Message.cs: Changed ToString() to match MS.
7831         
7832 2006-11-30  Jackson Harper  <jackson@ximian.com>
7833
7834         * TextBoxBase.cs: You can still change the selected text on a read
7835         only textbox.
7836         * TextControl.cs: Lower magic number for wrap calculations. This
7837         lets text get closer to the right (far) edge.
7838
7839 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
7840
7841         * Control.cs: Tweak 2.0 layout properties.
7842         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
7843         * TextRenderer.cs: Add a new overload.
7844         * ToolStrip*: Huge amount of changes and new features.
7845
7846 2006-11-30  Mike Kestner  <mkestner@novell.com>
7847
7848         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
7849         scroll range correct.  Fixes #79994.
7850
7851 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
7852
7853         * MdiWindowManager.cs: Update main form's text when
7854         a form is closed. (fixes #80038)
7855         
7856 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
7857
7858         * ToolBar.cs:
7859         - Fix an regression in ButtonSize.
7860         - Get ImeMode default value change to "Disable".
7861         - Get ShowTooltips default value change to true, default value is 
7862         "false" but after make a test in .NET we get "true" result as default.
7863         
7864 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
7865
7866         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
7867
7868 2006-11-29  Chris Toshok  <toshok@ximian.com>
7869
7870         * XplatUIWin32.cs (GetWindowTransparency): check return value of
7871         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
7872         SetWindowTransparency hasn't been called.
7873
7874 2006-11-29  Chris Toshok  <toshok@ximian.com>
7875
7876         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
7877         if it's supported.
7878         (set_AllowTransparency): reorder things a little so that the
7879         WS_EX_LAYERED style is removed properly.
7880
7881 2006-11-29  Chris Toshok  <toshok@ximian.com>
7882
7883         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
7884         
7885         * Form.cs: only call the XplatUI transparency method (get/set) if
7886         SupportsTransparency says it's supported. Otherwise fallback to
7887         doing nothing (in the set case) or returning the instance field we
7888         cache (in the get case).
7889
7890         * XplatUIStructs.cs: add TransparencySupport flag enum.
7891         
7892         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
7893         change to SupportsTransparency.
7894
7895         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
7896         TransparencySupport.None from SupportsTransparency.
7897
7898         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
7899         TransparencySupport.Set from SupportsTransparency.
7900
7901         * XplatUIWin32.cs: implement GetWindowTransparency calling
7902         GetLayeredWindowAttributes, and implement SupportsTransparency by
7903         checking whether or not both
7904         GetWindowTransparency/SetWindowTransparency are available
7905         entrypoints.  We need to do this since SetWindowTransparency is
7906         available as of win2k, but GetWindowTransparency requires winxp.
7907         yay win32 api.
7908
7909         * XplatUI.cs: Add GetWindowTransparency, and change
7910         SupportsTransparency to allow for either/both Get/Set.
7911
7912 2006-11-29  Chris Toshok  <toshok@ximian.com>
7913
7914         * DataGrid.cs: keep from going into an infinite loop redrawing a
7915         datagrid that has no datasource.  Fixes bug #80033.
7916
7917 2006-11-29  Chris Toshok  <toshok@ximian.com>
7918
7919         * MenuItem.cs: fix the NRE when we assign text (and therefore call
7920         Invalidate) before the mainmenu has been assigned to a control.
7921
7922 2006-11-29  Chris Toshok  <toshok@ximian.com>
7923
7924         * DataGrid.cs: detect when we should be double the double click
7925         row/column autosize stuff, although that codepath has yet to be
7926         written.  part of the work for bug #79891.
7927
7928 2006-11-29  Chris Toshok  <toshok@ximian.com>
7929
7930         * Binding.cs (SetControl): fix unit test.
7931
7932 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7933
7934         * PageSetupDialog.cs: Validate the margins and set them in
7935         PageSettings. 
7936         * NumericTextBox.cs: New class to mimic the behavior of the
7937         textboxes used in the printing dialogs.
7938
7939 2006-11-29  Andreia Gaita  <avidigal@novell.com>
7940         
7941         * Form.cs: Revert previous change (remove call UpdateBounds
7942         from form constructor), because it messes with the handle creation
7943         order, and that one needs lots and lots of love.
7944         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
7945         for valid printer and throw InvalidPrinterException if document
7946         is set but printer not valid), adding a MonoTODO. Once 
7947         handle creation is done properly, we can put this back in.
7948
7949 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
7950
7951         * MenuItem.cs: Create a invalidate method for menu item, to be
7952         calling from set text, it make text changes to imadiate update
7953         on screen. Fixes #80013. 
7954         
7955 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
7956
7957         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
7958         fixes bug #80070 and some other problem on toolbar buttons
7959         layout.
7960
7961 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
7962
7963         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
7964         with dotted brush.      Fixes #79564
7965         
7966 2006-11-28  Andreia Gaita  <avidigal@novell.com>
7967
7968         * Form.cs: Removed call to UpdateBounds on Form
7969         constructor, it was causing a call to CreateHandle
7970         before it was supposed to.
7971         * PrintControllerWithStatusDialog: Applied patch
7972         by Chris Toshok to hide controller when there are
7973         no printers available.
7974         PrintDialog.cs: initialize printer settings to 
7975         null - correct DefaultValues test #5
7976         * PrintPreviewControl.cs: Move PrintController
7977         initialization to GeneratePreview
7978         * PrintPreviewDialog.cs: 
7979         - Remove Preview generation     from Document_set(). It is 
7980         called on OnPaint
7981         - Throw InvalidPrinterException on CreateHandle if
7982         a Document is set but there are no printers or 
7983         printer is not valid.
7984         * ThemeWin32Classic: don't paint PrintPreviewControl
7985         if there is nothing to paint    
7986
7987 2006-11-28  Miguel de Icaza  <miguel@novell.com>
7988
7989         * Form.cs: Add another popular method.
7990
7991         * TabPage.cs: ditto.
7992
7993 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7994
7995         * MenuItem.cs: Fixed a warning.
7996         * InternalWindowManager: Fixed a warning.
7997
7998 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
7999
8000         * MenuItem.cs:
8001         - When cloning a menu also clone MdiList and clone the 
8002           window menu items properly (as the forms and menuitems
8003           are kept in an internal hashtable, these need updating 
8004           as well)
8005         - Rewrote the window menu code, menu items are added in the
8006           order the forms were added to their parent, and they are
8007           updated every time the window menu is shown (before the
8008           list was only generated once, in the current order of the
8009           forms, and would never be updated). A checkmark is shown
8010           next to the item corresponding to the active mdi child.
8011
8012 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8013
8014         * XplatUIStructs.cs: 
8015         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
8016         
8017         * XplatUIWin32.cs: 
8018         - Added TME_NONCLIENT to TMEFlags.
8019         - Handles WM_NCMOUSEMOVE in GetMessage to 
8020           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
8021
8022         * MdiWindowManager:
8023         - Now merges mdi child menu to parent menu when maximized.
8024         - Recalculate NC areas of both mdi child and mdi parent. 
8025           Fixes #79757 (4).
8026           on window state and size changes.Fixes #79844 (3).
8027         - Handle WM_NCCALCSIZE to properly calculate borders.
8028
8029         * Form.cs:
8030         - Add/remove to the mdi containers list of mdi children 
8031           in the order they are added.
8032         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
8033           to the maximized mdi child.
8034         
8035         * InternalWindowManager.cs:
8036         - Only execute a click on the control buttons on the mouse up,
8037           not on the mouse down. Show the state of the button 
8038           (was only showing Normal state, never Pressed state). The
8039           pressed button now follows the mouse (if you click the Close 
8040           button and move the mouse over the Maximize button, the 
8041           Maximize button will be shown as pressed). Since Win32 does
8042           not generate WM_NCLBUTTONUP if you release the button outside
8043           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
8044           it as a mouse up.
8045         
8046         * ThemeWin32Classic.cs:
8047         - Draw a missing border around mdi child forms. Fixes #79844 (2).
8048
8049         * MdiClient.cs:
8050         - Added a list of forms which contains the order the forms are
8051           added to the mdi parent.
8052         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
8053         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
8054         - If the active form changes set the scrollbars to the top
8055           of the Z order, otherwise the form could hide them.
8056         - Scrollbars are now sized according to ClientSize, not 
8057           to Size, and they take into account the other scrollbar
8058           to determine maximum.
8059         
8060 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
8061         
8062         * XplatUI.cs:
8063         * XplatUIDriver.cs:
8064         * XplatUIX11.cs:
8065         * XplatUIWin32.cs:
8066         * XplatUIOSX.cs:
8067         - Added RequestAdditionalWM_NCMessages for windows to 
8068           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
8069           Currently only implemented in XplatUIWin32.
8070
8071 2006-11-27  Chris Toshok  <toshok@ximian.com>
8072
8073         * Hwnd.cs: only add the hwnd to the windows hash in
8074         set_WholeWindow and set_ClientWindow if whole_window/client_window
8075         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
8076
8077 2006-11-27  Mike Kestner  <mkestner@novell.com>
8078
8079         * ComboBox.cs: remove redundant OnDropDown call.  It is called
8080         from the ComboListBox.ShowWindow code. Fixes #79969.
8081
8082 2006-11-27  Chris Toshok  <toshok@ximian.com>
8083
8084         * Hwnd.cs: remove the setters for ExposePending and
8085         NCExposePending - noone uses them.
8086
8087 2006-11-27  Jackson Harper  <jackson@ximian.com>
8088
8089         * TextControl.cs: new param for ReplaceSelection which determines
8090         whether we select the new selection, or set the cursor to the end
8091         of the new selection.
8092         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
8093         pasting, select the new text.
8094         * RichTextBox.cs: Use new param for ReplaceSelection.
8095
8096 2006-11-27  Jackson Harper  <jackson@ximian.com>
8097
8098         * TextBoxBase.cs: Set the selection to the caret after the caret
8099         is moved, otherwise they get out of sync.
8100
8101 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
8102
8103         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
8104         it fixes #80015
8105
8106 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
8107
8108         * ThemeWin32Classic.cs: 
8109         - Fix toolbar drop down arrow position.
8110         - Fix drop down appearance when ToolBar.Appearance is normal,
8111         it fixes #80018.
8112         
8113 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
8114
8115         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
8116         * Control.cs: Same.
8117         * UpDownBase.cs: Same.
8118         * ButtonBase.cs: Same.
8119         * ScrollBar.cs: Same.
8120         * TrackBar.cs: Same.
8121         * PictureBox.cs: Same.
8122         * UserControl.cs: Same.
8123         * Label.cs: Same.
8124         * ListControl.cs: Same.
8125         * TextBoxBase.cs: Same.
8126         * ListView.cs: Same.
8127         * RichTextBox.cs: Same.
8128         * TreeView.cs: Same.
8129
8130 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
8131
8132         * PrintDialog.cs:
8133         - Text label for where 
8134         - Text label comment was not shown
8135
8136 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
8137
8138         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
8139
8140 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
8141
8142         * InternalWindowManager.cs: 
8143         - Handle WM_PARENTNOTIFY to activate the form
8144         if any child control is clicked.
8145         - The form is only sizable if not minimized.
8146
8147         * MdiWindowManager.cs:
8148         - Save the IconicBounds if the form is moved.
8149         - Rework SetWindowState, now the window bounds 
8150         are stored only if the old window state is Normal.
8151         
8152         * MdiClient.cs:
8153         - In SetWindowStates store the old window state if 
8154         the window is maximized and restore window state if
8155         the window looses focus.
8156         - Don't handle any scrollbar value changes if 
8157         initializing the scroll bars. Fixes #79771.
8158         - Reworked ArrangeIconicWindows. Current algorithm
8159         tests bounds agains all other minimized windows, if
8160         any intersections create new bounds (going left to 
8161         right, bottom to top) and then test again. When 
8162         successful the bounds are saved and never computed
8163         again. Fixes #79774.
8164
8165 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
8166
8167         * InternalWindowManager.cs: Added HandleTitleBarUp.
8168
8169 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
8170
8171         * NumericUpDown.cs: In .NET 1.1, user entered text is still
8172         hexadecimal in ParseUserEdit.
8173
8174         
8175 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
8176
8177         * MdiWindowManager.cs: 
8178         - Handle a click on the form's icon to show the 
8179         system menu (when maximized). Fixes #79775.
8180         - Change the existing click handler for the form's
8181         icon when not maximized to show on MouseUp.
8182         Fixes #79776.
8183
8184         * Form.cs: In OnResize only layout the mdi child's
8185         parent if it actually has a parent. Might not if
8186         the window is closing.
8187
8188
8189 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
8190
8191         * MdiClient.cs: Ignore active MDI client for text of parent, if
8192         child has no text set.
8193
8194 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
8195
8196         * ToolBar.cs: Fixed ToString to match MS.
8197
8198 2006-11-22  Andreia Gaita  <avidigal@novell.com>
8199
8200         * NumericUpDown: 
8201         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
8202         update inner values on set. Fixes #79966.
8203         - Override OnLostFocus to update value on NET 2. Fixes #79950.
8204         - Fix hexadecimal parsing.
8205         
8206         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
8207         parent. Fixes #79957
8208
8209 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8210
8211         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
8212         the actual size has to be queried, since if height /
8213         width is negative Win32 changes it to 0. 
8214         Fixes #79999 on Windows.
8215         
8216         * XplatUIX11.cs: Set height / width to 0 if negative
8217         in SetWindowPos. Fixes #79999 on Linux.
8218         
8219 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
8220
8221         * ThemeWin32Classic.cs: Fix text redenring when button is
8222         pressed.
8223
8224 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
8225
8226         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
8227         and later navigate by mouse. Fixes #79528.
8228
8229 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
8230
8231         * ToolBar.cs: Set default value for TabStop to false in
8232         constructor, it fixes remaining behavior of bug #79863.
8233
8234 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8235
8236         * MdiWindowManager.cs:
8237         * InternalWindowManager.cs:
8238         - Moved a few methods specific to Mdi from 
8239         InternalWindowManager to MdiWindowManager.
8240         Fixes #79996.
8241         
8242 2006-11-21  Chris Toshok  <toshok@ximian.com>
8243
8244         * XplatUIOSX.cs: stub out InvalidateNC.
8245
8246         * XplatUIWin32.cs: implement InvalidateNC using the call I found
8247         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
8248
8249         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
8250
8251         * XplatUIDriver.cs: add InvalidateNC abstract method.
8252
8253         * XplatUI.cs: add InvalidateNC.
8254
8255 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
8256
8257         * ToolBar.cs: Invalidate complete button area when pressed status 
8258         was changed.
8259         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
8260         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
8261         by 1 when button is pressed.
8262
8263 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
8264
8265         * ToolButton.cs: Invalidate middle of DropDown button when
8266         ToolBar theres DropDownArrows.
8267         * ThemeWin32Classic.cs: Change position of DropDown arrow and
8268         fix DropDown drawing operations.
8269
8270 2006-11-20  Chris Toshok  <toshok@ximian.com>
8271
8272         * NativeWindow.cs: fix the formatting of functions ('{' on the
8273         following line), and enable the thread exception dialog.
8274
8275         * Application.cs: remove the duplicate exception catching from
8276         here.
8277
8278 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
8279
8280         * Toolbar.cs: Triggers button click event when click on icon
8281         of dropdown ToolBarButton. Fixes #79912.
8282         
8283 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8284
8285         * Theme.cs:
8286         * ThemeWin32Classic.cs:
8287         - Added a property WindowBorderFont to enable themeing
8288           of mdi child windows' Text.
8289           
8290 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8291
8292         * InternalWindowManager.cs:
8293         * Form.cs:
8294         * MdiClient.cs:
8295         * MdiWindowManager.cs: 
8296         - If mdi child is maximized, set mdi parent's
8297           text to "Parent - [Child]". Fixes #79770.
8298         - If there is any maximized mdi child windows, only the active 
8299           window (and any new windows) is maximized, the rest are normal.
8300         - On a WindowState change only save mdi child's window bounds 
8301           if the old window state was normal. Fixes #79774.
8302         - The scroll bars are now calculated on hopefully all
8303           necessary events. Fixed #79771 / #79844->6 / #79906.
8304         - MdiClient.SizeScrollBars() now takes into account docked 
8305           controls in the parent when calculating available space.
8306         - InternalWindowManager now always repaints the entire title
8307           area. Fixes #79844->1/4/5.
8308         - Added RequestNCRecalc on mdi child windowstate changes.
8309           Fixes #79772.
8310
8311 2006-11-20  Mike Kestner  <mkestner@novell.com>
8312
8313         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
8314         in the MouseUp handler of the listbox and move the return handling
8315         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
8316
8317 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
8318
8319         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
8320
8321 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
8322
8323         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
8324           working in 1.2.x anymore. So, updated.
8325
8326 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
8327
8328         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
8329         NumberGroupSeparator of current culture instead of assuming en-US.
8330         Fixed bug #79967.
8331
8332 2006-11-17  Mike Kestner  <mkestner@novell.com>
8333
8334         * Control.cs: Add the concept of implicit bounds setting so that
8335         dock/undock round trips preserve explicitly set size/locations.
8336         Fixes #79313.
8337
8338 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
8339
8340         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
8341           can't handle those filters. (Fixes bug #79961)
8342
8343 2006-11-17  Chris Toshok  <toshok@ximian.com>
8344
8345         [ fixes the exit/crashes associated with #79835.  it's clearly
8346         suboptimal though, we need to figure out a better way to solve
8347         this. ]
8348         
8349         * PrintPreviewControl.cs: deal with the new invalid printer
8350         exceptions.
8351
8352         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
8353         and return false (so CommonDialog.ShowDialog doesn't actually show
8354         the form.)
8355
8356         * PrintDialog.cs: enable/disable the Ok button depending on
8357         whether or not the printer is valid.
8358
8359         * CommonDialog.cs (ShowDialog): only actually show the form if
8360         RunDialog returns true.
8361
8362 2006-11-17  Jackson Harper  <jackson@ximian.com>
8363
8364         * TextControl.cs: When soft splitting a line, mark it as a soft
8365         split line. Also carry over the current line break to the next
8366         line.
8367
8368 2006-11-17  Chris Toshok  <toshok@ximian.com>
8369
8370         * XplatUIX11.cs: when scrolling a window with an invalid area, we
8371         only want to shift the part of the invalid area that overlaps the
8372         area we're scrolling.  we also don't want to clear the invalid
8373         area unless the invalid area was entirely contained within the
8374         scrolling area.
8375
8376 2006-11-16  Chris Toshok  <toshok@ximian.com>
8377
8378         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
8379         also make sure to free the memory returned by XGetWindowProperty
8380         in GetText().
8381
8382         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
8383
8384 2006-11-16  Chris Toshok  <toshok@ximian.com>
8385
8386         * XplatUI.cs: add a new super secret way to get at the totally
8387         unsupported X11 backend.
8388
8389 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
8390
8391         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
8392
8393 2006-11-16  Jackson Harper  <jackson@ximian.com>
8394
8395         * TreeView.cs: Allow more explicit setting of top node position
8396         for scrollbars. Slower algo, but more accurate.
8397         - CollapseAll should maintain the current top node.
8398         * TextBoxBase.cs: When positioning the caret, use the line, pos
8399         method, since the x, y method does not grab the correct tag, and
8400         the caret height never gets set correctly. (Maybe I should just do
8401         away with the caret having its own height, and always use the
8402         carets current tag for height).
8403
8404 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
8405
8406         [Fixes 79778, 79923]
8407
8408         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
8409         Parent to the FosterParent instead.
8410
8411 2006-11-16  Jackson Harper  <jackson@ximian.com>
8412
8413         * TreeView.cs: Need to recalc the topnode when we expand or
8414         collapse. The scrolling methods can't handle this on their own,
8415         since they use differences between the last scroll position, and
8416         those difference get completely messed up since we are expanding
8417         nodes.  This problem should probably be fixed in the scrolling
8418         methods, so they can figure out exactly where they are, but this
8419         will slow things down a little.
8420         * ThemeWin32Classic.cs: Special case for groupboxes with empty
8421         strings, makes nunit-gui look a lot nicer.
8422
8423 2006-11-16  Chris Toshok  <toshok@ximian.com>
8424
8425         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
8426         the broken multithreaded event handling we have in here.  File
8427         this entry under "Why we should move to the new X11 backend".
8428
8429         Any thread can make it into UpdateMessageQueue, which gets events
8430         from the X socket - some of which could belong to hwnds being
8431         managed by a different thread.  We can also have multiple threads
8432         in UpdateMessageQueue at the same time, with each one reading from
8433         the X socket.  This leads to many problems, with the following
8434         solutions:
8435
8436         We can't use hwnd.Queue.Enqueue anywhere in here and must use
8437         EnqueueLocked.
8438
8439         The MotionNotify compression we do can't work across threads
8440         (without locking the entire queue, perhaps) since we call
8441         hwnd.Queue.Peek, so we just punt and don't compress motion events
8442         unless the owning thread is the one which got the X event.
8443
8444         ConfigureNotify is another fun one, since it modifies the hwnd's
8445         bounds and then enqueues the event.  We add a lock to Hwnd which
8446         is held when setting configure_pending to true (and enqueuing the
8447         event).
8448
8449         There is a race wrt the wake socket.  we need to make sure that
8450         only 1 thread is waiting on that socket, or else a thread could
8451         sleep waiting for data that never comes.  It's difficult (but not
8452         impossible) to make happen, because it seems to require something
8453         like the following:
8454
8455             1. Thread 1 polls on wake_receive
8456         
8457             2. poll returns saying there's data to be read on
8458                wake_receive.
8459         
8460             3. Thread 2 polls on wake_receive and immediately returns
8461                saying there's data to be read.
8462
8463             4. Thread 2 reads the wakeup byte from wake_receive
8464
8465             5. Thread 1 attempts to read the wakeup byte from
8466                wake_receive.
8467
8468             6. Thread 2 exits (due to a form closing, perhaps).
8469
8470             7. Thread 1 blocks forever.
8471         
8472         Fun, eh?
8473
8474         Fixing the Expose handling isn't done yet, and the races inherent
8475         in that piece of code are responsible for the drawing mistakes you
8476         see when generating expose events in a MT app (like NPlot).  This
8477         one is the likely to be the hardest to bandaid, and it doesn't
8478         appear to cause anything but drawing problems.  The other issues
8479         caused apps to exit or hang.
8480
8481         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
8482         called from a different thread than the one that should be calling
8483         these functions.
8484
8485         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
8486
8487 2006-11-15  Chris Toshok  <toshok@ximian.com>
8488
8489         * Application.cs: null out the context's MainForm when we exit
8490         RunLoop.  Fixes a newly checked in unit test as well as the last
8491         ODE from bug #79933.
8492
8493 2006-11-15  Chris Toshok  <toshok@ximian.com>
8494
8495         * Form.cs (set_Owner): allow a null value so we can clear the
8496         form's owner.
8497         (Dispose): set all our owned_form's Owner properties to null, and
8498         clear the owned_forms collection.
8499         (WM_CLOSE): clean up this a little bit.. still not right though.
8500
8501         * ApplicationContext.cs: OnMainFormClosed should only call
8502         ExitThreadCore if the main form isn't recreating.  Fixes unit
8503         test.
8504
8505 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
8506
8507         [Fixes 78346]
8508
8509         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
8510
8511 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
8512
8513         [Fixes 79433]
8514
8515         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
8516         keep popup window types from stealing focus from the main form
8517         on Windows.
8518
8519         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
8520
8521         * MenuAPI.cs: Set above flag to true.
8522
8523 2006-11-15  Chris Toshok  <toshok@ximian.com>
8524
8525         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
8526         the button being released is not in wParam.
8527
8528 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
8529
8530         * Form.cs: Add the released button to MouseEventArgs.Button
8531         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
8532         on Win32.
8533
8534 2006-11-15  Chris Toshok  <toshok@ximian.com>
8535
8536         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
8537         GetText().  untested because it's unused in our implementation.
8538         Control.Text always caches the text, even if
8539         ControlStyles.CacheText is not set.
8540
8541         fixes bug #79939.
8542
8543 2006-11-15  Chris Toshok  <toshok@ximian.com>
8544
8545         [ fixes #79933 ]
8546         
8547         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
8548         message.  no hiding, no disposing.
8549
8550         in the WM_CLOSE handler, hide the form if it's modal.
8551
8552 2006-11-15  Chris Toshok  <toshok@ximian.com>
8553
8554         * XplatUIX11.cs: use AddExpose instead of sending a message.
8555         fixes textbox border drawing.
8556
8557 2006-11-15  Chris Toshok  <toshok@ximian.com>
8558
8559         * PropertyGridView.cs: keep from crashing on mouse move/down when
8560         the property grid is empty.
8561
8562 2006-11-14  Jackson Harper  <jackson@ximian.com>
8563
8564         * TextControl.cs: Make PageUp and PageDown more like the MS
8565         versions.
8566         * TextBoxBase.cs: When we set the text property position the
8567         cursor at the beginning of the document.
8568
8569 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8570
8571         * Form.cs: if a mdi child's WindowState has changed
8572         before it's creation, it would display wrong control
8573         buttons.
8574         
8575 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
8576
8577         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
8578           (Fixes bug #79927)
8579
8580 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
8581
8582         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
8583         the window gets to paint its borders even if the window is
8584         getting smaller.
8585         
8586         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
8587         otherwise the old control buttons would still be painted 
8588         if the window gets bigger.
8589         
8590         * PaintEventArgs.cs: add an internal method so that the clip 
8591         rectangle can be changed.
8592         
8593 2006-11-13  Chris Toshok  <toshok@ximian.com>
8594
8595         [ fixes bug #79745 ]
8596         
8597         * NotifyIcon.cs: lots of cleanup.
8598
8599         * X11Structs.cs: add an enum for XEMBED messages.
8600
8601         * XplatUIX11.cs: reindent one of the giant switch statements, it
8602         was taking up an additional tab stop, and this file is already way
8603         too wide for my laptop's screen.
8604
8605         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
8606         we get it, resize the hwnd to the WMNormalHints max_width/height.
8607
8608 2006-11-13  Jackson Harper  <jackson@ximian.com>
8609
8610         * TextBoxBase.cs: Compute the value changes for the mouse wheel
8611         teh simple way.
8612
8613 2006-11-13  Chris Toshok  <toshok@ximian.com>
8614
8615         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
8616         #79898.  force a reference to the Region to stick around so the
8617         unmanaged object isn't collected (rendering our handle in the MSG
8618         stale).
8619
8620 2006-11-13  Chris Toshok  <toshok@ximian.com>
8621
8622         * XplatUIX11.cs: fix #79917 for window managers which support
8623
8624         using XStoreName on the raw utf8, and we need to convert to
8625         COMPOUND_TEXT if it's non-latin1.
8626
8627 2006-11-13  Chris Toshok  <toshok@ximian.com>
8628
8629         * Form.cs (set_DialogResult): we need to set closing to false if
8630         we're setting our result to None.  fixes bug #79908.
8631
8632 2006-11-13  Jackson Harper  <jackson@ximian.com>
8633
8634         * TextControl.cs: When formatting text, compute the adjusted tag
8635         lengths correctly, using FindTag for the end tag instead of trying
8636         to figure it out outselves.
8637         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
8638         the item, ItemHeight doesn't work, because trees with large
8639         imagelists use those for their height
8640         * TreeView.cs: ActualItemHeight factors in the image height
8641         - compute left edge of checkboxes correctly
8642         - when expanding/collapsing move the bottom down one pixel, so we
8643         aren't moving part of the node
8644
8645 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8646
8647         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
8648         stack in PaintEventStart so that it won't get disposed by the gc
8649         before reaching PaintEventEnd.
8650
8651 2006-11-13  Jackson Harper  <jackson@ximian.com>
8652
8653         * TextBoxBase.cs: Don't select the word if we are on a line with
8654         no text.
8655         - We don't need to position the caret on mouse up, since the mouse
8656         move handler should be doing this
8657         - When double clicking a blank line, the caret is advanced to the
8658         next line.
8659
8660 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
8661
8662         * TreeNodeCollection.cs: Avoid duplicating indexer code.
8663
8664 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
8665
8666         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
8667         Fixes part of bug #79910.
8668
8669 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
8670
8671         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
8672           (bug #79903). Some minor string updates to match ms.
8673
8674 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
8675
8676         * FileDialog.cs: Don't add an extension if the filename
8677           already ends with that extension.
8678
8679 2006-11-10  Jackson Harper  <jackson@ximian.com>
8680
8681         * TreeView.cs: Use the currently highlighted node for the
8682         BeforeSelect event.
8683         * TextBoxBase.cs: There is no need to expand selection on
8684         MouseMove.
8685         - CanUndo means 'is there any undo operations', not 'is undo
8686         allowed on this textcontrol. Fixed ClearUndo unit test.
8687
8688 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
8689
8690         * Button.cs: only perform click when button is Selectable (so as 
8691         not to activate default buttons when they're disabled)
8692         
8693         * Control.cs: Rewrite of the SelectNextControl and related 
8694         methods. HandleClick now selects next control if the current one
8695         is being disabled.
8696         
8697         * Form.cs: OnActivated selects next active control only if Load 
8698         has already occurred. If Load hasn't run, there's no point in 
8699         selecting here, Load might change the state of controls.
8700         
8701         * FocusTest.cs: Tests marked as working again for these fixes
8702
8703 2006-11-10  Chris Toshok  <toshok@ximian.com>
8704
8705         * XplatUIX11.cs: a couple of fixes.
8706
8707         - use XInternAtoms with almost all the atoms we need to register,
8708         instead of many, many calls to XInternAtom.  should help a bit on
8709         startup time, at the expense of making the code look a little
8710         worse.
8711
8712         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
8713         isn't reparented (which seems to be a clue that we're running fon
8714         compiz) and they have an Owner form.  This fixes the tool windows
8715         in paint.net when running under compiz.
8716
8717         - when setting the opacity of a window, support both the case
8718         where the window has been reparented and also when it hasn't been.
8719         Since compiz/beryl doesn't seem to reparent windows, and these are
8720         the only window managers which support translucency, I'm not sure
8721         why we need the hwnd.reparented case at all.. but leave it in.
8722         now we get translucent windows in paint.net under compiz/beryl.
8723
8724 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
8725
8726         * FileDialog.cs: Always return the value for FilterIndex that
8727           was set. Internally convert it to values that make sense.
8728
8729 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
8730         
8731         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
8732
8733 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
8734
8735         * Toolbar.cs: Change default value of DropDownArrows to true, the 
8736         signature still using false to make it compatible with MS but the 
8737         initial value is true. Fixes #79855.
8738
8739 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
8740
8741         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
8742           only available on Linux.
8743
8744 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
8745
8746         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
8747         reduce number of calls to redraw method during toolbar creation.
8748
8749 2006-11-09  Mike Kestner  <mkestner@novell.com>
8750
8751         * ListView.cs : raise SelectedIndexChanged when an item is selected
8752         programmatically via the Item.Selected property.  Gert's nice 
8753         ListViewSelectedIndexChanged test fixture now runs clean.
8754
8755 2006-11-09  Mike Kestner  <mkestner@novell.com>
8756
8757         * ListView.cs : raise SelectedIndexChanged when a selected item is
8758         removed from the item collection using Remove or RemoveAt.
8759
8760 2006-11-09  Mike Kestner  <mkestner@novell.com>
8761
8762         * ListView.cs : raise SelectedIndexChanged once per selected item
8763         for compat with MS.  Fixes #79849+.
8764
8765 2006-11-09  Chris Toshok  <toshok@ximian.com>
8766
8767         * TabControl.cs: initialize row_count to 0, and set it to 1 when
8768         we need to (if we have any tab pages).  Fixes unit test.
8769
8770 2006-11-09  Chris Toshok  <toshok@ximian.com>
8771
8772         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
8773         width is 0, not 3.  Fixes a unit test.
8774
8775 2006-11-09  Mike Kestner  <mkestner@novell.com>
8776
8777         * ListView.cs : use Implicit scrollbars so that focus isn't 
8778         stolen from the listview when they are clicked. Fixes #79850.
8779
8780 2006-11-09  Chris Toshok  <toshok@ximian.com>
8781
8782         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
8783         have a root item.  Fixes #79879.
8784
8785 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
8786
8787         * FileDialog.cs:
8788           - Fix ToString ()
8789           - An ArgumentException is now thrown if a wrong filter
8790             is applied (matches ms). The previous filter doesn't change
8791             anymore if an exception is thrown.
8792           - Changing the FileName property also affects FileNames
8793         * ColorDialog.cs: The length of the CustomColors array is always
8794           16. It doesn't matter if we use a smaller array or null to update
8795           or change the custom colors property.
8796         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
8797           for RootFolder if we get a undefined value.
8798
8799 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8800
8801         * StatusBarPanel.cs: 
8802         - Width is set to MinWidth if Width is smaller than
8803         MinWidth. Fixes #79842.
8804         - MinWidth now always overrides Width (MSDN says MinWidth
8805         is set to Width when AutoSize = None, but they do not 
8806         behave like that).
8807         - Style has now the the correct default value.
8808         
8809 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
8810  
8811         * TrackBar.cs: 
8812         - The control is completely invalidated on 
8813         Got/LostFocus to draw the focus rectangle correctly.
8814         - When AutoSize then height is always 45 (width for 
8815         vertical controls).
8816         
8817         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
8818         on the mouse when moved and it doesn't move when grabbed
8819         until the mouse moves as well. Also fixed some wrong 
8820         calculations when clicking on the thumb (control thought
8821         click was outside of thumb and didn't grab it).
8822         Fixes some of the issues in #79718.
8823
8824 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
8825
8826         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
8827
8828 2006-11-08  Chris Toshok  <toshok@ximian.com>
8829
8830         * PropertyGridView.cs: only call ToggleValue if the item is not
8831         readonly.
8832
8833 2006-11-08  Jackson Harper  <jackson@ximian.com>
8834
8835         * TextBoxBase.cs: The RichTextBox and textbox have very different
8836         word selection methods.  Implement the textbox's simple word
8837         selection here, and let the RichTextBox override and provide it's
8838         own.
8839         - Don't do extra selection on mouseup
8840         * RichTextBox.cs: Use the documents word selection algorithm, I
8841         think ideally, this function will be pulled into the
8842         RichTextBox.cs code someday.
8843
8844 2006-11-08  Chris Toshok  <toshok@ximian.com>
8845
8846         * RootGridEntry.cs: new class to represent GridItemType.Root.
8847
8848         * CategoryGridEntry.cs: reformat, and add boilerplate.
8849         
8850         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
8851         returns the UI parent anyway, and we need special handling to
8852         implement the GetTarget method in the face of it.  Also, implement
8853         Select().
8854
8855         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
8856         a root grid item, and use that instead of PropertyGrid.grid_items.
8857         Also, make use of TypeConverters (and add limitted support for
8858         ICustomTypeDescriptors) when initially populating the grid.
8859         Arrays now show up more or less properly.
8860
8861 2006-11-08  Chris Toshok  <toshok@ximian.com>
8862
8863         * Application.cs: set the modal dialog to non modal after we close
8864         it.  Fixes bug #79866.
8865
8866 2006-11-08  Jackson Harper  <jackson@ximian.com>
8867
8868         * TextControl.cs: When combining lines carry over the line end
8869         style from the end line.
8870         - Invalidate the selected area when setting it, if it is visible.
8871         * TextBoxBase.cs: Only rich text box can do full line selects.
8872         - Make sure to set the cursor position when there is a click,
8873         otherwise two clicks in separate areas could cause a large chunk
8874         to be selected.
8875
8876 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
8877
8878         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
8879         Fixes #79863.
8880
8881 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
8882
8883         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
8884         time. Remove tooltips when ToolButton click events.  Fixes #79856.
8885
8886 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
8887
8888         * MenuAPI.cs: Ignore right click for menu actions and fixes
8889         menu border when clicked.  Fixes #79846.
8890
8891 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
8892
8893         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
8894         MouseState after create wParam for message, this fixes mouse button 
8895         equal none in mouse up events.
8896         
8897 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
8898
8899         * Control.cs : Focus() now calls Select to set the Container's
8900         Active Control and to give it focus. To avoid infinite recursion
8901         (because ActiveControl also calls Focus at one point), a check 
8902         is made in Focus with the help of a new internal variable
8903         is_focusing.
8904
8905 2006-11-07  Mike Kestner  <mkestner@novell.com>
8906
8907         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
8908         if there's a selection.  Fixes #79849.
8909
8910 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
8911
8912         * PropertyGrid.cs: Avoid fixed height of help description label.
8913         Fixes part of bug #79829.
8914
8915 2006-11-07  Chris Toshok  <toshok@ximian.com>
8916
8917         * XplatUIX11.cs: fix #79790 again, by using the
8918         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
8919
8920 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
8921
8922         * ToolBar.cs: Fix left click checking.
8923
8924 2006-11-07  Chris Toshok  <toshok@ximian.com>
8925
8926         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
8927
8928 2006-11-07  Chris Toshok  <toshok@ximian.com>
8929
8930         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
8931         PropertyManager unit tests.
8932
8933         * PropertyManager.cs: make property_name internal.
8934
8935 2006-11-07  Chris Toshok  <toshok@ximian.com>
8936
8937         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
8938         pass a unit test.  Also, don't set image_index to anything in
8939         response to setting the ImageList property.
8940
8941 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
8942
8943         * ToolBar.cs: Ignore click events when mouse button is not a
8944         left button, only accepts other button for dropdown menus.  
8945         Fixes #79854.
8946
8947 2006-11-07  Chris Toshok  <toshok@ximian.com>
8948
8949         * DataGrid.cs: make the back and parent row buttons a little less
8950         ugly.
8951
8952 2006-11-07  Jackson Harper  <jackson@ximian.com>
8953
8954         * TextBoxBase.cs: When converting to Text don't put line breaks in
8955         for soft line breaks.
8956         * TextControl.cs: There is an initial "fake" line in the document,
8957         this is now a soft break line, so that an extra line feed doesn't
8958         get added to the end of documents.
8959
8960 2006-11-07  Chris Toshok  <toshok@ximian.com>
8961
8962         [ fix bug #79778 ]
8963         
8964         * CurrencyManager.cs: if the list is readonly, don't bother
8965         checking if IBindingList.AllowNew is true.
8966
8967         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
8968         for non-DataRowView datasources..  or rather, make it not crash.
8969         (DataGridPaintRelationRow): make sure we limit the row painting to
8970         the area not covered by the row header, and make our cell width at
8971         least large enough to cover the relation area.  This allows grids
8972         that have relations but no rows to render correctly.
8973         (DataGridPaintRowContents): same type of changes here.
8974         (SetDataSource): move back to always calling
8975         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
8976         navigating back through relations.
8977         (HitTest): handle the case where we have no cells but have
8978         relations.  Right now we generate a hit in cell 0 of whatever the
8979         row is, not sure if this is strictly correct, but it works for our
8980         purposes.
8981         
8982         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
8983         bother doing anything.
8984
8985 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
8986
8987         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
8988         early version of StatusStrip.  Not responsible for eaten
8989         application or firstborn children.
8990
8991 2006-11-06  Chris Toshok  <toshok@ximian.com>
8992
8993         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
8994         call GetTabRect with a -1 index.  Fixes #79847.
8995
8996 2006-11-06  Jackson Harper  <jackson@ximian.com>
8997
8998         * TreeNodeCollection.cs: Update scrollbars after clearing.
8999
9000 2006-11-06  Chris Toshok  <toshok@ximian.com>
9001
9002         * NumericUpDown.cs: fix the ToString method for some unit test
9003         love.
9004
9005 2006-11-06  Chris Toshok  <toshok@ximian.com>
9006
9007         * PropertyGrid.cs:
9008         - set the initial SelectedGridItem if we can.
9009
9010         - Exclude non-mergable properties only if we're merging > 1
9011         object.  Merging 1 object isn't really merging, obviously.
9012
9013         - Handle PropertySort.NoSort just like Alphabetical, which is
9014         wrong of course, but at least gets things on the screen.
9015         
9016         * PropertyGridView.cs:
9017         - Add method "FindFirstItem" which finds the first property grid
9018         item, so we can select it by default.
9019
9020         - make use of GridEntry.CanResetValue.
9021
9022         - Don't call RedrawBelowItemOnExpansion here anymore, the
9023         individual GridEntry's will do that.
9024
9025         - Remove the ITypeDescriptorContextImpl internal class.
9026         
9027         * GridEntry.cs:
9028         - this class needs to implement ITypeDescriptorContext, as it's
9029         what MS's PropertyDescriptorGridEntry does, which means we can
9030         remove the ITypeDescriptorContextImpl internal class from
9031         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
9032
9033         - keep a reference to our PropertyGridView, and move the call to
9034         RedrawBelowItemOnExpansion here from PGV.  This means
9035         programmaticly setting Expanded actually does something visible.
9036
9037         - add a CanResetValue() function which takes into account our
9038         possibly multiple "selected_objects" in the merged case.  Shifting
9039         PropertyGridView to use this method fixes another unreported
9040         crasher found running the test for #79829.
9041
9042         - when Top or Bounds is updated, make sure the PropertyGridTextBox
9043         is updated to reflect this.
9044
9045         * CategoryGridEntry.cs: the ctor takes the PGV now.
9046         
9047 2006-11-06  Jackson Harper  <jackson@ximian.com>
9048
9049         * TextControl.cs: These are 1 based.
9050         * TextBoxBase.cs: When setting the selected text, don't change the
9051         selected text tags, this is done by ReplaceText, just position the
9052         cursor at the end of the new text.
9053
9054 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
9055
9056         * ListView.cs: Allow label edit only when, when LabelEdit is
9057           set to true.
9058
9059 2006-11-06  Jackson Harper  <jackson@ximian.com>
9060
9061         * TextControl.cs: If a suitable wrapping position isn't found,
9062         just wrap right in the middle of a word.
9063
9064 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
9065
9066         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
9067           bug #79820.
9068
9069 2006-11-06  Jackson Harper  <jackson@ximian.com>
9070
9071         * TreeView.cs: Can't use the VisibleCount property when setting
9072         scrollbar heights, because this doesn't take into account whether
9073         or not the horz scrollbar just came visible.
9074
9075 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
9076
9077         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
9078         activated.  Fixes #79369, #79832.
9079
9080 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
9081
9082         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
9083           had to remove support for links that point to a directory. FileInfo
9084           returns no usefull information (means, the directory they point to)
9085           for such links. Replaced some empty string ("") with String.Empty.
9086
9087 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
9088
9089         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
9090         NullReferenceException when attempting to remove node that is not in
9091         collection. Throw NullReferenceException when null is passed to 
9092         Remove. Allow first element of the collection to be removed. Fixes
9093         bug #79831.  In GetEnumerator ().Current return null if positioned 
9094         before the first element of the collection. In GetEnumerator ().Reset,
9095         position before first element of the collection.
9096
9097 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
9098
9099         * PropertyGrid.cs: To match MS, remove default title and description
9100         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
9101         buttons.
9102
9103 2006-11-04  Chris Toshok  <toshok@ximian.com>
9104
9105         * Theme.cs: add a Clamp method, just for kicks.
9106
9107         * ThemeWin32Classic.cs: clamp all color components to [0..255].
9108
9109 2006-11-04  Chris Toshok  <toshok@ximian.com>
9110
9111         * Form.cs: if the form isn't visible, Close() does nothing.
9112
9113 2006-11-03  Chris Toshok  <toshok@ximian.com>
9114
9115         * Form.cs (Close): if the form is modal, don't Dispose of it, only
9116         Hide it.
9117         (WndProc): don't Dispose after handling the WM_CLOSE message.
9118
9119         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
9120         them as such, instead of using casts from Control to Form.  Also,
9121         don't Dispose of the modal dialog when we fall out of the loop -
9122         Close() it instead.
9123
9124         fixes bug #79813.
9125
9126 2006-11-03  Chris Toshok  <toshok@ximian.com>
9127
9128         * Control.cs (Dispose): only go through the dispose thing if we're
9129         @disposing, and we haven't already been disposed.  Fixes bug
9130         #79814.
9131
9132         * Form.cs: no reason to call "base.Dispose()" here instead of
9133         "Dispose()".
9134
9135 2006-11-03  Mike Kestner  <mkestner@novell.com>
9136
9137         * ComboBox.cs : use ToString instead of casts in AddItem for
9138         sorting functionality.  Fixes #79812.
9139
9140 2006-11-03  Chris Toshok  <toshok@ximian.com>
9141
9142         * Application.cs: pave the way for actually using the thread
9143         exception dialog.  it's ifdefed out at the moment.
9144
9145 2006-11-03  Chris Toshok  <toshok@ximian.com>
9146
9147         * ThreadExceptionDialog.cs: until we get a better layout, actually
9148         hide the details textbox and label when we shouldn't see them.
9149
9150 2006-11-03  Jackson Harper  <jackson@ximian.com>
9151
9152         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
9153         multiline textboxes anymore.  This method also determines the
9154         width/height of a textboxes canvas area.
9155         - Sorta a revert of the last patch.  For multiline just position
9156         the controls, then bail.  This way the scrollbar width won't be
9157         altered.
9158
9159 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
9160
9161         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
9162         it dont need.  Fixes #79537.
9163
9164 2006-11-02  Jackson Harper  <jackson@ximian.com>
9165
9166         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
9167         send the status after firing the DndOver event.
9168
9169 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9170
9171         * TrackBar.cs: Now orientation only switches height / width if
9172         the control's handle is created (Win32 does it like this). Also 
9173         fixed a typo in ToString() for a test to pass, changed the 
9174         exception thrown in set_LargeChange and set_SmallChange to 
9175         match Win32 behaviour, and added TrackBar tests to the unit 
9176         tests.
9177
9178 2006-11-02  Chris Toshok  <toshok@ximian.com>
9179
9180         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
9181         not _NET_WM_STATE_NO_TASKBAR.
9182
9183 2006-11-02  Jackson Harper  <jackson@ximian.com>
9184
9185         * TextControl.cs: Increment count by one, since in the update view
9186         count - 1 is used.
9187
9188 2006-11-02  Jackson Harper  <jackson@ximian.com>
9189
9190         * TextBoxBase.cs: Use client rectangle not bounds for checking if
9191         the mouse is in the client rectangle (duh).
9192
9193 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
9194         
9195         * TrackBar.cs: Fixed trackbar jumping around when clicking
9196         on it - the trackbar was not detecting correctly at which
9197         side of the thumb the click was done. (fixes #79718)
9198
9199 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
9200
9201         * ListBox.cs: scroll visible area when change SelectedIndex to
9202         a non visible area.  Fixes #79481.
9203
9204 2006-11-01  Jackson Harper  <jackson@ximian.com>
9205
9206         * TextControl.cs: When replacing the selection move the selection
9207         start/end/anchor to the end of the new text.
9208
9209 2006-11-01  Jackson Harper  <jackson@ximian.com>
9210
9211         * XplatUIWin32.cs: When setting the parent change the controls
9212         visibility to it's visibility flag, not to it's old parents
9213         visibility (.Visible walks the parent chain).
9214
9215 2006-11-01  Chris Toshok  <toshok@ximian.com>
9216
9217         * XplatUIX11.cs: revert the #79790 fix, as the simple.
9218         XSetTransientForHint fix breaks paint .net's tool windows.  more
9219         work needed for that one.
9220
9221 2006-11-01  Chris Toshok  <toshok@ximian.com>
9222
9223         * ScrollBar.cs: throw ArgumentException instead of Exception in
9224         LargeChange/SmallChange setters.  fixes unit tests.
9225
9226 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
9227
9228         * ContainerControl.cs: reverted rev.67183 (which was itself
9229         a reversion of rev.66853... eh).
9230         
9231         * Control.cs: Fixes Reflector hang by changing Focus() call
9232         to what it was before rev.66643 (calling Select() here sets 
9233         ActiveControl, which in some situations calls back Focus and 
9234         eventually does a stack overflow). Temp fix.    
9235         Changes to GetNextControl() to not look for children to select when
9236         parent cannot be selectable (so it looks for siblings instead)  
9237         
9238 2006-10-31  Mike Kestner  <mkestner@novell.com>
9239
9240         * CheckedListBox.cs : off by one error in returned index from
9241         ObjectCollection.Add.  Fixes #79758.
9242
9243 2006-10-31  Chris Toshok  <toshok@ximian.com>
9244
9245         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
9246         calls for the textbox/spinner, to keep from recursing to the point
9247         where we crash.  Fixes #79760.
9248
9249 2006-10-31  Chris Toshok  <toshok@ximian.com>
9250
9251         * ListControl.cs (set_SelectedValue): don't throw exceptions on
9252         null/"" value, just return.  matches ms's behavior and fixes some
9253         failing tests.
9254
9255 2006-10-31  Chris Toshok  <toshok@ximian.com>
9256
9257         * Control.cs (set_Capture): make a logic a little easier to
9258         follow.
9259
9260         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
9261         if it's being destroyed.  A necessary fix surely, but a bandaid
9262         also, to fix the stuck capture problem in bug #78413.
9263
9264 2006-10-31  Chris Toshok  <toshok@ximian.com>
9265
9266         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
9267         convention of clearing hwnd.ClientRect when we set the
9268         width/height (so it'll be recalculated by Hwnd).
9269
9270 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
9271
9272         * ContainerControl.cs: reversed Contains check from
9273         ActiveControl due to hanging problems. This fix
9274         partly regresses #79667 (button does not have
9275         initial focus), so this might be a symptom for 
9276         a larger parenting problem (set_ActiveControl
9277         is being called but the child control does
9278         not have the parent set yet?)   
9279         
9280 2006-10-31  Mike Kestner  <mkestner@novell.com>
9281
9282         * MenuAPI.cs : fix keynav when menu is click activated.
9283
9284 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
9285
9286         * ToolStrip*: Version 0.2.
9287
9288         * MenuStrip.cs: Version 0.1.
9289
9290         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
9291
9292 2006-10-30  Chris Toshok  <toshok@ximian.com>
9293
9294         [ fixes the oversized notify icon issue in bug #79745 ]
9295         
9296         * NotifyIcon.cs: scale the icon down to the size we're given by
9297         the XplatUI layer (this would be faster if we did it once instead
9298         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
9299         since it's never invoked.
9300
9301         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
9302         pixels high by default, so let's hardcode our systray icon to that
9303         size.  The SYSTEM_TRAY protocol should really have a way for
9304         client apps to query for the correct icon size.. but oh well.  A
9305         couple of patches to deal with the screwy client_window ==
9306         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
9307         instance, and also make sure we don't XSelectInput twice).
9308
9309 2006-10-30  Chris Toshok  <toshok@ximian.com>
9310
9311         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
9312         recreating forms.  Control recreation is the bane of my existence.
9313         Fix it in a way that keeps everyone happy.
9314
9315 2006-10-30  Chris Toshok  <toshok@ximian.com>
9316
9317         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
9318         just non-CHILD ones.  otherwise sometimes scrollbars end up with
9319         client_windows not being resized to the proper size (ReportBuilder
9320         shows this extremely well).
9321
9322 2006-10-30  Chris Toshok  <toshok@ximian.com>
9323
9324         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
9325         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
9326         showing up in the gnome taskbar.  Fixes bug #79790.
9327
9328 2006-10-30  Chris Toshok  <toshok@ximian.com>
9329
9330         * ApplicationContext.cs: guard against a NRE.
9331
9332         * Application.cs: null out the old MainForm for the context, so we
9333         don't try to use it again once it's disposed.  Fixes bug #79783.
9334
9335 2006-10-30  Chris Toshok  <toshok@ximian.com>
9336
9337         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
9338         BindingContext, set the data source directly, otherwise do the
9339         lazy approach - the actual ListManager will be created when we get
9340         a BindingContext. Fixes bug #79700.
9341
9342 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
9343
9344         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
9345           XplatUIX11.cs: Remove old 2 parameter SetVisible.
9346
9347         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
9348
9349 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
9350
9351         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
9352         of SetVisible that allows a window to be shown, but not activated.
9353         This is needed on Windows for MenuStrip, and can probably be used
9354         with MainMenu and ComboBox to fix the focus stealing issues on
9355         Windows.
9356
9357         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
9358
9359 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
9360
9361         * PictureBox.cs: Fix the output of the ToString method.
9362
9363 2006-10-29  Chris Toshok  <toshok@ximian.com>
9364
9365         * Control.cs (get_TopLevelControl): fix bug #79781.
9366
9367 2006-10-29  Chris Toshok  <toshok@ximian.com>
9368
9369         * ListControl.cs (set_DataSource): throw Exception here, not
9370         ArgumentException, to match MS behavior.
9371
9372 2006-10-29  Chris Toshok  <toshok@ximian.com>
9373
9374         * Form.cs: remove the try-catch's around calls to GetWindowState.
9375         We can just check the return value.
9376
9377         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
9378         Instead return -1.
9379
9380         * XplatUI.cs: Add note about additional return value for
9381         GetWindowState.
9382
9383 2006-10-29  Chris Toshok  <toshok@ximian.com>
9384
9385         * Control.cs (CreateHandle): when we create our handle, we also
9386         create the handles of our child controls.  Fixes one of the
9387         Control unit tests (CH11).
9388
9389 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
9390
9391         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
9392
9393 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
9394
9395         * ThemeClearlooks.cs: A little speedup.
9396
9397 2006-10-27  Chris Toshok  <toshok@ximian.com>
9398
9399         * Control.cs: implement Control.FromChildHandle in a way that
9400         matches the docs (and fixes the failed test.)
9401
9402 2006-10-27  Chris Toshok  <toshok@ximian.com>
9403
9404         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
9405         comments).
9406
9407         * DataGrid.cs: implement ResetForeColor such that the tests
9408         succeed.
9409         
9410 2006-10-27  Chris Toshok  <toshok@ximian.com>
9411
9412         * ToolBarButton.cs: setting text/tooltiptext to null results in it
9413         being set to "".  Fixes bug #79759.
9414
9415 2006-10-27  Jackson Harper  <jackson@ximian.com>
9416
9417         * TextControl.cs: We need to clear the entire selection area when
9418         setting the start, otherwise multiline selections are still
9419         visible.
9420
9421 2006-10-26  Chris Toshok  <toshok@ximian.com>
9422
9423         * PropertyGridView.cs: 
9424
9425         - ifdef all the code specific to the double
9426         buffer case, and provide some alternatives in the non-doublebuffer
9427         code, which makes heavy use of XplatUI.ScrollWindow to move things
9428         around without having to invalidate (and cause flicker).  There
9429         are still some drawing problems in the non-doublebuffered case, so
9430         DOUBLEBUFFER is defined by default.
9431
9432         - Fix the way dropdowns are handled.  now we explicitly watch for
9433         the events which might cause the dropdown to close, and break out
9434         of the nested event loop there.  This gets rid of all Capture
9435         code, at the expense of the Msg special casing.  Seems to work,
9436         though, and fixes bug #79743.
9437
9438 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
9439         * Control.cs: SetIsRecreating now recreates implicitly added
9440         child controls as well. Finally fixes #79629. The flag passed to 
9441         SetIsRecreating has also been removed since it wasn't used.
9442         
9443 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
9444
9445         * PageSetupDialog.cs: Clean some code, fix some bits, 
9446         add some checks, and add a printer sub-dialog.
9447
9448 2006-10-26  Chris Toshok  <toshok@ximian.com>
9449
9450         * PropertyGrid.cs: make set_SelectedObject call
9451         set_SelectedObjects, and move the duplicate logic to the
9452         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
9453
9454         * PropertyGridView.cs: hide the textbox when we get a
9455         SelectedObjectsChanged event.
9456
9457         Fixes bug #79748.
9458
9459 2006-10-26  Chris Toshok  <toshok@ximian.com>
9460
9461         * PropertyGridView.cs: deal with the type converter not supporting
9462         GetStandardValues() or GetStandardValues() returning null, which
9463         is does in the default case.  Fixes #79742.
9464
9465 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
9466
9467         * CheckedListBox.cs: nunit no longer crashes when selecting 
9468         Project/Edit menu option
9469         
9470 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
9471
9472         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
9473         is no menu selected. fixes #79739
9474
9475 2006-10-25  Chris Toshok  <toshok@ximian.com>
9476
9477         * PropertyGridView.cs: factor out the splitter invalidation code
9478         into the SplitterPercent setter, and for kicks implement the
9479         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
9480         amount in either direction.
9481
9482 2006-10-25  Chris Toshok  <toshok@ximian.com>
9483
9484         * PropertyGridView.cs: do some cleanup of the brush used to draw
9485         text - read only fields should be grayed out.  not sure how to do
9486         this with the textbox, though.  but the textbox's should also be
9487         readonly now at least.  Also, hide/show the textbox when resizing
9488         the control.
9489         
9490         * CursorConverter.cs: use System.Reflection when getting the
9491         properties of Cursors, as TypeDescriptor.GetProperties isn't
9492         returning static properties.
9493
9494 2006-10-25  Chris Toshok  <toshok@ximian.com>
9495
9496         * PropertyGridView.cs: factor out the up/down handling, and reuse
9497         it for page up/down.  also add End/Home support.
9498
9499 2006-10-25  Chris Toshok  <toshok@ximian.com>
9500
9501         * PropertyGridView.cs:
9502
9503         - ensure the selected grid item is visible in the scrolled area,
9504         fixes bug #79572.
9505
9506         - fix Keys.Down handling when you're on the last item in the
9507         propertygrid.
9508
9509 2006-10-25  Mike Kestner  <mkestner@novell.com>
9510
9511         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
9512         clicks too.  Fixes #79725.
9513
9514 2006-10-24  Chris Toshok  <toshok@ximian.com>
9515
9516         * PropertyGrid.cs: use property.Converter instead of
9517         TypeDescriptor.GetConverter(property.PropertyType), so we catch
9518         TypeConverters declared on the property as well as on the
9519         PropertyType.  Fixes bug #79678.
9520
9521 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
9522
9523         * MimeIcon.cs, Mime.cs:
9524           Fallback to the default platform handler if no shared mime info
9525           stuff exists (fixes #79693).
9526
9527 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
9528         * ContainerControl.cs: Incorrect contains check in ActiveControl 
9529         from previous fix (duh).
9530
9531 2006-10-20  Chris Toshok  <toshok@ximian.com>
9532
9533         * PropertyGridView.cs: the dropdown should be MIN(number of items
9534         in list, 15).  Fixes #79551.
9535
9536 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
9537         Fixes #79384, #79394, #79652, #79667
9538         * Application.cs: 
9539         
9540         - Modal windows are now destroyed in the proper order for windows
9541         
9542         * ContainerControl.cs:
9543         
9544         - ActiveControl setter has more conditions on when to return:
9545                 - if we're reselecting the active control, but it actually
9546                 didn't have focus (window hidden or some such), it runs
9547                 - if the active control being selected doesn't actually 
9548                 exist in the container, it returns
9549         
9550         * Form.cs
9551         
9552         - The ShowDialog now gets the current form as the owner when
9553         invoking without parameters, and correctly activates the owner 
9554         when returning
9555         
9556         * MessageBox.cs
9557         
9558         - MessageBox now catches the Escape key to exit
9559
9560 2006-10-20  Chris Toshok  <toshok@ximian.com>
9561
9562         * PropertyGridView.cs: fix a number of issues (bug #78565, and
9563         most of bug #79676):
9564
9565         - you can navigate around the property grid with the arrow keys.
9566
9567         - the dropdown is sized properly when the pg has a vertical
9568         scrollbar.
9569
9570         - fix the indentation for subentries, and properly select the
9571         entire label rect.
9572
9573         - fix the gray bar's drawing (only draw it to the last element,
9574         not for the height of the control.  Also make sure we draw that
9575         last horizontal grid line.
9576
9577         - use the same mechanism the datagrid uses wrt the editing textbox
9578         when scrolling/resizing/etc.  Namely, we hide it first, do the
9579         operation, then show it again (if it's still visible).
9580         
9581         - aggressively remove a lot of unnecessary refreshes (and also
9582         calls to Invalidate(). call more limited variants, and only redraw
9583         what we need.)
9584         
9585         * PropertyGrid.cs:
9586
9587         - when we're populating the merged collection, fill in the UI
9588         parent with either the passed in item, or the category item we
9589         create.
9590
9591         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
9592
9593         * GridItem.cs: drop some fully qualified names.
9594         
9595         * GridEntry.cs: add a "UIParent", which is basically the parent
9596         treenode.
9597
9598         * GridItemCollection.cs: add an IndexOf method.
9599
9600 2006-10-20  Mike Kestner  <mkestner@novell.com>
9601
9602         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
9603         a working win32 NC invalidation mechanism, we can't invalidate
9604         menus.  [Fixes #79705]
9605
9606 2006-10-20  Mike Kestner  <mkestner@novell.com>
9607
9608         * ListBox.cs : don't update the VScrollbar if the list is empty,
9609         just hide it.  [Fixes #79692]
9610
9611 2006-10-20  Jackson Harper  <jackson@ximian.com>
9612
9613         * RichTextBox.cs: Handle some special chars better, and don't skip
9614         the entire group when we encounter a special char that we don't
9615         handle correctly.
9616
9617 2006-10-18  Chris Toshok  <toshok@ximian.com>
9618
9619         * PropertyGridView.cs: address a number of issues from bug #79676,
9620         mostly of the cosmetic variety.
9621
9622         - The highlight rectangle for indented items not extends all the
9623         way to the left.
9624
9625         - Indented items aren't indented so much.
9626
9627         - the dropdown is properly sized width-wise if the pg has a
9628         vertical scrollbar.
9629
9630 2006-10-18  Chris Toshok  <toshok@ximian.com>
9631
9632         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
9633         systray stuff is rather convoluted to begin with.
9634
9635         systray icons are a single window for some reason (that I haven't
9636         figured out yet), and for them, client_window == whole_window.
9637         Given the way the tests are structured elsewhere to determine
9638         which paints are pending (client vs. nc), that situation will
9639         always yield PAINT, not NCPAINT.  So, if we have a pending
9640         nc_expose and no pending expose, remove the hwnd from the paint
9641         queue, and also set nc_expose_pending to false, to keep us from
9642         blocking further expose's adding the hwnd to the paint queue.
9643
9644         phew.  like i said, a rather convoluted change.  Fixes the
9645         notifyicon repaint issues in bug #79645.
9646
9647 2006-10-18  Chris Toshok  <toshok@ximian.com>
9648
9649         * Form.cs: when getting the backcolor of the form, don't get
9650         base.BackColor, as this allows parents to influence the background
9651         color.  This breaks mdi forms.  Instead, if the background_color
9652         is empty, return the default.
9653
9654 2006-10-18  Chris Toshok  <toshok@ximian.com>
9655
9656         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
9657         to being private instead of internal static.
9658
9659         * Control.cs: remove all the stupid ParentWaitingOnRecreation
9660         crap, it wasn't working for more deeply nested controls anyway,
9661         and we already have the is_recreating flag - use that instead.
9662         Before calling DestroyHandle in RecreateHandle, recurse through
9663         the control tree setting it to true.  this returns the recreate
9664         code to much of its original simplicity, while now guaranteeing we
9665         actually recreate everything we're supposed to.  This change gets
9666         fyireporting actually showing mdi children.
9667
9668 2006-10-17  Chris Toshok  <toshok@ximian.com>
9669
9670         * Form.cs: remove some debug spew, and collapse some duplicate
9671         code at the end of SetClientSizeCore.
9672
9673         * XplatUIX11.cs: 
9674         - add some more debug spew here too wrt Destroy handling.
9675         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
9676         in Control's handling of WM_DESTROY.
9677         - Remove the handling of zombie window DestroyNotifies from the
9678         event loop - we don't need it.  Now the only DestroyNotifies we
9679         actually handle are ones generated by X.
9680         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
9681         match gtk's (functioning) handling of this. This keep metacity
9682         from leaving droppings in the form of wm borders with no window
9683         contents all over the place.
9684
9685         * Control.cs:
9686         - add a bunch of debug spew wrt control recreation.
9687         - fix a bug where we weren't tracking Visible properly on
9688         recreated hwnds.
9689         - fixed the WM_PAINT double buffer handling to support re-entrant
9690         calls (yes, i know it's gross, but it's happening to us).
9691
9692 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
9693         * ThemeWin32Classic.cs: changed drawing of selected days
9694         to make them look better.
9695
9696 2006-10-16  Chris Toshok  <toshok@ximian.com>
9697
9698         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
9699         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
9700
9701         * XplatUIX11.cs: move away from using hwnd.client_dc and
9702         hwnd.non_client_dc and on to a stack of dc's (and in window's
9703         case, PAINTSTRUCT's), so we can deal with nested Paint calls
9704         without puking or not disposing of Graphics objects.
9705
9706         * XplatUIOSX.cs: same.
9707
9708         * XplatUIWin32.cs: same.
9709
9710 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
9711
9712         * FileDialog.cs: Don't call on_directory_changed inside
9713           OnSelectedIndexChanged (it changes the SelectedIndex too).
9714           Instead move it to OnSelectionChangeCommitted.
9715
9716 2006-10-13  Chris Toshok  <toshok@ximian.com>
9717
9718         * XplatUIX11.cs: more Destroy work.  the current code does the
9719         following things, in order:
9720
9721         1. Enumerates all handles of all controls at or below the one
9722         being destroyed, in pre-order.  As it is doing this, it marks the
9723         handles as zombie and clears all references to them.
9724         
9725         2. calls XDestroyWindow on the window passed in.
9726
9727         3. SendMessage's WM_DESTROY to all he handles in the accumulated
9728         list.
9729
9730 2006-10-13  Chris Toshok  <toshok@ximian.com>
9731
9732         * XplatUIX11.cs: set hwnd.zombie to true before calling
9733         SendMessage (WM_DESTROY).  this keeps us from marking the new
9734         window a zombie, and also keeps us from calling sendmessage at
9735         all.
9736
9737 2006-10-13  Jackson Harper  <jackson@ximian.com>
9738
9739         * TextControl.cs: Do not show the caret and selection at the same
9740         time.  Reduces ugliness by 35%.
9741
9742 2006-10-13  Chris Toshok  <toshok@ximian.com>
9743
9744         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
9745         zombie after we do the recursive call, so we actually do call
9746         SendMessage on the children controls.
9747         (GetMessage): if we find a pending paint event for a zombie hwnd,
9748         remove the hwnd from the paint queue, or else it will always be
9749         there (and we'll effectively loop infinitely)
9750
9751 2006-10-13  Mike Kestner  <mkestner@novell.com>
9752
9753         * MenuItem.cs : add Selected format under keynav too.
9754         Fixes #79528.
9755
9756 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
9757
9758         * PropertyGrid.cs: Fixed some NRE's and small difference between our
9759         implementation and that of MS.
9760
9761 2006-10-13  Chris Toshok  <toshok@ximian.com>
9762
9763         * Control.cs (OnInvalidated) only futz with the invalid_region if
9764         the control is double buffered.  this fixes the apparent hang in
9765         the ListView unit tests.  Someone needs to make the
9766         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
9767
9768 2006-10-13  Chris Toshok  <toshok@ximian.com>
9769
9770         * PropertyGridView.cs:
9771
9772         - do a little refactoring so that only one place calls
9773         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
9774         else call that.  Also make it Refresh, since there are redraw bugs
9775         otherwise (we should take a look at that...)
9776
9777         - do a little more refactoring work to share the body of code
9778         involved with the drop down.  it was duplicated in the code
9779         dealing with the listbox handling and in the code dealing with the
9780         UITypeEditors.
9781
9782         - add a Capture to the dropdown form's control once it's
9783         displayed, and add a MouseDown handler that checks to make sure
9784         the position is inside the control.  If it's not, close the
9785         dropdown.  This fixes #78190.
9786
9787         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
9788         if the value is different than the initial value.
9789         
9790 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
9791
9792         * Control.cs: see #78650
9793         - Fixed GetNextControl for several cases:
9794                 - Changed FindFlatForward to return 
9795                 correct sibling control when more than one
9796                 control has same TabIndex as the currently 
9797                 focused one.
9798                 - Changed FindFlatBackward to loop children
9799                 from last to first and apply same logic as in
9800                 FindFlatForward
9801                 - Changed FindControlForward to search for
9802                 children when control is not a container
9803                 but has children, or search for siblings if
9804                 control is a container...
9805                 - Changed FindControlBackward   to continue
9806                 searching for child controls when hitting 
9807                 Panel-like parents
9808                 
9809         - Fixed Focus method to update ActiveControl
9810         (FocusTest.FocusSetsActive failure)
9811         
9812         * TabControl.cs:
9813         - Focus rectangle now refreshes when gaining
9814         or losing focus
9815         - Removed grab for Tab key on IsInputKey that 
9816         was keeping tab navigation from working (#78650)
9817
9818 2006-10-13  Chris Toshok  <toshok@ximian.com>
9819
9820         * PropertyGridView.cs:
9821         - Rewrite SetPropertyValue to loop over SelectedGridItem's
9822         SelectedObjects.
9823
9824         - Deal with GridItem.Value == null a few places.
9825
9826         * PropertyGrid.cs: 
9827         - replace the PopulateGridItemCollection with a pair of methods
9828         which compute the intersection of all the properties in the
9829         SelectedObjects array.  Fixes #79615.
9830
9831         - Throw ArgumentException from set_SelectedObjects if there's a
9832         null in the array.
9833
9834         - Add GetTarget method which can be used to traverse up the
9835         GridItem.Parent chain.  It depends on the assumption that
9836         selected_objects for different GridEntries are always in the same
9837         order (a safe assumption).  Use this method and loop over all the
9838         selected objects in the entry when calling RemoveValueChanged and
9839         AddValueChanged.
9840         
9841         * GridEntry.cs: Make this handle multiple selected objects.
9842         .Value returns null if not all the selected objects share the same
9843         value.
9844
9845 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
9846         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
9847           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
9848           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
9849           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
9850           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
9851         add additional functionality.
9852
9853 2006-10-12  Mike Kestner  <mkestner@novell.com>
9854
9855         * ErrorProvider.cs : new ToolTipWindow ctor sig.
9856         * HelpProvider.cs : new ToolTipWindow ctor sig.
9857         * ToolTip.cs : remove ToolTip param from Window sig since it is
9858         not used.
9859         * ToolBar.cs : add tooltip support.  Fixes #79565.
9860
9861 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
9862
9863         * ComboBox.cs: move the events in set_SelectedIndex to 
9864         after the call to HighlightIndex in order to avoid 
9865         possible recursion and subsequent problems with the call
9866         to HighlightIndex and include a range check in 
9867         set_HighlightIndex. Fixes #79588
9868         
9869 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
9870
9871         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
9872         to ui thread's settings instead of sunday. 
9873         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
9874
9875 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
9876
9877         * DateTimePicker.cs
9878         * MonthCalendar.cs
9879         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
9880         and implement missing functionality (selecting different parts 
9881         of the date and edit them individually with the keyboard).
9882         
9883 2006-10-11  Chris Toshok  <toshok@ximian.com>
9884
9885         * Control.cs (OnInvalidated): fix NRE relating to last change.
9886
9887 2006-10-11  Chris Toshok  <toshok@ximian.com>
9888
9889         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
9890         atoms in _NET_WM_STATE here if the window is maximized.  We need
9891         to do this because we're *replacing* the existing _NET_WM_STATE
9892         property, so those atoms will be lost otherwise, and any further
9893         call to GetWindowState will return Normal for a window which is
9894         actually maximized.  Fixes #79338.
9895
9896 2006-10-11  Jackson Harper  <jackson@ximian.com>
9897
9898         * TextControl.cs: Special case for setting selection end to
9899         selection start, we basically kill the anchor.
9900         - some todo comments.
9901
9902 2006-10-11  Chris Toshok  <toshok@ximian.com>
9903
9904         * Control.cs: switch to using an "invalid_region" to track which
9905         parts of the image buffer need updating.  This is more code than
9906         the simple fix from r66532.  That version just attempted to always
9907         fill the entire buffer on redraw, which turns out to be
9908         inefficient when invalidating small rectangles.  This version
9909         simply adds the invalid rectangle to the invalid region.  When we
9910         get any WM_PAINT message we see if it can be filled using the
9911         image buffer, and if it can't (if the paint event's clip rectangle
9912         is visible in the invalid region) we first fill the image buffer.
9913         So, the image buffer is still a cache, we just fill it lazily.
9914
9915         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
9916         need it any longer.
9917
9918 2006-10-11  Chris Toshok  <toshok@ximian.com>
9919
9920         * XplatUIX11.cs (SetWindowPos): we need to update both position as
9921         well as size after calling XMoveResizeWindow.  This keeps us from
9922         ignoring future SetWindowPos calls.  Fixes the disappearing
9923         DateTimePicker in the ToolBarDockExample from bug #72499.
9924
9925 2006-10-11  Chris Toshok  <toshok@ximian.com>
9926
9927         * TextBoxBase.cs: reorder things a bit when it comes to
9928         resizing-causing-recalculation.  we were recalculating the
9929         document when our position was changed, which shouldn't happen.
9930         We only care about size changes.  Clear up some more redundant
9931         recalculation calls while I'm at it.  This makes the toolbar dock
9932         example snappy when you're just dragging toolbars around (since it
9933         causes a relayout whenever you move one.)
9934
9935 2006-10-11  Chris Toshok  <toshok@ximian.com>
9936
9937         * ToolBarButton.cs (get_Rectangle): this only returns
9938         Rectangle.Empty if Visible == false, or Parent == null.
9939         Parent.Visible doesn't matter.
9940
9941 2006-10-10  Chris Toshok  <toshok@ximian.com>
9942
9943         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
9944         by .net 1.1, so switch to an internal method instead.
9945
9946 2006-10-10  Chris Toshok  <toshok@ximian.com>
9947
9948         * Control.cs (WM_PAINT): when a control is double buffered we draw
9949         initially to the ImageBuffer and then copy from there.  But when a
9950         parent control which has child controls is double buffered, the
9951         initial drawing doesn't encompass the entire ClientRectangle of
9952         the parent control, so we end up with uninitialized bits (this is
9953         easily seen by dragging the top toolbar in
9954         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
9955         manually set the ClipRectangle of the paint_event (only the one we
9956         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
9957         of the nastiness in bug #72499.
9958
9959         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
9960         which we use in Control.cs's WM_PAINT handling.
9961
9962 2006-10-10  Jackson Harper  <jackson@ximian.com>
9963
9964         * TextBoxBase.cs: Finish off the autoscrolling stuff.
9965
9966 2006-10-10  Chris Toshok  <toshok@ximian.com>
9967
9968         * Cursor.cs: Apply a slightly different patch to the one suggested
9969         in #79609.
9970
9971 2006-10-10  Jackson Harper  <jackson@ximian.com>
9972
9973         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
9974         not the parent form.
9975         * TextControl.cs: use difference in old line count vs new count to
9976         calculate how many lines were added, this takes into account soft
9977         line breaks properly.
9978
9979 2006-10-10  Chris Toshok  <toshok@ximian.com>
9980
9981         * LinkLabel.cs: don't call MeasureCharacterRanges against a
9982         rectangle located at 0,0 and the size of the text.  Use
9983         ClientRectangle instead.  This fixes rendering of non-left aligned
9984         link labels.
9985
9986 2006-10-10  Jackson Harper  <jackson@ximian.com>
9987
9988         * TextBoxBase.cs: When we set the selection start position the
9989         caret.
9990         * TextControl.cs: Need to update the caret when we decrement it to
9991         zero.
9992         - Make sure that the selection_visible flag gets reset to false if
9993         the selection isn't visible.  Before this you could get it set to
9994         visible by changing the selection start, then changing the end to
9995         equal the start.
9996
9997 2006-10-09  Jackson Harper  <jackson@ximian.com>
9998
9999         * TreeView.cs: Don't update scrollbars when we aren't visible.
10000         * TreeNodeCollection.cs: Only need to update scrollbars if being
10001         added to an expanded visible node or the root node.
10002
10003 2006-10-09  Chris Toshok  <toshok@ximian.com>
10004
10005         * XplatUIX11.cs (SendMessage): fix NRE.
10006
10007 2006-10-09  Jackson Harper  <jackson@ximian.com>
10008
10009         * TextBoxBase.cs: Implement horizontal autoscrolling.
10010         * TextControl.cs: Add a movement types that allows moving forward
10011         and backwards without wrapping.
10012
10013 2006-10-09  Mike Kestner  <mkestner@novell.com>
10014
10015         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
10016         with focus "expansion" of labels.  Fixes #79532 and then some.
10017         * ThemeWin32Classic.cs : add LineLimit to ListView label format
10018         when wrapping.
10019
10020 2006-10-09  Jackson Harper  <jackson@ximian.com>
10021
10022         * TextBoxBase.cs: Set the default max values to MaxValue since
10023         we use the scrollbar for autoscrolling and the default value is
10024         100.  If we don't do this the caret won't keep up with typing
10025         after about 18 characters.
10026         * TextControl.cs: Make sure the selection is offset by the
10027         viewport x.  This fixes selection when using auto scrolling.
10028
10029 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
10030         
10031         * Form.cs: The active control should be selected after the 
10032         OnLoad so that any child control initialization that affects
10033         the selection is done. Fixes #79406
10034
10035 2006-10-06  Chris Toshok  <toshok@ximian.com>
10036
10037         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
10038         to have no evil effects.
10039
10040         - Stop selecting StructureNotifyMask on non-toplevel windows.
10041
10042           The only way children should be resized is by using the SWF api,
10043           and we already send WM_WINDOWPOSCHANGED messages in those cases.
10044           Toplevel windows can be interacted with via the window manager,
10045           and so we keep the input mask there.
10046
10047           The other event StructureNotifyMask gives us (that we care
10048           about) is DestroyNotify.  The code is already structured such
10049           that it assumes we won't be getting a DestroyNotify event for
10050           the window we pass to XDestroyWindow (which is what
10051           StructureNotifyMask is supposed to guarantee.)  So, that code
10052           shouldn't be affected by this either.
10053
10054         - Stop selecting VisibilityChangeMask altogether.
10055
10056           We weren't doing anything with the resulting events anyway.
10057         
10058         This vastly reduces the number of X requests and events we see
10059         when resizing/laying out a large ui.
10060
10061 2006-10-06  Chris Toshok  <toshok@ximian.com>
10062
10063         * ScrollableControl.cs (DisplayRectangle): we need to take into
10064         account the DockPadding regardless of whether or not auto_scroll
10065         == true.  rework this slightly to this effect, and fix bug #79606,
10066         and part of #72499 (you can now see the drag handles and drag
10067         toolbars around).
10068
10069 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
10070
10071         * ListViewItem.cs: Collections of selected and checked items are now
10072         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
10073         we mark the collection "dirty".
10074         * ListView.cs: Marked collections readonly. Modified UpdateSelection
10075         to only clear SelectedItems when a new item is selected and MultiSelect
10076         is enabled. CheckedItems and SelectedItems now subscribe to Changed
10077         event of ListViewItemCollection, and mark its list dirty whenever
10078         that event is fire. This allows us to return selected/checked items 
10079         in the same order as they are in the Items collection. This matches
10080         the MS behavior.
10081
10082 2006-10-06  Chris Toshok  <toshok@ximian.com>
10083
10084         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
10085         right mouse clicks.  Fixes bug #79593.
10086
10087 2006-10-06  Chris Toshok  <toshok@ximian.com>
10088
10089         * Splitter.cs: doh, fix splitters that don't want to cancel the
10090         movement when you drag them.  Also, impose the limits on the
10091         values we send to the SplitterMovingEvent.  Fixes #79598.
10092
10093 2006-10-06  Jackson Harper  <jackson@ximian.com>
10094
10095         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
10096         since we use this for auto scrolling also.
10097
10098 2006-10-05  Chris Toshok  <toshok@ximian.com>
10099
10100         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
10101         beginning to think that most datagrid column types don't need this
10102         method.  Fixes bug #79392.
10103
10104 2006-10-05  Chris Toshok  <toshok@ximian.com>
10105
10106         * DataGrid.cs: move back to a more lazy scheme for creating the
10107         CurrencyManager, so we aren't updating it every time you set
10108         either DataSource or DataMember.  Also, don't call
10109         RecreateDataGridRows if the currency manager hasn't changed.
10110
10111 2006-10-05  Chris Toshok  <toshok@ximian.com>
10112
10113         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
10114         emitted, SelectedIndex should already be updated.  Fixes bug
10115         #78929.
10116
10117 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
10118
10119         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
10120           ToolStripTextBox.cs: Initial commit.
10121         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
10122
10123 2006-10-05  Jackson Harper  <jackson@ximian.com>
10124
10125         * TabControl.cs: We need to invalidate the tab control area when
10126         new ones are added (duh).
10127
10128 2006-10-03  Chris Toshok  <toshok@ximian.com>
10129
10130         * Form.cs (ProcessDialogKey): if the focused control is in this
10131         form and is a button, call its PerformClick method here.  Fixes
10132         #79534.
10133
10134 2006-10-04  Jackson Harper  <jackson@ximian.com>
10135
10136         * TabPage.cs: Ignore setting of Visible, and add an internal
10137         method for setting the controls visibility.  TabPage's Visible
10138         property is a little strange on MS, this seems to make us
10139         compatible, and fixes cases where people set all the tab pages to
10140         visible.
10141         * TabControl.cs: Use the new internal setting on tab pages
10142         visibility.
10143
10144 2006-10-03  Mike Kestner  <mkestner@novell.com>
10145
10146         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
10147
10148 2006-10-03  Mike Kestner  <mkestner@novell.com>
10149
10150         * ListView.cs : use is_visible instead of Visible to check if 
10151         scrollbars should be placed/sized.  Also some max_wrap_width
10152         love for LargeIcon view.  [Fixes #79533]
10153
10154 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
10155
10156         * TextControl.cs :
10157           Make set_TextAlign() do actually update the align. Fixed #78403.
10158
10159 2006-10-03  Chris Toshok  <toshok@ximian.com>
10160
10161         * DataGrid.cs: fix a crash when switching datasources if the
10162         vertical scrollbar is at someplace other than Value = 0.  Also,
10163         reduce the number of recalculation passes we do in SetDataSource
10164         from 2 to 1.
10165
10166 2006-10-03  Jackson Harper  <jackson@ximian.com>
10167
10168         * TextBoxBase.cs: Move the if value the same bail check up, we
10169         don't want to empty the document if it is already empty, this
10170         seems to severly mess up the caret.  TODO: I should probably fix
10171         the empty statement to update teh caret somehow.
10172
10173 2006-10-03  Chris Toshok  <toshok@ximian.com>
10174
10175         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
10176         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
10177         reflection, an internal row type, properties on said type, etc.)
10178         will work with our datagrid.  Fixes #79531.
10179
10180 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
10181
10182         * FileDialog.cs: Don't crash if a path is not accessible
10183           (System.UnauthorizedAccessException). Fixes #79569.
10184         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
10185           a ':' too. Return unknown icon for those paths/files.
10186
10187 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
10188
10189         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
10190         GetContainerControl returns null.
10191
10192 2006-10-02  Chris Toshok  <toshok@ximian.com>
10193
10194         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
10195         call to XGetWindowAttributes instead of "handle".  fixes an X
10196         error using notifyicon after the NotifyIconWindow to Form base
10197         class switch.
10198
10199 2006-10-02  Chris Toshok  <toshok@ximian.com>
10200
10201         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
10202         server grab and looping we need to do to get down to the most
10203         deeply nested child window.
10204         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
10205         QueryPointer again after the WarpPointer so we can generate a
10206         proper (fake) MotionNotify event to be enqueued in the destination
10207         window's queue.
10208         (GetCursorPos): call QueryPointer.
10209
10210         Fixes #79556.
10211
10212 2006-10-02  Jackson Harper  <jackson@ximian.com>
10213
10214         * NotifyIcon.cs: Derive the notify icon from a form, so things
10215         like FindForm work on it.
10216         - Swallow the WM_CONTEXTMENU message, since that is generated on
10217         mouse down, and context menu is a mouse up kinda guy.  I believe
10218         the correct fix here is probably to make the notify icon entirely
10219         NC area, but this seems to work fine for anyone not manipulating
10220         WndProc.
10221
10222 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
10223
10224         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
10225           ToolStripItemCollection.cs, ToolStripLabel.cs,
10226           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
10227           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
10228           Initial implementation.
10229         * TextRenderer.cs: Provide padding to MeasureText.
10230
10231 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
10232
10233         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
10234         of ButtonBaseAccessibleObject. Fix bug #79552.
10235
10236 2006-10-02  Jackson Harper  <jackson@ximian.com>
10237
10238         * MdiWindowManager.cs: When maximizing use the containers client
10239         rect, not it's bounds, so nc area is accounted correctly.
10240         - Use the parent form's size for the menu position, since the
10241         client isn't always the full form size.
10242
10243 2006-10-01  Chris Toshok  <toshok@ximian.com>
10244
10245         * ScrollableControl.cs: make sure neither right_edge or
10246         bottom_edge are < 0, since they're used as LargeChange for the
10247         horiz/vert scrollbars respectively.  Fixes #79539.
10248
10249 2006-10-01  Chris Toshok  <toshok@ximian.com>
10250
10251         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
10252         the xplatuix11 code can cause us to destroy/recreate our handle.
10253
10254         * XplatUIX11.cs
10255         (SystrayAdd):
10256         - this code can be invoked many times for the same Hwnd.  Make
10257           sure we only destroy the client window once (the first time this
10258           method is called).  This fixes bug #79544.
10259         - Remove the call to the improperly bound XSync.  why we had two
10260           bindings to this, I will never know, but this call resulted in
10261           events being discarded from the queue(!).
10262         - correct a misunderstanding of _XEMBED_INFO - the second atom is
10263           not our current state but the state we wish to be in.  So, 0 if
10264           we don't want to be mapped.  Change it to 1.
10265         (SystrayRemove): The XEMBED spec makes mention of the fact that
10266         gtk doesn't support the reparent of client windows away from the
10267         embedder.  Looking at gtksocket-x11.c seems to agree with this.
10268         The only avenue we have for removing systray icons is to destroy
10269         them.  We don't want the handle to go away for good, though, so
10270         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
10271         #79545.
10272         
10273 2006-10-01  Chris Toshok  <toshok@ximian.com>
10274
10275         * Form.cs (WndProc): inline the native_enabled variable usage into
10276         the cases in which it's used.  Fixes #79536.
10277
10278 2006-09-29  Mike Kestner  <mkestner@novell.com>
10279
10280         * ListView.cs : toggle the selection state for ctrl clicks in 
10281         multiselect mode. [Fixes #79417]
10282
10283 2006-09-29  Mike Kestner  <mkestner@novell.com>
10284
10285         * ListView.cs : kill CanMultiSelect and refactor the selection
10286         code to support multiselection in the absence of mod keys. Steal
10287         arrow/home/end keys by overriding InternalPreProcessMessage to
10288         restore regressed keynav behavior.
10289         [Fixes #79416]
10290
10291 2006-09-29  Jackson Harper  <jackson@ximian.com>
10292
10293         * MdiClient.cs: Repaint the titlebars when the active window is
10294         changed.
10295
10296 2006-09-29  Chris Toshok  <toshok@ximian.com>
10297
10298         * Application.cs: when entering a runloop with a modal, make sure
10299         the hwnd is enabled.  Fixes #79480.
10300
10301 2006-09-29  Chris Toshok  <toshok@ximian.com>
10302
10303         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
10304         when ListManager.CanAddRows == false, bump us back one.
10305
10306         * DataGridColumnStyle.cs (ParentReadOnly): remove the
10307         listmanager.CanAddRows check.  This makes ArrayLists uneditable
10308         using a datagrid, which is not right.
10309         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
10310         is an IEditable, but call property_descriptor.SetValue regardless.
10311         fixes #79435.
10312
10313 2006-09-29  Chris Toshok  <toshok@ximian.com>
10314
10315         * DataGridBoolColumn.cs: we need to test equality in the face of
10316         possible null values (as is the case with the default NullValue).
10317         This patch keeps us from crashing in that case.
10318
10319 2006-09-29  Jackson Harper  <jackson@ximian.com>
10320
10321         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
10322         here, since it will get called for every node collection in the
10323         tree. This is now done in the treeview once the sorting is
10324         finished.
10325         * TreeView.cs: Recalculate the visible order, and update the
10326         scrollbars after sorting, set the top nope to the root so that the
10327         recalc actually works.
10328
10329 2006-09-29  Chris Toshok  <toshok@ximian.com>
10330
10331         * LinkLabel.cs: more handling of the default link collection in
10332         the face of LinkArea manipulation.  The default link collection
10333         contains 1 element (start=0,length=-1).  If the user sets LinkArea
10334         to anything and the links collection is the default, clear it.
10335         Then only add the link if its nonempty.  Fixes #79518.
10336
10337 2006-09-29  Chris Toshok  <toshok@ximian.com>
10338
10339         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
10340         piece correctly when we hit a '\n'.  Fixes #79517.
10341
10342 2006-09-29  Chris Toshok  <toshok@ximian.com>
10343
10344         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
10345         change the binding of gdk_init_check to take two IntPtr's, and
10346         pass IntPtr.Zero for both of them.  Fixes #79520.
10347
10348 2006-09-29  Mike Kestner  <mkestner@novell.com>
10349
10350         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
10351         [Fixes #78779]
10352
10353 2006-09-28  Jackson Harper  <jackson@ximian.com>
10354
10355         * XplatUIX11.cs: When translating NC messages make sure we go from
10356         whole window to screen, not client window to screen.
10357         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
10358         method doesn't exist
10359         - Skip over controls that aren't forms when arranging.
10360
10361 2006-09-28  Jackson Harper  <jackson@ximian.com>
10362
10363         * XplatUIWin32.cs: Clip the rect to the parent window.
10364         * XplatUIStructs.cs: Add clipping modes struct.
10365         * InternalWindowManager.cs: New private method that factors title
10366         bar heights in when calculating the pos of an NC mouse message.
10367         - Use SendMessage to force a paint when the form's size is changed
10368         instead of painting the decorations immediately.
10369         - Don't let the NC button click messages get to DefWndProc,
10370         because they will attempt to handle windowing themself, and this
10371         messes up z-order (it will put them in front of the scrollbars).
10372         * XplatUIX11.cs: Make sure that we don't reset window managers if
10373         we already have one (ie the window is an MDI window).
10374
10375 2006-09-28  Chris Toshok  <toshok@ximian.com>
10376
10377         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
10378         menu code really needs going over.
10379
10380 2006-09-27  Chris Toshok  <toshok@ximian.com>
10381
10382         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
10383         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
10384         window is maximizable.  So, we need to make sure that even if we
10385         clear the border/wm frame of those functions, they're still
10386         available (basically, we remove the decoration without removing
10387         the function).  Half the fix for #79338.
10388
10389 2006-09-27  Chris Toshok  <toshok@ximian.com>
10390
10391         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
10392         Fixes bug #79515.
10393
10394 2006-09-27  Chris Toshok  <toshok@ximian.com>
10395
10396         * Splitter.cs: reorder things a bit so that we don't actually
10397         draw/move the splitter until after calling OnSplitterMoving.  This
10398         lets users cancel/disallow the movement by explicitly setting
10399         event.SplitX/SplitY.  Fixes #79372.
10400
10401 2006-09-27  Jackson Harper  <jackson@ximian.com>
10402
10403         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
10404         because it is most likely on a window being destroyed, and that
10405         will give us an X11 error.
10406
10407 2006-09-27  Chris Toshok  <toshok@ximian.com>
10408
10409         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
10410         the dropdown button now toggles between showing and hiding the
10411         dropdown.  Also, get rid of dropdown_form_showing and just use
10412         dropdown_form.Visible.  We still don't do a grab, but I'll leave
10413         that part to someone who has handled Capture-fu before.
10414
10415 2006-09-27  Chris Toshok  <toshok@ximian.com>
10416
10417         * DataGrid.cs: return false if alt isn't pressed when '0' is
10418         pressed.  this keeps the '0' key from being swallowed, and fixes
10419         bug #79350.
10420
10421 2006-09-27  Chris Toshok  <toshok@ximian.com>
10422
10423         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
10424         Calling Refresh (in response to a scrollbar event) screws up the
10425         scrollbar painting.  Fixes bug #78923.
10426
10427 2006-09-27  Chris Toshok  <toshok@ximian.com>
10428
10429         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
10430         then insert into hashtable" blocks threadsafe.
10431
10432 2006-09-27  Chris Toshok  <toshok@ximian.com>
10433
10434         * MessageBox.cs (CreateParams): the styles should be |'ed with our
10435         baseclass's, since otherwise the
10436         ControlBox/MinimizeBox/MaximizeBox assignments above have no
10437         effect.  This gets the close button back in messageboxes.
10438
10439 2006-09-27  Chris Toshok  <toshok@ximian.com>
10440
10441         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
10442         flag, not just != 0.  this makes flags that are actually multiple
10443         bits (like WS_CAPTION) work.  fixes bug #79508.
10444
10445 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
10446
10447         * PageSetupDialog.cs: add support for getting and settings the 
10448         paper size, source and orientation.
10449
10450 2006-09-26  Chris Toshok  <toshok@ximian.com>
10451
10452         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
10453         and caption == "", we need to remove the resize handles as well as
10454         the title bar.
10455
10456         * Control.cs (set_Text): turns out that setting Text on a form
10457         should change the WM styles on the window, since if ControlBox ==
10458         false, the only way to get a window border is to have a non-""
10459         Text property.  check winforms/forms/text.cs for an example.  so,
10460         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
10461         update both window styles and title.  This fixes a lot of dialogs
10462         (including the preferences dialog in MonoCalendar.)
10463
10464 2006-09-26  Chris Toshok  <toshok@ximian.com>
10465
10466         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
10467         control isn't a Form), call Win32ShowWindow to hide the window,
10468         but don't update the control Visible property.  When we reparent
10469         back to a parent control, call SetVisible in order for the
10470         window's visibility to be reinstated.
10471
10472         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
10473         the FosterParent.
10474
10475         * Control.cs (ControlCollection.Remove): remove that value.Hide()
10476         call for good, since it breaks MonoCalendar (and other things I'm
10477         sure.) Also, set all_controls to null *after* the owner calls,
10478         which end up regenerating it.
10479         (ChangeParent): allow new_parent to be == null, passing
10480         IntPtr.Zero down to XplatUI.
10481
10482         this fixes #79294 the right way.
10483
10484 2006-09-26  Mike Kestner  <mkestner@novell.com>
10485
10486         * GridEntry.cs : internal SetParent method.
10487         * PropertyGrid.cs : attach to property changed on the proper
10488         target if we have a hierarchical grid with subobjects. Setup
10489         GridItem.Parent for hierarchical items.
10490         * PropertyGridView.cs : Set value on the correct target for
10491         hierarchical grids. [Fixes #78903]
10492
10493 2006-09-26  Chris Toshok  <toshok@ximian.com>
10494
10495         * Control.cs (ChildNeedsRecreating): this should return true if
10496         either we're being recreated and the child is in our list, or our
10497         parent is waiting for our recreation.
10498
10499 2006-09-26  Chris Toshok  <toshok@ximian.com>
10500
10501         * Control.cs (ControlCollection.Remove): reinstate the
10502         value.Hide() call as suggested in bug #79294.
10503
10504 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
10505
10506         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
10507         coordinates (versus a relative move).
10508
10509 2006-09-26  Chris Toshok  <toshok@ximian.com>
10510
10511         * Control.cs: rework child recreation a little bit.  It turns out
10512         that we race between the DestroyNotify the WM_DESTROY message.  If
10513         the parent gets its DestroyNotify before the child gets the
10514         WM_DESTROY message, the child ends up not recreating (since the
10515         parent finishes its recreation on DestroyNotify, and the child
10516         checks ParentIsRecreating.)
10517
10518         So, instead we store off a list of all the child controls which
10519         need to be recreated when the parent control starts to recreate
10520         itself.  Then, when child controls get their WM_DESTROY message we
10521         check to see if they're in the parent's pending recreation list,
10522         and if so, we recreate.  This removes all dependency on ordering
10523         from the code and fixes the initial MonoCalendar upgrade dialog.
10524         
10525 2006-09-26  Jackson Harper  <jackson@ximian.com>
10526
10527         * TextControl.cs: Use the Line to get the length of the line,
10528         since soft line breaks can change the end line.
10529
10530 2006-09-26  Chris Toshok  <toshok@ximian.com>
10531
10532         * Control.cs (ControlCollection.AddImplicit): don't add the
10533         control again if it's already in one of our lists.  This keeps us
10534         from adding controls over and over again for comboboxes when their
10535         handle gets recreated (as the combobox adds implicit controls in
10536         OnHandleCreated).  Fixes the X11 errors in bug #79480.
10537
10538 2006-09-26  Jackson Harper  <jackson@ximian.com>
10539
10540         * TextControl.cs: When deleting characters make sure that any
10541         orphaned zero lengthed tags get deleted.
10542         - Fix ToString for zero lengthed tags.
10543
10544 2006-09-25  Jackson Harper  <jackson@ximian.com>
10545
10546         * TextControl.cs: When getting a tag at the location there can be
10547         multiple tags at the same spot, these are 0-lengthed tags that
10548         appear when extra formatting has been stuck in a location.  We
10549         need to pull out the last of these 0 lengthed tags.
10550
10551 2006-09-25  Jackson Harper  <jackson@ximian.com>
10552
10553         * TextControl.cs: Fix print out in debug method.
10554         * TextBoxBase.cs: When text is set bail if we are setting to the
10555         previous value.
10556         
10557 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
10558
10559         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
10560           It is now possible to change the selected index in a FontXXXListBox
10561           with the up and down arrow keys from the FontXXXTextBoxes.
10562           Also, send the FontXXXTextBox mouse wheel event to the corresponding
10563           FontXXXListBoxes to match ms.
10564
10565 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
10566
10567         * SystemInformation.cs: Return a clone of the theme's MenuFont because
10568         anyone can dispose it, anytime. All other properties returns enums, 
10569         structs or basic types so they don't need such tricks.
10570
10571 2006-09-22  Jackson Harper  <jackson@ximian.com>
10572
10573         * XplatUI.cs:
10574         * XplatUIWin32.cs:
10575         * Clipboard.cs:
10576         * DataFormats.cs:
10577         * XplatUIOSX.cs:
10578         * XplatUIDriver.cs: Update interface to add a primary selection
10579         flag, so the driver can use the primary selection buffer if
10580         needed.
10581         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
10582
10583         * RichTextBox.cs: We need to supply the data object to paste now
10584         (so we can choose to supply CLIPBOARD or PRIMARY).
10585         * TextBoxBase.cs: Supply data object to paste (see above).
10586         - Middle click uses the primary selection data object.
10587         
10588 2006-09-21  Chris Toshok  <toshok@ximian.com>
10589
10590         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
10591         of SetWMStyles.  It's still a rat's nest and is largely
10592         order-dependent which I dislike immensely.  This also fixes the X
10593         button disappearing from toplevel forms.
10594
10595 2006-09-21  Mike Kestner <mkestner@novell.com>
10596
10597         * ListBox.cs: move Jordi's click/dblclick raising code to the
10598         mouse up handler.
10599
10600 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
10601
10602         * ListBox.cs: Fixes 79450
10603
10604 2006-09-21  Mike Kestner <mkestner@novell.com>
10605
10606         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
10607         to deal with people updating the TreeNodeCollection after the tree
10608         is disposed.  "Fixes" 79330.
10609
10610 2006-09-20  Jackson Harper <jackson@ximian.com>
10611
10612         * TextControl.cs: Push the cursor record onto the undo stack
10613         before the delete action. This fixes 78651.
10614
10615 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
10616
10617         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
10618         CreateParams. Fixes 79329.
10619
10620 2006-09-19  Chris Toshok  <toshok@ximian.com>
10621
10622         * XplatUIX11.cs: a couple of blanket code massage passes to clean
10623         things up a bit.  First, get rid of the NetAtoms array (and the NA
10624         enum), and just embed the atoms as static fields.  Also, add a
10625         couple of functions (StyleSet and ExStyleSet) to clean up all the
10626         bitmask testing of styles.
10627
10628         * X11Structs.cs: remove the NA enum, not needed anymore.
10629         
10630 2006-09-19  Chris Toshok  <toshok@ximian.com>
10631
10632         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
10633         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
10634         added cleanup to get MessageBox titles appearing again, which were
10635         broken by my earlier fix for caption-less/ControlBox-less windows.
10636
10637 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
10638
10639         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
10640           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
10641           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
10642           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
10643           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
10644           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
10645           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
10646           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
10647           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
10648           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
10649           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
10650             Inital import.
10651         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
10652           ToolStripButton.cs: Stubs needed for above.
10653         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
10654
10655 2006-09-15  Chris Toshok  <toshok@ximian.com>
10656
10657         * XplatUIX11.cs:
10658         - make the MessageQueues hashtable Synchronized.
10659         
10660         - SendMessage: if the Hwnd is owned by a different thread, use the
10661         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
10662         thread.  Fixes bug #79201.
10663
10664 2006-09-15  Chris Toshok  <toshok@ximian.com>
10665
10666         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
10667         ControlBox == false, we disallow maximize/minimize/close.  If the
10668         form Caption is "" we also disallow move (and get rid of the Title
10669         decoration).  Unfortunately, regardless of how things are set,
10670         we're stuck with the Title and WM menu.
10671
10672 2006-09-15  Chris Toshok  <toshok@ximian.com>
10673
10674         * Application.cs: add locking around the static message_filters
10675         ArrayList, part of #79196.
10676
10677 2006-09-15  Chris Toshok  <toshok@ximian.com>
10678
10679         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
10680         Form.ControlBox == false, the window has no titlebar nor resize
10681         handles.  fixes bug #79368.
10682
10683 2006-09-15  Chris Toshok  <toshok@ximian.com>
10684
10685         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
10686         >= 0.  Fixes bug #79370.
10687
10688 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
10689         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
10690         * Control.cs:
10691             Add properties: LayoutEngine, Margin, DefaultMargin.
10692             Add method: GetPreferredSize.
10693             Move layout logic from PerformLayout to layout engines. 
10694
10695 2006-09-13  Chris Toshok  <toshok@ximian.com>
10696
10697         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
10698         fix for #79326 broke #78718, so this change addresses that.
10699
10700         - in SendWMDestroyMessages remove the call to
10701         CleanupCachedWindows, since we might be recreating the control and
10702         need to maintain the references to right Hwnd handles.  Also, set
10703         the zombie flag to true for each of the children in the hierarchy
10704         instead of calling hwnd.Dispose.  This will cause GetMessage to
10705         ignore all events for the window except for DestroyNotify.
10706
10707         - In GetMessage, ignore messages except for DestroyNotify for
10708         zombie hwnds.
10709         
10710         * Control.cs: revert the is_recreating fix from the last
10711         ChangeLog.  It's definitely "right", but it breaks switching from
10712         an MDI form to a non-MDI form.  Will need to revisit that.
10713
10714         * Hwnd.cs: add a zombie flag, which means "the
10715         client_window/whole_window handles are invalid, but we're waiting
10716         for the DestroyNotify event to come in for them".  Set the flag to
10717         false explicitly if setting WholeWindow/ClientWindow, and also
10718         when Disposing.
10719         
10720 2006-09-13  Chris Toshok  <toshok@ximian.com>
10721
10722         * XplatUIX11.cs: rework window destruction slightly.
10723
10724         - when destroying the windows associated with a control, we don't
10725         need 2 separate XDestroyWindow calls.  Just the one for the
10726         whole_window (or for client_window if whole_window is somehow
10727         IntPtr.Zero -- can this happen?) is enough.
10728
10729         - reworked SendWMDestroyMessages slightly, so we always dispose
10730         the child control hwnd's after sending the messages.
10731         
10732         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
10733         the two places it was used (one was even using hwnd.Handle and the
10734         other hwnd.client_window.  ugh), adding another call in
10735         SendWMDestroyMessages.  We need this new call because now the
10736         DestroyNotify events in the queue will be ignored for the child
10737         controls (as their hwnd's were disposed, and the window id's
10738         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
10739
10740         - this fixes bug #79326.
10741
10742 2006-09-13  Chris Toshok  <toshok@ximian.com>
10743
10744         * Control.cs: don't always set is_recreating to false at the end
10745         of RecreateHandle, since sometimes we're not done (and won't be
10746         until WndProc handles the WM_DESTROY message).  Also, set
10747         is_recreating to false in the WM_DESTROY handling code.  Part of
10748         the fix for bug #79326.
10749
10750 2006-09-13  Miguel de Icaza  <miguel@novell.com>
10751
10752         * X11DesktopColors.cs: Start the droppage of debugging messages.
10753
10754         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
10755
10756 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
10757
10758         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
10759
10760 2006-09-12  Chris Toshok  <toshok@ximian.com>
10761
10762         * DataGrid.cs (get_ListManager): if the list_manager is null, try
10763         to create it using SetDataSource.  Fixes bug #79151.
10764
10765 2006-09-11  Chris Toshok  <toshok@ximian.com>
10766
10767         * XEventQueue.cs: add a DispatchIdle property.
10768
10769         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
10770         either the queue is null, or the queue has DispatchIdle set to
10771         true.
10772         (DoEvents): set queue.DispatchIdle to false around the
10773         peek/translate/dispatch message loop in this method.  This keeps
10774         Application.Doevents from emitting idle events.  Part of the fix
10775         for #78823.
10776
10777 2006-09-11  Chris Toshok  <toshok@ximian.com>
10778
10779         * DataGrid.cs (set_DataSource): make this work for both the
10780         winforms/datagrid test and ReportBuilder.  It seems as though when
10781         we've created a ListManager (or maybe it's if we have a
10782         BindingContext?), when we set the DataSource it clears the
10783         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
10784         #79333.
10785
10786 2006-09-11  Chris Toshok  <toshok@ximian.com>
10787
10788         * XplatUIX11.cs: deal with queue being null, which happens in all
10789         the Clipboard functions.  Fixes one of the two problems mentioned
10790         in #78612.
10791
10792 2006-09-11  Chris Toshok  <toshok@ximian.com>
10793
10794         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
10795         button on various spots (including outside the menu) works closer
10796         to MS, and doesn't crash.  Fixes #79343.
10797
10798 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
10799
10800         * ListView.cs: Do not initialize item_sorter in init. To match MS,
10801         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
10802         and the internal comparer is set. When a new ListViewItemSorter is set,
10803         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
10804         was specified. No further processing is necessary if SortOrder is set
10805         to it's current value. If Sorting is modified to None, and View is
10806         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
10807         (either custom or our internal ItemComparer) to null, on 1.0 profile
10808         only set item_sorter to null if its our internal IComparer. If Sorting
10809         is modified to Ascending or Descending, then use our internal IComparer
10810         if none is set, and if the current IComparer is our internal one then:
10811         on 2.0 profile always replace it with one for new Sorting, and on 1.0
10812         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
10813         Enum.IsDefined to verify whether a valid View value is specified in
10814         its setter. Automatically sort listview items when listview is
10815         created. In Sort, do nothing if ListView is not yet created, or if
10816         no item_sorter is set (no Sorting was set, Sorting was explicitly set
10817         to None or ListViewItemSorter was set to null). Added Sort overload
10818         taking a bool to indicate whether the ListView should be redrawn when
10819         items are sorted (we use this in ListViewItemCollection to avoid double
10820         redraws). Modified our internal IComparer to take the sort order into
10821         account. In Add and AddRange methods of ListViewItemCollection, also
10822         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
10823         view), but use overload with noredraw option to avoid double redraw.
10824         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
10825         true when View is Tile, and do the same when attempting to set View to
10826         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
10827         for selected/checked indices, as it involves overhead when sorting is
10828         done while these collections are not used all that often. Instead
10829         we'll build the indices on demand. Modified IList implementation of
10830         CheckedIndexCollection to use public methods if object is int.
10831         Modified CheckedListViewItemCollection to hide checked items if
10832         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
10833         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
10834         IList implementation in SelectedIndexCollection to use public methods
10835         if object is int. Modified SelectedListViewItemCollection to hide
10836         selected items if listview is not yet created.
10837         * ListViewItem.cs: CheckedIndices list no longer needs to be
10838         maintained separately (see ListView changes). Also clone font, fixes
10839         test failure.
10840
10841 2006-09-11  Mike Kestner  <mkestner@novell.com>
10842
10843         * ComboBox.cs: if we are updating the contents of the currently
10844         selected index, refresh the control or the textbox selection.
10845         [Fixes #79066]
10846
10847 2006-09-11  Mike Kestner  <mkestner@novell.com>
10848
10849         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
10850         the 'specified' logic has been moved there.  This seems like a bug 
10851         in Control.cs, since our current SetBoundsCore completely ignores 
10852         the specified parameter.  Peter's commit seems to indicate that is 
10853         the way the MS control implementation works.  [Fixes #79325]
10854
10855 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
10856
10857         * XplatUI.cs: Set default_class_name to be composed
10858         of current domain id. This allows MWF to be loaded in multiple
10859         domains on Win32.
10860
10861 2006-09-09  Miguel de Icaza  <miguel@novell.com>
10862
10863         * X11Keyboard.cs: If we are unable to obtain the input method, do
10864         not call CreateXic to create the input context.   Should fix
10865         #78944/79276.
10866
10867 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
10868
10869         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
10870           Simplified gnome support by adding more pinvokes to get the
10871           icon for a file or mime type.
10872
10873 2006-09-08  Jackson Harper  <jackson@ximian.com>
10874
10875         * MenuAPI.cs: Deslect popup context menu items before closing the
10876         window, so that you don't see the previously selected item
10877         selected when you reopen the menu.
10878         * TextControl.cs: Update the cursor position even if we don't have
10879         focus.  This fixes typing in things like the ComboBox.  I'm not
10880         totally sure we should always set the visibility if we don't have
10881         focus, but couldn't find any corner cases where the cursor showed
10882         up when it shouldn't.
10883
10884 2006-09-08  Chris Toshok  <toshok@ximian.com>
10885
10886         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
10887         our arrays are length 256.  & 0xff before indexing.  Fixes the
10888         crash in bug #78077.
10889         
10890 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10891
10892         * ThemeWin32Classic.cs: 
10893         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
10894         is true. Handle that check box too.
10895
10896 2006-09-07  Chris Toshok  <toshok@ximian.com>
10897
10898         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
10899         79244.
10900
10901 2006-09-07  Chris Toshok  <toshok@ximian.com>
10902
10903         * Control.cs: in set_BackColor only do the work if
10904         background_color != value.
10905
10906         * XplatUIX11.cs: move the clearing of invalid areas (both client
10907         and nc) to the same block of code where we set (nc_)expose_pending
10908         to false.  That is, move it from PaintEventEnd to PaintEventStart,
10909         so things that cause invalidates from within OnPaint will trigger
10910         another call to OnPaint.  Fixes bug #79262.
10911
10912 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
10913
10914         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
10915         * FileDialog.cs: Fix typo
10916
10917 2006-09-07  Jackson Harper  <jackson@ximian.com>
10918
10919         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
10920         for tab pages if they have any.
10921
10922 2006-09-06  Mike Kestner  <mkestner@novell.com>
10923
10924         * Splitter.cs: use the "current" rect when finishing drag handle
10925         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
10926
10927 2006-09-06  Mike Kestner  <mkestner@novell.com>
10928
10929         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
10930         support offset splitters. [Fixes #79298]
10931
10932 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
10933
10934         * Mime.cs: Fixed a bug that could override the global mime type
10935           result.
10936
10937 2006-09-05  Jackson Harper  <jackson@ximian.com>
10938
10939         * TabControl.cs: Better calculation method for setting the slider
10940         pos. Prevents crashes on really wide tabs.
10941         - Draw Image on tab pages if an image list is used.
10942
10943 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10944
10945         * MonthCalendar.cs: When Font changes, the Size should be
10946         updated to fit the new font's space requirements.
10947
10948 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
10949
10950         * ListBox.cs: If the items are cleared with Items.Clear set
10951           top_index to 0.
10952
10953 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10954
10955         * MonthCalendar.cs: Handle arrow keys as input keys. Also
10956         fire DateChanged event instead of DateSelected event when
10957         the date was changed by keyboard interaction.
10958
10959 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
10960
10961         * DateTimePicker.cs: Handle DateChanged for the associated
10962         month_calendar control, and set month_calendar.Font from 
10963         OnFontChanged method, as well as resize the height of the
10964         control when needed. Make PreferredHeight proportional.
10965
10966 2006-09-01  Chris Toshok  <toshok@ximian.com>
10967
10968         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
10969         properties.
10970
10971         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
10972
10973 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
10974
10975         * FileDialog.cs: Set ClientSize instead of window size, to allow space
10976           for decorations (Fixes #79219)
10977
10978 2006-09-01  Mike Kestner  <mkestner@novell.com>
10979
10980         * ComboBox.cs: first stab at sorting plus some selection handling
10981         fixes to bring us more in line with MS behavior.  Also switches back
10982         to index based selection.  Alternative patches for index-based 
10983         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
10984         and latency@gmx.de on bug 78848.  I assume they were similar to this
10985         code I've had simmering in my tree forever.
10986         [Fixes #78848]
10987
10988 2006-09-01  Chris Toshok  <toshok@ximian.com>
10989
10990         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
10991         when setting list position guard against ending up with a -1 index
10992         (the other part of the fix for #78812).  Should probably make sure
10993         we don't need the analogous fix in the ItemDeleted case.
10994
10995         * DataGrid.cs:
10996         - in SetDataSource, work around the fact that the way
10997         OnBindingContextChanged is invoked will cause us to re-enter this
10998         method.  I'll remove the hack once I investigate
10999         OnBindingContextChanged.
11000
11001         - fix the logic in set_DataSource and set_DataMember (basically
11002         what to do if the other of the two is null.)
11003         
11004         - in OnListManagerItemChanged, we need to take into account the
11005         edit row when deciding whether or not to call RecreateDataGridRows
11006         (part of the fix for #78812).
11007
11008 2006-09-01  Jackson Harper  <jackson@ximian.com>
11009
11010         * Splitter.cs: Don't do anything if there is no control to affect
11011         (prevents us from crashing in weird tet cases).
11012         * TreeView.cs: Bounding box for the mouse movement reverting
11013         focus/selection back to previously selected node.  This matches
11014         MS, and makes the tree a lot more useable.
11015         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
11016         use clipping so they are not drawn.  This fixes when the control
11017         is set to have a transparent background, or if it was over an
11018         image.
11019
11020 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
11021
11022         * MimeIcon.cs: Improved handling for reading default icons when
11023           using gnome (2.16 made it necessary). Check and read svg icons
11024           first, then 48x48 and then 32x32 icons.
11025
11026 2006-08-31  Chris Toshok  <toshok@ximian.com>
11027
11028         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
11029         visible.
11030
11031         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
11032         ProcessKeyPreview.  Fixes part of #77806.
11033
11034         * DataGrid.cs: big patch.
11035
11036         - revert the queueing up of DataSource/DataMember if inside
11037         BeginInit/EndInit calls.  That's not the way the datagrid achieves
11038         its delayed databinding.  Instead, call SetDataSource in
11039         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
11040         #78811.
11041
11042         - Also, it wasn't mentioned in #78811, but the test case exhibits
11043         behavior that was lacking in our datagrid implementation - Columns
11044         that have mapping names that don't exist in the datasource's
11045         properties aren't shown.  Yuck.  To fix this I added the bound
11046         field to the column style, and basically any calculation to figure
11047         out anything about columns uses a loop to find the bound columns.
11048         still need to investigate if I can cache an array of the bound
11049         columns or if the indices must be the same.
11050
11051         - When setting CurrentCell, we no longer abort if the cell being
11052         edited was in the add row.  This fixes the other part of #77806.
11053
11054         - The new code also fixes #78807.
11055         
11056         * ThemeWin32Classic.cs: perpetrate the same disgusting
11057         column.bound field hack, and only render bound fields.
11058
11059 2006-08-31  Chris Toshok  <toshok@ximian.com>
11060
11061         * DataGridColumnStyle.cs: add bound field.  this field is true if
11062         the datasource has a property corresponding to the mapping name.
11063
11064         * DataGridTableStyle.cs: set the bound field on the column styles
11065         depending on whether or not we have a column for that property.
11066
11067 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
11068
11069         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
11070           splitter control (fixes #79228)
11071
11072 2006-08-31  Chris Toshok  <toshok@ximian.com>
11073
11074         * DataGridColumnStyle.cs: we need to delay the assignment of
11075         property descriptor until the last possible moment due to the lazy
11076         databinding stuff in the datagrid.  Also, fix the exceptions
11077         thrown by CheckValidDataSource to match MS.
11078
11079 2006-08-31  Jackson Harper  <jackson@ximian.com>
11080
11081         * Form.cs: When activated select the active control, if there is
11082         no active control, we select the first control.
11083         * XplatUIX11.cs: If there is no focus control when we get a
11084         FocusIn event, find the toplevel form and activate it.  This
11085         occurs when you popup a window, it becomes the focus window, then
11086         you close that window, giving focus back to the main window.
11087
11088 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11089
11090         * MonthCalendar.cs: 
11091         * ThemeWin32Classic.cs: Cache Font in bold style, as well
11092         as StringFormat with Center alignments in MonthCalendar,
11093         instead of creating new ones when drawing the control. 
11094         Also, draw the month name in bold style.
11095
11096 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
11097
11098         * Control.cs:
11099           - PerformLayout(): It would seem MS performs the fill even if the 
11100             control is not visible (part of #79218 fix)
11101           - ResetBackColor(): Use the setter to reset the color, to allow
11102             overriders to catch the change.
11103         * Form.cs:
11104           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
11105           - CreateHandle(): dito (part of $79218 fix)
11106           - Don't set an icon if we have a dialog
11107         * ScrollableControl.cs:
11108           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
11109           - ScrollIntoView(): No need to scroll if control is already visible
11110             (resolves fixme and fixes #79218)
11111
11112 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11113
11114         * MonthCalendar.cs: Change proportions in SingleMonthSize
11115         to match the aspect of the original control.
11116
11117 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
11118
11119         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
11120           get updated when they get maximized.
11121
11122 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
11123
11124         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
11125
11126 2006-08-29  Chris Toshok  <toshok@ximian.com>
11127
11128         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
11129
11130 2006-08-29  Jackson Harper  <jackson@ximian.com>
11131
11132         * TreeView.cs: Need to track selected node and highlighted node,
11133         they aren't always the same thing, when the mouse is down on a
11134         node it is hilighted, but not selected yet.
11135         - Do the HideSelection stuff right
11136         - Need to focus on rbutton mouse down. And redraw selection when
11137         right click is mouse upped.
11138
11139 2006-08-29  Mike Kestner  <mkestner@novell.com>
11140
11141         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
11142         when SubItems.Count < Columns.Count.  [Fixes #79167]
11143
11144 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
11145
11146         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
11147
11148 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
11149
11150         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
11151           from X. Only send based on ConfigureNotify if we don't have the
11152           correct location in hwnd (if the window manager moved us)
11153
11154 2006-08-28  Mike Kestner  <mkestner@novell.com>
11155
11156         * ListView.cs: remove a TODO. 
11157         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
11158         [Fixes ListView part of #79166]
11159
11160 2006-08-28  Mike Kestner  <mkestner@novell.com>
11161
11162         * ListView.cs: move wheel handler to parent since it is focused
11163         instead of the item_control now.  [Fixes #79177]
11164
11165 2006-08-28  Mike Kestner  <mkestner@novell.com>
11166
11167         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
11168         when the control is focused. [Fixes #79171]
11169
11170 2006-08-28  Mike Kestner  <mkestner@novell.com>
11171
11172         * ListView.cs: size the item and header controls for empty and
11173         unscrollable views.
11174         * ThemeWin32Classic.cs: draw disabled backgrounds.
11175         [Fixes #79187]
11176
11177 2006-08-28  Chris Toshok  <toshok@ximian.com>
11178
11179         * Form.cs: remove unused "active_form" static field.
11180
11181         * Hwnd.cs: lock around accesses to static windows collection.
11182
11183         * Application.cs: lock threads in Exit ().
11184
11185 2006-08-28  Chris Toshok  <toshok@ximian.com>
11186
11187         * NativeWindow.cs: lock around accesses to window_collection.
11188         
11189 2006-08-28  Chris Toshok  <toshok@ximian.com>
11190
11191         * Control.cs: err, fix this the right way, by locking on controls
11192         when using it.  not by making it synchronized.
11193
11194 2006-08-28  Chris Toshok  <toshok@ximian.com>
11195
11196         * Control.cs: make the static "controls" field synchronized, as it
11197         gets updated from multiple threads.
11198
11199 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
11200
11201         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
11202           Prevent other threads from exiting when calling thread sets quit state.
11203         * XEventQueue.cs: Added PostQuitState property
11204
11205 2006-08-27  Chris Toshok  <toshok@ximian.com>
11206
11207         * AsyncMethodData.cs: add a slot for the window handle.
11208
11209         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
11210         window (the destination control's window, not the foster window).
11211
11212         * Control.cs (BeginInvokeInternal): store the window's handle in
11213         the AsyncMethodData.
11214         
11215
11216 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
11217
11218         * XplatUIX11.cs:
11219           - PostQuitMessage: Removed resetting S.D display handle, we might have
11220             another loop started after calling PostQuitMessage (Fixes #79119)
11221           - Created destructor to reset S.D handle
11222
11223 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
11224
11225         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
11226
11227 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
11228
11229         * TextControl.cs (Insert): Update the caret position even if we don't
11230           have a handle yet, just don't call the driver in that case.
11231         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
11232           to the end of the new selection text (Fixes #79184)
11233
11234 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
11235
11236         * Form.cs (Activate): Only activate if the handle is created)
11237         * Control.c:
11238           - Mark window as invisible when it's disposed
11239           - Check if window handle is created when setting window visible, 
11240             instead of relying just on the is_created variable
11241           - Check if object is disposed when creating the control (Fixes #79155)
11242
11243 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
11244
11245         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
11246           when allowing layout again. Otherwise we re-generate the anchoring 
11247           distance to the border again and actually alter what the user wanted
11248           This is ugly, it'd be better if we used DisplayRectangle instead of
11249           ClientRectangle for Control.UpdateDistances, but that causes us to
11250           have other problems (initial anchoring positons would be wrong)
11251           (Fixes #78835)
11252
11253 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
11254
11255         * Control.cs:
11256           - The size and location setters shouldn't go directly to 
11257             SetBoundsCore, but to SetBounds, which triggers layout on the
11258             parent, then calls SetBoundsCore. (Related to fix for #78835)
11259           - SetBounds: Moved actual location update code into this function
11260             from SetBoundsCore, to match MS. Added call to PerformLayout if
11261             we have a parent (to trigger resizing of anchored parents if the 
11262             child size has changed (see testcase for #78835) 
11263         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
11264           new control code
11265         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
11266
11267 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
11268
11269         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
11270           System.Drawing when a toplevel window gets closed; there might
11271           be other toplevel windows belonging to the same app (Fixes #78052)
11272
11273 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
11274
11275         * FileDialog.cs: After reading FileDialog settings from mwf_config
11276           use Desktop prefix only if a real folder doesn't exist anymore.
11277         * FontDialog.cs: Added char sets.
11278           It is now possible to select the font, size or style with the
11279           textboxes.
11280
11281 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
11282
11283         * PrintPreviewDialog.cs: Use assembly name constants.
11284
11285 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
11286
11287         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
11288           scrollbar from whacking it's buttons)
11289
11290 2006-08-24  Chris Toshok  <toshok@ximian.com>
11291
11292         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
11293         in this patch (aggregating setting Left/Top/Width/Height to
11294         setting Bounds on the scrollbars), but the crux of the fix is in
11295         Recalculate, where we scroll by the remaining scroll_position if
11296         we're hiding a scrollbar.  The 2*$5 reward in the comment is
11297         serious.
11298
11299 2006-08-24  Jackson Harper  <jackson@ximian.com>
11300
11301         * MdiClient.cs:
11302         * MdiWindowManager.cs: If the form is made a non-mdi window we
11303         need to remove the form closed event so that closing forms works
11304         correctly.
11305
11306 2006-08-24  Jackson Harper  <jackson@ximian.com>
11307
11308         * Control.cs: Make IsRecreating internal so that the driver can
11309         check it
11310         - Temporarily remove the Hide when controls are removed, its
11311         making a whole bunch of things not work because visibility isn't
11312         getting reset elsewhere correctly
11313         * Form.cs: Need to do a full handle recreation when the mdi parent
11314         is set.
11315         * XplatUIX11.cs: If we are recreating handles don't dispose the
11316         HWNDs.  What was happening is the handles were being recreated in
11317         SendWMDestroyMessages, but then flow continued on in that method
11318         and destroyed the new handles.
11319
11320 2006-08-23  Jackson Harper  <jackson@ximian.com>
11321
11322         * Form.cs: MdiClient is always at the back of the bus
11323         * Control.cs: When the order of items in the collection is changed
11324         we need to reset the all_controls array
11325         - do the same sorta setup thats done when adding a control when a
11326         control is set on the collection.
11327
11328 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
11329
11330         * TextBoxBase.cs (get_Text): Return an empty array if our document
11331           is empty (fixes #79052)
11332
11333 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
11334
11335         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
11336           on WM_SYSCHAR messages (fixes #79053)
11337
11338 2006-08-23  Chris Toshok  <toshok@ximian.com>
11339
11340         * DataGrid.cs: fix flickering when scrolling vertically.
11341
11342 2006-08-23  Chris Toshok  <toshok@ximian.com>
11343
11344         * DataGrid.cs (EndEdit): only invalidate the row header when we
11345         need to.
11346
11347 2006-08-23  Chris Toshok  <toshok@ximian.com>
11348
11349         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
11350         methods.  fixes the flicker when scrolling around.
11351
11352 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
11353
11354         * FileDialog.cs: Making sure the control is created before we get a 
11355           chance to use it with BeginInvoke (Fixes #79096)
11356
11357 2006-08-23  Chris Toshok  <toshok@ximian.com>
11358
11359         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
11360         width to use when painting the rows.
11361
11362 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
11363
11364         * TextBoxBase.cs:
11365           - Throw ArgumentException if a negative value is passed to SelectionLength
11366           - Update the selection end if start is moved. end needs to be always
11367             after start. (Fixes #79095)
11368           - Track selection length; MS keeps the selection length even if start
11369             is changed; reset on all other operations affection selection
11370
11371 2006-08-22  Jackson Harper  <jackson@ximian.com>
11372
11373         * TreeView.cs: Make sure both scrollbars get displayed and sized
11374         correctly when the other bar is visible.
11375         - Use the original clip rectangle for checking if the area between
11376         the two scrollbars is visible, not the viewport adjusted clipping
11377         rectangle.
11378
11379 2006-08-22  Jackson Harper  <jackson@ximian.com>
11380
11381         * Binding.cs: We don't use IsBinding because it requires the
11382         control to be created, which really shouldn't be necessary just to
11383         set a property on the control.
11384
11385 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11386
11387         * ComboBox.cs: Some CB.ObjectCollection methods must throw
11388         ArgumentNullReferenceException when the argument is null.
11389
11390 2006-08-21  Jackson Harper  <jackson@ximian.com>
11391
11392         * Timer.cs: Track the thread that the timer is started in (NOT
11393         CREATED), this way messages for it will only be triggered on its
11394         queue.
11395         * XEventQueue.cs: Track the timers here, this makes timers per
11396         thread, like MS.
11397         * XplatUIX11.cs: The timers are moved to the XEventQueue.
11398
11399 2006-08-19  Chris Toshok  <toshok@ximian.com>
11400
11401         * XplatUIX11.cs: after further communication with pdb, we get the
11402         best of both worlds.  SetZOrder working for un-Mapped windows, and
11403         no X errors for un-mapped windows.
11404
11405 2006-08-19  Chris Toshok  <toshok@ximian.com>
11406
11407         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
11408         as it was causing pdn toolbars to not have the correct stacking.
11409
11410 2006-08-18  Mike Kestner  <mkestner@novell.com> 
11411
11412         * ListView.cs : guard against negative ClientArea.Width in scrollbar
11413         calculation.  Not sure why control should ever be setting a negative
11414         width though.  Fixes #78931.
11415
11416 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11417
11418         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
11419         null items in ObjectCollection class.
11420         * ListBox.cs.: Likewise.
11421
11422 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
11423
11424         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
11425           as the base method in ThemeWin32Classic should work fine.
11426           Fixed bug #78607.
11427
11428 2006-08-18  Jackson Harper  <jackson@ximian.com>
11429
11430         * Binding.cs: When validating if the value entered doesn't convert
11431         properly reset to the old value.
11432         * RadioButton.cs: Don't fire click when we get focus.
11433
11434 2006-08-18  Jackson Harper  <jackson@ximian.com>
11435
11436         * FileDialog.cs: Paint the selection on the directory combobox the
11437         same way as on MS. 
11438
11439 2006-08-17  Jackson Harper  <jackson@ximian.com>
11440
11441         * ErrorProvider.cs: Don't allow the error control to be selected.
11442         * Control.cs: Don't send the SetFocus messages, the control
11443         activation will do this, and if we do it blindly here validation
11444         does not work.
11445
11446 2006-08-17  Jackson Harper  <jackson@ximian.com>
11447
11448         * Control.cs:
11449         * ContainerControl.cs: Make validation events fire in the correct
11450         order.  TODO: For some reason the first validation event is not
11451         getting fired.
11452
11453 2006-08-17  Mike Kestner  <mkestner@novell.com> 
11454
11455         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
11456
11457 2006-08-17  Mike Kestner  <mkestner@novell.com> 
11458
11459         * ComboBox.cs : implement scroll wheel support for popped-down
11460         state. Fixes #78945. 
11461
11462 2006-08-17  Jackson Harper  <jackson@ximian.com>
11463
11464         * TreeView.cs: Specify treeview actions (old patch that didn't get
11465         committed for some reason).
11466         - Don't let the mouse wheel scroll us too far.  Just want to make
11467         the bottom node visible, not scroll it all the ways to the top.
11468
11469 2006-08-17  Jackson Harper  <jackson@ximian.com>
11470
11471         * XplatUIX11.cs: Mouse wheel events go to the focused window.
11472
11473 2006-08-17  Mike Kestner  <mkestner@novell.com> 
11474
11475         * ComboBox.cs : don't do mouseover selection in simple mode.
11476
11477 2006-08-16  Jackson Harper  <jackson@ximian.com>
11478
11479         * Form.cs: Fire the closing events for all the mdi child windows
11480         when a window is closed.  If the cancel args are set to true, the
11481         main window still gets the event fired, but it doesn't not close.
11482         * MdiWindowManager.cs: Do this closing cleanup in a Closed
11483         handler, instead of when the button is clicked, so cancelling the
11484         close works correctly.
11485         * ComboBox.cs: Send the mouse down to the scrollbar.
11486
11487 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11488
11489         * ListBox.cs: When passing 'null' to SelectedItem,
11490         set SelectedIndex to -1, to unselect items. This is the
11491         observed behaviour in .Net.
11492
11493 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
11494
11495         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
11496           MS flags saying there won't be any. (fixes #78800)
11497         * Control.cs (HandleClick): Made virtual
11498
11499 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
11500
11501         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
11502           cultures. Fixed bug #78399.
11503
11504 2006-08-16  Jackson Harper  <jackson@ximian.com>
11505
11506         * Form.cs: Use the MdiClients MdiChildren property to access
11507         MdiChildren instead of creating the array from the child controls.
11508         * MdiClient.cs: Maintain a separate array of the mdi children, so
11509         that insertion order is maintained when the Z-order is changed.
11510
11511 2006-08-16  Mike Kestner  <mkestner@novell.com> 
11512
11513         * ListView.cs : add an ItemComparer and default to it for sorting.
11514         Fixes #79076, but sorting needs a complete overhaul to be compat with
11515         MS.
11516
11517 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
11518
11519         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
11520
11521 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
11522
11523         * Hwnd.cs (Mapped): Properly traverse the tree
11524
11525 2006-08-15  Chris Toshok  <toshok@ximian.com>
11526
11527         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
11528         pass manager.Current.GetType() to ParseData.  It has to be the
11529         property type.  So, hold off doing the ParseData until we're in
11530         SetPropertyValue where we know the type.  This fixes the crash in
11531         #78821 but the textbox is still empty.
11532
11533 2006-08-15  Chris Toshok  <toshok@ximian.com>
11534
11535         * DataGrid.cs:
11536         - when we're scrolling, only call Edit() again if the
11537         current cell is still unobscured. Fixes bug #78927.
11538         - when handling mousedown on a cell, ensure the cell is visible
11539         before calling Edit.
11540         - remove the properties from DataGridRow, and remove the
11541         DataGridParentRow class altogether.
11542         
11543
11544 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
11545
11546         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
11547           fire OnTextChanged by ourselves. There's no point calling base,
11548           we don't set the base value anywhere else. Fixes #78773.
11549
11550 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11551
11552         * ListBox.cs: Call CollectionChanged when modifying
11553         an item from Items indexer, to update the actual items
11554         in the list box.
11555
11556 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11557
11558         * PrintDialog.cs: Small fixes for focus and a pair of checks,
11559         to match .Net behaviour.
11560
11561 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
11562
11563         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
11564
11565 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
11566
11567         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
11568
11569 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
11570
11571         * MessageBox.cs: Prevent potential NRE exception.
11572         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
11573
11574 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
11575
11576         * MessageBox.cs: Calculate the owner of a messagebox, also make
11577           it topmost. Fixes #78753
11578
11579 2006-08-14  Chris Toshok  <toshok@ximian.com>
11580
11581         * XplatUIX11.cs: A couple of fixes so that metacity will let us
11582         programmatically move windows.  first, set the PPosition hint as
11583         well as the USPosition hint.  Second include some code from pdb
11584         that sets the window type to NORMAL when we set the transient for
11585         hint.  This is because, in the absence of a window type, metacity
11586         thinks any window with TransientFor set is a dialog, and refuses
11587         to let us move it programmatically.  fascists.
11588
11589 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
11590
11591         * XplatUIX11.cs: When setting normal hints, take into consideration
11592           an different hints previously set so we don't delete them (fixes #78866)
11593
11594 2006-08-12  Chris Toshok  <toshok@ximian.com>
11595
11596         * ToolBarButton.cs: make Layout return a boolean, if something to
11597         do with the button's layout changed.
11598
11599         * ToolBar.cs:
11600         - add another parameter to Redraw, @force, which all existing
11601           calls set to true.
11602         - make the Layout function return a boolean which is true if the
11603           layout has actually changed.  Redraw now uses this (and @force)
11604           to determine when to invalidate.  At present the only place
11605           where @force can be false is the call from OnResize, when
11606           background_image == null.  So, resizing a toolbar when the
11607           layout doesn't change results in no drawing.
11608
11609 2006-08-12  Chris Toshok  <toshok@ximian.com>
11610
11611         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
11612         the VScrollBar and HScrollbar reversed.  oops.
11613
11614         * DataGrid.cs: fix the logic that assigns sizes to the implicit
11615         scrollbars.  we were assigning them twice (once in
11616         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
11617         therefore causing two scrollbar resizes (and redraws?) to happen
11618         per grid resize.
11619
11620 2006-08-12  Chris Toshok  <toshok@ximian.com>
11621
11622         * ToolBarButton.cs: redraw the entire button if the theme tells us
11623         to.
11624
11625         * Theme.cs: add ToolBarInvalidateEntireButton.
11626
11627         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
11628         buttons, just the border.
11629
11630         * ThemeNice.cs: redraw the entire toolbar button since we need to
11631         draw the highlight image.
11632
11633         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
11634         we need to redraw the entire button (not just the border).
11635
11636 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
11637
11638         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
11639           for vertical bars. Fixes the mismatches shown by #78513
11640
11641 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
11642
11643         * FileDialog.cs: If a saved/remembered path doesn't exist
11644           anymore, fall back to "Desktop".
11645
11646 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
11647
11648         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
11649           parent. It's apparently legal to not have one
11650         * XplatUIX11.cs:
11651           - SetZOrder: Don't try to set Z-Order on an unmapped window
11652           - CreateWindow: 0,0 are legal coordinates for a window. don't move
11653             it unless the coordinates are negative
11654
11655 2006-08-10  Mike Kestner  <mkestner@novell.com>
11656
11657         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
11658         when setting to null per msdn docs.  Fixes #78854.
11659
11660 2006-08-10  Chris Toshok  <toshok@ximian.com>
11661
11662         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
11663         flickering by setting a clip rectangle on the Graphics when we
11664         need to redraw just a particular menuitem.  Also, rename "OnClick"
11665         to "OnMouseDown" to reflect what it actually is.
11666         
11667         * Form.cs: track the OnMouseDown change.
11668
11669 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
11670
11671         * CommonDialog.cs: Properly inherit the CreateParams from the form
11672           and only change what we need. Fixes #78865
11673
11674 2006-08-10  Chris Toshok  <toshok@ximian.com>
11675
11676         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
11677         flickering in flat mode (and most of the flickering in general) by
11678         only invalidating the button border (and not the entire rectangle)
11679         when the state changes.  A couple of cases still flicker:
11680         ToggleButtons, and the dropdown arrow case when the user mouse
11681         ups.
11682
11683 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
11684
11685         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
11686           for german keyboards. Numlock state shouldn't affect the behaviour
11687           of the Del key. Fixes bug #78291.
11688
11689 2006-08-10  Chris Toshok  <toshok@ximian.com>
11690
11691         * ListControl.cs: remove the items.Clear line from BindDataItems,
11692         as this is the first thing done by both subclasses in their
11693         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
11694         passed -1, refresh the list.  This gets databinding working when
11695         the datasource is set on the list before the datasource is
11696         populated (as in wf-apps/ReportBuilder.)
11697
11698         * ComboBox.cs: remove the argument to BindDataItems.  This call
11699         should really go away, and be initiated by the ListControl code.
11700
11701         * ListBox.cs: same.
11702
11703 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
11704
11705         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
11706           if no data is in the document when the control is displayed
11707
11708 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
11709
11710         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
11711           yes (fixes #78806)
11712         * TextControl.cs: 
11713           - PositionCaret: Allow positioning of caret but don't call methods 
11714             requiring a handle if the window isn't created yet
11715           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
11716           - owner_HandleCreated: Don't position the caret, just update it's 
11717             location. User might have already set a different position
11718
11719 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
11720
11721         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
11722           windows. Screws up the returned coordinates for child windows. 
11723           Fixes #78825. I'm hoping this doesn't break something, since the
11724           code was explicitly put in 8 months ago, but no bug was attached.
11725           Menus still seem to work properly.
11726
11727 2006-08-08  Chris Toshok  <toshok@ximian.com>
11728
11729         * DataGrid.cs: make BeginInit/EndInit actually do what they're
11730         supposed to do - delay data binding until the EndInit call.  Also,
11731         make the table style collection's CollectionChangeAction.Refresh
11732         work properly.
11733
11734         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
11735         (with action = Refresh) when a consituent table's MappingName is
11736         changed.
11737
11738 2006-08-08  Chris Toshok  <toshok@ximian.com>
11739
11740         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
11741         Invalidate, since changing the text can change the size of the all
11742         toolbar buttons.
11743
11744 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
11745
11746         * Form.cs (AddOwnedForm): Still need to add the form to our listif
11747           we don't have it yet
11748
11749 2006-08-08  Chris Toshok  <toshok@ximian.com>
11750
11751         * PrintControllerWithStatusDialog.cs: don't .Close() the status
11752         dialog, as this causes X errors later on, since we actually
11753         destroy the window.  Instead, .Hide() it.
11754
11755 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
11756
11757         * ComboBox.cs: Added focus reflection for popup window
11758         * XplatUIX11.cs: 
11759           - Removed transient setting for non-app windows for now, not sure it
11760             was needed
11761           - Fixed logic checking if we have captions when deciding 
11762             override_redirect, WS_CAPTION is two bits and a 0 check was not
11763             sufficient
11764           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
11765             complicated
11766         * Form.cs: 
11767           - AddOwnedForm: Don't just add the form to the list, call the property
11768             to ensure the driver is informed about the ownership as well
11769           - CreateHandle: Set the TopMost status in the driver if we have an owner
11770         * XplatUI.cs: Fixed debug statement
11771
11772 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
11773         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
11774           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
11775           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
11776           TrackBarRenderer.cs: Make constructor private.
11777         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
11778         * ProfessionalColorTable.cs: Make properties virtual.
11779
11780 2006-08-06  Duncan Mak  <duncan@novell.com>
11781
11782         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
11783         is not changing.
11784
11785 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
11786         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
11787           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
11788           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
11789           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
11790           Initial import of new 2.0 classes.
11791
11792 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
11793         * Application.cs: Add 2.0 VisualStyles properties.
11794
11795 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
11796         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
11797           XplatUIX11.cs: Create property to allow access to existing private
11798           variable "themes_enabled"
11799
11800 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
11801
11802         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
11803         file size, as otherwise our class libraries fail using windows. Fixes
11804         bug #78759.
11805
11806 2006-08-04  Jackson Harper  <jackson@ximian.com>
11807
11808         * Form.cs:
11809         * XplatUIX11.cs: Move the toolwindow window manager creation into
11810         the X11 driver, this way on win32 we can let windows create/handle
11811         the toolwindows.
11812
11813 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11814
11815         * PrintDialog.cs: Remove some redundant checks, add some others,
11816         clean some code, and move the focus to the text boxes when the
11817         values are incorrect.
11818
11819 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
11820
11821         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
11822
11823 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
11824
11825         * NumericUpDown.cs: Setting the Minimum and Maximum is now
11826           handled correctly. Fixes bug #79001.
11827
11828 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11829
11830         * PrintDialog.cs: The "Copies" numeric up down must have
11831         set the Minimum property to 1; only if the value is bigger
11832         than 1, activate "Collate" check box. This is the behaviour of .Net.
11833         Also modify the Document elements only if it is not null.
11834
11835 2006-08-03  Jackson Harper  <jackson@ximian.com>
11836
11837         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
11838         length. (We have a larger array then actual node count).
11839                 
11840 2006-08-03  Jackson Harper  <jackson@ximian.com>
11841
11842         * ComboBox.cs: Don't show selection by default.
11843         - The SelectAll isn't needed here, since the focus code should do
11844         that
11845         - DDL style lists to manual selection drawing, so when they
11846         get/lose focus they have to invalidate.
11847
11848 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
11849
11850         * TextBoxBase.cs: Don't always show all selections by default.
11851
11852 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
11853         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
11854           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
11855           Fixed various typos.
11856
11857 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
11858
11859         * Control.cs: Removing the controls in a ControlCollection with
11860           Clear now hides the controls as expected. Fixes bug #78804. 
11861
11862 2006-08-03  Jackson Harper  <jackson@ximian.com>
11863
11864         * Control.cs: Revert previous focus patch, it breaks reflector.
11865
11866 2006-08-03  Jackson Harper  <jackson@ximian.com>
11867
11868         * ComboBox.cs: Cleanup selection and focus with the combobox.
11869         This also eliminates some duplicated keyboard code, since now
11870         everything is handled by the main class.
11871         - Make list selection work on mouse up instead of down, to match
11872         MS.
11873
11874 2006-08-02  Jackson Harper  <jackson@ximian.com>
11875
11876         * Control.cs: Setting focus needs to go through the whole
11877         selection mechanism.
11878
11879 2006-08-02  Chris Toshok  <toshok@ximian.com>
11880
11881         * PrintPreviewDialog.cs: change MinimumSize to use
11882         base.MinimumSize so it works.
11883
11884 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
11885
11886         * TextControl.cs:
11887           - UpdateCaret: Added sanity check in case caret isn't defined yet
11888           - Line.Delete: Now updating selection and caret markers if we're
11889             transfering a node (Properly fixes #78323)
11890           - SetSelectionEnd: Added sanity check
11891         * TextBoxBase.cs: Removed broken attempt to fix #78323
11892
11893 2006-08-01  Chris Toshok  <toshok@ximian.com>
11894
11895         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
11896         Close() call is handled in Form, not here.
11897
11898 2006-08-01  Chris Toshok  <toshok@ximian.com>
11899
11900         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
11901         layout/rendering.
11902
11903         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
11904         for sizes < 100% zoom.  The code now aggressively attempts to keep
11905         from calling document.Print (), and tries not to use the scaling
11906         g.DrawImage whenever possible (it still does if you scale to >
11907         100%, since usually that involves huge images).
11908
11909         * PrintPreviewControl.cs: hook up the close button.
11910
11911 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
11912         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
11913           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
11914           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
11915           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
11916           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
11917           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
11918           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
11919           Removed [Serializable] for 2.0 Event Handlers.
11920
11921 2006-07-31  Jackson Harper  <jackson@ximian.com>
11922
11923         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
11924         * TextControl.cs: Uncomment out the body of this method.
11925
11926 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
11927
11928         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
11929           standard cursors.
11930
11931 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
11932
11933         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
11934           that embed TextBox and need selections visible even if textbox is not
11935           focused to enforce that behaviour.
11936         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
11937           selection drawing
11938
11939 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
11940
11941         * TextControl.cs:
11942           - Added new SetSelectionStart/SetSelectionEnd overloads
11943           - Fixed viewport width assignment to be accurate
11944           - Adjusted alignment line shift calculations to allow cursor on right
11945             aligned lines to be always visible at the right border (like MS)
11946         * TextBoxBase.cs:
11947           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
11948           - TextBoxBase_SizeChanged: recalculating canvas on size changes
11949           - CalculateScrollBars: Use ViewPort size instead of window size, to
11950             properly consider space occupied by the border and scrollbars 
11951             (Fixes #78661)
11952           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
11953             calculations; no longer leaves artifacts
11954           - CaretMoved: Adjusted window scrolling to match MS and fixed several
11955             calculation bugs (Still missing right/center align calculations)
11956
11957 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
11958
11959         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
11960           use of both scroll rect and clip rect, as they do the same.
11961
11962 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
11963
11964         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
11965           in the event handler (fixes #78912)
11966
11967 2006-07-31  Chris Toshok  <toshok@ximian.com>
11968
11969         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
11970         grid.ListManager.Count, since grid.ListManager might be null.
11971         This of course begs the question "why are we drawing rows for a
11972         grid with no list manager (and therefor no rows)?"  Fixes the
11973         crash in bug #78929.
11974
11975 2006-07-31  Chris Toshok  <toshok@ximian.com>
11976
11977         * RelatedPropertyManager.cs: Don't always chain up to the parent
11978         ctor.  instead, call SetDataSource if the parent's position is !=
11979         -1.  Fixes the crash in #78822.
11980
11981 2006-07-31  Chris Toshok  <toshok@ximian.com>
11982
11983         * DataGrid.cs (get_ListManager): use field instead of property
11984         accessors for datasource and datamember.
11985         (RowsCount): make internal again.
11986         (OnMouseDown): end edits before resizing columns/rows.
11987         (OnMouseUp): restart edits after resizing columns/rows.
11988
11989 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
11990
11991         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
11992           This fixes the situation where the last set cursor is displayed
11993           whenever the mouse is over scrollbars.
11994
11995 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
11996
11997         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
11998         Document properties, as well as initial values.
11999
12000 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
12001
12002         * XplatUIWin32.cs (SetBorderStyle): Setting both border
12003           and ClientEdge results in a 3-pixel border, which is
12004           wrong.
12005
12006 2006-07-28  Jackson Harper  <jackson@ximian.com>
12007
12008         * TreeNodeCollection.cs: Fix the clear method.
12009         - Fix the Shrink also
12010
12011 2006-07-27  Jackson Harper  <jackson@ximian.com>
12012
12013         * TreeView.cs: Make sure the visible order is computed when we
12014         attempt to size the scrollbars (for trees that mess with the
12015         scrolling when they shouldn't.
12016         - Make sure to give the scrollbars valid values.
12017
12018 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
12019
12020         * XplatUIX11.cs: Move motion compression code to where it
12021           has less performance impact
12022
12023 2006-07-26  Jackson Harper  <jackson@ximian.com>
12024
12025         * UpDownBase.cs: When the control is selected make the child
12026         controls non selectable, so that a click on them won't do a
12027         focus/unfocus cycle.
12028         - Don't give focus to the text box when the spinner is selected.
12029         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
12030
12031 2006-07-26  Chris Toshok  <toshok@ximian.com>
12032
12033         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
12034         satisfied with this solution.  If the bitmaps are small, we should
12035         just cache them in the PrintPreviewDialog and draw them here.
12036         Also, the layout is broken for the 2-up and 3-up cases.
12037
12038         * Theme.cs: add PrintPReviewControlPaint.
12039
12040         * PrintPreviewDialog.cs: first pass implementation.
12041
12042         * PrintPreviewControl.cs: first pass implementation.  No
12043         scrollbars yet.
12044
12045         * PrintDialog.cs: only validate fields if that particular portion
12046         of the UI is enabled.  Also, set the document's controller to a
12047         PrintControllerWithStatusDialog wrapping the document's print
12048         controller.
12049
12050         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
12051         bring up a SaveFileDialog (i hope we don't want to match the
12052         behavior of the crappy windows file entry) and set the
12053         PrinterSettings.PrintFileName accordingly.
12054
12055 2006-07-26  Jackson Harper  <jackson@ximian.com>
12056
12057         * ContainerControl.cs: Add a field that disables auto selecting
12058         the next control in a container when the container is activated.
12059         * UpDownBase.cs: Don't select the text box when the up down is
12060         selected.
12061
12062 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
12063
12064         * XEventQueue.cs: Added methods for peeking (used for compression
12065           of successive events)
12066         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
12067           mouse move events (fixes #78732)
12068
12069 2006-07-25  Jackson Harper  <jackson@ximian.com>
12070
12071         * UpDownBase.cs: Use an internal class for the textbox so that we
12072         can control focus.  the updown control should always have focus,
12073         if either the text area or the buttons are clicked.
12074         - Send the key messages to the textbox, since it never actually
12075         has focus
12076         - Activate and decativate the textbox caret.
12077
12078 2006-07-24  Jackson Harper  <jackson@ximian.com>
12079
12080         * Control.cs: Use the directed select when selecting a control,
12081         this way the container controls override will get called and the
12082         whole ActiveControl chain will get triggered.  TODO: probably need
12083         to make sure this gets done everywhere instead of the old
12084         Select(Control).
12085         * ContainerControl.cs: Implement the directed Select method to
12086         find and activate the correct child control.    
12087         
12088 2006-07-22  Mike Kestner  <mkestner@novell.com>
12089
12090         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
12091         menu handling code so that clicks without a grab work too.
12092         [Fixes #78914]
12093
12094 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
12095
12096         * FileDialog.cs: Enable the BackButton when dirstack has one element.
12097           Added some small optimizations.
12098
12099 2006-07-21  Matt Hargett  <matt@use.net>
12100
12101         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
12102
12103 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
12104
12105         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
12106           tests pass and match MS in some strange border cases.
12107
12108 2006-07-21  Chris Toshok  <toshok@ximian.com>
12109
12110         * ThemeWin32Classic.cs: handle drawing of the relation links and
12111         parent row buttons.
12112
12113         * Theme.cs: change args to DataGridPaintParentRow.
12114
12115         * DataGrid.cs: Don't use controls for the relation links and
12116         parent buttons, so we have to handle all their interactions in
12117         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
12118         when we're navigating through child tables, so we can reinstate
12119         selection, expanded state, current cell, etc.
12120
12121 2006-07-20  Chris Toshok  <toshok@ximian.com>
12122
12123         * ToolBar.cs: When we redraw a button, for whatever reason,
12124         there's no reason to redraw the entire toolbar.  Also, don't call
12125         Control.Refresh from within Redraw, as it's much heavier than
12126         Invalidate (which is really what we want).
12127
12128 2006-07-20  Chris Toshok  <toshok@ximian.com>
12129
12130         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
12131         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
12132         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
12133         traces from within a debug IBindingList datasource
12134         (in mono/winforms/datagrid) for *days*, I've finally gotten things
12135         to work in a similar fashion.
12136
12137 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12138
12139         * ListBox.cs: Don't call Sort () when setting 
12140         the Sorted property to false (avoid an unnecessary sort).
12141
12142 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12143
12144         * ListControl.cs: DataSource should throw an ArgumentException
12145         instead of a normal exception when the argument is not of the 
12146         correct type.
12147
12148 2006-07-20  Mike Kestner  <mkestner@novell.com>
12149
12150         * Control.cs: add InternalPreProcessMessage to allow us to steal
12151         key events before MWF gets its paws on them.  Adapted from a
12152         suggestion by eno.
12153         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
12154         up/down/left/right navigation. Override the new internal control
12155         method to steal the events since they never make it to WndProc.
12156         * ToolBarButton.cs: don't worry about pushed when setting hilight
12157         since the drawing code prefers pushed to hilight. Invalidate on 
12158         Hilight changes. Fixes #78547 and #78525.
12159
12160 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
12161
12162         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
12163           the canvas size. Fixes #78868
12164
12165 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
12166
12167         * Splitter.cs: Track requested split position until first layout
12168           is performed. Fixes #78871
12169
12170 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
12171
12172         * Application.cs: Removed code that forces 1.x for the version
12173           number if the version started with 0. Not sure why that code was
12174           there and I couldn't find any bugs that indicated we needed it.
12175           Fixes #78869
12176
12177 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
12178
12179         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
12180           ResetDefaults(), just write some output to the console until it's
12181           implemented. Fixes bug #78907 for now. Eliminated two warnings.
12182
12183 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
12184
12185         * PropertyGridView.cs: set StartPosition of drop down forms
12186         so they appear in correct initial spot.  Fixes #78190.
12187
12188 2006-07-19  Mike Kestner  <mkestner@novell.com>
12189
12190         * ThemeWin32Classic.cs: use parent background color when drawing
12191         flat toolbars.  Restructure the conditionals to make sure non-flat
12192         non-Divider toolbars are filled too.  Fixes #78837.
12193
12194 2006-07-19  Mike Kestner  <mkestner@novell.com>
12195
12196         * ListBox.cs: Sort on collection changes even if the handle
12197         isn't created yet.  Fixes #78813.
12198
12199 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12200
12201         * ListControl.cs: DisplayMember should never be null,
12202         and now we assign String.Empty when null is passed to it (this
12203         is the .Net way).
12204
12205 2006-07-17  Mike Kestner  <mkestner@novell.com>
12206
12207         * ListViewItem.cs: restructure Font and subitem Font handling 
12208         to hold a specific font and refer back to owner on null.
12209         Fixes #78761.
12210
12211 2006-07-17  Mike Kestner  <mkestner@novell.com>
12212
12213         * ToolBar.cs: bandaid for side-effect of previous patch which was
12214         discarding explicit heights for non-AutoSize toolbars.  Need to
12215         extend my format tester to deal with AutoSize=false. Fixes #78864.
12216
12217 2006-07-15  Jackson Harper  <jackson@ximian.com>
12218
12219         * LabelEditTextBox.cs:
12220         * TreeView.cs: Use a new LabelEdit class for node editing, this
12221         class automatically 'closes' itself when it gets the enter key or
12222         loses focus.
12223         - Use the client rectangle when setting the trees scrollbars, so
12224         border style is taken into account.
12225         
12226 2006-07-14  Jackson Harper  <jackson@ximian.com>
12227
12228         * TreeNode.cs:
12229         * TreeView.cs: Make the editing work similar to MSs, firing the
12230         events correctly and ending edits correctly.
12231
12232 2006-07-14  Mike Kestner  <mkestner@novell.com>
12233
12234         * ToolBarButton.cs:
12235         * ToolBar.cs: layout restructuring and redraw enhancements to support
12236         formatting changes gracefully, like setting TextAlign, ImageList, 
12237         ButtonSize, and Appearance.  Handles explicit button sizing quirks
12238         of the MS controls.  Things like flat toolbars ignoring button size
12239         but becoming constant sized at the largest button's size.  Normal
12240         toolbars with an image set cannot be shrunk smaller than the image,
12241         but text can be clipped/ignored.
12242         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
12243         is zero.  Seems like DrawString should be smart enough to not put
12244         anything on screen though. Also trim labels and ellipsize at the char
12245         boundary, not word.
12246         Fixes #78711 and #78483.
12247
12248 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
12249
12250         * FolderBrowserDialog.cs: Disable "New Folder" button and
12251           "New Folder" contextmenu menuitem if a folder like "My Computer"
12252           is selected.
12253
12254 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
12255
12256         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
12257         * FolderBrowserDialog.cs:
12258           - Use MWFConfig to store and read size and position settings
12259           - Added code to create a new folder (button or context menu).
12260             Use TreeView labeledit to change the name of the new folder.
12261
12262 2006-07-14  Jackson Harper  <jackson@ximian.com>
12263
12264         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
12265         when the tree is scrolled we end editing.
12266
12267 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
12268
12269         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
12270           Down arrows
12271
12272 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
12273
12274         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
12275         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
12276         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
12277         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
12278         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
12279         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
12280         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
12281         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
12282         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
12283         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
12284         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
12285         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
12286         ListViewItemSelectionChangedEventHandler.cs,
12287         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
12288         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
12289         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
12290         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
12291         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
12292         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
12293         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
12294         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
12295         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
12296         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
12297         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
12298         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
12299         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
12300         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
12301         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
12302         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
12303         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
12304         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
12305         WebBrowserNavigatingEventHandler.cs, 
12306         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
12307
12308 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
12309
12310         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
12311         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
12312         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
12313         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
12314         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
12315         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
12316         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
12317         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
12318         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
12319         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
12320         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
12321         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
12322         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
12323         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
12324         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
12325         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
12326         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
12327         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
12328         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
12329         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
12330         ListViewItemStates.cs, MaskFormat.cs: Added
12331
12332 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
12333
12334         * PropertyGridView.cs: Fix keyboard navigation of drop down.
12335         Patch from eno for bug 78558.
12336         
12337 2006-07-13  Jackson Harper  <jackson@ximian.com>
12338
12339         * TreeView.cs: When an edit is finished make sure that the
12340         selected node is visible.
12341         - When setting the top/bottom use the scrollbars is_visible, so
12342         everything will be set correctly even if the tree isn't visible
12343         yet.
12344
12345 2006-07-13  Jackson Harper  <jackson@ximian.com>
12346
12347         * ComboBox.cs: Revert the item->index part of my previous patch.
12348         * TreeView.cs: Use LostFocus instead of Leave for detecting when
12349         the edit box has lost focus (duh).
12350         - Just make the edit box not visible when we get return, that will
12351         take the focus, which will call EndEdit
12352         * TreeNode.cs When we start editing, notify the treeview.
12353
12354 2006-07-12  Jackson Harper  <jackson@ximian.com>
12355
12356         * ComboBox.cs: Clear out old items before setting the item list.
12357         This prevents databound controls from having their items added
12358         twice.
12359         - Switch the combobox to use indices whereever possible instead of
12360         using Item's.  This allows usto navigate through lists that have
12361         more then one item with the same string value (ie a, b, b, a).
12362         - Scroll the listboxes scrollbar when a non visible item is
12363         highlighted
12364         - Allow keypress to cycle through all the possible values. For
12365         example if you have b1, b2, b3 and hold down the B key all the
12366         values will be cycled through.
12367         
12368 2006-07-12  Jackson Harper  <jackson@ximian.com>
12369
12370         * TextBoxBase.cs:
12371         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
12372         this using the internal methods.
12373         * Control.cs: Add OnGotFocusInternal.  A new method that allows
12374         controls to "override" OnGotFocus and change focus behavior if
12375         needed.
12376         - Same thing for LostFocus
12377         * ComboBox.cs: Pass off focus to the text control properly.
12378
12379 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
12380
12381         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
12382         * FolderBrowserDialog.cs: Almost a complete rewrite.
12383           - Better support for Environment.Specialfolders
12384           - Added support for MWFVFS
12385           - Made setting SelectedPath work
12386
12387 2006-07-12  Jackson Harper  <jackson@ximian.com>
12388
12389         * Control.cs: Optimze getting all the controls.
12390
12391 2006-07-11  Jackson Harper  <jackson@ximian.com>
12392
12393         * ContainerControl.cs: Override SETFOCUS in the container control,
12394         so that it is not selected on mouse click.
12395
12396 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
12397
12398         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
12399           Hopefully we will have a better way once all of focus is complete.
12400
12401 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
12402
12403         * ThemeWin32Classic.cs: Commented out some debug code and fixed
12404           a compile error with csc.
12405
12406 2006-07-11  Jackson Harper  <jackson@ximian.com>
12407
12408         * Control.cs: When hiding a control only select the next control
12409         if the current control was focused.
12410         - Don't handle enter/leave when setting/killing focus, this is
12411         done by the container control.
12412         - Remove is_selected, it's not needed anymore.
12413         - Add utility methods for selecting a child control, and for
12414         firing the Enter/Leave events.
12415         * ContainerControl.cs: When a control is activated fire the
12416         enter/leave events.
12417         - Don't wrap when processing the tab key, so that focus can be
12418         moved outside of the container.
12419         - Use the correct active control
12420
12421 2006-07-11  Jackson Harper  <jackson@ximian.com>
12422
12423         * ComboBox.cs: Remove some debug code that was blinding me.
12424         * UpDownBase.cs: These controls actually aren't implicit, they are
12425         visible to the user.
12426
12427 2006-07-10  Chris Toshok  <toshok@ximian.com>
12428
12429         * DataGrid.cs: move back to the is_adding boolean field.  god i
12430         hate this is_editing/is_adding/is_changing stuff.
12431
12432 2006-07-10  Chris Toshok  <toshok@ximian.com>
12433
12434         * DataGridTableStyle.cs: just check if the property type is bool.
12435         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
12436         Don't use CanRenderType.
12437
12438         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
12439         if our text == NullText.  Remove CanRenderType.
12440
12441         * DataGridBoolColumn.cs: nuke CanRenderType.
12442
12443         * DataGrid.cs: reenable some code to end the current edit inside
12444         of set_CurrentCell.  This fixes the other 1.1.16 regression.
12445         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
12446         Also, remove the visible_row_count arg from CalcRowHeaders, since
12447         we don't need to worry about the actual height of the area.
12448
12449 2006-07-10  Chris Toshok  <toshok@ximian.com>
12450
12451         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
12452         mode, just return.
12453
12454         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
12455         the real sense of the IsInEditOrNavigateMode property (true =
12456         navigate, false = edit).  Also, update OnKeyPress to reflect this.
12457
12458         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
12459         column style exists, we still need to set its property descriptor
12460         to match up with our list manager.
12461
12462 2006-07-10  Chris Toshok  <toshok@ximian.com>
12463
12464         * ThemeWin32Classic.cs: implement the new row/header painting
12465         approach.  The parent row painting will likely go away and
12466         replaced with label controls, but the rest seems to work ok (and
12467         efficiently).
12468
12469         * Theme.cs: change the way we draw datagrid rows.  we don't draw
12470         the row headers as a block now.  Instead we draw them in the
12471         normal draw-row loop.  Add some calls for drawing parent rows and
12472         relation rows.
12473
12474         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
12475         a default table style.  Set the defaults from ThemeEngine.Current,
12476         not SystemColors.  Fix lots of misc issues with property setters.
12477
12478         * DataGrid.cs: move loads of style information out of this class
12479         as it's being duplicated with DataGridTableStyle.  keep track of a
12480         special DataGridTableStyle for the properties we used to mirror
12481         here.  Switch all the style properties to access this table style
12482         instead of instance fields of this class.  Also add a internal
12483         class to represent parent rows (more needs to be stored here, like
12484         the selection state from the parent table, as well as the
12485         expansion state.)  Also, for datasources with relations, do the
12486         right thing for collapse/expand, and add support for the
12487         navigation/parent row buttons.
12488
12489         Lastly, fix the crash in the 1.1.16 build.
12490
12491         * GridTableStylesCollection.cs: make the explicit interface
12492         implementations call the class's methods as opposed to duplicating
12493         them.
12494
12495         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
12496         0 so the text doesn't jump around when we move the cursor.
12497
12498 2006-07-10  Jackson Harper  <jackson@ximian.com>
12499
12500         * TextBoxBase.cs:
12501         * ListBox.cs: Match MS's ToString (this makes debugging focus
12502         stuff infinitely easier).
12503
12504 2006-07-10  Jackson Harper  <jackson@ximian.com>
12505
12506         * Control.cs (SelectNextControl): When checking the control's
12507         parent use this instead of ctrl.parent so that null can be passed
12508         to SelectNextControl. (I have unit tests for this).
12509         - Remove unused var.
12510
12511 2006-07-10  Chris Toshok  <toshok@ximian.com>
12512
12513         * CurrencyManager.cs: correct one regression, the removal of the
12514         finalType field.  Also, add a MonoTODO on CanAddRows, implement
12515         Refresh() correctly, and fix some event emission in
12516         ListChangedHandler.
12517
12518 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
12519
12520         * FileDialog.cs: Don't use brackets for new folders if they exist
12521           under *nix. Instead use -(number of existing folders +1).
12522
12523 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
12524
12525         * FileDialog.cs:
12526           - Fixed really nasty bug #78771
12527           - Don't block the whole GUI when reading directories with a lot of
12528             entries. Use an other thread instead and call BeginInvoke to
12529             update the ListView in MWFFileView
12530
12531 2006-07-07  Chris Toshok  <toshok@ximian.com>
12532
12533         * Control.cs (Dispose): release any Capture when disposing.
12534
12535 2006-07-07  Chris Toshok  <toshok@ximian.com>
12536
12537         * LinkLabel.cs (Select): if we chain up to the parent, set
12538         focused_index to -1 so we'll search for the first available link
12539         the next time the user tabs into us.  Also, if the direction is
12540         backward and focused_index == -1, start the search from the last
12541         element.
12542
12543 2006-07-07  Chris Toshok  <toshok@ximian.com>
12544
12545         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
12546         is beyond the end of the text, don't do anything.
12547         (CreateLinkPieces): set our ControlStyles.Selectable based on
12548         whether or not we have any links.
12549         (Link.Invalidate): use a loop instead of foreach.
12550         (Link.set_Start): null out owner.sorted_links so it'll be
12551         recreated by CreateLinkPieces.
12552
12553 2006-07-06  Chris Toshok  <toshok@ximian.com>
12554
12555         * LinkLabel.cs: revert the SetStyle change.
12556
12557 2006-07-06  Chris Toshok  <toshok@ximian.com>
12558
12559         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
12560         (OnEnableChanged): s/Refresh/Invalidate
12561         (OnGotFocus): if we have a focused index already, refocus it (so
12562         if we mouse out/in to the window it'll focus the right link).
12563         (OnKeyDown): move the tab handling out of here.
12564         (OnLostFocus): don't set focused_index to -1, so we can refocus it
12565         when we lose focus.
12566         (OnMouseDown): don't Capture here - Control handles it.  Also,
12567         focus the active link.
12568         (OnMouseUp): don't deal with Capture.
12569         (OnPaintBackgroundInternal): remove.
12570         (OnTextAlignChanged): CreateLinkPieces before calling the
12571         superclass's method.
12572         (OnTextChanged): call CreateLinkPieces before calling superclass's
12573         method.
12574         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
12575         move around.
12576         (Select): implement this, moving the selection between different
12577         links, and call parent.SelectNextControl if we don't have another
12578         link to focus in the given direction.
12579         (CreateLinkPieces): call Invalidate instead of Refresh.
12580         
12581 2006-07-06  Chris Toshok  <toshok@ximian.com>
12582
12583         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
12584         new LinkLabel internals.
12585
12586         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
12587         over pieces looking for active/focused/etc links.  also, deal with
12588         runs of text (and links) with embedded \n's in them, and use
12589         MeasureCharacterRanges instead of MeasureString to figure out the
12590         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
12591         two-step.
12592
12593 2006-07-04  Jackson Harper  <jackson@ximian.com>
12594
12595         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
12596         XKB or key auto repeat, do it manually.  Without key auto repeat,
12597         when a key is held down we get key press, key release, key press,
12598         key release, ... with auto repeat we get key press, key press, key
12599         press ..., and then a release when the key is actually released.
12600
12601 2006-07-03  Jackson Harper  <jackson@ximian.com>
12602
12603         * TabControl.cs:
12604         * ThemeWin32Classic.cs: Tabs do not obey normal background color
12605         rules, they are always control color regardless of the background
12606         color.
12607
12608 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
12609
12610         * FileDialog.cs: Added internal class MWFConfig.
12611           Removed Registry support and replaced it with support for the new
12612           MWFConfig class. See MWFConfig comments for more information.
12613
12614 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
12615
12616         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
12617           rectangle. Added some patches from eno from bug #78490 and fixed
12618           the arrow position for small up and down CPDrawScrollButtons.
12619
12620 2006-06-30  Jackson Harper  <jackson@ximian.com>
12621
12622         * InternalWindowManager.cs: Remove some debug code.
12623         * Form.cs: When an MdiParent is set to null, the window is
12624         "detatched" and becomes a normal window.
12625         * MdiClient.cs: Don't bring the new child form to the front until
12626         it is activated (setting it as active does this), this makes the
12627         previously active forms titlebar get redrawn as inactive.
12628
12629 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
12630
12631         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
12632           with later controls
12633
12634 2006-06-29  Mike Kestner  <mkestner@novell.com>
12635
12636         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
12637         arrow in keynav state.  Fixes #78682.
12638
12639 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
12640
12641         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
12642           order (fixes #78393)
12643
12644 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
12645
12646         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
12647           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
12648           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
12649           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
12650           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
12651           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
12652           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
12653           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
12654           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
12655           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
12656           enumerations (FlagsAttribute, SerializableAttribute, added/removed
12657           values)
12658
12659 2006-06-28  Mike Kestner  <mkestner@novell.com>
12660
12661         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
12662
12663 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
12664
12665         * PropertyGrid.cs,
12666           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
12667           item lines from other area (It also makes BackColor consistent and
12668           compatible with .NET). Fixed bug #78564.
12669
12670 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
12671
12672         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
12673         Patch from Eno for #78555.
12674
12675 2006-06-27  Chris Toshok  <toshok@ximian.com>
12676
12677         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
12678
12679         * DataGridColumnStyle.cs: same.
12680
12681         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
12682         
12683         * DataGridDrawingLogic.cs: nuke.
12684
12685 2006-06-27  Chris Toshok  <toshok@ximian.com>
12686
12687         * DataGridTableStyle.cs: clean up the constructors, and build the
12688         list of child relations for this table.  I have no idea if this is
12689         where we should be doing it (it probably isn't), but since we're
12690         already iterating over the properties..
12691
12692         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
12693         struct and array for keeping track of row information, similar to
12694         what's shown in a hack on
12695         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
12696
12697         * Theme.cs: be consistent about the naming of DataGrid methods,
12698         prefering ColumnWidths and RowHeights over columnsWidths and
12699         RowsHeights.
12700
12701         * ThemeWin32Classic.cs: same, and also add support for variable
12702         sized rows (and the +/- expansion icons for related rows).
12703
12704 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
12705
12706         * TextBoxBase.cs: Applied Eno's patch from #78660
12707
12708 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
12709
12710         * Form.cs (ScaleCore): We don't want to scale our form if it's
12711           state is minimized or maximized, but we still need to scale our
12712           child windows. Also, added try/finally block to ensure layout
12713           gets reset (Fixes #78697)
12714
12715 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
12716
12717         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
12718
12719 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
12720
12721         * Form.cs: Fixed c+p error and added check to resize form if minimum
12722           size is bigger than current size (Fixes #78709)
12723
12724 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
12725
12726         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
12727
12728 2006-06-26  Mike Kestner  <mkestner@novell.com>
12729
12730         * ComboBox.cs: only do Keypress handling in the combo when there  
12731         are items in the collection. Fixes #78710.
12732
12733 2006-06-26  Chris Toshok  <toshok@ximian.com>
12734
12735         * Binding.cs: make this work bi-directionally.  also, clear up
12736         other mixups between Push/Pull Data (e.g. we're supposed to pull
12737         data when validating).
12738
12739         * BindingManagerBase.cs: trim some fully qualified collection
12740         types.
12741
12742         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
12743
12744 2006-06-23  Chris Toshok  <toshok@ximian.com>
12745
12746         * PropertyManager.cs: It appears (according to the unit tests)
12747         that PropertyManager doesn't use
12748         PropertyDescriptor.AddValueChanged to track propery value changes
12749         in its datasource, but uses the same scheme as Binding, where it
12750         looks for a <Property>Changed event and binds to it.
12751
12752         Also, according to the docs, IsSuspended always returns false for
12753         a property manager with a non-null datasource.
12754
12755 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
12756
12757         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
12758           need to update the actual DialogResult. (Fixes #78613)
12759
12760 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
12761
12762         * Form.cs (ShowDialog): Release any captures before running the
12763           new message pump (fixes #78680)
12764
12765 2006-06-22  Mike Kestner  <mkestner@novell.com>
12766
12767         * ListView.cs: Layout column widths properly in details mode even 
12768         if HeaderStyle.None is set.  Fixes #78691.
12769
12770 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
12771
12772         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
12773
12774 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
12775
12776         * Control.cs (ContainsFocus): Using new driver method to get focused
12777           window, instead of trying to use internal tracking var, which can
12778           recursion issues (Fixes #78685)
12779         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
12780           XplatUIWin32.cs: Added GetFocus method to return focused window
12781
12782 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12783
12784         * ColorDialog.cs: when the mouse button is pressed inside the color
12785         matrix, don't let the cursor move out of it until the button is
12786         released, which is the behavior on windows. Changed 'colours' by
12787         'colors' to use the same word consistently.
12788
12789 2006-06-21  Chris Toshok  <toshok@ximian.com>
12790
12791         * DataGrid.cs: add in some basic navigation stuff (navigating to a
12792         child relation and back, using a stack).  Also, remove
12793         GetDataSource and the code that calls it - it's not needed.  Also,
12794         track CurrencyManager.ListName's removal.
12795
12796 2006-06-21  Chris Toshok  <toshok@ximian.com>
12797
12798         * CurrencyManager.cs: push some of the original type checking from
12799         BindingContext.CreateBindingManager to here, and remove some of
12800         the finalType stuff.  Need more tests to make sure I've got the
12801         ListName part right, and we might need more in SetDataSource.
12802
12803         * PropertyManager.cs: add a ctor that takes just the datasource,
12804         and no property name.  Make SetDataSource work with a null
12805         property_name, and make Current return the data_source if the
12806         property descriptor is null.  this makes 'string foo = "hi";
12807         BindingContext[foo].Current' return "hi" as it should.
12808
12809         * RelatedCurrencyManager.cs: make this code more generic - there's
12810         no reason the parent manager has to be CurrencyManager, and
12811         there's no reason to pass the DataRelation.  It suffices to use a
12812         BindingManagerBase and PropetyDescriptor.
12813
12814         * RelatedPropertyManager.cs: make a similar change here.
12815         
12816         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
12817         flower I knew it could be.
12818
12819 2006-06-20  Chris Toshok  <toshok@ximian.com>
12820
12821         * PropertyManager.cs: the PropertyChangedHandler is invoked when
12822         data in the source has changed and we need to update the control,
12823         so s/PullData/PushData.
12824
12825         * CurrencyManager.cs: Refresh is meant to update the control from
12826         data in the datasource.  So, s/PullData/PushData.
12827
12828         * BindingContext.cs: add more ugliness (we weren't handling the
12829         case where data_source = DataTable and data_member = column_name).
12830
12831         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
12832         from the perspective of the datasource.  PullData pulls from the
12833         control, PushData pushes to the control.
12834
12835 2006-06-20  Chris Toshok  <toshok@ximian.com>
12836
12837         * BindingContext.cs: rewrite the CreateBindingManager code to
12838         handle navigation paths more or less properly.  This could
12839         definitely stand some more work, in particular to push the
12840         recursion up to the toplevel.  But that relies on fixes in other
12841         places (System.Data comes to mind).
12842
12843         Also, move to a flat hashtable (and encode the twolevel nature of
12844         the dictionary into the hash key).  This lets us implement the
12845         IEnumerable.GetEnumerator method.
12846
12847         * RelatedCurrencyManager.cs: new class.  Update our view based on
12848         our relation and our parent CurrencyManager's position.
12849
12850         * CurrencyManager.cs: split out some logic from the ctor into
12851         SetView, so it can be called from the new RelatedCurrencyManager
12852         subclass.
12853
12854         * RelatedPropertyManager.cs: new class.  Update our datasource
12855         based on the position of our parent CurrencyManager.
12856
12857         * PropertyManager.cs: split out some logic from the ctor into
12858         SetDataSource, so it can be called from the new RelatedDataSource
12859         subclass.  Also, make the Current getter return the value
12860         of the PropertyDescriptor, not the data_source.
12861
12862         * Binding.cs: no need to duplicate the string splitting code here.
12863
12864 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
12865
12866         * Control.cs:
12867           - set_Enabled: OnEnabledChanged is not called if the inherited state 
12868             of the control is not altered, even though  we might be changing the
12869             internal state of the control (#78458)
12870           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
12871             OnEnabledChanged, to allow easy altering of any child window state
12872           - OnEnabledChanged: Added code to enable/disable driver window state
12873           - OnParentEnabledChanged: Instead of firing the event, call 
12874             OnEnabledChanged, which will fire the event and also a) set driver
12875             window state and pass the enabled state to any grandchildren (#78458)
12876
12877 2006-06-19  Jackson Harper  <jackson@ximian.com>
12878
12879         * InternalWindowManager.cs: We don't set the cursor explicitly
12880         thats done via the response to NCHITTESTs.
12881         - Don't need to adjust for titlebar heights anymore, the
12882         coordinates are coming in the correct coordinates now (see peters
12883         last patch).
12884
12885
12886 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
12887
12888         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
12889           being translated relative to whole window, instead of client window.
12890           That caused broken offsets on mouseclick (and caused gas for our
12891           InternalWindowManager)
12892
12893 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
12894
12895         * TextControl.cs:
12896           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
12897           - Undo(): Added replay of cursor move on DeleteChars action; added
12898             calling Undo() again if a recorded cursor move is invalid (to
12899             ensure that some action is performed on Undo)
12900         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
12901
12902 2006-06-16  Jackson Harper  <jackson@ximian.com>
12903
12904         * MdiClient.cs: Instead of just sizing maximized windows when
12905         there is a resize we also have to adjust the Y of minimized
12906         windows, so they stay pinned to the bottom of the mdi container.
12907         - Eliminate separate tracking of the active control, we can just
12908         get this from the controls collection.
12909         - Paint the decorations for the newly activated titlebar so we get
12910         a pretty blue bar.
12911         * InternalWindowManager.cs:
12912         * ThemeWin32Classic.cs: Minimized windows get all three buttons
12913         even if they are a tool window.
12914         
12915 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
12916
12917         * TextControl.cs (Undo): Handle non-existent cursor locations in the
12918           undo buffer, these can happen when text was deleted and the cursor
12919           was recorded first. Since we will also have a recorded cursor
12920           after the delete this is not an issue. (Fixes #78651)
12921
12922 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
12923
12924         * AccessibleObject.cs: Remove dependence on Control.is_selected;
12925           instead properly track control states internally (allows us to
12926           remove is_selected from Control)
12927
12928 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12929
12930         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
12931         whose width is not a multiple of 8.
12932
12933 2006-06-13  Jackson Harper  <jackson@ximian.com>
12934
12935         * MdiClient.cs:  Only maximize the next child if the current one
12936         is maximized.
12937
12938 2006-06-13  Chris Toshok  <toshok@ximian.com>
12939
12940         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
12941         modified.  Also, guard against grid or grid_drawing being null in
12942         Invalidate.
12943
12944         * DataGrid.cs: Reformat tons of getters/setters.  In the
12945         DataMember setter, just call SetNewDataSource instead of
12946         duplicating some of its functionality.  In SetNewDataSource, don't
12947         check ListManager for null, since the property getter creates the
12948         object if needed.
12949
12950         * DataGridTableStyle.cs: don't set TableStyle or call
12951         SetDataGridInternal on the column here, it's done in
12952         GridColumnStylesCollection.Add.
12953
12954         * GridColumnStylesCollection.cs: fix all the explicit interface
12955         implementations to just call our methods.  Nuke AddInternal() and
12956         move the body of it to Add().  Also, add a call to
12957         column.SetDataGridInternal to Add().
12958
12959         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
12960         base()+duplicate code.  Also, use the Format property instead of
12961         format to generate an Invalidate ala MS.  Lastly, create the
12962         textbox here, unconditionally.
12963         (set_Format): call Invalidate.
12964         (get_TextBox): no need to call EnsureTextBox.
12965         (Commit): remove the message box.
12966         (Edit) remove the call to EnsureTextBox.
12967         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
12968         (EnterNullValue): no need to check textbox for null.
12969         (HideEditBox): no need to check textbox for null.
12970         (SetDataGridInColumn): add the textbox to the grid's controls.
12971         (EnsureTextBox): nuke.
12972         
12973 2006-06-13  Jackson Harper  <jackson@ximian.com>
12974
12975         * MdiWindowManager.cs: Hook up to the maximized menus paint event
12976         and redraw the buttons when needed. Unhook when the window is
12977         unmaximized.
12978         * MainMenu.cs: Add an internal Paint event, the mdi window manager
12979         needs this so that it can redraw its buttons when the menu is
12980         repainted.
12981         * InternalWindowManager.cs:
12982         * Form.cs: The method order has changed for DrawMaximizedButtons,
12983         so that it can be a PaintEventHandler.
12984         
12985 2006-06-13  Jackson Harper  <jackson@ximian.com>
12986
12987         * MdiClient.cs: When we close a maximized mdi window, the next mdi
12988         window is activated and maximized, even if it wasn't before.
12989         - When  a new window is activated repaint the decorations of the
12990         old one, so that it no longer has the Active "look" (the blue
12991         titlebar).
12992         * InternalWindowManager.cs: Open up CreateButtons to base classes
12993         so they can recreate the buttons on state changes.
12994         - If a window is maximized give it all three buttons
12995         * MdiWindowManager.cs: Create the titlebar buttons when the state
12996         is changed, this is needed because a toolwindow will not have all
12997         three buttons until it is maximized.
12998
12999 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
13000
13001         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
13002           Fixed bug #78609.
13003
13004 2006-06-12  Jackson Harper  <jackson@ximian.com>
13005
13006         * KeysConverter.cs: Make sure we handle the Ctrl special case
13007         if its the only key.
13008         
13009 2006-06-12  Jackson Harper  <jackson@ximian.com>
13010
13011         * Theme.cs: Add a method to get the size of a managed window
13012         toolbar button.
13013         * InternalWindowManager.cs: Remove the ButtonSize property, this
13014         should be retrieved from the theme.
13015         * MdiWindowManager.cs: Get the button size from the theme
13016         * ThemeWin32Classic.cs: Make the method to get the managed window
13017         titlebar button size public.
13018         - Handle the different button sizes of maximized toolwindows
13019         (should match any maximized window).
13020         - Get the titlebar height from the theme, not the WM (which gets
13021         it from the theme).
13022
13023 2006-06-12  Jackson Harper  <jackson@ximian.com>
13024
13025         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
13026         event down to the mdi window manager.
13027         - Expose some extra stuff to base classes
13028         - Make sure to end the Capture on an NC Mouse up, so that we can
13029         get double clicks properly, and the sizing doens't stick.
13030         - When doing PointToClient contain it in the workable desktop
13031         area, this prevents windows from changing size when the cursor is
13032         pulled outside of the working area while sizing.
13033         * MdiWindowManager.cs: When we get a double click maximize the
13034         window.
13035         - Reset the cursor after handling mode changes.
13036
13037 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
13038
13039         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
13040           current desktop, instead of just assuming a 0, 0 origin. This
13041           is needed for our internal window manager, to know the top
13042           margin of the desktop
13043
13044 2006-06-12  Chris Toshok  <toshok@ximian.com>
13045
13046         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
13047         we need this to get rid of the selected background in the bool
13048         column.
13049         (CancelEditing): move the ConcedeFocus call to above the Abort
13050         call.  Also, set is_changing to false and invalidate the row
13051         header if we were changing before.
13052         (ProcessKeyPreviewInternal): remove, since noone outside this
13053         class calls it anymore.  Roll the code into ProcessKeyPreview.
13054         (EndEdit): remove the internal version.
13055         (InvalidateCurrentRowHeader): make private.
13056
13057         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
13058         Keys.Escape handling (and with it the last call to
13059         DataGrid.EndEdit from outside the class.)
13060
13061
13062 2006-06-12  Chris Toshok  <toshok@ximian.com>
13063
13064         * DataGridTextBox.cs (.ctor): isedit defaults to false.
13065         (OnKeyPress): set isedit to true.
13066         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
13067         already handled by the grid.
13068
13069         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
13070         right.  ugh.
13071         (set_DataSource): SetDataSource always returns true, so stop
13072         putting it in an if statement.
13073         (EndEdit): get rid of some {}'s
13074         (ProcessGridKey): return true in case Keys.Escape.
13075         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
13076         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
13077         PositionChanged, stopped connecting to CurrentChanged.
13078         (GetDataSource): simplify this a bunch.
13079         (SetDataSource): change return type from bool to void.
13080         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
13081         to this, and make sure we don't set ListManager.Position inside
13082         set_CurrentCell.
13083         (OnListManagerItemChanged): if we're passed an actual index,
13084         redraw that row.
13085
13086         * CurrencyManager.cs (set_Position): don't call PullData here.
13087
13088 2006-06-09  Jackson Harper  <jackson@ximian.com>
13089
13090         * TreeNode.cs:  Recalculate the visible order before doing the
13091         Expand/Collapse Below calls, because those calls generate an
13092         expose.
13093         - Reduce calls to the TreeView property, which is mildly expensive
13094         by using a local var.
13095         * Form.cs: Layout the MDI child windows when creating the parent
13096         form.
13097         - Don't use the internal constructor anymore
13098         * MdiClient.cs: use the parent form width/height (if available)
13099         when laying out the child windows, we do this because the
13100         mdiclient isn't docked yet when the initial layout is done.
13101         - Don't need an internal constructor anymore.
13102
13103 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13104
13105         * FileDialog.cs: handle access errors when trying to create a folder
13106         or changing to a directory. No need to initialize out parameters.
13107
13108 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
13109
13110         * FileDialog.cs: Append a number when creating a new folder if the
13111           folder already exists (use parenthesis instead of square brackets)
13112
13113 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
13114
13115         * FileDialog.cs:
13116           - Disabled registry support for windows and added better registry
13117             error checking for other systems (need to investigate why it
13118             works perfectly on my system)
13119           - If a folder already exist show an error MessageBox instead of
13120             trying to create an indexed name.
13121           - Fixed a non intentional typo.
13122
13123 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13124
13125         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
13126
13127 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
13128
13129         * FileDialog.cs: When creating a new folder don't crash if the
13130           folder already exists.
13131
13132 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
13133
13134         * FileDialog.cs: Allmost a complete rewrite.
13135           - added a "virtual" file system that handles the differences
13136             between unix and windows file systems (especially the directory
13137             structure). Moved most of the directory and file handling code
13138             into the vfs.
13139             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
13140             UnixFileSystem and FSEntry.
13141           - Recently used folder/directory, size, location and used file names
13142             (file name ComboBox) are now stored in the registry and get read
13143             before the dialog shows up (fixes part 6 of bug #78446).
13144           - Creation of new folders/directories is now possible (context menu
13145             or ToolBar). Added TextEntryDialog for this that fills in the gap
13146             until ListView.LabelEdit works.
13147           - Fixed cursor handling (bug #78527) and focus handling for
13148             PopupButtonPanel
13149           - Various "Search in" ComboBox enhancements. The content of the
13150             dropdown listbox now almost matches ms.
13151           - Changed the behaviour when the user switches to SpecialFolder
13152             Recent to show the ListView in View.Details.
13153           - Beside using the ToolBar to change the View property of the
13154             file ListView it is now possible to use the context menu too.
13155
13156 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
13157
13158         * ComboBox.cs: Don't create a new ObjectCollection when an item
13159           gets inserted. Just insert the item in the existing object_items
13160           ArrayList.
13161
13162 2006-06-08  Jackson Harper  <jackson@ximian.com>
13163
13164         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
13165         that the treeview and root node checks are done also, this fixes a
13166         regression i caused in the unit tests.
13167
13168 2006-06-07  Wade Berrier <wberrier@novell.com> 
13169
13170         * RichTextBox.cs: More ISO8859-1 -> unicode
13171
13172 2006-06-07  Mike Kestner  <mkestner@novell.com>
13173
13174         * ComboBox.cs : use items to hold highlight/selection so that
13175         collection insertions don't require synchronization.
13176
13177 2006-06-07  Jackson Harper  <jackson@ximian.com>
13178
13179         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
13180         routine.  We now always keep the sized edge at the cursor instead
13181         of computing movement and adjusting rects.  There is one buglet
13182         with this method though when the cursor is moved over area that
13183         the window can not expand too (such as the toolbars on the desktop).
13184
13185 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13186
13187         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
13188         here. Fixes crash on startup in AlbumSurfer.
13189
13190 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
13191
13192         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
13193           values
13194
13195 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13196
13197         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
13198         statement to avoid calling XNextEvent which will block if another thread
13199         took the event that we were expecting. Fixes bug #78605.
13200
13201 2006-06-07  Mike Kestner  <mkestner@novell.com>
13202
13203         * ListView.cs : isolated checkbox clicking from the selection logic.
13204         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
13205
13206 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
13207
13208         * Form.cs: Check that the value passed to Form.DialogResult
13209         is a valid enum value.
13210
13211 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13212
13213         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
13214         Computer'. Clicking it in the network view goes to 'My Computer'.
13215         Added CIFS filesystem type. Display the mount point of filesystems.
13216         Avoid duplicate mount points (happens for me with CIFS);
13217
13218 2006-06-06  Jackson Harper  <jackson@ximian.com>
13219
13220         * InternalWindowManager.cs: Draw the maximized windows buttons
13221         when resizing.
13222
13223 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13224
13225         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
13226         all other dialogs. Fixes bug #78585.
13227
13228 2006-06-06  Mike Kestner  <mkestner@novell.com>
13229
13230         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
13231         Only invalidate checkbox on checkstate changes to avoid flicker.
13232         * ListBox.cs : avoid unselect/select when clicking selected item.
13233         avoid reselection flicker for already multiselected items.
13234         Fixes #78382.
13235
13236 2006-06-06  Jackson Harper  <jackson@ximian.com>
13237
13238         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
13239         the parent form so that the menu is removed if needed.
13240
13241 2006-06-06  Mike Kestner  <mkestner@novell.com>
13242
13243         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
13244         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
13245
13246 2006-06-06  Mike Kestner  <mkestner@novell.com>
13247
13248         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
13249
13250
13251 2006-06-06  Jackson Harper  <jackson@ximian.com>
13252
13253         * Control.cs: Use the property (instead of the field) to get the
13254         default cursor so it is instantiated correctly.
13255         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
13256         resizes so we need to manually repaint the window decorations here.
13257         - Set the titlebar button locations as soon as they are created,
13258         otherwise they are not set correctly on win32.
13259         
13260 2006-06-06  Chris Toshok  <toshok@ximian.com>
13261
13262         * CurrencyManager.cs (set_Position): call PullData before
13263         OnCurrentChanged.
13264         (AddNew): after calling IBindingList.AddNew, update our
13265         listposition, and call OnCurrentChanged/OnPositionChanged (without
13266         calling PullData).
13267         (OnCurrentChanged): remove the call to PullData from here.
13268         (OnItemChanged): remove the call to PushData from here.
13269         (OnPositionChanged): change the test from == null to != null to
13270         match the other methods.
13271         (ListChangedHandler): the grossest part of the patch.  Implement
13272         this such that it passes the unit tests in CurrencyManagerTest and
13273         the output more or less matches that of MS's implementation.
13274  
13275 2006-06-06  Mike Kestner  <mkestner@novell.com>
13276
13277         * ListView.cs : only update check state on single click.
13278         * ThemeWin32Classic.cs : fix focus drawing for details view without
13279         fullrowselect.  Fixes #78454.
13280         * XplatUIX11.cs : fix for double click emission.
13281
13282 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
13283
13284         * PropertyGridView.cs : Applied Atsushi's patch to fix
13285         font dialog bug  (#78197).
13286
13287 2006-06-05  Jackson Harper  <jackson@ximian.com>
13288
13289         * TreeNode.cs: Compute the next node for expanding/collapsing
13290         correctly. We now factor in nodes without a NextNode
13291         correctly. (Fixes somes cases in nunit-gui).
13292         * InternalWindowManager.cs: Set the bounds when updating the
13293         virtual position of a tool window.
13294         
13295 2006-06-05  Chris Toshok  <toshok@ximian.com>
13296
13297         * DataGrid.cs: rename cached_currencymgr to list_manager.
13298         (set_CurrentCell): move SetCurrentCell code here, and clean it up
13299         some.
13300         (CurrentRow, CurrentColumn): single accessors so we can make the
13301         cursor movement code a lot easier to understand.
13302         (CurrentRowIndex): implement this in terms of CurrentRow.
13303         (BeginEdit): clean this up a bit.
13304         (CancelEditing): sort out the is_editing/is_changing/is_adding
13305         stuff a little.
13306         (EndEdit): minor changes.
13307         (OnKeyDown): add a comment about a (most likely) unnecessary
13308         check.
13309         (OnMouseDown): cancel editing when we click on a row header.  And
13310         use the CurrentRow setter, not CurrentCell.
13311         (ProcessDialogKey): directly call ProcessGridKey.
13312         (UpdateSelectionAfterCursorMove): factor out this common block of
13313         code (it's used everywhere that we move the cursor by updating row
13314         or column).
13315         (ProcessGridKey): pretty substantial overhaul.  Use the
13316         CurrentRow/CurrentColumn properties to make the code a lot more
13317         readable.  Only use the CurrentCell property when we have to
13318         modify both row and column at once.  Tab behavior is still broken,
13319         and Delete is untested.
13320         (Select): if we have no selected rows, set selection_start to
13321         @row.
13322         (EditCurrentCell): rename EditCell this.  It was only ever invoked
13323         with CurrentCell as the arg, so drop the arg and rename it.
13324
13325         * DataGridColumnStyle.cs: clean up the constructors a little, and
13326         drop CommonConstructor().
13327
13328         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
13329         actually get notified when the user hits it.
13330         (ProcessKeyMessage): *substantially* simplify this method.
13331         There's no reason (that I can see) for the textbox to be making
13332         calls into the datagrid at all.  Remove all of them but the ones
13333         for Enter handling.  those will take some more work.
13334
13335         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
13336         calling HideEditBox.
13337         (HideEditBox): if we have an active textbox, render it invisible
13338         without causing a re-layout of the datagrid.
13339
13340 2006-06-05  Mike Kestner  <mkestner@novell.com>
13341
13342         * ListView.cs : fix NRE crasher when focuseditem is cleared by
13343         collection changes by resetting it to Items[0].  Fixes #78587.
13344
13345 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13346
13347         * MessageBox.cs: if the height of the text is larger than the icon_size,
13348         use that. Fixes bug #78575.
13349
13350 2006-06-05  Jackson Harper  <jackson@ximian.com>
13351
13352         * TreeView.cs: Fix line drawing when scrolling.  To do this each
13353         node is basically responsible for drawing its entire horizontal
13354         area.  When drawing a node it draws its parent node lines if
13355         needed.
13356         - Adjust the clip area to the viewport rectangle
13357         - Fix Left/Right key handling to match MS. (It expand/collapses
13358         and moves to parents/first child but does not move selection to
13359         sibling nodes).
13360         - Fix SetTop to work with new bound calculation code
13361         - When scrollbars are no longer needed we need to reset scrolling
13362         vars and recalculate the visible order so the redraw is correct
13363         * TreeNode.cs: We can't expand/collapse nodes with no children.
13364
13365 2006-06-03  John Luke  <john.luke@gmail.com> 
13366
13367         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
13368         so the colors work without dev packages
13369         
13370 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
13371
13372         * Control.cs 
13373           - Select: Implemented to just use activate. Seems to match MS 
13374             behaviour closest. Documented to only do actual control walking 
13375             based on it's parameters if in a container control so I moved 
13376             the code there.
13377           - Removed selection check logic from our internal Select() method
13378         * ContainerControl.cs:
13379           - Select: Moved selection logic from Control here, since MS documents
13380             that containers obey the bool arguments. No longer calling base
13381
13382 2006-06-02  Jackson Harper  <jackson@ximian.com>
13383
13384         * TreeView.cs: If the selected node isn't changed when we get
13385         focus update the previously selected node so that we see the
13386         selection box.
13387
13388 2006-06-02  Mike Kestner  <mkestner@novell.com>
13389
13390         * ComboBox.cs: restructure grab and general mouse event handling.
13391         Make the composite control raise mouse events like it was a single
13392         control for leaves/enters/motion/up/down events.  fix dropdown list
13393         coordinate mangling and refactor it into the scrollbar subclass to
13394         reduce code duplication.  Fixes #78282 #78361 and #78457.
13395
13396 2006-06-02  Mike Kestner  <mkestner@novell.com>
13397
13398         * ScrollBar.cs: remove Capture setting/clearing, as it happens
13399         automatically in the Control.WndProc.
13400
13401 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13402
13403         * FileDialog.cs: fix crash when running SharpChess, which sets the
13404         FilterIndex to 2 with only one Filter.
13405
13406 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13407
13408         * ToolBar.cs: add SizeSpecified property.
13409         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
13410         try to figure out our real size, otherwise fallback to what the
13411         container says.
13412
13413 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
13414
13415         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
13416         * Control.cs (WndProc): MS always calls the DefWndProc to pass
13417           up the event
13418
13419 2006-06-01  Mike Kestner  <mkestner@novell.com>
13420
13421         * ListView.cs: revamp the focus management in ListView.  It still
13422         causes churn of LostFocus/GotFocus emissions on clicks, but it's
13423         better than not handling focus at all.  Will revisit when pdb feels
13424         the general focus handling is solid.  Fixes #78526.
13425
13426 2006-06-01  Jackson Harper  <jackson@ximian.com>
13427
13428         * TreeView.cs: Set the default border style in the constructor.
13429         - Move painting to use OnPaintInternal instead of capturing
13430         WM_PAINT, this is the correct way of doing things
13431         - UpdateBelow shouldn't invalidate the scrollbar area
13432         - Cap the top on update below in case the node was above the top
13433         of the viewport rectangle.
13434         - ExpandBelow and Collapse below need to obey Begin/End Update.
13435         * TreeNode.cs: Make is_expanded internal so the treenode
13436         collection can change it without firing the whole event chain.
13437         * TreeNodeCollection.cs: When clearing all the child nodes make
13438         sure to recalc the visible order.
13439         - Improve algo for remove the top node
13440
13441 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
13442
13443         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
13444           SendMessage directly calling window procedures, which in turn might
13445           call SetFocus()
13446
13447 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
13448
13449         * Control.cs: Don't handle WM_SETFOCUS if the same window already
13450           has focus (works around X11 sending a FocusIn after our SetFocus)
13451         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
13452
13453 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
13454
13455         * Mime.cs: Fix for the NET_2_0 build.
13456           NameValueCollection needs StringComparer now.
13457
13458 2006-05-31  Chris Toshok  <toshok@ximian.com>
13459
13460         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
13461         return (via an out parameter) the starting X of the column.
13462         (UpdateVisibleColumn): track change to FromPixelToColumn.
13463         (HitTest): add a ColumnResize case here.
13464         (DrawResizeLine): new function, probably poorly named.
13465
13466         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
13467         only need to keep one reference.
13468         (set_ListManager): same.
13469         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
13470         Also, add support for HitTestType.ColumnResize.
13471         (OnMouseMove): add column resize behavior here, and change the
13472         cursor to the correct one as we move around the datagrid.
13473         (OnMouseUp): terminate the column resize if we're resizing.
13474         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
13475         for the current cell.
13476         (ConnectListManagerEvents): use cached_currencymgr.
13477         (DisconnectListManagerEvents): fill this in, using
13478         cached_currencymgr.
13479         (SetCurrentCell): remove cached_currencymgr_events handling.
13480         (SetDataMember): only call DisconnectListManagerEvents if
13481         cached_currencymgr is != null.
13482         (SetDataSource): same.
13483         (OnListManagerCurrentChanged): cached_currencymgr_events ->
13484         cached_currencymgr.
13485
13486 2006-05-31  Jackson Harper  <jackson@ximian.com>
13487
13488         * BindingManagerBase.cs: Remove somedebug code that creeped into
13489         SVN.
13490         * TreeNode.cs: We get the indent level dynamically right now, so
13491         don't track it as a member.
13492         * TreeNodeCollection.cs: Make sure all nodes added to the list
13493         have parents, treeviews/topnodes setup properly.
13494         - Don't attempt to track indent level.
13495
13496 2006-05-30  Jackson Harper  <jackson@ximian.com>
13497
13498         * BindingContext.cs: Create the currency manager tables here.
13499         This allows us to more easily create null tables (when bad data
13500         members are used), and more easily create related currency
13501         managers.
13502         * CurrencyManager.cs: All the table creation stuff is done by the
13503         binding context now.
13504         - Current should throw an exception if listposition is -1.
13505         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
13506         been bound yet.
13507
13508 2006-05-30  Mike Kestner  <mkestner@novell.com>
13509
13510         * ListView.cs: allow reexpansion of zero-width column headers.
13511         Fixes #78528.
13512
13513 2006-05-28  Chris Toshok  <toshok@ximian.com>
13514
13515         * CurrencyManager.cs (get_Current): after the late binding
13516         listposition = -1 fix, we need to guard against it here and return
13517         null, otherwise we raise an exception (which is swallowed
13518         elsewhere, and breaks datagrid databinding.)
13519
13520 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
13521
13522         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
13523           than WM_SYSKEY, don't throw if get something unexpected (#78507)
13524
13525 2006-05-26  Jackson Harper  <jackson@ximian.com>
13526
13527         * ControlPaint.cs:
13528         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
13529         values, it's faster and it's all we care about (we don't care if
13530         the names aren't equal).
13531         * KeyboardLayouts.cs: Eliminate some dead code.
13532         - Lazy init things
13533         * X11Keyboard.cs: Lazy init keyboard detection.
13534         - Cleanup access modifiers a little.
13535
13536 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
13537
13538         * XplatUIX11.cs: Once again, attempting to get layout just right.
13539
13540 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
13541
13542         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
13543           the sizes of each link section, that will result in sizes that
13544           match DrawString's layout (Fixes #78391)
13545
13546 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
13547
13548         * FileDialog.cs: If AddExtension property is true autocomplete the
13549           extensions in SaveFileDialog correctly. Fixes bug #78453.
13550           Set MyNetwork and MyComputer to "C:\" for windows. This should
13551           fix part 8 of bug #78446 for now.
13552
13553 2006-05-26  Chris Toshok  <toshok@ximian.com>
13554
13555         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
13556         invalidate the current row header if we need to, but presumably
13557         we'll invalidate the row corrsponding to the bounds or
13558         editingControl.
13559         (GridHScrolled): switch back to this method, as it's part of the
13560         public api.  *sigh*.
13561         (GridVScrolled): same.
13562         (OnMouseWheel): hack up something that more or less works.  Call
13563         GridHScrolled/GridVScrolled directly, instead of duplicating much
13564         of their code here.
13565         (EnsureCellVisibility): reinstate a bunch of this code, since we
13566         can't just set the scrollbar Value and expect to do all the work
13567         in the ValueChanged handler.  Also, Call Update() after scrolling
13568         in one direction so the other XplatX11.ScrollWindow call has the
13569         proper stuff in the proper places.
13570         (EditCell): set is_editing to true before calling .Edit.
13571
13572         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
13573         don't bother comparing first.
13574         (OnKeyPress): call grid.ColumnStartedEditing before calling
13575         base.OnKeyPress.  this will set is_changing and invalidate the row
13576         header if necessary.
13577         (ProcessKeyMessage): for WM_CHAR messages, call
13578         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
13579         and WM_KEYDOWN.
13580         
13581         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
13582         it's done in the DataGrid.
13583         (NextState): call grid.ColumnStartedEditing, which takes care of
13584         invalidating the row header (and setting is_changing).
13585
13586         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
13587         here.  it's done in the DataGrid.
13588
13589 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13590
13591         * Control.cs: allow changing the cursor when the mouse position is
13592         out of bounds but Capture is set.
13593         * LinkLabel.cs: handle the case when the mouse button is pressed on the
13594         linklabel but released somewhere else.
13595
13596 2006-05-25  Jackson Harper  <jackson@ximian.com>
13597
13598         * TreeView.cs: When we get focus if there is no selected node make
13599         it the top node
13600         - Remove some uneeded setup code from Draw.
13601         * TreeNodeCollection.cs: If the tree doesn't have a top node when
13602         a new node is inserted make the new node the top.
13603         * XplatUIX11.cs:
13604         * Timer.cs: Use Utc time so that no local time zone stuff needs to
13605         be used (should be faster).
13606         
13607 2006-05-25  Chris Toshok  <toshok@ximian.com>
13608
13609         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
13610         problem with the last commit.
13611
13612 2006-05-25  Chris Toshok  <toshok@ximian.com>
13613
13614         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
13615         need the invalidate call here, while scrolling right-to-left via
13616         the left arrow key (i.e. moving the editing cell while scrolling).
13617
13618         * DataGrid.cs (.ctor): remove the initialization of
13619         ctrl_pressed/shift_pressed.  We no longer track them using key
13620         up/down handlers, but by using Control.ModifierKeys.  Also, switch
13621         to using ValueChanged handlers on the scrollbars instead of
13622         Scrolled event handlers.  This simplifies a bunch of the scrolling
13623         code.
13624         (GridHValueChanged): rename from GridHScrolled, and change it to
13625         work with the new event args.
13626         (GridVValueChanged): same.
13627         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
13628         (OnMouseWheel): actually scroll the datagrid.  Don't change the
13629         selected cell.
13630         (ProcessGridKey): correct all the keyboard navigation stuff I
13631         could find.  Ctrl up/down/left/right/home/end work now.
13632         (EnsureCellVisibility): correct method name spelling.  Also,
13633         simplify this a touch by not explicitly calling the
13634         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
13635         scrollbar value.
13636         (OnKeyUpDG): no need for this method now.
13637         
13638 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13639
13640         * LinkLabel.cs: display the OverrideCursor when hovering the label.
13641         Fixes bug #78392.
13642
13643 2006-05-25  Chris Toshok  <toshok@ximian.com>
13644
13645         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
13646         r61019.
13647
13648 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
13649
13650         * Application.cs: Moved setting of is_modal and closing to before
13651           we create the control, to allow the event handlers called as a
13652           result of creation affect closing. Also removed Gonzalo's previous
13653           change to setting DialogResult, the behaviour has been moved to 
13654           Form.ShowDialog()
13655         * Form.cs: 
13656           - ShowDialog(): Removed explicit creation of the form, let RunLoop
13657             handle it instead
13658           - ShowDialog(): If no dialog result is set, we need to return Cancel
13659           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
13660             the close is cancelled
13661
13662 2006-05-25  Jackson Harper  <jackson@ximian.com>
13663
13664         * StatusBar.cs: We only need to update the sizes of the other
13665         panels when we have auto size contents.  Also we are only updating
13666         the contents of the panel, not the borders, so compensate for the
13667         border width (TODO: get this width from the theme somehow).
13668         * TreeView.cs: Scrollable is true by default
13669         - Use invalidate instead of refresh where needed
13670         - Factor the scrollable value into scrollbar updating
13671         - Update the scrollbars if the Scrollable property is altered
13672         - Update the selected node if its ImageIndex is changed
13673         - Handle null nodes in UpdateNode (mainly so we don't have to
13674         check if selected is null when updating it
13675         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
13676         are factored into the visible count
13677         - Use VisibleCount for clarity in the code
13678         - When the font is changed we need to recurse through all the
13679         nodes and invalidate their sizes
13680         
13681 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13682
13683         * Application.cs: set the DialogResult to fixed when the main form is
13684         hidden or destroyed while being modal.
13685
13686 2006-05-25  Miguel de Icaza  <miguel@novell.com>
13687
13688         * Theme.cs: Use Tangoified messagebox icons. 
13689
13690         (GetSizedResourceImage): Also cope with width = 0 and do not
13691         trigger a warning in that case (0 means "give me your icon from
13692         the resouce, no special size needed).
13693
13694 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
13695
13696         * Application.cs: Leave runloop if the the main modal form is 
13697           hidden (fixes #78484)
13698
13699 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
13700
13701         * BindingContext.cs : reject null datasource in Contains() and
13702           Item[].
13703         * CurrencyManager.cs : check data_member validity when data_source
13704           is dataset. When it is late binding, the initial position is -1.
13705
13706 2006-05-24  Jackson Harper  <jackson@ximian.com>
13707
13708         * TreeNodeCollection.cs: Dont't recalculate the visible order on
13709         inserted nodes that aren't visible.  This changes the
13710         max_visible_order which confuses scrollbar settings.
13711         - Use the enumerator to get the prev node instead of duplicating
13712         code.
13713         * TreeView.cs: Use new method for setting scrollbar values
13714         - Don't set the bounds every time the scrollbar is updated
13715         - When updating below the root node use an invalidate instead of a
13716         refresh to prevent the child controls (scrollbars) from being
13717         refreshed. (UpdateBelow still needs to be reworked anyways).
13718         - Reenable SetBottom now that visible orders are set correctly,
13719         added some debug code incase we ever get bad values there again.
13720         - Set the scrollbar max to 2 less then the max value, this
13721         compensates for the max value being one above the node count, and
13722         for scrollbars adding one extra "notch".
13723         - When drawing image nodes if there is an imagelist we draw the
13724         first image in the list if the supplied image index is out of the
13725         image list's bounds.
13726         
13727 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
13728
13729         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
13730           we receive a size change from the WM (Fixes #78503)
13731
13732 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
13733
13734         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
13735           rectangle (Fixes #78501)
13736
13737 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
13738
13739         * ButtonBase.cs: 
13740           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
13741             as a bitfield.
13742           - Fixed MouseMove to no longer switch pressed state unless the left
13743             mouse button is pressed. Atsushi provided the original patch (#78485)
13744           
13745 2006-05-24  Jackson Harper  <jackson@ximian.com>
13746
13747         * ScrollBar.cs: New internal methods that allow us to change a
13748         couple values on the scrollbar (the most common case is maximum
13749         and large change) without getting multiple invalidates.
13750
13751 2006-05-24  Chris Toshok  <toshok@ximian.com>
13752
13753         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
13754         (Edit): save off the original state in oldState, and set
13755         grid.is_editing to true.
13756         (OnKeyDown): abort editing if escape is pressed.  also, call
13757         NextState if space is pressed.
13758         (OnMouseDown): call NextState.
13759         (NextState): factor out shared code from OnKeyDown and OnMouseDown
13760         here.  Also, only invalidate the row header once (on the initial
13761         is_changing switch) to save on redraws.
13762
13763 2006-05-24  Chris Toshok  <toshok@ximian.com>
13764
13765         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
13766         if the value in the cell is different than it was before.  This
13767         keeps us from triggering a layout when we move around a datarid
13768         with a highlighted cell.
13769         (Edit): suspend layout when creating/positining the text box, and
13770         resume passing false so we don't ever actually re-layout.
13771         (ReleaseHostedControl): same.
13772         (EnsureTextBox): reformat slightly, and set WordWrap to false.
13773
13774         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
13775         control-key sequences should go to the datagrid - remove that
13776         lock.  Also, modify the conditions under which we move between
13777         cells when moving the cursor within a cell, and remove the "this"
13778         and "base" from field accesses.  We weren't even consistent, given
13779         they all were in the base class.
13780
13781 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
13782
13783         * Binding.cs : (.ctor)
13784           An obvious NRE fix for BindingTest.CtorNullTest().
13785
13786 2006-05-23  Chris Toshok  <toshok@ximian.com>
13787
13788         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
13789         them between lines.  This fixes some quirks editing cells in the
13790         datagrid.
13791
13792 2006-05-23  Jackson Harper  <jackson@ximian.com>
13793
13794         * TreeView.cs: Use begin/end update when doing expand/collapse all
13795         so that we don't get flicker on the scrollbar.
13796
13797 2006-05-23  Jackson Harper  <jackson@ximian.com>
13798
13799         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
13800         treenode calculations to be independant of the painting code. To
13801         do this nodes track a visible order which is calculated by the
13802         treeview.
13803         - Call new methods for expanding/collapsing nodes.  These methods
13804         use scrollwindow so we don't have to update everything below the
13805         node.
13806         * TreeView.cs: Refactored drawing and scrolling code.  We don't
13807         need to update nodes when drawing anymore or calculate scrollbar
13808         stuff.
13809         - Added new methods for expanding/collapsing nodes. These methods
13810         use ScrollWindow so as to not have to redraw all the nodes below.
13811         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
13812         we add/remove nodes or sort.
13813         - Handle removing the selected and the top node properly.
13814
13815 2006-05-23  Chris Toshok  <toshok@ximian.com>
13816
13817         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
13818         maybe this should actually happen in the datagrid code?
13819         (EndEdit): no need to invalidate anything, given that
13820         ReleaseHostedControl causes the datagrid to relayout, which
13821         invalidates everything anyway.
13822
13823         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
13824         in SetCurrentCell).
13825         (set_SelectionBackColor): call InvalidateSelection instead of
13826         Refresh.
13827         (set_SelectionForeColor): same.
13828         (BeginEdit): Flesh this out a bit.
13829         (CancelEditing): only do any of this if we're editing/adding.
13830         (EndEdit): same.
13831         (OnMouseDown): there's no need to cancel editing here, it's done
13832         in SetCurrentCell.
13833         (SetCurrentCell): only invalidate the current row header if it's a
13834         different row than the new one.
13835         (ShiftSelection): fix this to work like MS does.
13836         (ResetSelection): factor out the invalidation of selected_rows to
13837         InvalidateSelection.
13838         (SetDataSource): cancel any editing that's going on.
13839
13840         * DataGridColumnStyle.cs
13841         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
13842         call the non-interface version.
13843
13844         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
13845         header rectangle with the clip rectangle so we don't redraw the
13846         entire header for just a small area.  Gets rid of the last flicker
13847         when horizontally scrolling.
13848         (DataGridPaintRow): same.
13849
13850 2006-05-23  Mike Kestner  <mkestner@novell.com>
13851
13852         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
13853         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
13854         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
13855         Critical bug report.
13856
13857 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
13858
13859         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
13860           and this fixes #78493
13861
13862 2006-05-23  Miguel de Icaza  <miguel@novell.com>
13863
13864         * Theme.cs (GetSizedResourceImage): Scale images if the proper
13865         size is not found.  
13866         
13867         * FileDialog.cs: Do not change the background for the side bar as
13868         it wont work nicely with the theme, and also reduces the artifacts
13869         in rendering the icons (which I want to fix too).
13870
13871         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
13872         resources, not resgen resources. 
13873
13874         (PlatformDefaultHandler): Pull images using the new API.
13875
13876 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
13877
13878         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
13879           a reference to the hwnd and will not remove it unless there are
13880           no pending exposures (fixes #78341)
13881         * XplatUI.cs: Improved debug
13882
13883 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
13884
13885         * MenuAPI.cs : don't handle OnClick event when it was not the left
13886           button. Fixed bug #78487.
13887
13888 2006-05-23  Mike Kestner  <mkestner@novell.com>
13889
13890         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
13891         prefer submenus to the top menu for item lookup, to avoid popping down
13892         top-row items.
13893
13894 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
13895
13896         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
13897           Graphics.FillRectangle as the visual results are really bad (even
13898           on win). We now draw perfect arrows (and perfect shadows when the
13899           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
13900           Pen.DashPattern to draw the dots of each line.
13901
13902 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
13903
13904         * FileDialog.cs: Update the filename combobox when navigating through
13905           the ListView with the cursor keys. Fixes part 7 of bug #78446.
13906
13907 2006-05-22  Mike Kestner  <mkestner@novell.com>
13908
13909         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
13910         Fixes #78463.
13911
13912 2006-05-22  Mike Kestner  <mkestner@novell.com>
13913
13914         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
13915         requests. Fix a misspelled parameter and a copy paste exception error
13916         in Select.
13917
13918 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
13919
13920         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
13921           to get the same width/height (5/13) on X11 as the default font has on
13922           win32. This means that our DefaultFont emSize is smaller than the 
13923           the MS SWF equivalent (even thought the width/height stays the same)
13924
13925 2006-05-20  Jackson Harper  <jackson@ximian.com>
13926
13927         * MdiClient.cs:
13928         * MdiWindowManager.cs:
13929         * InternalWindowManager.cs: Make sure to use the border width from
13930         the theme.
13931
13932 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
13933
13934         * PrintDialog.cs: Implements printer details
13935
13936 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
13937
13938         * FileDialog.cs: Added focus handling for PopupButtonPanel.
13939           Fixes part 1 and 2 of bug #78446
13940
13941 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
13942
13943         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
13944           instead of sticking to the first ever calculated value
13945
13946 2006-05-19  Mike Kestner  <mkestner@novell.com>
13947
13948         * ComboBox.cs: fix mouse motion selection to use MousePosition and
13949         PointToClient, since Capture is set. Fixes #78344.
13950
13951 2006-05-19  Mike Kestner  <mkestner@novell.com>
13952
13953         * ListView.cs: match MS behavior in Details view where items are not
13954         drawn if Columns.Count == 0. 
13955         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
13956         Use a separate pen to draw the check, since changing the width affects
13957         the box as well.  Fixes #78454.
13958
13959 2006-05-18  Miguel de Icaza  <miguel@novell.com>
13960
13961         * ListView.cs: ArgumentOutOfRangeException, single versions of the
13962         exception should throw the name of the invalid argument.
13963
13964         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
13965         there are no files listed. 
13966
13967 2006-05-18  Jackson Harper  <jackson@ximian.com>
13968
13969         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
13970         up.
13971
13972 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
13973
13974         * Control.cs: Brought back our old UpdateZOrder method as a private
13975           function and switched our calls from UpdateZOrder to the new one.
13976           This fixes the Paint.Net canvas disappearing bug.
13977
13978 2006-05-18  Jackson Harper  <jackson@ximian.com>
13979
13980         * Theme.cs:
13981         * ThemeWin32Classic.cs:
13982         * InternalWindowManager.cs: Move the drawing into the theme,
13983         expose everything the theme should need from the window manager.
13984
13985 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
13986
13987         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
13988           from the call to NativeWindow to avoid walking up the parent chain
13989           further than needed (speeds up setting cursors and avoids setting
13990           the wrong cursor if a parent has another cursor defined)
13991         * Cursor.cs: When loading an icon as cursor, MS uses the center of
13992           the icon as hotspot, not what's contained as hotspot in the icon
13993           file. This fixes the perceived drawing offset seen with Paint.Net
13994         
13995 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
13996
13997         * XplatUIX11.cs: 
13998           - Store the calculated rectangle in Hwnd object and use it when 
13999             setting the client size
14000           - Force Toolwindows to always be type Dock, to ensure they're on top
14001
14002 2006-05-18  Mike Kestner  <mkestner@novell.com>
14003
14004         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
14005         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
14006         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
14007         Substantial refactoring to remove confusing nested classes. Coding
14008         standard and Get+Set->property refactorings.  Shift to index based
14009         highlighting in ComboListBox instead of constantly using IndexOf and
14010         Items[]. Add invalidations on resize for DropDownList to fix ugliness
14011         in FileDialog growth.  Draw borders manually since Simple mode needs
14012         to look like two independent controls.  Make listbox border
14013         conditional to DropDownStyle.  Improved OwnerDraw support.
14014
14015 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
14016
14017         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
14018         Don't set the disposed graphics to null, so we can throw the "right"
14019         exception if the graphics is reused later (added a flag to avoid 
14020         double disposing). Some behaviours are different under 2.0 and are
14021         filled under bug #78448.
14022
14023 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
14024
14025         * Control.cs: When double-buffering is enabled, we need to reset
14026           our graphics context between paint calls. Otherwise, any 
14027           transformations and other alterations on the context will 
14028           become cumulative (#77734)
14029
14030 2006-05-18  Mike Kestner  <mkestner@novell.com>
14031
14032         * ListView.cs: do focused item selection like MS on clicks. 
14033         Rework focus handling for ItemControl so LostFocus invalidates as
14034         well.
14035         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
14036         the ListView ItemControl has focus.
14037
14038 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
14039
14040         * XplatUIX11.cs: If client_window ends up being width or height zero
14041           due to border settings, move it off window inside whole_window (#78433)
14042
14043 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
14044
14045         * Mime.cs: Shrink the mime file cache correctly.
14046
14047 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
14048
14049         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
14050
14051 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
14052
14053         * XplatUIX11.cs (AddExpose): More sanity checks
14054
14055 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
14056
14057         * XplatUIX11.cs:
14058           - AddExpose: Don't add expose ranges outside the size of our
14059             window
14060           - Cast opacity values to Int32 to avoid crashes with certain
14061             values
14062           - Added disabled code paths that protect against illegal cross-
14063             thread painting (Developers.exe)
14064
14065 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
14066
14067         * ProgressBar.cs: Invalidate the control when it's resized
14068           since block size is based on control size. (#78388)
14069
14070 2006-05-16  Miguel de Icaza  <miguel@novell.com>
14071
14072         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
14073         of setting the incoming argument to the "reset" value, we set the
14074         this.datamember to string.empty (before we were invalidating the
14075         incoming data).   
14076
14077         Fixes 78420
14078
14079 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
14080
14081         * Form.cs: Only apply transparency settings after the form
14082           is created. (Fixes #77800)
14083
14084 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
14085
14086         * ApplicationContext.cs: Grab the HandleDestroyed event so
14087           we know when to fire OnMainFormClosed 
14088
14089 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
14090
14091         * Application.cs: Introduced sub-class to allow tracking of
14092           threads and centralized triggering of the event mess for
14093           ThreadExit, AppExit, etc..  (#76156)
14094
14095 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
14096
14097         * MimeIcon.cs:
14098           - Do not return a null icon index value for a mime subclass.
14099             Instead try the main mime type class too.
14100           - Seems that some newer distributions don't have a link to some
14101             gnome default icons anymore. So check the default gnome dir too.
14102           
14103
14104 2006-05-16  Jackson Harper  <jackson@ximian.com>
14105
14106         * MdiClient.cs: Don't paint the parent background image if we have
14107         our own background image.
14108
14109 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
14110
14111         * Control.cs:
14112           - PerformLayout: Do not shrink space filled by DockStyle.Fill
14113             controls, all filled controls are supposed to overlap (#78080)
14114           - UpdateZOrder is supposed to update the control's z-order in the
14115             parent's z-order chain. Fixed to behave like that
14116           - BringToFront: Removed obsolete code
14117           - SendToBack: Simplyfied
14118           - SetChildIndex: Trigger layout calculations when Z-order changes
14119             since layout is done by z-order
14120
14121 2006-05-16  Chris Toshok  <toshok@ximian.com>
14122
14123         [ fixes bug #78410 ]
14124         * DataGrid.cs (set_AlternatingBackColor): use
14125         grid_drawing.InvalidateCells instead of Refresh().
14126         (set_BackColor): call grid_drawing.InvalidateCells.
14127         (set_BackgroundColor): use Invalidate instead of Refresh.
14128
14129         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
14130         invalidate the cell area.
14131
14132 2006-05-15  Chris Toshok  <toshok@ximian.com>
14133
14134         [ fixes bug #78011 ]
14135         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
14136         on to DataGridPaintRow.
14137         (DataGridPaintRow): take a clip argument, and only draw the cells
14138         which intersect it.  same with the not_usedarea.
14139
14140         * Theme.cs (DataGridPaintRow) add @clip parameter.
14141
14142         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
14143         XplatUI.ScrollWindow.
14144         (ScrollToRow): same.
14145
14146         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
14147         with last column which was causing a gray swath to appear with the
14148         XplatUI.ScrollWindow code.
14149
14150 2006-05-15  Chris Toshok  <toshok@ximian.com>
14151
14152         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
14153         use XplatUI.ScrollWindow.
14154         (VerticalScrollEvent): use XplatUI.ScrollWindow.
14155
14156 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
14157
14158         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
14159
14160 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
14161
14162         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
14163           file since there are no equivalent X11 cursors
14164
14165 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14166
14167         * MonthCalendar.cs : DateTimePicker should reflect selected date
14168           on mouse*up*, not mouse*down*. Fixed originally reported part of
14169           bug #76474.
14170
14171 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
14172
14173         * TabControl.cs : When argument index is equal or more than tab
14174           count, just ignore. Fixed bug #78395.
14175
14176 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
14177
14178         * Control.cs: Dispose all child controls when control is diposed (#78394)
14179
14180 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
14181
14182         * ColorDialog.cs: Finally it is possible to select the color with
14183           the text boxes
14184
14185 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
14186
14187         * PrintDialog.cs: Fix typo
14188
14189 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
14190
14191         * PrintDialog.cs: PrintDialog is not resizable
14192         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
14193           color. Made some ToolBar drawing methods protected virtual.
14194
14195 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
14196
14197         * PrintDialog.cs: Implementation of the PrintDialog
14198
14199 2006-05-12  Chris Toshok  <toshok@ximian.com>
14200
14201         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
14202         thumb, instead use MoveThumb.  This has the side effect of making
14203         most of the other thumb moving machinery use MoveThumb as well.
14204         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
14205         need to actually invalidate the rectangle where the new thumb will
14206         go.
14207         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
14208         We force an Update() after, so it's not as fast as it could be,
14209         but at least there's zero flicker and no droppings.
14210         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
14211         (UpdateThumbPos): add another argument (dirty), which says whether
14212         or not to calculate/add dirty regions which we later invalidate.
14213         For cases where we know we're going to use MoveThumb, we pass
14214         false for this.  Otherwise, pass true.
14215
14216 2006-05-12  Jackson Harper  <jackson@ximian.com>
14217
14218         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
14219         the status bar.
14220         
14221 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
14222
14223         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
14224           and GetClipRegion methods and UserClipWontExposeParent property.
14225         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
14226           overriding UserClipWontExposeParent property, setting to false, since
14227           Win32 handles the required expose messages to draw our clipped parent
14228           areas internally
14229         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
14230           PaintEventStart to set the user clip region if set.
14231         * Control.cs: 
14232           - Now internally tracking the Region for the control since we need to
14233             store it if the handle is not yet created and only set it when it
14234             becomes created. Before setting the region forced handle creation
14235           - Added code to draw the parents underneath a user-clipped region
14236         * Hwnd.cs: Added UserClip property
14237
14238 2006-05-12  Chris Toshok  <toshok@ximian.com>
14239
14240         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
14241         (set_Maximum): same.
14242         (set_Minimum): same.
14243         (set_SmallChange): same.
14244         (OnMouseUpSB): remove the call to refresh when releasing the
14245         thumb.  We shouldn't need it.
14246         
14247 2006-05-12  Miguel de Icaza  <miguel@novell.com>
14248
14249         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
14250         AutoSize set to None, we do not need to relayout everything, we
14251         just need to invalidate the current region.
14252
14253         (Draw): Do not draw the entire ClientArea, just redraw the
14254         clip area being passed.
14255
14256         * MdiClient.cs: Make MdiClient constructor with the Form argument
14257         internal. 
14258
14259 2006-05-12  Jackson Harper  <jackson@ximian.com>
14260
14261         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
14262         parents background image,  but strangely not their own.
14263         - (DrawStatusBarPanel): Take into account horizontal alignment
14264         when drawing the strings and icons.
14265
14266 2006-05-12  Mike Kestner  <mkestner@novell.com>
14267
14268         * ListBox.cs: avoid invalidations for focus when the collection is
14269         empty. 
14270
14271 2006-05-12  Chris Toshok  <toshok@ximian.com>
14272
14273         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
14274         invalidate the entire thumb area.  Call InvalidateDirty which
14275         limits the redraw to the thumb itself and surrounding pixels.
14276
14277         * XplatUIX11.cs (ScrollWindow): optimize copying.
14278         
14279 2006-05-12  Chris Toshok  <toshok@ximian.com>
14280
14281         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
14282         Figure out the positioning/layout in a single pass instead of
14283         multiple recursive invocations.  Speeds up the initial display of
14284         the data grid.  Also, make many things private that were
14285         originally public but unused outside this class.
14286
14287 2006-05-11  Jackson Harper  <jackson@ximian.com>
14288
14289         * MdiClient.cs: Improved layout code.
14290
14291 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
14292
14293         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
14294           not SelectedObject.
14295
14296 2006-05-11  Chris Toshok  <toshok@ximian.com>
14297
14298         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
14299         union of that will always be {0,0,width,height}.
14300
14301 2006-05-11  Jackson Harper  <jackson@ximian.com>
14302
14303         * Form.cs: Match MS's DefaultSize for forms (they must have
14304         changed the size in sp2).
14305
14306 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
14307
14308         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
14309
14310 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
14311
14312         * TextControl.cs : Fixed bug #78109. This incorrect position
14313           comparison caused crash on automatic line split.
14314         * TextBoxBase.cs : reduce duplicate code.
14315
14316 2006-05-10  Jackson Harper  <jackson@ximian.com>
14317
14318         * MdiClient.cs: Active form is only sent to the back when using
14319         the Next form functionality, when a form is clicked the current
14320         active shouldn't be sent to the back.
14321         - Layout the mdi windows when the container is first made visible.
14322         * Form.cs: Give the MdiClient a ref to the containing form when we
14323         create it.
14324         
14325 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
14326
14327         * LinkLabel.cs : link_font could be uninitialized, so populate one
14328           before actual use. Fixed bug #78340.
14329
14330 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
14331
14332         * XplatUIX11.cs : clipboard format native value is IntPtr.
14333           Fixed bug #78283.
14334
14335 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
14336
14337         * Control.cs: 
14338           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
14339             which is passed up the parent chain by DefWndProc
14340           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
14341             to DefWndProc (#77956)
14342         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
14343
14344 2006-05-10  Jackson Harper  <jackson@ximian.com>
14345
14346         * MdiClient.cs: We need to remove the controls from the mdi
14347         collection, when we close the window.
14348         * MdiWindowManager.cs: Special handling of closing mdi windows.
14349         * InternalWindowManager.cs: Make the close method virtual so the
14350         mdi window manager can handle it specially.
14351
14352 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
14353
14354         * DataGrid.cs:
14355           - Recalculate grid when the data source has changed
14356           - Matches styles provided by user from all data sources types
14357         * DataGridTableStyle.cs: For columns that provided by the user set the
14358         with the preferred value is there was unassigned.
14359         * CurrencyManager.cs: throw OnItemChanged event
14360
14361 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
14362
14363         * PictureBox.cs: Don't animate until handle is created. Start animation
14364           when handle is created.
14365
14366 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
14367
14368         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
14369           current codebase.
14370         * XEventQueue.cs: We don't need to provide the extra info
14371
14372 2006-05-10  Jackson Harper  <jackson@ximian.com>
14373
14374         * MdiClient.cs: If the mdi clients parent form has a background
14375         image set, we draw that background image for the mdi area's
14376         background.
14377
14378 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
14379
14380         * TextBoxBase.cs: Set IBeam cursor (#78347)
14381
14382 2006-05-10  Mike Kestner  <mkestner@novell.com>
14383
14384         * ToolBar.cs: fix some text padding issues with ButtonSize
14385         calculation. Update the default size to match MS documentation.
14386         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
14387         button size. Fixes #78296.
14388
14389 2006-05-10  Mike Kestner  <mkestner@novell.com>
14390
14391         * ListBox.cs: use is_visible for scrollbar positioning in case the
14392         control isn't on screen yet.  Fix off by one with Right vs Width
14393         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
14394         
14395 2006-05-10  Jackson Harper  <jackson@ximian.com>
14396
14397         * X11Dnd.cs: Drop to a control with another control on top of it.
14398         * ToolBar.cs: Work on a copy of the buttons list, so that it can
14399         be modified in click handlers. TODO: Look for similar problems in
14400         other controls.
14401
14402 2006-05-09  Jackson Harper  <jackson@ximian.com>
14403
14404         * Form.cs: Window managers need the old window state when setting
14405         window state now.
14406         * InternalWindowManager.cs: Allow the base mdi window manager to
14407         handle more of the MDI only stuff (like maximize buttons).
14408         * MdiWindowManager.cs: Fix some snafus in changing the window
14409         state.  Add all the menu functionality, for both popup and
14410         maximized menus.
14411         * MdiClient.cs: When a new form is selected the currently
14412         activated form is sent to the back, this matches MS.
14413         - Implement a new method to activate the next mdi child window.
14414
14415 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
14416
14417         * Control.cs: 
14418           - Added new InternalCapture method to allow controls to prevent
14419             the capture behaviour on the click handlers
14420           - Switched to use InternalCapture
14421         * ComboBox.cs:
14422           - Using InternalCapture to prevent mouse captures from being released
14423             on mouse button release (Fixes #78100)
14424         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
14425           returns Form borders if a caption is present. (Fixes #78310)
14426
14427 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
14428
14429         * TreeNode.cs: Changed serialization .ctor to not require every field
14430           to be present. (#78265)
14431         * OwnerDrawPropertyBag.cs: Added serialization .ctor
14432
14433 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
14434
14435         * MimeIcon.cs: for is faster than foreach for strings.
14436
14437 2006-05-05  Mike Kestner  <mkestner@novell.com>
14438
14439         * CheckedListBox.cs: update check handling code to not use selected.
14440         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
14441         behavior for visual feedback, motion response, shift/ctrl handling,
14442         and properly deal with all 4 selection modes. Updates to bounds
14443         handling logic.  Add scroll wheel support. [Fixes #77842]
14444
14445 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
14446
14447         * ListView.cs:
14448           - Moved adding of Implicit controls into .ctor. That way, subsequent
14449             creation of the controls will not cause them to think they are 
14450             toplevel windows (fixes #78200 header problem)
14451           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
14452           - Switched visibility setting of header control to use internal field
14453             to avoid triggering handle creation
14454           - Now checking if handle is created before causing a refresh when items
14455             are added (This makes us now match handle creation time with MS)
14456         * Splitter.cs: Removed loading of private splitter cursor, switched to
14457           Cursors version now that that is loading the right ones
14458         * Cursors.cs: Load proper splitter cursors from resources
14459         * Cursor.cs: Added second method of loading resource cursors for the 
14460           VS.Net users amongst us
14461
14462 2006-05-05  Mike Kestner  <mkestner@novell.com>
14463
14464         * ListView.cs: give header_control a minimum size based on the
14465         ListView size.
14466
14467 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
14468
14469         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
14470           window seems to do that with metacity, so set that type. (#78120)
14471
14472 2006-05-05  Mike Kestner  <mkestner@novell.com>
14473
14474         * ListViewItem.cs: fix Details mode checkbox layout bug.
14475         * ThemeWin32Classic.cs: draw a ListView column header for unused space
14476         at the end of the header, if it exists. [Fixes for #78200]
14477
14478 2006-05-04  Jackson Harper  <jackson@ximian.com>
14479
14480         * MdiClient.cs: Add a helper property to get the container form.
14481         * MdiWindowManager.cs: We have to make sure to use the menu origin
14482         when drawing the icons and buttons, this fixes maximized window
14483         icons/buttons on win32.
14484         * InternalWindowManager.cs: Reset the restore captions when a
14485         window goes from Maximized to Minimized and vice versa. Move the
14486         DrawMaximizedButtons into the MdiWindowManager source, tool
14487         windows can't be maximized. NOTE: This could use a little
14488         refactoring if time ever permits.
14489         
14490 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
14491
14492         * TextBox.cs: Add MWFCategoryAttributes
14493         * TextBoxBase.cs: Add MWFCategoryAttributes
14494         * Form.cs: Add MWFCategoryAttributes
14495
14496 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
14497
14498         * Control.cs: Add MWFCategoryAttributes
14499         * ScrollableControl.cs: Add MWFCategoryAttributes
14500
14501 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
14502
14503         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
14504           Divider is true. Fix a little glitch in PropertyToolBar
14505           drawing code
14506
14507 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
14508
14509         * Control.cs:
14510           - Dispose: Call base.Dispose, this causes the disposed event
14511             to be fired (and probably other, more important stuff)
14512           - SetVisibleCore: Set is_visible to true after creating the
14513             window so that the window still gets created invisible (if
14514             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
14515             to generate a WM_ACTIVE message
14516         * Form.cs: Call Dispose when we want to destroy the window, instead of
14517           just destroying the handle (Dispose will do that for us)
14518         * XplatUIX11.cs:
14519           - RootWindow also needs a queue, so we can properly process the
14520             property change events from RootWindow (like Activate)
14521           - Generatic synthetic WM_ACTIVE message when the active window is
14522             being destroyed
14523
14524 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
14525
14526         * LinkLabel.cs: Trigger a recalc of our label dimensions when
14527           bounds are changed
14528
14529 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
14530
14531         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
14532           for determining width and height (image might not be assigned if
14533           we're drawing an imagelist)
14534
14535 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
14536
14537         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
14538         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
14539           height from system
14540         * Theme.cs: No longer returns hardcoded menu height, instead calls
14541           new driver method
14542         * Form.cs (OnLoad): Scaling happens before triggering Load events 
14543           on MS (# 78257)
14544
14545 2006-05-01  Mike Kestner  <mkestner@novell.com>
14546
14547         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
14548
14549 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
14550
14551         * TextBoxBase.cs: Removed Fixme
14552         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
14553
14554 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
14555
14556         * XplatUIX11.cs:
14557           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
14558             the rectangle relative to the parent, considering borders. We
14559             don't really want that.
14560           - ScrollWindow: Fixed warning to be more understandable
14561         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
14562           scrollbars and scroll only the visible area
14563         * RichTextBox.cs: Removed debug output
14564
14565 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
14566
14567         * NumericUpDown.cs (Text): Just use base
14568         * UpDownBase.cs: Ensure txtView is created before using it
14569
14570 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
14571
14572         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
14573           casting to IntPtr to avoid 64bit overflow errors
14574
14575 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
14576
14577         * Control.cs:
14578           - AllowDrop: Don't force handle creation.
14579           - CreateHandle: Added call to tell driver if we're allowed to drop
14580
14581 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
14582
14583         * FileDialog.cs: Remember the last directory not only for the
14584           current instance but also for new FileDialog instances.
14585
14586 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
14587         
14588         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
14589           broke sending async messages
14590
14591 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
14592
14593         * XplatUIX11.cs:
14594           - ScrollWindow: Fixed method. We finally generate expose events again
14595             for scrolled areas. This was causing 'garbage' when scrolling
14596             textbox and other controls that used ScrollWindow
14597           - Switched from using the regular queue for paint events to the MS 
14598             model of 'generating' paint events when the queue is empty.
14599             We use the new XQueueEvent.Paint subclass to store which windows
14600             need painting.
14601           - AddExpose now takes the x/y/width/height of the exposed area
14602             and inserts the window into the paint queue if not already there
14603           - InvalidateWholeWindow: Switched to use new AddExpose method
14604           - UpdateMessageQueue: Added which queue to monitor for paint events
14605           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
14606             the unlikely case nothing above handles it. We reset the expose
14607             pending states to get them off the queue.
14608           - GetMessage: Now pulls a paint event if no other events are in the
14609             queue
14610           - Invalidate: Switched to new AddExpose method
14611           - PeekMessage: Updated to understand pending paint events
14612           - UpdateWindow: Fixed logic bug. We were only updating if the window
14613             didn't need updating. Also switched to sending WM_PAINT directly,
14614             like MS does.
14615         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
14616           and random access Remove(). The random access is needed to handle
14617           UpdateWindow() where a WM_PAINT is sent directly without accessing
14618           the queue.
14619         * ScrollBar.cs: Added Update() calls to cause immediate updates to
14620           allow for better feedback when scrolling. Scrollbars are small and
14621           the immediate update should make it 'feel' more responsive without
14622           slowing things down. ScrollBar still needs it's invaliate logic
14623           updated to not always invalidate the whole bar on certain changes.
14624
14625 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14626
14627         * Control.cs:
14628         (BackColor): if the control does not support a transparent background,
14629         return the default backcolor when the parent backcolor is transparent.
14630
14631 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
14632
14633         * Application.cs: Updated to new StartLoop/GetMessage API
14634         * RichTextBox.cs: Provide some output on RTF parsing errors
14635         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
14636           new queue_id argument to GetMessage and PeekMessage to allow faster
14637           handling of per-thread queues in drivers.
14638         * Hwnd.cs: Added Queue tracking and property
14639         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
14640         * XEventQueue.cs: Added thread trackingA
14641         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
14642         * XplatUIX11.cs:
14643           - Implemented new per-thread queue
14644           - GetMessage: Fixed return/break behaviour on several cases. We were
14645             returning stale messages in some cases, instead of just processing
14646             the next message
14647
14648 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
14649
14650         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
14651
14652 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
14653
14654         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
14655           fixed off-by-one comparisons between Width/Height and Right/Bottom.
14656
14657 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
14658
14659         * PropertyGridView.cs: Fix drop down width.
14660
14661 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
14662
14663         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
14664           a mess in DrawToolBar, so I removed one of them.
14665
14666 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
14667
14668         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
14669           needed (clip). Otherwise we get artifacts.
14670
14671 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
14672
14673         * FixedSizeTextBox.cs: Added constructor to allow specifying which
14674           dimension is fixed
14675         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
14676           and switched FixedSizeTextBox to only be fixed vertical (#78116)
14677         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
14678           if it matches the scale base font (avoids unneeded scaling)
14679
14680 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
14681
14682         * X11DesktopColors.cs: One gtk_init_check should be enough
14683
14684 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
14685
14686         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
14687           match MS behaviour
14688
14689 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
14690
14691         * TextBoxBase.cs: 
14692           - Generate OnTextChanged for Backspace even if we're only deleting
14693             the current selection
14694           - When setting the Text property, only select all text if the
14695             control does not have focus when it is being set. Otherwise
14696             just place the cursor at the beginning of the control
14697
14698 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
14699
14700         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
14701           Added a little helper to draw PropertyGrid ToolBar with a different
14702           border and a different BackColor.
14703         * PropertyGrid.cs: Some background parts didn't get painted with the
14704           correct background color. Added a class that helps us to draw the
14705           correct border for PropertyGridView and a class that helps us to
14706           draw ToolBars with a different backcolor
14707         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
14708
14709 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
14710
14711         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
14712         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
14713
14714 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
14715
14716         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
14717           into the palette entries. Also, since we're working on a copy
14718           we needed to copy the palette back onto the bitmap.
14719         * Cursor.cs: Same fix as XplatUIWin32.cs.
14720
14721 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
14722
14723         * ImageListStreamer.cs: Need to read the var (or we're off)
14724
14725 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
14726
14727         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
14728           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
14729           TextBoxBase.cs: Unused var fixes
14730         * AxHost.cs: Small 2.0 fix
14731         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
14732           as it seems that is what at least Metacity expects. This will make
14733           icons show up on 64bit platforms. We still have some 64bit size
14734           issues, though, since the startup app window size still won't match.
14735
14736 2006-04-25  Mike Kestner  <mkestner@novell.com>
14737
14738         * *.cs: cleanup newly reported exception var unused warnings.
14739
14740 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
14741
14742         * ThemeWin32Classic.cs: Button image alignment now matches exactly
14743           ms
14744
14745 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
14746
14747         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
14748           image. The image position is always the same, no matter if the
14749           button is pressed or not.
14750
14751 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
14752
14753         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
14754           selection and set the correct filename for SaveFileDialog.
14755           Patch by Emery Conrad.
14756
14757 2006-04-24  Mike Kestner  <mkestner@novell.com>
14758
14759         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
14760         check for item.X outside the ClientRect instead of item.Y. Fixes
14761         #78151.
14762
14763 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14764
14765         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
14766         trust that value blindly and do some sanity check. Fixes bug #77814.
14767
14768 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14769
14770         * ImageListStreamer.cs: save the mask as a 1bpp image.
14771
14772 2006-04-21  Mike Kestner  <mkestner@novell.com>
14773
14774         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
14775         pass Checked and Indeterminate to the Theme Engine. Improve
14776         encapsulation with ListBox.
14777         * ListBox.cs: Keep a StringFormat instead of calculating it every item
14778         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
14779         nested types.  Move all CheckState functionality to CheckedListBox.
14780         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
14781         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
14782         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
14783         single base list. Fix scrollbar sizing and placement to mirror MS.
14784         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
14785         used.
14786         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
14787         for CheckedListBox by using new DrawItemState info.  Center the
14788         checkboxes on the items. Use new StringFormat property.
14789
14790 2006-04-18  Jackson Harper  <jackson@ximian.com>
14791
14792         * Form.cs: MdiChildren don't do default locations the same way as
14793         regular forms.  This prevents a crash when trying to position the
14794         mdi windows.
14795
14796 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
14797
14798         * PropertyGridTextBox.cs: Formatting, copyright
14799         * PropertiesTab.cs: Formatting
14800         * PropertyGrid.cs: Formatting
14801         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
14802           click toggling of values
14803           
14804 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
14805
14806         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
14807         * Control.cs (.ctor): verify_thread_handle is static, don't reset
14808           every time a control is created
14809         * Application.cs: Removed obsolete EnableRTLMirroring method
14810
14811 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
14812
14813         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
14814         SelectedIndex to -1. Fixes bug #78121.
14815
14816 2006-04-17  Jackson Harper  <jackson@ximian.com>
14817
14818         * Binding.cs: Handle null values for Current and BindingContext.
14819         This occurs when binding is a little delayed.
14820         * CurrencyManager.cs: return null for Current when there are no
14821         items in the list.
14822         - Hookup to the listchanged event on the DataView and update
14823         bindings when the list is changed.  This fixes late binding of
14824         controls.
14825
14826 2006-04-17  Jackson Harper  <jackson@ximian.com>
14827
14828         * X11Dnd.cs:
14829         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
14830         Ringenbach.
14831
14832 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
14833
14834         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
14835           place
14836         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
14837           with the correct ButtonState
14838
14839 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
14840
14841         * XplatUIX11.cs: Improved distinguishing between window types to
14842           tell the WM a type closer to what the app wants (Fixes #78107)
14843
14844 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
14845
14846         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
14847           GrabHandle
14848
14849 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
14850
14851         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
14852           drawing code to reflect the size grip changes
14853
14854 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14855
14856         * ImageListStreamer.cs: fix handling of the mask that follows the main
14857         bitmap when deserializing and serialize it properly. The generated mask
14858         should better be a 1bpp image, but I'll do that later.
14859
14860 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
14861
14862         * FileDialog.cs: Show something in the DirComboBox on *nix if the
14863           path doesn't fit into some of our Current.Places
14864
14865 2006-04-13  Jackson Harper  <jackson@ximian.com>
14866
14867         * ComboBox.cs: Use borders instead of drawing our own decorations,
14868         try to obey correct rules for heights.
14869         * Theme.cs:
14870         * ThemeNice.cs:
14871         * ThemeClearLooks.cs:
14872         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
14873         this is now handled by borders.
14874         - Remove unused DrawListBoxDecorationSize method.
14875         
14876 2006-04-13  Mike Kestner  <mkestner@novell.com>
14877
14878         * MenuAPI.cs: null guarding for the disbled click check fixes crash
14879         reported by Alex.
14880
14881 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
14882
14883         * ThemeWin32Classic.cs: 
14884           - Fixed CPDrawStringDisabled
14885           - Corrected drawing of disabled menu items
14886           - Fixed drawing of disabled radio buttons (bug #78095)
14887           - Draw check in a disabled CheckBox with color ControlDark 
14888
14889 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
14890
14891         * Form.cs: Use the provided width when calculating the menu size;
14892           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
14893           and ClientSize.Width won't be updated yet
14894         * Application.cs: Use Visible instead of Show() to make form visible,
14895           this way we create the handle later and menusize is considered
14896
14897 2006-04-12  Mike Kestner  <mkestner@novell.com>
14898
14899         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
14900         reporting.
14901
14902 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
14903
14904         * TextBox.cs: Implemented context menu
14905
14906 2006-04-12  Mike Kestner  <mkestner@novell.com>
14907
14908         * ListView.cs: implement box selection. fixes #77838.
14909         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
14910
14911 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
14912
14913         * XplatUIX11.cs: Added setting of window type when transient window
14914           is created (metacity would move it otherwise)
14915         * X11Structs.cs: Added WINDOW_TYPE atoms
14916         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
14917           background (the control is Opaque but still wants transparent
14918           backgrounds)
14919
14920 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
14921
14922         * Control.cs: Added OnPaintBackgroundInternal to allow controls
14923           that set Opaque but don't mean it (like all ButtonBase-derived
14924           controls) to still draw their background
14925         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
14926           the background
14927
14928 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
14929
14930         * Control.cs (PaintControlBackground): Set the graphics object
14931           on our PaintEvent to null to prevent it from being disposed
14932           when the PaintEvent gets disposed
14933
14934 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
14935
14936         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
14937         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
14938
14939 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
14940
14941         * Control.cs: 
14942           - Added transparency check to BackColor property. Transparent
14943             backgrounds are only allowed if the control styles permit it
14944           - Added recursive painting of parent control background and
14945             foreground if a control with a transparent backcolor is drawn
14946             (Thanks to Tim Ringenback for providing his 'hack' as a base
14947              for this patch) Fixes #77985 and #78026.
14948           - Added Opaque style check before calling OnPaintBackground, no
14949             need to draw the background if the control is opaque
14950           - Removed ControlAccessibleObject owner variable (inherited from
14951             base, no need to define again)
14952           - Added some documentation links explaining the drawing events
14953             and styles
14954
14955 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
14956
14957         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
14958           that the affected control is the located at the left border of our
14959           parent (Fixes #77936)
14960
14961 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
14962
14963         * TextBoxBase.cs: When rendering disabled or readonly controls,
14964           draw the background with 'Control' instead of 'Window' color as
14965           long as the user hasn't specifically set a color
14966
14967 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
14968
14969         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
14970           since that won't be updated if the user types text (only if it's
14971           programatically set)
14972
14973 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
14974
14975         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
14976           layout changes do to app-triggered resizes will have the proper
14977           display rectangle for layout
14978
14979 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
14980
14981         * ThemeWin32Classic.cs:
14982           - Make use of the SystemBrushes and SystemPens wherever possible
14983           - Corrected some highlight colors
14984           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
14985             drawing
14986         * Theme.cs: Added Empty field to CPColor struct
14987
14988 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
14989
14990         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
14991           is displayed when calculating the display rectangle. Thanks to Mike
14992           for teaching me the err of my ways.
14993
14994 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
14995
14996         * ScrollableControl.cs:
14997           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
14998             (instead of 0,0) and we now return the real width/height instead of
14999             just the clientrectangle, adjusted for padding. The rectangle is
15000             now cached and created by the new CalculateDisplayRectangle method.
15001           - Created new CalculateDisplayRectange method, which basically does
15002             what get_DisplayRectangle() did originally, but now using the 
15003             right edge instead of DisplayRectangle to determine the size of
15004             our scrollbars
15005           - get_Canvas(): Fixed it to properly calculate canvas for 
15006             right/bottom controls which seem to be placed to the right/bottom
15007             of any controls that have a fixed location
15008           - Removed TODO that's taken care of
15009           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
15010             and SetDisplayRectLocation according to new MSDN2 docs
15011           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
15012             event when that is called, this is added for compatibility
15013           - ScrollControlIntoView(): Implemented.
15014           - Switched scrollbars to be implicit, they shouldn't be selectable
15015         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
15016           call it when the active control is set/changed
15017         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
15018         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
15019           implicit_control variable (used for native Win32 message generation)
15020         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
15021           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
15022         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
15023         * XplatUIStructs.cs: Added ScrollBarCommands enum
15024
15025 2006-04-10  Jackson Harper  <jackson@ximian.com>
15026
15027         * ButtonBase.cs:
15028         * CheckedListBox.cs:
15029         * ComboBox.cs:
15030         * DataGrid.cs:
15031         * DataGridView.cs:
15032         * Form.cs:
15033         * GroupBox.cs:
15034         * ListBox.cs:
15035         * PrintPreviewControl.cs:
15036         * ProgressBar.cs:
15037         * PropertyGrid.cs:
15038         * Splitter.cs:
15039         * StatusBar.cs:
15040         * TrackBar.cs:
15041         * UpDownBase.cs: Fixup base event overrides.
15042         
15043 2006-04-06  Mike Kestner  <mkestner@novell.com>
15044
15045         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
15046         all user-initiated value changes to min <= value <= max-thumbsz+1.
15047         (set_Value): check for vert/horiz when calculating new thumb position.
15048         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
15049         like MS does.
15050         (OnMouseMoveSB): refactor the thumb dragging code and refine
15051         invalidation logic to reduce flicker.
15052         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
15053         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
15054         (UpdateThumbPosition): small code readability cleanup
15055
15056 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
15057
15058         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
15059           different
15060
15061 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
15062
15063         * ThemeNice.cs: Use a better graphics effect when a button is pressed
15064
15065 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
15066
15067         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
15068         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
15069           This dramatically reduces the number of Pen.Dispose calls. 
15070           Where possible call ResPool methods only once instead of calling it
15071           over and over again (for example for the same color).
15072
15073 2006-04-06  Mike Kestner  <mkestner@novell.com>
15074
15075         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
15076         Also remove an unused private field on the collection. Fixes #77972.
15077
15078 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
15079
15080         * ThemeNice.cs: Added ToolBar drawing code
15081
15082 2006-04-06  Mike Kestner  <mkestner@novell.com>
15083
15084         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
15085         I'm assuming that means we need to look up the toplevel for the
15086         provided control. Fixes the crash trace in #77911 but exposes another
15087         crash in some strange reflection usage in NDocGui.
15088
15089 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
15090
15091         * ThemeNice.cs: Gave it a little silver touch and added Images
15092           method
15093         * FontDialog.cs: FontDialog is not resizable
15094         * FileDialg.cs: Added SizeGripStyle.Show
15095
15096 2006-04-05  Jackson Harper  <jackson@ximian.com>
15097
15098         * KeyboardLayouts.cs: Remove warning.
15099
15100 2006-04-05  Jackson Harper  <jackson@ximian.com>
15101
15102         * Control.cs: Enable OnPaintInternal so we can use it for drawing
15103         all of our controls instead of Paint +=.
15104         * ListBox.cs:
15105         * ListView.cs:
15106         * MenuAPI.cs:
15107         * MessageBox.cs:
15108         * NotifyIcon.cs:
15109         * ProgressBar.cs:
15110         * ScrollBar.cs:
15111         * Splitter.cs:
15112         * StatusBar.cs:
15113         * TabControl.cs:
15114         * TextBoxBase.cs:
15115         * ToolBar.cs:
15116         * TrackBar.cs:
15117         * UpDownBase.cs:
15118         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
15119         use OnPaintInternal. Remove Width/Height and Visible checks in
15120         paint handler, this is done at a higher level now.
15121         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
15122         * PaintEventArgs.cs: Add a handled flag so controls that don't
15123         want anymore painting after OnPaintInternal can make sure OnPaint
15124         isn't called.
15125
15126 2006-04-05  Mike Kestner  <mkestner@novell.com>
15127
15128         * Form.cs: fix the menu WndProc hacks to respect the native enabled
15129         state of the form, so that we don't process events when Modal dialogs
15130         are up. Fixes #77922.
15131
15132 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
15133
15134         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
15135           checking is done.
15136
15137 2006-04-05  Mike Kestner  <mkestner@novell.com>
15138
15139         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
15140
15141 2006-04-05  Mike Kestner  <mkestner@novell.com>
15142
15143         * ListView.cs (HeaderMouseMove): null guarding for the over column
15144         when setting up the drag_to_index.  Fixes #78015.
15145
15146 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
15147
15148         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
15149           in the taskbar. Transient windows seem to accomplish that.
15150
15151 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
15152
15153         * Form.cs:
15154           - Re-enabled CreateParams.X/Y code for FormStartPosition
15155           - Added code for manual placement when creating the Control
15156           - Incomplete patch to treat MDI forms differently when
15157             setting the ClientSizeCore. (Still need to figure out handling
15158             x/y coords there)
15159         * XplatUIX11.cs:
15160           - When we're explicitly setting the X/Y position of a non-Child
15161             window, let the WM know. Metacity really wants this.
15162
15163 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
15164
15165         * ThemeNice.cs: Added CPDrawButton
15166
15167 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
15168
15169         * ThemeNice.cs: Changed the color for focused buttons and activated
15170           the arrows for small scroll buttons.
15171
15172 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
15173
15174         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
15175           anymore. Changed some method modifiers to protected (virtual)
15176         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
15177           changes
15178         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
15179           Updated drawing of menus, buttons and progressbars; added
15180           CPDrawBorder3D 
15181
15182 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15183
15184         * ImageListStreamer.cs: implemented serialization/deserialization
15185         of the images.
15186
15187 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
15188
15189         * ThemeWin32Classic.cs:
15190           - Removed all the DrawFrameControl stuff; CPDrawButton,
15191             CPDrawCheckBox and CPDrawRadioButton are now handled directly
15192             inside the methods
15193           - Updated and corrected the drawing code of CPDrawButton,
15194             CPDrawCheckBox and CPDrawRadioButton to better match ms
15195           - Updated theme checkbox and radiobutton code to use the CP*
15196             methods
15197
15198 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
15199
15200         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
15201           bug is fixed
15202
15203 2006-03-31  Jackson Harper  <jackson@ximian.com>
15204
15205         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
15206         sometimes.
15207         * UpDownBase.cs: Don't CreateGraphics manually, use a
15208         Refresh. Ideally we would invalidate the correct areas here.
15209
15210 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
15211
15212         * XplatUIX11.cs: 
15213           - We now track the mapping state of windows. If a window (or 
15214             one of it's parents) is not mapped we no longer permit
15215             WM_PAINT messages to be generated since we'd otherwise get 
15216             lots of BadMatch X errors. Jackson did all the work figuring
15217             out the problem.
15218           - Destroying the caret if the window it's contained in is 
15219             destroyed. Can't use regular DestroyCaret method since it
15220             might fall into a drawing function (trying to remove the
15221             caret) and with that generate new BadMatch errors. Again,
15222             Jackson tracked this down.
15223           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
15224             make sure we send the messages to all windows. (The old code
15225             would send the WM_DESTROY to the window, and then all child
15226             windows would be 'gone' because the WM_DESTROY handle lookup
15227             would no longer find the destroyed window)
15228         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
15229         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
15230
15231 2006-03-31  Jackson Harper  <jackson@ximian.com>
15232
15233         * ScrollableControl.cs: Dont recalc if we are not visible.
15234
15235 2006-03-31  Mike Kestner  <mkestner@novell.com>
15236
15237         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
15238         the visibility branch.
15239
15240 2006-03-31  Jackson Harper  <jackson@ximian.com>
15241
15242         * ScrollBar.cs: Cap values when incrementing/decrementing.
15243
15244 2006-03-31  Mike Kestner  <mkestner@novell.com>
15245
15246         * MenuAPI.cs: setup menu.tracker for popup/context menus.
15247         * ToolTip.cs: guard against timer expirations with no active control.
15248         Not sure why it happened.
15249
15250 2006-03-31  Mike Kestner  <mkestner@novell.com>
15251
15252         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
15253         text.
15254         * ToolTip.cs: Position the tooltip based on where the cursor is at
15255         popup time, not at MouseEnter time.  Add a Down state so that we don't
15256         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
15257         positioning offset. Lookup DisplaySize at positioning time, since it
15258         can theoretically change during invocation.
15259         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
15260         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
15261
15262 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
15263
15264         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
15265           Fixes behaviour when the Text property of the box is String.Empty
15266
15267 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
15268
15269         * XplatUIX11.cs: Only send mouseleave for our client windows, not
15270           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
15271           a window)
15272
15273 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
15274
15275         * FileDialog.cs: Visual enhancement for the popup buttons in 
15276           PopupButtonPanel
15277
15278 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
15279
15280         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
15281           code
15282
15283 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
15284
15285         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
15286           highlighted menu items to match ms
15287
15288 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
15289
15290         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
15291
15292 2006-03-30  Mike Kestner  <mkestner@novell.com>
15293
15294         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
15295         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
15296         go active to account for HotLight to Selected transition.
15297         * MenuItem.cs: add internal Selected prop. Fill out the Status
15298         property by calculating it from item info. Add HotLight,
15299         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
15300
15301 2006-03-30  Mike Kestner  <mkestner@novell.com>
15302
15303         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
15304
15305 2006-03-29  Jackson Harper  <jackson@ximian.com>
15306
15307         * Form.cs: Implement TODO.
15308
15309 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
15310
15311         * PrintPreviewDialog.cs: Implemented missing methods and events; still
15312           missing proper dialog setup in the constructor
15313
15314 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
15315
15316         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
15317         * Control.cs:
15318           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
15319           - Fixed ResetBindings and removed TODO
15320           - Added check for cross-thread calls to get_Handle()
15321           - Added Marshaller attribute for set_Font to satisfy class status
15322         * FontDialog.cs: Removed TODOs that seemed implemented
15323         * UpDownBase.cs: Removed unneeded TODO and Fixme
15324         * MessageBox.cs: Implemented support for Default button and removed TODO
15325         * FileDialog.cs: Removed obsolete TODO
15326         * DomainUpDown.cs: Removed obsolete TODO
15327         * ButtonBase.cs: Removed obsolete TODO
15328         * XplatUIWin32.cs: Removed obsolete TODO
15329         * Form.cs:
15330           - Removed obsolete TODO
15331           - Calling CheckAcceptButton when the acceptbutton is changed to allow
15332             internal status updates
15333           - Making sure the active control is selected when the control is created
15334         * CurrencyManager.cs: Removed obsolete TODO
15335
15336 2006-03-29  Mike Kestner  <mkestner@novell.com>
15337
15338         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
15339         of PrintPreviewDialog and RichTextBox.
15340
15341 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
15342
15343         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
15344           DarkDark, Light and LightLight colors for a specific color
15345         * ThemeWin32Classic.cs:
15346           - Use Button drawing code to draw RadioButtons and CheckBoxes with
15347             Appearance = Button 
15348           - Make use of the new ResPool helper CPColor
15349           - Draw ProgressBar and StatusBar with correct 3D borders
15350
15351 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
15352
15353         * ColorDialog.cs: Return selected color. Fixes bug #77940.
15354
15355 2006-03-28  Mike Kestner  <mkestner@novell.com>
15356
15357         * ListView.cs: fix Icon layout to plan for scrollbar widths when
15358         calculating col/row counts.
15359
15360 2006-03-28  Mike Kestner  <mkestner@novell.com>
15361
15362         * ColumnHeader.cs:
15363         * ListView.cs:
15364         * ListViewItem.cs:
15365         * Menu.cs: 
15366         switch to explicit interface method implementation for some methods
15367         corcompare identifies as inconsistent with MS.
15368
15369 2006-03-28  Mike Kestner  <mkestner@novell.com>
15370
15371         * MainMenu.cs: 
15372         * Menu.cs:
15373         add a few missing methods from the class status output.
15374
15375 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
15376
15377         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
15378           correct.
15379
15380 2006-03-28  Mike Kestner  <mkestner@novell.com>
15381
15382         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
15383
15384 2006-03-27  Mike Kestner  <mkestner@novell.com>
15385
15386         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
15387         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
15388
15389 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
15390
15391         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
15392
15393 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
15394
15395         * ThemeWin32Classic.cs:
15396           - GroupBox: Inserted a little gap between the text and the lines
15397             on the right side
15398           - Made the code in CPDrawBorder3D more readable
15399           - Corrected the drawing location of the up and down arrows in 
15400             CPDrawScrollButton
15401
15402 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
15403
15404         * ControlPaint.cs: Corrected line widths in DrawBorder for
15405           ButtonBorderStyle Inset and Outset
15406
15407 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
15408
15409         * ThemeWin32Classic.cs:
15410           - Rewrote the totally broken CPDrawBorder3D method. That was
15411             one of the main problems for the terrific ThemeWin32Classic
15412             look
15413           - Updated and corrected Button drawing
15414           - Correct the dimensions of the SizeGrip to match ms ones
15415           - Removed a small drawing glitch in DrawComboBoxEditDecorations
15416         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
15417           Border3DStyle.Sunken to match ms.
15418
15419 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
15420
15421         * ThemeWin32Classic.cs: First small part of the "de-uglify
15422           ThemeWin32Classic" effort, SizeGrip
15423
15424 2006-03-24  Jackson Harper  <jackson@ximian.com>
15425
15426         * XplatUIX11.cs: Give a max idle time of one second, this matches
15427         MS and forces an Idle event every second when there are no other
15428         events in the queue.
15429
15430 2006-03-24  Mike Kestner  <mkestner@novell.com>
15431
15432         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
15433         * ListView.Item.cs: fix layout issues with null image lists and images
15434         smaller than checkbox size.
15435         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
15436         mode like MS does.  It's weird, but consistent.  ;-)
15437         Fixes #77890.
15438
15439 2006-03-24  Mike Kestner  <mkestner@novell.com>
15440
15441         * ListView.cs: Scroll wheel support for the item control.  Fixes
15442         #77839.
15443
15444 2006-03-23  Jackson Harper  <jackson@ximian.com>
15445
15446         * ScrollableControl.cs: Special case negative sized areas, not
15447         zero.
15448         * MonthCalendar.cs: Save the rect of the clicked date so we can
15449         use it for invalidation.
15450         - Try to cut down on the number of invalidates
15451         - Invalidate the rect the mouse is over and was over when moving
15452         the mouse, so we get the focus box following the cursor.
15453
15454 2006-03-23  Mike Kestner  <mkestner@novell.com>
15455
15456         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
15457         focus rectangle drawing. Fixes #77835.
15458
15459 2006-03-23  Mike Kestner  <mkestner@novell.com>
15460
15461         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
15462         the if and else if and reverting back to the original == check on the
15463         None conditional.
15464
15465 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
15466
15467         * FontDialog.cs: Update the example panel if the selected index of
15468           the fontListBox changes.
15469
15470 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
15471
15472         * FileDialog.cs: Make FileDialog remember which directory it was in
15473           last in the same execution.
15474
15475 2006-03-22  Mike Kestner  <mkestner@novell.com>
15476
15477         * FileDialog.cs: make the DropDownMenu on the toolbar display
15478         RadioChecks since they are mutually exclusive and that's what MS does.
15479
15480 2006-03-22  Mike Kestner  <mkestner@novell.com>
15481
15482         * Theme.cs: add Color param to CPDrawMenuGlyph.
15483         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
15484         checks and radio marks and arrows are visible on highlighted items.
15485         * ControlPaint.cs: update to use new Theme signature.
15486
15487 2006-03-22  Mike Kestner  <mkestner@novell.com>
15488
15489         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
15490         is active. Fixes #77870.
15491
15492 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
15493
15494         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
15495           to be focused/selected after startup
15496
15497 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
15498
15499         * ColorDialog.cs: 
15500           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
15501             CustomColors and ShowHelp properties
15502           - Some internal rewrites to get better results when using the
15503             ColorMatrix
15504
15505 2006-03-22  Mike Kestner  <mkestner@novell.com>
15506
15507         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
15508         HoverSelection.  Fixes #77836.
15509
15510 2006-03-22  Mike Kestner  <mkestner@novell.com>
15511
15512         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
15513         ToggleButtons.  (De)Sensitize the Back button around a stack count of
15514         1, not 0.  Update ButtonSize based on a pixel count of the win32
15515         control.  Adjust the toolbar size/location for new button size.
15516
15517 2006-03-22  Jackson Harper  <jackson@ximian.com>
15518
15519         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
15520         true.
15521         * ScrollBar.cs: When doing increments and decrements we need to
15522         set the Value property so that ValueChanged gets raised. A
15523         possible optimization here would be to make an internal SetValue
15524         that doesn't invalidate immediately.
15525         * ToolTip.cs: Tooltips get added to their container (when
15526         supplied) so they get disposed when the container is disposed.
15527         - Don't create tooltips for String.Empty. This prevents all these
15528         little 2-3 pixel windows from showing up when running nunit-gui
15529         and driving me mad.
15530         * Form.cs: Don't set topmost when setting the owner if the handles
15531         haven't been created yet.  The topmost set will happen when the
15532         handles are created.
15533
15534 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
15535
15536         * XplatUIX11.cs:
15537           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
15538           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
15539             visible (to allow them to recalculate their sizes)
15540
15541 2006-03-21  Mike Kestner  <mkestner@novell.com>
15542
15543         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
15544         methods. Removed a ton of redundant code.  Still not really happy with
15545         the border rendering, but I think that's mainly because of the
15546         ControlDarkDark being black instead of a dark grey. Depending on how 
15547         close we want to be, we might want to revisit those color choices.
15548         Among the new features added during the refactor were DropDownArrow
15549         pressed rendering, Disabled image rendering.  Proper flat appearance
15550         boundary rendering.  Removed the Divider and Wrapping dividers since I
15551         can't figure out any combination of themes and conditions to make the
15552         MS control draw a horizontal line on a toolbar despite what the
15553         Divider property docs indicate.
15554         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
15555         conditions and incorrect layout.  Updated to coding standard.
15556         * ToolBarButton.cs: refactored layout and positioning code from
15557         ToolBar to here.  Invalidate wherever possible instead of forcing
15558         redraws of the whole toolbar. 
15559         (Known remaining issues: explicit ButtonSize smaller than provided
15560         images.)
15561
15562 2006-03-21  Mike Kestner  <mkestner@novell.com>
15563
15564         * ContextMenu.cs (Show): use the position parameter instead of just
15565         showing at the MousePosition.
15566
15567 2006-03-21  Jackson Harper  <jackson@ximian.com>
15568
15569         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
15570         control handle this.
15571         * TreeNodeCollection.cs: If we are clearing the root node we need
15572         to reset top_node so calcs can still happen.
15573         * ThemeWin32Classic.cs: This is a Flags so we need to check
15574         properly.
15575         
15576 2006-03-21  Jackson Harper  <jackson@ximian.com>
15577
15578         * DataGrid.cs: Create columns when the binding context has been
15579         changed.
15580         * X11Structs.cs: Keysyms are uints.
15581         - Add size to fix build.
15582
15583 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
15584
15585         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
15586           XplatUIOSX.cs: 
15587           - Added ResetMouseHover method to allow controls to retrigger
15588             hovering if they need it more than once
15589           - Implemented MouseHoverTime and MouseHoverSize properties
15590         * Timer.cs: Start() must reset the interval
15591         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
15592           properties
15593
15594 2006-03-21  Jackson Harper  <jackson@ximian.com>
15595
15596         * X11Keyboard.cs: improved layout detection. Move the nonchar
15597         tables into this file.
15598         * KeyboardLayouts.cs: Move the tables into resource files.
15599
15600 2006-03-21  Mike Kestner  <mkestner@novell.com>
15601
15602         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
15603
15604 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
15605
15606         * Mime.cs: Various speed optimizations. Looking up mime types
15607           is now 2 times faster than before
15608
15609 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
15610
15611         * CreateParams.cs: Added internal menu field
15612         * Control.cs: 
15613           - Switched call order for UpdateBounds; now we always call
15614             the one that also takes ClientSize, and we're calculating the 
15615             client size via driver method in the others. The previous
15616             method of tracking client size by difference wasn't working
15617             for forms where even the starting client size wouldn't match
15618             the overall form size (due to borders) (Part of fix for #77729)
15619           - CreateParams(): Do not use parent.Handle unless the handle is
15620             already created. Causes havoc with Nexxia and throws off our
15621             creation of controls
15622         * XplatUIX11.cs:
15623           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
15624           - Switched handling of ConfigureNotify over to new PerformNCCalc 
15625             method (consolidates code)
15626           - Changed RequestNCRecalc to use new PerformNCCalc method
15627           - Added calls to RequestNCRecalc when menus and borders are changed
15628             to allow app to set NC size. (Part of fix for #77729) This matches
15629             when MS send a WM_NCRECALC on Win32 windows.
15630           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
15631             (Part of fix for #77729). This matches what MS does, they also
15632             send that message when the form is made visible.
15633           - XException.GetMessage: Improved usability of X errors by including
15634             a translation of the window into Hwnd and Control class
15635           - Improved debug info for window creation, reparenting and destruction
15636           - Created helper method WindowIsMapped() [Currently not used]
15637         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
15638         * Form.cs:
15639           - CreateParams: Now setting our menu on the new internal menu field
15640           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
15641             avoid calculating the same property twice
15642         * Hwnd.cs:
15643           - Improved usability of ToString() for debugging purposes
15644           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
15645             determine the height of the menu, instead of just the font. This
15646             required to also create a graphics context and to keep a bmp 
15647             around (for performance reasons)
15648
15649 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
15650
15651         * MenuAPI.cs: Added OnMouseUp method
15652         * Form.cs:
15653           - Now remembering the requested client size, avoids size errors
15654           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
15655             instead of base if the menu is active. This is required due to
15656             control now capturing and releasing on down/up and it would
15657             prematurely release our menu capture
15658
15659 2006-03-17  Jackson Harper  <jackson@ximian.com>
15660
15661         * KeyboardLayouts.cs: Add the czech layouts.
15662
15663 2006-03-16  Jackson Harper  <jackson@ximian.com>
15664
15665         * Control.cs: Use the viewport space when sizing not the controls
15666         client size, so things like ScrollableControl that effect the
15667         viewport size (when scrollbars are added) are computed correctly.
15668         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
15669         of ManagerEntrys.
15670         - Handle creating BindingManagers for null data sources.
15671         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
15672         source, otherwise when rows are added they are added to the 'fake'
15673         datasource and we will crash when trying to set the position in
15674         those rows.
15675         - Use Implicit scrollbars on the datagrid so they arent
15676         selectable.
15677         
15678 2006-03-16  Jackson Harper  <jackson@ximian.com>
15679
15680         * Binding.cs:
15681         * InternalWindowManager.cs:
15682         * MdiWindowManager.cs:
15683         * X11Keyboard.cs: I really want Mike to love me again (fix
15684         compiler warnings).
15685
15686 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
15687
15688         * DataGrid.cs:
15689           - OnMouseDown: Switch to editing mode when clicking on the cell
15690                          even if we're clicking on the cell that's currently 
15691                          selected
15692           - ProcessGridKey: Left/Right now wrap like MS.Net does
15693           - ProcessGridKey: Tab now knows to add a new row when tab is
15694                             pressed in the cell of the last column of the 
15695                             last row
15696           - ProcessGridKey: Enter now adds another row  if pressed in the last
15697                             row and selectes the new row, same column cell
15698           - ProcessGridKey: Home/End navigate columns, not rows, like 
15699                             originally implemented
15700           - Broke ProcessKeyPreview code out into an extra Internal method
15701             so it can be called from the edit code
15702         * DataGridTextBox.cs (ProcessKeyMessage):
15703           - Switched to accept Tab keypresses
15704           - Added F2 handling to allow jumping to the end of the edited cell
15705           - Added logic to allow moving caret left/right inside edited cell
15706             and making the edited cell jump when the caret hits cell borders
15707           - Tab and Enter are now passed to the datagrid after being handled
15708         * TextBoxBase.cs:
15709           - Removed capture code now that Control handles it
15710           - set_SelectionStart now ensures caret is visible
15711
15712 2006-03-16  Jackson Harper  <jackson@ximian.com>
15713
15714         * TrackBar.cs: Debackwards the increment/decrement for handling
15715         mouse clicks on the bar with vertical trackbars.
15716         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
15717         bottom to match MS.
15718
15719 2006-03-16  Mike Kestner  <mkestner@novell.com>
15720
15721         * ListView.cs: make shift/ctrl keyboard and mouse selection 
15722         consistent with the MS control. Fix a bug in
15723         SelectedListViewItemCollection.Clear that was pissing me off for the
15724         better part of a day because the collection was being altered
15725         underneath us as we walked the list.
15726
15727 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
15728
15729         * Control.cs: Not sure how we could miss this so long, but it seems
15730           that MS.Net has Capture set all the way from before calling 
15731           OnMouseDown through sending the mouse events until after
15732           OnMouseUp. This will fix DataGrid's selection being set to end
15733           at the location of the MouseUp.
15734
15735 2006-03-15  Jackson Harper  <jackson@ximian.com>
15736
15737         * BindingContext.cs: Check the binding after its added so that it
15738           can initialize the binding managers and hookup to events.
15739         * Binding.cs: Data members seem to sometimes include rows/cols in
15740           the format Row.Column we now take this into account.
15741           - Hookup to the position changed event so we can update the
15742           control when the position has changed in the data set.
15743         * CurrencyManager.cs: Take into account the row/col naming
15744           convention when creating dataset tables.
15745         * BindingContext.cs: Using a newer better way of storing
15746           datasource/datamember pairs.  Hopefully this better matches MS for
15747           looking up binding managers.
15748
15749
15750 2006-03-15  Jackson Harper  <jackson@ximian.com>
15751
15752         * BindingContext.cs: The currency manager needs the data member
15753         name, if the member is a data set we use the name to find the
15754         correct table.
15755         * CurrencyManager.cs: When creating the list prefer an IList over
15756         an IListSource.
15757         - Attempt to create a DataTable from a DataSet (TODO: might need
15758         some better error checking here, although MS doesn't seem to have much)
15759         - If we have a DataTable create a view and use it as our list.
15760
15761 2006-03-15  Mike Kestner  <mkestner@novell.com>
15762
15763         * ListView.cs: keep a matrix of the icon mode layout to facilitate
15764         keyboard navigation. Support Up/Down/Left/Right selection correctly
15765         for all 4 View modes.
15766         * ListViewItem.cs: add internal row/col fields for icon layouts.
15767
15768 2006-03-15  Jackson Harper  <jackson@ximian.com>
15769
15770         * TabControl.cs: Redraw the tabs when we resize so their newly
15771         calculated sizes are drawn on screen.
15772         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
15773         composite characters.
15774         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
15775         - filter events so that composite characters can be created
15776         patches by peter
15777         * X11Structs.cs: Add XIMProperties enum.
15778
15779 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
15780
15781         * Control.cs (BringToFront, SendToBack): Don't use window or handle
15782           unless it's created
15783
15784 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
15785
15786         * Control.cs (PerformLayout): We don't need to consider visiblity
15787           for anchoring, only for docking. This fixes 'whacky' alignment
15788           in listbox and other controls that use implicit scrollbars after
15789           the previous PerformLayout patch
15790         * ListBox.cs: Switched to use implicit scrollbars
15791           
15792 2006-03-14  Mike Kestner  <mkestner@novell.com>
15793
15794         * ToolBar.cs: 
15795         * VScrollBar.cs:
15796         - chain up the "new event" overrides to base and use
15797         OnEvent to raise them.  Part of fix for bug #76509.
15798
15799 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
15800
15801         * FileDialog.cs: Do not select an item in the parent directory
15802           on backspace
15803
15804 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
15805
15806         * Control.cs (PerformLayout): It would seem that we considered
15807           invisible windows for our layout. Not quite the right thing
15808           to do. Now we don't any longer, thereby fixing bug #76889.
15809
15810 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
15811
15812         * Control.cs (CanFocus): I goofed. A control can have focus 
15813           even though it's not selectable. Made it match MS docs.
15814
15815 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
15816
15817         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
15818           center by default (fixes #76895)
15819         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
15820           all uses of Border3DSides.All with the explicit ORd together
15821           Left|Right|Top|Bottom because I assume that nobody was aware 
15822           that All also implies a center fill. Most places I checked had
15823           a fill right above.
15824         * ProgressBarStyle.cs: Added
15825
15826 2006-03-13  Mike Kestner  <mkestner@novell.com>
15827
15828         * ListView.cs: fix breakage in drag shadow header positioning 
15829         from Peter's csc compilation fix.
15830
15831 2006-03-13  Mike Kestner  <mkestner@novell.com>
15832
15833         * ListView.cs: fix NRE produced by backspacing twice in a focused
15834         FileDialog.
15835
15836 2006-03-13  Mike Kestner  <mkestner@novell.com>
15837
15838         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
15839
15840 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
15841
15842         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
15843           be changed
15844         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
15845           the allowed size before making programmatic size changes
15846
15847 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
15848
15849         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
15850           set, metacity is broken and will still use the emty sizes in 
15851           the struct. (Fix for #77089)
15852
15853 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
15854
15855         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
15856           WindowExStyles and marked both enums as Flags
15857         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
15858           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
15859           to match WindowStyles split
15860         * XplatUIX11.cs:
15861           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
15862           - Updated to match WindowStyles split
15863         * XplatUIWin32.cs:
15864           - Fixed FosterParent creation, was using ExStyle on the Style field
15865             (This should help with Popup focus issues)
15866           - Updated to match WindowStyles split
15867
15868 2006-03-13  Jackson Harper  <jackson@ximian.com>
15869
15870         * MdiWindowManager.cs: Use the system menu height. Fixes some
15871         strange sizing issues.
15872
15873 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
15874
15875         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
15876         * TextBoxBase.cs:
15877           - Scroll to caret after inserting text (#77672)
15878           - Make scroll range one pixel higher, fixes off-by-one error (and
15879             makes underlines visible on the last line)
15880
15881 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
15882
15883         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
15884           the keyboard state from being stuck with keys in 'pressed' state when
15885           focus is switched away via keyboard
15886         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
15887           reset the keyboard if no X11 KeyUp events are expected to come
15888         * X11Structs.cs: Switched type of Visible to bool to match driver
15889
15890 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
15891
15892         * TextControl.cs:
15893           - Switched caret to be just 1 pixel wide, matches MS and looks less
15894             clunky
15895           - Moved caret display 1 pixel down from the top of the control
15896             to improve view
15897           - InsertCharAtCharet: Update the selection start if moving the caret
15898             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
15899           - No longer always creating the caret when the caret methods are
15900             called. Only the actual ShowCaret/HideCaret will do that now
15901           - Only setting caret visible if the owner control has focus
15902           - UpdateView: Added invalidation-shortcut logic for center and right 
15903             aligned text. Previously we'd update all according to the left
15904             logic which caused drawing errors. Also fixed height of invalidated
15905             areas, now properly invalidating the whole area (was off-by-one)
15906           - owner_HandleCreated: Always generate the document when the
15907             handle is created; this ensures that 
15908         * TextBoxBase.cs:
15909           - Fixed situation where caret would disappear under the right
15910             window border, also improved scrolling behaviour on left-
15911             aligned textboxes
15912           - Fixed right-aligned textboxes to have a border to the
15913             right instead of the caret being under the right border
15914         * XplatUIX11.cs:
15915           - Switched from 'nested' to simple visible/not visible tracking 
15916             for caret (part of fix for #77671)
15917           - No longer passing through translated FocusIn/FocusOut messages
15918             since we were notifying too often and the wrong windows. Instead
15919             we just notify our focussed window of receiving or loosing focus
15920         * XplatUIWin32.cs: Switched from 'nested' show/hide 
15921           counting for caret to simple visible yes/no behaviour (part of 
15922           fix for #77671)
15923
15924 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
15925
15926         * Mime.cs: Remove debug code...
15927
15928 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
15929
15930         * MimeGenerated.cs: Removed
15931         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
15932           and subclasses) from /usr/(local/)share/mime and
15933           $HOME/.local/share/mime.
15934
15935 2006-03-10  Jackson Harper  <jackson@ximian.com>
15936
15937         * MdiWindowManager.cs: Recalc the NC area when a window is
15938         maximized/restored so that the menu area is drawn on forms that
15939         don't have a menu.
15940
15941 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
15942
15943         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
15944           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
15945           us to force a WM_NCCALCRESIZE message being sent. This is needed
15946           for MDI maximizing.
15947
15948 2006-03-10  Jackson Harper  <jackson@ximian.com>
15949
15950         * Form.cs: We need to use the ActiveMenu when calculating menu
15951         height.
15952         - Fix nullref when the window manager hasn't been created yet.
15953         * Control.cs: Fix nullref when we try to bring a control to the
15954         front that has no parent.
15955         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
15956         height.
15957         - Add a dummy item to the maximized menu so it always has the
15958         correct height. Otherwise when there are no menus we don't get our
15959         icon and buttons.
15960         
15961
15962 2006-03-10  Jackson Harper  <jackson@ximian.com>
15963
15964         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
15965         stuff.
15966         * Form.cs: Make the window_state internal so the window managers
15967         can track it.
15968         - When an MDI child is maximized let its window manager create the
15969         main menu (so it can add its icon).
15970         - Notify the window managers of state changes
15971         - Let the window manager paint its buttons and handle button
15972         clicks on the menu when it is maximized.
15973         * InternalWindowManager.cs: Move the prev_bounds into the mdi
15974         window manager, since tool windows don't use it, only mdi windows.
15975         - Tell the main form that we don't want it to handle NCPAINT
15976         itself to avoid extra painting.
15977         - Handle clicks on a maximized windows menu.
15978         - Handle window state changes
15979         - Handle minimize/maximize clicks correctly by setting the window state.
15980         * MdiWindowManager.cs: Add an icon menu that (the menu you get
15981         when clicking on the forms icon).
15982         - New method to create a forms maximized menu. This is its normal
15983         menu + an icon.
15984         - Handle window state changes.
15985         - Handle sizing of maximized windows.  Maximized windows are just
15986         drawn bigger then the parent visible area. All controls are still
15987         there, they are just outside the visible area (this matches windows).
15988         * MdiClient.cs: No scrollbars when a child window is maximized.
15989         - Let the children windows figure out how big they should be when
15990         sizing maximized windows.
15991         - Implement a version of ArrangeIconicWindows somewhat similar to
15992         Windows version.  There are some little differences, but I don't
15993         think any app will rely on the layout of minimized mdi windows.
15994
15995 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
15996
15997         * Padding.cs: Several fixes to allow compiling with csc 2.0
15998
15999 2006-03-09  Jackson Harper  <jackson@ximian.com>
16000
16001         * Menu.cs:
16002         * MenuItem.cs: Cheap hack so we can add items to the list without
16003         the events being raised.  This allows adding mdi items during
16004         drawing. TODO: Should probably find a better time to add the items.
16005
16006 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
16007
16008         * ThemeWin32Classic.cs:
16009           - CheckBox_DrawText: Added logic to not wrap if not enough space
16010             is available (Fix for bug #77727)
16011           - RadioButton_DrawText: Added logic not to wrap if not enough
16012             space is available (Fix for bug #77727). Also removed some
16013             duplicate code, DrawString always drawing the regular text
16014             before hitting the if statement.
16015
16016 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
16017
16018         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
16019
16020 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
16021
16022         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
16023         * ContainerControl.cs: Partial implementation of some 2.0 scaling
16024           methods. Moved the new 2.0 properties into alphabetical order with
16025           other properties and added MonoTODO tags
16026
16027 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
16028
16029         * AutoScaleMode.cs: Added. Fix build.
16030
16031 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
16032
16033         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
16034           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
16035           and was requiring premature handle creation for calls from above
16036         * Form.cs, Control.cs: Removed handle arguments from calls to
16037           CalculateClientRect()
16038
16039 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
16040
16041         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
16042           drag_column.column_rect is MarshalByRef and can't be used that way
16043
16044 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
16045
16046         * AxHost.cs: Added deserialization constructor for 
16047           AxHost+State (fixes 77743)
16048
16049 2006-03-09  Mike Kestner  <mkestner@novell.com>
16050
16051         * ListView.cs: 
16052         - Added column drag reordering for details view.
16053         - fixed behavior when mouse is dragged off column and
16054         AllowColumnReorder is false.
16055         * ColumnHeader.cs: clone the format too in Clone.
16056         * Theme.cs: add DrawListViewHeaderDragDetails method.
16057         * ThemeWin32Classic.cs:
16058         - impl new method for drawing drag column shadows and targets.
16059         - support column offset for details mode in DrawListViewItem.
16060
16061 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
16062
16063         * TextControl.cs: Reset the char_count when the document is cleared
16064           (Fixes bug reported on mono-winforms mailing list)
16065
16066 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
16067
16068         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
16069           of calling base we simply process the key ourselves, since both
16070           DefWindowProc and the handled method would set m.Result. 
16071           (Fixes #77732)
16072
16073 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
16074
16075         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
16076           method also moves the window; instead implemented a copy of
16077           Control.ScaleCore (Part of fix for #77456)
16078         * TextBoxBase.cs: 
16079           - Created new CreateGraphicsInternal method to allow providing
16080             a graphics context when no handle is created without triggering
16081             handle creation. (Part of fix for #77456)
16082           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
16083         * TextControl.cs: 
16084           - Switched Constructor to require TextBoxBase instead of Control (to
16085             allow uncast access to CreateGraphicsInternal)
16086           - Safeguarded use of owner.Handle property. No longer accessing it
16087             unless the handle is already created.
16088           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
16089           - Now triggering a recalc when owning control becomes visible
16090         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
16091           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
16092           premature handle creation (Part of fix for #77456)
16093         * Control.cs:
16094           - We now only destroy our double-buffering buffers when the
16095             control is resized or disposed, but not when visibility
16096             changes. (The code even re-created them twice every time)
16097           - Now requiring a redraw of the buffer on visibility changes
16098             (fixes bug 77654 part 2)
16099           - Not passing OnParentVisibleChanged up unless the control
16100             is visible
16101           - CanFocus: Fixed to match MS documentation
16102           - Focus: Fixed to return actual focus state and to check if
16103             setting focus is legal before setting it
16104
16105 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
16106
16107         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
16108           when to draw focus rectangle by looking at parent focus and
16109           selected state instead. This fixes TabPages on Linux sometimes
16110           having none or multiple focus rectangles.
16111         * XplatUIX11.cs (SetFocus): 
16112           - Don't set the focus if the same window already has focus
16113           - Use SendMessage instead of PostMessage (like it's Win32
16114             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
16115             to match MS behaviour
16116         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
16117           are not selectable.
16118
16119 2006-03-07  Jackson Harper  <jackson@ximian.com>
16120
16121         * PictureBox.cs: Revert line I accidently committed last week.
16122
16123 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
16124
16125         * Control.cs: 
16126           - Added new IsRecreating and ParentIsRecreating properties to
16127             allow testing if RecreateHandle has been called on ourselves
16128             or one of our parents
16129           - WndProc(WM_DESTROY): If our control handle is being recreated
16130             we immediately need to create the handle when receiving the
16131             destroy, that way our child windows find a valid parent handle
16132             when they themselves are being recreated upon WM_DESTROY receipt
16133             (fix for bug #77654 part 1)
16134         * XplatUIX11.cs:
16135           - DestroyWindow: WM_DESTROY must be sent to our own window before
16136             notifying any child windows. MS documents that child windows
16137             are still valid when WM_DESTROY is received. (Control now relies on
16138             this behaviour)
16139           - Added some fine-grain debug options
16140
16141 2006-03-06  Jackson Harper  <jackson@ximian.com>
16142
16143         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
16144         box and base calculations off this.
16145         * MdiChildContext.cs:
16146         * MdiWindowManager.cs: Don't need to ensure scrollbars here
16147         anymore.
16148         
16149 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
16150
16151         * Splitter.cs: In situations where the affected control is added
16152           to the parent's control list after the splitter, we would not
16153           populate affected. Now we try populating it on mousedown, if
16154           it's not already set, and force it to be re-set whenever our
16155           parent changes.
16156
16157 2006-03-03  Matt Hargett  <matt@use.net>
16158
16159         * Control.cs: implement Control.Padding
16160         * Padding.cs: -Padding.All returns -1 when constructing with the
16161         implicit default ctor
16162         -Padding.ToString() matches MS.NET
16163         * ContainerControl.cs: implement
16164         ContainerControl.AutoScaleDimensions
16165         * ListControl.cs: implement ListControl.FormattingEnabled
16166         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
16167         * ButtonBase.cs:
16168         * TabPage.cs: Implement UseVisualStyleBackColor.
16169         * PictureBox.cs: Implement PictureBox.InitialImage.
16170
16171 2006-03-03  Mike Kestner  <mkestner@novell.com>
16172
16173         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
16174         event declarations to proxy to base event.
16175         * ListViewItem.cs: update to use ItemControl.
16176         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
16177         * ThemeWin32Classic.cs: update to new ListView theme API and fix
16178         column header label rendering for 0 width columns.
16179
16180 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
16181
16182         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
16183           that causes the control to be created. Fixes #77476.
16184
16185 2006-03-02  Jackson Harper  <jackson@ximian.com>
16186
16187         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
16188         expose_pending.
16189
16190 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
16191
16192         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
16193           passed in for the EventArgs (fixes #77690)
16194
16195 2006-03-01  Jackson Harper  <jackson@ximian.com>
16196
16197         * ScrollBar.cs: Refresh afterbeing resized.
16198
16199 2006-02-28  Mike Kestner  <mkestner@novell.com>
16200
16201         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
16202         Clean up a tracker compile warning.
16203         * MenuItem.cs: add internal PerformPopup method.
16204         [Fixes #77457]
16205
16206 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
16207
16208         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
16209           implicit expose) when the text is set to null
16210
16211 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
16212
16213         * RichTextBox.cs (FlushText): When newline is true, we always
16214           need to split the line, even if no text is on it and we may
16215           never eat newlines. (Fixes #77669)
16216
16217 2006-02-28  Mike Kestner  <mkestner@novell.com>
16218
16219         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
16220         and set Selected instead.
16221         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
16222         collections.
16223
16224 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
16225
16226         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
16227
16228 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
16229
16230         * FontDialog.cs:
16231           - Got rid of the panel. All controls are now directly added to
16232             the dialog form
16233           - It is now possible to set a font with the Font property
16234           - MinSize and MaxSize property do now what they should
16235           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
16236           - Searching and selecting a font with the font textbox works now,
16237             the same applies to the style and size textbox
16238           - Draw the correct 3D border in the example panel
16239           - Fixed a little mem leak (unused fonts didn't get disposed)
16240           - Many other internal updates/rewrites...
16241           - Fix typo
16242
16243 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
16244
16245         * TextControl.cs: 
16246           - InsertRTFFromStream: Added 'number of characters inserted' argument
16247           - set_SelectedRTF: Now using the number of characters to calculate
16248             the new location for the selection and cursor (x/y cannot be used
16249             due to potentially already wrapped text)
16250
16251 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
16252
16253         * TextControl.cs: Added property and implemented means to allow 
16254           disabling recalculation of a document (can be used to speed up
16255           multiple inserts and is needed to make RTF inserts predictable, see
16256           bug #77659)
16257         * RichTextBox.cs: Using the new NoRecalc property of Document to
16258           keep x/y insert locations predictable. Also makes it faster inserting
16259           large chunks of RTF
16260
16261 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
16262
16263         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
16264           it's easier for a child control to handle the other messages without
16265           having to duplicate the special functionality
16266         * TextBoxBase.cs
16267           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
16268             code to handle processing the key ourselves, in order to get 
16269             access to the result of KeyEventArgs.Handled. We now only call 
16270             ProcessKey if they key hasn't been handled already. Fixes #77526.
16271           - set_Text: If null or empty string is given, just clear the 
16272             document. Fixes part of #77526
16273
16274 2006-02-27  Jackson Harper  <jackson@ximian.com>
16275
16276         * SizeGrip.cs: Paint the background color before painting the grip
16277         so things look right.
16278         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
16279
16280 2006-02-27  Mike Kestner  <mkestner@novell.com>
16281
16282         * ListView.cs:
16283           - Restructure layout and invalidation model to remove a ton of
16284           flicker from the control and speed up performance in general.
16285           - Add manual column resize, flickers like crazy, but I already have
16286           some ideas on how I'll fix that. (#76822)
16287           - Merge the three Icon-based views into a single layout method.
16288           - Move item selection interaction logic from the item since 
16289           interaction with the collections is more appropriate to the view.
16290           - Deselection on non-item clicks.
16291         * ListViewItem.cs:
16292           - Encapsulate most of the layout. Add some internal props to trigger
16293           layout.  Move to a model where Items invalidate themselves instead
16294           of just invalidating the whole control every time something changes.
16295           - Invalidate on Text/Caption changes.
16296           - switch to an offset based layout model to avoid having to absolute
16297           position every element on item moves.
16298           - correct checkbox layout to conform to MS layout.
16299         * ThemeWin32Classic.cs:
16300           - refactor some column header drawing code.
16301           - fix string justification for column headers (#76821)
16302           - make SmallIcon labels top justified for compat with MS impl.
16303         * ThemeClearlooks.cs:
16304           - adjust to new ListViewItem internal checkbox bounds api.
16305
16306 2006-02-27  Jackson Harper  <jackson@ximian.com>
16307
16308         * Control.cs:  Change where implicit controls fall in the zorder.
16309         They are now on top of all children.
16310         - Synced AddImplicit code with Add
16311         - Removed unused enumerator.
16312         * SizeGrip.cs: Remove the TODO as its been TODONE.
16313
16314 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
16315
16316         * TextControl.cs(Insert): Combine the last lines unless the insertion
16317           string ends with \n\n, otherwise we leave one line too many (Fixes
16318           something I noticed with the testapp for #77526; the bug itself was
16319           already fixed in the previous checkin)
16320
16321 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
16322
16323         * RichTextBox.cs:
16324           - SelectionColor and SelectionFont methods no longer set absolute
16325             styles. Instead, the keep font or color respectively (This 
16326             resolves a long-standing FIXME in the code)
16327           - When flushing RTF text, the insert code now considers text trailing
16328             behind the insertion point (Fixes the bug where when replacing
16329             the selected text via SelectedRTF the remainder of the line behind 
16330             the selection would stay on the first insertion line)
16331         * TextBoxBase.cs:
16332           - AppendText now updates the selection points after inserting text
16333           - AppendText now ensures that the last tag (sometimes 0-length) of
16334             the document is used for the style information (Fixes part of 
16335             bug #77220)
16336         * TextControl.cs:
16337           - Created new FontDefiniton class to allow describing partial style
16338             changes
16339           - StreamLine() now takes a lines argument, to allow it to decide
16340             whether an encountered zero-length tag is the last in the document
16341             (which must be kept to not loose the font/color contained in it,
16342             for later appends)
16343           - Created Combine() and Split() methods for Marker structs, to 
16344             support marker updates due to reformatted documents (soft line
16345             wraps)
16346           - Implemented Document.CaretTag setter
16347           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
16348             of the last line (Not the cause, but also exposed by bug #77220)
16349           - Added LineTag argument to InsertString method, to allow callers
16350             to force a certain tag to be used (required to force use of the
16351             trailing zero-length tag of a document)
16352           - Now updating markers in Combine(), to avoid stale tag markers
16353           - Added some method descriptions to aid maintenance
16354           - Implemented new FormatText concept, allowing additive/subtractive
16355             formatting by only specifying the components that are to be 
16356             changed. This was needed for resolving the RTB.SelectedColor/
16357             RTB.SelectedFont fixmes
16358           - Added Break() support method to allow breaking up linetags (used
16359             for partial formatting)
16360           - Added GenerateTextFormat() method. It is used for partial 
16361             formatting and allows to generate a full font/color from given
16362             attributes and an existing tag.
16363
16364 2006-02-26  Jackson Harper  <jackson@ximian.com>
16365
16366         * XplatUIX11.cs:  Use the correct caption height.
16367         - Translate hittest coordinates to screen coords to match MS.
16368         * XplatUIWin32.cs: When we create MDI windows we need to reset
16369         some of the style flags, so we get a nice blank window, and can
16370         draw all the decorations ourselves.
16371         - Set a clipping rectangle on the non client paint event, the
16372         window manager drawing code needs one.
16373         * Form.cs: The window manager needs to know when the window state
16374         has been updated.
16375         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
16376         don't need to factor in border and title sizes in these
16377         methods. TODO: Remove the args and fix the call points.
16378         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
16379         properly.
16380         - Let the driver set the cursors.
16381         - Improve active window handling
16382         - Correct sizes for title bars and buttons.
16383         - Match MS drawing better
16384         * MdiWindowManager.cs: We don't need to handle border style
16385         updates specially anymore.
16386         - Check for scrollbars when windows are done moving
16387         - Handle Active properly.
16388         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
16389         correctly. I am spewing the exception though, so we don't hide the
16390         bugs.
16391         
16392 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
16393
16394         * DataGridViewRowPostPaintEventArgs.cs,
16395           DataGridViewCellPaintingEventArgs.cs,
16396           DataGridViewRowCollection.cs,
16397           DataGridViewRowPrePaintEventArgs.cs,
16398           DataGridViewCell.cs: Clear a few warnings and implement a few
16399           exceptions that should be thrown.
16400
16401 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
16402
16403         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
16404           'inheriting' our parent's (non-default) cursor. (Part of
16405            the fix for #77479)
16406
16407 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
16408
16409         * XplatUIX11.cs: Fixed cast to make csc happy
16410
16411 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
16412
16413         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
16414           it's for the client area (part of fix for #77479 and needed
16415           for MDI window cursor handling)
16416         * XplatUIX11.cs
16417           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
16418             the appropriate default cursors and also passing the message
16419             up the parent chain 
16420           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
16421             for non-client areas
16422
16423 2006-02-15  Jackson Harper  <jackson@ximian.com>
16424
16425         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
16426         is a real MDI window
16427
16428 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
16429
16430         * X11DesktopColors.cs: Instead of checking the desktop session
16431           string for "KDE" check if it starts with "KDE"
16432
16433 2006-02-10  Jackson Harper  <jackson@ximian.com>
16434
16435         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
16436         systems).
16437
16438 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
16439
16440         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
16441           errors
16442         * ColorDialog.cs:
16443           - Got rid of the panel. All controls are now directly added to
16444             the dialog form
16445           - Changed to mono coding style
16446
16447 2006-02-10  Jackson Harper  <jackson@ximian.com>
16448
16449         * InternalWindowManager.cs: We don't need the set visibility to
16450         false hack anymore now that peter has written beautiful shutdown
16451         code.
16452
16453 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
16454
16455         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
16456           where already explicitly destroyed
16457
16458 2006-02-10  Jackson Harper  <jackson@ximian.com>
16459
16460         * MdiClient.cs: Handle the case where windows are too high or to
16461         the left and we need scrollbars.
16462
16463 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
16464
16465         * MimeIcon.cs: Added some icons
16466         * FileDialog.cs:
16467           - Fixed bug #77477
16468           - Got rid of the panel. All controls are now directly added to
16469             the dialog form
16470           - Changed to mono coding style
16471           - On Linux "My Computer" and "My Network" will now show some
16472             more usefull information. A new class, MasterMount, gathers
16473             this information from /proc/mount. Updated MWFFileView to make
16474             use of this information
16475           - Fixed a bug that caused FileDialog to crash when
16476             ".recently_used" file had a zero size
16477           - FilterIndex does now what it should
16478           - Some Refactoring
16479         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
16480             FileDialog changes
16481
16482 2006-02-09  Jackson Harper  <jackson@ximian.com>
16483
16484         * ComboBox.cs: Don't touch if null.
16485
16486 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
16487
16488         * Cursor.cs: 64bit safeness fix
16489         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
16490
16491 2006-02-09  Jackson Harper  <jackson@ximian.com>
16492
16493         * Form.cs: If a form is made into an MDI form update the styles so
16494         all the props can get set correctly.
16495         - Kill the mdi_container when we dont need it anymore.
16496         * InternalWindowManager.cs: Add missing NOT
16497
16498 2006-02-08  Jackson Harper  <jackson@ximian.com>
16499
16500         * InternalWindowManager.cs: Respek clipping when drawing MDi
16501         decorations.
16502
16503 2006-02-08  Jackson Harper  <jackson@ximian.com>
16504
16505         * Hwnd.cs: Add bits to track non client expose events.
16506         * XplatUIX11.cs: Track non client expose events on the hwnd. This
16507         gives us a proper invalid rect and will allow for some nice
16508         optimizations with NC client drawing
16509         - MDI windows are children windows, so move their style handling
16510         into the child window block.
16511         * InternalWindowManager.cs: Remove a state reset that was
16512         getting invoked at the wrong time. Fixes managed windows getting
16513         into a 'stuck' captured state.
16514
16515 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
16516
16517         * TextControl.cs (Document.ctor): Now initializing 
16518           selection_anchor. Fixes #77493
16519
16520 2006-02-07  Jackson Harper  <jackson@ximian.com>
16521
16522         * TrackBar.cs: The increment/decrements were backwards.
16523
16524 2006-02-07  Mike Kestner  <mkestner@novell.com>
16525
16526         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
16527         to the instance itself.
16528
16529 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
16530
16531         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
16532           on ulongs and pointers, the size differs between 32bit and 64bit
16533           systems. 
16534
16535 2006-02-07  Mike Kestner  <mkestner@novell.com>
16536
16537         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
16538         for 64 bit platforms to work around a metacity bug. 
16539
16540 2006-02-07  Jackson Harper  <jackson@ximian.com>
16541
16542         * TrackBar.cs: Process the input keys we need, and hookup to
16543         KeyDown instead of using WndProc, so we get key messages.
16544
16545 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
16546
16547         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
16548           machine we're on. 
16549         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
16550           we need to translate the XdndVersion atoms array before sending it
16551
16552 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
16553
16554         * XplatUIX11.cs: 
16555           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
16556             number of bits for the property, not the number of bytes. The
16557             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
16558             but would not crash since it specified 8 bits instead of 4 bits)
16559           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
16560             defined as XID -> long in the C headers)
16561           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
16562             references since those are now IntPtr to begin with
16563           - Switched all Atom.XXX 'int' casts to IntPtr casts
16564           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
16565           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
16566           - Added XChangeActivePointerGrab DllImport (for X11DnD)
16567         * X11Structs.cs:
16568           - Changed 'int' type for Atoms in XEvent structures to IntPtr
16569           - Changed atom in HoverStruct to be IntPtr
16570         * X11DnD.cs:
16571           - Removed local DllImports, switched code to use those from XplatUIX11
16572           - Removed/fixed casts related to the switch of Atom to be a IntPtr
16573
16574 2006-02-06  Mike Kestner  <mkestner@novell.com>
16575
16576         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
16577         method signatures in the import region.  There may still be some
16578         lingering struct marshaling issues, as I didn't drill down into those.
16579         Yet.
16580
16581 2006-02-06  Jackson Harper  <jackson@ximian.com>
16582
16583         * ComboBox.cs: Dont manually set the top_item, this is computed
16584         when the scrollbar position is set.
16585
16586 2006-02-06  Mike Kestner  <mkestner@novell.com>
16587
16588         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
16589         startup crashes on amd64.  There's other fixes needed.  All pinvoke
16590         usage of Atom needs to be mapped to IntPtr for example.  And there are
16591         likely other int/long issues to be addressed.
16592
16593 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
16594
16595         * FileDialog.cs: One more...
16596
16597 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
16598
16599         * FileDialog.cs: Next try
16600
16601 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
16602
16603         * FileDialog.cs: First part of fix for #77464
16604
16605 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
16606
16607         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
16608           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
16609           AcceptButton border drawing.
16610
16611 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
16612
16613         * Form.cs: Moved positioning of form after auto scaling is applied,
16614           otherwise it would possibly use wrong form size.
16615
16616 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
16617
16618         * Control.cs (RecreateHandle): No need to re-create any child
16619           controls, the child windows will get destroyed automatically by
16620           the windowing system or driver, and re-created when the handle
16621           is being accessed the first time. Fixes #77456
16622         * Form.cs: No longer setting the form to closing if the handle is 
16623           being recreated. This seems like the right thing to do, don't
16624           have a bug or testcase for this, though.
16625
16626 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
16627
16628         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
16629           controls to avoid unwanted side effects
16630
16631 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
16632
16633         * Control.cs: 
16634           - ScaleCore needs to scale the bounds, not the ClientSize of the 
16635             control. Fixes #77416.
16636           - DefaultSize is 0,0 for control
16637         * TextBoxBase.cs: 
16638           - DefaultSize is 100, 20
16639           - SetBoundsCore: Now enforcing the height, no matter if the provided
16640             height is more or less than the preferred one, as long as AutoSize
16641             is on
16642         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
16643
16644 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
16645
16646         * Control.cs:
16647           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
16648             call unless both performLayout is true *and* we have a pending
16649             layout change
16650           - ResumeLayout: MS does not completely nest Suspend and Resume,
16651             they bottom out at 0, fixed our code to match that.
16652           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
16653             SetBoundsCore, we were updating even when we shouldn't. This fixes
16654             swf-anchors mis-anchoring when resizing the app fast and lots.
16655           - UpdateDistances: Now only setting the left and top distance if 
16656             we have a parent and are not suspended, this is based on
16657             a suggestion by Don Edvaldson in bug #77355.
16658           - OnVisibleChanged: Fixed logic when to create the control. We may
16659             not create the control if we have no parent or if it's not visible;
16660             switched to using Visible property instead of is_visible field 
16661             since the property also considers parent states. This fixes a bug
16662             when starting Paint.Net
16663
16664 2006-02-02  Jackson Harper  <jackson@ximian.com>
16665
16666         * Form.cs: If the forms handle hasn't been created yet don't call
16667         into xplatui to make it top most, just set the topmost flag on the
16668         form in CreateParams
16669         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
16670
16671 2006-02-01  Jackson Harper  <jackson@ximian.com>
16672
16673         * ScrollableControl.cs: Refactored the Recalculate method a
16674         little, this wasn't handling all the variants of bottom and right
16675         bars needed to be added and added/removed based on their
16676         counterparts being added/removed (which changes the drawable
16677         size). Also we special case client widths and heights of 0 and
16678         don't add the scrollbar for those.
16679
16680 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
16681
16682         * XplatUIX11.cs: 
16683           - Added method to get AbsoluteGeometry(); currently unused, but might
16684             be used in the future, if we try again to figure out toplevel
16685             coordinates with some more crappy window managers
16686           - Added FrameExtents() method to retrieve the WM set decoration size
16687           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
16688             to deal with at least KDE, FVWM and metacity (Fixes #77092)
16689         * Hwnd.cs: 
16690           - Added whacky_wm tracking var for metacity
16691           - Added logic to have default menu height if the actual menu height
16692             has not yet been calculated (part of fix for #77426)
16693         * Form.cs: Keep track whether client size has been set and re-set 
16694           it if a menu is added/removed afterwards (Fixes #77426)
16695
16696 2006-01-31  Jackson Harper  <jackson@ximian.com>
16697
16698         * Control.cs: When a new Site is set on the component attempt to
16699         pull the AmbientProperties from it.
16700
16701 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
16702
16703         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
16704           in the background of the owning form. Fixes #77332
16705
16706 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
16707
16708         * MimeIcon.cs: Fix for #77409
16709
16710 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
16711
16712         * XplatUIX11GTK.cs: Initial import
16713
16714 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
16715
16716         * FixedSizeTextBox: fixes class signature
16717
16718 2006-01-30  Jackson Harper  <jackson@ximian.com>
16719
16720         * FixedSizeTextBox.cs: New internal class that represents a
16721         textBox that will not be scaled.
16722         * TreeView.cs:
16723         * ComboBox.cs:
16724         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
16725         standard TextBox.
16726                 
16727 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
16728
16729         * XplatUIX11.cs: Retrieve default screen number instead of
16730           assuming 0. Attempted fix for #77318
16731
16732 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
16733
16734         * XplatUIWin32.cs: 
16735           - GetWindowPos: When a window is parented by FosterParent, use 
16736             the desktop instead of FosterParent as the base to get coordinates
16737           - CreateWindow: Don't make FosterParent the parent window for Popups
16738             if we don't want a taskbar entry, Popups automatically don't get one
16739         * Hwnd.cs: Need to call remove to actually remove the key from the
16740           hash table
16741
16742 2006-01-30  Mike Kestner  <mkestner@novell.com>
16743
16744         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
16745
16746 2006-01-30  Jackson Harper  <jackson@ximian.com>
16747
16748         * TreeView.cs:
16749         * TreeNode.cs: Raise events no matter how the treenode is
16750         checked. Patch by Don Edvalson.
16751
16752 2006-01-30  Jackson Harper  <jackson@ximian.com>
16753
16754         * TreeNode.cs: Signature fix.
16755
16756 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
16757
16758         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
16759
16760 2006-01-20  Mike Kestner  <mkestner@novell.com>
16761
16762         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
16763         event forwarding when menus are active.
16764         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
16765         Most of the patch is pdb's with a little rework.
16766
16767 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
16768
16769         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
16770           Removed GetMenuDC and ReleaseMenuDC methods; replaced
16771           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
16772         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
16773         * InternalWindowManager.cs: Added use of PaintEventStart/End to
16774           handling of WM_NCPAINT message, now passing the PaintEventArgs to
16775           the PaintWindowDecorations method
16776         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
16777         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
16778         * MenuAPI.cs: Made tracker window invisible
16779         * XplatUIWin32.cs:
16780           - Removed GetMenuDC and ReleaseMenuDC methods
16781           - Implemented the client=false path for PaintEventStart and
16782             PaintEventEnd
16783
16784 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
16785
16786         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
16787         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
16788           styles
16789         * Form.cs: 
16790           - MaximizeBox, MinimizeBox: Recreate the handle when setting
16791             the style
16792           - CreateParams: Reworked the styles to match MS look'n'feel,
16793             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
16794             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
16795
16796 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
16797
16798         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
16799           window is not mapped, since otherwise every form that's being 
16800           created is considered minimized, which is wrong.
16801         * Form.cs: Catching the exception and returning our internal value
16802           instead
16803
16804 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
16805
16806         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
16807           SetWindowMinMax() to have means to tell the driver about the minimum,
16808           maximum and maximized state window sizes. (Part of the fix for #76485)
16809         * Form.cs:
16810           - Implemented tracking of minimum and maximum window size, now calling
16811             new SetWindowMinMax() driver method to tell the driver (Part of the
16812             fix for #76485)
16813           - Finished handling of WM_GETMINMAXINFO method, now setting all values
16814             (Completes fix for #76485)
16815           - Calling new SetWindowMinMax driver method when the handle for a 
16816             form is created, to make sure the driver knows about it even if
16817             the values have been set before the window was created
16818           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
16819             to avoid messing up our anchoring calculations (partial fix
16820             for #77355)
16821         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
16822         * XplatUIX11.cs:
16823           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
16824           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
16825             (and presumably other freedesktop.org compliant WMs). Left the
16826             assumption unmapped=minimized, needed for SetVisible to work.
16827           - Now setting the window state when creating windows
16828           - Fixed SetVisible to consider/set the window state when mapping
16829             a Form. We cannot set the state before it's mapped, and we cannot
16830             use Form.WindowState once it's mapped (since it would ask the
16831             driver and get 'normal'. Therefore, we grab the state before
16832             mapping, map, and then set state.
16833           - Implmemented SetWindowMinMax method; Metacity does not seem to
16834             honor the ZoomHints, though.
16835         * XplatUIWin32.cs:
16836           - Removed MINMAXINFO (moved to XplatUIStructs)
16837           - Added SetWindowMinMax stub (on Win32 the only way to set that
16838             information is in response to the WM_GETMINMAXINFO message, which
16839             is handled in Form.cs)
16840           - Added logic to SetVisible to set the proper window state when a 
16841             form is made visible (fixes #75720)
16842
16843 2006-01-26  Jackson Harper  <jackson@ximian.com>
16844
16845         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
16846         same way we handle them with Invoke.
16847
16848 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
16849
16850         * Form.cs:
16851           - Added tracking of window state so CreateParams can return
16852             the appropriate style
16853           - Moved setting of WS_CAPTION style in CreateParams to allow
16854             styles without caption
16855         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
16856           control if the TextBox property is accessed. Fixes #77345
16857         * Control.cs:
16858           - get_Created: now uses is_disposed and is_created to determine
16859             return value (suggested by Jackson)
16860           - CreateHandle: No longer exits if the handle is being recreated
16861           - RecreateHandle: If the handle is not yet created call the 
16862             appropriate method to create either control or handle. If the
16863             control is already created CreateHandle will simply exit instead
16864             of just creating the handle
16865         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
16866           now SendMessage WM_DESTROY directly to the control when DestroyWindow
16867           is called.
16868         * XplatUIX11.cs: 
16869           - When DestroyWindow is called, instead of waiting for the 
16870             DestroyNotification from X11, we directly post it to the WndProc
16871             and immediately dispose the hwnd object.
16872             Same applies to DestroyChildWindows, and this obsoletes the
16873             expose_pending tracking. Contrary to Win32 behaviour we destroy our
16874             child windows before our own, to avoid X11 errors.
16875           - Removed the direct sending of WM_PAINT on UpdateWindow
16876         * XplatUIWin32.cs:
16877           - Reworked DoEvents and GetMessage to allow access to internal queue
16878             even when trying non-blocking access to the queue.  Fixes #77335. 
16879             Based on a patch suggestion by Don Edvalson. The new private
16880             GetMessage can now also be used as a backend for a PeekMessage
16881             frontend version.
16882         * XplatUI.cs: Improved debug output for CreateWindow
16883
16884 2006-01-25  Jackson Harper  <jackson@ximian.com>
16885
16886         * Help.cs: Allow param to be null. Patch by Don Edvalson.
16887
16888 2006-01-24  Jackson Harper  <jackson@ximian.com>
16889
16890         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
16891         when we have a MaxDropItems lower then the selected index.
16892
16893 2006-01-24  Jackson Harper  <jackson@ximian.com>
16894
16895         * Control.cs: Don't allow selection of non visible controls, allow
16896         selection of controls without parents.
16897
16898 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
16899
16900         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
16901         * DataGridDrawingLogic.cs: Add editing row only when is necessary
16902
16903 2006-01-23  Jackson Harper  <jackson@ximian.com>
16904
16905         * UpDownBase.cs: Make the textbox handle all the selection and
16906         tabbing. This fixes tabing to updown controls.
16907
16908 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
16909
16910         * TextBoxBase.cs: fixes exception thown the object was null
16911
16912 2006-01-23  Jackson Harper  <jackson@ximian.com>
16913
16914         * ButtonBase.cs: Just use the base CreateParams. They set
16915         visibility and enabled correctly.
16916         * ComboBox.cs:
16917         * TrackBar.cs:
16918         * MonthCalendar.cs: Lets let the base set as much of the
16919         createparams as possible so we don't have duplicate code all over
16920         the place.
16921
16922 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
16923
16924         * ThemeGtk.cs: Added TrackBar and some experimental code to
16925           get double buffering back
16926
16927 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
16928
16929         * DataGrid.cs: Allows row number set internally higher than the last
16930         when creating a new row. Restores the editing functionality.
16931
16932 2006-01-20  Mike Kestner  <mkestner@novell.com>
16933
16934         * MimeIcon.cs: delay Image creation until the icons are accessed
16935         instead of creating 190 scaled images on GnomeHandler startup.
16936
16937 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
16938
16939         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
16940           first call base before processing the event. Fixes #77279
16941
16942 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
16943
16944         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
16945           that the stride for the GDI bitmap would match the stride of
16946           a DIB or a Cursor.
16947
16948 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
16949
16950         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
16951
16952 2006-01-19  Jackson Harper  <jackson@ximian.com>
16953
16954         * ComboBox.cs: Hookup the text controls keydown event so we get
16955         those when the text control has the focus.
16956
16957 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
16958
16959         * Label.cs: Now using the base events instead of defining new ones;
16960           this allows us to just call the base properties without having to
16961           duplicate all base property logic 
16962
16963 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
16964
16965         * Label.cs: A label by default is not a tabstop (Fixes one of our
16966           failing nunit tests)
16967
16968 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
16969
16970         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
16971         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
16972
16973 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
16974
16975         * Cursor.cs: Reimplemented creating cursor bitmaps without using
16976           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
16977           This fixes #77218
16978         * XplatUIWin32.cs: 
16979           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
16980             constructor creates images that can't be saved. Part of the fix
16981             for #76103
16982           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
16983           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
16984             bug fix for handling window state in forms properly)
16985
16986 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
16987
16988         * ThemeGtk.cs: Simplify ScrollBar drawing
16989
16990 2006-01-18  Jackson Harper  <jackson@ximian.com>
16991
16992         * Splitter.cs: Set the default dock style for the splitter control
16993         in the constructor.
16994
16995 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
16996
16997         * ThemeGtk.cs: Corrected StateType and ShadowType for
16998           gtk_paint_box
16999
17000 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
17001
17002         * Control.cs: Make use of Theme.DoubleBufferingSupported
17003         * ThemeGtk.cs:
17004           - Added drawing for flat style buttons
17005           - Added ScrollBar drawing
17006
17007 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
17008
17009         * ThemeClearlooks.cs: Removed some unneeded code.
17010         * ThemeGtk.cs: First part of ThemeGtk enhancements.
17011
17012 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
17013
17014         * LinkLabel.cs: We need to update the hover drawing when
17015           leaving the control as well.
17016
17017 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
17018
17019         * DataGrid.cs: Clicking on non empty areas in the columns
17020            area was giving an exception
17021
17022 2006-01-17  Jackson Harper  <jackson@ximian.com>
17023
17024         * ThemeWin32Classic.cs:
17025         * ListView.cs: Do not draw/clip the headers when the header style
17026         is None.
17027
17028 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
17029
17030         * DataGrid.cs: Fixes 77260
17031         
17032 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
17033
17034         * DataGrid.cs: Clicking on a column on a empty grid was giving
17035           an exception
17036
17037 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
17038
17039         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
17040           or any keypress will crash the grid.
17041
17042 2006-01-17  Mike Kestner  <mkestner@novell.com>
17043
17044         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
17045         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
17046         invisible/previously-visible items.
17047         [Fixes #76909]
17048
17049 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
17050
17051         * ThemeClearlooks.cs:
17052         - Added CL_Draw_Button method; now other theme controls that are 
17053           not derived from button or do not have a button can draw buttons
17054           too
17055         - Updated ComboBox drawing
17056         - Beautified RadioButton drawing
17057         - Corrected drawing of bottom and left tabs
17058         - Beautified DateTimePicker and MonthCalendar
17059         - Added CPDrawButton and CPDrawRadioButton
17060
17061 2006-01-16  Jackson Harper  <jackson@ximian.com>
17062
17063         * ComboBox.cs: Set the initial value of the scrollbar to the
17064         current index. Reduce the numbers of refreshs and IndexOfs called.
17065
17066 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
17067
17068         * FileDialog.cs: When the file listview is focused hitting the
17069           backspace key moves the fileview to the parent directory
17070
17071 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
17072
17073         * Form.cs: 
17074           - Added RecreateHandle call when changing taskbar visibility to 
17075             trigger reparenting in Win32 driver (Fixes #75719)
17076           - If a window has minimize or maximize buttons, it cannot have
17077             a help button
17078         * XplatUIWin32.cs:
17079           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
17080             the toplevel form with FosterParent (A toolwindow not on the
17081             taskbar) (Fixes #75719)
17082           - Made FosterParent a toolwindow
17083
17084 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
17085
17086         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
17087
17088 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
17089
17090         * ToolTip.cs: If SetToolTip is called from a control and the mouse
17091           is currently over that control, make sure that tooltip_window.Text
17092           gets updated
17093
17094 2006-01-13  Mike Kestner  <mkestner@novell.com>
17095
17096         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
17097
17098 2006-01-13  Jackson Harper  <jackson@ximian.com>
17099
17100         * TreeView.cs: On MS GetNodeAt never actually factors in the X
17101         value passed.  Also redraw the selected node when we recieve
17102         focus, so tabbing between trees works correctly.
17103
17104 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
17105
17106         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
17107           ~/.gconf/%gconf-tree.xml, so use
17108           .gconf/desktop/gnome/interface/%gconf.xml
17109
17110 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
17111
17112         * TextControl.cs: Draw text in gray if control is disabled
17113
17114 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
17115
17116         * TreeView.cs: Draw the focus rectangle outside the highlight, to
17117           make sure it's always visible. Fixes #76680.
17118
17119 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
17120
17121         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
17122
17123 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
17124
17125         * PageSetupDialog.cs: Added.
17126         * PrintDialog.cs: Attributes.
17127         * PrintPreviewControl.cs: Updates.
17128         * PrintPreviewDialog.cs: Updates.
17129         
17130 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
17131
17132         * Control.cs: Undid my selection check fix, since it's not needed
17133         * TextBoxBase.cs:
17134           - Now considering the presence of hscroll/vscroll when sizing
17135             vscroll/hscroll respectively. Fixed bug #77077
17136           - Added Left/Up/Down/Right to IsInputKey list to prevent
17137             ContainerControl from stealing them. This fixes what I broke
17138             with my last checkin.
17139
17140 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
17141
17142         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
17143           I finally understand how the property can be set without a setter :-)
17144
17145 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
17146
17147         * Application.cs:
17148           - Switched RunLoop to use static Message.Create to create a 
17149             Message object
17150           - Added PreProcessMessage call in runloop for keyboard events; this
17151             is part of the fix for #77219, I overlooked this originally in the
17152             MSDN doc for PreProcessMessage
17153         * Control.cs:
17154           - Removed call to PreProcessMessage from handling of keyboard 
17155             messages; it's supposed to be done in the message pump
17156           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
17157             per MSDN documentation.
17158           - IsInputChar: All chars are input chars by default; removed the 
17159             parent calling chain, MS does not document that
17160           - PreProcessMessage: If IsInputChar is true, we want to return false
17161             to allow dispatching of the message
17162           - When selecting the next control, now also check that we're not
17163             selecting ourselves again and therefore return a false positive.
17164         * TextBoxBase.cs:
17165           - Tried to match return values for IsInputKey and ProcessDialogKey
17166             to what MS returns; moved processing of our special keys outside
17167             ProcessDialogKey since MS does not seem to return true on those.
17168           - Moved code that previously was in ProcessDialogKey into new private
17169             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
17170           - Reworked handling of WM_CHAR to not have to duplicate code from
17171             Control.cs anymore, instead we simply call down to base.
17172            
17173 2006-01-12  Jackson Harper  <jackson@ximian.com>
17174
17175         * ComboBox.cs: We always need to refresh the text area when
17176         EndUpdate is called. Fixes the combobox in the file dialog.
17177         * Control.cs: Don't create the creator_thread until the controls
17178         handle is created.  Also in InvokeRequired we check if the
17179         creator_thread is null. This gives the effect of InvokeRequired
17180         returning true if the controls handle is not created yet, and
17181         matches MS.
17182
17183 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
17184
17185         * XplatUI.cs:
17186           - Added StartLoop() driver method. This is used to allow drivers to
17187             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
17188             loop for a particular thread
17189           - Added EndLoop() driver method. This is called once the message
17190             pump for the thread is shut down
17191           - Added SupportsTransparency method to allow the driver to indicate
17192             opacity support for windows
17193         * Form.cs:
17194           - Removed TODO attribute, completed AllowTransparency property
17195           - Added documented logic to Opacity
17196         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
17197           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
17198           versions of CompatibleTextRendering
17199         * X11Structs.cs: Added opacity atom to our atom enumeration
17200         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
17201           of a form might be set before it's reparented by the WM, and we need
17202           the opacity value without calling up to Form)
17203         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
17204           SupportsTransparency() driver methods
17205         * Application.cs: Now calling StartLoop and EndLoop driver methods
17206         * XplatUIX11.cs:
17207           - Added opacity atom registration
17208           - Added StartLoop()/EndLoop() methods. They're empty right now but
17209             will need to get implemented when we switch to a per-thread queue
17210           - Implemented SupportsTransparency() method
17211           - Implemented SetWindowTransparency() method
17212           - Added support for setting the opacity value when a window is
17213             reparented (since the opacity needs to be set on the WM frame)
17214         * XplatUIOSX.cs, XplatUIWin32.cs:
17215           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
17216
17217 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
17218
17219         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
17220
17221 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
17222
17223         * FileDialog.cs: Added ToolTip for MWFFileView
17224         * MimeIcon.cs: Rewrote GnomeHandler.
17225           - Get currently used gnome icon theme from
17226             ($HOME)/.gconf/%gconf-tree.xml
17227           - Make use of inherited icon themes
17228           - Support SVG icon themes like Tango via librsvg
17229
17230 2006-01-12  Miguel de Icaza  <miguel@novell.com>
17231
17232         Revert's Jackson's revert which broke 2.0 builds.   Fix both
17233         builds. 
17234         
17235         * Application.cs: Move the use_compatible_text_rendering outside
17236         the NET_2_0 define.  If we ever need to use the
17237         use_compatible_text_rendering on the individual controls they will
17238         access the variable from the common shared code paths.
17239
17240 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
17241
17242         * XplatUI.cs:
17243           - Added more granular debug options
17244           - Added method to print both window text and id
17245           - Switched debug output to use new Window() debug method
17246           - Added IsEnabled() driver method
17247           - Added EnableWindow() driver method
17248         * Form.cs:
17249           - Removed end_modal; no longer needed, new loop handles termination
17250             via 'closing' variable
17251           - If form is modal, setting DialogResult will now initiate loop
17252             termination via 'closing' variable
17253           - Added support for is_enabled/WS_DISABLED to CreateParams
17254           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
17255             does all the work
17256           - Removed code that's now in RunLoop from ShowDialog()
17257           - Added various documented sanity checks to ShowDialog()
17258           - Added handling of WM_DESTROY message; we set 'closing' on getting
17259             the message to indicate the message pump to terminate
17260           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
17261             send by the Application.ExitThread method. (We send the message
17262             to destroy the window after all other events have been
17263             processed through the queue, instead of destroying the handle 
17264             directly)
17265           - Moved code from Close() method to WM_CLOSE handler; added logic
17266             to only send close-related events if the form is not displayed
17267             modal
17268         * Splitter.cs (..ctor): Fixed typo in resource name
17269         * Control.cs:
17270           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
17271             brush now
17272           - set_Cursor: Now only setting calling into XplatUI if the handle for
17273             the control is already created; this avoids implict handle creation
17274             or crashes if it's not created
17275           - set_Enabled: Now setting the enabled state via the new driver method
17276             instead of just tracking it
17277           - CreateParams: Added logic to set WS_DISABLED based on enabled state
17278           - CreateControl: Reordered event firing and method calls to more
17279             closely fire events in the order MS does. Now setting the
17280             enabled state in the driver when creating the control.
17281           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
17282             match MS order
17283         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
17284           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
17285         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
17286         * Hwnd.cs:
17287           - Added tracking of window enabled state (get_Enabled/set_Enabled)
17288           - Added EnabledHwnd property to easily allow a driver to find the
17289             handle of the first enabled window in the parent chain (this is
17290             used by drivers to pass up input events of disabled windows)
17291         * XplatUIDriver.cs: Added IsEnabled() method
17292         * Application.cs:
17293           - Removed crude and obsolete exiting tracking variable
17294           - Removed internal ModalRun(); replaced by RunLoop()
17295           - Implemented private CloseForms() method to allow closing all 
17296             windows owned by a particular (or all) threads
17297           - Exit() now properly closes all windows without forcing the message
17298             pump to quit
17299           - Removed obsolete InternalExit() method
17300           - Changed Run() methods to use new RunLoop() message pump
17301           - Implemented new RunLoop() method for both modal and non-modal forms
17302         * CommonDialog.cs:
17303           - get_CreateParams: Added setting of WS_DISABLED
17304           - Simplified ShowDialog(); now all the work is done in RunLoop(),
17305             invoked via Form.ShowDialog()
17306         * NativeWindow.cs: We don't remove the window from the collection when
17307           the handle is destroyed; there might still be messages for it in the
17308           queue (mainly the resulting WM_DESTROY); instead it will be removed
17309           when Control calls InvalidateHandle in the WM_DESTROY handler
17310         * XplatUIX11.cs:
17311           - CreateWindow: Added logic to handle the WS_DISABLED window style
17312           - EnableWindow: Implemented based on Hwnd.Enabled
17313           - GetMessage: Reset PostQuitState so the method can be called again
17314           - Implemented support for disabled windows (passing messages to the
17315             first enabled parent) in handling all input messages
17316           - Added optimizations for handling Expose events
17317           - Implemeted new driver method IsEnabled()
17318           - Now always resetting paint pending tracking vars when we start paint
17319           - Re-implemented UpdateWindow via just sending a WM_PAINT message
17320         * XplatUIOSX.cs: Added IsEnabled method stub
17321         * XplatUIWin32.cs: Implemented new IsEnabled() method
17322
17323 2006-01-11  Jackson Harper  <jackson@ximian.com>
17324
17325         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
17326         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
17327         variables a little.
17328         * ColorDialog.cs: Clear out the old form before adding the new
17329         panel.  
17330
17331 2006-01-11  Jackson Harper  <jackson@ximian.com>
17332
17333         * X11Dnd.cs: Make sure to add all the text formats when adding
17334         strings to the data object.
17335         * TreeNodeCollection.cs: When adding to a sorted tree we need to
17336         do some redrawing too.  Also change the UpdateNode to an
17337         UpdateBelow so the newly added node gets painted.
17338         
17339 2006-01-11  Miguel de Icaza  <miguel@novell.com>
17340
17341         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
17342         LinkLabel.cs, PropertyGrid.cs: Implement the
17343         UseCompatibleTextRendering property for 2.x
17344
17345         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
17346
17347 2006-01-11  Jackson Harper  <jackson@ximian.com>
17348
17349         * TreeView.cs: Use the property for setting the selected node so
17350         the correct events get raised.
17351         * TreeNode.cs: Update the tree when the fore/back colours of a
17352         node are set.
17353
17354 2006-01-10  Jackson Harper  <jackson@ximian.com>
17355
17356         * TreeView.cs: Allow setting SelectedNode to null.
17357
17358 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
17359
17360         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
17361
17362 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
17363
17364         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
17365
17366 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
17367
17368         * PrintDialog.cs: Added attributes and set default property values.
17369
17370 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
17371
17372         * PrintControllerWithStatusDialog.cs: 
17373         Added PrintControllerWithStatusDialog.
17374
17375 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
17376
17377         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
17378         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
17379
17380 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
17381
17382         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
17383
17384 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
17385
17386         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
17387         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
17388
17389 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
17390
17391         * MimeIcon.cs: Added internal class SVGUtil.
17392
17393 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
17394
17395         * FileDialog.cs: Don't crash if there are two files with the
17396           same name but different locations.
17397
17398 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
17399
17400         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
17401         dates across multiple month grids. Used to not highlight entire 
17402         month, but does now.
17403         
17404 2006-01-06  Jackson Harper  <jackson@ximian.com>
17405
17406         * MonthCalendar.cs: Removed DoEvents call to prevent a running
17407         message loop. Change timer intervals to numbers that seem more
17408         natural.
17409
17410 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
17411
17412         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
17413           object for location info since screen object is now implemented.
17414
17415 2006-01-05  Jackson Harper  <jackson@ximian.com>
17416
17417         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
17418         * AsyncMethodResult.cs: We no longer use a WeakReference for the
17419         AsyncMethodResult, this is because we ALWAYS want the
17420         ManualResetEvent to get set.
17421         * Control.cs: When disposing use an async invoke to call shutdown
17422         code, so that thigns don't block on the finalizer thread.  Also
17423         check if we even have a message loop before trying to send
17424         messages, if we don't then don't bother sending messages.
17425         - No more weak references for async methods
17426         * XplatUIDriver.cs: No more weak references for async methods.
17427
17428 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
17429
17430         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
17431           returns two FontFamily with the same name
17432
17433 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
17434
17435         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
17436           drawing disabled text. Instead using the ColorGrayText color
17437
17438 2006-01-04  Jackson Harper  <jackson@ximian.com>
17439
17440         * TreeNode.cs: redraw the node when its image index is changed.
17441
17442 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
17443
17444         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
17445           time I checked there are no others like it.
17446
17447 2006-01-04  Jackson Harper  <jackson@ximian.com>
17448
17449         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
17450         this gives the behavoir I was looking for.
17451         * Control.cs: Special case Invoking EventHandlers, this matches MS
17452         and fixes part of bug #76326.
17453
17454 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
17455
17456         * ThemeClearlooks.cs, FileDialog.cs:
17457           - Reflect the latest Theme class changes
17458           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
17459             with DateTime
17460             
17461 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
17462
17463         * Theme.cs: Cache UI resource images and resize them if needed
17464
17465 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
17466
17467         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
17468           is called. This fixes the crash in Nexxia when setting the font
17469           attributes in the chat. [However, RTF needs a look-over to make sure
17470           that all SelectionXXX methods handle the special case that selection
17471           is empty and therefore the change must be applied to all text starting
17472           at the cursor/selection start]
17473
17474 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
17475
17476         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
17477           XplatUIOSX.cs: Added SendMessage and PostMessage methods
17478         * X11Keyboard.cs: Switched to new way of calling PostMessage
17479
17480 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
17481
17482         * Theme.cs: Added theme interface for images to allow the theme to
17483           control what images are used for things like FileDialog, MessageBox
17484           icons, etc.
17485         * MessageBox.cs: Now uses the new Theme icon/image interfaces
17486
17487 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
17488
17489         * FileDialog.cs:
17490           - Removed some dead code
17491           - Opening a recently used file does work now
17492           - Small UI enhancements
17493           - Refactoring
17494
17495 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
17496
17497         * FileDialog.cs: Forgot too add __MonoCS__
17498
17499 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
17500
17501         * FileDialog.cs: We are able to read recently used files now let's
17502           go on and write them.
17503
17504 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
17505
17506         * FileDialog.cs: Breathe some life into "last open"/"recently used"
17507           button
17508         * MimeIcon.cs: Do a check for the top level media type also
17509
17510 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
17511
17512         * ThemeClearlooks.cs:
17513           - Added CPDrawStringDisabled
17514           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
17515             some chars if the text doesn't fit into text_rect
17516           - DrawListViewItem: If View = View.LargeIcon center the image;
17517             rewrote the drawing of ListViewItem.Text if View = 
17518             View.LargeIcon
17519
17520 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
17521
17522         * MimeIcon.cs: Use default KDE icon theme if there is no
17523           "48x48" directory for the current icon theme, fixes #77114
17524         * Mime.cs: Disable not working and actually not used code. 
17525         * ThemeWin32Classic.cs:
17526           - Replace "new SolidBrush" in GetControlBackBrush and
17527             GetControlForeBrush with ResPool.GetSolidBrush
17528           - Changed DrawListViewItem from private to protected virtual
17529         * FileDialog.cs:
17530           - Added form.MaximizeBox = true
17531           - Don't throw an exception if there is a broken symbolic link
17532
17533 2005-12-23  Jackson Harper  <jackson@ximian.com>
17534
17535         * TabControl.cs: Give the panels focus, keyboard navigation is
17536         fixed so this works correctly now.
17537         - We need these key events also.
17538         * ToolBar.cs: Remove some of the poor mans double buffering.
17539         
17540 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
17541
17542         * ComboBox.cs: The internal TextBox now returns the focus.
17543
17544 2005-12-23  Jackson Harper  <jackson@ximian.com>
17545
17546         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
17547
17548 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
17549
17550         * Control.cs: Removed debug code
17551         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
17552           implicit children
17553
17554 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
17555
17556         * Control.cs: When creating the control, update the Z-order after
17557           all it's children are created, too. (Fixes nexxia not showing
17558           picturebox bug)
17559
17560 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
17561
17562         * Control.cs: Do not update the anchoring distances if layout is
17563           suspended, instead do it once layout is resumed
17564
17565 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
17566
17567         * Control.cs: 
17568           - After many hours of debugging, for both Jackson and
17569             myself, it turns out that it helps to set the parent of a control
17570             if you want to actually see it onscreen. In the spirit of that
17571             discovery, we're now setting the parent of the control and
17572             it's children when the control's handle is created. This fix
17573             will make Lutz Roeder's Reflector run happily. 
17574           - now just creating the handle instead of the whole control when
17575             getting a graphics context for the control.
17576
17577 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
17578
17579         * ScrollableControl.cs: When calculating the canvas, don't consider
17580           the scrollbar widths. Instead, predict if horizontal scrollbar
17581           will affect canvas when deciding on vertical display and vice versa.
17582
17583 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
17584
17585         * RichTextBox.cs: Set default RTF font for documents that don't
17586           have a font table (Fixes #77076)
17587
17588 2005-12-22  Jackson Harper  <jackson@ximian.com>
17589
17590         * TextBoxBase.cs: It's difficult to do, but you can have an empty
17591         clipboard. This prevents a NullRef in that case.
17592         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
17593         clipboard. PRIMARY is for the currently selected text only. (We
17594         should implement PRIMARY at some point.
17595
17596 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
17597
17598         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
17599           a Unicode function with a structure that was defined in Ansi way.
17600           This fixes #76942.
17601
17602 2005-12-21  Jackson Harper  <jackson@ximian.com>
17603
17604         * StatusBar.cs: Statusbar handles its fore/back colours on it's
17605         on. Because thats how it rolls. (and this avoids it using ambient
17606         colours).
17607         * ThemeWin32Classic.cs: Use the proper back color for filling.
17608         * Menu.cs: Use the system menu bar color for drawing menu
17609         bars. Using the window back color will bring ambient colours into
17610         the picture.
17611
17612 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
17613
17614         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
17615           Bitmaps were created and not disposed.
17616
17617 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
17618
17619         * Control.cs (CreateControl): Don't do anything if the control is
17620           already created, otherwise we'd fire the OnCreated event more than
17621           once
17622
17623 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
17624
17625         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
17626           will always match. Instead return -1. Fixes #76464.
17627
17628 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
17629
17630         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
17631           neither the beginning nor the end of the line (Fixes bug #76479)
17632
17633 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
17634
17635         * Control.cs:
17636           - ControlNativeWindow.ControlFromHandle(): Now handling situation
17637             where handle is invalid
17638           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
17639             instead of slower linear search
17640         * NativeWindow.cs: Don't remove the window from the hashtable until
17641           after the driver has destroyed it (since the driver might use
17642           Control.FromHandle to lookup the control object
17643         * Hwnd.cs: Added DestroyPending property to track if a window is 
17644           already destroyed as far as the driver is concerned and only hasn't
17645           yet notified the control
17646         * XplatUIX11.cs:
17647           - Activate(): Check if the window is still valid before using the 
17648             handle
17649           - Implemented DestroyChildWindow() method to mark child windows as
17650             destroyed when a window is destroyed. This prevents situations 
17651             where we might call an X method based on queued events for a
17652             window that already has been destroyed but we haven't yet pulled
17653             the destroy method from the queue.
17654           - Added a call to the new DestroyChildWindow() method to the drivers
17655             DestroyWindow code. Also now marking the destroyed window itself
17656             as pending
17657
17658 2005-12-20  Jackson Harper  <jackson@ximian.com>
17659
17660         * StatusBar.cs:
17661         * StatusBarPanel.cs: Don't calculate panel sizes on draw
17662         anymore. Just do them when needed, also track the rects of panels
17663         so that we can optimize refreshing more in the future.
17664
17665 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
17666
17667         * ColorDialog.cs: Fixed focus drawing in small color controls
17668
17669 2005-12-19  Jackson Harper  <jackson@ximian.com>
17670
17671         * InternalWindowManager.cs:
17672         * MdiWindowManager.cs: Cleanup some coordinate system changes so
17673         moving windows works properly.
17674
17675 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
17676
17677         * Control.cs: 
17678           - Removed call to InitLayout() from SetBoundsCore(); doc says
17679             it's only called when a control is added to a container
17680           - Split InitLayout logic, moved to separate UpdateDistances() method
17681             since we need to perform those calculations more often than just
17682             when adding the control to a container. (Needed to fix #77022)
17683           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
17684           - Reduced the OnBindingContextChanged events count, don't send them
17685             unless the control is created, we still aren't totally matching
17686             MS, but I can't quite figure out some of their rules
17687
17688 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
17689
17690         * ThemeClearlooks.cs: Corrected distance between ProgressBar
17691           stripes
17692
17693 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
17694
17695         * ThemeClearlooks.cs:
17696           - Updated ProgressBar drawing
17697           - Corrected drawing of ScrollBars and scroll buttons
17698           - Some temporary fixes for minor pixel artefacts
17699
17700 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
17701
17702         * Control.cs:
17703           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
17704             cause events to be sent in the same order as MS does.
17705           - Added ChangeParent() method to trigger various OnXXXChanged events
17706             that need to be fired when a parent changes (This is a reworking
17707             of the patch from r54254, with the X11 errors fixed)
17708           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
17709             since on MS we get OnLayoutChanged events when calling Clear()
17710           - Changed Enabled property to consider parent state as well, if a
17711             parent is not enabled, the control will not be either
17712           - Changed Parent property to simply call Controls.Add() since that
17713             now does all the work required, this way we avoid code duplication
17714           - Threw in a few OnBindingsContextChanged calls to try and match
17715             when MS sends them. We seem to send a few too many, though.
17716           - Added call to CreateControl when adding the control to a parent.
17717             We were never calling CreateControl. Still needs some work, in
17718             some places we treat HandleCreated and ControlCreated as equal, 
17719             which is wrong
17720           - Removed obsolete commented out code from UpdateZOrder()
17721
17722 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
17723
17724         * ThemeClearlooks.cs: Updated TrackBar drawing.
17725
17726 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
17727
17728         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
17729
17730 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
17731
17732         * FileDialog.cs: Add the Help button and the open readonly
17733           checkbox only if needed
17734
17735 2005-12-16  Jackson Harper  <jackson@ximian.com>
17736
17737         * Control.cs: Make sure we have an active menu before trying to
17738         process commands on it. Prevents menu-less forms from crashing
17739         when Alt is pressed.
17740         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
17741         Dieter Bremes.
17742         * RichTextBox.cs: Expand statement to help out gmcs and fix the
17743         2.0 build.
17744
17745 2005-12-16  Jackson Harper  <jackson@ximian.com>
17746
17747         * InternalWindowManager.cs: Don't translate tool windows screen
17748         coordinates. This fixes windows 'bouncing' around when being moved.
17749
17750 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
17751
17752         * TextBoxBase.cs:
17753           - MaxLength now treats 2^31-1 equal to unlimited length (this is
17754             not quite MS compatible, MS uses that number only for single line
17755             and 2^32-1 for multi-line, but I figure it won't hurt keeping
17756             the limit at 2GB)
17757           - Now enforcing the MaxLength limit when entering characters
17758           - Added argument to internal Paste() method to track if it's called
17759             from programatically or via keyboard, since keyboard driven pastes
17760             need to enforce max-length
17761           - Added logic to Paste to only paste as many chars as MaxLength 
17762             allows
17763         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
17764         * TextControl.cs:
17765           - Added Length property to return number of characters in document
17766           - Added private CharCount property which only tracks actual chars
17767             in the document (no linefeeds) and fires event when CharCount
17768             changes
17769           - Added tracking of character count to all methods that alter it
17770           - Added LengthChanged event to allow applications to subscribe
17771             to any changes to the document
17772
17773 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
17774
17775         * TextBox.cs: 
17776           - Removed local password_char field (moved to TextBoxBase)
17777           - Now setting the document's password var when password is
17778             set
17779         * TextBoxBase.cs:
17780           - Added password_char field (needed here so MultiLine can
17781             access it)
17782           - Added logic to MultiLine property setter to set the document's
17783             variable when password display is allowed
17784           - Removed debug code and made some debug code conditional
17785         * TextControl.cs:
17786           - Added RecalculatePasswordLine() method to handle special password
17787             char only lines
17788           - Added PasswordChar property, also added related tracking vars
17789           - Draw() method now uses local text var for grabbing text to draw,
17790             this var is set to line.text unless we're doing password display,
17791             then it is set to the pre-generated all-password-chars line
17792           - Added calling RecalculatePasswordLine() method for password lines
17793
17794 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
17795
17796         * Hwnd.cs: 
17797           - Added Reparented property to allow tracking of Window Manager
17798             reparenting actions (which affect X/Y calculations of toplevel 
17799             windows)
17800           - Made ToString() print window handles in hex
17801         * XplatUIX11.cs:
17802           - AddConfigureNotify(): Now uses reparented state off Hwnd to
17803             determine if X/Y needs offsetting
17804           - AddConfigureNotify(): Fixed offset calculations
17805           - Now adds ReparentNotify messages into the queue
17806           - Now processes ReparentNotify messages and causes a 
17807             WM_WINDOWPOSCHANGED message to be sent upstream if a window
17808             is reparented (as most likely it's X/Y coordinates are changed
17809             due to that)
17810
17811 2005-12-14  Jackson Harper  <jackson@ximian.com>
17812
17813         * XplatUIX11.cs: Tool windows still need to respek focus.
17814
17815 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
17816
17817         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
17818           have a working release
17819
17820 2005-12-13  Jackson Harper  <jackson@ximian.com>
17821
17822         * Form.cs: Update styles after setting the border style regardless
17823         of whether or not the window is using a window manager.
17824
17825 2005-12-13  Jackson Harper  <jackson@ximian.com>
17826
17827         * Form.cs: We now hook into an internal window manager instead of just an
17828         MDI subsystem, this is so we can have properly behaving tool windows.
17829         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
17830         * InternalWindowManager.cs: New internal class that acts as a
17831         window manager for tool windows and as a base for mdi windows.
17832         * MdiWindowManager.cs: New class that acts as a window manager for
17833         mdi windows.
17834
17835 2005-12-12  Jackson Harper  <jackson@ximian.com>
17836
17837         * Control.cs: Updates so we match behavoir for for implicit
17838         controls. Fixes explosions in MDI.
17839
17840 2005-12-12  Jackson Harper  <jackson@ximian.com>
17841
17842         * Control.cs: Implement Invalidate (Region).
17843
17844 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
17845
17846         * Control.cs: 
17847           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
17848             the same events as MS does. MS fires events for each property 
17849             except, for unknown reasons, Cursor, when the control is reparented. 
17850             I can't seem to totally match add/remove since MS also fires some 
17851             VisibleChanged events, which makes no sense. Consolidated the
17852             parenting code into a separate method so it can be called from
17853             both Add and Remove. set_Parent no longer needs any special logic
17854             as it calls the parent's add method which implicitly fires
17855             all events
17856           - Removed some obsolete code and debug output
17857           - Enabled state is inherited from parents, if this is enabled
17858
17859 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
17860
17861         * Form.cs: Removed commented out code
17862
17863 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
17864
17865         * Control.cs:
17866           - Added internal version of Invoke, with additional argument 
17867             indicating if we're calling it from a Dispose() handler. That
17868             way we can avoid BeginInvoke throwing an exception if we're
17869             calling for an already destroyed window.
17870           - Added a dispose argument to BeginInvokeInternal, and made the
17871             check if a valid window handle chain exists conditional on
17872             it not being a dispose call
17873           - Removed code in DestroyHandle to destroy our children. Since we
17874             now handle the WM_DESTROY message we will catch all our children
17875             being destroyed.
17876           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
17877         * Form.cs:
17878           - Added a field to track the application context of the form.
17879           - No need to set closing variable as response to WM_CLOSE, instead
17880             we destroy the window. We also call PostQuitMessage if the form
17881             has an application context (which makes it the main app form,
17882             which, when closed terminates the app)
17883         * XplatUI.cs:
17884           - Dropped Exit() method, it's naming was confusing
17885           - Added PostQuitMessage() which causes GetMessage to return false
17886             once the message queue is empty
17887         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
17888           PostQuitMessage()
17889         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
17890           no longer a valid XplatUI method, but left it in since it's used
17891           internally. Added empty PostQuitMessage() method.
17892         * MenuAPI.cs: Replaced call to Exit() with call to
17893           PostQuitMessage, even though this is probably no longer needed.
17894         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
17895         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
17896         * Application.cs:
17897           - Replaced call to XplatUI.Exit() with PostQuitMessage()
17898           - Removed old debug code that would call XplatUI for exception
17899             display, enabled standard exception handling (Still not enabled
17900             though, until NativeWindow's ExternalExceptionHandler define
17901             is removed
17902         * NativeWindow.cs:
17903           - Added internal method to allow control to update NativeWindow
17904             after a window has been destroyed
17905           - Added handling of already destroyed windows when calling i
17906             DestroyWindow
17907           - Added removal of handle from list on ReleaseHandle
17908         * XplatUIX11.cs:
17909           - Dropped GetMessageResult var and related code
17910           - Added PostQuitState to field to track if PostQuitMessage has been
17911             called
17912           - Dropped Exit() method
17913           - Added PostQuitMessage() method
17914           - GetMessage now will return false if PostQuitState is set and no
17915             more messages are in the queue.
17916           - Expose handler will no longer generate WM_PAINT messages if we are
17917             in PostQuitState since it's very likely any windows have already
17918             been destroyed, and since Hwnd won't get updated until we have
17919             processed the DestroyNotify we'd be causing X errors.
17920         
17921 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
17922
17923         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
17924           Thanks to Mike for pointing out the err of my ways.
17925
17926 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
17927
17928         * Control.cs(PreProcessMessage): Moved menu handling back, but
17929           after all other key handling, to match MS (who handles Menu in
17930           DefWndProc)
17931         * Menu.cs (WndProc): Removed my brainfart
17932
17933 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
17934
17935         * Control.cs(PreProcessMessage): Removed special menu handling 
17936         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
17937
17938 2005-12-07  Mike Kestner  <mkestner@novell.com>
17939
17940         * Control.cs : special case SYSKEYUP so that we can adjust keynav
17941         state according in tracker.
17942         * Menu.cs : promote tracker field to base class and provide a tracker
17943         lookup capability.  Add/Remove shortcuts dynamically if the top menu
17944         has a tracker. Unparent items that are removed from the collection.
17945         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
17946         * Theme*.cs: add always_show_hotkeys field to support configurability
17947         of mnemonic display.  win32 doesn't show mnemonics until Alt is
17948         pressed.
17949
17950 2005-12-07  Jackson Harper  <jackson@ximian.com>
17951
17952         * MdiChildContext.cs: Use Control.ResetCursor.
17953         * Control.cs: ResetCursor needs to set the property so that the
17954         correct XplatUI call gets made.
17955
17956 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
17957
17958         * Control.cs: More fixes to make our key events match MS. We
17959           were not setting the modifier state on KeyData, and we were
17960           not generating any events when Alt was pressed with a key
17961           since handling of WM_SYSxxx was missing for the OnKey methods.
17962
17963 2005-12-07  Jackson Harper  <jackson@ximian.com>
17964
17965         * MdiChildContext.cs: reenable the sizing code.
17966         - When the mouse leaves a window reset its cursor.
17967
17968 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
17969
17970         * ThemeClearlooks.cs: Reflect latest Hwnd changes
17971
17972 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
17973
17974         * Hwnd.cs: Now using the theme 3d bordersize to calculate
17975           widths of Fixed3D borders
17976
17977 2005-12-07  Jackson Harper  <jackson@ximian.com>
17978
17979         * MdiClient.cs: Fix warnings. Earn Mike's love.
17980
17981 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
17982
17983         * ThemeClearlooks.cs:
17984           - Adjusted mouse over button color
17985           - Added first parts of CheckBox drawing
17986           - Added correct color for selected text background
17987           - Fixed ComboBox drawing
17988           - Added CPDrawBorder3D and CPDrawBorder
17989
17990 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
17991
17992         * XplatUIX11.cs: Added call to XBell for AudibleAlert
17993
17994 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
17995
17996         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
17997           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
17998           alert users via sound. We could add an enum arg with different
17999           types of alerts in the future
18000
18001 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
18002
18003         * Control.cs: Fix behaviour problems pointed out by Mike
18004
18005 2005-12-05  Mike Kestner  <mkestner@novell.com>
18006
18007         * StatusBarPanel.cs: add Invalidate method and hook it into all the
18008         prop setters.  Calls parent.Refresh for now, but could be maybe be
18009         optimized with an internal method on StatusBar at some point.
18010         [Fixes #76513]
18011
18012 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
18013
18014         * RichTextBox.cs: Implemented get_SelectionColor
18015
18016 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
18017
18018         * ThemeClearlooks.cs:
18019           - Removed dead code
18020           - Draw black button border only if button is Form.AcceptButton
18021           - Draw correct button color for pressed RadioButton if the mouse 
18022             has entered the button
18023           - Updated ProgressBar drawing!
18024           - Updated CPDrawSizeGrip drawing
18025           - Updated StatusBarPanel drawing
18026
18027 2005-12-05  Mike Kestner  <mkestner@novell.com>
18028
18029         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
18030         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
18031
18032 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
18033
18034         * ThemeClearlooks.cs: Initial check-in, activate with
18035           export MONO_THEME=clearlooks
18036         * ThemeEngine.cs: Added ThemeClearlooks
18037
18038 2005-12-03  Mike Kestner  <mkestner@novell.com>
18039
18040         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
18041         [Fixes #76897]
18042
18043 2005-12-02  Jackson Harper  <jackson@ximian.com>
18044
18045         * Form.cs: If the child form has no menu the default main menu is
18046         used as the active menu.
18047
18048 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
18049
18050         * ListBox.cs: Check if any items exist before trying to resolve 
18051           coordinates into items
18052
18053 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
18054
18055         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
18056           as the second color for the background hatch
18057
18058 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
18059
18060         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
18061         * RichTextBox.cs: FormatText position arguments are 1-based, now making
18062           sure that what we pass to FormatText is always 1-based. Fixes #76885
18063
18064 2005-11-29  Miguel de Icaza  <miguel@novell.com>
18065
18066         * NumericUpDown.cs (EndInit): When we are done initializing,
18067         reflect any updates on the UI.
18068
18069 2005-12-02  Jackson Harper  <jackson@ximian.com>
18070
18071         * ImplicitHScrollBar.cs:
18072         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
18073         their container controls.
18074         * TreeView.cs: Use the new implicit scrollbars.
18075
18076 2005-12-02  Jackson Harper  <jackson@ximian.com>
18077
18078         * TreeView.cs: Make top_node internal so the TreeNodeCollections
18079         can play with it.
18080         * TreeNodeCollection.cs: If we remove the topnode we need to
18081         update topnode to the next node in line.
18082         - When clearing nodes go through the same process as removing
18083         them, so they get depareneted and checked if they are top node.
18084
18085 2005-12-01  Jackson Harper  <jackson@ximian.com>
18086
18087         * TreeView.cs: When imagelists are used the image area is
18088         selectable as well as the text.
18089         - If there are no selected nodes select the first one.
18090         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
18091         so don't do it more then we need to.
18092
18093 2005-12-01  Jackson Harper  <jackson@ximian.com>
18094
18095         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
18096         that arrows can be scaled.
18097
18098 2005-12-01  Jackson Harper  <jackson@ximian.com>
18099
18100         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
18101         fail. Patch by Dieter Bremes
18102
18103 2005-11-30  Jackson Harper  <jackson@ximian.com>
18104
18105         * Form.cs: Property is 2.0 only
18106         * PrintDialog.cs: Signature fix.
18107
18108 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
18109
18110         * TextControl.cs: 
18111           - No longer artificially moves text 2 pixels down (now that we have
18112             borders this is no longer needed)
18113           - Added calcs for left, hanging and right indent
18114
18115 2005-11-23  Mike Kestner  <mkestner@novell.com>
18116
18117         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
18118
18119 2005-11-30  Jackson Harper  <jackson@ximian.com>
18120
18121         * MdiChildContext.cs: Set the cloned menus forms, as these don't
18122         get cloned as part of CloneMenu ().
18123         * Menu.cs: Make sure the parent of the items get set correctly
18124         when they are added.  And the owners are notified of the changes.
18125         * Form.cs: Create an ActiveMenu property, so that when MDI is used
18126         we can change the menu being displayed/handled by the form without
18127         changing the menu assosciated with the form.
18128         - Don't let Mdi children draw/handle menus.
18129         
18130 2005-11-30  Jackson Harper  <jackson@ximian.com>
18131
18132         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
18133         a MenuChanged event. Just to make the API a little more
18134         consistent.
18135         * MainMenu.cs:
18136         * MenuItem.cs: Use the new OnMenuChanged
18137         * MdiChildContext.cs: Handle menu merging.
18138         * Form.cs: Implement MergedMenu.
18139         
18140 2005-11-30  Jackson Harper  <jackson@ximian.com>
18141
18142         * Menu.cs: We were misusing Add. Add goes behind the specified
18143         index according to the docs, and does not replace the specified
18144         index. So I added an Insert method.
18145
18146 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
18147
18148         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
18149           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
18150           is for Jackson
18151         * RichTextBox.cs: Added calls to base for DnD events
18152
18153 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
18154
18155         * TextControl.cs:
18156           - Fixed drag-selection related crash; style fixes
18157           - Implemented undo class
18158             o Implemented method to capture document state for specified
18159               range in document tree
18160             o Implemented method to restore captured document state
18161             o Implemented cursor tracking
18162             o Implemented basic undo stack
18163           - Added undo cursor tracking to methods altering cursor location
18164           - Added undo tracking to selection deletion (still missing
18165             other text-altering hookups)
18166         * RichTextBox.cs:
18167           - Added SelectionLength property
18168           - Implemented CanPaste()
18169           - Implemented Paste()
18170           - Added missing protected methods
18171           - Fixed RTF->Document conversion; now uses font index 0 and color 
18172             index 0 as the default font for the parsed text
18173           - Fixed RTF<->Document font size translation
18174           - Fixed RTF generation, now properly handles cross-tag boundaries
18175             for single line selection
18176           - No longer always appends blank line to generated RTF
18177           - Removed TODOs
18178           - Added missing attributes
18179           - Hooked up undo-related methods
18180         * TextBoxBase.cs:
18181           - Implemented Copy()
18182           - Implemented Paste()
18183           - Implemented Cut()
18184           - Fixed caret mis-behaviour on backspace across line-boundaries
18185
18186 2005-11-29  Jackson Harper  <jackson@ximian.com>
18187
18188         * MdiClient.cs: Add a method for activating mdi children. Very
18189         basic right now. I imagine someday it might need more girth.
18190         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
18191         children windows names are added to the menu item.
18192         * ThemeWin32Classic.cs: Draw the arrow if the item is an
18193         mdilist. This happens regardless of whether or not there are any
18194         mdi windows to see in the list, and according to my tests happens
18195         before the items are even added. Also happens if there isn't even
18196         an mdi client to get windows from.
18197
18198 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
18199
18200         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
18201         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
18202
18203 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
18204
18205         * DataGridTableStyle.cs:
18206           - Create always the styles for the missing columns even if they are
18207             provided by the user (not default table style)
18208         * DataGrid.cs:
18209           - Fixes bug 76770
18210           - Fixes SetDataBinding (always re-attach source)
18211           - Fixes SetNewDataSource (only clear styles if they are not for 
18212             this source)
18213          -  Expands OnTableStylesCollectionChanged to handle style refresh 
18214             and remove properly
18215
18216 2005-11-29  Jackson Harper  <jackson@ximian.com>
18217
18218         * FileDialog.cs: Implement missing bits, remove some dead
18219         code.
18220         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
18221         creation of the panel so that the options set on the dialog are
18222         seen when the panel is created.
18223         * TreeView.cs: raise a click when items are clicked.
18224         
18225 2005-11-29  Jackson Harper  <jackson@ximian.com>
18226
18227         * MdiClient.cs: Pass some signature methods through to base.
18228
18229 2005-11-28  Jackson Harper  <jackson@ximian.com>
18230
18231         * ListView.cs: Raise the click event when items are clicked.
18232
18233 2005-11-28  Jackson Harper  <jackson@ximian.com>
18234
18235         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
18236         a nullref.
18237
18238 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
18239
18240         * ThemeNice.cs: - Removed 1 pixel bitmaps
18241           - Use SmoothingMode.AntiAlias where it makes sense
18242             (ScrollButton arrow for example)
18243           - Enhanced Button focus drawing
18244           - Fixed ComboBox drawing (no artefacts anymore, focus
18245             rectangle is back again, reduced size of ComboButton, etc.)
18246           - Fixed RadioButton focus drawing for Appearence.Button
18247           - Slight ScrollButton redesign
18248           - Some LinearGradientBrush size fixes
18249           - GroupBoxes have now rounded edges
18250           - Fixed StatusBar drawing
18251
18252 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
18253
18254         * ThemeNice.cs: - Remove dead code
18255           - use correct background colors for menus, etc.
18256           - Fake pixel drawing with 1 pixel bitmaps
18257
18258 2005-11-24  Jackson Harper  <jackson@ximian.com>
18259
18260         * MdiClient.cs: Size the scrollbars when resizing the window.
18261         - Resize the maximized windows when the client is resized
18262         * Form.cs: Make the child context available
18263         
18264 2005-11-23  Jackson Harper  <jackson@ximian.com>
18265
18266         * MdiChildContext.cs: Don't size windows if they are maximized.
18267
18268 2005-11-23  Mike Kestner  <mkestner@novell.com>
18269
18270         * ContextMenu.cs: use MenuTracker.
18271         * Control.cs: remove menu handle usage.
18272         * Form.cs: remove menu handle usage.
18273         * Hwnd.cs: remove menu handle usage.
18274         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
18275         motion and clicks to the new Tracker handlers.
18276         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
18277         and handle usage.
18278         * MenuAPI.cs: refactored to combine popup and menubar event handling.
18279         Killed the MENU and MENUITEM data types and associated collections
18280         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
18281         MenuTracker class that exposes the leftovers from the old MenuAPI
18282         static methods. Restructured Capture handling so that only one grab is
18283         done for the entire menu hierarchy instead of handing off grabs to
18284         submenus. Tracker now has an invisible control to Capture when active.
18285         * MenuItem.cs: add sizing accessors, kill Create
18286         and handle usage.
18287         * Theme.cs: remove menu handle and MENU(ITEM) usage.
18288         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
18289         MENU(ITEM). remove menu handle usage, use Menu directly.
18290         * XplatUIDriver.cs: remove menu handle usage.
18291         * XplatUIOSX.cs: remove menu handle usage.
18292         * XplatUIWin32.cs: remove menu handle usage.
18293         * XplatUIX11.cs: remove menu handle usage.
18294
18295 2005-11-22  Jackson Harper  <jackson@ximian.com>
18296
18297         * Hwnd.cs: Don't compute the menu size for
18298         DefaultClientRectangle.
18299         - Reenable menu sizes being computed for GetClienRectangle.
18300         * Form.cs: Remove comment of trechery
18301         
18302 2005-11-22  Jackson Harper  <jackson@ximian.com>
18303
18304         * Hwnd.cs: The adjustments for the menu bar are made when it is
18305         attached to the form.
18306
18307 2005-11-19  Jackson Harper  <jackson@ximian.com>
18308
18309         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
18310         (just like on windows).
18311
18312 2005-11-19  Jackson Harper  <jackson@ximian.com>
18313
18314         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
18315         use real buttons anymore because they are in non client area. The
18316         one TODO here is that I need to somehow invalidate a section of
18317         the non client area.
18318
18319 2005-11-18  Jackson Harper  <jackson@ximian.com>
18320
18321         * Control.cs: Put the enum check back in now that MDI doesnt have
18322         to use this to set border styles.
18323         * Form.cs: Only set mdi child windows borders if the handle has
18324         been created.
18325         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
18326         this directly on to the driver.
18327         - Get the move start position before adjusting for the titlebar
18328         height, this fixes the windows "skipping" when they are first
18329         moved.
18330
18331 2005-11-18  Jackson Harper  <jackson@ximian.com>
18332
18333         * XplatUIX11.cs: Just compute the mdi borders separately as they
18334         don't totally match up with normal form borders.
18335
18336 2005-11-18  Jackson Harper  <jackson@ximian.com>
18337
18338         * Control.cs: Set WS_ styles for borders, so that the driver does
18339         not have to retrieve the control instance to figure out what kind
18340         of borders it should have.
18341         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
18342         driver can know its an mdi child easily.
18343         * XplatUIX11.cs: Get the border styles and whether the window is
18344         MDI from the Styles and ExStyles params instead of having to get a
18345         control. This prevents a chicken and egg problem.       
18346
18347 2005-11-18  Jackson Harper  <jackson@ximian.com>
18348
18349         * MdiClient.cs: Fix typo so scrollbars show up correctly.
18350
18351 2005-11-18  Jackson Harper  <jackson@ximian.com>
18352
18353         * MdiClient.cs: Calculate when to add and remove scrollbars
18354         correctly.
18355         * MdiChildContext.cs: Adjust the y position to take the titlebar
18356         into account.
18357         - No height for FormBorderStyle.None
18358
18359 2005-11-18  Jackson Harper  <jackson@ximian.com>
18360
18361         * Control.cs: Allow non enum values to be used for
18362         InternalBorderStyle.  MDI does this to set a special border style.
18363         - New utility methods for converting points to/from client coords
18364         - Add the newly created control to the Controls collection before
18365         updating its style. This way UpdateStyle can walk the control
18366         heirarchy to find the control if needed.
18367         so I don't need to create a new Point object all the time.
18368         * Form.cs: Let MDI windows handle their border styles.
18369         - Set styles on MDI windows so the correct title style is derived.
18370         * MdiChildContext.cs: Move all the painting and window handling
18371         into the non client area.
18372         - Use correct sizing and put correct buttons on frames based on
18373         the FormBorderStyle.
18374         - Notify the mdi client about scrolling
18375         - Need to handle the buttons ourselves now, because they are all
18376         in non client areas and we can't add controls there.
18377         * MdiClient.cs: Halfway to scrolling, this implementation is
18378         somewhat broken though, we need to check to make sure other
18379         windows aren't causing scrolling before removing the bars. Also
18380         the bars need to be drawn on top, maybe I can switch implicit
18381         controls to be on top.
18382         * Hwnd.cs: caption_height and tool_caption_height are now
18383         properties of an hwnd, this way they can be set by the driver
18384         based on the type of window they are.  In X11 the window manager
18385         handles the decorations so caption_height is zero unless its an
18386         MDI window.
18387         - Add 3 pixel borders for MDI windows (0xFFFF).
18388         - Get rid of some code duplication, have DefaultClientRectanle
18389         just call GetClientRectangle.
18390         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
18391         Hwnd now.
18392         - Set border styles differently for mdi windows.
18393         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
18394         Hwnd now.
18395         
18396 2005-11-15  Mike Kestner  <mkestner@novell.com>
18397
18398         * Menu.cs: when adding an item to the collection, if item is already 
18399         parented, remove it from the parent.
18400
18401 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
18402
18403         * X11DesktopColors.cs: Added KDE support
18404
18405 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
18406
18407         * XplatUIWin32.cs: 
18408           - Clipboard methods now can translate Rtf format
18409           - No longer removes clipboard contents whenever a new format is added
18410             to allow placing multiple formats on the clipboard
18411         * Clipboard.cs: Clipboard now supports getting a IDataObject and
18412           will place all formats contained in it onto the clipboard. Also
18413           now cleans the clipboard before placing a new object onto it
18414         * RichTextBox.cs:
18415           - Implemented set_Rtf
18416           - Implemented set_SelectedRtf
18417           - Created InsertRTFFromStream() method to allow single code base
18418             for all properties and methods that insert RTF into document
18419           - Removed debug output
18420         * TextControl.cs:
18421           - Fixed Delete(int) to fix up line numbers
18422           - Fixed ReplaceSelection to combine start and end line
18423           - Fixed serious DeleteChars bug that would leave the document tree
18424             broken
18425           - Improved DumpTree with several logic checks to detect broken
18426             document trees
18427           - Removed debug lines
18428           - Fixed Caret.WordForward/WordBack moving code, now always also 
18429             updates caret.tag (fixes crash when word-selecting across tag
18430             boundaries via keyboard)
18431           - Added Insert() method for inserting multiline text into documents
18432           - Fixed DeleteChars() calculation errors that would cause a broken
18433             tag chain with multiple tag lines
18434           - DeleteChars() no longer crashes on multi-tag lines if not all tags
18435           - Split() no longer moves caret if split is at caret location
18436           - ReplaceSelection() now updates the cursor and re-displays it
18437           - ReplaceSelection() now uses new Insert() method to avoid code
18438             duplication
18439           - FormatText() can now handle formatting partial lines
18440         * TextBoxBase.cs:
18441           - Append now uses new TextControl.Insert() method (this avoids 
18442             duplicate code)
18443           - Implemented Ctrl-X (Cut) (
18444           - Implemented Ctrl-C (Copy)
18445           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
18446             regeneration when pasting text; roundtripping Copy&Paste within
18447             edit control still fails due to some calculation bugs in GenerateRTF)
18448           - The Delete key will now remove the current selection if it is visible
18449         * TextBox.cs: Removed debug lines
18450         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
18451           driver to be initialized and can't therefore be done via a static ctor)
18452
18453 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
18454
18455         * TextControl.cs: Added backend code for finding char arrays and strings
18456         * TextBoxBase.cs:
18457           - Added mouse wheel scroll support
18458           - Added support for VScroll and HScroll events
18459         * RichTextBox.cs:
18460           - Implemented all seven Find() variants
18461           - Implemented GetCharFromPosition()
18462           - Implemented GetCharIndexFromPosition()
18463           - Implemented GetLineFromIndex()
18464           - Implemented GetPositionFromCharIndex();
18465           - Implemented SaveFile for PlainText and UnicodeText
18466           - Fixed set_Font, now setting a new font applies that font to
18467             the whole document
18468           - Implemented generic Document to RTF converter
18469           - Implemented SaveFile for RichText format (still missing unicode
18470             conversion for non-ansi chars)
18471           - Implemented get_Rtf
18472           - Implemented get_SelectedRtf
18473
18474 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
18475
18476         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
18477           to allow any captures to be released before triggering OnClick. This
18478           way a click handler may capture the mouse without interference.
18479         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
18480           This way we send them even though X may not allow a grab (if the window
18481           isn't visible, for example)
18482
18483 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
18484
18485         * DataGridViewRowEventArgs.cs: DataGridView implementation
18486         * DataGridViewElement.cs: DataGridView implementation
18487         * DataGridViewComboBoxCell.cs: DataGridView implementation
18488         * DataGridViewDataErrorContexts.cs: DataGridView implementation
18489         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
18490         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
18491         * ImageLayout.cs: DataGridView implementation
18492         * DataGridViewComboBoxColumn.cs: DataGridView implementation
18493         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
18494         * DataGridViewSelectionMode.cs: DataGridView implementation
18495         * IDataGridViewEditingControl.cs: DataGridView implementation
18496         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
18497         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
18498         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
18499         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
18500         * DataGridViewColumnSortMode.cs: DataGridView implementation
18501         * DataGridView.cs: DataGridView implementation
18502         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
18503         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
18504         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
18505         * Padding.cs: DataGridView implementation
18506         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
18507         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
18508         * DataGridViewRowEventHandler.cs: DataGridView implementation
18509         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
18510         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
18511         * DataGridViewButtonCell.cs: DataGridView implementation
18512         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
18513         * DataGridViewEditMode.cs: DataGridView implementation
18514         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
18515         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
18516         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
18517         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
18518         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
18519         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
18520         * DataGridViewCellEventHandler.cs: DataGridView implementation
18521         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
18522         * DataGridViewCellStyleConverter.cs: DataGridView implementation
18523         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
18524         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
18525         * DataGridViewColumnEventArgs.cs: DataGridView implementation
18526         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
18527         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
18528         * QuestionEventArgs.cs: DataGridView implementation
18529         * IDataGridViewEditingCell.cs: DataGridView implementation
18530         * DataGridViewTriState.cs: DataGridView implementation
18531         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
18532         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
18533         * DataGridViewColumnCollection.cs: DataGridView implementation
18534         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
18535         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
18536         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
18537         * DataGridViewColumn.cs: DataGridView implementation
18538         * DataGridViewCellBorderStyle.cs: DataGridView implementation
18539         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
18540         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
18541         * DataGridViewRow.cs: DataGridView implementation
18542         * DataGridViewImageCellLayout.cs: DataGridView implementation
18543         * DataGridViewImageCell.cs: DataGridView implementation
18544         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
18545         * DataGridViewCheckBoxCell.cs: DataGridView implementation
18546         * DataGridViewHeaderCell.cs: DataGridView implementation
18547         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
18548         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
18549         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
18550         * DataGridViewTextBoxColumn.cs: DataGridView implementation
18551         * QuestionEventHandler.cs: DataGridView implementation
18552         * DataGridViewCellStyleScopes.cs: DataGridView implementation
18553         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
18554         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
18555         * DataGridViewCell.cs: DataGridView implementation
18556         * DataGridViewCellEventArgs.cs: DataGridView implementation
18557         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
18558         * DataGridViewCellStyle.cs: DataGridView implementation
18559         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
18560         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
18561         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
18562         * TextFormatFlags.cs: DataGridView implementation
18563         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
18564         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
18565         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
18566         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
18567         * DataGridViewButtonColumn.cs: DataGridView implementation
18568         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
18569         * HandledMouseEventArgs.cs: DataGridView implementation
18570         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
18571         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
18572         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
18573         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
18574         * DataGridViewRowCollection.cs: DataGridView implementation
18575         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
18576         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
18577         * DataGridViewHitTestType.cs: DataGridView implementation
18578         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
18579         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
18580         * DataGridViewColumnEventHandler.cs: DataGridView implementation
18581         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
18582         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
18583         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
18584         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
18585         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
18586         * DataGridViewContentAlignment.cs: DataGridView implementation
18587         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
18588         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
18589         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
18590         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
18591         * DataGridViewPaintParts.cs: DataGridView implementation
18592         * DataGridViewCellCollection.cs: DataGridView implementation
18593         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
18594         * DataGridViewImageColumn.cs: DataGridView implementation
18595         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
18596         * DataGridViewElementStates.cs: DataGridView implementation
18597         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
18598         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
18599         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
18600         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
18601         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
18602         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
18603         * DataGridViewRowHeaderCell.cs: DataGridView implementation
18604         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
18605         * DataGridViewTextBoxCell.cs: DataGridView implementation
18606         * DataGridViewBand.cs: DataGridView implementation
18607         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
18608         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
18609         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
18610         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
18611         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
18612         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
18613         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
18614         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
18615         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
18616         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
18617         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
18618
18619 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
18620
18621         * ThemeWin32Classic.cs: 
18622           - Draw the outside focus rectangle around buttons
18623           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
18624             doesn't use end caps for every dash of a line anymore. This
18625             workaround ignores the forecolor.
18626
18627 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
18628
18629         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
18630           endian safe.
18631
18632 2005-11-07  Jackson Harper  <jackson@ximian.com>
18633
18634         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
18635
18636 2005-11-07  Jackson Harper  <jackson@ximian.com>
18637
18638         * ScrollableControl.cs: Calculate the maximum and change vars
18639         (more) correctly so that scrollbars appear as a sensible size.
18640
18641 2005-11-04  Jackson Harper  <jackson@ximian.com>
18642
18643         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
18644         collection.
18645         * TreeView.cs: When the tree is sorted null out the top_node so
18646         that it is recalculated.
18647         - Use dotted lines instead of dashed lines to match MS better.
18648
18649 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
18650
18651         * ListView.cs: 
18652           - Implements key search for items. Useful when browsing files with FileDialog
18653           - When changing view mode or when clear the items reset scrollbar positions
18654
18655 2005-11-04  Jackson Harper  <jackson@ximian.com>
18656
18657         * CurrencyManager.cs: Implement the MetaDataChanged event, the
18658         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
18659         as to what the method may do as there is no real way of creating a
18660         derived CurrencyManager and calling the method. 
18661
18662 2005-11-03  Jackson Harper  <jackson@ximian.com>
18663
18664         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
18665         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
18666         method which seems to just be used internally to refresh the tabs.
18667
18668 2005-11-03  Jackson Harper  <jackson@ximian.com>
18669
18670         * TabControl.cs: Implement the remove method. Fix some broken
18671         comments.
18672
18673 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
18674
18675         * DateTimePicker.cs:
18676           - Added missing DateTimePickerAccessibleObject class
18677           - Added missing events
18678           - Added OnFontChanged method
18679         * Form.cs: Added missing attributes
18680         * TreeView.cs: Added missing attributes
18681
18682 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
18683
18684         * GridItemCollection.cs: Fix signatures
18685
18686 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
18687
18688         * XplatUI.cs: Updated build rev/date
18689         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
18690           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
18691         * Application.cs: Trigger context-specific ExitThread events
18692
18693 2005-11-03  Jackson Harper  <jackson@ximian.com>
18694
18695         * Menu.cs:
18696         * MainMenu.cs:
18697         * GridTableStylesCollection.cs:
18698         * Timer.cs:
18699         * TabPage.cs:
18700         * HelpProvider.cs:
18701         * StatusBar.cs:
18702         * MonthCalendar.cs: Signature fixes
18703
18704 2005-11-03  Jackson Harper  <jackson@ximian.com>
18705
18706         * TreeNodeCollection.cs: Remove should not be virtual.
18707         * TreeView.cs: Implement the last of the missing methods.
18708
18709 2005-11-03  Jackson Harper  <jackson@ximian.com>
18710
18711         * TreeNodeConverter.cs: Implement to get off my class-status back.
18712
18713 2005-11-03  Jackson Harper  <jackson@ximian.com>
18714
18715         * TreeView.cs: Hookup the bits for drag and drop.
18716         * TreeNode.cs: Don't cache the tree_view or index anymore, now
18717         that nodes can be moved from tree to tree easily this just causes
18718         all sorts of problems.
18719         * TreeNodeCollection: Don't need to give treenodes an index and
18720         treeview anymore when they are added, these are computed on the
18721         fly. Also make sure to remove a node before its added.
18722
18723 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
18724
18725         * TextControl.cs:
18726           - Added CaretSelection enum
18727           - Added comparison methods to Marker struct, makes selection code
18728             more readable
18729           - Added SelectionStart and SelectionEnd as 'moveable' location for
18730             the CaretDirection enum and handler
18731           - Added selection_prev variable to track optimized invalidation for
18732             word and line selection
18733           - Added SelectionVisible property (returns true if there is a valid 
18734             selection)
18735           - Switched CaretHasFocus to only display the caret if there is no
18736             visible selection
18737           - Avoiding StringBuilder.ToString to retrieve a single char, instead
18738             using the direct character index; should be much faster
18739           - Added various conditional debug statements
18740           - Fixed invalidation calculation for selection ranges
18741           - Added ExpandSelection() method to support word and line selection
18742           - Switched SetSelectionToCaret to use new Marker compare overloads
18743           - Added central IsWordSeparator() method to determine word 
18744             separators/whitespace and FindWordSeparator() to streamline common
18745             usage of IsWordSeparator()
18746         * TextBoxBase.cs:
18747           - Removed unneeded grabbed variable, it was just mirroring
18748             Control.Capture
18749           - No longer firing OnTextChanged event when Text setter is called,
18750             since the base will fire the event for us
18751           - Added handling of Ctrl-Up/Down selection
18752           - Added handling of Shift-Cursorkey selection
18753           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
18754             words
18755           - Added handling of Shift and Ctrl-Shift-Home/End selection
18756           - Removed some debug output
18757           - Added handling for single/double/tripple-click to place caret/
18758             select word/select line respectively (Fixes bug #76031)
18759           - Added support for drag expansion of word/line selection
18760         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
18761           current selection
18762
18763 2005-11-02  Jackson Harper  <jackson@ximian.com>
18764
18765         * X11Dnd.cs: If the drag is going to and from a MWF window just
18766         copy the data instead of sending it out through the X Selection
18767         mechanism.
18768
18769 2005-11-02  Jackson Harper  <jackson@ximian.com>
18770
18771         * X11Dnd.cs:
18772         * XplatUIX11.cs: When in a drag we don't want motion notify
18773         messages to get passed on to the other controls. This prevents
18774         mouse move messages from showing up in the drag source.
18775
18776 2005-11-02  Jackson Harper  <jackson@ximian.com>
18777
18778         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
18779         the correct button is release to end a drag.
18780         * XplatUIX11.cs: Make the button state internal so the drag system
18781         can access it.  Dragging needs to know about all button releases,
18782         not just left button.
18783
18784 2005-11-02  Miguel de Icaza  <miguel@novell.com>
18785
18786         * Form.cs (Icon): If the icon is null, reset the icon to the
18787         default value. 
18788
18789         * Cursor.cs: When writing the AND-mask bitmap do not include the
18790         number of colors, but hardcode those to two (black and white),
18791         fixes the loading of color cursors (Paint Dot Net).
18792
18793         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
18794         turn off autoscaling.
18795
18796         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
18797
18798 2005-11-02  Jackson Harper  <jackson@ximian.com>
18799
18800         * X11Dnd.cs: Make sure to send a status message if the pointer
18801         enters a control that can not accept a drop, otherwise the cursor
18802         isn't updated correctly. Also tried to compress the lines of code
18803         a bit.
18804
18805 2005-11-02  Jackson Harper  <jackson@ximian.com>
18806
18807         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
18808         set actions correctly.  This isn't perfect as XDND and win32 have
18809         some differences on how you allow actions. I'll clear this up by
18810         adding a path for drag from MWF to MWF windows.
18811         * XplatUIX11.cs: Hook into the dnd system.
18812
18813 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
18814
18815         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
18816         previously shown but they are no longer need it. Very obvious when 
18817         browsing files with FileDialog.
18818
18819 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
18820
18821         * Control.cs: We always need to call OnPaintBackground. We pretty much
18822           ignore AllPaintingInWmPaint and always do the painting there, whether 
18823           it's set or not, since we always ignore the WM_ERASEBKGND message 
18824           (which we don't generate on X11). This fixes #76616.
18825         * Panel.cs: Removed unneeded background painting. This happens properly
18826           in Control.cs already
18827
18828 2005-10-31  Mike Kestner  <mkestner@novell.com>
18829
18830         * Menu.cs: Add items to collection before setting their index.
18831         * MenuItem.cs : add range checking with ArgumentException like MS.
18832         [Fixes #76510]
18833
18834 2005-10-31  Jackson Harper  <jackson@ximian.com>
18835
18836         * ListBox.cs: Invalidate if the area is visible at all not just
18837         contained in the visible rect. Fixes unselection of semi visible
18838         items.
18839
18840 2005-10-31  Jackson Harper  <jackson@ximian.com>
18841
18842         * Control.cs: Consistently name the dnd methods. Make them
18843         internal so we can override them to match some MS behavoir
18844         internally.
18845         * Win32DnD.cs: Use the new consistent names.
18846
18847 2005-10-31  Jackson Harper  <jackson@ximian.com>
18848
18849         * TreeView.cs: Don't draw the selected node when we lose focus.
18850
18851 2005-10-31  Jackson Harper  <jackson@ximian.com>
18852
18853         * X11Dnd.cs: We still need to reset the state even though a full
18854         reset isn't being done, otherwise status's still get sent all over
18855         the place.
18856
18857 2005-10-31  Jackson Harper  <jackson@ximian.com>
18858
18859         * Control.cs: Make the dnd_aware flag internal so the dnd
18860         subsystem can check it. Catch exceptions thrown in dnd handlers to
18861         match MS behavoir.
18862         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
18863         * X11Dnd.cs: Handle null data in the converters. Set the XDND
18864         version when sending a XdndEnter. Use the control/hwnd dnd_aware
18865         flags to reduce the number of dnd enters/status's sent.
18866
18867 2005-10-31  Jackson Harper  <jackson@ximian.com>
18868
18869         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
18870
18871 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
18872
18873         * PictureBox.cs: Fixes 76512
18874
18875 2005-10-28  Jackson Harper  <jackson@ximian.com>
18876
18877         * X11Dnd.cs: Early implementation to support winforms being a drag
18878         source for data on X11. Also restructured the converters so they
18879         can go both ways now.
18880         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
18881         
18882 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
18883
18884         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
18885           clipboard requests
18886
18887 2005-10-27  Jackson Harper  <jackson@ximian.com>
18888
18889         * TreeNode.cs: Implement serialization so my DnD examples will work.
18890
18891 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
18892
18893         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
18894           TreeView.cs: Don't dispose objects that are not owned.
18895           
18896 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
18897
18898         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
18899           should retrieve the current cursor and report that, but XplatUI
18900           doesn't (yet) have an interface for that (and I'm not sure I even
18901           can, on X11)
18902         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
18903           until any message loop processing is done (and the WM_SETCURSOR
18904           replaces the cursor to the proper one)
18905         * XplatUIX11.cs: 
18906           - Fixed override behaviour, we can't set the cursor globally on X11, 
18907             just for our windows.
18908           - Invalidating the System.Drawing X11 display handle when we are
18909             shutting down
18910         * Control.cs: Fix to make csc happy
18911
18912 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
18913
18914         * TextBoxBase.cs: 
18915           - get_Text: Add last line (without trailing newline) to returned
18916             value (Fixes 76212)
18917           - get_TextLength: Count last line in returned length
18918           - ToString: Call Text property instead of duplicating code
18919
18920 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
18921
18922         * ImageList.cs: Dispose ImageAttributes objects.
18923
18924 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
18925
18926         * ImageList.cs: Use attribute constructors with less arguments where
18927           possible.
18928
18929 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
18930
18931         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
18932           Use typeof instead of strings when assembly is referenced. Added
18933           some more comments.
18934
18935 2005-10-21  Jackson Harper  <jackson@ximian.com>
18936
18937         * ListView.cs: Raise a double click event. Also tried to somewhat
18938         fix when the selectedindexchanged event is raised. Its still
18939         broken though.
18940
18941 2005-10-21  Jackson Harper  <jackson@ximian.com>
18942
18943         * TreeView.cs: New method to invalidate the plus minus area of a
18944         node without invalidating the whole node (maybe this can be used
18945         in some more places).
18946         * TreeNodeCollection.cs: When adding to an empty node we need to
18947         invalidate its plus minus area so the little block shows up.
18948         
18949 2005-10-21  Jackson Harper  <jackson@ximian.com>
18950
18951         * TreeView.cs: Make sure that when we invalidate a node the bounds
18952         are big enough to cover the selected box and the focus
18953         rectangle. Use a different colour for the lines connecting nodes
18954         so they show up with all themes.
18955
18956 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
18957
18958         * NativeWindow.cs: Don't call anything that could call into the driver,
18959           we might be on a different thread.
18960
18961 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
18962
18963         * Control.cs(Dispose): Since Dispose might run on a different thread,
18964           make sure that we call methods that could call into the driver via
18965           invoke, to avoid thread issues
18966
18967 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
18968
18969         * XplatUI.cs: Removed finalizer
18970         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
18971           not allowing to be called on the finalizer thread.
18972
18973 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
18974
18975         * ImageList.cs:
18976           - Reverted r51889 and r51891.
18977           - Added ImageListItem class that stores unmodified image items and image
18978             properties required to create list images until handle is created.
18979           - Added AddItem and moved image creation logic to AddItemInternal.
18980           - Added CreateHandle method that creates images based on unmodified items.
18981           - Added DestroyHandle that changes state to store unmodified items.
18982           - Add and AddStrip methods no more create handle.
18983           - ReduceColorDepth has no return value.
18984           - Dispose destroys handle.
18985           - Modified other methods to reflect the above changes.
18986           - Implemented key support.
18987           - Added profile 2.0 members and attributes.
18988           - Added private Reset and ShouldSerialize methods that provide the same
18989             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
18990             them as they are private.
18991           - Added some more comments about implementation details.
18992
18993 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
18994
18995         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
18996
18997 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
18998
18999         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
19000
19001 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
19002
19003         * DataGridDrawingLogic.cs: Fixes column hit calcultation
19004         * DataGridColumnStyle.cs: Remove debug message
19005
19006 2005-10-20  Jackson Harper  <jackson@ximian.com>
19007
19008         * TreeView.cs: We can always get input keys regardless of whether
19009         or not editing is enabled. They are used for navigation.
19010
19011 2005-10-20  Jackson Harper  <jackson@ximian.com>
19012
19013         * TreeNode.cs: Use the viewport rect for determining if a node
19014         needs to be moved for visibility. Don't use Begin/End edit. This
19015         calls a full refresh when its done.
19016         * TreeView.cs: New SetBottom works correctly.  Make the viewport
19017         rect property internal so the treenodes can see it. When clicking
19018         on a node we need to ensure that its visible because it might just
19019         be partly visible when clicked.
19020
19021 2005-10-20  Jackson Harper  <jackson@ximian.com>
19022
19023         * TreeNodeCollection.cs: Remove debug code.
19024
19025 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
19026
19027         * Datagrid.cs: Implements column sorting in Datagrid
19028         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
19029
19030 2005-10-20  Jackson Harper  <jackson@ximian.com>
19031
19032         * TreeNodeCollection.cs: Remove items properly. Update the correct
19033         area after removing them.
19034
19035 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
19036
19037         * Datagrid.cs: Should not call base.OnPaintBackground
19038
19039 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
19040
19041         * XplatUIX11.cs (GetMessage):
19042           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
19043             window instead of client window
19044           - Now properly calculates NC_xBUTTONUP message coordinates
19045           - ScreenToMenu now properly calculates it's coordinates of whole 
19046             window, since menus are in the whole window, not in the client
19047             window
19048           - Added WholeToScreen coordinate translation method
19049
19050 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
19051
19052         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
19053           want to return a message, loop back to the beginning of the function
19054           and grab the next real message to process instead.
19055
19056 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
19057
19058         * Splitter.cs: Properly set limits if no filler control is used
19059
19060 2005-10-19  Jackson Harper  <jackson@ximian.com>
19061
19062         * ColorDialog.cs: Don't show the help button if it is not enabled
19063         instead of disabling it (this is what MS does). Don't create the
19064         panel until the dialog is run, otherwise the vars (such as
19065         ShowHelp) are not set yet.
19066
19067 2005-10-19  Jackson Harper  <jackson@ximian.com>
19068
19069         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
19070         are reduced when adding nodes.
19071         * TreeNode.cs:
19072         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
19073         tree.
19074         
19075 2005-10-19  Jackson Harper  <jackson@ximian.com>
19076
19077         * FolderBrowserDialog.cs: End editing our treeview so the window
19078         actually gets refreshed.
19079
19080 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
19081
19082         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
19083           Obsoleted handling of WM_ERASEBKGND, now always draws our background
19084           inside of WM_PAINT
19085
19086 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
19087
19088         * MenuAPI.cs: Returns after Hidding window
19089         * XplatUIX11.cs: Added TODO found while debugging menu issues
19090
19091 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
19092
19093         * XplatUIX11.cs: Do not re-map the whole window when it's size
19094           becomes non-zero unless it's supposed to be actually visible
19095
19096 2005-10-18  Jackson Harper  <jackson@ximian.com>
19097
19098         * TreeView.cs: We don't need to keep a count anymore.
19099         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
19100         use the Grow method.
19101
19102 2005-10-18  Jackson Harper  <jackson@ximian.com>
19103
19104         * TreeNodeCollection.cs: Insert is not supported on arrays, so
19105         implement it manually here.
19106
19107 2005-10-18  Jackson Harper  <jackson@ximian.com>
19108
19109         * ImageList.cs: Dont kill the list when the colour depth is
19110         changed, just change the colour depth of all the images.
19111         - Same goes for setting the image size. Just resize them all
19112         instead of killing the list softly.
19113
19114 2005-10-18  Jackson Harper  <jackson@ximian.com>
19115
19116         * Control.cs: Don't invalidate empty rectangles.
19117
19118 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
19119
19120         * ListViewItem.cs:
19121           - Adds checked item to the Checked/Item lists (where empty before)
19122           - Do not add items to the Selected lists if they are already present
19123         * ListView.cs:
19124           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
19125           - When deleting items make sure that we delete them for the Selected
19126           and Checked list also.
19127
19128 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
19129
19130         * Label.cs: Dispose objects no longer used
19131         * ThemeWin32Classic.cs: Dispose objects no longer used
19132
19133 2005-10-18  Jackson Harper  <jackson@ximian.com>
19134
19135         * TabControl.cs: Don't refresh the whole control when the tabs are
19136         scrolled, we just need to refresh the tab area.
19137
19138 2005-10-17  Jackson Harper  <jackson@ximian.com>
19139
19140         * XplatUIX11.cs: Compress code a little bit. Only calculate the
19141         after handle when we need it.
19142
19143 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
19144
19145         * Control.cs: When the parent size changes, recalculate anchor 
19146           positions. Partial fix for #76462
19147
19148 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
19149
19150         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
19151           drawn. Fixes #76462
19152
19153 2005-10-17  Jackson Harper  <jackson@ximian.com>
19154
19155         * MonthCalendar.cs: Don't create the numeric up down until our
19156         handle is created. Otherwise our handle is created in the
19157         constructor and we don't know if we are a WS_CHILD or WS_POPUP
19158         yet.
19159
19160 2005-10-17  Jackson Harper  <jackson@ximian.com>
19161
19162         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
19163         correctly.
19164
19165 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
19166         * TreeNode.cs : small logical fix (was using local var instead of field)
19167         
19168 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
19169
19170         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
19171
19172 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
19173
19174         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
19175
19176 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
19177
19178         * Control.cs: 
19179           - Re-implemented anchoring code. My first version was really broken.
19180             This fixes bug #76033. Unlike the previous implementation we will
19181             no longer have round errors since all numbers are calculated from
19182             scratch every time. Removed various anchor-related obsolete vars.
19183           - InitLayout no longer causes layout event firing and layout to be 
19184             performed
19185
19186 2005-10-16  Jackson Harper  <jackson@ximian.com>
19187
19188         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
19189         which was broken).
19190
19191 2005-10-16  Jackson Harper  <jackson@ximian.com>
19192
19193         * TabControl.cs: Remove debug code.
19194
19195 2005-10-16  Jackson Harper  <jackson@ximian.com>
19196
19197         * XEventQueue.cs: Increase the default queue size (very simple
19198         apps needed to grow the queue).
19199         * Hwnd.cs: No finalizer so we don't need to suppress
19200         finalization. Compute the invalid area manually so a new rectangle
19201         does not newto be created.
19202         * ScrollableControl.cs: Don't set any params (otherwise visibility
19203         isn't set correctly).
19204         * MdiChildContext.cs: New constructor takes the mdi parent so it
19205         doesn't have to be computed and avoids a crash on windows. Draw
19206         the window icon properly, and allow the text to be seen.
19207         * Form.cs: Use new MdiChildContext constructor. Make sure the
19208         child context isn't null in wndproc.
19209         * TabControl.cs: Don't set focus, this is muddling keyboard
19210         behavoir. Expand the tab rows when a window size increase will
19211         allow extra tabs to be seen. Don't allow tabs smaller than the
19212         width of a window to be scrolled out of view.
19213         * TreeNode.cs:
19214         * TreeView.cs: Use measure string to calculate a nodes width, the
19215         width is cached and only updated when the text or the font is
19216         changed. Don't check for expand/collapse clicks on the first level
19217         nodes if root lines are disabled.
19218         
19219 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
19220
19221         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
19222
19223 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
19224
19225         * DataGridBoolColumn.cs: fixes warning
19226
19227 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
19228
19229         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
19230         to match more to match more precisely the MS Net behavior
19231
19232 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
19233
19234         * Hwnd.cs: Added field to track if window is mapped
19235         * XplatUIX11.cs: 
19236           - Unmap windows if they become 0-size, re-map when 
19237             they are >0 again; fixes #76035
19238           - Re-set our error handler after initializing X11Desktop
19239             to override any error handlers Gtk or whatever was called
19240             may have set.
19241
19242 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
19243
19244         * CheckedListBox.cs: Removed unused vars
19245         * ListView.cs: Fixed signatures
19246         * RichTextBox.cs: Removed unused vars
19247         * TextBoxBase.cs: Removed unused vars
19248         * XplatUIWin32.cs: Removed unused vars
19249         * XplatUIX11.cs: Removed unused vars
19250         * XplatUI.cs: Updated version and date to latest published
19251
19252 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
19253
19254         * Cursor.cs: Added private .ctor to work around a bug in
19255           resourceset (Thanks to Geoff Norton for the help on this)
19256         * SplitterEventArgs.cs: Made fields accessible so we don't
19257           waste boatloads of objects and can reuse the same one
19258           in Splitter
19259         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
19260           any captions and borders when generating screen coordinates
19261         * Splitter.cs: Reimplemented control, now fully complete, uses
19262           rubberband drawing, supports and obeys all properties, has
19263           proper cursors
19264
19265 2005-10-13  Miguel de Icaza  <miguel@novell.com>
19266
19267         * Form.cs (Form): Setup default values for autoscale and
19268         autoscale_base_size;  Make these instance variables, not static
19269         variables. 
19270
19271         (OnLoad): on the first load, adjust the size of the form.
19272
19273 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
19274
19275         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
19276           width argument to DrawReversibleRectangle()
19277         * XplatUIWin32.cs, XplatUIX11.cs: 
19278           - Implemented width for DrawReversibleRectangle()
19279           - Added logic to DrawReversibleRectangle that recognizes a zero
19280             width or height and only draws a line in that situation
19281         
19282 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
19283
19284         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
19285         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
19286         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
19287           method (it uses our FosterParent window to get a graphics context)
19288
19289 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
19290
19291         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
19292           and SetWindowBackground methods
19293         * Control.cs:
19294           - Setting proper ControlStyles
19295           - We no longer call XplatUI.SetWindowBackground and XplatUI.
19296             EraseWindowBackground, instead we draw the window background
19297             ourselves in PaintControlBackground. This behaviour is
19298             required to match MS, where, when OnPaintBackground is not
19299             called, the background is not drawn.
19300           - Removed unneeded Refresh() in set_Text
19301         * Hwnd.cs: Dropped the ErasePending support. No longer needed
19302         * XplatUIX11.cs:
19303           - Created DeriveStyles method to translate from CreateParams to
19304             FormBorderStyle and TitleStyle, also handles BorderStyle (which
19305             matches FormBorderStyle enum values)
19306           - Consolidated SetHwndStyles and CalculateWindowRect border/title
19307             style calculations into single DeriveStyles method
19308           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
19309             from redrawing the whole window on any resize or expose.
19310           - Fixed CreateWindow usage of SetWindowValuemask. Before not
19311             all styles were applied to our whole/client window appropriately
19312           - Removed EraseWindowBackground() and SetWindowBackground() methods
19313           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
19314             no longer clear/redraw the background through X
19315           - Removed handling of erase_pending bit, we have no use for it (or
19316             so it seems)
19317         * XplatUIOSX.cs:
19318           - Removed generation and handling of WM_ERASEBKGND message
19319           - Removed EraseWindowBackground() and SetWindowBackground() methods
19320           - Removed handling of hwnd.ErasePending flag
19321         * XplatUIWin32.cs:
19322           - Removed EraseWindowBackground() and SetWindowBackground() methods
19323           - We no longer call EraseWindowBackground on PaintEventStart, we 
19324             ignore the fErase flag, erasing is handled in Control in the
19325             background handler
19326         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
19327           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
19328           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
19329           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
19330           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
19331           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
19332           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
19333
19334 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
19335
19336         * PropertyGrids.cs: Get sub properties
19337         * PropertyGridView.cs: Fix drawing code
19338
19339 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
19340
19341         * ListBox.cs: Fixes 76383
19342
19343 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
19344
19345         * DataGridTextBoxColumn.cs: Sets location and size before attachment
19346         * ThemeWin32Classic.cs: Fixes border drawing and calculations
19347         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
19348
19349
19350 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
19351
19352         * ComboBox.cs: Fixes border drawing
19353
19354 2005-10-10  Miguel de Icaza  <miguel@novell.com>
19355
19356         * MimeIcon.cs: Ignore errors if the file can not be read.
19357
19358 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
19359
19360         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
19361          - Fixed border calculations
19362          - Fixed horizontal scrolling in single column listboxes
19363          - Fixed drawing issues
19364
19365 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
19366
19367         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
19368           FormBorderStyle enum
19369         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
19370           code to determine FormBorderStyles from CreateParams
19371         * Form.cs:
19372           - Fixed bug where we'd set the wrong window styles if we were
19373             not creating an MDI window
19374           - Added call to XplatUI.SetBorderStyle when form borders are set
19375         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
19376         * Hwnd.cs:
19377           - Removed obsolete edge style
19378           - Switched from BorderStyle to FormBorderStyle
19379         
19380 2005-10-10  Jackson Harper  <jackson@ximian.com>
19381
19382         * Form.cs: Use the property to get the window handle instead of
19383         accessing it directly. Prevents a null reference exception.
19384
19385 2005-10-10  Jackson Harper  <jackson@ximian.com>
19386
19387         * TreeView.cs: Don't adjust the rect given to DrawString now that
19388         our libgdiplus draws correctly.
19389
19390 2005-10-08  Jackson Harper  <jackson@ximian.com>
19391
19392         * TreeView.cs: Don't try to find the clicked on node if there are
19393         no nodes in the tree.
19394
19395 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
19396
19397         * RichTextBox.cs:
19398
19399           restore
19400
19401 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
19402
19403         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
19404           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
19405           ErrorProvider.cs:
19406           Use ResPool for brushes and dispose System.Drawing objects that
19407           are not used anymore.
19408
19409 2005-10-07  Jackson Harper  <jackson@ximian.com>
19410
19411         * MdiChildContext.cs: Use the new borders instead of drawing them
19412         ourselves.
19413
19414 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
19415
19416         * Calling UpdateBounds after changing the window's BorderStyle 
19417         since the style can change the ClientSize
19418
19419 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
19420
19421         * Control.cs: Made PaintControlBackground virtual
19422         * Panel.cs: Overriding PaintControlBackground instead of using paint
19423           event; paint event method was interfering with 'real' users of the
19424           event.
19425
19426 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
19427
19428         * ThemeWin32Classic.cs: remove border drawing since it is handled
19429         by the base control class now and was causing double border drawing.
19430
19431 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
19432
19433         * Panel.cs: Redraw our background on paint. Not a pretty solution,
19434           but it does seem to match MS behaviour. This fixes bug #75324
19435
19436 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
19437
19438         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
19439           somewhat hackish looking
19440
19441 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
19442
19443         * TextBoxBase.cs:
19444           - We now accept Enter even if AcceptEnter is false, if the containing
19445             form does not have an AcceptButton configured (fixes bug #76355)
19446           - Calculations are now fixed to no longer use Width/Height, but
19447             ClientSize.Width/Height, since we now support borders (this was
19448             a result of fixing borders and therefore bug #76166)
19449           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
19450             true (fixes bug #76354)
19451         
19452 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
19453
19454         * Control.cs: 
19455           - Defaulting BorderStyle and setting it in XplatUI when our window 
19456             is created
19457           - Added enum check to InternalBorderStyle setter
19458         * XplatUIX11.cs: 
19459           - Added drawing of window borders
19460           - Now properly calculates WM decorations offset for toplevel 
19461             windows (fixes bug #74763)
19462         * XplatUIWin32.cs: 
19463           - Implemented BorderStyles for windows (we're letting win32 draw 
19464             the border for us)
19465           - Fixed the signature for SetWindowLong
19466         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
19467           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
19468           setting borders
19469         * UpDownBase.cs: Remove drawing of borders, this is handled by
19470           the driver, outside the client area
19471         * ListView.cs: Removed bogus border calculations. The control should
19472           be oblivious to borders, since those are not part of the client
19473           area. 
19474         * X11DesktopColors.cs: Commented out (currently) unneeded variables
19475         * ThemeWin32Classic.cs: Removed border calculations from ListView 
19476           drawing code
19477
19478 2005-10-06  Jackson Harper  <jackson@ximian.com>
19479
19480         * MdiChildContext.cs: Clear out the old virtual position remove
19481         all the unneeded calls to CreateGraphics.
19482
19483 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
19484
19485         * TextControl.cs: Use proper color for highlighted text; fixes #76350
19486
19487 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
19488
19489         * Form.cs: 
19490           - Added loading and setting of our new default icon
19491           - Only set icon if window is already created
19492
19493 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
19494
19495         * Label.cs:
19496           - Do not explicitly set the foreground and background colors, to
19497             allow inheriting from parents (fixes #76302)
19498           - Use Control's InternalBorderStyle property to deal with borders
19499
19500 2005-10-06  Jackson Harper  <jackson@ximian.com>
19501
19502         * MdiChildContext.cs: Use the new xplatui function to draw a
19503         reversible rect.
19504
19505 2005-10-06  Jackson Harper  <jackson@ximian.com>
19506
19507         * Form.cs: Add the parent before creating the child context cause
19508         we need the parent when setting up the child.
19509
19510 2005-10-06  Jackson Harper  <jackson@ximian.com>
19511
19512         * FolderBrowserDialog.cs: redo the tree population code so a
19513         second thread isn't used. Should be a lot faster and more stable
19514         now.
19515
19516 2005-10-05  Jackson Harper  <jackson@ximian.com>
19517
19518         * TreeView.cs: There are no expand/collapse boxes if the node has
19519         no children.
19520
19521 2005-10-05  Jackson Harper  <jackson@ximian.com>
19522
19523         * X11DesktopColors.cs: Get menu colours for the gtk theme.
19524
19525 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
19526
19527         * FileDialog.cs: Fix InitialDirectory
19528
19529 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
19530
19531         * ComboBox.cs:
19532                 - Fixes changing between styles
19533                 - Fixes simple mode
19534                 - Fixes last item crashing when navigating with keyboard
19535
19536 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
19537
19538         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
19539
19540 2005-10-05  Jackson Harper  <jackson@ximian.com>
19541
19542         * TreeView.cs: If updating the root node do a full refresh.
19543         * TreeNode.cs: The root node should be expanded by default. Also
19544         added a utility prop to tell if we are the root node.
19545         * TreeNodeCollection.cs: Only refresh if the node we are being
19546         added to is expanded. Also added a comment on a potential
19547         optimization.
19548         
19549 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
19550
19551         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
19552           in dispose method. Fixes #76330
19553
19554 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
19555
19556         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
19557
19558                 - Implements vertical and horizontal scrolling using XplatUI
19559                 - Fixes keyboard navagation
19560                 - Fixes EnsureVisible
19561                 - Drawing fixes
19562                 - Handles and draws focus properly
19563
19564
19565 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
19566
19567         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
19568           Create handle. NET_2_0: Destroy handle when value is null.
19569
19570 2005-10-03  Jackson Harper  <jackson@ximian.com>
19571
19572         * ScrollBar.cs: My last scrollbar patch was broken. This is a
19573         revert and a new patch to prevent the thumb from refreshing so
19574         much.
19575
19576 2005-10-02  Jackson Harper  <jackson@ximian.com>
19577
19578         * ScrollBar.cs: Don't update position if it hasn't actually
19579         changed. This occurs when you hold down the increment/decrement
19580         buttons and the thumb gets to the max/min.
19581
19582 2005-10-01  Jackson Harper  <jackson@ximian.com>
19583
19584         * Form.cs:
19585         * MdiChildContext.cs:
19586         * MdiClient.cs: Implement ActiveMdiChild in Form.
19587
19588 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
19589
19590         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
19591
19592 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
19593
19594         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
19595           be found
19596
19597 2005-09-30  Jackson Harper  <jackson@ximian.com>
19598
19599         * ListBox.cs: Don't do a full refresh unless some data has
19600         actually changed.
19601
19602 2005-09-30  Jackson Harper  <jackson@ximian.com>
19603
19604         * TreeView.cs: Make sure that the checkboxes size is factored in
19605         even when not visible.
19606
19607 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
19608
19609         * FileDialog.cs: Fix Jordi's build break
19610
19611 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
19612
19613         * FileDialog.cs: 
19614                 - Use standard the Windows colours for the combobox as espected
19615                 - Dispose objects that use resouces when no longer need them
19616
19617 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
19618
19619         * X11DesktopColors.cs: Initial incomplete implementation
19620         * XplatUIX11.cs: Added call to initialize X11DesktopColors
19621
19622 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
19623
19624         * Theme.cs: 
19625           - Switched Theme color names to match the names defined in 
19626             System.Drawing.KnownColors. Life's hard enough, no need to make 
19627             it harder.
19628           - Added setters to all theme color properties so themes can set
19629             their color schemes. The setters also propagate the color changes
19630             to System.Drawing.KnownColors via reflection
19631         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
19632           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
19633           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
19634           use the new, more logical theme color names
19635         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
19636           post-NT colors
19637         * ThemeWin32Classic.cs:
19638           - Removed code to set the old classic Windows colors. Instead it
19639             now relies on the colors returned by System.Drawing.KnownColors
19640             which will be either modern static colors (Unix) or colors
19641             read from the user's configuration (Win32)
19642           - Updated to use the new, more logical theme color names
19643           - Switched DataGrid drawing code to use only Theme colors instead of
19644             a mix of System.Drawing.KnownColors and Theme colors
19645           - DrawFrameControl(): Removed code that fills the button area, the
19646             fill would overwrite any previous fill done by a control. This
19647             fixes bug #75338 
19648           - Added DrawReversibleRectangle() stub
19649         * ScrollableControl.cs: Set visible state to false when scrollbars
19650           are removed (pdn fix)
19651         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
19652           DrawReversibleRectangle() method to allow drawing primitive 
19653           'rubber bands'
19654         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
19655
19656 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
19657
19658         * ImageList.cs: Add(Icon): Create handle.
19659
19660 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
19661
19662         * ListView.cs:
19663         * ThemeWin32Classic.cs:
19664                 - Fixes detail mode
19665                 - Sets clippings
19666                 - Issues with drawing
19667
19668 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
19669
19670         * ImageList.cs: Moved RecreateHandle back to ImageList as event
19671           source has to be the ImageList.
19672
19673 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
19674
19675         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
19676
19677 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
19678
19679         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
19680
19681 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
19682
19683         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
19684
19685 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
19686         * GridItem.cs: Fixed TODOs
19687         * GridItemCollection.cs: Added ICollection interface
19688
19689 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
19690
19691         * ImageList.cs: Resize icons when needed.
19692
19693 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
19694
19695         * ListViewItem.cs
19696                 - Fixes GetBounds and returns on screen rects
19697         * ListView.cs:
19698                 - Fixes vertical and horzintal scrolling of items
19699         * ThemeWin32Classic.cs:
19700                 - Fixes drawing
19701                 
19702 2005-09-29  Raja R Harinath  <harinath@gmail.com>
19703
19704         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
19705
19706 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
19707
19708         * ImageList.cs: Added comments about handle creation. Moved Handle,
19709           HandleCreated and OnRecreateHandle implementations to ImageCollection.
19710           Handle is created in Add methods.
19711
19712 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
19713          
19714         * DataGridDrawingLogic.cs: 
19715                 - Takes rows into account on Colum calculations
19716                 - Returns the column when clickig
19717         * DataGrid.cs:
19718                 - Fixes default HitTestInfo values
19719                 - Fixes HitTestInfo.ToString
19720                 - Fixes ResetBackColor          
19721         
19722 2005-09-28  Jackson Harper  <jackson@ximian.com>
19723
19724         * MdiChildContext.cs: Obey rules for fixed sized windows (no
19725         sizing or cursor changes). Also added some temp code to draw the
19726         titlebars text (Makes dev a little easier).
19727
19728 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
19729
19730         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
19731
19732 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
19733          
19734         * ListBox.cs: Fixes bug 76253
19735
19736 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
19737
19738         * ImageList.cs: Added comments about the current implementation. Added
19739           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
19740           Format32bppArgb to preserve transparency and can use Graphics.FromImage
19741           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
19742           with Bitmap.LockBits for better performance. Revised the whole file to
19743           match MS.NET behaviour and provide better performance. Non-public
19744           interface members are calling public members even when they throw
19745           NotSupportedException for better maintainability. Moved ColorDepth,
19746           ImageSize, ImageStream and TransparentColor implementations to
19747           ImageCollection for better performance as these properties are not used
19748           by ImageList.
19749         * ImageListStreamer.cs: Added a new internal constructor that takes an
19750           ImageList.ImageCollection and serializes Images based on
19751           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
19752           match ImageList property name.
19753
19754 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
19755
19756         * ListBox.cs: Fixes IndexFromPoint for last item
19757
19758 2005-09-27  Jackson Harper  <jackson@ximian.com>
19759
19760         * Form.cs: Set the position of new mdi children correctly.
19761
19762 2005-09-27  Jackson Harper  <jackson@ximian.com>
19763
19764         * MdiClient.cs: New mdi children need to be added to the back of
19765         the controls collection so the zorder is set correctly. Also add a
19766         count of all the child windows that have been created.
19767
19768 2005-09-27  Jackson Harper  <jackson@ximian.com>
19769
19770         * Form.cs (CreateParams): Setup MDI forms correctly.
19771
19772 2005-09-27  Jackson Harper  <jackson@ximian.com>
19773
19774         * MdiChildContext.cs:
19775         * MonthCalendar.cs:
19776         * UpDownBase.cs:
19777         * ListBox.cs:
19778         * ListView.cs:
19779         * TextBoxBase.cs:
19780         * TreeView.cs:
19781         * ScrollableControl.cs:
19782         * ComboBox.cs: Add implicit controls using the new implict control
19783         functionality in ControlCollection. Also try to block multiple
19784         control add in a suspend/resume layout to save some cycles.
19785         
19786 2005-09-27  Jackson Harper  <jackson@ximian.com>
19787
19788         * Control.cs: Add functionality to the controls collection to add
19789         'implicit controls' these are controls that are created by the
19790         containing control but should not be exposed to the user. Such as
19791         scrollbars in the treeview.
19792         * Form.cs: The list var of the ControlsCollection is no longer
19793         available because of the potential of implicit controls getting
19794         ignored by someone accessing the list directly.
19795
19796 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
19797
19798         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
19799           loose it's parent. (Fixed bug introduced in r49103 when we added
19800           setting the child parent to null on Remove)
19801
19802 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
19803
19804         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
19805         * Splitter.cs: Added missing attributes for BorderStyle property.
19806         * TextBoxBase.cs: Marked Calculate* methods internal.
19807         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
19808         MS.NET.
19809
19810 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
19811          
19812         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
19813
19814 2005-09-25  Jackson Harper  <jackson@ximian.com>
19815
19816         * TreeView.cs: Update the node bounds correctly regardless of
19817         whether the node is visible.
19818
19819 2005-09-25  Jackson Harper  <jackson@ximian.com>
19820
19821         * ImageList.cs: Don't dispose the image after it is added to the
19822         image list. Only reformat images that need to be resized.
19823
19824 2005-09-25  Jackson Harper  <jackson@ximian.com>
19825
19826         * ImageList.cs: Don't set the format when changing the image.
19827
19828 2005-09-25  Jackson Harper  <jackson@ximian.com>
19829
19830         * TreeView.cs: We can't just assume the node has a font. Use the
19831         treeviews font if no node font is available.
19832
19833 2005-09-25  Jackson Harper  <jackson@ximian.com>
19834
19835         * TreeView.cs: Allow the scrollbars to be reset with negative
19836         values.
19837         - Don't add scrollbars to negative sized windows.
19838
19839 2005-09-23  Jackson Harper  <jackson@ximian.com>
19840
19841         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
19842         old Mono.Posix. Also remove some stray code that shouldn't have
19843         been committed.
19844
19845 2005-09-23  Jackson Harper  <jackson@ximian.com>
19846
19847         * TreeView.cs: Attempt at proper sizing of the horizontal
19848         scrollbar. Also don't resize the scrollbars unless they are
19849         visible.
19850
19851 2005-09-23  Jackson Harper  <jackson@ximian.com>
19852
19853         * TreeView.cs: We don't need to expand the invalid area when the
19854         selection changes, as this is all drawn in the node's bounding
19855         box. The area needs to be expanded (previous typo was contracting
19856         it) when the focus rect moves.
19857
19858 2005-09-23  Jackson Harper  <jackson@ximian.com>
19859
19860         * TreeView.cs: Display the selection box under the correct
19861         circumstances. We were rendering white text with no selection box
19862         before.
19863
19864 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
19865
19866         * TextControl.cs(Split): Now updates selection start/end if it points 
19867           into a line that's being split. Fixes a FIXME and bug #75258
19868
19869 2005-09-23  Jackson Harper  <jackson@ximian.com>
19870
19871         * Binding.cs:
19872         * ListControl.cs: Don't use the path when retrieving binding
19873         managers from the binding context. My bat sense tells me that the
19874         path is only used on insertion.
19875
19876 2005-09-22  Jackson Harper  <jackson@ximian.com>
19877
19878         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
19879
19880 2005-09-22  Jackson Harper  <jackson@ximian.com>
19881
19882         * Splitter.cs: There are special cursors used for splitting.
19883         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
19884
19885 2005-09-22  Jackson Harper  <jackson@ximian.com>
19886
19887         * Splitter.cs: Change the cursor appropriately when the splitter
19888         is moused over, so the user actually knows there is a splitter
19889         there.
19890
19891 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
19892
19893        * Label.cs : Fix ToString method to give same output as MS.NET
19894
19895 2005-09-22  Jackson Harper  <jackson@ximian.com>
19896
19897         * TreeView.cs: Create the scrollbars when the handle is created
19898         and add them right away, just make them invisble. Also account for
19899         the window being shrunk vertically to the point that the vert
19900         scrollbar needs to be added.
19901         - Remove some 0.5 adjustments to get around anti aliasing issues.
19902         
19903 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
19904          
19905         * MainMenu.cs: Fixes default value
19906         * MenuItem.cs: Fixes default value
19907
19908 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
19909
19910         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
19911
19912 2005-09-21  Jackson Harper  <jackson@ximian.com>
19913
19914         * Control.cs: Don't try to set the border style on the window if
19915         it hasn't been created. When the window is created the border
19916         style will be used.
19917
19918 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
19919
19920         * Control.cs (Update): Don't call XplatUI if we don't have a
19921           window handle yet
19922
19923 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
19924
19925         * ContainerControl.cs: Instead of throwing an exception, print
19926           a one-time warning about Validate not being implemented
19927         * XplatUIWin32.cs: Removed debug output
19928
19929 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
19930
19931         * Control.cs: Only set XplatUI background if we expect the windowing
19932           system to handle the background. This stops controls that draw their
19933           own background from flickering
19934
19935         * XplatUIX11.cs: Support custom visuals and colormaps for window 
19936           creation. This allows, amongst other things, using MWF X11 windows 
19937           with OpenGL.
19938
19939 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
19940
19941         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
19942           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
19943           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
19944           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
19945           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
19946           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
19947           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
19948           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
19949           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
19950           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
19951           GridColumnStylesCollection.cs, 
19952           IDataGridColumnStyleEditingNotificationService.cs,
19953           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
19954           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
19955           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
19956           TreeNodeCollection.cs, AmbientProperties.cs, 
19957           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
19958           DataObject.cs, ErrorProvider.cs, Splitter.cs,
19959           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
19960           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
19961           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
19962           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
19963           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
19964           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
19965           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
19966           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
19967           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
19968           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
19969           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
19970           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
19971           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
19972           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
19973           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
19974           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
19975           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
19976           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
19977           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
19978           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
19979           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
19980           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
19981           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
19982           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
19983           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
19984           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
19985           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
19986           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
19987           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
19988           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
19989           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
19990           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
19991           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
19992           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
19993           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
19994
19995 2005-09-21  Jackson Harper  <jackson@ximian.com>
19996
19997         * TreeNode.cs: Call Before/After Expand not Collapse when
19998         expanding.
19999
20000 2005-09-20  Jackson Harper  <jackson@ximian.com>
20001         
20002         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
20003
20004 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
20005          
20006         * ListViewItem.cs:
20007                 - Fixes bug 76120
20008                 - Fixes proper storing of subitems
20009                 - Fixes not updated items
20010
20011 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
20012
20013         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
20014           things if our window handle isn't created yet. Also disabled 
20015           debug for TextBoxBase
20016
20017 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
20018
20019         * MenuAPI.cs: Remove filtering of events to allow menu usage
20020
20021 2005-09-20  Miguel de Icaza  <miguel@novell.com>
20022
20023         * Cursor.cs: Allow null to be passed to Cursor.Current.
20024
20025 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
20026
20027         * ThemeWin32Classic.cs:
20028           - Change some private methods/fields to protected virtual so that 
20029             they can be accessed and overriden in derived classes
20030           - First refactoring of some methods. Derived themes now don't 
20031             need to duplicate the complete code from ThemeWin32Classic
20032         * ThemeNice.cs:
20033           - Added nice StatusBar
20034           - Derive from ThemeWin32Classic and not Theme
20035           - Removed duplicate ThemeWin32Classic code
20036
20037 2005-09-20  Miguel de Icaza  <miguel@novell.com>
20038
20039         * Control.cs (ControlCollection.Add): If the value null is passed
20040         the control is ignored. 
20041
20042         Optimize this loop.
20043
20044 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
20045
20046         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
20047           PostQuitMessage state.
20048         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
20049
20050 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
20051
20052         * Application.cs: Our constructor will never get called, move 
20053           initialization to fields; fixes bug #75933
20054
20055 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
20056
20057         * FileDialog.cs :
20058                 - Allow files to be selected properly using file name
20059                 combo box.
20060                 - Add ability to change diretory (absolute / relative)
20061                 using file name combo box.
20062
20063 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
20064          
20065         * ListBox.cs: 
20066                 - Fixes Multicolumn listboxes item wrong calculations
20067                 - Allows to click when only one item is in the listbox
20068                 - Fixes crash when no items using keyboard navigation
20069
20070 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
20071
20072         * ComboBox.cs: Reverted almost everything from the latest patch which
20073           broke ComboBox
20074
20075 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
20076         
20077         * ToolTip.cs:
20078                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
20079         * ComboBox.cs:
20080                 - When DropDownStyle is Simple, it does not show scrollbar 
20081                 to the last item of the list.
20082                 - When DropDownStyle is Simple, it crashed when the list was 
20083                 scrolled down with the down cursor key.
20084                 - Fixed a bug that when DropDownStyle is DropDownList, the 
20085                 selected item was not shown.
20086                 - The position of the selected item was not preserved when 
20087                 the next dropdown happened.
20088         * ThemeWin32Classic.cs:
20089                 - Items were wrapped at the right end.
20090         * CheckedListBox.cs:
20091                 - Fixed Add method
20092         * ListBox.cs:
20093                 - Items should be fully shown.
20094                 - When resizing and vertical scrollbar disappeared, the item 
20095                 of index 0 should be on the top of the list.
20096                 - GetItemRectangle should consider the size of ver. scrollbar
20097         * StatusBar.cs:
20098                 - SizingGrip area should not be allocated when it is not 
20099                 displayed.
20100                 - Now it reflects MinWidth of the containing panel and 
20101                 fixed a crash that happens when its width becomes so small.
20102
20103 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
20104
20105         * CheckedListBox.cs: Fixes bug 76028
20106         * ListBox.cs: Fixes bug 76028
20107
20108 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
20109
20110         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
20111         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
20112
20113 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
20114
20115         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
20116
20117 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
20118
20119         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
20120
20121 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
20122
20123         * IRootGridEntry.cs: Added
20124         * PropertyGridCommands.cs: Added
20125         * PropertiesTab.cs: Added missing methods and property
20126         * PropertyGridView.cs: Made class internal
20127         * PropertyGridTextBox.cs: Made class internal
20128
20129 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
20130
20131         * MimeIcon.cs: Try to check some other environment variables
20132           if "DESKTOP_SESSION" returns "default"
20133
20134 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
20135
20136         * ThemeNice.cs: Corrected background colors (e.g. menus)
20137         * ColorDialog.cs: Use correct background colors for controls
20138
20139 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
20140
20141         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
20142
20143 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
20144
20145         * RichTextBox.cs: Added initial implementation
20146         * lang.cs: Removed. Was accidentally checked in long time ago
20147         * TODO: Removed. Contents were obsolete
20148
20149 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
20150                                                                                 
20151         * PropertiesTab.cs : Added
20152
20153 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
20154                                                                                 
20155         * PropertyGrid.cs : Update
20156         * PropertyGridView.cs : Update
20157         * System.Windows.Forms.resx : Added images and strings
20158
20159 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
20160
20161         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
20162  
20163 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
20164
20165         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
20166           a busy loop right after the Ungrab the X11 display is otherwise 
20167           blocked
20168
20169 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
20170
20171         * ThemeWin32Classic.cs: Optimise the use of clipping
20172
20173 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
20174
20175         * DataGrid.cs: fixes recursion bug
20176
20177 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
20178
20179         * ThemeNice.cs: 
20180           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
20181           - Cleanup
20182
20183 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
20184
20185         * ThemeNice.cs: Draw nice ProgressBars
20186
20187 2005-09-01  Miguel de Icaza  <miguel@novell.com>
20188
20189         * VScrollBar.cs: Another buglet found by Aaron's tool. 
20190
20191         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
20192         bug finder.
20193
20194 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
20195
20196         * ThemeNice.cs:
20197           - Added nicer menu drawing
20198           - Updated DrawTab
20199           - some refactoring
20200
20201 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
20202
20203         * CreateParams.cs (ToString): Made output match MS
20204         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
20205             handle is already created (to avoid forcing window creation)
20206         * XplatUIX11.cs: Set window text to caption after creating window,
20207           in case Text was set before window was created
20208         * Form.cs: Use this.Text instead of a static string as caption
20209
20210 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
20211
20212         * NotifyIcon.cs: Don't set the window to visible; this screws
20213           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
20214           OnPaint without a bitmap)
20215         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
20216           happen very often anyway; we could add the check to the WM_PAINT 
20217           event generation code
20218
20219 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
20220
20221         * NotifyIcon.cs: Fill the icon area with a background color, to 
20222           avoid 'residue' when transparent icons are drawn
20223         * XplatUIX11.cs:
20224           - Handle whole_window == client_window when destroying windows
20225           - SystrayAdd(): Set client_window to whole_window value to
20226             get mouse and other events passed to NotifyIcon
20227
20228 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
20229
20230         * Form.cs: Set proper default for Opacity property
20231         * NotifyIcon.cs:
20232           - ShowSystray(): Don't bother creating telling the OS
20233             about the systray item if no icon is provided
20234           - Now handles WM_NCPAINT message to deal with whole/client window
20235             split
20236           - Create window as visible to not get caught by Expose optimization
20237         * Hwnd.cs: Removed debug message
20238         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
20239           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
20240             PaintEventStart/End to use new client argument
20241         * TextBoxBase.cs:
20242           - Commented out debug messages
20243           - Switched PaintEventStart/End to use new client argument
20244         * XplatUI.cs: Added client window bool to PaintEventStart()/
20245           PaintEventEnd() calls, to support drawing in non-client areas
20246         * XplatUIDriver.cs: 
20247           - Added client window bool to PaintEventStart()/PaintEventEnd() 
20248             calls, to support drawing in non-client areas
20249           - Added conditional compile to allow using MWF BeginInvoke 
20250             on MS runtime
20251         * XplatUIX11.cs:
20252           - Added some conditional debug output
20253           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
20254             whole/client window split
20255           - Implemented handling of client argument to PaintEventStart()/End()
20256         * Control.cs:
20257           - Throw exception if BeginInvoke() is called and the window handle
20258             or one of the window's parent handles is not created
20259           - Added conditional compile to allow using MWF BeginInvoke on
20260             MS runtime
20261           - get_Parent(): Only sets parent if handle is created. This avoids
20262             forcing window handle creation when parent is set.
20263           - Now fires Layout and Parent changed events in proper order
20264           - Switched to use Handle instead of window.Handle for Z-Order setting,
20265             the get_Parent() patch above causes us to possibly get null for 'window'
20266           - Implemented handling of client argument to PaintEventStart()/End()
20267           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
20268             default handling)
20269           - Now sends a Refresh() to all child windows when Refresh() is called
20270
20271 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
20272
20273         * Form.cs: Added (non-functional) Opacity property
20274         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
20275
20276 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
20277         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
20278           use export MONO_THEME=nice to activate it.
20279           Currently supported controls:
20280           - Button
20281           - ComboBox
20282           - ScrollBar
20283           - TabControl (TabAlignment.Top only, other will follow)
20284         * ThemeEngine.cs: Add theme nice
20285         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
20286           if enabled
20287
20288 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
20289
20290         * Splitter.cs: Resize docked control and its neighbor.
20291
20292 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
20293         -- Making Windows with Menus layout correctly --
20294         * Form.cs : The first leg of the fix
20295                 Menu setter - adjust Client Size as needed to make space for the menu
20296                 SetClientSizeCore - doesn't call base version to be able to pass the 
20297                         menu handle to XplatUI.CalculateWindowRect
20298         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
20299         * XplatUIX11.cs: The critical second leg of the fix
20300                 GetWindowPos needs to use a recalculated client_rect
20301                 so that resizing the window doesn't break layout of child controls. 
20302                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
20303                 Lots of \t\n killed
20304
20305 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
20306
20307         * Label.cs: Now properly recalculates width and height on Font and Text
20308           changes if AutoSize is set
20309
20310 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
20311         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
20312
20313 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
20314
20315         * ImageList.cs: Makes ToString method compatible with MS
20316
20317 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
20318
20319         * MenuAPI.cs: fixes bug 75716
20320
20321 2005-08-11 Umadevi S <sumadevi@novell.com>
20322         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
20323
20324 2005-08-11 Umadevi S <sumadevi@novell.com>
20325         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
20326
20327 2005-08-10  Umadevi S <sumadevi@novell.com>
20328         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
20329
20330 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
20331
20332         * Menu.cs: fixes bug 75700
20333         * MenuAPI.cs: fixes navigation issues
20334
20335 2005-08-09  Umadevi S <sumadevi@novell.com>
20336         * CheckedListBox.cs - simple fix for GetItemChecked.
20337
20338 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
20339
20340         * ComboBox.cs: Serveral fixes
20341         * ListBox.cs: Serveral fixes
20342
20343 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
20344
20345         * ComboBox.cs: Fixes FindString methods and GetItemHeight
20346         * ListBox.cs: Fixes FindString methods
20347
20348 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
20349
20350         * DataGrid.cs: fixes bugs exposed by new tests
20351
20352 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
20353
20354         * Mime.cs: Compile Mono assembly references only if compiling
20355           with Mono (Allows to build with VS.Net again)
20356
20357 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
20358
20359         * Control.cs (PaintControlBackground): Draw background image
20360         corrrectly.
20361         (CheckForIllegalCrossThreadCalls): Stubbed.
20362         
20363         * Form.cs (OnCreateControl): Center when should be centered.
20364         
20365         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
20366
20367 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
20368
20369         * Binding.cs: Binding to properties should be case unsensitive
20370
20371 2005-07-18 vlindos@nucleusys.com
20372
20373         * DataGrid.cs: fixes setmember order
20374
20375 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
20376
20377         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
20378         * FileDialog.cs: FileDialog is now resizable and uses the new
20379           MimeIconEngine
20380
20381 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
20382
20383         * DataGridTextBoxColumn.cs: default value
20384         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
20385         * GridTableStylesCollection.cs: fixes checking MappingName
20386         * DataGridDrawingLogic.cs: fixes drawing logic issues
20387         * DataSourceHelper.cs: rewritten to make compatible with more data sources
20388         * DataGrid.cs: fixes    
20389
20390 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
20391
20392         * MimeGenerated.cs: Use case sensitive comparer for
20393           NameValueCollections
20394
20395 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
20396
20397         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
20398         * ThemeWin32Classic.cs: bug fixes, code refactoring
20399         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
20400         * DataGrid.cs: bug fixes, code refactoring
20401         * DataGridTextBox.cs: bug fixes, code refactoring
20402         * DataGridColumnStyle.cs:  bug fixes, code refactoring
20403         * Theme.cs:  bug fixes, code refactoring
20404
20405 2005-07-01  Peter Bartok  <pbartok@novell.com> 
20406
20407         * TextControl.cs: Quick fix for the reported crash on ColorDialog
20408           and other text box usage
20409
20410 2005-07-01  Jackson Harper  <jackson@ximian.com>
20411
20412         * TabControl.cs: Make sure the bottom of the tab covers the pages
20413         border.
20414
20415 2005-06-30  Peter Bartok  <pbartok@novell.com> 
20416
20417         * Form.cs (ShowDialog): Assign owner of the dialog
20418         * TextBoxBase.cs: Always refresh caret size when deleting, caret
20419           might have been moved to a tag with different height
20420
20421 2005-06-30  Jackson Harper  <jackson@ximian.com>
20422
20423         * Form.cs: Don't create an infinite loop when setting focus
20424         * MenuItem.cs: Don't dirty the parents if we don't have any
20425
20426 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
20427
20428         * LibSupport.cs: Rename
20429
20430 2005-06-29  Peter Bartok  <pbartok@novell.com>
20431
20432         * TextBoxBase.cs: Re-align caret after deleting a character
20433         * TextControl.cs:
20434           - DeleteChars(): Ensure that tag covers the provided position
20435           - StreamLine(): Drop reference for dropped tag
20436
20437 2005-06-29  Peter Bartok  <pbartok@novell.com> 
20438
20439         * TextControl.cs: 
20440           - Selections now work properly, anchoring at the initial location
20441             and properly extending in either direction (SetSelectionToCaret(),
20442             SetSelectionStart() and SetSelectionEnd())
20443           - No longer redraws the whole control on selection change, now
20444             calculates delta between previous and new selection and only
20445             invalidates/redraws that area
20446           - Fixed FindPos() math off-by-one errors
20447           - Changed DeleteChars() to verify the provided tag covers the
20448             provided position, selections may have a tag that doesn't cover
20449             the position if the selection is at a tag border
20450           - Fixed off-by-one errors in DeleteChars()
20451           - Added missing streamlining check in DeleteChars() to remove
20452             zero-length tags
20453           - Implemented Invalidate() method, now properly calculates exposures
20454             between two given lines/positions
20455           - Implemented SetSelection()
20456           - Obsoleted and removed FixupSelection()
20457           - Improved RecalculateDocument() logic, removing code duplication
20458
20459 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20460
20461         * LibSupport.cs: changes to match different input/output arguments.
20462
20463 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20464
20465         * LibSupport.cs: added libsupport.so init routine.
20466
20467 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
20468         
20469         * ControlBindingsCollection.cs
20470                 - Throws an exception on null datasource when adding
20471                 - Checks for duplicated bindings when adding
20472
20473 2005-06-28  Jackson Harper  <jackson@ximian.com>
20474
20475         * TreeView.cs (OnKeyDown): Support left and right properly
20476         (navigates as well as expanding and collapsing.
20477         - Add support for Multiply, this expands all the selected nodes
20478         children.
20479         - Fix some tabbing.
20480
20481 2005-06-28  Jackson Harper  <jackson@ximian.com>
20482
20483         * TreeView.cs: Implement keyboard navigation, currently supports,
20484         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
20485         support for toggling checkboxes with the space bar.
20486
20487 2005-06-28  Jackson Harper  <jackson@ximian.com>
20488
20489         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
20490         tree.
20491
20492 2005-06-28  Jackson Harper  <jackson@ximian.com>
20493
20494         * TreeView.cs: Add missing event.
20495
20496 2005-06-27  Peter Bartok  <pbartok@novell.com> 
20497
20498         * TextControl.cs:
20499           - Made line ending size configurable (now allows for counting 
20500             lineendings as \n or \r\n)
20501           - Added margin to viewport to keep caret visible on right side
20502           - Fixed translation routines for line/pos to documentpos to consider
20503             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
20504           - Fixed some line-endings to be unix style
20505           - Fixed Document.FormatText to perform it's calculations 1-based
20506           - Added descriptions for a few methods that might otherwise get 
20507             used wrong
20508           - Added NOTE section with some basic conventions to remember at 
20509             the top of the file
20510           - Major fixup for RichTextBox selection drawing:
20511             * Fixed crashes when multiple tags on a single line were selected
20512             * fixed selection box drawing not overlaying text
20513             * fixed bogus offset calculation for tags not starting at index 1
20514             * Switched behaviour from using multiple Substrings of a 
20515               StringBuilder.ToString() to using multiple 
20516               StringBuilder.ToString(start, length) statements, hoping this is
20517               faster (kept original version commented out in the code, in case
20518               original version was faster)
20519         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
20520           alignment != Left
20521         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
20522           call it as well
20523
20524 2005-06-27  Jackson Harper  <jackson@ximian.com>
20525
20526         * TabControl.cs: Move to the left and right with the arrow
20527         keys. These keys don't cycle beyond first and last like
20528         tab. Refresh all the tabs when scrolling them to the left or
20529         right.
20530
20531 2005-06-27  Jackson Harper  <jackson@ximian.com>
20532
20533         * TabControl.cs:
20534           - ToString: Added method
20535           - CreateParams: Remove TODO and comment
20536           - OnKeyDown: Cycle through bounds properly.
20537           - SelectedIndex: Scroll to the right or left if we need to
20538           display the newly selected tab.
20539
20540 2005-06-23  Jackson Harper  <jackson@ximian.com>
20541
20542         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
20543         set.
20544
20545 2005-06-23  Jackson Harper  <jackson@ximian.com>
20546
20547         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
20548         CTRL-SHIFT-TAB, and HOME, END are there any others?
20549
20550 2005-06-23  Jackson Harper  <jackson@ximian.com>
20551
20552         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
20553
20554 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
20555         
20556         * DataGridTextBoxColumn.cs: fixes and enhancements
20557         * ThemeWin32Classic.cs: fixes and enhancements
20558         * DataGridBoolColumn.cs:  fixes and enhancements
20559         * DataGridDrawingLogic.cs:  fixes and enhancements
20560         * CurrencyManager.cs: fixes and enhancements
20561         * DataGrid.cs: fixes and enhancements
20562         * DataGridColumnStyle.cs:  fixes and enhancements
20563
20564 2005-06-22  Jackson Harper  <jackson@ximian.com>
20565
20566         * TabControl.cs: Add some missing methods that just call into the
20567         base. Make the TabPageCollection's IList interface behave in the
20568         same manner as the MS implementation.
20569
20570 2005-06-22  Peter Bartok  <pbartok@novell.com> 
20571
20572         * TextControl.cs: Added sanity check
20573         * TextBoxBase.cs: 
20574           - Fixed wrapping behaviour, don't set wrap on single line controls
20575             (this fixes the breakage of colordialog introduced in an earlier
20576              checkin)
20577           - Added rudimentary support for autoscrolling right-aligned controls
20578             (still needs fixing, also, center alignment scroll is missing)
20579
20580 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
20581         
20582         * ScrollBar.cs: Fixes thumbpos on Maximum values
20583
20584 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
20585         
20586         * PropertyGridView.cs: Pass context information to UITypeEditors 
20587
20588 2005-06-21  Peter Bartok  <pbartok@novell.com> 
20589
20590         * TextBoxBase.cs:
20591           - Now calling PositionCaret with absolute space coordinates
20592           - Enabled vertical scrolling
20593           - Better tracking of scrollbar changes, tied into WidthChange
20594             event
20595           - Improved cursor tracking
20596           - Removed debug output
20597         * TextControl.cs:
20598           - PositionCaret coordinates are now works in absolute space, not 
20599             the canvas
20600           - Improved tracking of document size
20601           - Added events for width and height changes
20602
20603 2005-06-21  Peter Bartok  <pbartok@novell.com>
20604
20605         * Form.cs: Set focus to active control when form is activated
20606         * TextControl.cs: 
20607           - Added word-wrap functionality to RecalculateLine() 
20608           - Added some short function descriptions for VS.Net to aid in
20609             writing dependent controls
20610           - Added Caret property, returning the current coords of the caret
20611           - Added ViewPortWidth and ViewPortHeight properties
20612           - Added Wrap property
20613           - Added CaretMoved event
20614           - Removed some old debug code
20615           - Split() can now create soft splits
20616           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
20617           - Added method to format existing text
20618           - Fixed size/alignment calculations to use viewport
20619           - RecalculateDocument now can handle changing line-numbers while
20620             calculating lines
20621
20622         * TextBox.cs:
20623           - Added some wrap logic, we don't wrap if alignment is not left
20624           - Added casts for scrollbar var, base class switched types to
20625             also support RichTextBoxA
20626           - Implemented handling of scrollbar visibility flags
20627
20628         * TextBoxBase.cs:
20629           - Switched scrollbars type to RichTextBoxScrollBars to support
20630             RichTextBox
20631           - Added tracking of canvas width/height
20632           - Switched scrollbars to be not selectable (to keep focus on text)
20633           - Added central CalculateDocument() method to handle all redraw
20634             requirements
20635           - Added ReadOnly support
20636           - Added WordWrap support
20637           - Fixed handling of Enter key (we now treat it as a DialogKey)
20638           - Fixed caret positioning when h or v scroll is not zero
20639           - Fixed placing/generation of vertical scrollbar
20640           - Added CalculateScrollBars() method to allow updating scrollbar
20641             limits and visibility
20642           - Fixed handling of horizontal scroll
20643           - Added handling of vertical scroll
20644           - Implemented auto-'jump' when caret moves to close to a left or
20645             right border and there is text to be scrolled into view (currently
20646             there's the potential for a stack overflow, until a bug in
20647             scrollbar is fixed)
20648
20649 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
20650         
20651         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
20652
20653 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
20654
20655         * Mime.cs:
20656         - added inodes.
20657         - return application/x-zerosize for files with size zero
20658           (if no extension pattern matches).
20659         - check matches collection for strings too.
20660         - return only the first mime type if the name value
20661           collection has more than one mime type.
20662
20663 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
20664         
20665         * PropertyGrid.cs: Cleaned up some TODOs
20666         * PropertyGridView.cs: Added support for UITypeEditors
20667
20668 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
20669         
20670         * DataGrid.cs: clears cached value
20671
20672 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
20673
20674         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
20675         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
20676         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
20677         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
20678         
20679 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
20680
20681         * ThemeWin32Classic.cs: fixes colour
20682
20683 2005-06-15  Peter Bartok  <pbartok@novell.com>
20684
20685         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
20686         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
20687         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
20688         * Control.cs: Added some MWFCategory and MWFDescription attributes
20689         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
20690
20691 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
20692
20693         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
20694         usage
20695
20696 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
20697
20698         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
20699         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
20700         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
20701         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
20702         * DataGrid.cs: default datagrid settings for Default Styles, fixes
20703         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
20704
20705 2005-06-13  Jackson Harper  <jackson@ximian.com>
20706
20707         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
20708         isn't printed when the user enables dropping. (X11 does accept
20709         drops).
20710         
20711 2005-06-13  Jackson Harper  <jackson@ximian.com>
20712
20713         * TreeView.cs: Remove some TODOS.
20714
20715 2005-06-13  Jackson Harper  <jackson@ximian.com>
20716
20717         * Form.cs: Hook into the mdi framework.
20718         * MdiClient.cs: Use the base control collections add method so
20719         parents get setup correctly. Set the default back colour and dock
20720         style.
20721         * MdiChildContext.cs: New class, this bad actor handles an
20722         instance of an MDI window. Right now there is only basic
20723         support. You can drag, close, and resize windows. Minimize and
20724         Maximize are partially implemented.
20725
20726 2005-06-13  Jackson Harper  <jackson@ximian.com>
20727
20728         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
20729         freaky when both vals are negative. NOTE: There are probably other
20730         places in XplatUIX11 that this needs to be done.
20731
20732 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
20733
20734         * DataGrid.cs: implement missing methods, move KeyboardNavigation
20735         * DataGridColumnStyle.cs: fixes signature
20736
20737 2005-06-12  Jackson Harper  <jackson@ximian.com>
20738
20739         * XplatUIX11.cs: Use sizing cursors similar to the ones on
20740         windows.
20741
20742 2005-06-11  Jackson Harper  <jackson@ximian.com>
20743
20744         * StatusBarPanel.cs: Signature cleanups. Implement
20745         BeginInit/EndInit.
20746
20747 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
20748
20749         * DataGridTextBoxColumn.cs: Honors aligment
20750         * GridColumnStylesCollection.cs: Contains is case unsensitive
20751         * GridTableStylesCollection.cs: several fixes
20752         * DataGridTableStyle.cs: default column creation
20753         * DataGridDrawingLogic.cs: fixes
20754         * CurrencyManager.cs: ListName property
20755         * DataGrid.cs: multiple styles support
20756         * DataGridColumnStyle.cs: fixes
20757         
20758
20759 2005-06-10  Peter Bartok  <pbartok@novell.com>
20760
20761         * Control.cs(Select): Moved SetFocus call to avoid potential
20762           loops if controls change the active control when getting focus
20763         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
20764           the up/down buttons
20765
20766 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
20767
20768         * ImageListConverter.cs: Implemented
20769
20770 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
20771
20772         * MonthCalendar.cs: Wired in NumericUpDown control for year
20773
20774 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
20775
20776         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
20777           DoubleClick events, since they are not meant to be fired.
20778
20779 2005-06-09  Peter Bartok  <pbartok@novell.com>
20780
20781         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
20782           Jonathan's standalone controls into MWF, implemented missing
20783           events, attributes and methods; added xxxAccessible classes
20784         * AccessibleObject.cs: Made fields internal so other classes
20785           can change them if needed
20786
20787 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
20788
20789         * UpDownBase.cs: Complete implementation
20790         * NumericUpDown.cs: Complete implementation
20791         * DomainUpDown.cs: Complete implementation
20792
20793 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
20794
20795         * DataGridTextBoxColumn.cs: drawing fixes
20796         * DataGridCell.cs: fixes ToString method to match MSNet
20797         * DataGridTableStyle.cs: fixes
20798         * DataGridBoolColumn.cs: fixes, drawing
20799         * DataGridDrawingLogic.cs: fixes, new methods
20800         * DataGridTextBox.cs: Keyboard and fixes
20801         * DataGrid.cs:
20802                 - Keyboard navigation
20803                 - Scrolling fixes
20804                 - Row selection (single, multiple, deletion, etc)
20805                 - Lots of fixes
20806         
20807 2005-06-07  Jackson Harper  <jackson@ximian.com>
20808
20809         * ThemeWin32Classic.cs: Clear the background area when drawing
20810         buttons.
20811
20812 2005-06-06  Peter Bartok  <pbartok@novell.com>
20813
20814         * ImageListStreamer.cs: Fixed signature for GetData
20815         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
20816         * ComboBox.cs:
20817           - Added missing ChildAccessibleObject class
20818           - Added missing OnXXXFocus overrides, switched to using those
20819             instead of the event handler
20820         * Control.cs:
20821           - Added Parent property for ControlAccessibleObject
20822           - Fixed signatures
20823           - Fixed attributes
20824           - Added ResetBindings()
20825         * ListBindingConverter.cs: Implemented some methods
20826         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
20827         * ImageList.cs: Implemented basic handle scheme, removed TODOs
20828         * ContainerControl.cs: Fixed signature, now subscribing to the
20829           ControlRemoved event instead of overriding the handler, LAMESPEC
20830         * CurrencyManager.cs: Added missing attribute
20831         * MonthCalendar.cs: Added missing properties
20832
20833 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
20834
20835         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
20836         
20837 2005-06-06  Gaurav Vaish and Ankit Jain
20838
20839         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
20840         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
20841         
20842 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
20843
20844         * Control.cs: fixes CreateParams Width / Height.
20845
20846 2005-06-05  Peter Bartok  <pbartok@novell.com>
20847
20848         * Win32DnD.cs: Removed compilation warnings
20849
20850 2005-06-05  Peter Bartok  <pbartok@novell.com>
20851
20852         * Control.cs (CreateParams): Since we don't know if one of the
20853           properties we use is overridden, lets make sure if we fail accessing
20854           we continue with a backup plan
20855
20856 2005-06-05  Peter Bartok  <pbartok@novell.com>
20857
20858         * Win32DnD.cs:
20859           - Removed debug output
20860           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
20861             struct
20862           - Plugged resource leak
20863         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
20864           MS size
20865
20866 2005-06-05  Peter Bartok  <pbartok@novell.com>
20867
20868         * XplatUIWin32.cs: Removed DnD code
20869         * Win32DnD.cs: Implemented drop source and drop target functionality
20870
20871 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20872
20873         * UpDownBase.cs: remove duplicate addition of event, enable some code
20874         that was commented out.
20875         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
20876         Validate input when a key is pressed. It works fine now for every
20877         combination of Hexadecimal. Only missing some drawing love when sharing
20878         space with other controls.
20879
20880 2005-06-04  Peter Bartok  <pbartok@novell.com>
20881
20882         * Control.cs:
20883           - We need to pass a window for DragDrop, so enable callback events
20884           - Added DnD callback events when being a DragSource
20885         * XplatUI.cs (StartDrag): Added window handle argument
20886         * XplatUIDriver.cs (StartDrag): Added window handle argument
20887         * QueryContinueDragEventArgs: Made fields internally accessible so
20888           drivers can set them
20889         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
20890           can set them
20891
20892 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
20893
20894         * DataGridTextBoxColumn.cs: column text editing
20895         * DataGridTableStyle.cs: Respect columns styles created by the user
20896         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
20897         * DataGridBoolColumn.cs: bool column editing
20898         * DataGrid.cs: fixes to scrolling, properties, etc
20899         * DataGridTextBox.cs: handle keyboard
20900         * DataGridColumnStyle.cs: fixes
20901
20902 2005-06-02  Jackson Harper  <jackson@ximian.com>
20903
20904         * ImageListStreamer.cs: Somewhat broken implementation of
20905         GetObjectData. The RLE needs some work to match MS properly.
20906
20907 2005-06-02  Jackson Harper  <jackson@ximian.com>
20908
20909         * X11Dnd.cs: Attempting to keep at least one file in MWF
20910         monostyled.
20911
20912 2005-06-02  Peter Bartok  <pbartok@novell.com>
20913
20914         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
20915           that way
20916
20917 2005-06-02  Peter Bartok  <pbartok@novell.com>
20918
20919         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
20920         * XplatUI.cs: Added DoDragDrop() method
20921         * XplatUIDriver.cs: Added DoDragDrop() method
20922
20923 2005-06-02  Jackson Harper  <jackson@ximian.com>
20924
20925         * Splitter.cs: Implement BorderStyle.
20926
20927 2005-06-02  Jackson Harper  <jackson@ximian.com>
20928
20929         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
20930         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
20931         X11 using XDND.
20932
20933 2005-06-02  Peter Bartok  <pbartok@novell.com>
20934
20935         * DataObject.cs:
20936           - Added Data setter
20937           - Fixed broken insertion code for SetData, now also
20938             overwrites any existing entry of the same format name
20939         * Hwnd.cs: Added list of pointers that automatically gets
20940           freed when the window is disposed
20941         * XplatUI.cs: Call driver initialization method when loading
20942           a driver
20943         * Control.cs:
20944           - OnDragLeave takes EventArgs, not DragEventArgs
20945           - Added setting of WS_EX_ACCEPTFILES style when dropping is
20946             supported
20947           - Forces style update when drop state changes
20948         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
20949           not perfect since we cannot (yet) call the IDataObject.GetData()
20950           method, we keep getting 0x80004005 error, dunno why)
20951
20952 2005-06-02  Peter Bartok  <pbartok@novell.com>
20953
20954         * DragEventArgs.cs: Make fields internal so we can cache the
20955           object and re-set the fields from XplatUI
20956
20957 2005-06-02  Jackson Harper  <jackson@ximian.com>
20958
20959         * Control.cs: Add some internal methods so the DnD subsystem can
20960         raise DnD events. Also call into the driver when AllowDrop is set.
20961         * XplatUI.cs:
20962         * XplatUIDriver.cs: New method for setting whether or not a window
20963         is allowed to accept drag and drop messages.
20964                 
20965 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
20966         
20967         * ScrollBar.cs: Make sure that values sent in Scroll events
20968         are always between Maximum and Minimum.
20969
20970 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
20971
20972         * Menu.cs: Call MenuChanged when menuitem visibility has been
20973         changed.
20974         * MenuItem.cs: Rebuild menu when item is (not) visible.
20975         * MainMenu.cs: MainMenu has special MenuChanged.
20976         * Theme.cs: Caption and FrameBorderSize are not fixed.
20977         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
20978         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
20979         * XplatUIX11.cs,
20980         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
20981         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
20982
20983 2005-05-30  Jackson Harper  <jackson@ximian.com>
20984
20985         * DataFormat.cs: We can't statically initialize this stuff because
20986         it calls into the xplatui and could create a loop. So we lazy init
20987         it.
20988
20989 2005-05-28  Jackson Harper  <jackson@ximian.com>
20990
20991         * Control.cs: Proper implementation of Product(Name/Version).
20992
20993 2005-05-27  Jackson Harper  <jackson@ximian.com>
20994
20995         * DataObject.cs: Dont crash if no data is found.
20996
20997 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
20998         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
20999                 as per status page, guessing it should be set to true
21000
21001 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
21002
21003         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
21004         * DataGridTableStyle.cs: set proper formatting text, def header text
21005         * ThemeWin32Classic.cs: new themable paramaters
21006         * DataGridBoolColumn.cs: paint check box, get data, fixes
21007         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
21008         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
21009         * DataGridColumnStyle.cs: fixes
21010         * Theme.cs: new themable paramaters
21011                 
21012 2005-05-26  Peter Bartok  <pbartok@novell.com>
21013
21014         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
21015
21016 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
21017         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
21018
21019 2005-05-24  Peter Bartok  <pbartok@novell.com>
21020
21021         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
21022           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
21023           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
21024           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
21025           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
21026           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
21027           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
21028           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
21029           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
21030           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
21031           missing attributes, etc
21032         * DataGridPreferredColumnWidthTypeConverter.cs: Added
21033
21034 2005-05-24  Peter Bartok  <pbartok@novell.com>
21035
21036         * Help.cs: Added, implemented trivial functions, throws up MessageBox
21037           when user tries to get help
21038         * DataObject.cs, DataFormats.cs, LinkArea.cs,
21039           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
21040           to suppress warnings
21041         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
21042           avoid unreachable code warning
21043
21044 2005-05-20  Peter Bartok  <pbartok@novell.com>
21045
21046         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
21047
21048 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
21049
21050         * DataGridTextBoxColumn.cs: Basic painting methods
21051         * DataGridTableStyle.cs: Set table style in the column
21052         * ThemeWin32Classic.cs: Use Theme for colors
21053         * DataGridDrawingLogic.cs: Implement more drawing
21054         * DataGrid.cs: drawing, theming, enhacements, fixes
21055         * DataGridColumnStyle.cs: fixes, drawing
21056         * Theme.cs: theming for Datagrid
21057
21058 2005-05-20  Peter Bartok  <pbartok@novell.com>
21059
21060         * Cursor.cs: Implemented GetObjectData() method
21061
21062 2005-05-20  Peter Bartok  <pbartok@novell.com>
21063
21064         * Cursors.cs: Added setting of cursor name
21065         * Cursor.cs:
21066           - Implemented constructors
21067           - Implemented Draw and DrawStretched
21068           - Implemented Current property
21069           - Implemented == and != operators
21070           - Implemented Dispose()
21071           - Implemented ToString
21072           - Added missing attributes
21073         * XplatUIX11.cs:
21074           - Added missing reset for OverrideCursor when DoEvents is called
21075           - Fixed creation of cursor, logic was wrong
21076         * XplatUIWin32.cs:
21077           - Added missing reset for OverrideCursor when DoEvents is called
21078           - Fixed creation of cursor, bit arrays were swapped
21079         * Clipboard.cs: Removed obsolete MonoTODO attribute
21080
21081 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
21082
21083         * ComboBox.cs: fixes OnSelectedItemChanged
21084         * ControlBindingsCollection.cs: fixes item range check
21085
21086 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
21087
21088         * UpDownBase.cs:
21089                 - Calc preferred height properly
21090                 - Implement missing properties
21091                 
21092         * NumericUpDown.cs: Implement missing events
21093
21094 2005-05-19  Jackson Harper  <jackson@ximian.com>
21095
21096         * TabControl.cs: New method that resizes the tab pages before
21097         redrawing them. This as needed as the control is double buffered
21098         and sizing will not be recalculated unless ResizeTabPages is
21099         called.
21100         * TabPage.cs: Set base.Text instead of Text in the constructor so
21101         that UpdateOwner does not get called. Use the new Redraw method of
21102         TabControl instead of Refresh so the sizing is recalculated.
21103         * ThemeWin32Classic.cs: Draw the text for button tabs.
21104
21105 2005-05-19  Jackson Harper  <jackson@ximian.com>
21106
21107         * Control.cs: Paint control background images. Fix typo where
21108         PaintControlBackground was not getting called correctly.
21109
21110 2005-05-19  Peter Bartok  <pbartok@novell.com>
21111
21112         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
21113           I can investigate, apparently I broke FileDialog
21114
21115 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
21116
21117         * AxHost.cs: Some simple properties.
21118         * Control.cs: window must be accessible after ctor.
21119         * Form.cs: Added TransparencyKey property.
21120         * TextBoxBase.cs: Implemented Clear. Text property can be null.
21121         * XplatUIWin32.cs: SetBorderStyle implemented.
21122
21123 2005-05-18  Peter Bartok  <pbartok@novell.com>
21124
21125         * DataObject.cs: Entries are not global but particular to the
21126           DataObject, now it behaves that way
21127         * XplatUIWin32.cs: Implemented Clipboard methods
21128         * Clipboard.cs: Implemented
21129         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
21130         * XplatUIOSX.cs: Updated to final clipboard prototypes
21131         * XplatUIX11.cs: Implemented Clipboard methods
21132         * XplatUIDriver.cs: Updated to final clipboard prototypes
21133         * XplatUIStructs.cs:
21134           - Added BITMAPINFOHEADER struct
21135           - Added ClipboardFormats enum
21136         * X11Structs.cs:
21137           - Added ClipboardStruct
21138           - Added Atom enum items for clipboard types
21139           - Fixed atom types for Selection event structures
21140         * DataFormats.cs:
21141           - Added internal properties and methods for drivers to enumerate
21142             all known formats
21143           - Switched initialization method to allow drivers to assign their
21144             own IDs even for the MS predefined clipboard IDs
21145         * XplatUI.cs: Updated to final clipboard interface
21146
21147 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
21148         * PropertyGridView.cs: Fixed compiler warnings.
21149
21150 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
21151         * PropertyGrid.cs: Added some event calls
21152         * PropertyGridView.cs: Change drawing code to use double buffering
21153         * PropertyGridTextBox.cs: Changed Text property name
21154         * GridItem.cs: Added Bounds property.
21155         * GridEntry.cs: Added Bounds property.
21156
21157 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
21158
21159         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
21160         since GetType() may not return the correct type if the object is
21161         a remoting proxy.
21162
21163 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
21164
21165         * TreeNodeCollection.cs: fixes get/set item ranges
21166         
21167 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
21168
21169         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
21170                 
21171 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
21172
21173         * ComboBox.cs: Fix item range comparation
21174         * ListView.cs: Fix item range comparation
21175
21176 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
21177
21178         * FontDialog.cs:
21179           - Clear example panel when OnPaint is called
21180           - Better solution for displaying the example panel text
21181           - Select default indexes in the ListBoxes
21182
21183 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
21184
21185         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
21186
21187 2005-05-11  Peter Bartok  <pbartok@novell.com>
21188
21189         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
21190         * SelectionRangeConverter.cs: Implemented
21191         * PropertyGrid.cs: Fixed attribute value
21192         * Control.cs:
21193           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
21194           - Added Sebastien Pouliot's CAS Stack Propagation fixes
21195         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
21196           that's common to all drivers. First methods to go there are
21197           Sebastien Pouliot's CAS Stack Propagation helper methods
21198         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
21199           Sebastien Pouliot for CAS Stack Propagation
21200
21201 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
21202
21203         * OSXStructs.cs:
21204           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
21205
21206 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
21207
21208         * DataGridTextBoxColumn.cs: fixed some members
21209         * GridColumnStylesCollection.cs: indexed column is case insensitive
21210         * DataGridTableStyle.cs: fixes
21211         * ThemeWin32Classic.cs: add new theme parameter
21212         * Theme.cs: add new theme parameter
21213         * DataGridDrawingLogic.cs: Datagrid's drawing logic
21214         * DataGrid.cs: fixes, new internal properties, etc.
21215         * DataGridColumnStyle.cs: allows to set grid value
21216         *
21217
21218 2005-05-10  Peter Bartok  <pbartok@novell.com>
21219
21220         * AccessibleObject.cs:
21221           - Removed MonoTODO attribute on help, method is correct
21222           - Fixed Bounds property
21223         * AxHost.cs: Moved MonoTODO
21224         * ButtonBase.cs: Now setting AccessibleObject properties
21225         * RadioButton.cs: Setting proper AccessibleObject role
21226         * CheckBox.cs: Setting proper AccessibleObject role
21227         * ControlBindingsCollection.cs: Added properties, methods and attributes
21228         * DataFormats.cs: Fixed awkward internal API, and changed to enable
21229           userdefined DataFormats.Format items as well
21230         * ListControl.cs: Removed data_member from the public eye
21231         * OpenFileDialog.cs:
21232           - Made class sealed
21233           - Added missing attributes
21234         * SaveFileDialog.cs: Added missing attributes
21235         * ImageListStreamer.cs: Fixed code that caused warnings
21236         * LinkLabel.cs: Removed unreachable code
21237         * TreeView.cs: Fixed code that caused warnings
21238         * PropertyGridView.cs: Fixed code that caused warnings
21239         * GridColumnStylesCollection.cs: Added missing attributes
21240         * GridTableStylesCollection: Added missing attribute
21241         * PropertyManager: Added .ctor
21242         * SecurityIDType: Added
21243         * DataObject.cs: Implemented class
21244         * LinkArea.cs: Added missing attribute
21245
21246 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
21247
21248         * RadioButton.cs: call base method to allow to fire OnClick event
21249         * UpDownBase.cs: OnMouseUp call base method
21250         * CheckedListBox.cs: call base method before returning
21251         * TrackBar.cs: call base method before returning
21252         
21253
21254 2005-05-10  Peter Bartok  <pbartok@novell.com>
21255
21256         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
21257           for messages
21258
21259 2005-05-10  Peter Bartok  <pbartok@novell.com>
21260
21261         * DataFormats.cs: Implemented
21262         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
21263           XplatUIX11.cs: Added Clipboard APIs
21264         * XplatUIWin32.cs: Implemented Clipboard APIs
21265         * FolderBrowserDialog.cs: Added missing event, attributes
21266
21267 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
21268
21269         * CheckBox.cs: call base method to allow to fire OnClick event
21270
21271 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
21272
21273         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
21274
21275 2005-05-06  Peter Bartok  <pbartok@novell.com>
21276
21277         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
21278         * Screen.cs: Implemented
21279         * HelpNavigator.cs: Added
21280         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
21281           property
21282         * HelpProvider.cs: Implemented all we can do until we have a CHM
21283           help library (which means that "What's This" does work now)
21284
21285 2005-05-06  Jackson Harper  <jackson@ximian.com>
21286
21287         * XplatUIX11.cs: Fix waking up the main loop.
21288                 
21289 2005-05-05  Peter Bartok  <pbartok@novell.com>
21290
21291         * XplatUI.cs: Updated revision
21292         * Form.cs: Removed enless loop
21293         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
21294         * Label.cs (OnPaint): Added call to base.OnPaint()
21295         * ToolTip.cs: Made ToolTipWindow reusable for other controls
21296         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
21297         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
21298         * AxHost.cs: Added
21299         * ButtonBase.cs: Moved base.OnPaint() call to end of method
21300         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
21301           to ToolTip.ToolTipWindow for drawing and size methods; this allows
21302           reuse of ToolTipWindow by other controls
21303         * SizeGrip.cs: Moved base.OnPaint() call to end of method
21304         * XplatUIX11.cs: Now clipping drawing area (experimental)
21305         * PictureBox.cs: Moved base.OnPaint() call to end of method
21306         * Theme.cs: Fixed ToolTip abstracts to match new format
21307         * ErrorProvider.cs: Implemented
21308
21309 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
21310
21311         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
21312         * LinkLabel.cs:
21313                 - Adds cursors
21314                 - Handles focus
21315                 - Implements LinkBehavior
21316                 - Fixes many issues
21317
21318 2005-05-03  Jackson Harper  <jackson@ximian.com>
21319
21320         * ListView.cs: Calculate the scrollbar positioning on resize and
21321         paint, so they get put in the correct place.
21322
21323 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
21324
21325         * ColorDialogs.cs: The small color panels are now handled by
21326           SmallColorControl. This fixes drawing of the focus rectangle
21327           and adds a 3D border.
21328
21329 2005-05-03  Peter Bartok  <pbartok@novell.com>
21330
21331         * Control.cs: Modified version of Jonathan Chamber's fix for
21332           double-buffering
21333
21334 2005-05-03  Jackson Harper  <jackson@ximian.com>
21335
21336         * ListView.cs: Remove redraw variable. Control now handles whether
21337         or not a redraw needs to be done, and will only raise the paint
21338         event if redrawing is needed.
21339
21340 2005-05-03  Jackson Harper  <jackson@ximian.com>
21341
21342         * Splitter.cs: No decorations for the splitter form. Cache the
21343         hatch brush.
21344
21345 2005-05-03  Jackson Harper  <jackson@ximian.com>
21346
21347         * TreeView.cs: Use dashed lines to connect nodes. Use the
21348         ControlPaint method for drawing the focus rect instead of doing
21349         that in treeview.
21350
21351 2005-05-02  Peter Bartok  <pbartok@novell.com>
21352
21353         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
21354
21355 2005-04-29  Jackson Harper  <jackson@ximian.com>
21356
21357         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
21358         entire image buffer. Just clear the clipping rectangle.
21359
21360 2005-04-29  Jackson Harper  <jackson@ximian.com>
21361
21362         * ThemeWin32Classic.cs: Don't draw list view items that are
21363         outside the clipping rectangle.
21364
21365 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
21366
21367         * ListBox.cs: added horizontal item scroll
21368
21369 2005-04-29  Jackson Harper  <jackson@ximian.com>
21370
21371         * ThemeWin32Classic.cs: Remove some old debug code that was
21372         causing flicker with the new double buffering code.
21373
21374 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
21375
21376         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
21377         behave like combobox and comboboxlist (still not sure if this is
21378         correct though).
21379
21380 2005-04-28  Jackson Harper  <jackson@ximian.com>
21381
21382         * ThemeWin32Classic.cs: Don't fill the middle of progress
21383         bars. This fills areas outside of the clip bounds that don't need
21384         to be filled.
21385
21386 2005-04-28  Jackson Harper  <jackson@ximian.com>
21387
21388         * Control.cs: Don't expose functionality to touch the image buffers.
21389         * ProgressBar.cs:
21390         * ListView.cs: We do not need to (and no longer can) manipulate
21391         the image buffers directly. All of this is handled by Control.
21392
21393 2005-04-28  Peter Bartok  <pbartok@novell.com>
21394
21395         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
21396           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
21397           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
21398
21399 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
21400
21401         * Combobox:
21402                 - Adjust control's height for non-simple comboboxes (bug fix)
21403                 - Remove dead code
21404         * MenuAPI.cs: remove unused var
21405         * ScrollBar.cs: remove unsed var
21406                  
21407         * ListBox.cs: unselect items when clearing
21408
21409 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
21410
21411         * ListControl.cs: honors OnPositionChanged and default Selected Item
21412         * ListBox.cs: unselect items when clearing
21413
21414 2005-04-27  Jackson Harper  <jackson@ximian.com>
21415
21416         * X11Keyboard.cs: Initialize a default keyboard and give a warning
21417         if a "correct" keyboard is not found. This will make us not crash,
21418         but might give some users bad keyboard layouts...seems to be the
21419         same thing rewind does.
21420
21421 2005-04-27  Jackson Harper  <jackson@ximian.com>
21422
21423         * BindingManagerBase.cs: Attach the current/position changed
21424         handlers to their respective events.
21425
21426 2005-04-27  Jackson Harper  <jackson@ximian.com>
21427
21428         * Control.cs: Make sure that the first WM_PAINT does a full draw,
21429         not just a blit.
21430         * ThemeWin32Classic.cs: Don't fill the background for picture
21431         boxes. This could overright user drawing.
21432         * ComboBox.cs: Just fill the clipping rect not the entire client
21433         rect when drawing the background. This prevents pieces of the
21434         image buffer from getting overwritten and is theoretically faster.
21435
21436 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
21437
21438         * ComboBox.cs: Databinding support fixes, fire missing events
21439         * ListControl.cs: implement missing methods and properties, fixes
21440         * ThemeWin32Classic.cs: Databiding support on Drawing
21441         * CheckedListBox.cs: Databinding support fixes, fire missing events
21442         * ListBox.cs: Databinding support fixes, fire missing events
21443         
21444 2005-04-25  Peter Bartok  <pbartok@novell.com>
21445
21446         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
21447
21448 2005-04-25  Jackson Harper  <jackson@ximian.com>
21449
21450         * TreeView.cs: Use the horizontal scrollbars height not width when
21451         determining how much of the client area is available.
21452
21453 2005-04-25  Jackson Harper  <jackson@ximian.com>
21454
21455         * Control.cs: Double buffering is handled differently now. As per
21456         the spec, the extra buffer is created in the WM_PAINT message and
21457         passed down to the control's drawing code.
21458         * GroupBox.cs:
21459         * Label.cs:
21460         * CheckBox.cs:
21461         * ProgressBar.cs:
21462         * RadioButton.cs:
21463         * ColorDialog.cs:
21464         * ComboBox.cs:
21465         * PropertyGridView.cs:
21466         * UpDownBase.cs:
21467         * MessageBox.cs:
21468         * MenuAPI.cs:
21469         * ListView.cs:
21470         * ButtonBase.cs:
21471         * SizeGrip.cs:
21472         * ScrollBar.cs:
21473         * ListBox.cs:
21474         * TrackBar.cs:
21475         * ToolBar.cs:
21476         * PictureBox.cs:
21477         * DateTimePicker.cs:
21478         * StatusBar.cs:
21479         * TreeView.cs: Update to new double buffering system.
21480         * MonthCalendar.cs: Uncomment block, as Capture is now
21481         working. Update to new double buffering
21482         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
21483         * PaintEventArgs.cs: New internal method allows us to set the
21484         graphics object. This is used for double buffering.
21485         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
21486         rectangle. The internal paint_area var has been removed from
21487         StatusBar. The clipping rect should be used instead.
21488         * Theme.cs: Give the PictureBox drawing method a clipping rect.
21489         * TabPage.cs: The RefreshTabs method was removed, so just call the
21490         tab controls Refresh method now.
21491         * TabControl.cs: Update to new double buffering. Make sure the
21492         handle is created before sizing the tab pages, otherwise we will
21493         get stuck in a loop.
21494
21495 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
21496
21497         * LinkLabel.cs: Fix typo, bug #74719; patch
21498           from Borja Sanchez Zamorano
21499
21500 2005-04-22  Jackson Harper  <jackson@ximian.com>
21501
21502         * TreeNode.cs: Implement Handle stuff.
21503         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
21504
21505 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
21506
21507         * DataGridTextBoxColumn.cs: call base constructors, fixes
21508         * GridColumnStylesCollection.cs: missing events, methods, and functionality
21509         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
21510         * DataGridTableStyle.cs: implements create default column styles
21511         * DataGridBoolColumn.cs: which types can handle
21512         * DataGrid.cs: missing methods, fixes, new functionality
21513         * DataGridColumnStyle.cs: fixes
21514
21515 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
21516         * FolderBrowserDialog.cs:
21517         - Use a thread to fill the TreeView
21518         - Adjusted some sizes
21519
21520 2005-04-19  Peter Bartok  <pbartok@novell.com>
21521
21522         * LinkLabel.cs: (Re-)create the pieces when setting the Text
21523           property. Fixes #74360.
21524
21525 2005-04-19  Jackson Harper  <jackson@ximian.com>
21526
21527         * XEventQueue.cs: Lock when getting the lockqueue size.
21528         * PictureBox.cs: Call base OnPaint
21529         
21530 2005-04-19  Peter Bartok  <pbartok@novell.com>
21531
21532         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
21533           messages were no longer being processed (this broke BeginInvoke)
21534
21535           
21536 2005-04-18  Jackson Harper  <jackson@ximian.com>
21537
21538         * TreeView.cs: buglet that caused node images to get drawn
21539         regardless of whether or not they were in the clipping rectangle.
21540
21541 2005-04-18  Jackson Harper  <jackson@ximian.com>
21542
21543         * CurrencyManager.cs: There are four rules for GetItemProperties:
21544         - If the type is an array use the element type of the array
21545         - If the type is a typed list, use the type
21546         - If the list contains an Item property that is not an object, use
21547         that property
21548         - use the first element of the list if there are any elements in
21549         the list.
21550         
21551 2005-04-17  Jackson Harper  <jackson@ximian.oom>
21552
21553         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
21554         click. This handles offsets for scrolling properly and reduces
21555         memory. Also fixed GetNode to not offset now that TopNode works
21556         properly.
21557         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
21558         
21559 2005-04-17  Jackson Harper  <jackson@ximian.com>
21560
21561         * CursorConverter.cs: Initial implementation.
21562
21563 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
21564
21565         * ListControl.cs: work towards complex data binding support on ListControl
21566         * CurrencyManager.cs: work towards complex data binding support on ListControl
21567         * ListBox.cs: work towards complex data binding support on ListControl
21568
21569
21570 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
21571
21572         * GridTableStylesCollection.cs: fixes name and constructor
21573         * DataGridTableStyle.cs: fixes
21574         * DataGridBoolColumn.cs: fixes names and constructors
21575         * DataGrid.cs: define methods and properties. Some init implementations
21576         * DataGridCell.cs: define methods and properties. Some init implementations
21577         * GridTablesFactory.cs: Define methods and properties
21578
21579 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
21580
21581         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
21582         graphics port changes.  We still want the coordinates in global screen
21583         coordinates.
21584
21585 2005-04-14  Jackson Harper  <jackson@ximian.com>
21586
21587         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
21588         check plus minus or checkbox clicks unless those features are enabled.
21589
21590 2005-04-14  Jackson Harper  <jackson@ximian.com>
21591
21592         * TreeView.cs: Add methods for setting the top and bottom visible
21593         nodes. TreeNode::EnsureVisible uses these methods.
21594         * TreeNode.cs: Implement EnsureVisible
21595
21596 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
21597
21598         * Form.cs: Pospone menu assignation if the window has not been created yet
21599         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
21600         size and position
21601
21602 2005-04-12  Jackson Harper  <jackson@ximian.com>
21603
21604         * TreeView.cs: Set the TopNode properly when scrolling
21605         occurs. This has the added benifit of reducing the amount of
21606         walking that needs to be done when drawing. Also removed an old
21607         misleading TODO.
21608         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
21609         
21610 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
21611
21612         * Timer.cs: fixes interval setting when the timer is already enabled
21613         
21614 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
21615
21616         * FolderBrowserDialog.cs: First approach
21617
21618 2005-04-09  Peter Bartok  <pbartok@novell.com>
21619
21620         * FolderBrowserDialog: Added
21621
21622 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
21623
21624         * LinkLabel.cs: move drawing code into the theme
21625         * ThemeWin32Classic.cs: drawing code and painting background bugfix
21626         * Theme.cs: define DrawLinkLabel method
21627
21628 2005-04-05  Jackson Harper  <jackson@ximian.com>
21629
21630         * BindingContext.cs: Use weak references so these bad actors don't
21631         stay alive longer then they need to.
21632
21633 2005-04-05  Jackson Harper  <jackson@ximian.com>
21634
21635         * ListControl.cs: Basic implementation of complex databinding.
21636         * ComboBox.cs:
21637         * ListBox.cs: Add calls to ListControl databinding methods.
21638
21639 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
21640
21641         * FileDialog.cs:
21642           - Don't change PopupButtonState to Normal when the
21643             PopupButton gets pressed several times.
21644           - Renamed ButtonPanel to PopupButtonPanel
21645
21646 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
21647
21648         * ColorDialog.cs: Use cached objects instead of creating them
21649         * LinkLabel.cs: Use cached objects instead of creating them
21650         * Splitter.cs: Use cached objects instead of creating them
21651         * FontDialog.cs: Use cached objects instead of creating them
21652         * PropertyGridView.cs: Use cached objects instead of creating them
21653         * MessageBox.cs: Use cached objects instead of creating them
21654         * FileDialog.cs: Use cached objects instead of creating them
21655         * ThemeWin32Classic.cs: Use cached objects instead of creating them
21656         * TreeView.cs: Use cached objects instead of creating them
21657         
21658 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
21659
21660         * Control.cs: use Equals to compare the font since no == op
21661         * ScrollBar.cs: use Equals to compare the font since no == op
21662
21663 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
21664
21665         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
21666
21667 2005-04-01  Jackson Harper  <jackson@ximian.com>
21668
21669         * Binding.cs: Implement IsBinding.
21670         * BindingManagerBase.cs:
21671         * PropertyManager.cs:
21672         * CurrencyManager.cs: Add IsSuspended property.
21673
21674 2005-04-01  Jackson Harper  <jackson@ximian.com>
21675
21676         * Binding.cs: Had some IsAssignableFrom calls backwards.
21677
21678 2005-04-01  Jackson Harper  <jackson@ximian.com>
21679
21680         * Binding.cs: Handle null data members when pulling data.
21681         * PropertyManager.cs: Handle the data member being a property that
21682         does not exist.
21683
21684 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
21685
21686         * DataGridTextBoxColumn.cs: fixes signature
21687         * DataGrid.cs: calls right constructor
21688
21689 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
21690
21691         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
21692         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
21693         * GridTableStylesCollection.cs: implements GridTableStylesCollection
21694         * DataGridTableStyle.cs: implements DataGridTableStyle
21695         * DataGridBoolColumn.cs: implements DataGridBoolColumn
21696         * DataGridTextBox.cs: implements DataGridTextBox
21697         * DataGridColumnStyle.cs: implements DataGridColumnStyle
21698
21699 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
21700
21701         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
21702
21703 2005-03-29  Peter Bartok  <pbartok@novell.com>
21704
21705         * Application.cs:
21706           - Properly implemented CompanyName property
21707           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
21708             returns a path that includes CompanyName, ProductName and
21709             Version (fixes bug #70330)
21710
21711 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
21712
21713         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
21714           fixes bug #72588.
21715
21716 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
21717
21718         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
21719         
21720           - Added ReadOnly CheckBox
21721           - Further refactoring: moved some code from Open-/SaveFileDialog
21722             to FileDialog
21723
21724 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
21725
21726         * OpenFileDialog.cs: Fixed CheckFileExists
21727         * FileDialog.cs:
21728           Moved FileView and DirComboBox outside FileDialog class.
21729           They can now be used outside FileDialog
21730
21731 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
21732
21733         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
21734         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
21735
21736 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
21737
21738         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
21739           - Added missing CreatePrompt property in SaveDialog
21740           - Overall SaveDialog handling should be better now
21741           - Added non standard ShowHiddenFiles property
21742           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
21743           - Added InitialDirectory and RestoreDirectory support
21744
21745 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
21746
21747         * FileDialog.cs: Made dirComboBox usable
21748
21749 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
21750
21751         * FileDialog.cs: Added Filter support (case sensitiv)
21752
21753 2005-03-24  Jackson Harper  <jackson@ximian.com>
21754
21755         * TabControl.cs: Need a couple more pixels for the lines.
21756
21757 2005-03-23  Jackson Harper  <jackson@ximian.com>
21758
21759         * TabControl.cs: Give the tab page focus when it is selected.
21760
21761 2005-03-23  Jackson Harper  <jackson@ximian.com>
21762
21763         * TabControl.cs: Account for the drawing of tabs borders when
21764         invalidating. If the slider was clicked dont do click detection on
21765         the tabs.
21766
21767 2005-03-23  Jackson Harper  <jackson@ximian.com>
21768
21769         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
21770
21771 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
21772
21773         * CategoryGridEntry.cs: Added
21774         * GridItem.cs: Added helper properties
21775         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
21776         * GridEntry.cs: Updated code for collection
21777         * PropertyGrid.cs: Cleaned up some formatting
21778         * PropertyGridView.cs: Added drop down functionality for enums.
21779         * GridItemCollection.cs: Added enumerator logic
21780         * PropertyGridEntry.cs: Added
21781
21782 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
21783
21784         * FileDialog.cs:
21785           - Removed unnecessary commented code
21786           - Fixed handling for entering the filename manually in the combobox
21787
21788 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
21789
21790         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
21791
21792 2005-03-18  Peter Bartok  <pbartok@novell.com>
21793
21794         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
21795           them being touching the border
21796
21797 2005-03-18  Peter Bartok  <pbartok@novell.com>
21798
21799         * TextControl.cs: Quick hack to center text better
21800
21801 2005-03-18  Peter Bartok  <pbartok@novell.com>
21802
21803         * ControlPaint.cs:
21804           - Don't throw NotImplemented exceptions, just print a notice once
21805             instead (requested by Miguel). This makes running existing SWF
21806             apps a bit easier
21807         * Control.cs:
21808           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
21809           - Added context menu trigger on right click
21810         * Panel.cs: Trigger invalidate on resize
21811         * StatusBar.cs:
21812           - Removed old double-buffer drawing
21813           - Added ResizeRedraw style to force proper update of statusbar
21814         * ListView.cs:
21815           - Removed debug output
21816         * ThemeWin32Classic.cs:
21817           - Fixed drawing of status bar, now draws Text property if there
21818             are no defined panels
21819
21820 2005-03-18  Jackson Harper  <jackson@ximian.com>
21821
21822         * ImageList.cs: When the image stream is set pull all the images
21823         from it.
21824         * ImageListStreamer.cs: Implement reading image list streams.
21825
21826 2005-03-18  Peter Bartok  <pbartok@novell.com>
21827
21828         * ThemeWin32Classic.cs (DrawPictureBox):
21829           - Fixed calculations for centered drawing
21830           - Fixed drawing for normal mode, not scaling the image on normal
21831
21832 2005-03-18  Peter Bartok  <pbartok@novell.com>
21833
21834         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
21835           textbox
21836         * FileDialog.cs:
21837           - Made Open/Save button the accept button for FileDialog
21838           - Tied the cancel button to the IButtonControl cancel button
21839           - Save/Open now properly builds the pathname
21840           - Now handles user-entered text
21841           - Preventing crash on right-click if no item is selected
21842           - Fixed Text property, now uses contents of textbox
21843           - Fixed SelectedText property, now just returns the text part that
21844             is selected in the text box
21845
21846 2005-03-18  Jackson Harper  <jackson@ximian.com>
21847
21848         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
21849         rect, make sure to de-adjust the interior rect after drawing the
21850         tab text.
21851
21852 2005-03-18  Peter Bartok  <pbartok@novell.com>
21853
21854         * MenuAPI.cs: Remove menu *before* executing selected action to
21855           prevent the menu from 'hanging around'
21856           
21857 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
21858
21859         * XplatUIOSX.cs: Implemented WorkingArea property
21860
21861 2005-03-17  Peter Bartok  <pbartok@novell.com>
21862
21863         * XplatUIX11.cs: Fixed menu coord calculations
21864         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
21865           for calculating offsets
21866
21867 2005-03-17  Peter Bartok  <pbartok@novell.com>
21868
21869         * Hwnd.cs: Do not consider menu presence for default client
21870           rectangle location/size
21871         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
21872           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
21873           translation functions
21874         * FileDialog.cs: Fixed (what I presume is a) typo
21875
21876 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
21877
21878         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
21879           X access (avoids X-Async errors)
21880
21881 2005-03-16  Jackson Harper  <jackson@ximian.com>
21882
21883         * TabControl.cs: Raise the SelectedIndexChanged event.
21884
21885 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
21886
21887         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
21888           - Removed vertical ToolBar and replaced it with a custom panel
21889             (desktop and home button already work)
21890           - Added Help button (some controls get resized or relocated then)
21891           - Draw correct text depending on Open or Save.
21892           - Fixed some typos...
21893
21894 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
21895
21896         * ScrollBar.cs:
21897           - Only change Maximum and Minimum when need it (bug fix)
21898
21899 2005-03-15  Peter Bartok  <pbartok@novell.com>
21900
21901         * Form.cs: Use Handle for icon, to trigger creation if
21902           the window does not yet exist
21903         * Control.cs:
21904           - CanSelect: Slight performance improvement
21905           - Focus(): Preventing possible recursion
21906           - Invalidate(): Removed ControlStyle based clear flag setting
21907           - WM_PAINT: fixed logic for calling OnPaintBackground
21908           - WM_ERASEBKGND: Fixed logic, added call to new driver method
21909             EraseWindowBackground if the control doesn't paint background
21910         * XplatUIWin32.cs:
21911           - Moved EraseWindowBackground() method to internal methods
21912           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
21913             is sent via SendMessage on BeginPaint call on Win32
21914         * XplatUIX11.cs:
21915           - Added EraseWindowBackground() method
21916           - No longer sends WM_ERASEBKGND on .Expose, but on call to
21917             PaintEventStart, which more closely matches Win32 behaviour
21918           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
21919           - Fixed SetFocus() to properly deal with client and whole windows
21920         * Hwnd.cs: Added ErasePending property
21921         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
21922         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
21923
21924 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
21925
21926         * XplatUIOSX.cs:
21927           - Fix hard loop when timers exist.
21928           - Fix bugs with middle and right click for 3 button mice.
21929
21930 2005-03-11  Peter Bartok  <pbartok@novell.com>
21931
21932         * XplatUIX11.cs:
21933           - get_WorkingArea: Need to call X directly, GetWindowPos only
21934             returns cached data now
21935           - Added sanity check to GetWindowPos hwnd usage
21936
21937 2005-03-11  Jackson Harper  <jackson@ximian.com>
21938
21939         * BindingManagerBase.cs: This method isn't used anymore as
21940         PullData now updates the data in the control.
21941
21942 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
21943
21944         * Form.cs: fixes menu drawing on X11
21945         * MenuAPI.cs:  fixes menu drawing on X11
21946
21947 2005-03-11  Peter Bartok  <pbartok@novell.com>
21948
21949         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
21950           from Jonathan Gilbert; should fix bug #73606
21951         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
21952           in Screen coordinates. Thanks, Jordi.
21953         * Form.cs: Added missing attribute
21954
21955 2005-03-11  Peter Bartok  <pbartok@novell.com>
21956
21957         * Form.cs:
21958           - Rudimentary Mdi support
21959           - Removed outdated FormParent code
21960           - Implemented lots of missing properties and methods, still missing
21961             transparency support
21962           - Added missing attributes
21963           - Implemented support for MaximumBounds
21964           - Added firing of various events
21965         * XplatUI.cs: Added SetIcon() method
21966         * XplatUIDriver.cs: Added SetIcon() abstract
21967         * XplatUIOSX.cs: Stubbed out SetIcon() method
21968         * XplatUIX11.cs:
21969           - Implemented SetIcon() support
21970           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
21971           - Switched to unix line endings
21972         * XplatUIWin32.cs:
21973           - Made POINT internal so for can access it as part of MINMAX
21974           - Implemented SetIcon() support
21975           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
21976             native Mdi support again, might have to go managed)
21977         * Control.cs: Now fires the StyleChanged event
21978         * MdiClient.cs: Added; still mostly empty
21979
21980 2005-03-10  Peter Bartok  <pbartok@novell.com>
21981
21982         * SaveFileDialog.cs: Added emtpy file
21983
21984 2005-03-08  Peter Bartok  <pbartok@novell.com>
21985
21986         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
21987           in turn triggers OnCreateContro) when creating a handle for the
21988           first time.
21989         * TextControl.cs: Fixed endless loop in certain cases when
21990           replacing the current selection
21991
21992 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
21993
21994         * ScrollBar.cs:
21995           - Honors NewValue changes in Scroll events allowing apps to change it
21996           - Adds First and Last Scroll events
21997           - Fixes Thumb events
21998
21999 2005-03-07  Peter Bartok  <pbartok@novell.com>
22000
22001         * Hwnd.cs: Added DefaultClientRectangle property
22002         * XplatUI.cs: Now using the X11 driver Where() method, which provides
22003           more detailed debug information
22004         * XplatUIX11.cs:
22005           - Fixed size-change feedback loop, where we would pull an old size
22006             off the queue and mistakenly change our window's size to an
22007             earlier value
22008           - Now compressing ConfigureNotify events, to reduce looping and
22009             redraw issues
22010         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
22011           is called
22012
22013 2005-03-07  Jackson Harper  <jackson@ximian.com>
22014
22015         * Binding.cs: Push data pushes from data -> property. Check if the
22016         property is readonly when attempting to set it.
22017
22018 2005-03-07  Jackson Harper  <jackson@ximian.com>
22019
22020         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
22021         instead of IsSubclassOf. Pulling data now sets the value on the
22022         control.
22023         * PropertyManager.cs:
22024         * CurrencyManager.cs: Just need to pull data when updating now,
22025         because PullData will set the value on the control.
22026
22027 2005-03-04  Jackson Harper  <jackson@ximian.com>
22028
22029         * Binding.cs: Implement data type parsing and converting on pulled
22030         data. TODO: Are there more ways the data can be converted?
22031
22032 2005-03-04  Jackson Harper  <jackson@ximian.com>
22033
22034         * Binding.cs: Support <Property>IsNull checks. Also bind to the
22035         controls Validating method so we can repull the data when the
22036         control loses focus.
22037
22038 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
22039
22040         * ColumnHeader.cs:
22041           - Fixes null string format
22042           
22043         * ListView.cs:
22044           - Adds enum type checks
22045           - Fixes redrawing and recalc need after changing some properties
22046           - Fixes on focus_item set after the event
22047           - Fixes adding columns after the control has been created
22048           
22049         * ThemeWin32Classic.cs:
22050           - Fixes CheckBox focus rectangle
22051           - Fixes ColumnHeader drawing
22052
22053
22054 2005-03-03  Jackson Harper  <jackson@ximian.com>
22055
22056         * Binding.cs: Bind to <Property>Changed events so we can detect
22057         when properties are changed and update the data.
22058
22059 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
22060
22061         * ImageList.cs:
22062           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
22063           - Fixes ImageList constructor with ImageList container
22064           - Fixes image scaling (wrong parameters at DrawImage)
22065
22066 2005-02-02  Jackson Harper  <jackson@ximian.com>
22067
22068         * Binding.cs: Make property searches case-insensitive. Eliminate
22069         some duplicated code.
22070
22071 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
22072
22073         * ComboBox.cs:
22074                 - Handle focus event
22075                 - Fix scrollbar events
22076                 - Discard highlighted item if remove it
22077                 - Fixes SelectedItem with strings
22078
22079 2005-03-01  Peter Bartok  <pbartok@novell.com>
22080
22081         * Control.cs:
22082           - Fixed Visible property, now follows (once again) parent chain
22083             to return false if any control in the chain is visible=false
22084           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
22085           - Fixed several places where is_visible instead of Visible was used
22086           - Implemented FIXME related to focus selection when setting focused
22087             control to be invisible
22088
22089         * XplatUIWin32.cs: Now using proper method to find out if window is
22090           visible. Thanks to Jordi for pointing it out
22091
22092 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
22093
22094         * ComboBox.cs: show/hide scrollbar instead of creating it
22095
22096 2005-02-27  Jackson Harper  <jackson@ximian.com>
22097
22098         * CurrencyManager.cs: Add PositionChanged stuff.
22099
22100 2005-02-27  Peter Bartok  <pbartok@novell.com>
22101
22102         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
22103         * XplatUIOSX.cs: Added GetMenuOrigin() stub
22104         * XplatUIWin32.cs: Implemented GetMenuOrigin()
22105         * XplatUIX11.cs:
22106           - Implemented GetMenuDC()
22107           - Implemented GetMenuOrigin()
22108           - Implemented ReleaseMenuDC()
22109           - Implemented generation of WM_NCPAINT message
22110           - Implemented generation and handling of WM_NCCALCSIZE message
22111         * Form.cs: Added debug helper message for Jordi's menu work
22112         * Hwnd.cs:
22113           - Modified ClientRect property; added setter, fixed getter to handle
22114             setting of ClientRect
22115           - Added MenuOrigin property
22116
22117 2005-02-26  Peter Bartok  <pbartok@novell.com>
22118
22119         * XplatUIX11.cs:
22120           - Destroys the caret if a window that's being destroyed contains it
22121           - Ignores expose events coming from the X11 queue for windows that
22122             already are destroyed
22123           - Now uses the proper variable for handling DestroyNotify, before we
22124             marked the wrong window as destroyed
22125           - Improved/added some debug output
22126
22127 2005-02-26  Peter Bartok  <pbartok@novell.com>
22128
22129         * X11Keyboard.cs: Fixes to work on 64bit systems
22130
22131 2005-02-26  Peter Bartok  <pbartok@novell.com>
22132
22133         * Control.cs:
22134           - Now calling OnHandleDestroyed from DestroyHandle()
22135             instead of Dispose()
22136           - Removed bogus call to controls.Remove() from DestroyHandle()
22137
22138 2005-02-26  Peter Bartok  <pbartok@novell.com>
22139
22140         * Control.cs: Properly destroy child windows when our handle is
22141           destroyed
22142
22143 2005-02-25  Peter Bartok  <pbartok@novell.com>
22144
22145         * XplatUI.cs:
22146           - Added 'DriverDebug' define to allow tracing XplatUI API calls
22147           - Alphabetized Static Methods and Subclasses
22148
22149         * XplatUIX11.cs:
22150           - Added XException class to allow custom handling of X11 exceptions
22151           - Created custom X11 error handler, tied into XException class
22152           - Added support for MONO_XEXCEPTIONS env var to allow the user
22153             to either throw an exception on X errors or continue running
22154             after displaying the error
22155           - Added handling of DestroyNotify message
22156           - Added handler for CreateNotify message (still disabled)
22157           - Improved (tried to at least) Where method to provide file and lineno
22158         * X11Structs.cs:
22159           - Added XErrorHandler delegate
22160           - Added XRequest enumeration (to suppor translation of errors)
22161
22162 2005-02-25  Jackson Harper  <jackson@ximian.com>
22163
22164         * PropertyManager.cs: Implement editing features
22165         * CurrencyManager.cs:
22166         * Binding.cs: First attempt at UpdateIsBinding
22167         * BindingManagerBase.cs: Call UpdateIsBinding before
22168         pushing/pulling data.
22169
22170 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
22171
22172         * MenuAPI.cs: Respect disabled items
22173         * ThemeWin32Classic.cs
22174                 - Caches ImageAttributes creation for DrawImageDisabled
22175                 - Fixes vertical menu line drawing
22176                 - Draws disabled arrows in disable menu items
22177
22178 2005-02-24  Peter Bartok  <pbartok@novell.com>
22179
22180         * Hwnd.cs:
22181           - Added UserData property to allow associating arbitrary objects
22182             with the handle
22183           - Fixed leak; now removing Hwnd references from static windows array
22184         * XplatUIWin32.cs:
22185           - Fixed Graphics leak in PaintEventEnd
22186           - Removed usage of HandleData, switched over to Hwnd class
22187         * HandleData.cs: Removed, obsoleted by Hwnd.cs
22188
22189 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
22190
22191         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
22192         * ScrollBar.cs: Fixes bug
22193         * TrackBar.cs: removes death code, clipping, mimize refreshes,
22194          keyboard navigation enhancements
22195
22196 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
22197
22198         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
22199         * GroupBox.cs: Add control styles
22200         * Label.cs: Add control styles
22201         * UpDownBase.cs: Add control styles
22202         * ListBox.cs: Add control styles
22203         * XplatUIWin32.cs: Fixes wrong parameter order
22204
22205
22206 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
22207
22208         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
22209
22210 2005-02-23  Jackson Harper  <jackson@ximian.com>
22211
22212         * PropertyManager.cs: Implement property binding. This doesn't
22213         seem to work yet though as (I think) there are some bugs in
22214         System.ComponentModel.PropertyDescriptor.
22215         * BindingContext.cs: Use new PropertyManager constructor.
22216
22217 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
22218
22219         * ProgressBar.cs: use clip region in ProgressBar
22220         * ThemeWin32Classic.cs: use clip region in ProgressBar
22221
22222 2004-02-22  Jackson Harper  <jackson@ximian.com>
22223
22224         * BindingsCollection.cs: Remove some debug code.
22225
22226 2005-02-22  Jackson Harper  <jackson@ximian.com>
22227
22228         * BindingContext.cs:
22229         * ControlBindingsCollection.cs:
22230         * CurrencyManager.cs:
22231         * Binding.cs:
22232         * BindingManagerBase.cs: Initial implementation
22233         * BindingsCollection.cs: Add an internal contains method that the
22234         BindingManagerBase uses to ensure bindings aren't added twice to
22235         the collection.
22236         * PropertyManager.cs: Stubbed out.
22237         * Control.cs:
22238         * ContainerControl.cs: Hook up databinding
22239         
22240 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
22241
22242         * XplatUIOSX.cs:
22243           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
22244           Fixed Invalidate/Update chain.
22245           Fixed tons of other minor bugs (this is almost a complete rewrite).
22246
22247 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
22248
22249         * ComboBox.cs: do subcontrol creation when the control is created
22250
22251 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
22252
22253         * Label.cs: fixes image drawing (image and imagelist)
22254         * ThemeWin32Classic.cs: cache brushes
22255         
22256 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
22257
22258         * Form.cs: Move menu drawing code to Theme class
22259         * ComboBox.cs: Move ComboBox drawing code to Theme class
22260         * MenuItem.cs: Move menu drawing code to Theme class
22261         * MenuAPI.cs: Move menu drawing code to Theme class
22262         * ThemeWin32Classic.cs: New methods
22263         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
22264         * ListBox.cs: Move Listbox drawing code to Theme class
22265         * Theme.cs: New methods
22266
22267 2005-02-20  Peter Bartok  <pbartok@novell.com>
22268
22269         * Control.cs:
22270           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
22271             only process mnemonics on those)
22272           - Fixed event sequence for key handling; first calling
22273             ProcessKeyEventArgs now
22274         * TextBoxBase.cs:
22275           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
22276             for processing non-character keys
22277           - Fixed WM_CHAR to generate proper event sequence before processing
22278         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
22279           generation
22280
22281 2005-02-19  Peter Bartok  <pbartok@novell.com>
22282
22283         * UserControl.cs: Added TextChanged event; added attributes
22284         * SizeGrip.cs: Implemented resizing and optional display of grip
22285         * Form.cs: Fixed attribute
22286         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
22287           Changed meaning of ScrollWindow bool argument; instead of the
22288           clear attribute (which will be true usually anyway), it gives the
22289           option of moving child controls as well.
22290         * XplatUIX11.cs:
22291           - Changed to match new ScrollWindow argument
22292           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
22293             now handles the implicit parent window a WM puts around us
22294         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
22295           to work)
22296         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
22297         * TreeView.cs: Adjusted to new ScrollWindow arguments
22298
22299 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
22300
22301         * Form.cs: Menu integration with non-client area
22302         * MenuItem.cs: Menu integration with non-client area
22303         * MenuAPI.cs: Menu integration with non-client area
22304
22305 2005-02-18  Peter Bartok  <pbartok@novell.com>
22306
22307         * MethodInvoker.cs: Added
22308         * MdiLayout.cs: Added
22309         * SendKeys.cs: Started implementation
22310         * ErrorIconAlignment.cs: Added
22311
22312 2005-02-18  Peter Bartok  <pbartok@novell.com>
22313
22314         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
22315         * Form.cs: Added handling for Menu-related Non-client messages
22316
22317 2005-02-17  Peter Bartok  <pbartok@novell.com>
22318
22319         * UpDownBase.cs: Fixed typo, compilation errors
22320         * DomainUpDown.cs: Fixed attribute value
22321
22322 2005-02-16  Miguel de Icaza  <miguel@novell.com>
22323
22324         * UpDownBase.cs: Attach entry events.
22325         Propagate events.
22326         Add ForeColor property, Focused, InterceptArrowKeys (interception
22327         does not work yet).
22328
22329 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
22330
22331         * Form.cs:
22332                 - Redraw non client are on Setmenu
22333                 - Calc proper menu starting point
22334
22335 2005-02-17  Peter Bartok  <pbartok@novell.com>
22336
22337         * Application.cs: Fixed message_filter check
22338
22339 2005-02-17  Peter Bartok  <pbartok@novell.com>
22340
22341         * Application.cs: Now calls registered message filters
22342         * DockStyle.cs: Fixed attribute
22343         * Form.cs: Fixed attribute
22344         * Menu.cs: Fixed attribute
22345         * ToolTip.cs: Fixed attribute
22346         * TreeNode.cs: Added missing attributes and arranged in regions
22347         * PropertyGrid.cs: Fixed signatures
22348         * TreeNodeCollection.cs: Added attributes
22349         * Splitter.cs: Added missing attributes; arranged into regions
22350         * TabPage.cs: Added missing attributes; arranged into regions
22351         * TextBoxBase.cs: Added missing attributes
22352         * TextBox.cs: Added missing attributes
22353         * ArrangeDirection.cs: Added missing attributes
22354         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
22355         * ToolBarButton.cs: Fixed attributes
22356         * AnchorStyles.cs: Fixed attribute
22357         * TrackBar.cs: Fixed attributes
22358         * TabControl.cs: Added missing attributes and arranged into regions
22359         * ToolBar.cs: Fixed attribute
22360         * StatusBar.cs: Fixed signature, organized into regions and added
22361           attributes
22362         * StatusBarPanel.cs: Fixed attributes
22363         * ContentsResizedEventArgs.cs: Implemented
22364         * ContentsResizedEventHandler.cs: Implemented
22365         * DateBoldEventArgs.cs: Implemented
22366         * DateBoldEventHandler.cs: Implemented
22367         * UpDownEventArgs.cs: Implemented
22368         * UpDownEventHandler.cs: Implemented
22369         
22370 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
22371
22372         * Form.cs: first Menu NC refactoring
22373         * MenuAPI.cs: first Menu NC refactoring
22374         
22375 2005-02-16  Peter Bartok  <pbartok@novell.com>
22376
22377         * ImeMode.cs: Added missing attributes
22378         * Menu.cs: Fixed attribute
22379         * GroupBox.cs: Fixed attribute
22380         * Label.cs: Fixed attribute
22381         * ColorDialog.cs (RunDialog): Removed TODO attribute
22382         * ComboBox.cs: Fixed attributes
22383         * ListControl.cs: Added missing attributes
22384         * PropertyGrid.cs: Fixed attributes
22385         * Control.cs: Fixed attributes
22386         * ListViewItem.cs: Added TypeConverter attribute
22387         * NotifyIcon.cs: Fixed attributes
22388         * ListView.cs: Fixed attributes
22389         * ButtonBase.cs: Fixed attribute
22390         * ImageList.cs: Added missing attributes
22391         * ContainerControl.cs: Fixed signature
22392         * CheckedListBox.cs: Fixed attribute; added missing attributes
22393         * Panel.cs: Fixed attributes
22394         * PropertyTabChangedEventArgs.cs: Added missing attribute
22395         * PropertyValueChangedEventArgs.cs: Added missing attribute
22396         * Binding.cs: Fixed attribute
22397         * ListViewItemConverter: Implemented ListViewSubItemConverter class
22398         * ListBox.cs: Fixed attribute; added missing attributes;
22399         * ScrollableControl.cs: Added missing attributes
22400         * PictureBox.cs: Added missing attributes; implemented missing property
22401         * DateTimePicker.cs: Added missing attributes
22402         * Theme.cs (ToolWindowCaptionHeight): Fixed type
22403         * MonthCalendar.cs: Fixed attributes
22404         * StatusBarPanel.cs: Added missing attributes
22405         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
22406
22407 2005-02-16  Peter Bartok  <pbartok@novell.com>
22408
22409         * TextBoxBase.cs: The previous method to enforce height yet remember
22410           the requested high was less than ideal, this is an attempt to do
22411           it better.
22412         * Control.cs: Added comment about possible problem
22413         * Copyright: Updated format
22414         * GridItemType.cs: Fixed swapped values
22415
22416 2005-02-15  Jackson Harper  <jackson@ximian.com>
22417
22418         * BaseCollection.cs: Use property so we never access an
22419         uninitialized list. Also initialize the list in the property.
22420
22421 2005-02-15  Peter Bartok  <pbartok@novell.com>
22422
22423         * GroupBox.cs (ProcessMnemonic): Implemented
22424         * Label.cs (ProcessMnemonic): Implemented
22425         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
22426           hotkeys
22427
22428 2005-02-15  Peter Bartok  <pbartok@novell.com>
22429
22430         * RadioButton.cs (ProcessMnemonic): Implemented
22431         * CheckBox.cs (ProcessMnemonic): Implemented
22432         * Control.cs:
22433           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
22434             handling
22435           - Added internal method to allow calling ProcessMnemonic from other
22436             controls
22437         * ContainerControl.cs:
22438           - Started support for handling validation chain handling
22439           - Implemented ProcessMnemonic support
22440           - Added Select() call to Active, to make sure the active control
22441             receives focus
22442         * Form.cs: Setting toplevel flag for Forms (this was lost in the
22443           FormParent rewrite)
22444         * ThemeWin32Classic.cs:
22445           - DrawCheckBox(): Fixed stringformat to show hotkeys
22446           - DrawRadioButton(): Fixed stringformat to show hotkeys
22447         * CommonDialog.cs: Removed WndProc override, not needed
22448
22449 2005-02-14  Peter Bartok  <pbartok@novell.com>
22450
22451         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
22452           missed those in the rewrite
22453
22454 2005-02-14  Miguel de Icaza  <miguel@novell.com>
22455
22456         * NumericUpDown.cs (Increment, ToString): Add.
22457         (DecimalPlaces): implement.
22458         
22459         Add attributes.
22460         
22461         * UpDownBase.cs: Add the designer attributes.
22462
22463 2005-02-13  Peter Bartok  <pbartok@novell.com>
22464
22465         * Panel.cs: Removed border_style, now in Control
22466         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
22467           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
22468
22469 2005-02-13  Peter Bartok  <pbartok@novell.com>
22470
22471         * MouseButtons.cs: Added missing attributes
22472         * XplatUIStructs.cs: Added enumeration for title styles
22473         * LeftRightAlignment.cs: Added missing attributes
22474         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
22475           it compatible with Graphics.FromHwnd()
22476         * SelectedGridItemChangedEventArgs.cs: Fixed property type
22477         * Keys.cs: Added missing attributes
22478         * SelectionRange.cs: Added missing attributes
22479         * SelectionRangeConverter.cs: Added
22480         * XplatUI.cs:
22481           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
22482             ReleaseMenuDC methods
22483           - Renamed ReleaseWindow to UngrabWindow
22484           - Added proper startup notice to allow version identification
22485         * Form.cs:
22486           - Added missing attributes
22487           - Removed FormParent concept
22488         * Label.cs: Removed border_style field, now in Control
22489         * RadioButton.cs: Now properly selects RadioButton when focus is
22490           received
22491         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
22492         * Control.cs:
22493           - Added missing attributes
22494           - Added borderstyle handling
22495           - Removed FormParent concept support
22496           - Fixed calls to XplatUI to match changed APIs
22497           - Fixed bug that would case us to use disposed Graphics objects
22498           - Removed unneeded internal methods
22499           - PerformLayout(): Fixed to handle DockStyle.Fill properly
22500           - SelectNextControl(): Fixed to properly check common parents
22501         * TextBoxBase.cs: Removed border_style field (now in Control)
22502         * MessageBox.cs:
22503           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
22504             fixed calculations for form size
22505           - Added support for localized strings and icons
22506           - Improved form size calculations, added border
22507         * ListView.cs: Removed border_style field (now in Control)
22508         * X11Structs.cs: Moved several structs from X11 driver here
22509         * X11Keyboard.cs: Changed debug message
22510         * Application.cs: Removed FormParent concept support
22511         * CommonDialog.cs:
22512           - Resetting end_modal flag
22513           - Removed FormParent concept support
22514         * NativeWindow.cs: Removed FormParent concept support
22515         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
22516           Client area and Non-Client whole window to allow support for WM_NC
22517           messages
22518         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
22519           prevent using it until it supports Hwnd as per Geoff Norton's request
22520         * ToolBar.cs: Fixed drawing, was not doing proper drawing
22521         * PictureBox.cs: Removed border_style field, now in Control
22522         * XplatUIWin32.cs: Added new driver methods
22523
22524 2005-02-12  Peter Bartok  <pbartok@novell.com>
22525
22526         * OpacityConverter.cs: Implemented
22527         * Hwnd.cs: Internal class to support drivers that need to emulate
22528           client area/non-client area window behaviour
22529
22530 2005-02-11  Peter Bartok  <pbartok@novell.com>
22531
22532         * KeysConverter.cs: Implemented
22533
22534 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
22535
22536         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
22537         * LinkLabel: Added missing attributes
22538         * MainMenu.cs: fixes ToString
22539         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
22540         * ListBox.cs: fixes event position
22541         * TrackBar.cs: adds missing attributes and events
22542         
22543 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
22544
22545         * MenuItem.cs: Use SystemInformation and bug fixes
22546         * MenuAPI.cs: Use SystemInformation and bug fixes
22547
22548 2005-02-09  Jackson Harper  <jackson@ximian.com>
22549
22550         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
22551         their keystate otherwise things like VK_MENU get stuck "on".
22552
22553 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
22554
22555         * ListBox.cs: Fixes AddRange bug
22556         
22557 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
22558
22559         * ProgressBar.cs
22560                 - Add missing attributes
22561                 - Add missing method
22562                 
22563         * CheckedListBox.cs: Added missing attributes
22564                 - Add missing attributes
22565                 - Remove extra method
22566         
22567         * ComboBox.cs: Added missing attributes
22568         * VScrollBar.cs: Added missing attributes
22569         * ScrollBar.cs:  Added missing attributes
22570         * ListBox.cs: Fixes signature, add missing consts
22571         * LinkArea.cs:   Added missing attributes
22572         
22573
22574 2005-02-08  Peter Bartok  <pbartok@novell.com>
22575
22576         * Menu.cs: Added missing attributes
22577         * MainMenu.cs: Added missing attributes
22578         * GroupBox.cs: Added missing attributes
22579         * Label.cs: Added missing attributes
22580         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
22581         * ColorDialog.cs:
22582           - Added Instance and Options properties
22583           - Added missing attributes
22584         * Cursor.cs: Made Serializable
22585         * NotifyIcon: Added missing attributes
22586         * MenuItem.cs: Added missing attributes
22587         * TextBoxBase.cs: Implemented AppendText() and Select() methods
22588         * Panel.cs: Added Missing attributes
22589         * MonthCalendar.cs: Fixed CreateParams
22590
22591 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
22592         
22593         * LinkLabel.cs:
22594                 - Fixes signature
22595                 - Fixes issues with links
22596                 - Adds the class attributes
22597
22598 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
22599         
22600         * ComboBox.cs:
22601                 - Fixes button when no items available in dropdown
22602                 - Fixes repainting problems
22603                 - Adds the class attributes
22604                 
22605 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
22606
22607         * XplatUIOSX.cs: Detect the menu bar and title bar height from
22608         the current theme.  Cache these on startup.
22609
22610 2005-02-07  Jackson Harper  <jackson@ximian.com>
22611
22612         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
22613         the scrollbar buttons when they are depressed.
22614
22615 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
22616
22617         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
22618         Get the display size from the main displayid.  We currently dont
22619         support multiple display configurations.
22620
22621 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
22622
22623         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
22624
22625 2005-02-07  Miguel de Icaza  <miguel@novell.com>
22626
22627         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
22628
22629 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
22630
22631         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
22632
22633 2005-02-04  Jackson Harper  <jackson@ximian.com>
22634
22635         * ThemeWin32Classic.cs: Respect the clipping rect when
22636         drawing. Only fill the intersection of clips and rects so there
22637         isn't a lot of large fills.
22638         * ScrollBar.cs: Pass the correct clipping rect to the theme
22639         engine. Remove some debug code.
22640
22641 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
22642         
22643         * DateTimePicker.cs:
22644                 - Fixed crash on DateTime.Parse, use Constructor instead
22645
22646 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
22647         
22648         * MenuItem.cs:
22649         * MenuAPI.cs:
22650                 - Owner draw support (MeasureItem and DrawItem)
22651
22652 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
22653         
22654         *  Menu.cs:
22655                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
22656                 - Fixes MenuItems.Add range
22657         * MenuItem.cs:
22658                 - MergeMenu and Clone and CloneMenu functions
22659
22660 2005-02-03  Jackson Harper  <jackson@ximian.com>
22661
22662         * ScrollBar.cs: Make abstract
22663         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
22664         is abstract.
22665
22666 2005-02-03  Jackson Harper  <jackson@ximian.com>
22667
22668         * ScrollBar.cs: First part of my scrollbar fixups. This removes
22669         all the unneeded refreshes and uses invalidates with properly
22670         computed rects.
22671
22672 2005-02-03  Peter Bartok  <pbartok@novell.com>
22673
22674         * ComponentModel.cs: Added
22675         * IDataGridEditingService.cs: Added
22676         * Timer.cs: Added missing attributes
22677         * ToolTip.cs: Added missing attributes
22678
22679 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
22680
22681         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
22682
22683 2005-02-03  Peter Bartok  <pbartok@novell.com>
22684
22685         * ListBox.cs: Added missing attributes
22686
22687 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
22688         
22689         * ListBox.cs:
22690                 - Fixes font height after font change
22691                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
22692                 
22693 2005-02-02  Peter Bartok  <pbartok@novell.com>
22694
22695         * HandleData.cs: Introduced static methods to allow class
22696           to be more self-contained and track it's own HandleData objects
22697         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
22698           HandleData to use new static methods
22699
22700 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
22701
22702         * Combobox.cs:
22703                 - Fixes default size and PreferredHeight
22704                 - Missing events
22705                 - ObjectCollection.Insert implementation
22706                 
22707         * ListControl.cs
22708                 - Fixes signature
22709         * ListBox.cs:
22710                 - Several fixes
22711                 - ObjectCollection.Insert implementation
22712                 - No selection after clean
22713                 - Small fixes
22714
22715 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
22716
22717         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
22718
22719 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
22720
22721         * Combobox.cs:
22722                 - Caches ItemHeight calculation for OwnerDrawVariable
22723                 - Handles dropdown properly
22724                 - Fixes several minor bugs
22725
22726 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
22727
22728         * ListBox.cs:
22729                 - Fixes 71946 and 71950
22730                 - Fixes changing Multicolumn on the fly
22731                 - Fixes keyboard navigation on Multicolumn listboxes
22732
22733 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
22734         
22735         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
22736         crash reporter log.
22737
22738 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
22739
22740         * XplatUIOSX.cs: Allow applications to actually exit.
22741
22742 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
22743
22744         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
22745         their parent at creation time rather than lazily later.  Fixes a major
22746         regression we were experiencing.
22747
22748 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
22749
22750         * ThemeWin32Classic.cs: more date time picker painting fixes
22751         * DateTimePicker.cs: more monthcalendar drop down fixes
22752         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
22753
22754 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
22755
22756         * ScrollBar.cs:
22757                 - When moving the thumb going outside the control should stop the moving
22758                 - Adds the firing of missing events
22759                 - Fixes no button show if Size is not specified
22760                 - End / Home keys for keyboard navigation
22761
22762 2005-01-30  Peter Bartok  <pbartok@novell.com>
22763
22764         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
22765           sanity check to prevent theoretical loop
22766         * XplatUIWin32.cs (SetVisible): Removed debug output
22767         * XplatUIX11.cs (SystrayChange): Added sanity check
22768         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
22769         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
22770           behaviour, valid until the X11 client window rewrite is done
22771         * TextBox.cs (ctor): Setting proper default foreground and background
22772           colors
22773
22774 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
22775
22776         * Theme: Added DrawDateTimePicker to interface
22777         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
22778         * DateTimePicker.cs: Created (still needs keys and painting code)
22779         * DateTimePickerFormat.cs: added
22780         * MonthCalendar.cs: fixed CreateParams for popup window mode
22781           
22782 2005-01-29  Peter Bartok  <pbartok@novell.com>
22783
22784         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
22785           this should also the calculations for ligher/darker
22786         * Theme.cs: Fixed defaults for ScrollBar widths/heights
22787
22788 2005-01-29  Peter Bartok  <pbartok@novell.com>
22789
22790         * ArrangeDirection.cs: Added
22791         * ArrangeStartingPositon.cs: Added
22792         * SystemInformation.cs: Implemented
22793         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
22794           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
22795           used by SystemInformation class
22796         * X11Strucs.cs: Added XSizeHints structure
22797         * MenuAPI.cs:
22798           - Fixed CreateParams to make sure the menu window is always visible
22799           - TrackPopupMenu: Added check to make sure we don't draw the
22800             menu offscreen
22801
22802 2005-01-29  Peter Bartok  <pbartok@novell.com>
22803
22804         * HandleData.cs: Added method for altering invalid area
22805         * TextBoxBase.cs: Implemented TextLength
22806
22807 2005-01-28  Peter Bartok  <pbartok@novell.com>
22808
22809         * XplatUIX11.cs: Improvement over last patch, not sending
22810           the WM_PAINT directly anymore, instead we scroll any pending
22811           exposed areas and let the system pick out the WM_PAINT later
22812
22813 2005-01-28  Peter Bartok  <pbartok@novell.com>
22814
22815         * SWF.csproj: Deleted, no longer used. Instead,
22816           Managed.Windows.Forms/SWF.csproj should be used
22817         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
22818           directly, to avoid a potential race condition with the next
22819           scroll
22820
22821 2005-01-28  Peter Bartok  <pbartok@novell.com>
22822
22823         * XplatUI.cs: Made class internal
22824
22825 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
22826
22827         * CheckedListBox.cs:
22828                 - Draw focus
22829                 - Fixed Drawing
22830                 - Missing methods and events
22831
22832 2005-01-27  Peter Bartok  <pbartok@novell.com>
22833
22834         * Application.cs (Run): Don't use form if we don't have one
22835
22836 2005-01-27  Peter Bartok  <pbartok@novell.com>
22837
22838         * TextBoxBase.cs (get_Lines): Fixed index off by one error
22839
22840 2005-01-27  Peter Bartok  <pbartok@novell.com>
22841
22842         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
22843         * GridItem.cs: Added; Patch by Jonathan S. Chambers
22844         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
22845         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
22846         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
22847         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
22848         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
22849         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
22850         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
22851         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
22852         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
22853         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
22854
22855 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
22856
22857         * Combobox.cs:
22858                 - Draw focus on Simple Combobox
22859                 - Fixes drawing issues
22860                 - fixes 71834
22861
22862 2005-01-27  Peter Bartok  <pbartok@novell.com>
22863
22864         * Form.cs:
22865           - Place window in default location, instead of hardcoded 0/0
22866           - Send initial LocationChanged event
22867         * Control.cs:
22868           - UpdateBounds after creation to find out where the WM placed us
22869           - Make sure that if the ParentForm changes location the Form
22870             is notified
22871         * XplatUIX11.cs: XGetGeometry will not return the coords relative
22872             to the root, but to whatever the WM placed around us.
22873             Translate to root coordinates before returning toplevel
22874             coordinates
22875         * XplatUIWin32.cs: Removed debug output
22876         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
22877           flag to GetWindowPos, to allow translation of coordinates on X11
22878
22879 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
22880
22881         * ListBox.cs: connect LostFocus Event
22882
22883 2005-01-27  Peter Bartok  <pbartok@novell.com>
22884
22885         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
22886           XplatUIX11.cs: Extended the Systray API
22887         * Form.cs: Removed debug output
22888         * Application.cs: Fixed focus assignment, always need to call
22889           XplatUI.Activate() since Form.Activate() has rules that may
22890           prevent activation
22891         * NotifyIcon.cs: Should be complete now
22892         * ToolTip.cs: Worked around possible timer bug
22893
22894 2005-01-27  Jackson Harper  <jackson@ximian.com>
22895
22896         * TabControl.cs:
22897         - Only invalidate the effected tabs when the
22898         selected index changes. This reduces drawing and gets rid of some
22899         flicker.
22900         - Only refresh if the tabs need to be shifted, otherwise only
22901         invalidate the slider button.
22902         - On windows the tabs are not filled to right if the slider is
22903         visible.
22904         
22905 2005-01-27  Jackson Harper  <jackson@ximian.com>
22906
22907         * TabControl.cs: Only refresh on mouseup if we are showing the
22908         slider. Also only invalidate the button whose state has changed.
22909
22910 2005-01-26  Peter Bartok  <pbartok@novell.com>
22911
22912         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
22913         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
22914           and SystrayRemove() methods
22915         * XplatUIOSX.cs: Stubbed Systray methods
22916         * XplatUIX11.cs:
22917           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
22918             methods
22919           - Fixed broken XChangeProperty calls (marshalling messed up things)
22920         * X11Structs.cs: Added enums and structs required for Size hinting
22921         * NotifyIcon.cs: Added & implemented
22922
22923 2005-01-26  Jackson Harper  <jackson@ximian.com>
22924
22925         * TabControl.cs: Space vertically layed out tabs properly.
22926
22927 2005-01-26  Peter Bartok  <pbartok@novell.com>
22928
22929         * Form.cs (CreateClientParams): Always set the location to 0,0
22930           since we're a child window.
22931
22932         * Control.cs (SetVisibleCore): Always explicitly setting the location
22933           of a toplevel window, apparently X11 doesn't like to move windows
22934           while they're not mapped.
22935
22936 2005-01-26  Jackson Harper  <jackson@ximian.com>
22937
22938         * TabControl.cs: Implement FillToRight size mode with vertically
22939         rendered tabs.
22940
22941 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
22942
22943         * ControlPaint.cs, ThemeWin32Classic.cs
22944                 - Fixes DrawFocusRectangle
22945
22946 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
22947
22948         * MenuAPI.cs:
22949                 - MenuBar tracking only starts when item is first clicked
22950                 - Fixes menu hidding for multiple subitems
22951                 - Unselect item in MenuBar when item Executed
22952                 - Fixes bug 71495
22953
22954 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
22955
22956         * ListControl.cs:
22957                 - IsInputKey for ListBox
22958         * ListBox.cs:
22959                 - Focus item
22960                 - Shift and Control item selection
22961                 - Implement SelectionMode.MultiExtended
22962                 - Fixes RightToLeft
22963         * ComboBox.cs:
22964                 - IsInputKey implemented
22965                 - Do not generate OnTextChangedEdit on internal txt changes
22966                 
22967 2005-01-23  Peter Bartok  <pbartok@novell.com>
22968
22969         * AccessibleObject.cs: Partially implemented Select()
22970         * MonthCalendar.cs: Added missing attributes and events
22971         * Form.cs: Fixed CreateParams behaviour, now controls derived from
22972           form can properly override CreateParams.
22973         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
22974           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
22975           Control performs Invalidate & Update
22976         * NativeWindow (CreateHandle): Added special handling for Form
22977           and Form.FormParent classes to allow overriding of From.CreateParams
22978         * Control.cs:
22979           - ControlNativeWindow: Renamed 'control' variable to more intuitive
22980             name 'owner'
22981           - ControlNativeWindow: Added Owner property
22982           - Removed usage of Refresh() on property changes, changed into
22983             Invalidate(), we need to wait until the queue is processed for
22984             updates, direct calls might cause problems if not all vars for
22985             Paint are initialized
22986           - Added call to UpdateStyles() when creating the window, to set any
22987             styles that CreateWindow might have ignored.
22988           - Added support for Form CreateParent overrides to UpdateStyles()
22989         * MessageBox.cs: Removed no longer needed FormParent override stuff,
22990           CreateParams are now properly overridable
22991         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
22992           CreateParams are now properly overridable
22993
22994 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
22995
22996         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
22997         OnTextBoxChanged.
22998
22999         Capture LostFocus and OnTextBoxChanged.  The later introduces a
23000         recursive invocation that I have not figured out yet.
23001
23002         Reset the timer when not using (it was accumulating).
23003
23004
23005         (OnTextBoxChanged): Set UserEdit to true here to track whether the
23006         user has made changes that require validation.
23007
23008         Reset changing to avoid loops.
23009
23010 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
23011
23012         * NumericUpDown.cs: Display value at startup.
23013
23014         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
23015         ValidateEditText.
23016
23017         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
23018         filled in.  Added some basic parsing of text.
23019
23020         Still missing the OnXXX method overrides, and figuring out the
23021         events that must be emitted.
23022
23023         * UpDownBase.cs: Handle UserEdit on the Text property.
23024         
23025 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
23026
23027         * ComboBox.cs:
23028           - Fixes IntegralHeight
23029           - ToString method
23030
23031 2005-01-21  Jackson Harper  <jackson@ximian.com>
23032
23033         * TabControl.cs: Set the SelectedIndex property when SelectedTab
23034         is set so that the page visibility is updated and the tabs are
23035         sized correctly.
23036
23037 2005-01-21  Jackson Harper  <jackson@ximian.com>
23038
23039         * TabControl.cs: Use cliping rectangle for blitting. Give the
23040         theme the clipping rect so we can do clipping while
23041         drawing. Remove some debug code.
23042
23043 2005-01-21  Jackson Harper  <jackson@ximian.com>
23044
23045         * TabPage.cs: Add a new method so tab pages can force the tab
23046         control to recalculate the tab page sizes.
23047         * TabControl.cs: UpdateOwner needs to make the tab control recalc
23048         sizes.
23049
23050 2005-01-20  Jackson Harper  <jackson@ximian.com>
23051
23052         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
23053
23054 2005-01-20  Jackson Harper  <jackson@ximian.com>
23055
23056         * TreeView.cs: Set the bounds for nodes properly. They were
23057         getting screwed up when checkboxes were not enabled, but images
23058         were.
23059
23060 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
23061
23062         * ListBox.cs:
23063                 - Owner draw support
23064                 - Fixes
23065                 
23066 2005-01-20  Jackson Harper  <jackson@ximian.com>
23067
23068         * XplatUIStructs.cs: More misc keys
23069         * X11Keyboard.cs: Ignore some control keys.
23070
23071 2005-01-20  Jackson Harper  <jackson@ximian.com>
23072
23073         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
23074         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
23075
23076 2005-01-19  Peter Bartok  <pbartok@novell.com>
23077
23078         * Control.cs: Un-selecting the control when it is loosing focus
23079
23080 2005-01-19  Jackson Harper  <jackson@ximian.com>
23081
23082         * TreeView.cs: Hook up to the text controls leave event so we can
23083         end editing when the users clicks outside the text box.
23084         
23085 2005-01-19  Jackson Harper  <jackson@ximian.com>
23086
23087         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
23088         get set in the conversion array.
23089
23090 2005-01-19  Peter Bartok  <pbartok@novell.com>
23091
23092         * Application.cs (ModalRun): Added a call to CreateControl to ensure
23093           focus is properly set
23094         * Button.cs:
23095           - Added missing attributes
23096           - removed styles, those are already set in the base class
23097         * ButtonBase.cs:
23098           - Added missing attributes
23099           - Added clip window styles
23100         * CheckBox.cs: Added missing attributes
23101         * CommonDialog.cs:
23102           - FormParentWindow.CreateParams: Added required clip styles
23103         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
23104           also filters modifier keys
23105         * MessageBox.cs:
23106           - Added assignment of Accept and Cancel button to enable Enter
23107             and Esc keys in MessageBox dialogs
23108           - FormParentWindow.CreateParams: Added required clip styles
23109         * RadioButton.cs: Added missing attributes
23110         * TextControl.cs: No longer draws selection if control does not
23111           have focus
23112         * TextBoxBase.cs:
23113           - Now draws simple rectangle around test area to make it obvious
23114             there's a control. This is a hack until we properly support borders
23115           - A few simple fixes to support selections better, now erases selected
23116             text when typing, and resets selection when using movement keys
23117
23118 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
23119
23120         * UpDownBase.cs: Added some new properties.
23121
23122         * DomainUpDown.cs: Implement a lot to get my test working.
23123
23124 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
23125
23126         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
23127
23128 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
23129
23130         * OSXStructs (WindowAttributes): Fixed csc complaints
23131
23132 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
23133
23134         * XplayUIOSX.cs:
23135           OSXStructs.cs: Initial refactor to move enums and consts into
23136           OSXStructs and use them in the driver for greater readability.
23137
23138 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
23139
23140         * XplatUIOSX.cs: Initial support for Standard Cursors.
23141         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
23142
23143 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
23144
23145         * ComboBox.cs: ability to change style when the ctrl is already
23146         created, missing methods and events, bug fixes, signature fixes
23147
23148 2005-01-19  Peter Bartok  <pbartok@novell.com>
23149
23150         * Cursors.cs (ctor): Added ctor to fix signature
23151
23152 2005-01-18  Peter Bartok  <pbartok@novell.com>
23153
23154         * Button.cs: Implemented DoubleClick event
23155         * ButtonBase.cs:
23156           - Fixed keyboard handling to behave like MS, where the press of
23157             Spacebar is equivalent to a mousedown, and the key release is
23158             equivalent to mouseup. Now a spacebar push will give the same
23159             visual feedback like a mouse click.
23160           - Added missing attributes
23161           - Added ImeModeChanged event
23162           - Added support for generating DoubleClick event for derived classes
23163         * CheckBox.cs:
23164           - Implemented DoubleClick event
23165           - Added missing attributes
23166         * CommonDialog.cs: Added missing attribute
23167         * ContextMenu.cs: Added missing attributes
23168         * RadioButton.cs:
23169           - AutoChecked buttons do not allow to be unselected when clicked
23170             (otherwise we might end up with no selected buttons in a group)
23171           - Added missing attributes
23172           - Implemented DoubleClickEvent
23173         * ThreadExceptionDialog.cs: Enabled TextBox code
23174
23175 2005-01-18  Peter Bartok  <pbartok@novell.com>
23176
23177         * Form.cs: Removed debug output
23178         * Button.cs: Added support for DoubleClick method
23179
23180 2005-01-18  Peter Bartok  <pbartok@novell.com>
23181
23182         * Form.cs:
23183           - Added method to parent window that allows triggering size
23184             calculations when a menu is added/removed
23185           - set_Menu: Cleaned up mess from early days of Form and Control,
23186             now properly triggers a recalc when a menu is added/removed
23187           - Added case to select form itself as focused form if no child
23188             controls exist
23189           - Added PerformLayout call when showing dialog, to ensure properly
23190             placed controls
23191         * Control.cs:
23192           - Select(): Made internal so Form can access it
23193           - Focus(): Only call Xplat layer if required (avoids loop), and sets
23194             status
23195         * Application.cs (Run): Removed hack and calls PerformLayout instead
23196           to trigger calculation when Form becomes visible
23197
23198 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
23199
23200         * ComboBox.cs: fixes for ownerdraw
23201
23202 2005-01-18  Peter Bartok  <pbartok@novell.com>
23203
23204         * TextControl.cs:
23205           - Sentinel is no longer static, each Document gets it's own, this
23206             avoids locking or alternatively overwrite problems when more
23207             than one text control is used simultaneously.
23208           - Switched to use Hilight and HilightText brushes for text selection
23209
23210         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
23211
23212 2005-01-18  Peter Bartok  <pbartok@novell.com>
23213
23214         * Control.cs:
23215           - Hooked up the following events:
23216                 o ControlAdded
23217                 o ControlRemoved
23218                 o HandleDestroyed
23219                 o ImeModeChanged
23220                 o ParentChanged
23221                 o TabStopChanged
23222                 o Invalidated
23223                 o SystemColorsChanged
23224                 o ParentFontChanged
23225                 o Move
23226           - Removed debug output
23227           - Added a call to the current theme's ResetDefaults when a color change
23228             is detected
23229         * Form.cs: Now setting the proper ImeMode
23230         * Theme.cs: Defined a method to force recreation of cached resources
23231           and rereading of system defaults (ResetDefaults())
23232         * ThemeWin32Classic.cs: Added ResetDefaults() stub
23233
23234 2005-01-17  Peter Bartok  <pbartok@novell.com>
23235
23236         * Control.cs: Added missing attributes
23237
23238 2005-01-17  Jackson Harper  <jackson@ximian.com>
23239
23240         * TreeNode.cs: Implement editing. Add missing properties selected
23241         and visible.
23242         * TreeView.cs: Implement node editing. Also some fixes to use
23243         Invalidate (invalid area) instead of Refresh when selecting.
23244
23245 2005-01-17  Peter Bartok  <pbartok@novell.com>
23246
23247         * Control.cs:
23248           - Implemented InvokeGotFocus() method
23249           - Implemented InvokeLostFocus() method
23250           - Implemented InvokePaint() method
23251           - Implemented InvokePaintBackground() method
23252           - Implemented InvokeClick() method
23253           - Implemented FindForm() method
23254           - Implemented RectangleToClient() method
23255           - Implemented ClientToRectangle() method
23256           - Implemented ResetBackColor() method
23257           - Implemented ResetCursor() method
23258           - Implemented ResetFont() method
23259           - Implemented ResteForeColor() method
23260           - Implemented ResetImeMode() method
23261           - Implemented ResetLeftToRight() method
23262           - Implemented ResetText() method
23263           - Implemented Scale() methods
23264           - Implemented ScaleCore() method
23265           - Implemented Update() method
23266           - Removed unused variables
23267           - Stubbed AccessibilityNotifyClients and
23268             ControlAccessibleObject.NotifyClients() methods (dunno what to do
23269             with those yet)
23270           - Now setting proper default for RightToLeft property
23271           - Fixed bug in SetClientSizeCore that would cause windows to get
23272             really big
23273           - Now sending Click/DoubleClick events
23274           - Now selecting controls when left mouse button is clicked on
23275             selectable control
23276         * AccessibleEvents.cs: Added
23277         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
23278         * XplatUIOSX.cs: Stubbed UpdateWindow() method
23279         * XplatUIWin32.cs: Implemented UpdateWindow() method
23280         * XplatUIX11.cs: Implemented UpdateWindow() method
23281         * Form.cs: Removed stray semicolon causing CS0162 warning
23282         * ThemeWin32Classic.cs: Fixed unused variable warnings
23283         * ScrollableControl.cs: Now calls base method for ScaleCore
23284         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
23285           style to avoid interference with internal click handler (which is
23286           different than standard Control click handling)
23287         * RadioButton.cs:
23288           - Now unchecks all sibling radio buttons when control is
23289             selected (Fixes #68756)
23290           - Removed internal tabstop variable, using the one inherited from
23291             Control
23292
23293 2005-01-17  Jackson Harper  <jackson@ximian.com>
23294
23295         * NavigateEventArgs.cs: Fix base type.
23296         * LinkLabel.cs: Sig fix
23297         
23298 2005-01-17  Jackson Harper  <jackson@ximian.com>
23299
23300         * TreeView.cs: Only invalidate the effected nodes bounds when
23301         selecting nodes.
23302
23303 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
23304
23305         * XplatUIWin32.cs: fixes Win32 marshaling
23306         * XplatUIX11.cs: fixes method signature
23307
23308 2005-01-17  Peter Bartok  <pbartok@novell.com>
23309
23310         * XplatUIX11.cs: Clean up resources when we no longer need them
23311
23312 2005-01-17  Peter Bartok  <pbartok@novell.com>
23313
23314         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
23315           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
23316           and DestroyCursor() methods.
23317         * Cursor.cs: Partially implemented, now supports standard cursors;
23318           still contains some debug code
23319         * Cursors.cs: Implemented class
23320         * Control.cs:
23321           - WndProc(): Added handling of WM_SETCURSOR message, setting the
23322             appropriate cursor
23323           - Implemented Cursor property
23324           - Replaced break; with return; more straightforwar and possibly
23325             faster
23326           - Now properly setting the result for WM_HELP
23327         * X11Structs.cs: Added CursorFontShape enum
23328         * XplatUIStructs.cs:
23329           - Added StdCursor enum (to support DefineStdCursor() method)
23330           - Added HitTest enum (to support sending WM_SETCURSOR message)
23331         * XplatUIX11.cs:
23332           - Now sends the WM_SETCURSOR message
23333           - Implemented new cursor methods
23334         * XplatUIOSX.cs: Stubbed new cursor methods
23335         * XplatUIWin32.cs:
23336           - Implemented new cursor methods
23337           - Added GetSystemMetrics function and associated enumeration
23338
23339 2005-01-15  Peter Bartok  <pbartok@novell.com>
23340
23341         * Control.cs:
23342           - WndProc(): Now handles EnableNotifyMessage
23343           - SelectNextControl(): Fixed bug where if no child or sibling
23344             controls exist we looped endlessly
23345
23346 2005-01-14  Jackson Harper  <jackson@ximian.com>
23347
23348         * TreeView.cs: Recalculate the tab pages when a new one is added
23349         so that the proper bounding rects are created.
23350
23351 2005-01-14  Jackson Harper  <jackson@ximian.com>
23352
23353         * TreeView.cs: Draw a gray box instead of a grip in the lower
23354         right hand corner when there are both horizontal and vertical
23355         scroll bars.
23356
23357 2005-01-14  Jackson Harper  <jackson@ximian.com>
23358
23359         * Control.cs: When erasing backgrounds use FromHwnd instead of
23360         FromHdc when there is a NULL wparam. This occurs on the X driver.
23361         * XplatUIX11.cs: Set the wparam to NULL.
23362
23363 2005-01-13  Jackson Harper  <jackson@ximian.com>
23364
23365         * PictureBox.cs: Implement missing methods (except ToString, need
23366         to test that on windows) and events. When visibility is changed we
23367         need to redraw the image because the buffers are killed. When size
23368         is changed refresh if the sizemode needs it.
23369
23370 2005-01-13  Peter Bartok  <pbartok@novell.com>
23371
23372         * Control.cs (SelectNextControl): Was using wrong method to select
23373           a control
23374
23375 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
23376
23377         * ComboBox.cs: fixes dropstyle
23378
23379 2005-01-13  Peter Bartok  <pbartok@novell.com>
23380
23381         * Form.cs:
23382           - Implemented Select() override
23383           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
23384           - Now sets keyboard focus on startup
23385         * Control.cs (SelectNextControl): Now properly handles directed=true
23386         * TextBoxBase.cs:
23387           - WndProc: Now passes tab key on to base if AcceptTabChar=false
23388           - Added (really bad) focus rectangle (mostly for testing)
23389         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
23390           to enforce redraw on focus changes
23391         * ContainerControl.cs:
23392           - Fixed detection of Shift-Tab key presses
23393           - Fixed traversal with arrow keys
23394         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
23395           gonna keep this or if it's complete yet
23396         
23397 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
23398
23399         * ComboBox.cs: missing properties, fixes
23400
23401 2005-01-13  Peter Bartok  <pbartok@novell.com>
23402
23403         * Panel.cs (ctor): Setting Selectable window style to off
23404         * Splitter.cs (ctor): Setting Selectable window style to off
23405         * GroupBox.cs (ctor): Setting Selectable window style to off
23406         * Label.cs (ctor): Setting Selectable window style to off
23407
23408 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
23409
23410         * UpDownBase.cs (InitTimer): If the timer has been already
23411         created, enable it.
23412
23413         Use a TextBox instead of a Label.
23414
23415 2005-01-12  Jackson Harper  <jackson@ximian.com>
23416
23417         * TreeView.cs: Refresh the tree after sorting the nodes. Always
23418         draw the connecting node lines (when ShowLines is true).
23419         * TreeNode.cs: The nodes index can now be updated. This is used
23420         when a node collection is sorted.
23421         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
23422         insert or an existing unsorted node collection can be sorted.
23423         
23424 2005-01-12  Peter Bartok  <pbartok@novell.com>
23425
23426         * ContainerControl.cs: Implemented ProcessDialogKeys()
23427
23428 2005-01-12  Peter Bartok  <pbartok@novell.com>
23429
23430         * Control.cs:
23431           - Implemented SelectNextControl() method
23432           - Several focus related bug fixes
23433           - Fixed Docking calculations to match MS documentation and
23434             behaviour
23435
23436 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
23437
23438         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
23439         bug fixes
23440
23441 2005-01-12  Peter Bartok  <pbartok@novell.com>
23442
23443         * Control.cs:
23444           - Fixed broken Contains() method
23445           - Implemented GetNextControl() method. Finally. This is the pre-
23446             requisite for focus handling.
23447
23448 2005-01-12  Peter Bartok  <pbartok@novell.com>
23449
23450         * OSXStrucs.cs: Added
23451
23452 2005-01-12  Peter Bartok  <pbartok@novell.com>
23453
23454         * XplatUIWin32.cs:
23455           - Removed PeekMessageFlags
23456           - Implemented SetWindowStyle() method
23457         * XplatUIStructs.cs: Added PeekMessageFlags
23458         * X11Structs: Added missing border_width field to XWindowChanges struct
23459         * XplatUIX11.cs:
23460           - PeekMessage: Now throws exception if flags which are not yet
23461             supported are passed
23462           - Implemented SetWindowStyle() method
23463           - Fixed SetZOrder to handle AfterHwnd properly
23464         * XplatUI.cs: Added SetWindowStyle() method
23465         * XplatUIDriver.cs: Added SetWindowStyle() abstract
23466         * Control.cs:
23467           - Implemented UpdateStyles() method
23468           - Implemented UpdateZOrder() method
23469         * XplatUIOSX.cs: Added SetWindowStyle() stub
23470
23471 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
23472
23473         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
23474         button mouse).
23475
23476
23477 2005-01-11  Jackson Harper  <jackson@ximian.com>
23478
23479         * TreeView.cs: Still need to draw lines to siblings even if out of
23480         the current node is out of the clip.
23481
23482 2005-01-11  Jackson Harper  <jackson@ximian.com>
23483
23484         * TreeView.cs: When setting the hbar/vbar/grip position use
23485         SetBounds so that perform layout is only called once. Also suspend
23486         and resume layout so layout is only done once for all controls.
23487         - Removed some debug fluff
23488         * SizeGrip.cs: Call base implmentation in overriding methods.
23489         - When visibility is changed the drawing buffers are killed so we
23490         need to redraw.
23491
23492 2005-01-11  Jackson Harper  <jackson@ximian.com>
23493
23494         * TreeView.cs: Calculate the open node count while drawing. This
23495         saves us an entire tree traversal for every paint operation. Use
23496         a member var for the open node count so less vars are passed around.
23497
23498 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
23499
23500         * MonthCalendar.cs:
23501         - fixed selection to use mousemove, not mouse polling on timer
23502         * ThemeWin32Classic.cs
23503         - removed redundant unused variable "no_more_content"
23504         
23505 2005-01-11  Peter Bartok  <pbartok@novell.com>
23506
23507         * XplatUIX11.cs (DoEvents): Needs to return when no more events
23508           are pending, so it now calls PeekMessage instead of GetMessage;
23509           implemented a incomplete version of PeekMessage
23510         
23511 2005-01-11  Peter Bartok  <pbartok@novell.com>
23512
23513         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
23514           I18n issues
23515         * TextBoxBase.cs: Added sending of TextChanged event
23516
23517 2005-01-10  Jackson Harper  <jackson@ximian.com>
23518
23519         * TreeView.cs: Try not to draw outside the clipping rectangle on
23520         each node element.
23521
23522 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
23523
23524         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
23525
23526 2005-01-10  Jackson Harper  <jackson@ximian.com>
23527
23528         * TreeView.cs:
23529         - Implement fast scrolling. Now only the newly
23530         exposed nodes are drawn and the old image is moved using the
23531         XplatUI::ScrollWindow method.
23532         - Factor in height of nodes when calculating whether or not the
23533         node is in the clipping rect.
23534
23535 2005-01-10  Jackson Harper  <jackson@ximian.com>
23536
23537         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
23538
23539 2005-01-10  Peter Bartok  <pbartok@novell.com>
23540
23541         * Application.cs: Added temporary hack to resolve all our resize
23542           required issues on startup. This will get fixed properly at
23543           some point in the future
23544
23545 2005-01-10  Jackson Harper  <jackson@ximian.com>
23546
23547         * SizeGrip.cs: New internal class that is used as a sizing
23548         grip control...hence the name.
23549
23550 2005-01-10  Peter Bartok  <pbartok@novell.com>
23551
23552         * Control.cs: Implemented proper TabIndex handling, now assigning
23553           a tabindex when a control is added to a container
23554         * GroupBox.cs (ctor): Now sets the Container style bit, required
23555           for Control.GetNextControl()
23556
23557 2005-01-09  Jackson Harper  <jackson@ximian.com>
23558
23559         * TextBoxBase.cs: Clear window when scrolling (fixes build).
23560
23561 2005-01-09  Peter Bartok <pbartok@novell.com>
23562
23563         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
23564           XplatUIX11.cs: Added ability to control ScrollWindow expose and
23565           an overload for ScrollWindow to allow only scrolling a rectangle
23566
23567 2005-01-09  Peter Bartok <pbartok@novell.com>
23568
23569         * Form.cs:
23570           - Implemented SetDesktopBounds method
23571           - Implemented SetDesktopLocation method
23572
23573 2005-01-08  Jackson Harper  <jackson@ximian.com>
23574
23575         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
23576         the node count has changed, this removes to VScroll::Refresh calls
23577         when drawing.
23578
23579 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
23580
23581         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
23582
23583 2005-01-07  Jackson Harper  <jackson@ximian.com>
23584
23585         * TreeNode.cs: Just update the single node when it is
23586         checked. Don't refresh after toggling, the Expand/Collapse already
23587         handles this.
23588         * TreeView.cs: Respect clipping a little more when drawing. Try
23589         not to redraw things that don't need to be redrawn. Just hide the
23590         scrollbars when they are no longer needed instead of removing
23591         them, so they don't have to be created again and again.
23592         
23593 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
23594
23595         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
23596         coordinates to window space to place the caret properly, FIXED.
23597         Implement GetWindowState & SetWindowState
23598
23599 2005-01-06  Peter Bartok <pbartok@novell.com>
23600
23601         * Form.cs:
23602           - Implemented ClientSize property
23603           - Implemented DesktopBounds property
23604           - Implemented DesktopLocation property
23605           - Implemented IsRestrictedWindow property
23606           - Implemented Size property
23607           - Implemented TopLevel property
23608           - Implemented FormWindowState property
23609         * Control.cs:
23610           - Implemented GetTopLevel() method
23611           - Implemented SetTopLevel() method
23612         * X11Structs.cs (Atom):
23613           - Added AnyPropertyType definition
23614           - Added MapState definiton and updated XWindowAttribute struct
23615         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
23616         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
23617         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
23618         * XplatUIWin32.cs:
23619           - Implemented GetWindowState() and SetWindowState() methods
23620           - Fixed Win32GetWindowLong return type
23621         * XplatUIX11.cs:
23622           - Introduced central function for sending NET_WM messages
23623           - Implemented GetWindowState() and SetWindowState() methods
23624         * TextBoxBase.cs (set_Lines):
23625           - Now uses Foreground color for text added via Text property (Duh!)
23626           - Added code to remember programmatically requested size (fixes
23627             behaviour when Multiline is set after Size)
23628           - Added AutoSize logic
23629
23630 2005-01-06  Jackson Harper  <jackson@ximian.com>
23631
23632         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
23633
23634 2005-01-06  Jackson Harper  <jackson@ximian.com>
23635
23636         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
23637         set to less then 0.
23638
23639 2005-01-06  Jackson Harper  <jackson@ximian.com>
23640
23641         * ScrollableControl.cs: Lazy init the scrollbars.
23642         
23643 2005-01-06  Jackson Harper  <jackson@ximian.com>
23644
23645         * Theme.cs: Speed up getting pens and solid brushes, by using
23646         their ARGB as a hash instead of tostring and not calling Contains.
23647
23648 2005-01-06  Peter Bartok <pbartok@novell.com>
23649
23650         * Form.cs:
23651           - Implemented OnActivated and OnDeactivate event trigger
23652           - Implemented Activate() method
23653           - Fixed ShowDialog() to activate the form that was active before
23654             the dialog was shown
23655         * XplatUIX11.cs:
23656           - Added global active_window var that tracks the currently active
23657             X11 window
23658           - Now always grabs Property changes from the root window to always
23659             catch changes on the active window property
23660           - Added code to PropertyNotify handler to send Active/Inactive
23661             messages when state changes. This puts X11 and Win32 en par on
23662             WM_ACTIVATE notifications (except for double notifications when
23663             the user clicks away from our modal window to another one of our
23664             windows)
23665
23666 2005-01-05  Jackson Harper  <jackson@ximian.com>
23667
23668         * ImageList.cs: Implment ctor
23669
23670 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
23671
23672         * XplatUIOSX.cs: Implement Activate/SetTopmost
23673
23674 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
23675
23676         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
23677
23678 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
23679
23680         * XplatUIOSX.cs: Implement GetActive/SetFocus.
23681
23682 2005-01-05  Peter Bartok <pbartok@novell.com>
23683
23684         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
23685           XplatUIOSX.cs: Added GetActive method to return the currently
23686           active window for the application (or null, if none is active)
23687         * Form.cs:
23688           - Implemented ActiveForm
23689           - Commented out owner assignment for modal dialogs (causes problems
23690             on Win32, since the owner will be disabled)
23691           - Reworked some Active/Focus handling (still incomplete)
23692         * CommonDialog.cs: Commented out owner assignment for modal dialogs
23693           (causes problems on Win32, since the owner will be disabled)
23694         * IWin32Window: Added ComVisible attribute
23695
23696 2005-01-05  Peter Bartok <pbartok@novell.com>
23697
23698         * ToolTip.cs (WndProc): Enable setting focus now that we have the
23699           required XplatUI functions.
23700
23701 2005-01-05  Peter Bartok <pbartok@novell.com>
23702
23703         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
23704           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
23705           to implement focus and activation handling; still incomplete and
23706           with debug output
23707
23708 2005-01-04  Peter Bartok <pbartok@novell.com>
23709
23710         * TextBoxBase.cs: Changed access level for Document property to
23711           match switch to internal for TextControl
23712
23713 2005-01-04  Peter Bartok <pbartok@novell.com>
23714
23715         * AccessibleObject: Added ComVisible attribute
23716
23717 2005-01-04  Jackson Harper  <jackson@ximian.com>
23718
23719         * X11Keyboard.cs: Remove unneeded var.
23720
23721 2005-01-04  Jackson Harper  <jackson@ximian.com>
23722
23723         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
23724         but PAINT.
23725         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
23726         ClientMessage. This makes apps exit cleanly (more often).
23727         
23728 2005-01-04  Jackson Harper  <jackson@ximian.com>
23729
23730         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
23731         handling focus, return correct colors and fonts,
23732         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
23733         handle selection, horizontal scrolling, and mouse interaction.
23734
23735 2005-01-04  Peter Bartok <pbartok@novell.com>
23736
23737         * ICommandExecutor.cs: Added
23738         * IDataGridColumnStyleEditingNotificationService.cs: Added
23739         * IFeatureSupport.cs: Added
23740         * IFileReaderService.cs: Added
23741         * IDataObject.cs: Added ComVisible attribute
23742         * AmbientProperties.cs: Added
23743         * BaseCollection.cs: Added missing attributes
23744         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
23745         * BaseCollection.cs: Added missing attributes
23746         * Binding.cs: Added TypeConverter attribute
23747         * BindingContext.cs: Added DefaultEvent attribute
23748         * BindingsCollection.cs: Added DefaultEvent attribute
23749         * Button.cs: Added DefaultValue attribute
23750         * DragEventArgs.cs: Added ComVisible attribute
23751         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
23752         * KeyEventArgs.cs: Added ComVisible attribute
23753         * KeyPressEventArgs.cs: Added ComVisible attribute
23754         * MouseEventArgs.cs: Added ComVisible attribute
23755         * NavigateEventArgs.cs: Added
23756         * NavigateEventHandler.cs: Added
23757         * FeatureSupport.cs: Added
23758         * OSFeature.cs: Added
23759         * Theme.cs: Added abstract Version property to support OSFeature
23760         * ThemeWin32Classic.cs: Added Version property to
23761           support OSFeature.Themes
23762         * ProgressBar.cs: Removed OnPaintBackground override, not required since
23763           the proper styles to avoid background drawing are set, also doesn't
23764           match MS signature
23765         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
23766         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
23767         * ScrollEventArgs.cs: Added ComVisible attribute
23768         * SplitterEventArgs.cs: Added ComVisible attribute
23769         * AccessibleSelection.cs: Added Flags attribute
23770         * Appearance.cs: Added ComVisible attribute
23771         * Border3DSide.cs: Added ComVisible attribute
23772         * Border3DStyle.cs: Added ComVisible attribute
23773         * BorderStyle.cs: Added ComVisible attribute
23774         * DragAction.cs: Added ComVisible attribute
23775         * ErrorBlinkStyle.cs: Added
23776         * ScrollEventType.cs: Added ComVisible attribute
23777         * AnchorStyles.cs: Added Editor attribute
23778         * DockStyle.cs: Added Editor attribute
23779         * HorizontalAlignment.cs: Added ComVisible attribute
23780         * HelpEventArgs.cs: Added ComVisible attribute
23781         * PaintEventArgs.cs: Added IDisposable
23782
23783 2005-01-04  Peter Bartok <pbartok@novell.com>
23784
23785         * TextControl.cs: Switched Line, LineTag and Document classes to
23786           internal
23787
23788 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
23789
23790         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
23791         Simple mode, fixes, IntegralHeight, etc.
23792
23793 2005-01-04  Peter Bartok <pbartok@novell.com>
23794
23795         * TextBoxBase.cs: Using proper font variable now
23796
23797 2005-01-04  Peter Bartok <pbartok@novell.com>
23798
23799         * Form.cs (ShowDialog): Set parent to owner, if provided
23800         * GroupBox.cs: Removed unused vars
23801         * TextControl.cs:
23802           - Added GetHashCode() for Document and LineTag classes
23803           - Removed unused variables
23804           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
23805             to allow translation between continuous char position and line/pos
23806         * CheckBox.cs: Removed vars that are provided by base class
23807         * RadioButton.cs: Removed vars that are provided by base class, added
23808           new keyword where required
23809         * LinkLabel.cs: Added new keyword where required
23810         * Control.cs (WndProc): Removed unused variable
23811         * TextBoxBase.cs:
23812           - Finished SelectionLength property
23813           - Implemented SelectionStart property
23814           - Implemented Text property
23815           - Removed unused vars
23816         * MessageBox.cs: Added new keyword where required
23817         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
23818           WndProc signature
23819         * MenuAPI.cs: Added new keyword where required
23820         * ButtonBase.cs: Removed vars that are provided by base class, added
23821           new keyword where required
23822         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
23823           argument to double, to allow compiling with csc 2.0 (Atsushi ran
23824           into this)
23825         * Application.cs (Run): Now triggers the ThreadExit event
23826         * CommonDialog.cs: Added new keyword where required; now properly sets
23827           parent (owner) for dialog
23828         * XplatUIX11.cs: Commented out unused vars
23829         * StatusBar.cs: Fixed signature for Text property
23830         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
23831
23832 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
23833
23834         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
23835         TrackBar.cs, MonthCalendar.cs: remove unused vars
23836
23837 2005-01-03  Jackson Harper  <jackson@ximian.com>
23838
23839         * ThemeWin32Classic.cs:
23840         * X11Keyboard.cs: Remove unused vars.
23841
23842 2005-01-03  Peter Bartok  <pbartok@novell.com>
23843
23844         * TextBox.cs:
23845           - set_Text: Tied into TextControl
23846           - set_TextAlignment: Tied into TextControl
23847         * TextControl.cs:
23848           - Added alignment properties and implemented alignment handling
23849             and drawing (still has a bug, not generating proper expose events)
23850           - Added new Line() constructor to allow passing the line alignment
23851           - Fixed selection setting, properly handling end<start now
23852           - Added aligment considerations to RecalculateDocument()
23853         * TextBoxBase.cs:
23854           - Now properly enforces control height for single line controls
23855           - Added support for CharacterCasing
23856           - Added IsInputKey override
23857           - Fixed Keys.Enter logic
23858           - Added SetBoundsCore override
23859           - Fixed mouse selection handling
23860
23861 2005-01-03  Jackson Harper  <jackson@ximian.com>
23862
23863         * TreeView.cs:
23864           - Collapse and uncheck all nodes when CheckBoxes is disabled.
23865           - Checkboxes are always aligned to the bottom of the node,
23866           regardless of item height.
23867           - Use the node bounds to draw the text so we can center it when
23868           the item height is greater then the font height.
23869           - Node::Bounds are only the text part of the node.
23870         * TreeNode.cs: New method to combine collapsing and unchecking all
23871           nodes recursively.
23872
23873 2005-01-02  Jackson Harper  <jackson@ximian.com>
23874
23875         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
23876         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
23877         tree when a check is changed. TODO: Only refresh the checked node.
23878
23879 2004-12-30  Jackson Harper  <jackson@ximian.com>
23880
23881         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
23882         * TreeNode.cs: When collapsing make sure to never collapse the
23883         root node.
23884
23885 2004-12-29  Jackson Harper  <jackson@ximian.com>
23886
23887         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
23888         
23889 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
23890
23891         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
23892
23893 2004-12-28  Peter Bartok  <pbartok@novell.com>
23894
23895         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
23896           not yet assigned
23897
23898 2004-12-28  Peter Bartok  <pbartok@novell.com>
23899
23900         * Control.cs (WndProc): Added WM_HELP handler, now generates
23901           HelpRequested event
23902         * Form.cs: Added HelpButton property and required support code
23903         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
23904
23905 2004-12-28  Peter Bartok  <pbartok@novell.com>
23906
23907         * CommonDialog.cs:
23908           - Made DialogForm.owner variable internal
23909           - Added check to ensure owner form is set before setting
23910             owner properties in CreateParams
23911
23912 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
23913
23914         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
23915           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
23916           GetCursorPos.  Fix major visibility issues.  Rework the windowing
23917           system to support borderless/titleless windows (implements menus).
23918           Fix GetWindowPos.  Implement initial background color support for
23919           views.
23920
23921 2004-12-28  Peter Bartok  <pbartok@novell.com>
23922
23923         * Form.cs (get_CreateParams): Make sure we have an owner before using
23924           the owner variable. Implement proper default if no owner exists
23925
23926 2004-12-28  Peter Bartok  <pbartok@novell.com>
23927
23928         * In preparation for making Managed.Windows.Forms the default build target
23929           for System.Windows.Forms, the following stubbed files were added.
23930           Dialogs are currently being implemented by contributors and are only
23931           short-term place holders.
23932         * ColorDialog.cs: Initial check-in (minmal stub)
23933         * DataGrid.cs: Initial check-in (minimal stub)
23934         * DataGridLineStyle.cs: Initial check-in (minimal stub)
23935         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
23936         * DataGridTableStyle.cs: Initial check-in (minimal stub)
23937         * FontDialog.cs: Initial check-in (minimal stub)
23938         * FileDialog.cs: Initial check-in (minimal stub)
23939         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
23940         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
23941         * OpenFileDialog: Initial check-in (minimal stub)
23942         * IComponentEditorPageSite.cs: Initial check-in
23943         * Splitter.cs: Initial check-in (for Jackson)
23944         * SplitterEventArgs.cs: Initial check-in (for Jackson)
23945         * SplitterEventHandler.cs: Initial check-in (for Jackson)
23946         * TextBox.cs: Initial check-in; still needs some wiring to
23947           TextControl backend
23948         * Form.cs: Implemented ControlBox property
23949         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
23950         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
23951         * TextControl.cs: Added selection functionality; added todo header
23952         * TextBoxBase.cs:
23953           - Implemented Lines property
23954           - Implemented TextHeight property
23955           - Implemented SelectedText property
23956           - Implemented SelectionLength property
23957           - Implemented SelectAll method
23958           - Implemented ToString method
23959           - Removed and cleaned up some debug code
23960           - Implemented (still buggy) mouse text selection
23961
23962 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
23963
23964         * ComboBox.cs: Complete DropDownList implementation, fixes.
23965
23966 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
23967
23968         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
23969         * ComboBoxStyle.cs: ComboBoxStyle enum
23970         * ComboBox.cs: Initial work on ComboBox control
23971
23972 2004-12-21  Peter Bartok  <pbartok@novell.com>
23973
23974         * Control.cs (ctor, CreateParams): Moved setting of is_visible
23975           forward so that anything that creates a window gets the default,
23976           also no longer uses Visible property in CreateParams to avoid
23977           walking up the parent chain and possibly get the wrong visible
23978           status. Fixed IsVisible to no longer walk up to the parent.
23979
23980 2004-12-21  Peter Bartok  <pbartok@novell.com>
23981
23982         * Form.cs (ShowDialog): Unset modality for the proper window
23983  
23984 2004-12-20  Peter Bartok  <pbartok@novell.com>
23985
23986         * CommonDialog.cs: Initial check-in
23987
23988 2004-12-20  Peter Bartok  <pbartok@novell.com>
23989
23990         * Control.cs (Visible): Now uses the parent window instead of the
23991           client area window for the property
23992
23993         * Form.cs
23994           - ShowDialog(): Now uses the proper window for modality
23995           - The default visibility state for the form parent is now false. This
23996             will prevent the user from seeing all the changes to the form and
23997             its controls before the application hits Application.Run()
23998           - Removed some stale commented out code
23999
24000         * NativeWindow.cs:
24001           - Added FindWindow() method to have a method to check for existence
24002             of a window handle
24003           - Added ability to override default exception handling (for example
24004             when debugging with VS.Net; to do this the ExternalExceptionHandler
24005             define must be set
24006           - Removed some useless debug output
24007
24008         * XplatUIX11.cs:
24009           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
24010             not working as expected
24011           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
24012             property to allow switching back to the modal window if focus is
24013             given to another one of our windows (Application Modal)
24014           - Now only sets override_redirect if we create a window
24015             without WS_CAPTION
24016           - Moved EventMask selection before mapping of newly created window
24017             so we can catch the map event as well
24018           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
24019           - Added various Atom related DllImports
24020           - Implemented Exit() method
24021           - .ctor() : No longer shows window if WS_VISIBLE is not defined
24022             in the CreateParams
24023
24024         * MessageBox.cs: Now properly deals with the FormParent window by
24025           providing an override the FormParent CreateParams property to
24026           set as POPUP instead of OVERLAPPED window.
24027
24028 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
24029
24030         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
24031         Minor code cleanup.
24032
24033 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
24034         
24035         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
24036
24037 2004-12-18  Peter Bartok  <pbartok@novell.com>
24038
24039         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
24040           implementing SetModal() method
24041
24042 2004-12-18  Peter Bartok  <pbartok@novell.com>
24043
24044         * X11Structs.cs (XGCValues): Fixed type of function element
24045         * XplatUI.cs: Added ScrollWindow() method
24046         * XplatUIDriver.cs: Added ScrollWindow() abstract
24047         * XplatUIWin32.cs: Implemented ScrollWindow() method
24048         * XplatUIX11.cs: Implemented ScrollWindow() method
24049         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
24050
24051 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
24052
24053         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
24054         Some more keyboard support (INCOMPLETE)
24055
24056 2004-12-17  Peter Bartok  <pbartok@novell.com>
24057
24058         * TextControl.cs:
24059         - Added color attribute to line tags.
24060         - Added color argument to all functions dealing with tags
24061         - Added color argument support to various functions
24062         - Fixed miss-calculation of baseline/shift in certain circumstances
24063
24064         * TextBoxBase.cs: Added new color option to test code
24065
24066 2004-12-17  Jackson Harper  <jackson@ximian.com>
24067
24068         * TreeNode.cs:
24069         * MonthCalendar.cs: Signature fixes
24070
24071 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
24072
24073         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
24074         keyboard event moved it.  Create a new graphics context for each paint resolves this
24075
24076 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
24077
24078         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
24079         Make caret exist and go blink blink.  Initial keyboard support.
24080         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
24081         works.
24082
24083 2004-12-17  Jackson Harper  <jackson@ximian.com>
24084
24085         * XplatUIStructs.cs: Updated set of virtual keycodes.
24086         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
24087
24088 2004-12-17  Jackson Harper  <jackson@ximian.com>
24089
24090         * XplatUIX11.cs: Prune old keyboard code.
24091
24092 2004-12-17  Jackson Harper  <jackson@ximian.com>
24093
24094         * XplatUIX11.cs: When generating mouse wparams get the modifier
24095         keys from the ModifierKeys property.
24096
24097 2004-12-17  Jackson Harper  <jackson@ximian.com>
24098
24099         * X11Keyboard.cs: Send up/down input when generating
24100         messages. Remove some unused vars.
24101
24102 2004-12-17  Jackson Harper  <jackson@ximian.com>
24103
24104         * TabControl.cs:
24105         * TreeView.cs: get rid of warnings.
24106
24107 2004-12-17  Jackson Harper  <jackson@ximian.com>
24108
24109         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
24110
24111 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
24112
24113         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
24114           CheckedListBox.cs: Implementation
24115
24116 2004-12-17  Peter Bartok  <pbartok@novell.com>
24117
24118         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
24119
24120 2004-12-16  Peter Bartok  <pbartok@novell.com>
24121
24122         * TextControl.cs:
24123           - InsertCharAtCaret(): Fixed start pos fixup
24124           - CaretLine_get: No longer derives the line from the tag, the tag
24125             could be stale if lines in the document have been added or deleted
24126           - RebalanceAfterDelete(): Fixed bug in balancing code
24127           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
24128           - Line.Streamline(): Now can also elminate leading empty tags
24129           - DumpTree(): Added a few more tests and prevented exception on
24130             uninitialized data
24131           - Added Debug section for Combining lines
24132           - Delete(): Now copies all remaining properties of a line
24133           
24134         * TextBoxBase.cs:
24135           - Left mousebutton now sets the caret (and middle button still acts
24136             as formatting tester, which must go away soon)
24137           - Added Debug section for Deleting/Combining lines
24138           - Fixed calculations for UpdateView after Combining lines
24139
24140 2004-12-16  Peter Bartok  <pbartok@novell.com>
24141
24142         * TextControl.cs: Now properly aligns text on a baseline, using the
24143           new XplatUI.GetFontMetrics() method. Simplified several calculations
24144         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
24145           defined
24146
24147 2004-12-16  Peter Bartok  <pbartok@novell.com>
24148
24149         * XplatUI.cs: Added GetFontMetrics() method
24150         * XplatUIDriver.cs: Added GetFontMetrics() abstract
24151         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
24152           into libgdiplus, our private GetFontMetrics function
24153         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
24154         * XplatUIWin32.cs: Implemented GetFontMetrics() method
24155
24156 2004-12-16  Jackson Harper  <jackson@ximain.com>
24157
24158         * XplatUIStruct.cs: Add enum for dead keys
24159         * X11Keyboard.cs: Map and unmap dead keys.
24160
24161 2004-12-16  Jackson Harper  <jackson@ximian.com>
24162
24163         * X11Keyboard.cs: Detect and use the num lock mask.
24164
24165 2004-12-16  Peter Bartok  <pbartok@novell.com>
24166
24167         * Control.cs (CreateGraphics): Added check to make sure the
24168           handle of the window exists before calling Graphics.FromHwnd()
24169
24170 2004-12-16  Peter Bartok  <pbartok@novell.com>
24171
24172         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
24173           contains a lot of code that's not supposed to be there for the
24174           real thing, but required for developing/testing the textbox
24175           backend.
24176
24177 2004-12-16  Peter Bartok  <pbartok@novell.com>
24178
24179         * TextControl.cs:
24180         - Fixed Streamline method
24181         - Added FindTag method to Line
24182         - Added DumpTree method for debugging
24183         - Added DecrementLines() method for deleting lines
24184         - Fixed UpdateView to update the cursor to end-of-line on single-line
24185           updates
24186         - Added PositionCaret() method
24187         - Fixed MoveCaret(LineDown) to move into the last line, too
24188         - Added InsertChar overload
24189         - Fixed InsertChar tag offset calculations
24190         - Added DeleteChar() method
24191         - Added Combine() method for folding lines
24192         - Fixed Delete() method, no longer allocates wasted Line object and
24193           now copies all properties when swapping nodes
24194         - Delete() method now updates document line counter
24195
24196 2004-12-15  Jackson Harper  <jackson@ximian.com>
24197
24198         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
24199         * X11Keyboard.cs: Expose the currently selected modifier keys
24200         through a property.
24201
24202 2004-12-15  Peter Bartok  <pbartok@novell.com>
24203
24204         * TextControl.cs: Initial check-in. Still incomplete
24205
24206 2004-12-15  Jackson Harper  <jackson@ximian.com>
24207
24208         * TreeNode.cs:
24209         * TreeView.cs: Fix build on csc (second time today ;-))
24210
24211 2004-12-15  Jackson Harper  <jackson@ximian.com>
24212
24213         * TreeView.cs: Store the treenodes plus/minus box bounds when it
24214         is calculated and use this for click testing.
24215         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
24216
24217 2004-12-15  Jackson Harper  <jackson@ximian.com>
24218
24219         * TreeView.cs: Pass the nodes image index to the image list when
24220         drawing that image.
24221
24222 2004-12-15  Jackson Harper  <jackson@ximian.com>
24223
24224         * X11Keyboard.cs: Set messages hwnd.
24225         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
24226         post_message calls.
24227
24228 2004-12-15  Jackson Harper  <jackson@ximian.com>
24229
24230         * X11Keyboard.cs: Fix to compile with csc.
24231         
24232 2004-12-15  Jackson Harper  <jackson@ximian.com>
24233
24234         * X11Structs.cs: Add key mask values
24235         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
24236         * X11Keyboard.cs: New file - Extrapolates and interpolates key
24237         down/up foo into WM_CHAR foo
24238         * KeyboardLayouts.cs: Common keyboard layouts
24239         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
24240         post messages into the main queue.
24241
24242 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
24243
24244         * Button.cs: implement ProcessMnemonic
24245         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
24246           brushes everytime
24247         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
24248         * ButtonBase.cs: Show HotkeyPrefix (not the &)
24249
24250 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
24251         
24252         * MonthCalendar.cs: Implemented click-hold for next/previous month
24253           and date selection
24254           
24255 2004-12-11  Peter Bartok  <pbartok@novell.com>
24256
24257         * X11Structs.cs:
24258           - Added XKeyboardState (moved from XplatUIX11.cs)
24259           - Added XCreateGC related enums and structures
24260           - Added GXFunction for XSetFunction
24261
24262         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
24263
24264         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
24265           CaretVisible() calls
24266
24267         * ToolTip.cs: Added code to prevent stealing focus from app windows
24268
24269         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
24270           DestroyCaret, SetCaretPos and CaretVisible)
24271
24272         * XplatUIX11.cs:
24273           - Added implementation for caret functions
24274           - Moved hover variables into a struct, to make it a bit easier
24275             on the eyes and to debug
24276           - Removed XKeyboardState (moved to XplatUIX11.cs)
24277           - Moved Keyboard properties into the properties region
24278
24279         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
24280           call to get a graphics context for our control
24281
24282         * XplatUIOSX.cs: Added empty overrides for the new caret functions
24283
24284         * TreeView.cs: Fixed bug. No matter what color was set it would always
24285           return SystemColors.Window
24286
24287         * XplatUIWin32.cs: Implemented caret overrides
24288
24289 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
24290
24291         * ListBox.cs: fire events, implement missing methods and properties,
24292         sorting.
24293
24294 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
24295
24296         * MonthCalendar.cs: invalidation bug fixing
24297         * ThemeWin32Classic.cs: paint fixing
24298
24299 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
24300
24301         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
24302         prepare the CGContextRef there now.
24303
24304 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
24305
24306         * MonthCalendar.cs:
24307           - optimisationL only invalidate areas that have changed
24308         * ThemeWin32Classic.cs:
24309           - only paint parts that intersect with clip_area
24310
24311 2004-12-09  Peter Bartok  <pbartok@novell.com>
24312
24313         * Application.cs: Undid changes from r37004 which cause problems
24314         on X11
24315
24316 2004-12-09  Ravindra  <rkumar@novell.com>
24317
24318         * ToolBar.cs: Added support for displaying ContextMenu
24319         attached to a button on ToolBar.
24320         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
24321         property.
24322
24323 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
24324
24325         * Label.cs: autosize works in text change and removes unnecessary
24326         invalidate
24327
24328 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
24329
24330         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
24331         remove warnings
24332
24333 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
24334
24335         * XplatUIOSX.cs: Added mouse move/click/grab support
24336         Remove some debugging WriteLines not needed anymore.
24337         Add window resizing/positioning.
24338         Fix visibility on reparenting.
24339
24340 2004-12-08  Peter Bartok  <pbartok@novell.com>
24341
24342         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
24343
24344 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
24345
24346         * XplatUIOSX.cs: Initial checkin
24347         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
24348
24349 2004-12-03  Ravindra <rkumar@novell.com>
24350
24351         * ListView.cs: Added some keybindings and fixed scrolling.
24352         ScrollBars listen to ValueChanged event instead of Scroll
24353         Event. This would let us take care of all changes being
24354         done in the scrollbars' values programmatically or manually.
24355         * ListView.cs (CanMultiselect): Added a check for shift key.
24356         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
24357         * ListViewItem.cs (Clone): Fixed. We need to make a copy
24358         of ListViewSubItemCollection as well.
24359
24360 2004-12-06  Peter Bartok <pbartok@novell.com>
24361
24362         * Control.cs (Parent): Added check and exception to prevent
24363         circular parenting
24364
24365 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
24366
24367         * ListBox.cs: implemented clipping, selection single and multiple,
24368         bug fixing
24369
24370 2004-12-03  Ravindra <rkumar@novell.com>
24371
24372         * ListView.cs (ListView_KeyDown):
24373         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
24374         when CTRL key is pressed.
24375         * ListViewItem.cs (Selected): Fixed setting the property.
24376
24377 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
24378
24379         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
24380
24381         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
24382         MinimizeBox, ShowInTaskbar, TopMost properties.
24383
24384         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
24385         will be implemented).
24386
24387 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
24388
24389         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
24390
24391         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
24392         tests.
24393         
24394         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
24395         
24396         * TreeView.cs: BackColor is Colors.Window.
24397
24398 2004-12-01  Jackson Harper  <jackson@ximian.com>
24399
24400         * TreeView.cs: When resizing the tree if the user is making it
24401         smaller we don't get expose events, so we need to handle adding
24402         the horizontal scrollbar in the size changed handler as well as
24403         the expose handler.
24404
24405 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
24406
24407         * DrawItemState.cs: fixes wrong enum values
24408
24409 2004-12-01  Jackson Harper  <jackson@ximian.com>
24410
24411         * TreeView.cs: Resize the hbar as well as the vbar on resize.
24412
24413 2004-12-01  Jackson Harper  <jackson@ximian.com>
24414
24415         * NodeLabelEditEventArgs.cs:
24416         * NodeLabelEditEventHandler.cs:
24417         * OpenTreeNodeEnumerator.cs:
24418         * TreeNode.cs:
24419         * TreeNodeCollection.cs:
24420         * TreeView.cs:
24421         * TreeViewAction.cs:
24422         * TreeViewCancelEventArgs.cs:
24423         * TreeViewCancelEventHandler.cs:
24424         * TreeViewEventArgs.cs:
24425         * TreeViewEventHandler.cs: Initial implementation.
24426
24427 2004-12-01  Ravindra <rkumar@novell.com>
24428
24429         * ListView.cs (CalculateListView): Fixed scrolling related
24430         calculations. Also, removed some debug statements from other
24431         places.
24432         * ListViewItem.cs: Changed access to 'selected' instance variable
24433         from private to internal.
24434         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
24435
24436 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
24437
24438         * ThemeWin32Classic.cs: remove cache of brush and pens for
24439         specific controls and use the global system, fixes scrollbutton
24440         bugs (for small sizes, disabled, etc)
24441         
24442         * ScrollBar.cs: does not show the thumb for very small controls
24443         (as MS) and allow smaller buttons that the regular size
24444
24445 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
24446
24447         * UpDownBase.cs: Add abstract methods for the interface.
24448         Add new virtual methods (need to be hooked up to TextEntry when it
24449         exists).
24450         Add override methods for most features.
24451         Computes the size, forces the height of the text entry.
24452
24453         * NumericUpDown.cs: Put here the current testing code.
24454
24455         * Set eol-style property on all files that do not have mixed line
24456         endings, to minimize the future problems.  There are still a few
24457         files with mixed endings, and someone should choose whether they
24458         want to move it or not.
24459
24460 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
24461
24462         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
24463         System.Colors
24464         
24465 2004-11-30  Ravindra <rkumar@novell.com>
24466
24467         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
24468         drawing and replaced use of SystemColors by theme colors.
24469         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
24470         * ListView.cs (ListViewItemCollection.Add): Throw exception when
24471         same ListViewItem is being added more than once.
24472
24473 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
24474
24475         * MonthCalendar.cs:
24476           - ControlStyles love to make the control not flicker
24477           
24478 2004-11-30  Peter Bartok  <pbartok@novell.com>
24479
24480         * CharacterCasing.cs: Added
24481
24482 2004-11-29  Peter Bartok  <pbartok@novell.com>
24483
24484         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
24485           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
24486           I am removing these files as they conflict with already completed
24487           work. While it is fantastic to get contributions to MWF, I
24488           respectfully ask that everyone please coordinate their contributions
24489           through mono-winforms-list or #mono-winforms at this time. We're
24490           explicitly avoiding stubbing and don't want controls that don't have
24491           their basic functionality implemented in svn. Please also see
24492           http://www.mono-project.com/contributing/winforms.html
24493
24494
24495 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
24496
24497         * Application.cs (ModalRun): Don't hang after exit.
24498
24499         * Theme.cs: New TreeViewDefaultSize property.
24500
24501         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
24502         with less hardcoded SystemColors constant.
24503         Implemented TreeViewDefaultSize.
24504
24505         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
24506         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
24507
24508
24509 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
24510
24511         * MonthCalendar.cs:
24512           - Fix NextMonthDate and PrevMonthDate click moving calendar
24513
24514 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
24515
24516         * MonthCalendar.cs:
24517           - Fix usage of ScrollChange Property when scrolling months
24518
24519 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
24520
24521         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
24522          - Fixes menu destroying
24523          - Support adding and removing items on already created menus
24524
24525 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
24526
24527         * MonthCalendar.cs:
24528           - Re-worked all bolded dates handling to match win32
24529         * ThemeWin32Classic.cs:
24530           - Fixed rendering with bolded dates
24531
24532 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
24533
24534         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
24535         - Horizontal scroolbar
24536         - Multicolumn
24537         - Fixes
24538
24539
24540 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
24541
24542         * MonthCalendar.cs:
24543           - Fix Usage of MaxSelectionCount from SelectionRange
24544           - Fixed Shift + Cursor Selection
24545           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
24546           - Fixed normal cursor selection to be compat with win32
24547           - Fixed Shift + Mouse Click selection
24548
24549 2004-11-24  Peter Bartok <pbartok@novell.com>
24550
24551         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
24552         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
24553         * XplatUIX11.cs:
24554           - CreatedKeyBoardMsg now updates keystate with Alt key
24555           - Added workaround for timer crash to CheckTimers, Jackson will
24556             develop a proper fix and check in later
24557           - Implemented DispatchMessage
24558           - Removed calling the native window proc from GetMessage (call
24559             now moved to DispatchMessage)
24560
24561         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
24562           the keydata (Fixes bug #69831)
24563
24564         * XplatUIWin32.cs:
24565           - (DispatchMessage): Switched to return IntPtr
24566           - Added DllImport for SetFocus
24567
24568 2004-11-24  Ravindra <rkumar@novell.com>
24569
24570         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
24571         background drawing.
24572         * ListViewItem.cs: Fixed various properties, calculations
24573         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
24574         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
24575         and some internal properties. Fixed MouseDown handler and Paint
24576         method.
24577
24578 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
24579
24580         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
24581
24582 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
24583
24584         * ContainerControl.cs: correct accidental check in of local changes
24585
24586 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
24587
24588         * ThemeWin32Classic.cs:
24589                 - Fixed Drawing Last month in grid (sometimes not showing)
24590         * MonthCalendar.cs:
24591                 - Fixed title width calculation bug (makeing title small)
24592
24593 2004-11-23  Peter Bartok <pbartok@novell.com>
24594
24595         * XplatUIX11.cs:
24596           - Added generation of WM_MOUSEHOVER event
24597           - Added missing assignment of async_method atom
24598           - Fixed WM_ERASEBKGND; now only redraws the exposed area
24599
24600 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
24601
24602         * ThemeWin32Classic.cs:
24603                 - Fixed Drawing of today circle when showtodaycircle not set
24604                 - fixed drawing of first and last month in the grid (gay dates)
24605         * MonthCalendar.cs:
24606                 - Fixed Drawing of today circle
24607                 - Fixed drawing of grady dates
24608                 - Fixed HitTest for today link when ShowToday set to false
24609                 - Fixed DefaultSize to obey ShowToday
24610
24611 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
24612
24613         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
24614         * System.Windows.Forms/Theme.cs
24615         * MonthCalendar.cs: added for MonthCalendar
24616         * SelectionRange.cs: added for MonthCalendar
24617         * Day.cs: added for MonthCalendar: added for MonthCalendar
24618         * DateRangeEventArgs.cs: added for MonthCalendar
24619         * DateRangeEventHandler.cs: added for MonthCalendar
24620
24621 2004-11-22  Ravindra <rkumar@novell.com>
24622
24623         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
24624         property.
24625
24626 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
24627
24628         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
24629         event handler.
24630         
24631         * NumericUpDown.cs: Added new implementation.
24632         * UpDownBase.cs: Added new implementation.
24633
24634         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
24635         implementations.
24636         
24637         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
24638         implementations.
24639
24640         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
24641         methods.
24642
24643 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
24644
24645         * Timer.cs  (Dispose): Should call the base dispose when
24646         overriding.
24647
24648 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
24649
24650         * ScrollBar.cs: updates thumb position when max, min or increment
24651         is changed
24652
24653 2004-11-21  Ravindra <rkumar@novell.com>
24654
24655         * ListView.cs: Implemented item selection, activation and
24656         column header style. Fixed properties to do a redraw, if
24657         required. Added support for MouseHover, DoubleClick, KeyDown
24658         and KeyUp event handling and some minor fixes.
24659         * ListViewItem.cs: Fixed constructor.
24660         * ThemeWin32Classic.cs: Improved drawing for ListView.
24661
24662 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
24663
24664         * ThemeWin32Classic.cs: initial listbox drawing code
24665         * DrawMode.cs: new enumerator
24666         * ListControl.cs: stubbed class
24667         * ListBox.cs: initial implementation
24668         * Theme.cs: new methods definitions
24669         * SelectionMode.cs: new enumerator
24670
24671 2004-11-17  Peter Bartok  <pbartok@novell.com>
24672
24673         * XplatUIWin32.cs: Added double-click events to the class style
24674         * Control.cs (WndProc):
24675           - Added handling of click-count to MouseDown/ MouseUp events.
24676           - Added handling of middle and right mouse buttons
24677           - Removed old debug code
24678
24679 2004-11-17  Jackson Harper  <jackson@ximian.com>
24680
24681         * XplatUIX11.cs: Use the new Mono.Unix namespace.
24682
24683 2004-11-17  Ravindra <rkumar@novell.com>
24684
24685         * ListView.cs: Added event handling for MouseMove/Up/Down.
24686         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
24687         * ThemeWin32Classic.cs: We need to clear the graphics context and
24688         draw column header in a proper state.
24689
24690
24691 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
24692
24693         *  Menu.cs: fixes signature
24694
24695 2004-11-16  Peter Bartok  <pbartok@novell.com>
24696
24697         * XplatUIX11.cs (GetMessage): Implemented generation of
24698           double click mouse messages
24699
24700 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
24701
24702         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
24703         not by menu
24704
24705 2004-11-11  Peter Bartok  <pbartok@novell.com>
24706
24707         * HandleData.cs: Added Visible property
24708         * XplatUIX11.cs (IsVisible): Now uses Visible property from
24709           HandleData
24710         * XplatUIX11.cs: Removed old debug leftovers
24711         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
24712         * Control.cs (WndProc): Removed old debug leftovers,
24713           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
24714           needed WM_SIZE handling
24715
24716 2004-11-11  Jackson Harper  <jackson@ximian.com>
24717
24718         * OwnerDrawPropertyBag.cs:
24719         * TreeViewImageIndexConverter.cs: Initial implementation
24720
24721 2004-11-10  Jackson Harper  <jackson@ximian.com>
24722
24723         * ThemeWin32Classic.cs:
24724         * TabControl.cs: instead of moving tabs by the slider pos just
24725         start drawing at the tab that is offset by the slider. This way
24726         scrolling always moves by exactly one tab.
24727
24728 2004-11-10  Jackson Harper  <jackson@ximian.com>
24729
24730         * TabControl.cs: You can only scroll left when the slider has
24731         already ben moved right.
24732         
24733 2004-11-10  Jackson Harper  <jackson@ximian.com>
24734
24735         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
24736         the clip area.
24737         
24738 2004-11-10  Jackson Harper  <jackson@ximian.com>
24739
24740         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
24741         clip area.
24742         
24743 2004-11-09  Jackson Harper  <jackson@ximian.com>
24744
24745         * TabControl.cs (CalcXPos): New helper method so we can determine
24746         the proper place to start drawing vertical tabs.
24747         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
24748         
24749 2004-11-09  Jackson Harper  <jackson@ximian.com>
24750
24751         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
24752         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
24753         and Bottom, left and right are illegal values for this and
24754         multiline is enabled when the alignment is set to left or right.
24755         (DrawTab): Each alignment block should draw the text itself now
24756         because Left requires special love. Also add rendering for Left
24757         aligned tabs.
24758         
24759 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
24760
24761         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
24762         does not destroy the windows, removes debugging messages
24763
24764 2004-11-09  jba  <jba-mono@optusnet.com.au>
24765
24766         * ThemeWin32Classic.cs
24767         (DrawButtonBase): Fix verticle text rect clipping in windows
24768         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
24769         rendering and incorrect text rect clipping
24770         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
24771         rendering and incorrect text rect clipping
24772         
24773 2004-11-08  Jackson Harper  <jackson@ximian.com>
24774
24775         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
24776         bottom when they are bottom aligned so the bottoms of the tabs get
24777         displayed.
24778         * TabControl.cs (DropRow): Move rows up instead of down when the
24779         tab control is bottom aligned.
24780
24781 2004-11-08 13:59  pbartok
24782
24783         * XplatUIX11.cs:
24784           - Added handling for various window styles
24785           - Added handling for popup windows
24786           - Added SetTopmost handling
24787
24788 2004-11-08 13:55  pbartok
24789
24790         * XplatUIWin32.cs:
24791           - Added argument to SetTopmost method
24792           - Fixed broken ClientToScreen function
24793
24794 2004-11-08 13:53  pbartok
24795
24796         * XplatUIStructs.cs:
24797           - Added missing WS_EX styles
24798
24799 2004-11-08 13:53  pbartok
24800
24801         * XplatUI.cs, XplatUIDriver.cs:
24802           - Added argument to SetTopmost
24803
24804 2004-11-08 13:52  pbartok
24805
24806         * X11Structs.cs:
24807           - Added XSetWindowAttributes structure
24808           - Improved XWindowAttributes structure
24809           - Added SetWindowValuemask enum
24810           - Added window creation arguments enum
24811           - Added gravity enum
24812           - Added Motif hints structure
24813           - Added various Motif flags and enums
24814           - Added PropertyMode enum for property functions
24815
24816 2004-11-08 13:50  pbartok
24817
24818         * Form.cs:
24819           - Fixed arguments for updated SetTopmost method
24820
24821 2004-11-08 13:49  pbartok
24822
24823         * ToolTip.cs:
24824           - Fixed arguments for updated SetTopmost function
24825           - Fixed usage of PointToClient
24826
24827 2004-11-08 13:44  pbartok
24828
24829         * MenuAPI.cs:
24830           - Added Clipping of children and siblings
24831
24832 2004-11-08 13:41  pbartok
24833
24834         * MainMenu.cs:
24835           - Removed SetMenuBarWindow call. We do this in Form.cs
24836
24837 2004-11-08 13:40  jackson
24838
24839         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
24840           scrolling jimmi in the correct location with bottom aligned tabs
24841
24842 2004-11-08 13:36  pbartok
24843
24844         * ContainerControl.cs:
24845           - Implemented BindingContext
24846           - Implemented ParentForm
24847
24848 2004-11-08 12:46  jackson
24849
24850         * TabControl.cs: Put bottom rendered tabs in the right location
24851
24852 2004-11-08 07:15  jordi
24853
24854         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
24855           removes dead code
24856
24857 2004-11-05 17:30  jackson
24858
24859         * TabControl.cs: When selected tabs are expanded make sure they
24860           don't go beyond the edges of the tab control
24861
24862 2004-11-05 14:57  jackson
24863
24864         * TabControl.cs: Reset show_slider so if the control is resized to
24865           a size where it is no longer needed it's not displayed anymore
24866
24867 2004-11-05 13:16  jackson
24868
24869         * TabControl.cs: Make tab pages non visible when added to the
24870           control
24871
24872 2004-11-05 12:42  jackson
24873
24874         * TabControl.cs: Implement SizeMode.FillToRight
24875
24876 2004-11-05 12:16  jackson
24877
24878         * Control.cs: Do not call CreateHandle if the handle is already
24879           created
24880
24881 2004-11-05 11:46  jackson
24882
24883         * TabControl.cs: Remove superflous call to CalcTabRows
24884
24885 2004-11-05 09:07  jackson
24886
24887         * XplatUIX11.cs: Update for Mono.Posix changes
24888
24889 2004-11-05 07:00  ravindra
24890
24891         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
24892           scrolling.
24893
24894 2004-11-04 22:47  jba
24895
24896         * ThemeWin32Classic.cs:
24897           - Fix Button rendering for FlatStyle = Flat or Popup
24898           - Fix RadioButton and CheckBox rendering when Appearance = Button
24899             (normal and flatstyle).
24900           - Correct outer rectangle color when drawing focus rectangle
24901           - Adjust button bounds to be 1 px smaller when focused
24902           - Make button not draw sunken 3d border when pushed (windows compat)
24903           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
24904           - Offset the text in RadioButton and Checkbox when being rendered as
24905           a button.
24906           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
24907           radiobuttons
24908           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
24909           - Fixed disabled text rendering for normally rendered radiobuttons
24910
24911 2004-11-04 10:26  jackson
24912
24913         * TabControl.cs: Recalculate tab rows when resizing
24914
24915 2004-11-04 07:47  jordi
24916
24917         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
24918           collection completion, drawing issues, missing features
24919
24920 2004-11-04 05:03  ravindra
24921
24922         * ScrollBar.cs:
24923                 - We need to recalculate the Thumb area when
24924                 LargeChange/maximum/minimum values are changed.
24925           - We set the 'pos' in UpdatePos() method to minimum, if it's less
24926                 than minimum. This is required to handle the case if large_change is
24927                 more than max, and use LargeChange property instead of large_change
24928                 variable.
24929           - We return max+1 when large_change is more than max, like MS does.
24930
24931 2004-11-04 04:29  ravindra
24932
24933         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
24934                 - Changed default value signatures (prefixed all with ListView).
24935                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
24936                 ListView.
24937           - Fixed calculations for ListViewItem and implemented Clone()
24938           method.
24939
24940 2004-11-04 04:26  ravindra
24941
24942         * Theme.cs, ThemeWin32Classic.cs:
24943                 - Changed default ListView values signatures (prefixed all with
24944                 ListView).
24945           - Fixed default size values for VScrollBar and HScrollBar.
24946                 - Fixed DrawListViewItem method.
24947
24948 2004-11-04 04:05  ravindra
24949
24950         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
24951
24952 2004-11-04 04:04  ravindra
24953
24954         * ImageList.cs: Implemented the missing overload for Draw method.
24955
24956 2004-11-03 19:29  jackson
24957
24958         * TabControl.cs: Handle dropping rows on selection properly
24959
24960 2004-11-03 11:59  jackson
24961
24962         * TabControl.cs: remove debug code
24963
24964 2004-11-03 11:52  jackson
24965
24966         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
24967           the scrolly widgerywoo
24968
24969 2004-11-02 13:52  jackson
24970
24971         * TabControl.cs: Resize the tab pages and tabs when the tab control
24972           is resized
24973
24974 2004-11-02 13:40  jackson
24975
24976         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
24977           selected tab to the bottom
24978
24979 2004-11-02 13:39  jackson
24980
24981         * TabPage.cs: Store the tab pages row
24982
24983 2004-11-02 12:33  jordi
24984
24985         * MenuItem.cs: fixes handle creation
24986
24987 2004-11-02 11:42  jackson
24988
24989         * TabControl.cs: signature fix
24990
24991 2004-11-02 08:56  jackson
24992
24993         * TabControl.cs: Calculate whether the tab is on an edge properly.
24994           Remove top secret debugging code
24995
24996 2004-11-01 19:57  jackson
24997
24998         * TabControl.cs: Add click handling, and proper sizing
24999
25000 2004-11-01 19:47  jackson
25001
25002         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
25003           tab controls
25004
25005 2004-11-01 19:39  jackson
25006
25007         * TabPage.cs: add internal property to store the bounds of a tab
25008           page
25009
25010 2004-10-30 04:23  ravindra
25011
25012         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
25013           values.
25014
25015 2004-10-30 04:21  ravindra
25016
25017         * ListView.cs, ListViewItem.cs: Added support for scrolling and
25018           fixed calculations.
25019
25020 2004-10-30 03:06  pbartok
25021
25022         * XplatUIX11.cs:
25023           - Removed extension of DllImported libs
25024
25025 2004-10-29 09:55  jordi
25026
25027         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
25028           navigation, itemcollection completion, menu fixes
25029
25030 2004-10-27 22:58  pbartok
25031
25032         * XplatUIX11.cs:
25033           - Now throws a nice error message when no X display could be opened
25034
25035 2004-10-26 13:51  jordi
25036
25037         * ListView.cs: removes warning
25038
25039 2004-10-26 03:55  ravindra
25040
25041         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
25042           ThemeWin32Classic.cs: Some formatting for my last checkins.
25043
25044 2004-10-26 03:36  ravindra
25045
25046         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
25047           control and default values.
25048
25049 2004-10-26 03:35  ravindra
25050
25051         * Theme.cs: Added some default values for ListView control.
25052
25053 2004-10-26 03:33  ravindra
25054
25055         * ToolBar.cs: ToolBar should use the user specified button size, if
25056           there is any. Added a size_specified flag for the same.
25057
25058 2004-10-26 03:33  ravindra
25059
25060         * ColumnHeader.cs: Added some internal members and calculations for
25061           ColumnHeader.
25062
25063 2004-10-26 03:32  ravindra
25064
25065         * ListViewItem.cs: Calculations for ListViewItem.
25066
25067 2004-10-26 03:31  ravindra
25068
25069         * ListView.cs: Added some internal members and calculations for
25070           ListView.
25071
25072 2004-10-22 13:31  jordi
25073
25074         * MenuAPI.cs: speedup menus drawing
25075
25076 2004-10-22 13:16  jackson
25077
25078         * XplatUIX11.cs: Make sure to update exposed regions when adding an
25079           expose event
25080
25081 2004-10-22 11:49  jackson
25082
25083         * Control.cs: oops
25084
25085 2004-10-22 11:41  jackson
25086
25087         * Control.cs: Check to see if the window should have its background
25088           repainted by X when drawing.
25089
25090 2004-10-22 11:31  jackson
25091
25092         * XplatUIX11.cs: When invalidating areas only use XClearArea if
25093           clear is true, this way we do not get flicker from X repainting the
25094           background
25095
25096 2004-10-22 11:28  jackson
25097
25098         * XEventQueue.cs: Queue properly
25099
25100 2004-10-21 09:38  jackson
25101
25102         * XEventQueue.cs: Fix access modifier
25103
25104 2004-10-21 09:36  jackson
25105
25106         * XEventQueue.cs: Don't loose messages
25107
25108 2004-10-21 09:22  jackson
25109
25110         * XEventQueue.cs: Don't loose messages
25111
25112 2004-10-20 04:15  jordi
25113
25114         * BootMode.cs: enum need it by SystemInfo
25115
25116 2004-10-19 21:58  pbartok
25117
25118         * XplatUIWin32.cs:
25119           - Small sanity check
25120
25121 2004-10-19 21:56  pbartok
25122
25123         * Form.cs:
25124           - Added private FormParentWindow class which acts as the container
25125             for our form and as the non-client area where menus are drawn
25126           - Added/Moved required tie-ins to Jordi's menus
25127           - Fixed/Implemented the FormStartPosition functionality
25128
25129 2004-10-19 21:52  pbartok
25130
25131         * Control.cs:
25132           - Removed unneeded locals
25133           - Added code to all size and location properties to understand and
25134             deal with the parent container of Form
25135
25136 2004-10-19 21:33  pbartok
25137
25138         * Application.cs:
25139           - Fixed to deal with new Form subclasses for menus
25140
25141 2004-10-19 17:48  jackson
25142
25143         * XEventQueue.cs: commit correct version of file
25144
25145 2004-10-19 16:50  jackson
25146
25147         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
25148
25149 2004-10-19 16:15  jordi
25150
25151         * MenuAPI.cs: MenuBarCalcSize returns the height
25152
25153 2004-10-19 08:31  pbartok
25154
25155         * Control.cs:
25156           - Added missing call to PreProcessMessage before calling OnXXXKey
25157           methods
25158
25159 2004-10-19 00:04  ravindra
25160
25161         * ToolTip.cs: Fixed constructor.
25162
25163 2004-10-18 09:31  jordi
25164
25165         * MenuAPI.cs: menuitems in menubars do not have shortcuts
25166
25167 2004-10-18 09:26  jordi
25168
25169         * MenuItem.cs: fixes MenuItem class signature
25170
25171 2004-10-18 08:56  jordi
25172
25173         * MenuAPI.cs: prevents windows from showing in the taskbar
25174
25175 2004-10-18 00:28  ravindra
25176
25177         * ToolTip.cs: Suppressed a warning message.
25178
25179 2004-10-18 00:27  ravindra
25180
25181         * Control.cs: Default value of visible property must be true.
25182
25183 2004-10-17 23:19  pbartok
25184
25185         * ToolTip.cs:
25186           - Complete implementation
25187
25188 2004-10-17 23:19  pbartok
25189
25190         * XplatUIX11.cs:
25191           - Added EnableWindow method
25192           - Added SetModal stub
25193           - Added generation of WM_ACTIVATE message (still needs testing)
25194           - Added SetTopMost stub
25195           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
25196
25197 2004-10-17 23:17  pbartok
25198
25199         * XplatUIWin32.cs:
25200           - Removed VirtualKeys to XplatUIStructs
25201           - Implemented SetTopMost method
25202           - Implemented EnableWindow method
25203           - Bugfix in ScreenToClient()
25204           - Bugfixes in ClientToScreen()
25205
25206 2004-10-17 22:51  pbartok
25207
25208         * XplatUIStructs.cs:
25209           - Added WS_EX styles to WindowStyles enumeration
25210
25211 2004-10-17 22:50  pbartok
25212
25213         * XplatUI.cs, XplatUIDriver.cs:
25214           - Added method for enabling/disabling windows
25215           - Added method for setting window modality
25216           - Added method for setting topmost window
25217
25218 2004-10-17 22:49  pbartok
25219
25220         * ThemeWin32Classic.cs:
25221           - Added ToolTip drawing code
25222
25223 2004-10-17 22:49  pbartok
25224
25225         * Theme.cs:
25226           - Added ToolTip abstracts
25227
25228 2004-10-17 22:47  pbartok
25229
25230         * Form.cs:
25231           - Fixed Form.ControlCollection to handle owner relations
25232           - Added Owner/OwnedForms handling
25233           - Implemented Z-Ordering for owned forms
25234           - Removed unneeded private overload of ShowDialog
25235           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
25236             so I hope)
25237           - Fixed Close(), had wrong default
25238           - Added firing of OnLoad event
25239           - Added some commented out debug code for Ownership handling
25240
25241 2004-10-17 22:16  pbartok
25242
25243         * Control.cs:
25244           - Fixed/implemented flat list of controls
25245
25246 2004-10-17 22:14  pbartok
25247
25248         * Application.cs:
25249           - Added code to simulate modal dialogs on Win32
25250
25251 2004-10-17 16:11  jordi
25252
25253         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
25254           mouse event
25255
25256 2004-10-17 13:39  jordi
25257
25258         * MenuAPI.cs: menu drawing fixes
25259
25260 2004-10-15 09:10  ravindra
25261
25262         * StructFormat.cs: General Enum.
25263
25264 2004-10-15 09:09  ravindra
25265
25266         * SizeGripStyle.cs: Enum for Form.
25267
25268 2004-10-15 09:08  ravindra
25269
25270         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
25271           in Theme for ListView.
25272
25273 2004-10-15 09:06  ravindra
25274
25275         * ColumnHeader.cs: Flushing some formatting changes.
25276
25277 2004-10-15 09:05  ravindra
25278
25279         * ListViewItem.cs: Implemented GetBounds method and fixed coding
25280           style.
25281
25282 2004-10-15 09:03  ravindra
25283
25284         * ListView.cs: Implemented Paint method and fixed coding style.
25285
25286 2004-10-15 07:34  jordi
25287
25288         * MenuAPI.cs: fix for X11
25289
25290 2004-10-15 07:32  ravindra
25291
25292         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
25293                 - Renamed Paint() method to Draw() for clarity. Also, moved
25294                 DrawImage() to OnPaint().
25295
25296 2004-10-15 07:25  ravindra
25297
25298         * CheckBox.cs, RadioButton.cs:
25299                 - Removed Redraw (), we get it from ButtonBase.
25300                 - Implemented Paint (), to do class specific painting.
25301
25302 2004-10-15 07:16  ravindra
25303
25304         * ButtonBase.cs:
25305                 - Redraw () is not virtual now.
25306                 - Added an internal virtual method Paint (), so that
25307                 derived classes can do their painting on their own.
25308                 - Modified OnPaint () to call Paint ().
25309
25310 2004-10-15 06:43  jordi
25311
25312         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
25313           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
25314
25315 2004-10-15 00:30  ravindra
25316
25317         * MessageBox.cs:
25318                 - MessageBox on windows does not have min/max buttons.
25319                 This change in CreateParams fixes this on Windows. We
25320                 still need to implement this windowstyle behavior in
25321                 our X11 driver.
25322
25323 2004-10-14 05:14  ravindra
25324
25325         * ToolBar.cs:
25326                 - Changed Redraw () to do a Refresh () always.
25327                 - Fixed the MouseMove event handling when mouse is pressed,
25328                 ie drag event handling.
25329                 - Replaced the usage of ToolBarButton.Pressed property to
25330                 ToolBarButton.pressed internal variable.
25331
25332 2004-10-14 05:10  ravindra
25333
25334         * ToolBarButton.cs:
25335                 - Added an internal member 'inside' to handle mouse move
25336                 with mouse pressed ie mouse drag event.
25337                 - Changed 'Pressed' property to return true only when
25338                 'inside' and 'pressed' are both true.
25339                 - Some coding style love.
25340
25341 2004-10-14 00:17  ravindra
25342
25343         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
25344           public method.
25345
25346 2004-10-14 00:15  ravindra
25347
25348         * ButtonBase.cs: Redraw () related improvements.
25349
25350 2004-10-14 00:14  ravindra
25351
25352         * MessageBox.cs: Moved InitFormSize () out of Paint method and
25353           removed unnecessary calls to Button.Show () method.
25354
25355 2004-10-13 17:50  pbartok
25356
25357         * XplatUIX11.cs:
25358           - Formatting fix
25359           - Removed destroying of window until we solve the problem of X
25360             destroying the window before us on shutdown
25361
25362 2004-10-13 16:32  pbartok
25363
25364         * ButtonBase.cs:
25365           - Now Redraws on MouseUp for FlatStyle Flat and Popup
25366
25367 2004-10-13 14:18  pbartok
25368
25369         * XplatUIX11.cs:
25370           - Added code to destroy the X window
25371
25372 2004-10-13 14:18  pbartok
25373
25374         * XplatUIWin32.cs:
25375           - Added code to destroy a window
25376
25377 2004-10-13 14:12  pbartok
25378
25379         * ButtonBase.cs:
25380           - Added the Redraw on Resize that got dropped in the last rev
25381
25382 2004-10-13 09:06  pbartok
25383
25384         * ThemeWin32Classic.cs:
25385           - Path from John BouAntoun:
25386             * Fix check rendering (centre correctly for normal style, offset
25387               correctly for FlatStyle).
25388             * Fix border color usage (use backcolor) for FlatStyle.Popup
25389             * Use checkbox.Capture instead of checkbox.is_pressed when
25390               rendering flatstyle states.
25391
25392 2004-10-12 21:48  pbartok
25393
25394         * ThemeWin32Classic.cs:
25395           - Removed all occurences of SystemColors and replaced them with the
25396             matching theme color
25397
25398 2004-10-12 21:41  pbartok
25399
25400         * ThemeWin32Classic.cs:
25401           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
25402             him using the function for flatstyle drawing
25403           - Changed functions to use the new version of CPDrawBorder3D
25404
25405 2004-10-12 21:15  pbartok
25406
25407         * ControlPaint.cs:
25408           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
25409             match MS documentation. They need to return defined colors if the
25410             passed color matches the configured control color. Thanks to John
25411             BouAntoun for pointing this out.
25412
25413 2004-10-12 20:57  pbartok
25414
25415         * Control.cs:
25416           - Fix from John BouAntoun: Raise ForeColorChanged event when text
25417             color is changed
25418
25419 2004-10-12 20:46  pbartok
25420
25421         * CheckBox.cs:
25422           - Fix from John BouAntoun: Now properly sets the Appearance property
25423
25424 2004-10-12 20:45  pbartok
25425
25426         * ThemeWin32Classic.cs:
25427           - Fixes from John BouAntoun: now handles forecolors and backcolors
25428             for flatstyle rendered controls much better; It also fixes normal
25429             checkbox rendering when pushed or disabled.
25430
25431 2004-10-08 02:50  jordi
25432
25433         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
25434           work
25435
25436 2004-10-07 08:56  jordi
25437
25438         * ThemeWin32Classic.cs: Removes deletion of cached brushes
25439
25440 2004-10-06 03:59  jordi
25441
25442         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
25443           XplatUIWin32.cs: removes warnings from compilation
25444
25445 2004-10-05 12:23  jackson
25446
25447         * RadioButton.cs: Fix ctor
25448
25449 2004-10-05 11:10  pbartok
25450
25451         * MessageBox.cs:
25452           - Partial implementation by Benjamin Dasnois
25453
25454 2004-10-05 10:15  jackson
25455
25456         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
25457           by John BouAntoun
25458
25459 2004-10-05 03:07  ravindra
25460
25461         * ToolBar.cs:
25462                 - Removed a private method, Draw ().
25463                 - Fixed the ButtonDropDown event handling.
25464                 - Fixed MouseMove event handling.
25465
25466 2004-10-05 03:04  ravindra
25467
25468         * ThemeWin32Classic.cs:
25469                 - Added DrawListView method and ListViewDefaultSize property.
25470                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
25471                 - Changed DOS style CRLF to Unix format (dos2unix).
25472
25473 2004-10-05 03:03  ravindra
25474
25475         * Theme.cs:
25476                 - Added DrawListView method and ListViewDefaultSize property.
25477
25478 2004-10-05 02:42  ravindra
25479
25480         * ToolBarButton.cs: Added an internal member dd_pressed to handle
25481           clicks on DropDown arrow.
25482
25483 2004-10-04 22:56  jackson
25484
25485         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
25486           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
25487           Control handle the buffers, derived classes should not have to
25488           CreateBuffers themselves.
25489
25490 2004-10-04 21:20  jackson
25491
25492         * StatusBar.cs: The control handles resizing the buffers now.
25493
25494 2004-10-04 21:18  jackson
25495
25496         * Control.cs: When resizing the buffers should be invalidated. This
25497           should be handled in Control not in derived classes.
25498
25499 2004-10-04 14:45  jackson
25500
25501         * TabPage.cs: oops
25502
25503 2004-10-04 02:14  pbartok
25504
25505         * LeftRightAlignment.cs:
25506           - Initial check-in
25507
25508 2004-10-04 01:09  jordi
25509
25510         * ThemeWin32Classic.cs: fixes right button position causing right
25511           button not showing on horizontal scrollbars
25512
25513 2004-10-02 13:12  pbartok
25514
25515         * XplatUIX11.cs:
25516           - Simplified the Invalidate method by using an X call instead of
25517             generating the expose ourselves
25518           - Added an expose when the window background is changed
25519           - Implemented ClientToScreen method
25520
25521 2004-10-02 13:08  pbartok
25522
25523         * XplatUIWin32.cs:
25524           - Added Win32EnableWindow method (test for implementing modal
25525           dialogs)
25526           - Added ClientToScreen method and imports
25527
25528 2004-10-02 13:07  pbartok
25529
25530         * XplatUI.cs, XplatUIDriver.cs:
25531           - Added ClientToScreen coordinate translation method
25532
25533 2004-10-02 13:06  pbartok
25534
25535         * KeyPressEventArgs.cs:
25536           - Fixed access level for constructor
25537
25538 2004-10-02 13:06  pbartok
25539
25540         * NativeWindow.cs:
25541           - Changed access level for the window_collection hash table
25542
25543 2004-10-02 13:05  pbartok
25544
25545         * Form.cs:
25546           - Added KeyPreview property
25547           - Added Menu property (still incomplete, pending Jordi's menu work)
25548           - Implemented ProcessCmdKey
25549           - Implemented ProcessDialogKey
25550           - Implemented ProcessKeyPreview
25551
25552 2004-10-02 13:02  pbartok
25553
25554         * Control.cs:
25555           - Added private method to get the Control object from the window
25556           handle
25557           - Implemented ContextMenu property
25558           - Implemented PointToScreen
25559           - Implemented PreProcessMessage
25560           - Implemented IsInputChar
25561           - Implemented IsInputKey
25562           - Implemented ProcessCmdKey
25563           - Completed ProcessKeyEventArgs
25564           - Fixed message loop to call the proper chain of functions on key
25565           events
25566           - Implemented ProcessDialogChar
25567           - Implemented ProcessDialogKey
25568           - Implemented ProcessKeyMessage
25569           - Implemented ProcessKeyPreview
25570           - Added RaiseDragEvent stub (MS internal method)
25571           - Added RaiseKeyEvent stub (MS internal method)
25572           - Added RaiseMouseEvent stub (MS Internal method)
25573           - Added RaisePaintEvent stub (MS Internal method)
25574           - Added ResetMouseEventArgs stub (MS Internal method)
25575           - Implemented RtlTranslateAlignment
25576           - Implemented RtlTranslateContent
25577           - Implemented RtlTranslateHorizontal
25578           - Implemented RtlTranslateLeftRight
25579           - Added generation of KeyPress event
25580
25581 2004-10-02 05:57  ravindra
25582
25583         * ListViewItem.cs: Added attributes.
25584
25585 2004-10-02 05:32  ravindra
25586
25587         * ListView.cs: Added attributes.
25588
25589 2004-10-01 11:53  jackson
25590
25591         * Form.cs: Implement the Close method so work on MessageBox can
25592           continue.
25593
25594 2004-09-30 14:06  pbartok
25595
25596         * XplatUIX11.cs:
25597           - Bug fixes
25598
25599 2004-09-30 11:34  jackson
25600
25601         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
25602
25603 2004-09-30 07:26  ravindra
25604
25605         * ListViewItemConverter.cs: Converter for ListViewItem.
25606
25607 2004-09-30 07:26  ravindra
25608
25609         * SortOrder.cs: Enum for ListView control.
25610
25611 2004-09-30 07:25  ravindra
25612
25613         * ColumnHeader.cs: Supporting class for ListView control.
25614
25615 2004-09-30 07:24  ravindra
25616
25617         * ListView.cs, ListViewItem.cs: Initial implementation.
25618
25619 2004-09-30 07:20  ravindra
25620
25621         * ItemActivation.cs: Enum for ListView Control.
25622
25623 2004-09-29 20:29  pbartok
25624
25625         * XplatUIX11.cs:
25626           - Added lookup of pixel value for background color; tries to get a
25627             color 'close' to the requested color, it avoids having to create a
25628             colormap.  Depending on the display this could mean the used color
25629             is slightly off the desired color. Might have to change it to a more
25630             resource intensive colormap approach, but it will work as a
25631           workaround to avoid red screens.
25632
25633 2004-09-29 14:27  jackson
25634
25635         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
25636
25637 2004-09-28 12:44  pbartok
25638
25639         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
25640           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
25641           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
25642           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
25643           TrackBar.cs, VScrollBar.cs:
25644           - Streamlined Theme interfaces:
25645             * Each DrawXXX method for a control now is passed the object for
25646               the control to be drawn in order to allow accessing any state the
25647               theme might require
25648
25649             * ControlPaint methods for the theme now have a CP prefix to avoid
25650               name clashes with the Draw methods for controls
25651
25652             * Every control now retrieves it's DefaultSize from the current
25653             theme
25654
25655 2004-09-28 12:17  jackson
25656
25657         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
25658           drawing
25659
25660 2004-09-24 14:57  jackson
25661
25662         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
25663           Gives us a nice little performance boost.
25664
25665 2004-09-24 12:02  jackson
25666
25667         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
25668           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
25669           Control and supporting classes. Initial checkin
25670
25671 2004-09-23 13:08  jackson
25672
25673         * Form.cs: Temp build fixage
25674
25675 2004-09-23 01:39  ravindra
25676
25677         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
25678           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
25679           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
25680           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
25681           EventHandlers needed by ListView Control.
25682
25683 2004-09-22 14:12  pbartok
25684
25685         * ScrollableControl.cs:
25686           - Implemented DockPadding property
25687           - Implemented AutoScroll property
25688           - Implemented AutoScrollMargin property
25689           - Implemented AutoScrollMinSize property
25690           - Implemented AutoScrollPosition property
25691           - Implemented DisplayRectangle property (still incomplete)
25692           - Implemented CreateParams property
25693           - Implemented HScroll property
25694           - Implemented VScroll property
25695           - Implemented OnVisibleChanged property
25696
25697 2004-09-22 14:09  pbartok
25698
25699         * Form.cs:
25700           - Added Form.ControllCollection class
25701           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
25702             RemoveOwnedForm (still incomplete, missing on-top and common
25703             minimize/maximize behaviour)
25704           - Added StartPosition property (still incomplete, does not use when
25705             creating the form)
25706           - Added ShowDialog() methods (still incomplete, missing forcing the
25707             dialog modal)
25708
25709 2004-09-22 14:05  pbartok
25710
25711         * Application.cs:
25712           - Added message loop for modal dialogs
25713
25714 2004-09-22 14:02  pbartok
25715
25716         * GroupBox.cs:
25717           - Fixed wrong types for events
25718
25719 2004-09-22 14:00  pbartok
25720
25721         * Shortcut.cs, FormWindowState.cs:
25722           - Fixed wrong values
25723
25724 2004-09-22 12:01  jackson
25725
25726         * Control.cs: Text is never null
25727
25728 2004-09-20 22:14  pbartok
25729
25730         * XplatUIWin32.cs:
25731           - Fixed accessibility level for Idle handler
25732
25733 2004-09-20 18:54  jackson
25734
25735         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
25736           XplatUIX11.cs: New message loop that uses poll so we don't get a
25737           busy loop
25738
25739 2004-09-17 10:43  pbartok
25740
25741         * ScrollBar.cs:
25742           - Fixed behaviour of arrow buttons. Now properly behaves like
25743             Buttons (and like Microsoft's scrollbar arrow buttons)
25744
25745 2004-09-17 10:14  pbartok
25746
25747         * ScrollBar.cs:
25748           - Added missing release of keyboard/mouse capture
25749
25750 2004-09-17 06:18  jordi
25751
25752         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
25753           Theme.cs: Very early menu support
25754
25755 2004-09-16 17:45  pbartok
25756
25757         * XplatUIWin32.cs:
25758           - Fixed sending a window to the front
25759           - Added overload for SetWindowPos to avoid casting
25760
25761 2004-09-16 17:44  pbartok
25762
25763         * Control.cs:
25764           - Added SendToBack and BringToFront methods
25765
25766 2004-09-16 07:00  ravindra
25767
25768         * Copyright: Added Novell URL.
25769
25770 2004-09-16 07:00  ravindra
25771
25772         * ToolBar.cs: Invalidate should be done before redrawing.
25773
25774 2004-09-15 21:19  ravindra
25775
25776         * ColumnHeaderStyle.cs: Enum for ListView Control.
25777
25778 2004-09-15 21:18  ravindra
25779
25780         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
25781           ListView Control.
25782
25783 2004-09-13 18:26  jackson
25784
25785         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
25786           properly
25787
25788 2004-09-13 18:13  jackson
25789
25790         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
25791           a second thread and post messages into the main threads message
25792           queue. This makes timing much more consistent. Both win2K and XP
25793           have a minimum timer value of 15 milliseconds, so we now do this
25794           too.
25795
25796 2004-09-13 15:18  pbartok
25797
25798         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
25799           XplatUIX11.cs:
25800           - Added Z-Ordering methods
25801
25802 2004-09-13 10:56  pbartok
25803
25804         * Form.cs:
25805           - Fixed #region names
25806           - Moved properties and methods into their proper #regions
25807
25808 2004-09-13 10:51  pbartok
25809
25810         * Form.cs:
25811           - Added Accept and CancelButton properties
25812           - Added ProcessDialogKey() method
25813
25814 2004-09-13 08:18  pbartok
25815
25816         * IWindowTarget.cs:
25817           - Initial check-in
25818
25819 2004-09-10 21:50  pbartok
25820
25821         * Control.cs:
25822           - Added DoDragDrop() [incomplete]
25823           - Properly implemented 'Visible' handling
25824           - Added SetVisibleCore()
25825           - Implemented FindChildAtPoint()
25826           - Implemented GetContainerControl()
25827           - Implemented Hide()
25828
25829 2004-09-10 19:28  pbartok
25830
25831         * Control.cs:
25832           - Moved methods into their appropriate #regions
25833           - Reordered methods within regions alphabetically
25834
25835 2004-09-10 18:57  pbartok
25836
25837         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
25838           - Added method to retrieve text from window
25839
25840 2004-09-10 18:56  pbartok
25841
25842         * Control.cs:
25843           - Moved some internal functions into the internal region
25844           - Implemented FontHeight
25845           - Implemented RenderRightToLeft
25846           - Implemented ResizeRedraw
25847           - Implemented ShowFocusCues
25848           - Implemented ShowKeyboardCues
25849           - Implemented FromChildHandle
25850           - Implemented FromHandle
25851           - Implemented IsMnemonic
25852           - Implemented ReflectMessage
25853           - All public and protected Static Methods are now complete
25854
25855 2004-09-10 16:54  pbartok
25856
25857         * Control.cs:
25858           - Implemented remaining missing public instance properties
25859           - Alphabetized some out of order properties
25860
25861 2004-09-10 05:51  ravindra
25862
25863         * PictureBox.cs: Added a check for null image.
25864
25865 2004-09-10 00:59  jordi
25866
25867         * GroupBox.cs: remove cvs tag
25868
25869 2004-09-09 05:25  ravindra
25870
25871         * ToolBar.cs: Make redraw accessible from ToolBarButton.
25872
25873 2004-09-09 05:23  ravindra
25874
25875         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
25876           parent redraw.
25877
25878 2004-09-09 02:28  pbartok
25879
25880         * ThemeWin32Classic.cs:
25881           - Improve disabled string look
25882
25883 2004-09-09 01:15  jordi
25884
25885         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
25886           args and handler
25887
25888 2004-09-08 23:56  ravindra
25889
25890         * ItemBoundsPortion.cs: It's enum, not a class!
25891
25892 2004-09-08 23:47  ravindra
25893
25894         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
25895           Enums for Form.
25896
25897 2004-09-08 21:13  ravindra
25898
25899         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
25900           ListView control.
25901
25902 2004-09-08 21:03  ravindra
25903
25904         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
25905           avoid crash.
25906
25907 2004-09-08 21:01  ravindra
25908
25909         * ScrollableControl.cs: Removed unreachable code.
25910
25911 2004-09-08 06:45  jordi
25912
25913         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
25914
25915 2004-09-08 01:00  jackson
25916
25917         * XplatUIX11.cs: Only run the timers when updating the message
25918           queue. This effectively gives X messages a higher priority then
25919           timer messages. Timers still need love though
25920
25921 2004-09-07 14:01  jackson
25922
25923         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
25924           this for us and the handle is no longer valid.
25925
25926 2004-09-07 13:59  jackson
25927
25928         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
25929           loop that manages to not crash. TODO: Add poll and cleanup timers
25930
25931 2004-09-07 11:12  jordi
25932
25933         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
25934
25935 2004-09-07 03:40  jordi
25936
25937         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
25938           fixes, methods, multiple links
25939
25940 2004-09-06 06:55  jordi
25941
25942         * Control.cs: Caches ClientRectangle rectangle value
25943
25944 2004-09-05 02:03  jordi
25945
25946         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
25947           certain situations
25948
25949 2004-09-04 11:10  jordi
25950
25951         * Label.cs: Refresh when font changed
25952
25953 2004-09-02 16:24  pbartok
25954
25955         * Control.cs:
25956           - Added sanity check to creation of double buffer bitmap
25957
25958 2004-09-02 16:24  pbartok
25959
25960         * ButtonBase.cs:
25961           - Fixed selection of text color
25962           - Fixed handling of resize event; now properly recreates double
25963             buffering bitmap
25964           - Added missing assignment of TextAlignment
25965           - Added proper default for TextAlignment
25966
25967 2004-09-02 14:26  pbartok
25968
25969         * RadioButton.cs:
25970           - Added missing RadioButton.RadioButtonAccessibleObject class
25971
25972 2004-09-02 14:26  pbartok
25973
25974         * Control.cs:
25975           - Added missing Control.ControlAccessibleObject class
25976           - Started to implement Select()ion mechanisms, still very incomplete
25977
25978 2004-09-02 14:25  pbartok
25979
25980         * AccessibleObject.cs:
25981           - Added missing methods
25982
25983 2004-09-02 14:23  pbartok
25984
25985         * AccessibleNavigation.cs, AccessibleSelection.cs:
25986           - Initial check-in
25987
25988 2004-09-02 10:32  jordi
25989
25990         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
25991           pool for pens, brushes, and hatchbruses
25992
25993 2004-09-01 15:30  jackson
25994
25995         * StatusBar.cs: Fix typo
25996
25997 2004-09-01 14:44  pbartok
25998
25999         * RadioButton.cs:
26000           - Fixed state
26001
26002 2004-09-01 14:39  pbartok
26003
26004         * Button.cs, RadioButton.cs:
26005           - Functional initial check-in
26006
26007 2004-09-01 14:01  pbartok
26008
26009         * CheckBox.cs:
26010           - Added missing default
26011           - Added missing region mark
26012
26013 2004-09-01 09:10  jordi
26014
26015         * Label.cs: fixes method signatures, new methods, events, fixes
26016           autosize
26017
26018 2004-09-01 07:19  jordi
26019
26020         * Control.cs: Init string variables with an empty object
26021
26022 2004-09-01 04:20  jordi
26023
26024         * Control.cs: fires OnFontChanged event
26025
26026 2004-08-31 20:07  pbartok
26027
26028         * ButtonBase.cs:
26029           - Enabled display of strings
26030
26031 2004-08-31 20:05  pbartok
26032
26033         * Form.cs:
26034           - Added (partial) implementation of DialogResult; rest needs to be
26035             implemented when the modal loop code is done
26036
26037 2004-08-31 19:55  pbartok
26038
26039         * CheckBox.cs:
26040           - Fixed to match the removal of the needs_redraw concept
26041
26042 2004-08-31 19:55  pbartok
26043
26044         * ButtonBase.cs:
26045           - Removed the rather odd split between 'needs redraw' and redrawing
26046           - Now handles the events that require regeneration (ambient
26047             properties and size)
26048
26049 2004-08-31 19:41  pbartok
26050
26051         * Control.cs:
26052           - Added firing of BackColorChanged event
26053           - Added TopLevelControl property
26054           - Fixed handling of WM_ERASEBKGRND message
26055
26056 2004-08-31 12:49  pbartok
26057
26058         * ButtonBase.cs:
26059           - Removed debug
26060           - Minor fixes
26061
26062 2004-08-31 12:48  pbartok
26063
26064         * CheckBox.cs:
26065           - Finished (famous last words)
26066
26067 2004-08-31 04:35  jordi
26068
26069         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
26070           scrolling bugs, adds new methods
26071
26072 2004-08-30 14:42  pbartok
26073
26074         * CheckBox.cs:
26075           - Implemented CheckBox drawing code
26076
26077 2004-08-30 14:42  pbartok
26078
26079         * ButtonBase.cs:
26080           - Made Redraw() and CheckRedraw() virtual
26081           - Improved mouse up/down/move logic to properly track buttons
26082
26083 2004-08-30 09:44  pbartok
26084
26085         * CheckBox.cs:
26086           - Updated to fix broken build. Not complete yet.
26087
26088 2004-08-30 09:28  pbartok
26089
26090         * CheckState.cs:
26091           - Initial checkin
26092
26093 2004-08-30 09:17  pbartok
26094
26095         * Appearance.cs:
26096           - Initial check-in
26097
26098 2004-08-27 16:12  ravindra
26099
26100         * ToolBarButton.cs: Added TypeConverter attribute.
26101
26102 2004-08-27 16:07  ravindra
26103
26104         * ImageIndexConverter.cs: Implemented.
26105
26106 2004-08-27 14:17  pbartok
26107
26108         * Control.cs:
26109           - Removed unneeded stack vars
26110           - First attempt to fix sizing issues when layout is suspended
26111
26112 2004-08-25 15:35  jordi
26113
26114         * ScrollBar.cs: more fixes to scrollbar
26115
26116 2004-08-25 14:04  ravindra
26117
26118         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
26119           Added the missing divider code and grip for ToolBar Control.
26120
26121 2004-08-25 13:20  pbartok
26122
26123         * Control.cs:
26124           - Control now properly passes the ambient background color to child
26125             controls
26126
26127 2004-08-25 13:20  jordi
26128
26129         * ScrollBar.cs: small bug fix regarding bar position
26130
26131 2004-08-25 12:33  pbartok
26132
26133         * Timer.cs:
26134           - Now only calls SetTimer or KillTimer if the enabled state has
26135           changed
26136
26137 2004-08-25 12:33  pbartok
26138
26139         * XplatUIWin32.cs:
26140           - Fixed timer handling, now seems to work
26141           - Improved error message for window creation
26142
26143 2004-08-25 12:32  pbartok
26144
26145         * Control.cs:
26146           - Fixed generation of MouseUp message
26147
26148 2004-08-25 12:29  jordi
26149
26150         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
26151           and fixes for progressbar
26152
26153 2004-08-24 18:43  ravindra
26154
26155         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
26156           in ToolBar control.
26157
26158 2004-08-24 17:15  pbartok
26159
26160         * Panel.cs:
26161           - Added #region
26162           - Added missing events
26163           - Alphabetized
26164
26165 2004-08-24 17:14  pbartok
26166
26167         * StatusBar.cs, PictureBox.cs:
26168           - Now uses Control's CreateParams
26169
26170 2004-08-24 16:36  pbartok
26171
26172         * XplatUIX11.cs:
26173           - Fixed background color handling
26174           - Fixed sending of enter/leave events on a grab
26175
26176 2004-08-24 16:35  pbartok
26177
26178         * X11Structs.cs:
26179           - Refined definitions for CrossingEvent
26180
26181 2004-08-24 12:37  jordi
26182
26183         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
26184           formmating, methods signature, and adds missing events
26185
26186 2004-08-24 12:24  jordi
26187
26188         * Control.cs: fire OnEnabledChanged event
26189
26190 2004-08-24 11:17  pbartok
26191
26192         * XplatUIWin32.cs:
26193           - Implemented SetTimer() and KillTimer()
26194
26195 2004-08-24 11:16  pbartok
26196
26197         * XplatUIX11.cs:
26198           - Now uses Remove instead of Add to kill the timer
26199
26200 2004-08-24 10:16  jackson
26201
26202         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
26203           picture boxes in the theme now. Draw picture box borders and obey
26204           sizing modes
26205
26206 2004-08-24 05:49  jackson
26207
26208         * Timer.cs: Remove top secret debugging code
26209
26210 2004-08-24 05:34  jackson
26211
26212         * PictureBox.cs: Temp hack to make picture boxes draw their full
26213           image
26214
26215 2004-08-24 05:29  jackson
26216
26217         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
26218           XplatUIX11.cs: Move timers to the driver level. On X they are
26219           queued by the driver and checked on idle.
26220
26221 2004-08-24 01:07  jackson
26222
26223         * XplatUIX11.cs: Use a queue for async messages instead of passing
26224           them as ClientMessages since that was totally broken. Also simply
26225           check for events and return an idle message if none are found. This
26226           gives us an idle handler, and prevents deadlocking when no messages
26227           are in the queue.
26228
26229 2004-08-23 18:19  ravindra
26230
26231         * XplatUIWin32.cs: Removed the unwanted destructor.
26232
26233 2004-08-23 17:27  pbartok
26234
26235         * ButtonBase.cs:
26236           - Finishing touches. Works now, just needs some optimizations.
26237
26238 2004-08-23 16:53  jordi
26239
26240         * ScrollBar.cs: small fix
26241
26242 2004-08-23 16:45  pbartok
26243
26244         * Application.cs:
26245           - Removed debug output
26246           - Simplifications
26247
26248 2004-08-23 16:43  jordi
26249
26250         * ScrollBar.cs: [no log message]
26251
26252 2004-08-23 16:10  pbartok
26253
26254         * Form.cs:
26255           - Fixed handling of WM_CLOSE message
26256           - Removed debug output
26257
26258 2004-08-23 16:09  pbartok
26259
26260         * Application.cs:
26261           - Added handling of Idle event
26262           - Added handling of form closing
26263           - Fixed reporting of MessageLoop property
26264           - Removed some unneeded code, should provide a bit of a speedup
26265
26266 2004-08-23 15:22  pbartok
26267
26268         * Control.cs:
26269           - Added InitLayout() method
26270           - Added code to properly perform layout when Anchor or Dock property
26271             is changed
26272           - Changed 'interpretation' of ResumeLayout. MS seems to have a
26273             LAMESPEC, tried to do it in a way that makes sense
26274
26275 2004-08-23 14:10  jordi
26276
26277         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
26278           properties and methods
26279
26280 2004-08-23 13:55  pbartok
26281
26282         * Control.cs:
26283           - Properly fixed Jordi's last fix
26284           - Now uses Cursor's Position property instead of calling XplatUI
26285           directly
26286
26287 2004-08-23 13:44  jordi
26288
26289         * PaintEventHandler.cs: Adding missing attribute
26290
26291 2004-08-23 13:39  pbartok
26292
26293         * Cursor.cs:
26294           - Implemented Position property
26295
26296 2004-08-23 13:39  pbartok
26297
26298         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
26299           - Added method to move mouse cursor
26300
26301 2004-08-23 13:39  pbartok
26302
26303         * XplatUIX11.cs:
26304           - Fixed setting of background color
26305           - Added method to move mouse cursor
26306
26307 2004-08-23 13:16  jordi
26308
26309         * Control.cs: avoids null exception
26310
26311 2004-08-22 17:46  jackson
26312
26313         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
26314           PictureBox
26315
26316 2004-08-22 17:40  jackson
26317
26318         * XplatUIX11.cs: Add some missing locks
26319
26320 2004-08-22 15:10  pbartok
26321
26322         * Control.cs, Form.cs:
26323           - Removed OverlappedWindow style from Control, instead it's default
26324             now is child
26325           - Made form windows OverlappedWindow by default
26326
26327 2004-08-22 13:34  jackson
26328
26329         * ScrollBar.cs: Update the position through the Value property so
26330           the OnValueChanged event is raised.
26331
26332 2004-08-22 12:04  pbartok
26333
26334         * SWF.csproj:
26335           - Added Cursor.cs and UserControl.cs
26336
26337 2004-08-22 12:03  pbartok
26338
26339         * Cursor.cs:
26340           - Started implementation, not usable yet
26341
26342 2004-08-22 12:00  pbartok
26343
26344         * UserControl.cs:
26345           - Implemented UserControl (complete)
26346
26347 2004-08-21 19:20  ravindra
26348
26349         * ToolBar.cs: Correcting the formatting mess of VS.NET.
26350
26351 2004-08-21 18:49  ravindra
26352
26353         * ToolBar.cs: Probably this completes the missing attributes in
26354           toolbar control.
26355
26356 2004-08-21 18:03  ravindra
26357
26358         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
26359           Fixed toolbar control signatures.
26360
26361 2004-08-21 16:32  pbartok
26362
26363         * LinkLabel.cs:
26364           - Signature Fixes
26365
26366 2004-08-21 16:30  pbartok
26367
26368         * Label.cs:
26369           - Signature fixes
26370
26371 2004-08-21 16:19  pbartok
26372
26373         * Control.cs, Label.cs:
26374           - Signature fixes
26375
26376 2004-08-21 15:57  pbartok
26377
26378         * ButtonBase.cs:
26379           - Added loads of debug output for development
26380           - Fixed typo in method name
26381
26382 2004-08-21 15:52  pbartok
26383
26384         * ToolBarButtonClickEventArgs.cs:
26385           - Added missing base class
26386
26387 2004-08-21 14:53  pbartok
26388
26389         * Control.cs:
26390           - Updated to match new GrabWindow signature
26391
26392 2004-08-21 14:51  pbartok
26393
26394         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
26395           - Added method to get default display size
26396
26397 2004-08-21 14:23  pbartok
26398
26399         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
26400           - Added method to query current grab state
26401           - Added argument to allow confining a grab to a window
26402
26403 2004-08-21 14:22  pbartok
26404
26405         * Keys.cs:
26406           - Added [Flags] attribute so that modifiers can be used in bitwise
26407           ops
26408
26409 2004-08-21 14:21  pbartok
26410
26411         * TrackBar.cs, ScrollBar.cs:
26412           - Replaced direct XplatUI calls with their Control counterpart
26413
26414 2004-08-21 13:32  pbartok
26415
26416         * Control.cs:
26417           - Implemented Created property
26418
26419 2004-08-21 13:28  pbartok
26420
26421         * Control.cs:
26422           - Implemented ContainsFocus
26423
26424 2004-08-21 13:26  pbartok
26425
26426         * Control.cs:
26427           - Implemented CausesValidation
26428
26429 2004-08-21 13:21  pbartok
26430
26431         * Control.cs:
26432           - Implemented CanFocus
26433           - Implemented CanSelect
26434           - Implemented Capture
26435
26436 2004-08-21 12:35  pbartok
26437
26438         * XplatUIWin32.cs:
26439           - Fixed bug with Async message handling
26440           - Implemented getting the ModifierKeys
26441
26442 2004-08-21 12:32  jackson
26443
26444         * AsyncMethodResult.cs: Make sure we have the mutex before we
26445           release it. Fixes BeginInvoke on windows
26446
26447 2004-08-21 11:31  pbartok
26448
26449         * XplatUIWin32.cs, XplatUIX11.cs:
26450           - Drivers now return proper mouse state
26451
26452 2004-08-21 10:54  jackson
26453
26454         * Control.cs: Implement EndInvoke
26455
26456 2004-08-21 10:48  jackson
26457
26458         * Timer.cs: Remove unneeded finalizer
26459
26460 2004-08-20 19:52  ravindra
26461
26462         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
26463           in mouse event handling in the ToolBar control.
26464
26465 2004-08-20 19:50  ravindra
26466
26467         * ImageList.cs: Changed draw method to use the arguments passed in
26468           to draw the image.
26469
26470 2004-08-20 18:58  pbartok
26471
26472         * XplatUIStructs.cs:
26473           - Added private message for async communication
26474
26475 2004-08-20 17:38  ravindra
26476
26477         * Control.cs: Made RightToLeft property virtual and removed a
26478           Console.WriteLine.
26479
26480 2004-08-20 14:39  jordi
26481
26482         * ThemeGtk.cs: use style_attach
26483
26484 2004-08-20 14:39  pbartok
26485
26486         * XplatUIWin32.cs:
26487           - Added jackson's Async code from X11 to Win32
26488
26489 2004-08-20 14:09  pbartok
26490
26491         * SWF.csproj:
26492           - Added all new files
26493
26494 2004-08-20 14:09  pbartok
26495
26496         * Control.cs:
26497           - Added call to set window background color
26498
26499 2004-08-20 14:03  pbartok
26500
26501         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
26502           - Added method for setting the window background
26503
26504 2004-08-20 14:02  pbartok
26505
26506         * XplatUIWin32.cs:
26507           - Added method for setting the background color
26508           - Added handling for erasing the window background
26509
26510 2004-08-20 13:45  jordi
26511
26512         * TrackBar.cs: fixes timer, new properties and methods
26513
26514 2004-08-20 13:34  jackson
26515
26516         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
26517           correct thread
26518
26519 2004-08-20 13:22  jackson
26520
26521         * Timer.cs: Timer Tick events are now handed through Controls Async
26522           mechanism so the callbacks are executed in the same thread as X
26523
26524 2004-08-20 13:19  jackson
26525
26526         * XplatUIDriver.cs: Expose functionality to send async messages
26527           through the driver
26528
26529 2004-08-20 13:18  jackson
26530
26531         * Control.cs: Implement Begininvoke
26532
26533 2004-08-20 13:14  jackson
26534
26535         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
26536           messages through the driver
26537
26538 2004-08-20 13:12  jackson
26539
26540         * XplatUIX11.cs: Lock before all X operations. Also added Async
26541           method functionality through XSendEvent
26542
26543 2004-08-20 13:11  jackson
26544
26545         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
26546           This will screw up on 64 bit systems)
26547
26548 2004-08-20 13:10  jackson
26549
26550         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
26551           Async messages through X/Win32
26552
26553 2004-08-19 19:39  pbartok
26554
26555         * XplatUIX11.cs:
26556           - Updated code to match new HandleData.DeviceContext type
26557
26558 2004-08-19 19:38  pbartok
26559
26560         * HandleData.cs:
26561           - Made DeviceContext a generic object to allow usage from various
26562           drivers
26563           - Added support for queueing Windows messages
26564
26565 2004-08-19 19:37  pbartok
26566
26567         * XplatUIWin32.cs:
26568           - Added generation of MouseEnter, MouseLeave and MouseHover events
26569           - Added cleanup on EndPaint
26570
26571 2004-08-19 19:17  pbartok
26572
26573         * Control.cs:
26574           - Added handling of WM_MOUSEHOVER
26575           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
26576           code
26577
26578 2004-08-19 18:55  jordi
26579
26580         * ThemeGtk.cs: fixes button order
26581
26582 2004-08-19 18:12  jordi
26583
26584         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
26585
26586 2004-08-19 17:09  pbartok
26587
26588         * Control.cs:
26589           - Added Right property
26590           - Added RightToLeft property
26591
26592 2004-08-19 16:27  jordi
26593
26594         * ThemeGtk.cs: experimental GTK theme support
26595
26596 2004-08-19 16:26  jordi
26597
26598         * ITheme.cs, Theme.cs: move themes from an interface to a class
26599
26600 2004-08-19 16:25  jordi
26601
26602         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
26603           theme enhancaments
26604
26605 2004-08-19 16:04  pbartok
26606
26607         * XplatUIX11.cs:
26608           - Added colormap basics
26609           - Added a way to re-initialize with a different display handle
26610           - Fixed setting of the window background color
26611           - Added various X11 imports related to colors and colormaps
26612
26613 2004-08-19 15:51  pbartok
26614
26615         * X11Structs.cs:
26616           - Removed packing hints (Paolo suggested this a while back)
26617           - fixed colormap type
26618           - Added default Atom types
26619           - Added Screen and color structs and enums
26620
26621 2004-08-19 15:39  pbartok
26622
26623         * ImageList.cs:
26624           - Added missing Draw() method
26625           - Added missing RecreateHandle event
26626
26627 2004-08-19 15:30  pbartok
26628
26629         * Form.cs:
26630           - Added handling of WM_CLOSE
26631
26632 2004-08-18 13:16  jordi
26633
26634         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
26635           a table
26636
26637 2004-08-18 09:56  jordi
26638
26639         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
26640
26641 2004-08-17 15:31  ravindra
26642
26643         * SWF.csproj: Updated project.
26644
26645 2004-08-17 15:25  pbartok
26646
26647         * Control.cs:
26648           - Drawing improvement; don't call UpdateBounds if we are not visible
26649             (or have been minimized)
26650
26651 2004-08-17 15:24  pbartok
26652
26653         * XplatUIWin32.cs:
26654           - Finished IsVisible
26655           - Added Win32GetWindowPlacement
26656
26657 2004-08-17 15:08  jackson
26658
26659         * Panel.cs: Initial checkin of the Panel
26660
26661 2004-08-17 14:25  pbartok
26662
26663         * Control.cs:
26664           - Fixed broken handling of default window sizes
26665
26666 2004-08-17 13:29  jackson
26667
26668         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
26669           has a large startup time.
26670
26671 2004-08-17 10:25  jackson
26672
26673         * HandleData.cs: union areas properly
26674
26675 2004-08-17 10:12  jackson
26676
26677         * HandleData.cs: union areas properly
26678
26679 2004-08-16 20:00  ravindra
26680
26681         * ToolBar.cs, ToolBarButton.cs: Added attributes.
26682
26683 2004-08-16 18:48  ravindra
26684
26685         * ToolBar.cs: Added attributes.
26686
26687 2004-08-16 17:17  ravindra
26688
26689         * SWF.csproj: Updated project.
26690
26691 2004-08-16 17:16  jackson
26692
26693         * XplatUIX11.cs: Check for more expose events before sending a
26694           WM_PAINT so they can all be grouped together. This makes dragging a
26695           window across another window redraw in a sane way.
26696
26697 2004-08-16 15:47  pbartok
26698
26699         * Control.cs:
26700           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
26701             support OnMouseEnter/Leave()
26702           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
26703             exposure handling
26704
26705 2004-08-16 15:46  pbartok
26706
26707         * XplatUIStructs.cs, XplatUIX11.cs:
26708           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
26709           OnMouseEnter/Leave()
26710
26711 2004-08-16 15:34  jackson
26712
26713         * XplatUIX11.cs: Group multiple expose events in HandleData, make
26714           sure messages get the message field set to WM_NULL if they are not
26715           handled.
26716
26717 2004-08-16 15:24  jackson
26718
26719         * HandleData.cs: HandleData is used for storing message information
26720           for window handles
26721
26722 2004-08-15 17:23  ravindra
26723
26724         * ColorDepth.cs: Added attribute.
26725
26726 2004-08-15 17:23  ravindra
26727
26728         * SWF.csproj: Updated project for ToolBar Control.
26729
26730 2004-08-15 17:20  ravindra
26731
26732         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
26733           control and also dos2unix format.
26734
26735 2004-08-15 17:13  ravindra
26736
26737         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
26738           ToolBarButtonClickEventArgs.cs,
26739           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
26740           ToolBarTextAlign.cs: First Implementation of ToolBar control.
26741
26742 2004-08-15 15:31  pbartok
26743
26744         * ButtonBase.cs:
26745           - First (mostly) working version
26746
26747 2004-08-13 16:15  pbartok
26748
26749         * Control.cs:
26750           - Fixed Anchor default
26751
26752 2004-08-13 15:43  pbartok
26753
26754         * Control.cs:
26755           - Changed GetCursorPos signature
26756
26757 2004-08-13 15:42  pbartok
26758
26759         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
26760           - Changed signature for GetCursorPos
26761
26762 2004-08-13 15:25  pbartok
26763
26764         * XplatUIX11.cs:
26765           - Cleanup
26766           - Fixed resizing/exposure handling
26767
26768 2004-08-13 15:22  jordi
26769
26770         * ThemeWin32Classic.cs: removes redundant code and fixes issues
26771           with tickposition
26772
26773 2004-08-13 14:55  jordi
26774
26775         * TrackBar.cs: change from wndproc to events
26776
26777 2004-08-13 13:00  jordi
26778
26779         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
26780           XplatUIX11.cs: implements PointToClient (ScreenToClient)
26781
26782 2004-08-13 12:53  pbartok
26783
26784         * XplatUIWin32.cs:
26785           - Changed GetWindowPos to also provide client area size
26786           - Fixed broken prototypes for several win32 functions
26787
26788 2004-08-13 12:53  pbartok
26789
26790         * XplatUI.cs, XplatUIDriver.cs:
26791           - Changed GetWindowPos to also provide client area size
26792
26793 2004-08-13 12:52  pbartok
26794
26795         * XplatUIX11.cs:
26796           - Added generation of WM_POSCHANGED
26797           - Changed GetWindowPos to also provide client area size
26798
26799 2004-08-13 12:52  pbartok
26800
26801         * Control.cs:
26802           - Added Dispose() and destructor
26803           - Fixed resizing and bounds calculation
26804           - Fixed Layout
26805           - Added memory savings for invisible windows
26806
26807 2004-08-13 12:46  jordi
26808
26809         * TrackBar.cs: adds timer and grap window
26810
26811 2004-08-13 10:25  jackson
26812
26813         * Timer.cs: SWF Timer
26814
26815 2004-08-12 16:59  pbartok
26816
26817         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
26818           - Implemented method to get current mouse position
26819
26820 2004-08-12 14:29  jordi
26821
26822         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
26823           enhancement, fix mouse problems, highli thumb, etc
26824
26825 2004-08-12 13:31  pbartok
26826
26827         * Control.cs:
26828           - Fixed Anchoring bugs
26829
26830 2004-08-12 13:01  jackson
26831
26832         * StatusBar.cs: Don't forget things
26833
26834 2004-08-12 12:54  jackson
26835
26836         * ThemeWin32Classic.cs: Handle owner draw status bars
26837
26838 2004-08-12 12:54  jackson
26839
26840         * StatusBar.cs: Implement missing properties, events, and methods.
26841           Handle mouse clicking
26842
26843 2004-08-12 10:19  jackson
26844
26845         * StatusBarPanelClickEventArgs.cs,
26846           StatusBarPanelClickEventHandler.cs: Classes for handling status
26847           bar panel click events
26848
26849 2004-08-12 10:10  jackson
26850
26851         * Control.cs: Add missing properties
26852
26853 2004-08-12 09:46  pbartok
26854
26855         * BindingsManagerBase.cs:
26856           - Name changed to BindingManagerBase.cs
26857
26858 2004-08-12 09:25  jordi
26859
26860         * ScrollableControl.cs: calls ctrlbase instead of exeception
26861
26862 2004-08-11 16:28  pbartok
26863
26864         * InputLanguageChangingEventArgs.cs:
26865           - Never check in before compiling. Fixes the last check-in
26866
26867 2004-08-11 16:26  pbartok
26868
26869         * InputLanguageChangingEventArgs.cs:
26870           - More signature fixes
26871
26872 2004-08-11 16:20  pbartok
26873
26874         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
26875           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
26876           ImageListStreamer.cs, InputLanguage.cs,
26877           InputLanguageChangedEventArgs.cs,
26878           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
26879           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
26880           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
26881           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
26882           - Signature fixes
26883
26884 2004-08-11 16:16  pbartok
26885
26886         * Application.cs:
26887           - Fixed Signature
26888           - Added .Net 1.1 method
26889
26890 2004-08-11 15:25  pbartok
26891
26892         * SWF.csproj:
26893           - Fixed BindingManagerBase.cs filename
26894
26895 2004-08-11 15:22  pbartok
26896
26897         * BindingManagerBase.cs:
26898           - Was checked in with wrong filename
26899
26900 2004-08-11 14:50  pbartok
26901
26902         * SWF.csproj:
26903           - Updated
26904
26905 2004-08-11 13:41  jordi
26906
26907         * XplatUIWin32.cs: Fixes ClientRect
26908
26909 2004-08-11 13:19  pbartok
26910
26911         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
26912           XplatUIX11.cs:
26913           - We had SetWindowPos and MoveWindow to set window positions and
26914             size, removed MoveWindow. We have GetWindowPos, so it made sense to
26915             keep SetWindowPos as matching counterpart
26916           - Added some X11 sanity checking
26917
26918 2004-08-11 12:59  pbartok
26919
26920         * Control.cs:
26921           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
26922             (It seems that SetBounds is just a front for SetBoundsCore and
26923              SetBoundsCore updates the underlying window system and
26924              UpdateBounds is responsible for updating the variables associated
26925              with the Control and sending the events)
26926           - Major cleanup of Size handling; we now have two sizes, client_size
26927             and bounds. Bounds defines the window with decorations, client_size
26928             without them.
26929
26930 2004-08-11 12:55  pbartok
26931
26932         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
26933           - Added method to calculate difference between decorated window and
26934             raw client area
26935
26936 2004-08-11 12:54  pbartok
26937
26938         * Label.cs:
26939           - Forcing redraw on resize
26940
26941 2004-08-11 11:43  pbartok
26942
26943         * ImageList.cs:
26944           - Removed disposing of the actual images when the list is disposed
26945
26946 2004-08-11 09:13  pbartok
26947
26948         * Control.cs:
26949           - Now properly reparents windows
26950
26951 2004-08-11 08:37  pbartok
26952
26953         * Control.cs:
26954           - Duh!
26955
26956 2004-08-11 07:47  pbartok
26957
26958         * Control.cs:
26959           - Rewrote the collection stuff. Might not be as fast now, not
26960             keeping the number of children around and accessible directly, but
26961             it's more straightforward
26962
26963 2004-08-11 07:44  pbartok
26964
26965         * AccessibleObject.cs:
26966           - Fixed to match ControlCollection rewrite
26967
26968 2004-08-11 07:43  pbartok
26969
26970         * ImageList.cs:
26971           - Added missing creation of the collection list
26972
26973 2004-08-10 20:08  jackson
26974
26975         * StatusBar.cs: Get the paint message from WndProc
26976
26977 2004-08-10 19:31  jackson
26978
26979         * ThemeWin32Classic.cs: Create Brushes as little as possible
26980
26981 2004-08-10 19:20  jackson
26982
26983         * UICues.cs: Add Flags attribute
26984
26985 2004-08-10 19:19  jackson
26986
26987         * StatusBarPanel.cs: Signature cleanup
26988
26989 2004-08-10 19:10  jackson
26990
26991         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
26992           Initial implementation of status bar item drawing
26993
26994 2004-08-10 17:27  jordi
26995
26996         * TrackBar.cs: add missing methods, properties, and restructure to
26997           hide extra ones
26998
26999 2004-08-10 16:24  jackson
27000
27001         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
27002           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
27003           attribute
27004
27005 2004-08-10 13:21  jordi
27006
27007         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
27008           enhancements and standarize on win colors defaults
27009
27010 2004-08-10 12:52  jackson
27011
27012         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
27013           ThemeWin32Classic.cs: Implement DrawItem functionality
27014
27015 2004-08-10 12:47  jordi
27016
27017         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
27018
27019 2004-08-10 12:32  jordi
27020
27021         * Control.cs: throw ontextchange event
27022
27023 2004-08-10 11:43  pbartok
27024
27025         * Control.cs:
27026           - Added more to the still unfinished Dock/Anchor layout code
27027
27028 2004-08-10 11:39  pbartok
27029
27030         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
27031           - Added GetWindowPos method
27032
27033 2004-08-10 11:36  pbartok
27034
27035         * XplatUIWin32.cs:
27036           - Implemented several methods
27037
27038 2004-08-10 09:47  jackson
27039
27040         * TrackBar.cs: Allow control to handle buffering
27041
27042 2004-08-10 09:41  jackson
27043
27044         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
27045
27046 2004-08-10 09:24  jackson
27047
27048         * Label.cs, LinkLabel.cs: Let Control handle buffering.
27049
27050 2004-08-10 09:09  jackson
27051
27052         * StatusBar.cs: Let Control handle all the buffering.
27053
27054 2004-08-10 09:08  jackson
27055
27056         * Control.cs: Control will now handle the buffering code, so each
27057           control does not have to implement this.
27058
27059 2004-08-10 08:34  jackson
27060
27061         * XplatUIDriver.cs: Use default colors from the theme
27062
27063 2004-08-09 17:12  pbartok
27064
27065         * ImageList.cs:
27066           - Fixed several bugs Ravindra pointed out
27067
27068 2004-08-09 16:11  pbartok
27069
27070         * Control.cs:
27071           - Added incomplete dock layout code
27072           - Added support for mouse wheel
27073
27074 2004-08-09 16:09  pbartok
27075
27076         * XplatUIX11.cs:
27077           - Added handling for middle and right mousebutton
27078           - Added handling for mouse wheel
27079           - Added handling for key state and mouse state and position
27080           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
27081           messages
27082
27083 2004-08-09 15:40  jackson
27084
27085         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
27086           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
27087           checkin
27088
27089 2004-08-09 15:37  jackson
27090
27091         * StatusBar.cs: Initial implementation of StatusBar
27092
27093 2004-08-09 15:36  jackson
27094
27095         * ITheme.cs: Add support for drawing status bar and getting status
27096           bar item sizes
27097
27098 2004-08-09 15:35  pbartok
27099
27100         * MouseButtons.cs:
27101           - Fixed values
27102
27103 2004-08-09 15:34  jackson
27104
27105         * ThemeWin32Classic.cs: Add support for drawing status bar and get
27106           status bar item sizes
27107
27108 2004-08-09 15:21  jackson
27109
27110         * ThemeWin32Classic.cs: Use known colors for default control
27111           colours
27112
27113 2004-08-09 15:12  jackson
27114
27115         * ThemeWin32Classic.cs: Make the default font static, it is static
27116           in control so this doesn't change functionality and creating fonts
27117           is sloooooow.
27118
27119 2004-08-09 14:56  pbartok
27120
27121         * X11Structs.cs:
27122           - Added GrabMode enum
27123
27124 2004-08-09 14:55  pbartok
27125
27126         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
27127           - Removed Run method, was only required for initial development
27128
27129 2004-08-09 14:51  pbartok
27130
27131         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
27132           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
27133           capture
27134
27135 2004-08-09 13:48  pbartok
27136
27137         * XplatUIX11.cs:
27138           - Fixed default sizing for child windows
27139
27140 2004-08-09 12:56  pbartok
27141
27142         * XplatUIX11.cs:
27143           - Added generation of WM_DESTROY message
27144           - Added handling of window manager induced shutdown
27145
27146 2004-08-09 11:31  jackson
27147
27148         * ThemeWin32Classic.cs: New names for control properties
27149
27150 2004-08-09 11:25  jackson
27151
27152         * Control.cs: Use new color names
27153
27154 2004-08-09 11:02  jackson
27155
27156         * XplatUI.cs: Get default window properties from the theme
27157
27158 2004-08-09 11:01  jackson
27159
27160         * ITheme.cs: The theme engine now controls default window
27161           properties
27162
27163 2004-08-09 11:00  jackson
27164
27165         * ThemeWin32Classic.cs: Add default window color properties
27166
27167 2004-08-09 10:17  jackson
27168
27169         * ThemeWin32Classic.cs: Use correct default back color
27170
27171 2004-08-09 10:05  jackson
27172
27173         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
27174           the theme now.
27175
27176 2004-08-09 09:56  jackson
27177
27178         * XplatUI.cs: Remove defaults, these are handled by the theme now.
27179
27180 2004-08-09 09:54  jackson
27181
27182         * Control.cs: Get default properties from the theme.
27183
27184 2004-08-09 09:53  jackson
27185
27186         * ITheme.cs: Themes now handle default control properties
27187
27188 2004-08-09 09:53  jackson
27189
27190         * ThemeWin32Classic.cs: Themes now handle default control
27191           properties so coloring will be consistent
27192
27193 2004-08-08 16:54  jordi
27194
27195         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
27196
27197 2004-08-08 15:08  jordi
27198
27199         * XplatUIX11.cs: fixes keyboard crash
27200
27201 2004-08-08 13:47  jordi
27202
27203         * Label.cs: add cvs header info
27204
27205 2004-08-08 12:09  jackson
27206
27207         * ThemeWin32Classic.cs: Add pen_buttonface
27208
27209 2004-08-08 11:52  jordi
27210
27211         * Label.cs, LinkLabel.cs: [no log message]
27212
27213 2004-08-08 11:34  jordi
27214
27215         * ThemeWin32Classic.cs: Use Windows Standard Colours
27216
27217 2004-08-07 17:32  jordi
27218
27219         * TrackBar.cs: throw exceptions of invalid enums values
27220
27221 2004-08-07 17:31  jordi
27222
27223         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
27224           draw method name
27225
27226 2004-08-07 16:56  jackson
27227
27228         * HorizontalAlignment.cs: Initial checkin
27229
27230 2004-08-07 13:16  jordi
27231
27232         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
27233           methods
27234
27235 2004-08-07 13:05  jordi
27236
27237         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
27238           GetSysColor defines
27239
27240 2004-08-06 18:01  pbartok
27241
27242         * ThemeWin32Classic.cs:
27243           - Fixed some rounding issues with float/int
27244
27245 2004-08-06 18:00  jackson
27246
27247         * DockStyle.cs, AnchorStyles.cs:
27248
27249                   Add flags and serializable attributes.
27250
27251 2004-08-06 17:46  pbartok
27252
27253         * XplatUIX11.cs:
27254           - Implemented GetParent
27255
27256 2004-08-06 17:18  pbartok
27257
27258         * TrackBar.cs:
27259           - Fixed some rounding issues with float/int
27260
27261 2004-08-06 17:17  pbartok
27262
27263         * X11Structs.cs, XplatUIX11.cs:
27264           - Fixed Refresh and Invalidate
27265
27266 2004-08-06 15:30  pbartok
27267
27268         * Control.cs, X11Structs.cs, XplatUIX11.cs:
27269           - Fixed recursive loop when resizing
27270           - Improved/fixed redrawing on expose messages
27271
27272 2004-08-06 09:53  jordi
27273
27274         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
27275           keyboard navigation
27276
27277 2004-08-06 08:02  pbartok
27278
27279         * X11Structs.cs, XplatUIX11.cs:
27280           - Fixed reparenting
27281           - Fixed window border creation
27282
27283 2004-08-05 15:38  pbartok
27284
27285         * XplatUIX11.cs:
27286           - Attempted fix for reparenting problems
27287
27288 2004-08-04 15:14  pbartok
27289
27290         * Control.cs:
27291           - Fixed Invalidation bug (calculated wrong client area)
27292           - Added ClientSize setter
27293
27294 2004-08-04 15:13  pbartok
27295
27296         * Form.cs:
27297           - Added AutoScale properties
27298
27299 2004-08-04 15:13  pbartok
27300
27301         * SWF.csproj:
27302           - Added latest files
27303
27304 2004-08-04 14:11  pbartok
27305
27306         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
27307           XplatUIX11.cs:
27308           - Added Invalidate handling
27309
27310 2004-08-03 17:09  jordi
27311
27312         * XplatUIDriver.cs: fixes spelling mistake
27313
27314 2004-07-27 09:53  jordi
27315
27316         * TrackBar.cs: fixes trackbar events, def classname, methods
27317           signature
27318
27319 2004-07-27 09:29  jordi
27320
27321         * ScrollBar.cs: fixes scrollbar events
27322
27323 2004-07-27 04:38  jordi
27324
27325         * Control.cs: changes to be able to run winforms samples
27326
27327 2004-07-26 11:42  jordi
27328
27329         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
27330           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
27331
27332 2004-07-26 05:41  jordi
27333
27334         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
27335           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
27336           implementation
27337
27338 2004-07-22 09:22  jordi
27339
27340         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
27341           check link overlapping, implement events, and fixes
27342
27343 2004-07-21 10:28  jordi
27344
27345         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
27346
27347 2004-07-21 10:19  jordi
27348
27349         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
27350           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
27351           LinkLabelLinkClickedEventArgs.cs,
27352           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
27353           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
27354           implementation
27355
27356 2004-07-19 13:09  jordi
27357
27358         * Control.cs, Label.cs: label control re-written: added missing
27359           functionlity, events, and properties
27360
27361 2004-07-19 10:49  jordi
27362
27363         * Control.cs: fixes SetBounds logic
27364
27365 2004-07-19 01:29  jordi
27366
27367         * Control.cs: Call RefreshWindow only if the window has created
27368
27369 2004-07-15 14:05  pbartok
27370
27371         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
27372           - Implemented ImageList and ImageList.ImageCollection classes
27373           - Added ColorDepth enumeration
27374           - Updated SWF VS.Net project
27375
27376 2004-07-15 11:06  jordi
27377
27378         * XplatUIStructs.cs: added MsgButons enum
27379
27380 2004-07-15 11:03  jordi
27381
27382         * Control.cs: added basic mouse handeling events
27383
27384 2004-07-15 03:38  jordi
27385
27386         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
27387           Vertical TrackBar control implementation
27388
27389 2004-07-13 09:33  jordi
27390
27391         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
27392
27393 2004-07-13 09:31  jordi
27394
27395         * Control.cs, Form.cs: commit: new properties and fixes form size
27396           problems
27397
27398 2004-07-09 14:13  miguel
27399
27400         * ProgressBar.cs: Spelling
27401
27402 2004-07-09 11:25  pbartok
27403
27404         * ProgressBar.cs:
27405           - Removed usage of Rectangle for drawing. Miguel pointed out it's
27406           faster
27407
27408 2004-07-09 11:17  miguel
27409
27410         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
27411
27412                 * ProgressBar.cs: Fixed spelling for `block'
27413
27414                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
27415                 style guidelines.
27416
27417                 Avoid using the += on rect.X, that exposed a bug in the compiler.
27418
27419 2004-07-08 23:21  pbartok
27420
27421         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
27422           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
27423           BaseCollection.cs, Binding.cs, BindingContext.cs,
27424           BindingMemberInfo.cs, BindingsCollection.cs,
27425           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
27426           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
27427           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
27428           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
27429           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
27430           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
27431           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
27432           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
27433           FrameStyle.cs, GiveFeedbackEventArgs.cs,
27434           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
27435           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
27436           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
27437           InputLanguageChangedEventArgs.cs,
27438           InputLanguageChangedEventHandler.cs,
27439           InputLanguageChangingEventArgs.cs,
27440           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
27441           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
27442           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
27443           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
27444           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
27445           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
27446           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
27447           QueryAccessibilityHelpEventArgs.cs,
27448           QueryAccessibilityHelpEventHandler.cs,
27449           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
27450           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
27451           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
27452           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
27453           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
27454           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
27455           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
27456           XplatUIX11.cs, lang.cs:
27457           - Initial check-in
27458
27459