572c88419bd9e8bdce74a7948b17c4c2774dac44
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-01-16  Chris Toshok  <toshok@ximian.com>
2
3         * Control.cs: remove container_selected field.
4
5 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6
7         * MdiClient.cs: Update main form's ActiveChild when
8         updating keyboard focus for the mdi child.
9
10 2007-01-16  Jonathan Pobst  <jpobst@novell.com>
11
12         * Control.cs: PreferredSize fix.
13
14         * Form.cs: Add several 2.0 events, properties, and methods.
15
16 2007-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
17
18         * Form.cs: Provide meaningful message when MdiParent is assigned a
19         Form that is not an MdiContainer.
20
21 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
22
23         * MdiClient.cs: Update main form's ActiveChild when
24         activating a mdi child.
25
26 2007-01-16  Rolf Bjarne Kvinge  <RKvinge@novell.com>
27
28         * MdiWindowManager.cs: Fix NRE when merging menus and main form
29         doesn't have a menu.
30
31         * Form.cs: Request NCRecalc after creating a mdi child window.
32         Implement mdi key handling (Ctrl+F4, Ctrl+Shift+F4, Ctrl+Tab, 
33         Ctrl+Shift+Tab, Ctrl+F6 and Ctrl+Shift+F6).
34         
35         * MdiClient.cs: Add new method SendFocusToActiveChild that either
36         sends keyboard focus to the active child, or to the MdiClient
37         if there are no child forms.
38         
39 2007-01-15  Chris Toshok  <toshok@ximian.com>
40
41         * ListView.cs: drop the *Internal overrides, just do our work in
42         ItemControl's WndProc instead.
43
44         * UpDownBase.cs: a few large changes.  Fix up the Selectable state
45         of the various controls, and forward the events properly (in the
46         same manner as MS) from the textbox to the UpDown.  Also the
47         ActiveControl of the UpDownBase gets set properly now.  Finally,
48         we don't call UpdateEditText from the ctor.  Fixes bug #79957.
49
50         * NumericUpDown.cs: set Text in the ctor.
51
52         * DomainUpDown.cs: call UpdateEditText in the ctor.
53         
54         * TextBox.cs: on ms.net, WM_LBUTTONDOWN sets focus on the textbox,
55         so even a Selectable = false textbox can be focused if you click
56         in it.  Go figure.
57
58         * Control.cs: remove On{Got,Lost}FocusInternal.  Subclasses can
59         just add their handling in their respective WndProc's.  Also add
60         an explicit FocusInternal method that doesn't consult CanFocus
61         before calling Select(this).
62
63         * TextBoxBase.cs: deal with removal of the FocusInternal calls -
64         do our work in WndProc instead.
65
66         * TabControl.cs: same.
67
68         * ComboBox.cs: same.
69
70 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
71
72         * Menu.cs: implement MergeItems and Replace for MenuMerge method.
73         Fixes #80006.
74
75 2007-01-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>
76
77         * ListViewItem.cs:
78         * ThemeWin32Classic.cs: Don't draw the item text outside
79         item bounds in Details view, as well as use trimming.
80         Fixes bug #80376.
81
82 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
83
84         * Form.cs: Implement Form.ShowIcon.
85         
86         * XplatUIWin32.cs: Allow the SetIcon win32 call to set the icon to
87         null, which when combined with the DlgModalFrame window style removes
88         the icon from the title bar.
89
90 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
91
92         * Control.cs: Call OnMouseClick after OnClick. (2.0)
93
94 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
95
96         * MdiWindowManager.cs: In CreateMaximizedMenu fix a position of icon
97         menu when mdi child windows theres a menu, uses insert to get icon
98         at first position. Partially fix #80006.
99
100 2007-01-15  Jonathan Pobst  <jpobst@novell.com>
101
102         * Clipboard.cs: Implement 2.0 methods.
103
104 2007-01-15  Everaldo Canuto  <everaldo@simios.org>
105
106         * Menu.cs: Implement Insert method of MenuItemCollection class
107         to fix MenuMerge.
108
109 2007-01-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
110
111         * ListView.cs: Implement 2.0 FindItemWithText method.
112
113 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
114
115         * Form.cs: When process WM_NCCALCSIZE message use ClienSize.Width
116         to calculate menu bar size. Fixes #80290.
117
118 2007-01-11  Everaldo Canuto  <everaldo@simios.org>
119
120         * ThemeWin32Classic.cs: Fix position of menuitem check mark.
121
122 2007-01-11  Chris Toshok  <toshok@ximian.com>
123
124         * XplatUIX11.cs: don't send duplicate WM_ACTIVATE messages to the
125         initial form.
126
127 2007-01-11  Chris Toshok  <toshok@ximian.com>
128
129         * LinkLabel.cs: make sure to call base.Select in our Select method
130         if it turns out we're going to be selected (i.e. if we have a link
131         that is going to receive focus).  That way our container's
132         ActiveControl is updated properly.
133
134 2007-01-11  Chris Toshok  <toshok@ximian.com>
135
136         * LinkLabel.cs: turns out that LinkLabels are only Selectable if
137         they have 1 or more links.  this fixes the crash gert reported.
138
139 2007-01-11  Andreia Gaita  <avidigal@novell.com>
140
141         * ContainerControl.cs: Remove ContainerSelected flag, not needed
142         anymore.
143
144         * Control.cs (Controls.Add): Check if control to be added to the collection
145         is a top level control, and throw an ArgumentException if it is.
146         Remove ContainerSelectedFlag, not needed anymore.
147
148         * XplaUIWin32.cs (SetTopMost): Add flag SWP_NOACTIVATE so that setting the
149         top most control doesn't activate the form. This fixes a problem in the
150         MessageBox, where the default button wouldn't get focus because the form
151         was activated before being Loaded - when the Owner is set, SetTopMost is
152         called, and it would activate it.
153
154 2007-01-11  Jonathan Pobst  <jpobst@novell.com>
155
156         * Button.cs: When clicked and setting the parent form's DialogResult,
157         use FindForm instead of Parent, since parent could be a container
158         control and not the Form.  Fixes bug #80495.
159
160 2007-01-10  Chris Toshok  <toshok@ximian.com>
161
162         * Form.cs: move the call to SendControlFocus into the same
163         is_loaded check.
164
165 2007-01-10  Chris Toshok  <toshok@ximian.com>
166
167         * UpDownBase.cs (.ctor): remove the ActiveControl assignment here.
168         It breaks in the face of the new ActiveControl stuff, and should
169         be unnecessary.
170
171         * Form.cs (WndProc): in the WM_ACTIVATE case, we need to set the
172         activecontrol's focus if it's not already set, after we set
173         ActiveControl, but before we call OnActivated.  Re-fixes #79667
174         after the previous focus/active control fixes regressed it.
175
176         * Control.cs: reindent some code.
177         
178 2007-01-10  Chris Toshok  <toshok@ximian.com>
179
180         * Splitter.cs: clearing some outstanding changes from my tree.
181         Replace all accesses (not writes) to the internal dock_style field
182         with the Dock property.
183
184 2007-01-10  Chris Toshok  <toshok@ximian.com>
185
186         * Control.cs: make FireEnter, FireLeave, FireValidating, and
187         FireValidated virtual.
188
189         * Form.cs: override and don't chain up calls to FireEnter and
190         FireLeave.
191
192 2007-01-10  Carlos Alberto Cortez <calberto.cortez@gmail.com>
193
194         * ListView.cs: Add more text padding space when using
195         auto resize for columns (the previous value didn't work fine).
196
197         * ThemeWin32Classic.cs: Update text position inside columns,
198         to match the appeareance of .Net.
199
200         * ColumnHeader.cs: When using auto resize, only the Width should
201         depend on the sub items, not the Height. Also, set width after
202         auto resizing (the value of Width should never remain as -1 or -2).
203
204 2007-01-10  Chris Toshok  <toshok@ximian.com>
205
206         * Application.cs: fix compilation errors when debug is enabled.
207
208 2007-01-10  Chris Toshok  <toshok@ximian.com>
209
210         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
211         add some nice ascii art pictures and explanation of the process).
212         (GetMostDeeplyNestedActiveControl): new utility function we need
213         because our ActiveControl can refer to a child container with its
214         own ActiveControl.
215
216         * Form.cs (OnActivated): remove the call to SelectActiveControl
217         from here, since you can override this method and not chain up,
218         and winforms still sets the active control.
219         (OnCreateControl): also remove the unnecessary SelectActiveControl
220         call from here.
221         (WndProc): it's actually called from the WM_ACTIVATE block, just
222         before calling OnActivated.
223
224         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
225         inside the else.  the ActiveControl setter will end up setting
226         focus on @control.  This keeps us from setting it again (and
227         generating an extra LostFocus/GotFocus pair).
228         (Select (bool, bool)): reindent.
229
230 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
231
232         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
233         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
234         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
235         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
236         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
237         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
238         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
239         ToolStripTextBox.cs: Another wave of corcompare work.
240
241 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
242
243         * ColumnHeader.cs: Implement 2.0 AutoResize method using
244         the Width property.
245
246         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
247         methods by callling Column.AutoResize method on columns.
248
249 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
250
251         * Control.cs: Provide proper implementations of PreferredSize
252         and GetPreferredSize (2.0).
253
254 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
255
256         * Form.cs: Remove one character (!) to make my previous OnClosing
257         stuff work for modal windows like MessageBox.
258
259 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
260
261         * ListView.cs:
262         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
263         ListView.Columns to get the last displayed column. Fixes #80452.
264
265 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
266
267         * Label.cs, LinkLabel.cs: Source code identation fixes.
268
269 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
270
271         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
272         we dont need to invalidate only borders because when we invalidate four
273         border lines the invalidate's generates a complete redraw of button, 
274         because it now invalidate a complete rect some other redraws operations
275         are fixed. Fixes #80196.
276         
277         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
278         Remove ToolBarInvalidateEntireButton as it is not used.
279
280 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
281         
282         * Form.cs: Make sure that both OnClosing and OnFormClosing are
283         called for 2.0 profile.
284         * CloseReason.cs: Make class internal for 1.1.
285
286 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
287
288         * ToolStripManager.cs: Implement FindToolStrip functionality.
289         * ToolStrip.cs: Register and unregister with ToolStripManager.
290
291 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
292
293         * Control.cs: This was messy.  2.0 moves much of ControlCollection
294         to ArrangedElementCollection.  Implemented this with as few #if's as 
295         possible (which is still too many).
296
297 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
298
299         * Control.cs: Implement SizeFromClientSize() [2.0].
300
301 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
302
303         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
304         use Theme.BorderSize to calculate area instead of static value 1, 
305         by the way use new BorderStaticSize instead     Border3DSize when 
306         border_static is true. Fixes #79537.
307         
308         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
309         
310         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
311         it is not needed.
312
313 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
314
315         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
316
317 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
318
319         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
320         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
321         
322         * Hwnd.cs: 
323         - border_static field added, it will used to define when a control 
324         theres 3D border but it must be static (thin).
325         - In GetWindowRectangle use Theme.BorderSize to calculate area 
326         instead of static value 1, by the way use new BorderStaticSize instead
327         Border3DSize when border_static is true.
328
329         * XplatUIX11.cs, XplatUIOSX.cs: 
330         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
331         
332         * Theme.cs: BorderStaticSize field added.
333
334 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
335
336         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
337
338 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
339
340         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
341         mimic same behavior than win32 that set border only in CreateParams,
342         it fix problems under CreateParams overrides. Fix #79442 and partial
343         fix #79537.
344         
345         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
346         of thi control you must call recreate handle. 
347         
348         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
349         need to do anything as RecreateHangle will take care about borders.
350
351 2007-01-05  Mike Kestner  <mkestner@novell.com>
352
353         * ListView.cs: hack to eliminate Lost/Got focus notifications on
354         cycles between the ItemControl and parent.  Fixes #80388.
355
356 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
357
358         * Control.cs: Lazy init layout engine. Do not directly use 
359         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
360
361 2007-01-05  Chris Toshok  <toshok@ximian.com>
362
363         * DataGrid.cs: don't forceably rebind columns in SetDataSource
364         unless our list manager has changed (i.e. unless we have reason to
365         believe our columns have changed).  Fixes #80422.
366         
367         also, disable the call do BindColumns in
368         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
369         1.1 the event isn't raised in response to a column addition on a
370         table.)
371
372 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
373
374         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
375         that inheritors can not call it if they choose.  Fixes bug #80456.
376
377 2007-01-05  Andreia Gaita  <avidigal@novell.com>
378
379         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
380         doesn't blow up with a null exception on marshalling.
381         
382 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
383
384         * Control.cs: Implement several 2.0 protected properties and methods.
385         Ensure that all necessary events are being called when properties
386         are set.
387
388 2007-01-05  Mike Kestner  <mkestner@novell.com>
389
390         * ListView.cs: implement PgUp/PgDn for Details view.  Also
391         fixes First/LastVisibleIndex to use the item_control.ClientRect 
392         instead of the parent control.  Fixes #80378.
393
394 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
395
396         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
397           determine whether to use yard-pound or not (bug #78399).
398
399 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
400
401         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
402         problems. So it is time to bring back the old popupbutton colors.
403
404 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
405
406         * ColumnHeader.cs:
407         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
408         property by using the internal information of the
409         columns order in ListView.
410
411 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
412
413         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
414         Add 2.0 Tag properties.
415
416         * LinkArea.cs: Add 2.0 ToString method.
417
418 2007-01-03  Chris Toshok  <toshok@ximian.com>
419
420         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
421         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
422         when we're editing, which fixes #80047.
423
424 2007-01-03  Chris Toshok  <toshok@ximian.com>
425
426         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
427         #80404.
428
429 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
430
431         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
432         property and implementation.
433
434         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
435         for MdiWindowListItem property.
436
437         * ToolStripDropDown.cs: Don't consider hidden menu items while
438         laying out the menu.
439
440 2007-01-03  Andreia Gaita  <avidigal@novell.com>
441
442         * SendKeys.cs: window handle is not needed in win32, so just
443         get the active window for X after parsing keys and don't use
444         it when building the message; it is passed by parameter to the 
445         Xplat method and used there to build the message instead. Also,
446         wait for events to be processed on SendWait, as opposed to Send,
447         which doesn't wait :) Playing with threads and Send() completely 
448         hangs on ms.net, only SendWait() works.
449         
450         XplatUIX11.cs
451         X11Display.cs: Check for valid window handle.
452
453 2007-01-03  Jackson Harper  <jackson@ximian.com>
454
455         * TextControl.cs: Need to prevent wrap calculations when replacing
456         text (this was there before i removed it accidently).
457         - Don't update the cursor during the positioning, just set it to
458         selection_start at the end of the operaion.
459
460 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
461
462         * Control.cs:
463         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
464         
465 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
466
467         * MonthCalendar.cs: Added Click and DoubleClick events again,
468         but this time they only hide Control's Click and DoubleClick.
469         
470 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
471
472         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
473         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
474
475 2007-01-02  Jackson Harper  <jackson@ximian.com>
476
477         * TextBoxBase.cs: We move the caret with the split now, so we
478         don't need to explicitly move the caret after splitting.  This
479         fixes the caret bumping down an extra line on Enter.
480
481 2007-01-02  Miguel de Icaza  <miguel@novell.com>
482
483         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
484         2.72). 
485
486         * ScrollableControl.cs: Add Scroll event.
487
488 2007-01-02  Mike Kestner  <mkestner@novell.com>
489
490         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
491         to fix all hdr height padding codepaths.  Fixes #80207.
492
493 2007-01-02  Chris Toshok  <toshok@ximian.com>
494
495         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
496         setting it to the Control defaults anyway, and it being after the
497         Dock set was screwing up layout.
498         (set_Dock): don't short circuit out of setting base.Dock.  Also,
499         no need to call UpdateStatusBar here, as it'll be re-layed out if
500         it needs to be.
501
502 2007-01-02  Mike Kestner  <mkestner@novell.com>
503
504         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
505         to header height for width == -1. Fixes the rest of #80207.
506
507 2007-01-02  Mike Kestner  <mkestner@novell.com>
508
509         * ListView.cs: rework the mouse event forwarding everaldo added
510         to translate the coordinates to the parent control not
511         raise the parent events until after we've done our work. Hover
512         needs more work, in the case where HoverSelection is on, because
513         the item control receives more than one MouseHover per Enter
514         event, so we need to ensure only the "first" hover gets forwarded.
515         Opening a minor bug for that.
516
517 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
518
519         * CheckedListBox.cs: Fixed SelectionMode to match MS.
520         * ListControl.cs: Implemented AllowSelection property. Removed extra
521         tabs.
522         * ListBox.cs: Implemented AllowSelection property.
523
524 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
525
526         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
527         SelectedItem, it prevent for errors when you must disable item
528         before perform click. Fixes #80409.
529
530 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
531
532         * MenuAPI.cs: Prevent second level and beyond submenus to close
533         until first level when move out side of popup.
534         
535 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
536
537         * MenuAPI.cs:
538         - Down submenu positin in three pixels.
539         - Closes sub menu when mouse leaves from menu. Fixes #80402.
540
541 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
542
543         * ThemeWin32Classic.cs:
544         - Fix popup menu size adding one pixel on the top.
545         - Down menu item border from two to one to mimic Win32.
546         - Some source identation fixes. 
547
548 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
549
550         * ThemeWin32Classic.cs: Use float numbers to calculate size and
551         position of menu arrows, it fix wrong arrow size.
552
553 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
554
555         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
556         instead of line, it simplify draw operation and fix it using 3D
557         borders to mimic Win32.
558
559 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
560
561         * StatusStrip.cs: Add implementation of the sizing grip.
562
563         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
564         StatusStrip rendering.
565
566 2006-12-31  Chris Toshok  <toshok@ximian.com>
567
568         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
569         override the layout style (anchor/dock) of the control.  assign to
570         Dock instead.  Fixes bug #80416.
571
572         * ToolStrip.cs: same.
573
574 2006-12-31  Andreia Gaita  <avidigal@novell.com>
575
576         * ContainerControl.cs: Use ContainerSelected flag to check if 
577         a Container is directly selected, or if Select is called on a 
578         non-container. If a container is directly selected, focus events 
579         should not be raised.
580         Apply #80411 patch to throw exception on set_ActiveControl if 
581         control is the same as the current one.
582         
583         * Control.cs: Use ContainerSelected flag (see above).
584         Add invalidation check to raise event but not invalidate if 
585         dimensions are 0.       
586         Apply #80411 patch.
587         
588
589 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
590
591         * MenuAPI.cs: After click, dont close popup menu when menu is
592         ContextMenu. Fixes #80399.
593
594 2006-12-30  Chris Toshok  <toshok@ximian.com>
595
596         * ContainerControl.cs: make sure we throw the exception if the
597         container control doesn't contain the control we're setting
598         ActiveControl to.
599
600 2006-12-30  Chris Toshok  <toshok@ximian.com>
601
602         * Control.cs (SetTopLevel): fix the exception raised by
603         SetTopLevel for child controls.
604         (set_Anchor): call UpdateDistances when setting the anchor type.
605         This fixes bug #80336.
606
607 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
608
609         * Theme.cs: For now, revert back to 8pt font.
610
611 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
612
613         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
614         Fixes #80395.
615
616 2006-12-29  Chris Toshok  <toshok@ximian.com>
617
618         * Control.cs: reorder the code in OnResize to give the same event
619         ordering as MS.
620
621 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
622
623         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
624         TileHorizontally and TileVertically.
625         
626 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
627
628         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
629         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
630         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
631         Corrected copyright and email adress.
632
633 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
634
635         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
636         of Exception in FullPath property if no TreeView is associated with
637         the TreeNode.
638
639 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
640
641         * Theme.cs: Marked default_font as private, and initialize it in ctor
642         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
643         on 2.0 profile.
644         * ThemeGtk.cs: Removed default_font intialization.
645         * ThemeWin32Classic.cs: Removed default_font initialization.
646
647 2006-12-28  Chris Toshok  <toshok@ximian.com>
648
649         * Control.cs: fix a couple of place where we were creating handles
650         more aggressively than we should be.  Fixes ControlRefresh unit
651         tests.
652
653 2006-12-28  Chris Toshok  <toshok@ximian.com>
654
655         * Control.cs: contrary to what the comment said, Control.Dock does
656         not supercede Control.Anchor - the last one you assign to decides
657         the layout behavior.  so we need to keep track of which was the
658         last set.  Also, fix some of the affected property arguments in
659         PerformLayout calls, and remove an redundant parent.PerformLayout
660         call in OnResized.
661
662         Add a VisibleInternal property, which returns is_visible.  We
663         can/should get rid of all the usage of this field elsewhere.
664
665 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
666         
667         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
668         control style, not DoubleBuffer. Added UseDoubleBuffering property
669         that indicates whether doublebuffering is enabled and supported.
670         (comment from and code based on Gert Driesen's patch in #80324).
671         Fixes #80324.
672
673 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
674         
675         * Control.cs: Fixed a NRE.
676
677 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
678
679         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
680         for 2.0.
681
682 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
683
684         * Control.cs: Rewrote double buffering, now a seperate
685         class handles all the buffering, no Graphics is disposed of
686         until the painting is finished (earlier implementation 
687         would crash if the control was resized in the OnPaint, 
688         since it would cause the double buffer to be recreated
689         and the old one disposed), a separate Graphics is 
690         created for every paint (MS behaviour and anyways the state
691         of the Graphics would have to be saved and restored otherwise)
692         
693         * XplatUIDriver.cs: 
694         * XplatUIX11.cs:
695         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
696         so that we can get the graphics for the back buffer without
697         having to create a new one and remove the offscreen_dc parameter
698         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
699         
700 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
701
702         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
703         Also make virtual all the key-related methods.
704
705         * ListViewItem.cs: Make virtual the key related methods for
706         ListViewSubItemCollection.
707
708 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
709
710         * ListView.cs:
711         * ListViewItem.cs:
712         * ThemeWin32Classic.cs:
713         * Theme.cs: Initial support for Tile view in ListView,
714         as well as the implementation of the required bits for it (Item
715         and Subitem).
716
717 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
718
719         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
720         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
721         Provide useful exception messages.
722
723 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
724
725         * TrackBar.cs: Remove a warning.
726         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
727         when used by DateTimePicker, fixes #80287. This also requires that 
728         MonthCalendar implements it's own drawing for the yearly updown control,
729         otherwise the Capture tracking would be too complicated. Removed the Click 
730         and DoubleClick events (according to comments they were hiding the base class
731         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
732         raise these events, not that they cannot be raised. It is possible to raise 
733         them by calling OnClick and OnDoubleClick). Added two internal fields in 
734         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
735         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
736         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
737         event, no longer needed.
738         
739 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
740
741         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
742         true if new value differs from current value.
743
744 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
745
746         * Control.cs: ControlCollection.Count must be public. Fixed build of
747         unit tests.
748
749 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
750
751         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
752
753 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
754
755         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
756
757 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
758
759         * Control.cs: Invalidates control including when Width and Height is 
760         equal zero or is not visible, only Paint event must be care about 
761         this. Fixes #79913.
762
763 2006-12-26  Chris Toshok  <toshok@ximian.com>
764
765         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
766         more corcompare work.
767
768         * DataGridView.cs: fix compiler warning.
769
770         * ColumnHeader.cs: some corcompare work, and also take the
771         opportunity to make the internal fields private.
772
773         * ListView.cs: fix the fallout from the above field change.
774
775 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
776
777         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
778         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
779         ToolStripTextBox.cs: Fixes to events and corcompare.
780
781 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
782
783         * ListView.cs: Call owner.OnMousexx event to propagate events from
784         item to ListView. Fixes #80367.
785
786 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
787
788         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
789         if value is less than one. ItemHeight should not be set to a value
790         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
791         Removed extra tabs.
792
793 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
794
795         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
796         * ToolStripStatusLabel.cs: Add Spring for Moma.
797
798 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
799
800         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
801         Fixed code formatting. Removed debug code.
802         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
803
804 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
805
806         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
807         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
808         ArgumentOutOfRangeException if ColumnCount is negative. In 
809         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
810         less than 4 or higher than 32768.
811         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
812         Fixed FormatProvider to return CurrentCulture unless explicitly set.
813         Fixed IsFormatProviderDefault to return true if FormatProvider has
814         not been explicitly set.
815
816 2006-12-25  Chris Toshok  <toshok@ximian.com>
817
818         * Application.cs: add a couple of 2.0 events.
819
820 2006-12-25  Chris Toshok  <toshok@ximian.com>
821
822         * Control.cs: fix compiler warning.
823
824         * AxHost.cs: corcompare fixes.
825
826         * ApplicationContext.cs: corcompare fixes.
827
828 2006-12-25  Chris Toshok  <toshok@ximian.com>
829
830         * Control.cs: only update dist_right/dist_bottom if the
831         width/height is > 0.  this fixes anchored controls being resized
832         smaller until they disappear and then resized larger again.
833
834 2006-12-25  Chris Toshok  <toshok@ximian.com>
835
836         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
837         since they're nothing more than X/Left and Y/Top, respectively.
838
839         Also, move back to a per-control Bitmap/Graphics for
840         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
841         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
842         Height.
843
844 2006-12-25  Miguel de Icaza  <miguel@novell.com>
845
846         * MessageBox.cs: Implemented overload that takes a new "bool
847         displayHelpButton" by adding a new internal field "show_help".
848         When clicked this will raise the HelpRequested on the owner or the
849         main form. 
850
851         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
852         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
853
854         * ListView.cs: Add support ColumnWidthChanged and
855         ColumnWidthChanging. 
856
857         Add support for ColumnReordered event.
858         (ReorderColumn): Add NET_2_0 specific support for cancelling the
859         reorder.
860
861         Very nice codebase!
862
863         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
864
865         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
866
867 2006-12-24  Chris Toshok  <toshok@ximian.com>
868
869         * GridTablesFactory.cs: 2.0 corcompare work.
870
871         * ToolStripContainer.cs: add "override" to
872         ContextMenuStripChanged, and remove the local event object.
873
874         * ToolStripDropDown.cs: same with a couple properties.
875
876         * ToolStripPanel.cs: same with AutoSizeChanged event.
877
878         * TextBoxBase.cs: add "override" to AutoSizeChanged.
879
880         * Form.cs: add the remaining 2.0 events, and do some corcompare
881         attribute work.
882
883         * DateTimePicker.cs: add "new" to padding.
884
885         * ButtonBase.cs: use Control's use_compatible_text_rendering.
886
887         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
888
889         * DataGridView.cs: PaddingChanged is overridden.
890
891 2006-12-24  Chris Toshok  <toshok@ximian.com>
892
893         * Control.cs: corecompare work here too.
894
895         * DataGridViewElement.cs, DataGridView.cs,
896         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
897         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
898         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
899         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
900         work.
901
902 2006-12-24  Miguel de Icaza  <miguel@novell.com>
903
904         * Control.cs: Switched the error message on the console for a
905         todo.  A review of the code will have to cope with this anyways
906         (since its a large feature, it is in our radar) and it was
907         producing too much output when running PDN.
908
909         * ToolStripComboBox.cs: Set the text when the SelectedIndex
910         changes.  Applications depend on this (PDN 2.72)
911
912 2006-12-23  Chris Toshok  <toshok@ximian.com>
913
914         * TableLayoutSettings.cs: finish up the corcompare work for this
915         class.
916
917 2006-12-23  Chris Toshok  <toshok@ximian.com>
918
919         * Control.cs: make SetImplicitBounds internal, do some futzing
920         with LayoutEngine so that it's available in 1.1, and remove the
921         entire duplicated code mess from PerformLayout.  Use
922         System.Windows.Forms.Layout.DefaultLayout instead.
923
924         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
925
926 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
927
928         * Form.cs: Add MainMenuStrip property.
929
930 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
931
932         * Control.cs: Add ContextMenuStrip property and implementation.
933         Fix ContextMenu implementation to show menu centered on control when
934         activated using the keyboard instead of showing at screen (0,0).
935
936         * ToolStripDropDown.cs: Fix needed overload of Show ().
937
938 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
939
940         * Menu.cs: Name property added for 2.0 profile.
941         
942 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
943
944         * Menu.cs: Update information about FindMenuItem, method to be
945         implemented soon.
946
947 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
948
949         * MenuAPI.cs: When deselect items deselect also selected subitems.
950         
951 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
952
953         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
954         FindSubItemByCoord to found itens that is not active, also an
955         cheking added to FindSubItemByCoord to search for items only 
956         in visible popup windows. Fixes #80274.
957
958 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
959
960         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
961         internal property, it be care about change ExStyle. 
962
963 2006-12-22  Andreia Gaita  <avidigal@novell.com>
964
965         * ContainerControl.cs: set activeControl for parent forms up the 
966         tree when the new activecontrol is a container.
967         When validating the active control, if it is a container, also
968         raise up the validation for it's active control. Fixes #80280
969         
970         * Control.cs: Add internal property flag and check to prevent
971         Focus events from getting raised when Select() is called for
972         a ContainerControl. There are still too many focus events being
973         raised at the moment though.
974         Cleaned up the code a bit.
975
976 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
977
978         * Control.cs: Added all missing 2.0 events.and
979         fixed a couple of corcompare issues.
980         * TrackBar.cs: Implemented missing 2.0 bits.
981         * MonthCalendar.cs, 
982         * DateTimePicker.cs, 
983         * MdiClient.cs: Fixed some corcompare issues.
984
985 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
986
987         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
988         SplitterPanel.cs: corecompare work.
989
990 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
991
992         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
993         Clean up warnings for BackgroundImageChanged and PaddingChanged
994         events now that they are implemented in Control.cs.
995
996 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
997
998         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
999         
1000         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
1001         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
1002         of TableLayoutPanel and supporting cast.
1003
1004 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1005
1006         * XplatUIWin32.cs: 
1007         - GrabWindow now confines the mouse pointer to the confine window.
1008         - Added Win32ClipCursor and Win32GetClipCursor.
1009
1010         * Control.cs: 
1011         - Added CaptureWithConfine to be able to capture and confine 
1012         mouse pointer.
1013         
1014         * InternalWindowManager.cs: 
1015         - Call CaptureWithConfine instead of Capture if we're an
1016         MdiChild (fixes #79982).
1017
1018 2006-12-21  Chris Toshok  <toshok@ximian.com>
1019
1020         * DataGrid.cs: guard against the initial state of selection, where
1021         selection_start == -1.  make sure we only select from index >= 0.
1022         Fixes bug #80291.
1023
1024 2006-12-21  Chris Toshok  <toshok@ximian.com>
1025
1026         * Control.cs: we don't need to be so draconian with
1027         UpdateDistances, and we thusly don't need to call it before
1028         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
1029
1030 2006-12-21  Daniel Nauck  <dna@mono-project.de>
1031
1032         * ComboBox.cs,
1033         TextBox.cs: Implemented AutoComplete properties.
1034
1035 2006-12-20  Chris Toshok  <toshok@ximian.com>
1036
1037         * DataGridView*.cs: some corecompare work.
1038
1039 2006-12-20  Jackson Harper  <jackson@ximian.com>
1040
1041         * XplatUIX11.cs: We need to hide the caret when deleting it,
1042         otherwise you get carets left lying around everywhere.
1043         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
1044         prevents getting some weird half drawn caret tracers when
1045         scrolling.
1046         * TextControl.cs: Attempt to reduce the number of times we need to
1047         recreate the caret.
1048
1049 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
1050
1051         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
1052
1053 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1054
1055         * DateTimePicker.cs:
1056         - Implemented missing 2.0 bits.
1057         - Changed some default values to match MS.
1058         
1059 2006-12-20  Jackson Harper  <jackson@ximian.com>
1060
1061         * TextBoxBase.cs: When changing the font across the document we
1062         can't recalculate after changing each line, since that will cahnge
1063         the line count.
1064         - PreferredHeight is a little different than i thought.
1065         - When backspacing, move the caret before we do the actual char
1066         delete, because when that delete crosses a wrap boundary the
1067         positional information will change.
1068
1069 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1070
1071         * Control.cs: Added some missing 2.0 bits: 
1072         BackgroundImageLayout, BackgroundImageLayoutChanged, 
1073         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
1074         add IBindableComponent and IDropTarget implementation.
1075         
1076         * MonthCalendar.cs: 
1077         - Added all missing 2.0 features:
1078         BackgroundImageLayout, RightToLeftLayout, 
1079         OnHandleDestroyed, RightToLeftLayoutChanged, 
1080         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
1081         PaddingChanged.
1082         - Rewrote all the BoldDate code, it was completely broken.
1083         - Fixed all the tests (the tests can now be re-enabled, the
1084         problems were not with the tests, but with the control, it was
1085         mostly broken).
1086         
1087         * DateTimePicker.cs: Changed the location where the 
1088         MonthCalendar is shown.
1089         
1090 2006-12-19  Chris Toshok  <toshok@ximian.com>
1091
1092         * DataGridView.cs: add IDropTarget implementation.
1093
1094         * ToolStripPanel.cs: add IDropTarget implementation.
1095
1096 2006-12-19  Jackson Harper  <jackson@ximian.com>
1097
1098         * TextControl.cs: soft now means something different than what it
1099         used to mean, we want to move the caret regardless of whether or
1100         not this break was soft (would we really have wanted the caret
1101         to not move with the break in the old context?)
1102         * TreeView.cs: Make sure we factor in the vert scrollbar when
1103         calculating the horizontal scrollbar's maximum.
1104
1105 2006-12-19  Andreia Gaita  <avidigal@novell.org>
1106
1107         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
1108         check for keywords in alternate casing, close bug #80049.
1109
1110 2006-12-19  Chris Toshok  <toshok@ximian.com>
1111
1112         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
1113         methods (which all do nothing).
1114
1115         * IDropTarget.cs: add the 4 missing methods.
1116
1117 2006-12-19  Chris Toshok  <toshok@ximian.com>
1118
1119         * TableLayoutRowStyleCollection.cs: corcompare work.
1120         
1121         * TableLayoutSettings.cs: same.
1122
1123         * TableLayoutStyle.cs: same.
1124
1125         * TableLayoutColumnStyleCollection.cs: same.
1126
1127 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
1128
1129         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
1130         TableLayoutPanel I've had in my local tree for way too long.
1131
1132 2006-12-19  Miguel de Icaza  <miguel@novell.com>
1133
1134         * TableLayoutSettings.cs: Finish the public API (still needs all
1135         the logic to update on changes). 
1136
1137         * TableLayoutPanelCellPosition.cs: new file.
1138         
1139         * TableLayoutRowStyleCollection.cs,
1140         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
1141         TableLayoutSettings.cs: Track the final 2.0 table api.
1142
1143 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1144
1145         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
1146         and Image List 2.0 members for ColummnHeader.
1147         * ListView.cs: Add key-related 2.0 methods for
1148         ColumnHeaderCollection.
1149
1150 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
1151
1152         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
1153         ArgumentNullException if items argument is null. Ignore null item in
1154         arrays. Removed extra tabs.
1155
1156 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
1157
1158         * MonthCalendar.cs: Fixed InvalidCastException.
1159
1160 2006-12-19  Jackson Harper  <jackson@ximian.com>
1161
1162         * TextControl.cs: Don't increment the position here.
1163         - When calculating char positions only add in the line break size
1164         for hard line breaks.
1165
1166 2006-12-19  Andreia Gaita  <avidigal@novell.org>
1167
1168         * SendKeys.cs: Changed some things to match ms.net behaviour
1169         when parsing shifted capital letters.
1170         
1171         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
1172         Add window handle as parameter to SendInput. X11 needs the 
1173         window handle, and the handle being passed      to it in the keys 
1174         queue is the active control handle (which windows needs), not 
1175         the window handle.
1176         
1177         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
1178         to support SendKeys on X.       
1179         
1180         * X11Keyboard: Implement helper method to lookup a linux keycode
1181         given the virtual keycode. Added table of keycode-2-virtualkey
1182         values to support this.
1183
1184 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1185
1186         * ListView.cs: Add support for SelectedIndexCollection
1187         and SelectedItemCollection 2.0 methods. Implement support
1188         for ImageKey too.
1189         * ListViewItem.cs: Add support for ListViewSubItemCollection
1190         2.0 methods. Also, fix an incorrect behavior of AddRange method
1191         (it shouldn't call Clear).
1192         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
1193
1194 2006-12-19  Jackson Harper  <jackson@ximian.com>
1195
1196         * RichTextBox.cs: 
1197         * TextBoxBase.cs: New args for FormatText
1198         * TextControl.cs: Rewrote the main drawing method, this version
1199         feels a little easier to understand and debug to me.  Hopefully it
1200         does to others also
1201         - Fix FormatText to OR in the new formating values.  Added
1202         FormatSpecified param, basically this works in the same way as
1203         BoundsSpecified in Control.
1204         - Set the caret properties when the caret is positioned.
1205         - When wrapping text make sure that we calculate the width of the
1206         last character
1207         - when calculating alignments we might have wrapped down to the
1208         next line, so don't search for an individual tag, search for the
1209         end of the line
1210         - We need to invalidate the selection area when we replace the
1211         selection.
1212         
1213 2006-12-19  Daniel Nauck  <dna@mono-project.de>
1214
1215         * Application.cs: add Restart () 2.0 support
1216
1217 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1218
1219         * MenuItem.cs: Invalidate menu item rectangle after change Enable
1220         property. Fixes #80268.
1221         
1222 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1223
1224         * MenuAPI.cs: Dont trigger select event when closes top menu
1225         item. Fixes #80270.
1226
1227 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1228
1229         * MenuAPI.cs: When you click on menuitem only trigger onselect
1230         event for top menu itens. Fixes #80271.
1231         
1232 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1233
1234         * MdiWindowManager.cs: Make IconicBounds depend on
1235         the bottom of MdiClient, not the top (fixes #80267)
1236         
1237 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1238
1239         * MdiClient.cs: Added missing 2.0 attribute
1240
1241 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1242
1243         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
1244         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
1245
1246 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1247
1248         * MenuAPI.cs: Fix click when menuitem is not popup,
1249         this regression was caused by last commit (#80272).
1250
1251 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
1252
1253         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
1254         fire click event or close menu. Fixes #80272.
1255
1256 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1257
1258         * ListViewHitTestInfo.cs: add
1259
1260 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1261
1262         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
1263         * FlatButtonAppearance.cs: add
1264         * DockingAttribute.cs: add
1265
1266 2006-12-17  Chris Toshok  <toshok@ximian.com>
1267
1268         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
1269         and rebind our columns when it does - this way, if you make
1270         changes to the DataTable (or set the Table attribute on a DataView
1271         after setting it as the DataGrid's DataSource, the changes are
1272         made visible.)  Fixes bug #80107.
1273
1274 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1275
1276         * ListViewGroup.cs: add internal Location property for layouting.
1277         * Theme.cs: add abstract ListViewGroupHeight function.
1278         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
1279
1280 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1281
1282         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
1283         Added reset of selected index to 0 when adding first tab page.
1284         Fixes #80264
1285         
1286         * NumericUpDown.cs: Fix NET_2_0 check
1287
1288 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1289
1290         * ListViewGroup.cs: fixed DefaultValueAttribute value
1291
1292 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1293
1294         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
1295
1296 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1297
1298         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
1299         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
1300         ScrollableControl.cs: Add a handful of methods that are
1301         overwritten in 2.0 
1302
1303 2006-12-15  Chris Toshok  <toshok@ximian.com>
1304
1305         * XplatUIWin32.cs: initial implementation of the Reversible
1306         drawing functions.  there are some problems.  DrawReversibleFrame
1307         doesn't seem to work at all for Dashed FrameStyle, and in the
1308         Thick case there are drawing errors at the corners (we probably
1309         need to bind Rectangle instead of doing moveto/lineto's.)
1310
1311 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1312         
1313         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
1314         to send blocks of key messages. Send accumulates keys to send with Flush, 
1315         while SendWait sends all keys immediately.
1316                 
1317         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
1318         XplatUIX11.cs,  XplatUIX11-new.cs:
1319         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
1320         to Win32 SendInput.
1321         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
1322         
1323         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
1324         testing for ms.net on this class is very tricky, as the tests run too fast 
1325         to allow the hook to release, essentially freezing the keyboard and the 
1326         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
1327         category :p
1328
1329 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1330
1331         * Padding.cs: fixed serialization compability to MS ("_var" field names),
1332                         added missing attributes.
1333  
1334 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1335
1336         * ListViewGroup.cs: Added missing attributes.
1337         * ListViewGroupCollection.cs: Added missing attributes.
1338
1339 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1340
1341         * ListViewItem.cs: fixed ListViewSubItem text property.
1342
1343 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1344         
1345         * Control.cs: Added missing 2.0 attributes
1346         
1347 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1348         
1349         * MdiClient.cs: Added missing 2.0 attribute.
1350         * MonthCalendar.cs: Added some missing 2.0 attributes 
1351         and properties.
1352         
1353 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1354
1355         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
1356
1357 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
1358
1359         * MainMenu.cs: Add the new 2.0 constructor to help out people
1360         using the MainMenu in VS2005.
1361
1362 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1363         
1364         * MdiChildContext.cs: Removed it, no longer used.
1365         * MdiClient.cs: Added missing 2.0 attributes.
1366         
1367 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1368         
1369         * InternalWindowManager.cs: Fix a NullRef with previous 
1370         changes for toolwindows.
1371         
1372 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1373
1374         * Control.cs: 
1375         - Added AfterTopMostControl to allow for certain controls 
1376         to always stay on top when normal controls are brought to 
1377         front.
1378         
1379         * XplatUIWin32.cs: 
1380         - (DrawInversibleRectangle): Get window rectangle from Win32 
1381         in stead of from control, since Win32 doesn't calculate
1382         screen coords correctly from control's Location if it 
1383         have docked siblings.
1384         
1385         * MdiWindowManager.cs:
1386         - Correct the control menu popup location when clicked on
1387         the maximized form icon. (fixes #80223.1)
1388         - Don't show moving rectangle if mouse hasn't moved from
1389         the original clicked point.
1390         - Removed FormGotFocus handler (not used).
1391         - Calculate the control buttons location from the main
1392         window's size and not client size (fixes #79770).
1393         - Form is now closed when the form icon is double-clicked
1394         (fixes #79775). 
1395         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
1396         
1397         * InternalWindowManager.cs:
1398         - Moved some MDI-only methods to MdiWindowManager.
1399         - Removed unused properties and methods.
1400         - Unified method naming for methods handling wm messages.
1401         - Moved all message handling to seperate methods for
1402         each message.
1403         
1404         * ThemeWin32Classic.cs:
1405         - DrawManagedWindowDecorations now draws the title bar 
1406         with a gradient brush.
1407         - Add a CPDrawButtonInternal that allows us to specify
1408         light, normal and dark colors for the buttons (control 
1409         buttons for MDI children were drawn with the same light
1410         color as the background, therefore loosing the 3D effect).
1411         
1412         * SizeGrip.cs:
1413         - Add a CapturedControl property that is used to 
1414         determine the control to resize (defaults to parent). 
1415         Needed for MdiClient, since its SizeGrip's parent is
1416         MdiClient, but the control to resize is the main form.
1417         
1418         * MdiClient.cs:
1419         - Set SizeGrip's CapturedControl to the main form in order
1420         to resize the main form and not the MdiClient.
1421         - Override AfterTopMostControl to leave the scrollbars 
1422         always on top.
1423
1424 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1425
1426         * ListView.cs: fixed ListViewItemCollection AddRange and
1427                         implemented ListViewItemCollection AddRange 2.0 support.
1428
1429 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1430
1431         * ListViewGroup.cs: Add.
1432         * ListViewGroupCollection.cs: Add
1433         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
1434         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
1435                                 stub for ImageKey 2.0 support.
1436
1437 2006-12-14  Mike Kestner  <mkestner@novell.com>
1438
1439         * ListView.cs: add text padding to the autocalculation for columns
1440         of width -2.  Fixes #80207.
1441  
1442 2006-12-14  Mike Kestner  <mkestner@novell.com>
1443
1444         * ListView.cs: add some index guarding for partial row navigation 
1445         logic.  Fixes #80250.
1446
1447 2006-12-14  Mike Kestner  <mkestner@novell.com>
1448
1449         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
1450         are added or inserted to the collection.  Fixes #81099.
1451
1452 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
1453
1454         * MenuAPI.cs: Closes menu when right click out side of popup
1455         it fix problem in ContextMenu and MainMenu. Fixes #80252.
1456
1457 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1458
1459         * ListViewItem.cs: Fix dumb error.
1460
1461         * ListView.cs: Add Find and ContainsKey methods in 
1462         ListViewItemCollection, and also return true for IsReadOnly
1463         and IsFixedSize (changes for 2.0). 
1464
1465 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
1466
1467         * Control.cs: Allow Region to be set to null.
1468
1469 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1470
1471         * MdiWindowManager.cs: Remove unused (commented out) code.
1472         * Form.cs: When the MdiChild is maximized, the form needs 
1473         WM_NCMOUSELEAVE, so request it.
1474         * InternalWindowManager.cs: 
1475         - Added tooltips to control buttons.
1476         - Removed duplicated control button handling code.
1477         - Removed unused (commented out) code.
1478         
1479 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
1480
1481         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
1482         was used because we must set cursor without trigger ChangeCursor event
1483         and without change Cursor control property. Fixes #79963.
1484
1485 2006-12-12  Andreia Gaita  <avidigal@novell.com>
1486         
1487         * Control.cs: Check if Region setter value is null, and ignore
1488
1489 2006-12-12  Jackson Harper  <jackson@ximian.com>
1490
1491         * TextControl.cs: We were almost always drawing one more line then
1492         needed, since the GetLineByPixel will return the last line found
1493         at that pixel. In most cases though, we were invalidating up to
1494         the junction between two lines.
1495         - Improve debug code.
1496
1497 2006-12-12  Chris Toshok  <toshok@ximian.com>
1498
1499         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
1500         and FillReversibleRectangle.
1501
1502         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
1503         and FillReversibleRectangle.
1504
1505         * XplatUIWin32.cs: add stubs which do nothing for
1506         DrawReversibleFrame, DrawReversibleLine, and
1507         FillReversibleRectangle.
1508
1509         * XplatUIOSX.cs: add stubs which raise NIE for
1510         DrawReversibleFrame, DrawReversibleLine, and
1511         FillReversibleRectangle.
1512
1513         * XplatUIX11.cs: add working implementation for
1514         DrawReversibleFrame, DrawReversibleLine, and
1515         FillReversibleRectangle.
1516         
1517         * ControlPaint.cs: implement DrawReversibleFrame,
1518         DrawReversibleLine, and FillReversibleRectangle, by calling into
1519         the appropriate XplatUI method.
1520
1521 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1522
1523         * Form.cs: Make MdiClient have the focus even if it's
1524         not selectable, since it should receive WM_KEY* and WM_MOUSE 
1525         messages. Fixes #79907.
1526         
1527 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1528
1529         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
1530         queried after the window is created.
1531         
1532         * XplatUIX11.cs: Added SendParentNotify to implement 
1533         WM_PARENTNOTIFY logic. Fixes #79965.
1534         
1535         * Control.cs: Added MakeParam.
1536         
1537 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1538
1539         * MdiClient.cs: Resume Layout before setting window
1540         states (fixes #80201).
1541
1542 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1543
1544         * MenuAPI.cs: Deselect a menu item after performing
1545         the click (fixes #80197).
1546
1547 2006-12-11  Jackson Harper  <jackson@ximian.com>
1548
1549         * TextBoxBase.cs: We need to cap this value, since Maximum -
1550         ViewPortHeight can be less than zero.
1551         - Only do selection with the left mouse button.
1552         * TextBox.cs: Don't tell the world that we have a context menu.
1553         * Control.cs: New method so that we can control whether or not the
1554         context menu is visible outside MWF.
1555
1556 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
1557
1558         * ToolBarButton.cs: Fix text positon. 
1559
1560 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1561
1562         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
1563
1564         * Control.cs (DoubleBuffered): Add implementation.
1565
1566         * Application.cs (OpenForms): Add.
1567
1568 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
1569
1570         * Form.cs: Use opacity instead of Opactiy to determine if we need
1571         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
1572
1573 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
1574
1575         * Control.cs: Fix NRE if Control.Site was set to null.
1576
1577 2006-12-11  Chris Toshok  <toshok@ximian.com>
1578
1579         * Control.cs: ControlCollection.Remove should return if the arg is
1580         null, and ControlCollection.SetChildIndex should raise a ANE.
1581
1582 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
1583
1584         * Control.cs: Verify value set for Dock property. Code formatting
1585         updates.
1586
1587 2006-12-11  Jackson Harper  <jackson@ximian.com>
1588
1589         * TextControl.cs: Draw the caret and the selection when a flag is
1590         set on the owner.
1591         * TextBoxBase.cs: We want to draw the caret and the selection for
1592         TextBox but not for TextBoxBase.
1593         - If the window is resized and scrolling is no longer needed (the
1594         whole doc is visible) set the scroll position to zero.
1595         - The default SelectWord (the one TextBox uses) should move the
1596         caret to the end of the word.
1597         - SelectAll moves the caret to the end of the selection.
1598         * TextBox.cs: We don't selectall on focus, we just do it when the
1599         control is created.
1600         
1601 2006-12-11  Mike Kestner  <mkestner@novell.com>
1602
1603         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
1604
1605 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1606
1607         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
1608         2.0 support.
1609         * ListViewItem.cs: Add Name 2.0 property.
1610
1611 2006-12-11  Andreia Gaita  <avidigal@novell.com>
1612
1613         * TabControl.cs: Set visibility on selected or default tab 
1614         when tabcontrol handle is created, so that it's contents
1615         actually show up (duh). Fixes #80193
1616         Don't redraw the control if there is no handle created, as
1617         the selected index might be completely invalid. Added some tests
1618         to check for this.
1619
1620 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
1621
1622         * ToolBar.cs: Uses maximun width and height of all buttons as 
1623         button rectangle when ButtonSize specified, it looks strange but
1624         is what happens in Win32. Fixes #80189.
1625
1626 2006-12-11  Jackson Harper  <jackson@ximian.com>
1627
1628         * TextControl.cs: Need to track undo levels ourself, since
1629         compound actions will mess them up.
1630
1631 2006-12-10  Andreia Gaita  <avidigal@novell.com>
1632
1633         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
1634         SelectedIndex value is changed (even if it's not valid).
1635         Reset SelectedIndex to 0 when the handle is created and if
1636         the current index is invalid.
1637         Fixes SelectdeIndex unit tests and #80128
1638
1639 2006-12-08  Chris Toshok  <toshok@ximian.com>
1640
1641         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
1642         calls EndEdit, it needs to be called before we set current_cell to
1643         its new value.  Otherwise, we end up committing the value in the
1644         textbox to the new cell as well.  Fixes bug #80160.
1645
1646 2006-12-08  Chris Toshok  <toshok@ximian.com>
1647
1648         * Form.cs (set_CancelButton): if the button's DialogResult is
1649         None, set it to Cancel.  Fixes bug 80180.
1650
1651 2006-12-08  Jackson Harper  <jackson@ximian.com>
1652
1653         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
1654         to watch ourselves when setting the canvas size and setting the
1655         scrollbar values.
1656
1657 2006-12-08  Chris Toshok  <toshok@ximian.com>
1658
1659         * DataGrid.cs: comment out the two MakeTransparent calls for the
1660         time being so people using trunk (and not 1.2.2) on windows can
1661         actually use the datagrid.  This deals with bug #80151.
1662
1663 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
1664
1665         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
1666         Graphics.DrawImage (image, int, int, int, int) overload instead
1667         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
1668         the dpi difference and was blurring images it drew.
1669         [Fixes bug #79960]
1670
1671 2006-12-08  Chris Toshok  <toshok@ximian.com>
1672
1673         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
1674         rowcnt is 0 (such as with an empty datasource), and make sure we
1675         initialize not_usedarea.Y to cells.Y, so we don't draw over the
1676         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
1677
1678 2006-12-08  Chris Toshok  <toshok@ximian.com>
1679
1680         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
1681         grid.
1682
1683 2006-12-08  Chris Toshok  <toshok@ximian.com>
1684
1685         [ Fixes bug #80167 ]
1686         
1687         * ThemeWin32Classic.cs: don't draw the image if the button's flat
1688         style is FlatStyle.System.
1689
1690         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
1691         ButtonBase.flat_style private, and switch uses of it to the public
1692         property.
1693         
1694 2006-12-08  Chris Toshok  <toshok@ximian.com>
1695
1696         [ Fixes bug #80121 ]
1697         
1698         * ThemeWin32Classic.cs: center the caption text in the datagrid
1699         when we draw it.
1700
1701         * DataGrid.cs: lessen the amount we add to the caption height from
1702         6 to 2.  6 was making it huge.
1703
1704 2006-12-08  Andreia Gaita  <avidigal@novell.com>
1705
1706         * UpDownBase: Handle MouseWheel call directly instead of capturing
1707         the inner textbox's OnMouseWheel. Fixes #80166
1708
1709 2006-12-08  Jackson Harper  <jackson@ximian.com>
1710
1711         * TextControl.cs: We need to invalidate the textbox when we empty
1712         it (how had this not been discovered before?)
1713
1714 2006-12-08  Jackson Harper  <jackson@ximian.com>
1715
1716         * TextBoxBase.cs: Reworked the mouse down code so I could get it
1717         to behave like MS, we now ignore the eventargs.Click and just
1718         track state ourself, which we were already doing anyways.
1719         - Constrain the double click handler to the double click size.
1720         
1721 2006-12-08  Chris Toshok  <toshok@ximian.com>
1722
1723         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
1724         direction if that scrollbar isn't shown.  fixes bug #80158.
1725
1726 2006-12-08  Andreia Gaita  <avidigal@novell.com>
1727
1728         * NumericUpDown.cs: Update value on getter. Fixes #79950
1729
1730 2006-12-08  Chris Toshok  <toshok@ximian.com>
1731
1732         * MenuItem.cs: add back in the event cloning code.  I didn't know
1733         how to do it in the face of the EventHandlerList work i'd done
1734         last week.  Fixes bug #80183.
1735
1736 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
1737
1738         * Control.cs: Add an invalidate to the BackgroundImage setter.
1739         [Fixes 80184]
1740
1741 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
1742
1743         * ToolStrip*: Add some small properties reported by MoMA, fix event
1744         firing and default properties based off of unit tests, and add some
1745         attributes based off of the class status page.
1746
1747 2006-12-07  Jackson Harper  <jackson@ximian.com>
1748
1749         * TextBoxBase.cs: Take HideSelection into account when determining
1750         whether or not to show the selection.
1751         * RichTextBox.cs: After inserting the RTF into the document move
1752         the cursor to the beginning of the document.
1753
1754 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
1755
1756         * Control.cs: Remove static ArrayList "controls" which maintained
1757         a reference to every control created.
1758         * Application.cs: Create a static FormCollection to maintain a reference
1759         to every form created.  Use it in places that formerly enumerated through
1760         the controls one looking for forms.
1761         * Form.cs: Add and remove self from above FormCollection.
1762
1763 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
1764
1765         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
1766           not libgdk (though it makes me wonder why I didn't have any
1767           problems)
1768
1769 2006-12-07  Chris Toshok  <toshok@ximian.com>
1770
1771         [ you had to know this was coming after that last commit...]
1772         
1773         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
1774         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
1775         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
1776         XCopyArea).
1777
1778 2006-12-07  Chris Toshok  <toshok@ximian.com>
1779
1780         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
1781         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
1782         all the behavior we need for double buffering.
1783
1784         * XplatUIDriver.cs: implement the 3 double buffer methods using a
1785         client side Bitmap, just like the old Control-based double buffer
1786         code did.  The methods are virtual, so each XplatUI driver
1787         subclass can replace the implementation to use a faster, platform
1788         specific approach.
1789
1790         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
1791         double buffer code, and clean things up a bit in the process.
1792
1793 2006-12-06  Chris Toshok  <toshok@ximian.com>
1794
1795         * Control.cs: reindent WndProc.
1796
1797 2006-12-06  Chris Toshok  <toshok@ximian.com>
1798
1799         [ I wanna be like BenM when I grow up ]
1800         
1801         * Hwnd.cs: create a single static Graphics object on the static
1802         Bitmap we create.  use this for our text measurements.
1803
1804         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
1805         This was causing us to allocate a backbuffer for every control,
1806         even when it wasn't flagged as double buffered.  Instead use the
1807         single graphics instance.  This might have implications for
1808         multithreaded applications.  If we run into problems we can switch
1809         to creating 1 Graphics per control, on the static Hwnd bitmap.
1810
1811         this change nets us a 7M savings in private dirty mappings when
1812         running FormsTest.exe.
1813
1814 2006-12-06  Chris Toshok  <toshok@ximian.com>
1815
1816         * ListView.cs: the BackgroundImage override is just to set
1817         attributes.  chain up to base.BackgroundImage.
1818
1819         * RichTextBox.cs: same.
1820
1821         * ToolBar.cs: same, but we need to also redraw the toolbar when it
1822         changes, so instead a handler for BackgroundImageChanged.
1823         
1824         * Control.cs: make background_image private.
1825
1826 2006-12-06  Chris Toshok  <toshok@ximian.com>
1827
1828         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
1829         sure we even need this assignment, but roll with it for now.
1830
1831         * Control.cs: make the cursor field private.
1832
1833 2006-12-06  Chris Toshok  <toshok@ximian.com>
1834
1835         * Form.cs: we don't need to explicitly set ImeMode to
1836         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
1837         behavior in the face of ImeMode.Inherit.
1838
1839         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
1840         change the ctor's assignment to use ImeMode instead of ime_mode.
1841
1842         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
1843         ImeModeInherit.  Only check for the parent's imemode (and return
1844         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
1845         This fixes the button unit test, which sets both ImeMode and
1846         DefaultImeMode to ImeMode.Disable.
1847
1848         also make the ime_mode field private.
1849
1850 2006-12-06  Chris Toshok  <toshok@ximian.com>
1851
1852         * Control.cs: make control_style private.
1853
1854         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
1855         setting the styles to true, then setting them to false instead of
1856         reverting to their previous values.
1857
1858         also, call SetStyle on the scrollbars instead of using
1859         control_style directly.
1860
1861 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
1862
1863         * FormCollection.cs: Implement. [2.0]
1864
1865 2006-12-06  Chris Toshok  <toshok@ximian.com>
1866
1867         * Control.cs: make tab_stop private.
1868
1869         * Label.cs: set TabStop, not tab_stop.  reformat some event
1870         add/remove methods to make them more compact.
1871
1872 2006-12-06  Chris Toshok  <toshok@ximian.com>
1873
1874         * RadioButton.cs: fix TabStop handling.
1875
1876 2006-12-06  Chris Toshok  <toshok@ximian.com>
1877
1878         * TextBox.cs: remove the explicit assignments to has_focus.
1879         Control does that.
1880
1881         * ButtonBase.cs: remove the assignment to has_focus.  Control will
1882         manage that.
1883         
1884 2006-12-06  Chris Toshok  <toshok@ximian.com>
1885
1886         * ButtonBase.cs: remove all uses of is_enabled from this code.
1887         it's always true when any of the code containing the checks is
1888         executed.
1889
1890 2006-12-06  Chris Toshok  <toshok@ximian.com>
1891
1892         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
1893         with different semantics (some are present in both 1.1 and 2.0
1894         profiles) so that we match MS's behavior in our unit tests.
1895
1896 2006-12-06  Jackson Harper  <jackson@ximian.com>
1897
1898         * TextControl.cs: Make this operation undoable.
1899         * TextBoxBase.cs: Factor the border width into the preferred
1900         height.
1901         - implement Modified as per the spec.
1902
1903 2006-12-06  Chris Toshok  <toshok@ximian.com>
1904
1905         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
1906
1907 2006-12-06  Chris Toshok  <toshok@ximian.com>
1908
1909         * Control.cs: make right_to_left and context_menu fields private.
1910
1911 2006-12-06  Chris Toshok  <toshok@ximian.com>
1912
1913         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
1914         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
1915         Control.child_controls private.  switch all uses over to
1916         Control.Controls.
1917
1918 2006-12-06  Chris Toshok  <toshok@ximian.com>
1919
1920         * System.Windows.Forms/GroupBox.cs,
1921         System.Windows.Forms/AccessibleObject.cs,
1922         System.Windows.Forms/ErrorProvider.cs,
1923         System.Windows.Forms/Control.cs,
1924         System.Windows.Forms/UpDownBase.cs,
1925         System.Windows.Forms/ScrollBar.cs,
1926         System.Windows.Forms/DateTimePicker.cs,
1927         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
1928         System.Windows.Forms/ToolTip.cs,
1929         System.Windows.Forms/RadioButton.cs,
1930         System.Windows.Forms/LinkLabel.cs,
1931         System.Windows.Forms/Splitter.cs,
1932         System.Windows.Forms/TextBoxBase.cs,
1933         System.Windows.Forms/ToolStripTextBox.cs,
1934         System.Windows.Forms/ContainerControl.cs,
1935         System.Windows.Forms/ThemeWin32Classic.cs,
1936         System.Windows.Forms/SizeGrip.cs,
1937         System.Windows.Forms/ToolStripDropDown.cs,
1938         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
1939         private.  switch all uses over to Control.Parent.
1940
1941 2006-12-06  Chris Toshok  <toshok@ximian.com>
1942
1943         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
1944         Control does this before calling emitting these events.
1945
1946         * TabControl.cs: same.
1947
1948         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
1949         Control.client_rect.
1950
1951         * ButtonBase.cs: use the ClientSize property instead of the
1952         client_size field.
1953
1954         * ScrollableControl.cs: same.
1955
1956         * Control.cs: another pass at making properties private.  also,
1957         move the initialization of tab_stop to the ctor.
1958
1959 2006-12-05  Andreia Gaita <avidigal@novell.com>
1960
1961         * TabControl.cs: Let the selected index be set freely if the 
1962         control handle is not yet created.
1963
1964 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1965
1966         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
1967         internal until I can rewrite DefaultLayout.
1968         * ToolStrip.cs: Fix build error and some general cleaning.
1969         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
1970         Fix build errors caused by making some of Control's fields private.
1971
1972 2006-12-05  Jackson Harper  <jackson@ximian.com>
1973
1974         * TextControl.cs: Redo Insert a little so that it use IndexOf
1975         instead of Split, this prevents it from messing up on things like
1976         \n\n\n. Also more effecient since the split array doesn't need to
1977         be created.
1978         * TextBoxBase.cs: AppendText doesnt handle multiline and non
1979         multiline text differently, this is the first of many fixes that
1980         will make multiline/non-multiline the same thing as far as the
1981         TextBoxBase is concerned.
1982         - Don't split the text and insert lines, this can lose some line
1983         endings (like is the last line a soft or hard break). Instead use
1984         the new Insert.
1985         - Fix an off by one when combining all the lines in the Text
1986         getter.
1987         - Remove separate multiline handling from the Text getter/setter.
1988
1989 2006-12-05  Chris Toshok  <toshok@ximian.com>
1990
1991         * ButtonBase.cs: a few changes:
1992
1993         - don't reinitialize internal Control fields in the ctor when they
1994         have the same values as Control sets them.
1995
1996         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
1997         this before calling those methods.
1998
1999         - we don't need to call Refresh for anything.  use Invalidate
2000         instead.
2001
2002         - OnEnabledChanged doesn't need to redraw at all - Control.cs
2003         calls Refresh in its OnEnabledChanged.
2004         
2005         - several of the events we were registered for in the ctor to
2006         redraw ourselves already include calls to Invalidate in the
2007         property setters that raise the events.  remove the extra
2008         invalidation.
2009
2010         - reformat a switch statement that was 83274658 columns wide.
2011         
2012 2006-12-05  Mike Kestner  <mkestner@novell.com>
2013
2014         * ComboBox.cs: fix a unit test regression from a TextBox
2015         SelectionLength return of -1 when there's no selection.  
2016
2017 2006-12-05  Chris Toshok  <toshok@ximian.com>
2018
2019         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
2020         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
2021         cleaning up some of the internal Control fields being used by
2022         subclasses.
2023
2024 2006-12-05  Mike Kestner  <mkestner@novell.com>
2025
2026         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
2027         listbox after AddImplicit calls since it defaults to hidden. Add a 
2028         hack to preserve requested heights across DropDownStyle changes.
2029
2030 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
2031
2032         * PropertyGrid.cs: Hide FindFirstItem method from public API.
2033
2034 2006-12-05  Chris Toshok  <toshok@ximian.com>
2035
2036         * DataGridView.cs: fix compiler warnings.
2037
2038         * PrintControllerWithStatusDialog.cs: same.
2039
2040         * ToolBar.cs: same.
2041
2042         * FolderBrowserDialog.cs: same.
2043
2044         * Splitter.cs: same.
2045
2046         * DataGridViewComboBoxCell.cs: same.
2047
2048         * XplatUIWin32.cs: same.
2049
2050         * PictureBox.cs: same.
2051
2052         * Win32DnD.cs: same.
2053
2054         * PageSetupDialog.cs: same.
2055
2056         * FileDialog.cs: same.
2057
2058         * PrintDialog.cs: same.
2059
2060         * DataGridTextBoxColumn.cs: same.
2061
2062         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
2063
2064 2006-12-05  Chris Toshok  <toshok@ximian.com>
2065
2066         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
2067         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
2068         System.ComponentModel.EventHandlerList work.
2069
2070 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
2071
2072         * DrawTreeNodeEventArgs.cs: Added.
2073
2074 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2075         
2076         * InternalWindowManager.cs: Remove an unused field.
2077         
2078 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2079
2080         * InternalWindowManager.cs:
2081         - Save the point where the title bar is clicked.
2082         
2083         * MdiWindowManager.cs:
2084         - Only allow moving of the window as long as the 
2085         clicked point on the title bar does not get out of
2086         MdiClient's rectangle. Fixes #79982.
2087         
2088         * MdiClient.cs:
2089         - Added Horizontal/VerticalScrollbarVisible.
2090         - Simplified the scrollbar sizing algorithm.
2091         - Cache the difference in scrolled value in
2092         H/VBarValueChanged and move the calculation out
2093         of the for loop.
2094
2095 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2096
2097         * Control.cs: Make the Console.WriteLine in WndProc 
2098         write more info.
2099
2100 2006-12-05  Chris Toshok  <toshok@ximian.com>
2101
2102         * ToolStripManager.cs, ToolStripButton.cs,
2103         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
2104         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
2105         ToolStripSplitButton.cs, ToolStripSeparator.cs,
2106         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
2107         ToolStripProgressBar.cs, ToolStripContainer.cs,
2108         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
2109         to using System.ComponentModel.EventHandlerList.
2110
2111 2006-12-04  Chris Toshok  <toshok@ximian.com>
2112
2113         * LinkLabel.cs: fix up compiler warnings.
2114
2115         * TableLayoutSettings.cs: same.
2116
2117         * TreeView.cs: same.
2118
2119         * ToolBar.cs: same.
2120
2121         * TabControl.cs: same.
2122
2123         * RichTextBox.cs: same.
2124
2125         * ListViewItem.cs: same.
2126
2127         * PropertyGrid.cs: same.
2128
2129         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
2130
2131         * ToolTip.cs same.
2132
2133         * TextRenderer.cs: fix up compiler warnings.
2134
2135         * Label.cs: same.
2136
2137         * Form.cs: corcompare fixes.
2138
2139         * PictureBox.cs: fix up compiler warnings.
2140
2141         * ImageListStreamer.cs: same.
2142
2143         * TrackBar.cs: corcompare fix.
2144
2145         * Control.cs: fix up compiler warnings.
2146
2147         * SplitterPanel.cs: same.
2148
2149         * NumericTextBox.cs: same.
2150
2151         * ImageList.cs: same.
2152
2153         * StatusStrip.cs: same.
2154
2155         * ProgressBar.cs: corcompare fix.
2156
2157         * ToolStripButton.cs: fix up compiler warnings.
2158
2159         * ToolStripStatusLabel.cs: same.
2160
2161         * ToolStripSplitButton.cs: same.
2162
2163         * ToolStripSeparator.cs: same.
2164
2165         * ToolStripProgressBar.cs: same.
2166
2167         * ToolStripDropDownMenu.cs: same
2168
2169         * ToolStripDropDown.cs: same.
2170
2171         * ToolStripDropDownButton.cs: same.
2172
2173         * ToolStrip.cs: same.
2174
2175         * ToolStripControlHost.cs: same.
2176
2177         * ToolStripContentPanel.cs: same.
2178
2179         * ToolStripDropDown.cs: same.
2180
2181         * ToolStripContainer.cs: same.
2182
2183         * ToolStripPanel.cs: same, and add "new" where we need it to work
2184         with the new ArrangedElementCollection.
2185
2186         * ToolStripItemCollection.cs: add "new" where we need it to work
2187         with the new ArrangedElementCollection.
2188
2189 2006-12-04  Andreia Gaita <avidigal@novell.com>
2190
2191         * TabControl.cs: Fix default tab selection to after TabControl
2192         gets focus and not before. Fixes #80128
2193
2194 2006-12-04  Chris Toshok  <toshok@ximian.com>
2195
2196         * DataGridTableStyle.cs: remove the gross calling of
2197         datagrid.Refresh from here.  It's a broken idea and it doesn't
2198         work anyway.
2199
2200         * DataGrid.cs: instead, just register/unregister from the
2201         DataGridTableStyle events in CurrentTableStyle.  we play it
2202         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
2203         even though some would most likely not require it.  Fixes bug
2204         #80115 (and one portion of #80117 as a side effect).
2205
2206 2006-12-04  Chris Toshok  <toshok@ximian.com>
2207
2208         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
2209         so the textbox (if any) goes away.  Fixes bug #80117.
2210
2211 2006-12-04  Chris Toshok  <toshok@ximian.com>
2212
2213         * DataGridColumnStyle.cs: set the column's readonly property
2214         initially based on the property descriptor's IsReadOnly.  Fixes
2215         bug #80044.
2216
2217 2006-12-04  Chris Toshok  <toshok@ximian.com>
2218
2219         * ComboBox.cs: wrap the dropdown style changing work in
2220         SuspendLayout/ResumeLayout.  Fixes bug #79968.
2221
2222 2006-12-04  Jackson Harper  <jackson@ximian.com>
2223
2224         * TextBoxBase.cs: Fix off by one, since these are one-based.
2225         * TextBox.cs: Select all the text when we get focus.  The TextBox
2226         does this but the RTB does not.
2227
2228 2006-12-04  Chris Toshok  <toshok@ximian.com>
2229
2230         * DataGridTextBoxColumn.cs: remove some spew.
2231
2232         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
2233         but some part of me is saying "it shouldn't be here.."  At any
2234         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
2235         setting the value.
2236
2237 2006-12-04  Chris Toshok  <toshok@ximian.com>
2238
2239         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
2240         to reassign the propertydescriptor.
2241
2242 2006-12-04  Jackson Harper  <jackson@ximian.com>
2243
2244         * TextBoxBase.cs:
2245         * TextControl.cs: Remove some unused variables.  Maybe this will
2246         patch things up between mike and I.
2247         - don't split lines less then one char wide, if the viewport is
2248         that small text won't be visible anyways.
2249         
2250 2006-12-04  Jackson Harper  <jackson@ximian.com>
2251
2252         * TextBoxBase.cs: Default selection length is -1, need to do some
2253         more testing on windows to see when this is used for the property.
2254         - Redid the Lines [] property to that we properly remove soft line
2255         breaks
2256         - added support for preserving carriage returns
2257         -  CanUndo is not a variable like 'is undo enabled' it just returns
2258         true if there is undo operations available.
2259         - AppendText doesn't need to grab the last tag itself anymore,
2260         this happens automatically when we move the cursor.
2261         * TextControl.cs: Add CompoundActions to the undo class. This
2262         allows combining the other operations into one big option.  ie a
2263         paste will combine { delete old, insert new, move cursor }
2264         - Add InsertString undo operation
2265         - New method for deleting multiline text
2266         - Add carriage returns to lines. So we can preserve carriage
2267         returns when text is 'roundtripped'
2268
2269 2006-12-04  Chris Toshok  <toshok@ximian.com>
2270
2271         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
2272         minimum 0.  Fixes the scrollbar exception in bug #80136.
2273
2274 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2275
2276         * MdiClient.cs: 
2277         * MdiWindowManager: Removed unused fields and methods.
2278         
2279 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2280         
2281         * StatusBar.cs: Update all panels when a AutoSize=Contents
2282         panel needs updating.
2283         
2284         * StatusBarPanel.cs: Remove twidth and only use initialize.
2285         Fixes #80031.
2286                 
2287 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2288
2289         * Form.cs: When a form's MdiParent is set add it directly
2290         on top of the z-order in stead of relying on MdiClient's
2291         ActivateChild to do it. Fixes #80135.
2292         
2293         * MdiClient.cs: 
2294         - Remove original_order, mdi_child_list is already doing
2295         the same thing.
2296         - Create mdi_child_list on construction in
2297         stead of first use (avoids a few null checks).
2298
2299         * MenuItem.cs: Use an already existing list of mdi children
2300         to get the correct order of children and remove the other
2301         redundant list.
2302
2303 2006-12-04  Chris Toshok  <toshok@ximian.com>
2304
2305         * PropertyGridView.cs: cached_splitter_location is only used in
2306         !DOUBLEBUFFER code.
2307
2308         * PropertyGrid.cs: implement the ComComponentNameChanged event
2309         using Events, hoping that would fix the warning.  Looks like a
2310         compiler bug instead (#80144).
2311
2312         * PropertyManager.cs: remove unused method.
2313
2314 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
2315
2316         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
2317         include parentesis to fix expression evaluation. Fixes #79634.
2318
2319 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2320         
2321         * MenuAPI.cs:
2322         - Changes to fix behavior in Menu control, some reported in #80097
2323         and other detected during behavior refactory like a select event
2324         problems.
2325         - Remove unneded "if's" conditions.
2326         - Created an internal to flag when popup is active in control, we need 
2327         it because in .NET you can have menu active but without popup active
2328         when you active menu using popup without visible items.
2329         - Mimic win32 behavior for Select and Popup events.  
2330         - Dont open popup menu when you dont have visible subitems.
2331         - Do nothing when click on disabled menu item.
2332         - Some small changes to follow the coding style guidelines.
2333         - Unselect menu only when another control gives focus. Fixes #80097.
2334         - Remove unused code.
2335         
2336         * MenuItem.cs: internal VisibleItems method to check if menu
2337         theres visible subitems, it will be usefull to fix some 
2338         behavior in Menu control.
2339         
2340 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2341         
2342         * Timer.cs: Tag property for 2.0 profile.
2343         
2344 2006-12-01  Chris Toshok  <toshok@ximian.com>
2345
2346         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
2347         
2348         * Win32DnD.cs: comment out some unused fields.
2349
2350         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
2351         some unused properties/methods.
2352
2353         * XplatUIX11.cs: fix MousePosition so we override the base class's
2354         property instead of conflicting with it.
2355
2356         * PictureBox.cs: comment out some unused fields
2357
2358         * OSXStructs.cs: make some struct fields public.
2359
2360         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
2361         MousePosition so we override the base class's property instead of
2362         conflicting with it.
2363
2364         * X11Dnd.cs: comment out some unused fields
2365
2366         * X11DesktopColors.cs: fix some struct field visibility to quiet
2367         the compiler.
2368
2369         * X11Dnd.cs: remove some debug code.
2370
2371         * ThemeClearlooks.cs: comment out unused field.
2372
2373         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
2374
2375         * ThemeGtk.cs: comment out some unused pinvokes.
2376
2377         * Timer.cs: remove some unused fields.
2378
2379         * ThemeClearlooks.cs: comment out unused field.
2380
2381         * UpDownBase.cs: comment out unused field.
2382
2383         * DataObject.cs: comment out unused field.
2384
2385         * DataGridBoolColumn.cs: reomve unused field.
2386
2387         * DataGrid.cs: remove unused field.
2388
2389         * Cursor.cs: remove old ToBitmap code.
2390
2391         * ControlPaint.cs: remove unused method.
2392
2393         * ScrollBar.cs: remove unused fields.
2394
2395         * ComboBox.cs: remove unused field, and chain up to
2396         AccessibleObject ctor.
2397
2398         * ListBox.cs: remove unused field.
2399
2400         * ButtonBase.cs: wrap a couple fields in NET_2_0.
2401
2402         * GridEntry.cs: remove unused fields.
2403
2404         * Binding.cs: remove unused fields.
2405
2406         * AxHost.cs: remove unused method.
2407
2408         * ContainerControl.cs: remove unused field.
2409
2410         * ScrollableControl.cs: remove unused fields.
2411
2412 2006-12-01  Chris Toshok  <toshok@ximian.com>
2413
2414         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
2415         the Where/WhereString stuff.  it's easy enough to CWL
2416         Environment.StackTrace.
2417
2418         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
2419         unused private fields.
2420
2421 2006-12-01  Jackson Harper  <jackson@ximian.com>
2422
2423         * TextControl.cs: Do not update the view while inserting multiline
2424         text. If we update the view we might wrap lines, before entering
2425         the new lines, which causes the new line insertion calculations to
2426         be totally fubared.
2427         - Remove an old TODO
2428         - Make debug output a little nicer
2429         
2430 2006-12-01  Chris Toshok  <toshok@ximian.com>
2431
2432         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
2433
2434 2006-12-01  Chris Toshok  <toshok@ximian.com>
2435
2436         [ fix the majority of the CS0108 warnings we've been suppressing ]
2437         
2438         * TreeView.cs: mark BackgroundImageChanged as 'new'.
2439
2440         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
2441         to "LayoutToolBar" to quiet mcs.
2442         
2443         * TabControl.cs: mark our ControlCollection class as 'new'.
2444
2445         * TextBoxBase.cs: mark some events as 'new'.
2446
2447         * Splitter.cs: TabStop is 'new'.
2448
2449         * ControlBindingsCollection.cs: mark a few methods as new since
2450         they change the visibility from protected to public.
2451
2452         * RadioButton.cs: DoubleClick -> base class, and remove unused
2453         HaveDoubleClick.
2454
2455         * MonthCalendar.cs: ImeMode property -> base class, and mark many
2456         events as new.
2457
2458         * NumericUpDown.cs: TextChanged -> base class.
2459
2460         * CheckedListBox.cs: mark our ObjectCollection class as new to
2461         quiet mcs.
2462
2463         * FolderBrowserDialog.cs: make HelpRequest event new and have it
2464         muck with the base class.
2465
2466         * StatusBar.cs: fix some mcs warnings about Update being the same
2467         name as a base class method.
2468
2469         * RichTextBox.cs: mark some events as new, and make them do things
2470         to the base class impl.
2471
2472         * UserControl.cs: mark TextChanged as new, and have it manipulate
2473         base.TextChanged.
2474
2475         * UpDownBase.cs: mark some things new.
2476
2477         * CheckBox.cs: mark DoubleClick "new", and add some text about
2478         what we need to look at.
2479
2480         * Panel.cs: make the events "new", and manipulate the base
2481         version.  these are just here for attributes.
2482
2483         * AccessibleObject.cs: make owner private.
2484
2485         * Control.cs: deal with AccessibleObject.owner being private.
2486         cache our own copy if we need it.
2487
2488         * Button.cs: add "new" to the DoubleClickEvent.
2489
2490         * ListBox.cs: no need to track our own has_focus here.  let
2491         Control.has_focus do it for us.  Also some other work to clear up
2492         warnings about not overriding base class methods of the same name.
2493         
2494         * ComboBox.cs: clear up some warnings about not override base
2495         class methods of the same name.
2496
2497 2006-12-01  Chris Toshok  <toshok@ximian.com>
2498
2499         * Form.cs: flag a few things as "new" to quiet some of the mcs
2500         warnings.
2501
2502         * AxHost.cs: same.
2503
2504         * PrintPreviewDialog.cs: same.
2505
2506         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
2507         now DGV isn't so horrible on the class status page.  also, move
2508         all events to using System.ComponentModel.EventHandlerList.  my
2509         wrists hurt.
2510
2511 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2512
2513         * MdiWindowManager.cs:
2514         - Set form to active mdi child if shown,
2515         and update the active mdi child to the next 
2516         remaining child in the z-order if the form is hidden.
2517
2518         * Form.cs: 
2519         - Track if the form has been visible and if its 
2520         visibility is beeing changed, so that the MdiClient
2521         can properly decide the ActiveMdiChild. The MdiClient 
2522         cannot track this since the form can change visibility 
2523         before MdiClient is created.
2524
2525         * MdiClient.cs:
2526         - Don't activate anything of the parent form is changing
2527         its visibility.
2528         - Rework ActiveMdiChild to only return visible mdi 
2529         children and take into account several other corner 
2530         cases.
2531
2532 2006-12-01  Chris Toshok  <toshok@ximian.com>
2533
2534         * IBindableComponent.cs: new 2.0 interface.
2535
2536 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
2537
2538         * DataGrid.cs: Font for caption area is bold by default.
2539
2540 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
2541
2542         * Menu.cs: Tag property for 2.0.
2543         
2544 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2545
2546         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
2547         
2548 2006-12-01  Chris Toshok  <toshok@ximian.com>
2549
2550         * TreeView.cs: doh, the Begin* events should be
2551         TreeViewCancelEventHandler.
2552
2553 2006-12-01  Chris Toshok  <toshok@ximian.com>
2554
2555         * Form.cs: Form.ControlCollection already stores off the
2556         form_owner field.  don't access the base class's internal "owner"
2557         field.
2558
2559         * Control.cs: make all the fields in Control.ControlCollection
2560         private.  there's no need for any internal fields here.
2561
2562 2006-12-01  Chris Toshok  <toshok@ximian.com>
2563
2564         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
2565         OnHandleCreated.  Fixes bug #80109.
2566
2567 2006-12-01  Chris Toshok  <toshok@ximian.com>
2568
2569         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
2570         SplitContainer.cs, Control.cs, StatusStrip.cs,
2571         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
2572         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
2573         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
2574         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
2575         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
2576         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
2577         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
2578         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
2579         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
2580         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
2581
2582         do most of the work to convert our code over to use
2583         System.ComponentModel.Component.Events for
2584         adding/removing/dispatching events.
2585
2586
2587 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
2588
2589         * DataGridView.cs: Fix an ArgumentNullException reported 
2590         twice today in IRC.
2591
2592 2006-11-30  Mike Kestner  <mkestner@novell.com>
2593
2594         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
2595         grabbed listbox.  Fixes #80036 and #80101.
2596
2597 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
2598
2599         * Message.cs: Changed ToString() to match MS.
2600         
2601 2006-11-30  Jackson Harper  <jackson@ximian.com>
2602
2603         * TextBoxBase.cs: You can still change the selected text on a read
2604         only textbox.
2605         * TextControl.cs: Lower magic number for wrap calculations. This
2606         lets text get closer to the right (far) edge.
2607
2608 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
2609
2610         * Control.cs: Tweak 2.0 layout properties.
2611         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
2612         * TextRenderer.cs: Add a new overload.
2613         * ToolStrip*: Huge amount of changes and new features.
2614
2615 2006-11-30  Mike Kestner  <mkestner@novell.com>
2616
2617         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
2618         scroll range correct.  Fixes #79994.
2619
2620 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
2621
2622         * MdiWindowManager.cs: Update main form's text when
2623         a form is closed. (fixes #80038)
2624         
2625 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
2626
2627         * ToolBar.cs:
2628         - Fix an regression in ButtonSize.
2629         - Get ImeMode default value change to "Disable".
2630         - Get ShowTooltips default value change to true, default value is 
2631         "false" but after make a test in .NET we get "true" result as default.
2632         
2633 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
2634
2635         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
2636
2637 2006-11-29  Chris Toshok  <toshok@ximian.com>
2638
2639         * XplatUIWin32.cs (GetWindowTransparency): check return value of
2640         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
2641         SetWindowTransparency hasn't been called.
2642
2643 2006-11-29  Chris Toshok  <toshok@ximian.com>
2644
2645         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
2646         if it's supported.
2647         (set_AllowTransparency): reorder things a little so that the
2648         WS_EX_LAYERED style is removed properly.
2649
2650 2006-11-29  Chris Toshok  <toshok@ximian.com>
2651
2652         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
2653         
2654         * Form.cs: only call the XplatUI transparency method (get/set) if
2655         SupportsTransparency says it's supported. Otherwise fallback to
2656         doing nothing (in the set case) or returning the instance field we
2657         cache (in the get case).
2658
2659         * XplatUIStructs.cs: add TransparencySupport flag enum.
2660         
2661         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
2662         change to SupportsTransparency.
2663
2664         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
2665         TransparencySupport.None from SupportsTransparency.
2666
2667         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
2668         TransparencySupport.Set from SupportsTransparency.
2669
2670         * XplatUIWin32.cs: implement GetWindowTransparency calling
2671         GetLayeredWindowAttributes, and implement SupportsTransparency by
2672         checking whether or not both
2673         GetWindowTransparency/SetWindowTransparency are available
2674         entrypoints.  We need to do this since SetWindowTransparency is
2675         available as of win2k, but GetWindowTransparency requires winxp.
2676         yay win32 api.
2677
2678         * XplatUI.cs: Add GetWindowTransparency, and change
2679         SupportsTransparency to allow for either/both Get/Set.
2680
2681 2006-11-29  Chris Toshok  <toshok@ximian.com>
2682
2683         * DataGrid.cs: keep from going into an infinite loop redrawing a
2684         datagrid that has no datasource.  Fixes bug #80033.
2685
2686 2006-11-29  Chris Toshok  <toshok@ximian.com>
2687
2688         * MenuItem.cs: fix the NRE when we assign text (and therefore call
2689         Invalidate) before the mainmenu has been assigned to a control.
2690
2691 2006-11-29  Chris Toshok  <toshok@ximian.com>
2692
2693         * DataGrid.cs: detect when we should be double the double click
2694         row/column autosize stuff, although that codepath has yet to be
2695         written.  part of the work for bug #79891.
2696
2697 2006-11-29  Chris Toshok  <toshok@ximian.com>
2698
2699         * Binding.cs (SetControl): fix unit test.
2700
2701 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2702
2703         * PageSetupDialog.cs: Validate the margins and set them in
2704         PageSettings. 
2705         * NumericTextBox.cs: New class to mimic the behavior of the
2706         textboxes used in the printing dialogs.
2707
2708 2006-11-29  Andreia Gaita  <avidigal@novell.com>
2709         
2710         * Form.cs: Revert previous change (remove call UpdateBounds
2711         from form constructor), because it messes with the handle creation
2712         order, and that one needs lots and lots of love.
2713         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
2714         for valid printer and throw InvalidPrinterException if document
2715         is set but printer not valid), adding a MonoTODO. Once 
2716         handle creation is done properly, we can put this back in.
2717
2718 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2719
2720         * MenuItem.cs: Create a invalidate method for menu item, to be
2721         calling from set text, it make text changes to imadiate update
2722         on screen. Fixes #80013. 
2723         
2724 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2725
2726         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
2727         fixes bug #80070 and some other problem on toolbar buttons
2728         layout.
2729
2730 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2731
2732         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
2733         with dotted brush.      Fixes #79564
2734         
2735 2006-11-28  Andreia Gaita  <avidigal@novell.com>
2736
2737         * Form.cs: Removed call to UpdateBounds on Form
2738         constructor, it was causing a call to CreateHandle
2739         before it was supposed to.
2740         * PrintControllerWithStatusDialog: Applied patch
2741         by Chris Toshok to hide controller when there are
2742         no printers available.
2743         PrintDialog.cs: initialize printer settings to 
2744         null - correct DefaultValues test #5
2745         * PrintPreviewControl.cs: Move PrintController
2746         initialization to GeneratePreview
2747         * PrintPreviewDialog.cs: 
2748         - Remove Preview generation     from Document_set(). It is 
2749         called on OnPaint
2750         - Throw InvalidPrinterException on CreateHandle if
2751         a Document is set but there are no printers or 
2752         printer is not valid.
2753         * ThemeWin32Classic: don't paint PrintPreviewControl
2754         if there is nothing to paint    
2755
2756 2006-11-28  Miguel de Icaza  <miguel@novell.com>
2757
2758         * Form.cs: Add another popular method.
2759
2760         * TabPage.cs: ditto.
2761
2762 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2763
2764         * MenuItem.cs: Fixed a warning.
2765         * InternalWindowManager: Fixed a warning.
2766
2767 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2768
2769         * MenuItem.cs:
2770         - When cloning a menu also clone MdiList and clone the 
2771           window menu items properly (as the forms and menuitems
2772           are kept in an internal hashtable, these need updating 
2773           as well)
2774         - Rewrote the window menu code, menu items are added in the
2775           order the forms were added to their parent, and they are
2776           updated every time the window menu is shown (before the
2777           list was only generated once, in the current order of the
2778           forms, and would never be updated). A checkmark is shown
2779           next to the item corresponding to the active mdi child.
2780
2781 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2782
2783         * XplatUIStructs.cs: 
2784         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
2785         
2786         * XplatUIWin32.cs: 
2787         - Added TME_NONCLIENT to TMEFlags.
2788         - Handles WM_NCMOUSEMOVE in GetMessage to 
2789           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
2790
2791         * MdiWindowManager:
2792         - Now merges mdi child menu to parent menu when maximized.
2793         - Recalculate NC areas of both mdi child and mdi parent. 
2794           Fixes #79757 (4).
2795           on window state and size changes.Fixes #79844 (3).
2796         - Handle WM_NCCALCSIZE to properly calculate borders.
2797
2798         * Form.cs:
2799         - Add/remove to the mdi containers list of mdi children 
2800           in the order they are added.
2801         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
2802           to the maximized mdi child.
2803         
2804         * InternalWindowManager.cs:
2805         - Only execute a click on the control buttons on the mouse up,
2806           not on the mouse down. Show the state of the button 
2807           (was only showing Normal state, never Pressed state). The
2808           pressed button now follows the mouse (if you click the Close 
2809           button and move the mouse over the Maximize button, the 
2810           Maximize button will be shown as pressed). Since Win32 does
2811           not generate WM_NCLBUTTONUP if you release the button outside
2812           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
2813           it as a mouse up.
2814         
2815         * ThemeWin32Classic.cs:
2816         - Draw a missing border around mdi child forms. Fixes #79844 (2).
2817
2818         * MdiClient.cs:
2819         - Added a list of forms which contains the order the forms are
2820           added to the mdi parent.
2821         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
2822         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
2823         - If the active form changes set the scrollbars to the top
2824           of the Z order, otherwise the form could hide them.
2825         - Scrollbars are now sized according to ClientSize, not 
2826           to Size, and they take into account the other scrollbar
2827           to determine maximum.
2828         
2829 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
2830         
2831         * XplatUI.cs:
2832         * XplatUIDriver.cs:
2833         * XplatUIX11.cs:
2834         * XplatUIWin32.cs:
2835         * XplatUIOSX.cs:
2836         - Added RequestAdditionalWM_NCMessages for windows to 
2837           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
2838           Currently only implemented in XplatUIWin32.
2839
2840 2006-11-27  Chris Toshok  <toshok@ximian.com>
2841
2842         * Hwnd.cs: only add the hwnd to the windows hash in
2843         set_WholeWindow and set_ClientWindow if whole_window/client_window
2844         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
2845
2846 2006-11-27  Mike Kestner  <mkestner@novell.com>
2847
2848         * ComboBox.cs: remove redundant OnDropDown call.  It is called
2849         from the ComboListBox.ShowWindow code. Fixes #79969.
2850
2851 2006-11-27  Chris Toshok  <toshok@ximian.com>
2852
2853         * Hwnd.cs: remove the setters for ExposePending and
2854         NCExposePending - noone uses them.
2855
2856 2006-11-27  Jackson Harper  <jackson@ximian.com>
2857
2858         * TextControl.cs: new param for ReplaceSelection which determines
2859         whether we select the new selection, or set the cursor to the end
2860         of the new selection.
2861         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
2862         pasting, select the new text.
2863         * RichTextBox.cs: Use new param for ReplaceSelection.
2864
2865 2006-11-27  Jackson Harper  <jackson@ximian.com>
2866
2867         * TextBoxBase.cs: Set the selection to the caret after the caret
2868         is moved, otherwise they get out of sync.
2869
2870 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2871
2872         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
2873         it fixes #80015
2874
2875 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2876
2877         * ThemeWin32Classic.cs: 
2878         - Fix toolbar drop down arrow position.
2879         - Fix drop down appearance when ToolBar.Appearance is normal,
2880         it fixes #80018.
2881         
2882 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
2883
2884         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
2885         * Control.cs: Same.
2886         * UpDownBase.cs: Same.
2887         * ButtonBase.cs: Same.
2888         * ScrollBar.cs: Same.
2889         * TrackBar.cs: Same.
2890         * PictureBox.cs: Same.
2891         * UserControl.cs: Same.
2892         * Label.cs: Same.
2893         * ListControl.cs: Same.
2894         * TextBoxBase.cs: Same.
2895         * ListView.cs: Same.
2896         * RichTextBox.cs: Same.
2897         * TreeView.cs: Same.
2898
2899 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
2900
2901         * PrintDialog.cs:
2902         - Text label for where 
2903         - Text label comment was not shown
2904
2905 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
2906
2907         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
2908
2909 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2910
2911         * InternalWindowManager.cs: 
2912         - Handle WM_PARENTNOTIFY to activate the form
2913         if any child control is clicked.
2914         - The form is only sizable if not minimized.
2915
2916         * MdiWindowManager.cs:
2917         - Save the IconicBounds if the form is moved.
2918         - Rework SetWindowState, now the window bounds 
2919         are stored only if the old window state is Normal.
2920         
2921         * MdiClient.cs:
2922         - In SetWindowStates store the old window state if 
2923         the window is maximized and restore window state if
2924         the window looses focus.
2925         - Don't handle any scrollbar value changes if 
2926         initializing the scroll bars. Fixes #79771.
2927         - Reworked ArrangeIconicWindows. Current algorithm
2928         tests bounds agains all other minimized windows, if
2929         any intersections create new bounds (going left to 
2930         right, bottom to top) and then test again. When 
2931         successful the bounds are saved and never computed
2932         again. Fixes #79774.
2933
2934 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2935
2936         * InternalWindowManager.cs: Added HandleTitleBarUp.
2937
2938 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2939
2940         * NumericUpDown.cs: In .NET 1.1, user entered text is still
2941         hexadecimal in ParseUserEdit.
2942
2943         
2944 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2945
2946         * MdiWindowManager.cs: 
2947         - Handle a click on the form's icon to show the 
2948         system menu (when maximized). Fixes #79775.
2949         - Change the existing click handler for the form's
2950         icon when not maximized to show on MouseUp.
2951         Fixes #79776.
2952
2953         * Form.cs: In OnResize only layout the mdi child's
2954         parent if it actually has a parent. Might not if
2955         the window is closing.
2956
2957
2958 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2959
2960         * MdiClient.cs: Ignore active MDI client for text of parent, if
2961         child has no text set.
2962
2963 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2964
2965         * ToolBar.cs: Fixed ToString to match MS.
2966
2967 2006-11-22  Andreia Gaita  <avidigal@novell.com>
2968
2969         * NumericUpDown: 
2970         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
2971         update inner values on set. Fixes #79966.
2972         - Override OnLostFocus to update value on NET 2. Fixes #79950.
2973         - Fix hexadecimal parsing.
2974         
2975         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
2976         parent. Fixes #79957
2977
2978 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2979
2980         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
2981         the actual size has to be queried, since if height /
2982         width is negative Win32 changes it to 0. 
2983         Fixes #79999 on Windows.
2984         
2985         * XplatUIX11.cs: Set height / width to 0 if negative
2986         in SetWindowPos. Fixes #79999 on Linux.
2987         
2988 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2989
2990         * ThemeWin32Classic.cs: Fix text redenring when button is
2991         pressed.
2992
2993 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2994
2995         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
2996         and later navigate by mouse. Fixes #79528.
2997
2998 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2999
3000         * ToolBar.cs: Set default value for TabStop to false in
3001         constructor, it fixes remaining behavior of bug #79863.
3002
3003 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3004
3005         * MdiWindowManager.cs:
3006         * InternalWindowManager.cs:
3007         - Moved a few methods specific to Mdi from 
3008         InternalWindowManager to MdiWindowManager.
3009         Fixes #79996.
3010         
3011 2006-11-21  Chris Toshok  <toshok@ximian.com>
3012
3013         * XplatUIOSX.cs: stub out InvalidateNC.
3014
3015         * XplatUIWin32.cs: implement InvalidateNC using the call I found
3016         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
3017
3018         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
3019
3020         * XplatUIDriver.cs: add InvalidateNC abstract method.
3021
3022         * XplatUI.cs: add InvalidateNC.
3023
3024 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
3025
3026         * ToolBar.cs: Invalidate complete button area when pressed status 
3027         was changed.
3028         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
3029         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
3030         by 1 when button is pressed.
3031
3032 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3033
3034         * ToolButton.cs: Invalidate middle of DropDown button when
3035         ToolBar theres DropDownArrows.
3036         * ThemeWin32Classic.cs: Change position of DropDown arrow and
3037         fix DropDown drawing operations.
3038
3039 2006-11-20  Chris Toshok  <toshok@ximian.com>
3040
3041         * NativeWindow.cs: fix the formatting of functions ('{' on the
3042         following line), and enable the thread exception dialog.
3043
3044         * Application.cs: remove the duplicate exception catching from
3045         here.
3046
3047 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3048
3049         * Toolbar.cs: Triggers button click event when click on icon
3050         of dropdown ToolBarButton. Fixes #79912.
3051         
3052 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3053
3054         * Theme.cs:
3055         * ThemeWin32Classic.cs:
3056         - Added a property WindowBorderFont to enable themeing
3057           of mdi child windows' Text.
3058           
3059 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3060
3061         * InternalWindowManager.cs:
3062         * Form.cs:
3063         * MdiClient.cs:
3064         * MdiWindowManager.cs: 
3065         - If mdi child is maximized, set mdi parent's
3066           text to "Parent - [Child]". Fixes #79770.
3067         - If there is any maximized mdi child windows, only the active 
3068           window (and any new windows) is maximized, the rest are normal.
3069         - On a WindowState change only save mdi child's window bounds 
3070           if the old window state was normal. Fixes #79774.
3071         - The scroll bars are now calculated on hopefully all
3072           necessary events. Fixed #79771 / #79844->6 / #79906.
3073         - MdiClient.SizeScrollBars() now takes into account docked 
3074           controls in the parent when calculating available space.
3075         - InternalWindowManager now always repaints the entire title
3076           area. Fixes #79844->1/4/5.
3077         - Added RequestNCRecalc on mdi child windowstate changes.
3078           Fixes #79772.
3079
3080 2006-11-20  Mike Kestner  <mkestner@novell.com>
3081
3082         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
3083         in the MouseUp handler of the listbox and move the return handling
3084         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
3085
3086 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
3087
3088         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
3089
3090 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
3091
3092         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
3093           working in 1.2.x anymore. So, updated.
3094
3095 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
3096
3097         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
3098         NumberGroupSeparator of current culture instead of assuming en-US.
3099         Fixed bug #79967.
3100
3101 2006-11-17  Mike Kestner  <mkestner@novell.com>
3102
3103         * Control.cs: Add the concept of implicit bounds setting so that
3104         dock/undock round trips preserve explicitly set size/locations.
3105         Fixes #79313.
3106
3107 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
3108
3109         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
3110           can't handle those filters. (Fixes bug #79961)
3111
3112 2006-11-17  Chris Toshok  <toshok@ximian.com>
3113
3114         [ fixes the exit/crashes associated with #79835.  it's clearly
3115         suboptimal though, we need to figure out a better way to solve
3116         this. ]
3117         
3118         * PrintPreviewControl.cs: deal with the new invalid printer
3119         exceptions.
3120
3121         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
3122         and return false (so CommonDialog.ShowDialog doesn't actually show
3123         the form.)
3124
3125         * PrintDialog.cs: enable/disable the Ok button depending on
3126         whether or not the printer is valid.
3127
3128         * CommonDialog.cs (ShowDialog): only actually show the form if
3129         RunDialog returns true.
3130
3131 2006-11-17  Jackson Harper  <jackson@ximian.com>
3132
3133         * TextControl.cs: When soft splitting a line, mark it as a soft
3134         split line. Also carry over the current line break to the next
3135         line.
3136
3137 2006-11-17  Chris Toshok  <toshok@ximian.com>
3138
3139         * XplatUIX11.cs: when scrolling a window with an invalid area, we
3140         only want to shift the part of the invalid area that overlaps the
3141         area we're scrolling.  we also don't want to clear the invalid
3142         area unless the invalid area was entirely contained within the
3143         scrolling area.
3144
3145 2006-11-16  Chris Toshok  <toshok@ximian.com>
3146
3147         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
3148         also make sure to free the memory returned by XGetWindowProperty
3149         in GetText().
3150
3151         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
3152
3153 2006-11-16  Chris Toshok  <toshok@ximian.com>
3154
3155         * XplatUI.cs: add a new super secret way to get at the totally
3156         unsupported X11 backend.
3157
3158 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
3159
3160         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
3161
3162 2006-11-16  Jackson Harper  <jackson@ximian.com>
3163
3164         * TreeView.cs: Allow more explicit setting of top node position
3165         for scrollbars. Slower algo, but more accurate.
3166         - CollapseAll should maintain the current top node.
3167         * TextBoxBase.cs: When positioning the caret, use the line, pos
3168         method, since the x, y method does not grab the correct tag, and
3169         the caret height never gets set correctly. (Maybe I should just do
3170         away with the caret having its own height, and always use the
3171         carets current tag for height).
3172
3173 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
3174
3175         [Fixes 79778, 79923]
3176
3177         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
3178         Parent to the FosterParent instead.
3179
3180 2006-11-16  Jackson Harper  <jackson@ximian.com>
3181
3182         * TreeView.cs: Need to recalc the topnode when we expand or
3183         collapse. The scrolling methods can't handle this on their own,
3184         since they use differences between the last scroll position, and
3185         those difference get completely messed up since we are expanding
3186         nodes.  This problem should probably be fixed in the scrolling
3187         methods, so they can figure out exactly where they are, but this
3188         will slow things down a little.
3189         * ThemeWin32Classic.cs: Special case for groupboxes with empty
3190         strings, makes nunit-gui look a lot nicer.
3191
3192 2006-11-16  Chris Toshok  <toshok@ximian.com>
3193
3194         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
3195         the broken multithreaded event handling we have in here.  File
3196         this entry under "Why we should move to the new X11 backend".
3197
3198         Any thread can make it into UpdateMessageQueue, which gets events
3199         from the X socket - some of which could belong to hwnds being
3200         managed by a different thread.  We can also have multiple threads
3201         in UpdateMessageQueue at the same time, with each one reading from
3202         the X socket.  This leads to many problems, with the following
3203         solutions:
3204
3205         We can't use hwnd.Queue.Enqueue anywhere in here and must use
3206         EnqueueLocked.
3207
3208         The MotionNotify compression we do can't work across threads
3209         (without locking the entire queue, perhaps) since we call
3210         hwnd.Queue.Peek, so we just punt and don't compress motion events
3211         unless the owning thread is the one which got the X event.
3212
3213         ConfigureNotify is another fun one, since it modifies the hwnd's
3214         bounds and then enqueues the event.  We add a lock to Hwnd which
3215         is held when setting configure_pending to true (and enqueuing the
3216         event).
3217
3218         There is a race wrt the wake socket.  we need to make sure that
3219         only 1 thread is waiting on that socket, or else a thread could
3220         sleep waiting for data that never comes.  It's difficult (but not
3221         impossible) to make happen, because it seems to require something
3222         like the following:
3223
3224             1. Thread 1 polls on wake_receive
3225         
3226             2. poll returns saying there's data to be read on
3227                wake_receive.
3228         
3229             3. Thread 2 polls on wake_receive and immediately returns
3230                saying there's data to be read.
3231
3232             4. Thread 2 reads the wakeup byte from wake_receive
3233
3234             5. Thread 1 attempts to read the wakeup byte from
3235                wake_receive.
3236
3237             6. Thread 2 exits (due to a form closing, perhaps).
3238
3239             7. Thread 1 blocks forever.
3240         
3241         Fun, eh?
3242
3243         Fixing the Expose handling isn't done yet, and the races inherent
3244         in that piece of code are responsible for the drawing mistakes you
3245         see when generating expose events in a MT app (like NPlot).  This
3246         one is the likely to be the hardest to bandaid, and it doesn't
3247         appear to cause anything but drawing problems.  The other issues
3248         caused apps to exit or hang.
3249
3250         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
3251         called from a different thread than the one that should be calling
3252         these functions.
3253
3254         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
3255
3256 2006-11-15  Chris Toshok  <toshok@ximian.com>
3257
3258         * Application.cs: null out the context's MainForm when we exit
3259         RunLoop.  Fixes a newly checked in unit test as well as the last
3260         ODE from bug #79933.
3261
3262 2006-11-15  Chris Toshok  <toshok@ximian.com>
3263
3264         * Form.cs (set_Owner): allow a null value so we can clear the
3265         form's owner.
3266         (Dispose): set all our owned_form's Owner properties to null, and
3267         clear the owned_forms collection.
3268         (WM_CLOSE): clean up this a little bit.. still not right though.
3269
3270         * ApplicationContext.cs: OnMainFormClosed should only call
3271         ExitThreadCore if the main form isn't recreating.  Fixes unit
3272         test.
3273
3274 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3275
3276         [Fixes 78346]
3277
3278         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
3279
3280 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3281
3282         [Fixes 79433]
3283
3284         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
3285         keep popup window types from stealing focus from the main form
3286         on Windows.
3287
3288         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
3289
3290         * MenuAPI.cs: Set above flag to true.
3291
3292 2006-11-15  Chris Toshok  <toshok@ximian.com>
3293
3294         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
3295         the button being released is not in wParam.
3296
3297 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3298
3299         * Form.cs: Add the released button to MouseEventArgs.Button
3300         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
3301         on Win32.
3302
3303 2006-11-15  Chris Toshok  <toshok@ximian.com>
3304
3305         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
3306         GetText().  untested because it's unused in our implementation.
3307         Control.Text always caches the text, even if
3308         ControlStyles.CacheText is not set.
3309
3310         fixes bug #79939.
3311
3312 2006-11-15  Chris Toshok  <toshok@ximian.com>
3313
3314         [ fixes #79933 ]
3315         
3316         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
3317         message.  no hiding, no disposing.
3318
3319         in the WM_CLOSE handler, hide the form if it's modal.
3320
3321 2006-11-15  Chris Toshok  <toshok@ximian.com>
3322
3323         * XplatUIX11.cs: use AddExpose instead of sending a message.
3324         fixes textbox border drawing.
3325
3326 2006-11-15  Chris Toshok  <toshok@ximian.com>
3327
3328         * PropertyGridView.cs: keep from crashing on mouse move/down when
3329         the property grid is empty.
3330
3331 2006-11-14  Jackson Harper  <jackson@ximian.com>
3332
3333         * TextControl.cs: Make PageUp and PageDown more like the MS
3334         versions.
3335         * TextBoxBase.cs: When we set the text property position the
3336         cursor at the beginning of the document.
3337
3338 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3339
3340         * Form.cs: if a mdi child's WindowState has changed
3341         before it's creation, it would display wrong control
3342         buttons.
3343         
3344 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
3345
3346         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
3347           (Fixes bug #79927)
3348
3349 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3350
3351         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
3352         the window gets to paint its borders even if the window is
3353         getting smaller.
3354         
3355         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
3356         otherwise the old control buttons would still be painted 
3357         if the window gets bigger.
3358         
3359         * PaintEventArgs.cs: add an internal method so that the clip 
3360         rectangle can be changed.
3361         
3362 2006-11-13  Chris Toshok  <toshok@ximian.com>
3363
3364         [ fixes bug #79745 ]
3365         
3366         * NotifyIcon.cs: lots of cleanup.
3367
3368         * X11Structs.cs: add an enum for XEMBED messages.
3369
3370         * XplatUIX11.cs: reindent one of the giant switch statements, it
3371         was taking up an additional tab stop, and this file is already way
3372         too wide for my laptop's screen.
3373
3374         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
3375         we get it, resize the hwnd to the WMNormalHints max_width/height.
3376
3377 2006-11-13  Jackson Harper  <jackson@ximian.com>
3378
3379         * TextBoxBase.cs: Compute the value changes for the mouse wheel
3380         teh simple way.
3381
3382 2006-11-13  Chris Toshok  <toshok@ximian.com>
3383
3384         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
3385         #79898.  force a reference to the Region to stick around so the
3386         unmanaged object isn't collected (rendering our handle in the MSG
3387         stale).
3388
3389 2006-11-13  Chris Toshok  <toshok@ximian.com>
3390
3391         * XplatUIX11.cs: fix #79917 for window managers which support
3392
3393         using XStoreName on the raw utf8, and we need to convert to
3394         COMPOUND_TEXT if it's non-latin1.
3395
3396 2006-11-13  Chris Toshok  <toshok@ximian.com>
3397
3398         * Form.cs (set_DialogResult): we need to set closing to false if
3399         we're setting our result to None.  fixes bug #79908.
3400
3401 2006-11-13  Jackson Harper  <jackson@ximian.com>
3402
3403         * TextControl.cs: When formatting text, compute the adjusted tag
3404         lengths correctly, using FindTag for the end tag instead of trying
3405         to figure it out outselves.
3406         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
3407         the item, ItemHeight doesn't work, because trees with large
3408         imagelists use those for their height
3409         * TreeView.cs: ActualItemHeight factors in the image height
3410         - compute left edge of checkboxes correctly
3411         - when expanding/collapsing move the bottom down one pixel, so we
3412         aren't moving part of the node
3413
3414 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3415
3416         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
3417         stack in PaintEventStart so that it won't get disposed by the gc
3418         before reaching PaintEventEnd.
3419
3420 2006-11-13  Jackson Harper  <jackson@ximian.com>
3421
3422         * TextBoxBase.cs: Don't select the word if we are on a line with
3423         no text.
3424         - We don't need to position the caret on mouse up, since the mouse
3425         move handler should be doing this
3426         - When double clicking a blank line, the caret is advanced to the
3427         next line.
3428
3429 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
3430
3431         * TreeNodeCollection.cs: Avoid duplicating indexer code.
3432
3433 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
3434
3435         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
3436         Fixes part of bug #79910.
3437
3438 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
3439
3440         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
3441           (bug #79903). Some minor string updates to match ms.
3442
3443 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3444
3445         * FileDialog.cs: Don't add an extension if the filename
3446           already ends with that extension.
3447
3448 2006-11-10  Jackson Harper  <jackson@ximian.com>
3449
3450         * TreeView.cs: Use the currently highlighted node for the
3451         BeforeSelect event.
3452         * TextBoxBase.cs: There is no need to expand selection on
3453         MouseMove.
3454         - CanUndo means 'is there any undo operations', not 'is undo
3455         allowed on this textcontrol. Fixed ClearUndo unit test.
3456
3457 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
3458
3459         * Button.cs: only perform click when button is Selectable (so as 
3460         not to activate default buttons when they're disabled)
3461         
3462         * Control.cs: Rewrite of the SelectNextControl and related 
3463         methods. HandleClick now selects next control if the current one
3464         is being disabled.
3465         
3466         * Form.cs: OnActivated selects next active control only if Load 
3467         has already occurred. If Load hasn't run, there's no point in 
3468         selecting here, Load might change the state of controls.
3469         
3470         * FocusTest.cs: Tests marked as working again for these fixes
3471
3472 2006-11-10  Chris Toshok  <toshok@ximian.com>
3473
3474         * XplatUIX11.cs: a couple of fixes.
3475
3476         - use XInternAtoms with almost all the atoms we need to register,
3477         instead of many, many calls to XInternAtom.  should help a bit on
3478         startup time, at the expense of making the code look a little
3479         worse.
3480
3481         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
3482         isn't reparented (which seems to be a clue that we're running fon
3483         compiz) and they have an Owner form.  This fixes the tool windows
3484         in paint.net when running under compiz.
3485
3486         - when setting the opacity of a window, support both the case
3487         where the window has been reparented and also when it hasn't been.
3488         Since compiz/beryl doesn't seem to reparent windows, and these are
3489         the only window managers which support translucency, I'm not sure
3490         why we need the hwnd.reparented case at all.. but leave it in.
3491         now we get translucent windows in paint.net under compiz/beryl.
3492
3493 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3494
3495         * FileDialog.cs: Always return the value for FilterIndex that
3496           was set. Internally convert it to values that make sense.
3497
3498 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3499         
3500         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
3501
3502 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3503
3504         * Toolbar.cs: Change default value of DropDownArrows to true, the 
3505         signature still using false to make it compatible with MS but the 
3506         initial value is true. Fixes #79855.
3507
3508 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3509
3510         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
3511           only available on Linux.
3512
3513 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
3514
3515         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
3516         reduce number of calls to redraw method during toolbar creation.
3517
3518 2006-11-09  Mike Kestner  <mkestner@novell.com>
3519
3520         * ListView.cs : raise SelectedIndexChanged when an item is selected
3521         programmatically via the Item.Selected property.  Gert's nice 
3522         ListViewSelectedIndexChanged test fixture now runs clean.
3523
3524 2006-11-09  Mike Kestner  <mkestner@novell.com>
3525
3526         * ListView.cs : raise SelectedIndexChanged when a selected item is
3527         removed from the item collection using Remove or RemoveAt.
3528
3529 2006-11-09  Mike Kestner  <mkestner@novell.com>
3530
3531         * ListView.cs : raise SelectedIndexChanged once per selected item
3532         for compat with MS.  Fixes #79849+.
3533
3534 2006-11-09  Chris Toshok  <toshok@ximian.com>
3535
3536         * TabControl.cs: initialize row_count to 0, and set it to 1 when
3537         we need to (if we have any tab pages).  Fixes unit test.
3538
3539 2006-11-09  Chris Toshok  <toshok@ximian.com>
3540
3541         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
3542         width is 0, not 3.  Fixes a unit test.
3543
3544 2006-11-09  Mike Kestner  <mkestner@novell.com>
3545
3546         * ListView.cs : use Implicit scrollbars so that focus isn't 
3547         stolen from the listview when they are clicked. Fixes #79850.
3548
3549 2006-11-09  Chris Toshok  <toshok@ximian.com>
3550
3551         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
3552         have a root item.  Fixes #79879.
3553
3554 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
3555
3556         * FileDialog.cs:
3557           - Fix ToString ()
3558           - An ArgumentException is now thrown if a wrong filter
3559             is applied (matches ms). The previous filter doesn't change
3560             anymore if an exception is thrown.
3561           - Changing the FileName property also affects FileNames
3562         * ColorDialog.cs: The length of the CustomColors array is always
3563           16. It doesn't matter if we use a smaller array or null to update
3564           or change the custom colors property.
3565         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
3566           for RootFolder if we get a undefined value.
3567
3568 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3569
3570         * StatusBarPanel.cs: 
3571         - Width is set to MinWidth if Width is smaller than
3572         MinWidth. Fixes #79842.
3573         - MinWidth now always overrides Width (MSDN says MinWidth
3574         is set to Width when AutoSize = None, but they do not 
3575         behave like that).
3576         - Style has now the the correct default value.
3577         
3578 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3579  
3580         * TrackBar.cs: 
3581         - The control is completely invalidated on 
3582         Got/LostFocus to draw the focus rectangle correctly.
3583         - When AutoSize then height is always 45 (width for 
3584         vertical controls).
3585         
3586         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
3587         on the mouse when moved and it doesn't move when grabbed
3588         until the mouse moves as well. Also fixed some wrong 
3589         calculations when clicking on the thumb (control thought
3590         click was outside of thumb and didn't grab it).
3591         Fixes some of the issues in #79718.
3592
3593 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
3594
3595         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
3596
3597 2006-11-08  Chris Toshok  <toshok@ximian.com>
3598
3599         * PropertyGridView.cs: only call ToggleValue if the item is not
3600         readonly.
3601
3602 2006-11-08  Jackson Harper  <jackson@ximian.com>
3603
3604         * TextBoxBase.cs: The RichTextBox and textbox have very different
3605         word selection methods.  Implement the textbox's simple word
3606         selection here, and let the RichTextBox override and provide it's
3607         own.
3608         - Don't do extra selection on mouseup
3609         * RichTextBox.cs: Use the documents word selection algorithm, I
3610         think ideally, this function will be pulled into the
3611         RichTextBox.cs code someday.
3612
3613 2006-11-08  Chris Toshok  <toshok@ximian.com>
3614
3615         * RootGridEntry.cs: new class to represent GridItemType.Root.
3616
3617         * CategoryGridEntry.cs: reformat, and add boilerplate.
3618         
3619         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
3620         returns the UI parent anyway, and we need special handling to
3621         implement the GetTarget method in the face of it.  Also, implement
3622         Select().
3623
3624         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
3625         a root grid item, and use that instead of PropertyGrid.grid_items.
3626         Also, make use of TypeConverters (and add limitted support for
3627         ICustomTypeDescriptors) when initially populating the grid.
3628         Arrays now show up more or less properly.
3629
3630 2006-11-08  Chris Toshok  <toshok@ximian.com>
3631
3632         * Application.cs: set the modal dialog to non modal after we close
3633         it.  Fixes bug #79866.
3634
3635 2006-11-08  Jackson Harper  <jackson@ximian.com>
3636
3637         * TextControl.cs: When combining lines carry over the line end
3638         style from the end line.
3639         - Invalidate the selected area when setting it, if it is visible.
3640         * TextBoxBase.cs: Only rich text box can do full line selects.
3641         - Make sure to set the cursor position when there is a click,
3642         otherwise two clicks in separate areas could cause a large chunk
3643         to be selected.
3644
3645 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3646
3647         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
3648         Fixes #79863.
3649
3650 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3651
3652         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
3653         time. Remove tooltips when ToolButton click events.  Fixes #79856.
3654
3655 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3656
3657         * MenuAPI.cs: Ignore right click for menu actions and fixes
3658         menu border when clicked.  Fixes #79846.
3659
3660 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3661
3662         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
3663         MouseState after create wParam for message, this fixes mouse button 
3664         equal none in mouse up events.
3665         
3666 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
3667
3668         * Control.cs : Focus() now calls Select to set the Container's
3669         Active Control and to give it focus. To avoid infinite recursion
3670         (because ActiveControl also calls Focus at one point), a check 
3671         is made in Focus with the help of a new internal variable
3672         is_focusing.
3673
3674 2006-11-07  Mike Kestner  <mkestner@novell.com>
3675
3676         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
3677         if there's a selection.  Fixes #79849.
3678
3679 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
3680
3681         * PropertyGrid.cs: Avoid fixed height of help description label.
3682         Fixes part of bug #79829.
3683
3684 2006-11-07  Chris Toshok  <toshok@ximian.com>
3685
3686         * XplatUIX11.cs: fix #79790 again, by using the
3687         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
3688
3689 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3690
3691         * ToolBar.cs: Fix left click checking.
3692
3693 2006-11-07  Chris Toshok  <toshok@ximian.com>
3694
3695         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
3696
3697 2006-11-07  Chris Toshok  <toshok@ximian.com>
3698
3699         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
3700         PropertyManager unit tests.
3701
3702         * PropertyManager.cs: make property_name internal.
3703
3704 2006-11-07  Chris Toshok  <toshok@ximian.com>
3705
3706         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
3707         pass a unit test.  Also, don't set image_index to anything in
3708         response to setting the ImageList property.
3709
3710 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3711
3712         * ToolBar.cs: Ignore click events when mouse button is not a
3713         left button, only accepts other button for dropdown menus.  
3714         Fixes #79854.
3715
3716 2006-11-07  Chris Toshok  <toshok@ximian.com>
3717
3718         * DataGrid.cs: make the back and parent row buttons a little less
3719         ugly.
3720
3721 2006-11-07  Jackson Harper  <jackson@ximian.com>
3722
3723         * TextBoxBase.cs: When converting to Text don't put line breaks in
3724         for soft line breaks.
3725         * TextControl.cs: There is an initial "fake" line in the document,
3726         this is now a soft break line, so that an extra line feed doesn't
3727         get added to the end of documents.
3728
3729 2006-11-07  Chris Toshok  <toshok@ximian.com>
3730
3731         [ fix bug #79778 ]
3732         
3733         * CurrencyManager.cs: if the list is readonly, don't bother
3734         checking if IBindingList.AllowNew is true.
3735
3736         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
3737         for non-DataRowView datasources..  or rather, make it not crash.
3738         (DataGridPaintRelationRow): make sure we limit the row painting to
3739         the area not covered by the row header, and make our cell width at
3740         least large enough to cover the relation area.  This allows grids
3741         that have relations but no rows to render correctly.
3742         (DataGridPaintRowContents): same type of changes here.
3743         (SetDataSource): move back to always calling
3744         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
3745         navigating back through relations.
3746         (HitTest): handle the case where we have no cells but have
3747         relations.  Right now we generate a hit in cell 0 of whatever the
3748         row is, not sure if this is strictly correct, but it works for our
3749         purposes.
3750         
3751         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
3752         bother doing anything.
3753
3754 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
3755
3756         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
3757         early version of StatusStrip.  Not responsible for eaten
3758         application or firstborn children.
3759
3760 2006-11-06  Chris Toshok  <toshok@ximian.com>
3761
3762         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
3763         call GetTabRect with a -1 index.  Fixes #79847.
3764
3765 2006-11-06  Jackson Harper  <jackson@ximian.com>
3766
3767         * TreeNodeCollection.cs: Update scrollbars after clearing.
3768
3769 2006-11-06  Chris Toshok  <toshok@ximian.com>
3770
3771         * NumericUpDown.cs: fix the ToString method for some unit test
3772         love.
3773
3774 2006-11-06  Chris Toshok  <toshok@ximian.com>
3775
3776         * PropertyGrid.cs:
3777         - set the initial SelectedGridItem if we can.
3778
3779         - Exclude non-mergable properties only if we're merging > 1
3780         object.  Merging 1 object isn't really merging, obviously.
3781
3782         - Handle PropertySort.NoSort just like Alphabetical, which is
3783         wrong of course, but at least gets things on the screen.
3784         
3785         * PropertyGridView.cs:
3786         - Add method "FindFirstItem" which finds the first property grid
3787         item, so we can select it by default.
3788
3789         - make use of GridEntry.CanResetValue.
3790
3791         - Don't call RedrawBelowItemOnExpansion here anymore, the
3792         individual GridEntry's will do that.
3793
3794         - Remove the ITypeDescriptorContextImpl internal class.
3795         
3796         * GridEntry.cs:
3797         - this class needs to implement ITypeDescriptorContext, as it's
3798         what MS's PropertyDescriptorGridEntry does, which means we can
3799         remove the ITypeDescriptorContextImpl internal class from
3800         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
3801
3802         - keep a reference to our PropertyGridView, and move the call to
3803         RedrawBelowItemOnExpansion here from PGV.  This means
3804         programmaticly setting Expanded actually does something visible.
3805
3806         - add a CanResetValue() function which takes into account our
3807         possibly multiple "selected_objects" in the merged case.  Shifting
3808         PropertyGridView to use this method fixes another unreported
3809         crasher found running the test for #79829.
3810
3811         - when Top or Bounds is updated, make sure the PropertyGridTextBox
3812         is updated to reflect this.
3813
3814         * CategoryGridEntry.cs: the ctor takes the PGV now.
3815         
3816 2006-11-06  Jackson Harper  <jackson@ximian.com>
3817
3818         * TextControl.cs: These are 1 based.
3819         * TextBoxBase.cs: When setting the selected text, don't change the
3820         selected text tags, this is done by ReplaceText, just position the
3821         cursor at the end of the new text.
3822
3823 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3824
3825         * ListView.cs: Allow label edit only when, when LabelEdit is
3826           set to true.
3827
3828 2006-11-06  Jackson Harper  <jackson@ximian.com>
3829
3830         * TextControl.cs: If a suitable wrapping position isn't found,
3831         just wrap right in the middle of a word.
3832
3833 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3834
3835         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
3836           bug #79820.
3837
3838 2006-11-06  Jackson Harper  <jackson@ximian.com>
3839
3840         * TreeView.cs: Can't use the VisibleCount property when setting
3841         scrollbar heights, because this doesn't take into account whether
3842         or not the horz scrollbar just came visible.
3843
3844 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
3845
3846         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
3847         activated.  Fixes #79369, #79832.
3848
3849 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
3850
3851         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
3852           had to remove support for links that point to a directory. FileInfo
3853           returns no usefull information (means, the directory they point to)
3854           for such links. Replaced some empty string ("") with String.Empty.
3855
3856 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3857
3858         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
3859         NullReferenceException when attempting to remove node that is not in
3860         collection. Throw NullReferenceException when null is passed to 
3861         Remove. Allow first element of the collection to be removed. Fixes
3862         bug #79831.  In GetEnumerator ().Current return null if positioned 
3863         before the first element of the collection. In GetEnumerator ().Reset,
3864         position before first element of the collection.
3865
3866 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3867
3868         * PropertyGrid.cs: To match MS, remove default title and description
3869         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
3870         buttons.
3871
3872 2006-11-04  Chris Toshok  <toshok@ximian.com>
3873
3874         * Theme.cs: add a Clamp method, just for kicks.
3875
3876         * ThemeWin32Classic.cs: clamp all color components to [0..255].
3877
3878 2006-11-04  Chris Toshok  <toshok@ximian.com>
3879
3880         * Form.cs: if the form isn't visible, Close() does nothing.
3881
3882 2006-11-03  Chris Toshok  <toshok@ximian.com>
3883
3884         * Form.cs (Close): if the form is modal, don't Dispose of it, only
3885         Hide it.
3886         (WndProc): don't Dispose after handling the WM_CLOSE message.
3887
3888         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
3889         them as such, instead of using casts from Control to Form.  Also,
3890         don't Dispose of the modal dialog when we fall out of the loop -
3891         Close() it instead.
3892
3893         fixes bug #79813.
3894
3895 2006-11-03  Chris Toshok  <toshok@ximian.com>
3896
3897         * Control.cs (Dispose): only go through the dispose thing if we're
3898         @disposing, and we haven't already been disposed.  Fixes bug
3899         #79814.
3900
3901         * Form.cs: no reason to call "base.Dispose()" here instead of
3902         "Dispose()".
3903
3904 2006-11-03  Mike Kestner  <mkestner@novell.com>
3905
3906         * ComboBox.cs : use ToString instead of casts in AddItem for
3907         sorting functionality.  Fixes #79812.
3908
3909 2006-11-03  Chris Toshok  <toshok@ximian.com>
3910
3911         * Application.cs: pave the way for actually using the thread
3912         exception dialog.  it's ifdefed out at the moment.
3913
3914 2006-11-03  Chris Toshok  <toshok@ximian.com>
3915
3916         * ThreadExceptionDialog.cs: until we get a better layout, actually
3917         hide the details textbox and label when we shouldn't see them.
3918
3919 2006-11-03  Jackson Harper  <jackson@ximian.com>
3920
3921         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
3922         multiline textboxes anymore.  This method also determines the
3923         width/height of a textboxes canvas area.
3924         - Sorta a revert of the last patch.  For multiline just position
3925         the controls, then bail.  This way the scrollbar width won't be
3926         altered.
3927
3928 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
3929
3930         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
3931         it dont need.  Fixes #79537.
3932
3933 2006-11-02  Jackson Harper  <jackson@ximian.com>
3934
3935         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
3936         send the status after firing the DndOver event.
3937
3938 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3939
3940         * TrackBar.cs: Now orientation only switches height / width if
3941         the control's handle is created (Win32 does it like this). Also 
3942         fixed a typo in ToString() for a test to pass, changed the 
3943         exception thrown in set_LargeChange and set_SmallChange to 
3944         match Win32 behaviour, and added TrackBar tests to the unit 
3945         tests.
3946
3947 2006-11-02  Chris Toshok  <toshok@ximian.com>
3948
3949         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
3950         not _NET_WM_STATE_NO_TASKBAR.
3951
3952 2006-11-02  Jackson Harper  <jackson@ximian.com>
3953
3954         * TextControl.cs: Increment count by one, since in the update view
3955         count - 1 is used.
3956
3957 2006-11-02  Jackson Harper  <jackson@ximian.com>
3958
3959         * TextBoxBase.cs: Use client rectangle not bounds for checking if
3960         the mouse is in the client rectangle (duh).
3961
3962 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3963         
3964         * TrackBar.cs: Fixed trackbar jumping around when clicking
3965         on it - the trackbar was not detecting correctly at which
3966         side of the thumb the click was done. (fixes #79718)
3967
3968 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
3969
3970         * ListBox.cs: scroll visible area when change SelectedIndex to
3971         a non visible area.  Fixes #79481.
3972
3973 2006-11-01  Jackson Harper  <jackson@ximian.com>
3974
3975         * TextControl.cs: When replacing the selection move the selection
3976         start/end/anchor to the end of the new text.
3977
3978 2006-11-01  Jackson Harper  <jackson@ximian.com>
3979
3980         * XplatUIWin32.cs: When setting the parent change the controls
3981         visibility to it's visibility flag, not to it's old parents
3982         visibility (.Visible walks the parent chain).
3983
3984 2006-11-01  Chris Toshok  <toshok@ximian.com>
3985
3986         * XplatUIX11.cs: revert the #79790 fix, as the simple.
3987         XSetTransientForHint fix breaks paint .net's tool windows.  more
3988         work needed for that one.
3989
3990 2006-11-01  Chris Toshok  <toshok@ximian.com>
3991
3992         * ScrollBar.cs: throw ArgumentException instead of Exception in
3993         LargeChange/SmallChange setters.  fixes unit tests.
3994
3995 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3996
3997         * ContainerControl.cs: reverted rev.67183 (which was itself
3998         a reversion of rev.66853... eh).
3999         
4000         * Control.cs: Fixes Reflector hang by changing Focus() call
4001         to what it was before rev.66643 (calling Select() here sets 
4002         ActiveControl, which in some situations calls back Focus and 
4003         eventually does a stack overflow). Temp fix.    
4004         Changes to GetNextControl() to not look for children to select when
4005         parent cannot be selectable (so it looks for siblings instead)  
4006         
4007 2006-10-31  Mike Kestner  <mkestner@novell.com>
4008
4009         * CheckedListBox.cs : off by one error in returned index from
4010         ObjectCollection.Add.  Fixes #79758.
4011
4012 2006-10-31  Chris Toshok  <toshok@ximian.com>
4013
4014         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
4015         calls for the textbox/spinner, to keep from recursing to the point
4016         where we crash.  Fixes #79760.
4017
4018 2006-10-31  Chris Toshok  <toshok@ximian.com>
4019
4020         * ListControl.cs (set_SelectedValue): don't throw exceptions on
4021         null/"" value, just return.  matches ms's behavior and fixes some
4022         failing tests.
4023
4024 2006-10-31  Chris Toshok  <toshok@ximian.com>
4025
4026         * Control.cs (set_Capture): make a logic a little easier to
4027         follow.
4028
4029         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
4030         if it's being destroyed.  A necessary fix surely, but a bandaid
4031         also, to fix the stuck capture problem in bug #78413.
4032
4033 2006-10-31  Chris Toshok  <toshok@ximian.com>
4034
4035         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
4036         convention of clearing hwnd.ClientRect when we set the
4037         width/height (so it'll be recalculated by Hwnd).
4038
4039 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
4040
4041         * ContainerControl.cs: reversed Contains check from
4042         ActiveControl due to hanging problems. This fix
4043         partly regresses #79667 (button does not have
4044         initial focus), so this might be a symptom for 
4045         a larger parenting problem (set_ActiveControl
4046         is being called but the child control does
4047         not have the parent set yet?)   
4048         
4049 2006-10-31  Mike Kestner  <mkestner@novell.com>
4050
4051         * MenuAPI.cs : fix keynav when menu is click activated.
4052
4053 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
4054
4055         * ToolStrip*: Version 0.2.
4056
4057         * MenuStrip.cs: Version 0.1.
4058
4059         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
4060
4061 2006-10-30  Chris Toshok  <toshok@ximian.com>
4062
4063         [ fixes the oversized notify icon issue in bug #79745 ]
4064         
4065         * NotifyIcon.cs: scale the icon down to the size we're given by
4066         the XplatUI layer (this would be faster if we did it once instead
4067         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
4068         since it's never invoked.
4069
4070         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
4071         pixels high by default, so let's hardcode our systray icon to that
4072         size.  The SYSTEM_TRAY protocol should really have a way for
4073         client apps to query for the correct icon size.. but oh well.  A
4074         couple of patches to deal with the screwy client_window ==
4075         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
4076         instance, and also make sure we don't XSelectInput twice).
4077
4078 2006-10-30  Chris Toshok  <toshok@ximian.com>
4079
4080         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
4081         recreating forms.  Control recreation is the bane of my existence.
4082         Fix it in a way that keeps everyone happy.
4083
4084 2006-10-30  Chris Toshok  <toshok@ximian.com>
4085
4086         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
4087         just non-CHILD ones.  otherwise sometimes scrollbars end up with
4088         client_windows not being resized to the proper size (ReportBuilder
4089         shows this extremely well).
4090
4091 2006-10-30  Chris Toshok  <toshok@ximian.com>
4092
4093         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
4094         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
4095         showing up in the gnome taskbar.  Fixes bug #79790.
4096
4097 2006-10-30  Chris Toshok  <toshok@ximian.com>
4098
4099         * ApplicationContext.cs: guard against a NRE.
4100
4101         * Application.cs: null out the old MainForm for the context, so we
4102         don't try to use it again once it's disposed.  Fixes bug #79783.
4103
4104 2006-10-30  Chris Toshok  <toshok@ximian.com>
4105
4106         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
4107         BindingContext, set the data source directly, otherwise do the
4108         lazy approach - the actual ListManager will be created when we get
4109         a BindingContext. Fixes bug #79700.
4110
4111 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
4112
4113         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
4114           XplatUIX11.cs: Remove old 2 parameter SetVisible.
4115
4116         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
4117
4118 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
4119
4120         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
4121         of SetVisible that allows a window to be shown, but not activated.
4122         This is needed on Windows for MenuStrip, and can probably be used
4123         with MainMenu and ComboBox to fix the focus stealing issues on
4124         Windows.
4125
4126         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
4127
4128 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
4129
4130         * PictureBox.cs: Fix the output of the ToString method.
4131
4132 2006-10-29  Chris Toshok  <toshok@ximian.com>
4133
4134         * Control.cs (get_TopLevelControl): fix bug #79781.
4135
4136 2006-10-29  Chris Toshok  <toshok@ximian.com>
4137
4138         * ListControl.cs (set_DataSource): throw Exception here, not
4139         ArgumentException, to match MS behavior.
4140
4141 2006-10-29  Chris Toshok  <toshok@ximian.com>
4142
4143         * Form.cs: remove the try-catch's around calls to GetWindowState.
4144         We can just check the return value.
4145
4146         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
4147         Instead return -1.
4148
4149         * XplatUI.cs: Add note about additional return value for
4150         GetWindowState.
4151
4152 2006-10-29  Chris Toshok  <toshok@ximian.com>
4153
4154         * Control.cs (CreateHandle): when we create our handle, we also
4155         create the handles of our child controls.  Fixes one of the
4156         Control unit tests (CH11).
4157
4158 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
4159
4160         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
4161
4162 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
4163
4164         * ThemeClearlooks.cs: A little speedup.
4165
4166 2006-10-27  Chris Toshok  <toshok@ximian.com>
4167
4168         * Control.cs: implement Control.FromChildHandle in a way that
4169         matches the docs (and fixes the failed test.)
4170
4171 2006-10-27  Chris Toshok  <toshok@ximian.com>
4172
4173         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
4174         comments).
4175
4176         * DataGrid.cs: implement ResetForeColor such that the tests
4177         succeed.
4178         
4179 2006-10-27  Chris Toshok  <toshok@ximian.com>
4180
4181         * ToolBarButton.cs: setting text/tooltiptext to null results in it
4182         being set to "".  Fixes bug #79759.
4183
4184 2006-10-27  Jackson Harper  <jackson@ximian.com>
4185
4186         * TextControl.cs: We need to clear the entire selection area when
4187         setting the start, otherwise multiline selections are still
4188         visible.
4189
4190 2006-10-26  Chris Toshok  <toshok@ximian.com>
4191
4192         * PropertyGridView.cs: 
4193
4194         - ifdef all the code specific to the double
4195         buffer case, and provide some alternatives in the non-doublebuffer
4196         code, which makes heavy use of XplatUI.ScrollWindow to move things
4197         around without having to invalidate (and cause flicker).  There
4198         are still some drawing problems in the non-doublebuffered case, so
4199         DOUBLEBUFFER is defined by default.
4200
4201         - Fix the way dropdowns are handled.  now we explicitly watch for
4202         the events which might cause the dropdown to close, and break out
4203         of the nested event loop there.  This gets rid of all Capture
4204         code, at the expense of the Msg special casing.  Seems to work,
4205         though, and fixes bug #79743.
4206
4207 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
4208         * Control.cs: SetIsRecreating now recreates implicitly added
4209         child controls as well. Finally fixes #79629. The flag passed to 
4210         SetIsRecreating has also been removed since it wasn't used.
4211         
4212 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4213
4214         * PageSetupDialog.cs: Clean some code, fix some bits, 
4215         add some checks, and add a printer sub-dialog.
4216
4217 2006-10-26  Chris Toshok  <toshok@ximian.com>
4218
4219         * PropertyGrid.cs: make set_SelectedObject call
4220         set_SelectedObjects, and move the duplicate logic to the
4221         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
4222
4223         * PropertyGridView.cs: hide the textbox when we get a
4224         SelectedObjectsChanged event.
4225
4226         Fixes bug #79748.
4227
4228 2006-10-26  Chris Toshok  <toshok@ximian.com>
4229
4230         * PropertyGridView.cs: deal with the type converter not supporting
4231         GetStandardValues() or GetStandardValues() returning null, which
4232         is does in the default case.  Fixes #79742.
4233
4234 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
4235
4236         * CheckedListBox.cs: nunit no longer crashes when selecting 
4237         Project/Edit menu option
4238         
4239 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
4240
4241         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
4242         is no menu selected. fixes #79739
4243
4244 2006-10-25  Chris Toshok  <toshok@ximian.com>
4245
4246         * PropertyGridView.cs: factor out the splitter invalidation code
4247         into the SplitterPercent setter, and for kicks implement the
4248         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
4249         amount in either direction.
4250
4251 2006-10-25  Chris Toshok  <toshok@ximian.com>
4252
4253         * PropertyGridView.cs: do some cleanup of the brush used to draw
4254         text - read only fields should be grayed out.  not sure how to do
4255         this with the textbox, though.  but the textbox's should also be
4256         readonly now at least.  Also, hide/show the textbox when resizing
4257         the control.
4258         
4259         * CursorConverter.cs: use System.Reflection when getting the
4260         properties of Cursors, as TypeDescriptor.GetProperties isn't
4261         returning static properties.
4262
4263 2006-10-25  Chris Toshok  <toshok@ximian.com>
4264
4265         * PropertyGridView.cs: factor out the up/down handling, and reuse
4266         it for page up/down.  also add End/Home support.
4267
4268 2006-10-25  Chris Toshok  <toshok@ximian.com>
4269
4270         * PropertyGridView.cs:
4271
4272         - ensure the selected grid item is visible in the scrolled area,
4273         fixes bug #79572.
4274
4275         - fix Keys.Down handling when you're on the last item in the
4276         propertygrid.
4277
4278 2006-10-25  Mike Kestner  <mkestner@novell.com>
4279
4280         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
4281         clicks too.  Fixes #79725.
4282
4283 2006-10-24  Chris Toshok  <toshok@ximian.com>
4284
4285         * PropertyGrid.cs: use property.Converter instead of
4286         TypeDescriptor.GetConverter(property.PropertyType), so we catch
4287         TypeConverters declared on the property as well as on the
4288         PropertyType.  Fixes bug #79678.
4289
4290 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
4291
4292         * MimeIcon.cs, Mime.cs:
4293           Fallback to the default platform handler if no shared mime info
4294           stuff exists (fixes #79693).
4295
4296 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
4297         * ContainerControl.cs: Incorrect contains check in ActiveControl 
4298         from previous fix (duh).
4299
4300 2006-10-20  Chris Toshok  <toshok@ximian.com>
4301
4302         * PropertyGridView.cs: the dropdown should be MIN(number of items
4303         in list, 15).  Fixes #79551.
4304
4305 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
4306         Fixes #79384, #79394, #79652, #79667
4307         * Application.cs: 
4308         
4309         - Modal windows are now destroyed in the proper order for windows
4310         
4311         * ContainerControl.cs:
4312         
4313         - ActiveControl setter has more conditions on when to return:
4314                 - if we're reselecting the active control, but it actually
4315                 didn't have focus (window hidden or some such), it runs
4316                 - if the active control being selected doesn't actually 
4317                 exist in the container, it returns
4318         
4319         * Form.cs
4320         
4321         - The ShowDialog now gets the current form as the owner when
4322         invoking without parameters, and correctly activates the owner 
4323         when returning
4324         
4325         * MessageBox.cs
4326         
4327         - MessageBox now catches the Escape key to exit
4328
4329 2006-10-20  Chris Toshok  <toshok@ximian.com>
4330
4331         * PropertyGridView.cs: fix a number of issues (bug #78565, and
4332         most of bug #79676):
4333
4334         - you can navigate around the property grid with the arrow keys.
4335
4336         - the dropdown is sized properly when the pg has a vertical
4337         scrollbar.
4338
4339         - fix the indentation for subentries, and properly select the
4340         entire label rect.
4341
4342         - fix the gray bar's drawing (only draw it to the last element,
4343         not for the height of the control.  Also make sure we draw that
4344         last horizontal grid line.
4345
4346         - use the same mechanism the datagrid uses wrt the editing textbox
4347         when scrolling/resizing/etc.  Namely, we hide it first, do the
4348         operation, then show it again (if it's still visible).
4349         
4350         - aggressively remove a lot of unnecessary refreshes (and also
4351         calls to Invalidate(). call more limited variants, and only redraw
4352         what we need.)
4353         
4354         * PropertyGrid.cs:
4355
4356         - when we're populating the merged collection, fill in the UI
4357         parent with either the passed in item, or the category item we
4358         create.
4359
4360         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
4361
4362         * GridItem.cs: drop some fully qualified names.
4363         
4364         * GridEntry.cs: add a "UIParent", which is basically the parent
4365         treenode.
4366
4367         * GridItemCollection.cs: add an IndexOf method.
4368
4369 2006-10-20  Mike Kestner  <mkestner@novell.com>
4370
4371         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
4372         a working win32 NC invalidation mechanism, we can't invalidate
4373         menus.  [Fixes #79705]
4374
4375 2006-10-20  Mike Kestner  <mkestner@novell.com>
4376
4377         * ListBox.cs : don't update the VScrollbar if the list is empty,
4378         just hide it.  [Fixes #79692]
4379
4380 2006-10-20  Jackson Harper  <jackson@ximian.com>
4381
4382         * RichTextBox.cs: Handle some special chars better, and don't skip
4383         the entire group when we encounter a special char that we don't
4384         handle correctly.
4385
4386 2006-10-18  Chris Toshok  <toshok@ximian.com>
4387
4388         * PropertyGridView.cs: address a number of issues from bug #79676,
4389         mostly of the cosmetic variety.
4390
4391         - The highlight rectangle for indented items not extends all the
4392         way to the left.
4393
4394         - Indented items aren't indented so much.
4395
4396         - the dropdown is properly sized width-wise if the pg has a
4397         vertical scrollbar.
4398
4399 2006-10-18  Chris Toshok  <toshok@ximian.com>
4400
4401         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
4402         systray stuff is rather convoluted to begin with.
4403
4404         systray icons are a single window for some reason (that I haven't
4405         figured out yet), and for them, client_window == whole_window.
4406         Given the way the tests are structured elsewhere to determine
4407         which paints are pending (client vs. nc), that situation will
4408         always yield PAINT, not NCPAINT.  So, if we have a pending
4409         nc_expose and no pending expose, remove the hwnd from the paint
4410         queue, and also set nc_expose_pending to false, to keep us from
4411         blocking further expose's adding the hwnd to the paint queue.
4412
4413         phew.  like i said, a rather convoluted change.  Fixes the
4414         notifyicon repaint issues in bug #79645.
4415
4416 2006-10-18  Chris Toshok  <toshok@ximian.com>
4417
4418         * Form.cs: when getting the backcolor of the form, don't get
4419         base.BackColor, as this allows parents to influence the background
4420         color.  This breaks mdi forms.  Instead, if the background_color
4421         is empty, return the default.
4422
4423 2006-10-18  Chris Toshok  <toshok@ximian.com>
4424
4425         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
4426         to being private instead of internal static.
4427
4428         * Control.cs: remove all the stupid ParentWaitingOnRecreation
4429         crap, it wasn't working for more deeply nested controls anyway,
4430         and we already have the is_recreating flag - use that instead.
4431         Before calling DestroyHandle in RecreateHandle, recurse through
4432         the control tree setting it to true.  this returns the recreate
4433         code to much of its original simplicity, while now guaranteeing we
4434         actually recreate everything we're supposed to.  This change gets
4435         fyireporting actually showing mdi children.
4436
4437 2006-10-17  Chris Toshok  <toshok@ximian.com>
4438
4439         * Form.cs: remove some debug spew, and collapse some duplicate
4440         code at the end of SetClientSizeCore.
4441
4442         * XplatUIX11.cs: 
4443         - add some more debug spew here too wrt Destroy handling.
4444         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
4445         in Control's handling of WM_DESTROY.
4446         - Remove the handling of zombie window DestroyNotifies from the
4447         event loop - we don't need it.  Now the only DestroyNotifies we
4448         actually handle are ones generated by X.
4449         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
4450         match gtk's (functioning) handling of this. This keep metacity
4451         from leaving droppings in the form of wm borders with no window
4452         contents all over the place.
4453
4454         * Control.cs:
4455         - add a bunch of debug spew wrt control recreation.
4456         - fix a bug where we weren't tracking Visible properly on
4457         recreated hwnds.
4458         - fixed the WM_PAINT double buffer handling to support re-entrant
4459         calls (yes, i know it's gross, but it's happening to us).
4460
4461 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4462         * ThemeWin32Classic.cs: changed drawing of selected days
4463         to make them look better.
4464
4465 2006-10-16  Chris Toshok  <toshok@ximian.com>
4466
4467         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
4468         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
4469
4470         * XplatUIX11.cs: move away from using hwnd.client_dc and
4471         hwnd.non_client_dc and on to a stack of dc's (and in window's
4472         case, PAINTSTRUCT's), so we can deal with nested Paint calls
4473         without puking or not disposing of Graphics objects.
4474
4475         * XplatUIOSX.cs: same.
4476
4477         * XplatUIWin32.cs: same.
4478
4479 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4480
4481         * FileDialog.cs: Don't call on_directory_changed inside
4482           OnSelectedIndexChanged (it changes the SelectedIndex too).
4483           Instead move it to OnSelectionChangeCommitted.
4484
4485 2006-10-13  Chris Toshok  <toshok@ximian.com>
4486
4487         * XplatUIX11.cs: more Destroy work.  the current code does the
4488         following things, in order:
4489
4490         1. Enumerates all handles of all controls at or below the one
4491         being destroyed, in pre-order.  As it is doing this, it marks the
4492         handles as zombie and clears all references to them.
4493         
4494         2. calls XDestroyWindow on the window passed in.
4495
4496         3. SendMessage's WM_DESTROY to all he handles in the accumulated
4497         list.
4498
4499 2006-10-13  Chris Toshok  <toshok@ximian.com>
4500
4501         * XplatUIX11.cs: set hwnd.zombie to true before calling
4502         SendMessage (WM_DESTROY).  this keeps us from marking the new
4503         window a zombie, and also keeps us from calling sendmessage at
4504         all.
4505
4506 2006-10-13  Jackson Harper  <jackson@ximian.com>
4507
4508         * TextControl.cs: Do not show the caret and selection at the same
4509         time.  Reduces ugliness by 35%.
4510
4511 2006-10-13  Chris Toshok  <toshok@ximian.com>
4512
4513         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
4514         zombie after we do the recursive call, so we actually do call
4515         SendMessage on the children controls.
4516         (GetMessage): if we find a pending paint event for a zombie hwnd,
4517         remove the hwnd from the paint queue, or else it will always be
4518         there (and we'll effectively loop infinitely)
4519
4520 2006-10-13  Mike Kestner  <mkestner@novell.com>
4521
4522         * MenuItem.cs : add Selected format under keynav too.
4523         Fixes #79528.
4524
4525 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
4526
4527         * PropertyGrid.cs: Fixed some NRE's and small difference between our
4528         implementation and that of MS.
4529
4530 2006-10-13  Chris Toshok  <toshok@ximian.com>
4531
4532         * Control.cs (OnInvalidated) only futz with the invalid_region if
4533         the control is double buffered.  this fixes the apparent hang in
4534         the ListView unit tests.  Someone needs to make the
4535         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
4536
4537 2006-10-13  Chris Toshok  <toshok@ximian.com>
4538
4539         * PropertyGridView.cs:
4540
4541         - do a little refactoring so that only one place calls
4542         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
4543         else call that.  Also make it Refresh, since there are redraw bugs
4544         otherwise (we should take a look at that...)
4545
4546         - do a little more refactoring work to share the body of code
4547         involved with the drop down.  it was duplicated in the code
4548         dealing with the listbox handling and in the code dealing with the
4549         UITypeEditors.
4550
4551         - add a Capture to the dropdown form's control once it's
4552         displayed, and add a MouseDown handler that checks to make sure
4553         the position is inside the control.  If it's not, close the
4554         dropdown.  This fixes #78190.
4555
4556         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
4557         if the value is different than the initial value.
4558         
4559 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
4560
4561         * Control.cs: see #78650
4562         - Fixed GetNextControl for several cases:
4563                 - Changed FindFlatForward to return 
4564                 correct sibling control when more than one
4565                 control has same TabIndex as the currently 
4566                 focused one.
4567                 - Changed FindFlatBackward to loop children
4568                 from last to first and apply same logic as in
4569                 FindFlatForward
4570                 - Changed FindControlForward to search for
4571                 children when control is not a container
4572                 but has children, or search for siblings if
4573                 control is a container...
4574                 - Changed FindControlBackward   to continue
4575                 searching for child controls when hitting 
4576                 Panel-like parents
4577                 
4578         - Fixed Focus method to update ActiveControl
4579         (FocusTest.FocusSetsActive failure)
4580         
4581         * TabControl.cs:
4582         - Focus rectangle now refreshes when gaining
4583         or losing focus
4584         - Removed grab for Tab key on IsInputKey that 
4585         was keeping tab navigation from working (#78650)
4586
4587 2006-10-13  Chris Toshok  <toshok@ximian.com>
4588
4589         * PropertyGridView.cs:
4590         - Rewrite SetPropertyValue to loop over SelectedGridItem's
4591         SelectedObjects.
4592
4593         - Deal with GridItem.Value == null a few places.
4594
4595         * PropertyGrid.cs: 
4596         - replace the PopulateGridItemCollection with a pair of methods
4597         which compute the intersection of all the properties in the
4598         SelectedObjects array.  Fixes #79615.
4599
4600         - Throw ArgumentException from set_SelectedObjects if there's a
4601         null in the array.
4602
4603         - Add GetTarget method which can be used to traverse up the
4604         GridItem.Parent chain.  It depends on the assumption that
4605         selected_objects for different GridEntries are always in the same
4606         order (a safe assumption).  Use this method and loop over all the
4607         selected objects in the entry when calling RemoveValueChanged and
4608         AddValueChanged.
4609         
4610         * GridEntry.cs: Make this handle multiple selected objects.
4611         .Value returns null if not all the selected objects share the same
4612         value.
4613
4614 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
4615         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
4616           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
4617           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
4618           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
4619           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
4620         add additional functionality.
4621
4622 2006-10-12  Mike Kestner  <mkestner@novell.com>
4623
4624         * ErrorProvider.cs : new ToolTipWindow ctor sig.
4625         * HelpProvider.cs : new ToolTipWindow ctor sig.
4626         * ToolTip.cs : remove ToolTip param from Window sig since it is
4627         not used.
4628         * ToolBar.cs : add tooltip support.  Fixes #79565.
4629
4630 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4631
4632         * ComboBox.cs: move the events in set_SelectedIndex to 
4633         after the call to HighlightIndex in order to avoid 
4634         possible recursion and subsequent problems with the call
4635         to HighlightIndex and include a range check in 
4636         set_HighlightIndex. Fixes #79588
4637         
4638 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4639
4640         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
4641         to ui thread's settings instead of sunday. 
4642         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
4643
4644 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4645
4646         * DateTimePicker.cs
4647         * MonthCalendar.cs
4648         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
4649         and implement missing functionality (selecting different parts 
4650         of the date and edit them individually with the keyboard).
4651         
4652 2006-10-11  Chris Toshok  <toshok@ximian.com>
4653
4654         * Control.cs (OnInvalidated): fix NRE relating to last change.
4655
4656 2006-10-11  Chris Toshok  <toshok@ximian.com>
4657
4658         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
4659         atoms in _NET_WM_STATE here if the window is maximized.  We need
4660         to do this because we're *replacing* the existing _NET_WM_STATE
4661         property, so those atoms will be lost otherwise, and any further
4662         call to GetWindowState will return Normal for a window which is
4663         actually maximized.  Fixes #79338.
4664
4665 2006-10-11  Jackson Harper  <jackson@ximian.com>
4666
4667         * TextControl.cs: Special case for setting selection end to
4668         selection start, we basically kill the anchor.
4669         - some todo comments.
4670
4671 2006-10-11  Chris Toshok  <toshok@ximian.com>
4672
4673         * Control.cs: switch to using an "invalid_region" to track which
4674         parts of the image buffer need updating.  This is more code than
4675         the simple fix from r66532.  That version just attempted to always
4676         fill the entire buffer on redraw, which turns out to be
4677         inefficient when invalidating small rectangles.  This version
4678         simply adds the invalid rectangle to the invalid region.  When we
4679         get any WM_PAINT message we see if it can be filled using the
4680         image buffer, and if it can't (if the paint event's clip rectangle
4681         is visible in the invalid region) we first fill the image buffer.
4682         So, the image buffer is still a cache, we just fill it lazily.
4683
4684         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
4685         need it any longer.
4686
4687 2006-10-11  Chris Toshok  <toshok@ximian.com>
4688
4689         * XplatUIX11.cs (SetWindowPos): we need to update both position as
4690         well as size after calling XMoveResizeWindow.  This keeps us from
4691         ignoring future SetWindowPos calls.  Fixes the disappearing
4692         DateTimePicker in the ToolBarDockExample from bug #72499.
4693
4694 2006-10-11  Chris Toshok  <toshok@ximian.com>
4695
4696         * TextBoxBase.cs: reorder things a bit when it comes to
4697         resizing-causing-recalculation.  we were recalculating the
4698         document when our position was changed, which shouldn't happen.
4699         We only care about size changes.  Clear up some more redundant
4700         recalculation calls while I'm at it.  This makes the toolbar dock
4701         example snappy when you're just dragging toolbars around (since it
4702         causes a relayout whenever you move one.)
4703
4704 2006-10-11  Chris Toshok  <toshok@ximian.com>
4705
4706         * ToolBarButton.cs (get_Rectangle): this only returns
4707         Rectangle.Empty if Visible == false, or Parent == null.
4708         Parent.Visible doesn't matter.
4709
4710 2006-10-10  Chris Toshok  <toshok@ximian.com>
4711
4712         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
4713         by .net 1.1, so switch to an internal method instead.
4714
4715 2006-10-10  Chris Toshok  <toshok@ximian.com>
4716
4717         * Control.cs (WM_PAINT): when a control is double buffered we draw
4718         initially to the ImageBuffer and then copy from there.  But when a
4719         parent control which has child controls is double buffered, the
4720         initial drawing doesn't encompass the entire ClientRectangle of
4721         the parent control, so we end up with uninitialized bits (this is
4722         easily seen by dragging the top toolbar in
4723         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
4724         manually set the ClipRectangle of the paint_event (only the one we
4725         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
4726         of the nastiness in bug #72499.
4727
4728         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
4729         which we use in Control.cs's WM_PAINT handling.
4730
4731 2006-10-10  Jackson Harper  <jackson@ximian.com>
4732
4733         * TextBoxBase.cs: Finish off the autoscrolling stuff.
4734
4735 2006-10-10  Chris Toshok  <toshok@ximian.com>
4736
4737         * Cursor.cs: Apply a slightly different patch to the one suggested
4738         in #79609.
4739
4740 2006-10-10  Jackson Harper  <jackson@ximian.com>
4741
4742         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
4743         not the parent form.
4744         * TextControl.cs: use difference in old line count vs new count to
4745         calculate how many lines were added, this takes into account soft
4746         line breaks properly.
4747
4748 2006-10-10  Chris Toshok  <toshok@ximian.com>
4749
4750         * LinkLabel.cs: don't call MeasureCharacterRanges against a
4751         rectangle located at 0,0 and the size of the text.  Use
4752         ClientRectangle instead.  This fixes rendering of non-left aligned
4753         link labels.
4754
4755 2006-10-10  Jackson Harper  <jackson@ximian.com>
4756
4757         * TextBoxBase.cs: When we set the selection start position the
4758         caret.
4759         * TextControl.cs: Need to update the caret when we decrement it to
4760         zero.
4761         - Make sure that the selection_visible flag gets reset to false if
4762         the selection isn't visible.  Before this you could get it set to
4763         visible by changing the selection start, then changing the end to
4764         equal the start.
4765
4766 2006-10-09  Jackson Harper  <jackson@ximian.com>
4767
4768         * TreeView.cs: Don't update scrollbars when we aren't visible.
4769         * TreeNodeCollection.cs: Only need to update scrollbars if being
4770         added to an expanded visible node or the root node.
4771
4772 2006-10-09  Chris Toshok  <toshok@ximian.com>
4773
4774         * XplatUIX11.cs (SendMessage): fix NRE.
4775
4776 2006-10-09  Jackson Harper  <jackson@ximian.com>
4777
4778         * TextBoxBase.cs: Implement horizontal autoscrolling.
4779         * TextControl.cs: Add a movement types that allows moving forward
4780         and backwards without wrapping.
4781
4782 2006-10-09  Mike Kestner  <mkestner@novell.com>
4783
4784         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
4785         with focus "expansion" of labels.  Fixes #79532 and then some.
4786         * ThemeWin32Classic.cs : add LineLimit to ListView label format
4787         when wrapping.
4788
4789 2006-10-09  Jackson Harper  <jackson@ximian.com>
4790
4791         * TextBoxBase.cs: Set the default max values to MaxValue since
4792         we use the scrollbar for autoscrolling and the default value is
4793         100.  If we don't do this the caret won't keep up with typing
4794         after about 18 characters.
4795         * TextControl.cs: Make sure the selection is offset by the
4796         viewport x.  This fixes selection when using auto scrolling.
4797
4798 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
4799         
4800         * Form.cs: The active control should be selected after the 
4801         OnLoad so that any child control initialization that affects
4802         the selection is done. Fixes #79406
4803
4804 2006-10-06  Chris Toshok  <toshok@ximian.com>
4805
4806         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
4807         to have no evil effects.
4808
4809         - Stop selecting StructureNotifyMask on non-toplevel windows.
4810
4811           The only way children should be resized is by using the SWF api,
4812           and we already send WM_WINDOWPOSCHANGED messages in those cases.
4813           Toplevel windows can be interacted with via the window manager,
4814           and so we keep the input mask there.
4815
4816           The other event StructureNotifyMask gives us (that we care
4817           about) is DestroyNotify.  The code is already structured such
4818           that it assumes we won't be getting a DestroyNotify event for
4819           the window we pass to XDestroyWindow (which is what
4820           StructureNotifyMask is supposed to guarantee.)  So, that code
4821           shouldn't be affected by this either.
4822
4823         - Stop selecting VisibilityChangeMask altogether.
4824
4825           We weren't doing anything with the resulting events anyway.
4826         
4827         This vastly reduces the number of X requests and events we see
4828         when resizing/laying out a large ui.
4829
4830 2006-10-06  Chris Toshok  <toshok@ximian.com>
4831
4832         * ScrollableControl.cs (DisplayRectangle): we need to take into
4833         account the DockPadding regardless of whether or not auto_scroll
4834         == true.  rework this slightly to this effect, and fix bug #79606,
4835         and part of #72499 (you can now see the drag handles and drag
4836         toolbars around).
4837
4838 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
4839
4840         * ListViewItem.cs: Collections of selected and checked items are now
4841         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
4842         we mark the collection "dirty".
4843         * ListView.cs: Marked collections readonly. Modified UpdateSelection
4844         to only clear SelectedItems when a new item is selected and MultiSelect
4845         is enabled. CheckedItems and SelectedItems now subscribe to Changed
4846         event of ListViewItemCollection, and mark its list dirty whenever
4847         that event is fire. This allows us to return selected/checked items 
4848         in the same order as they are in the Items collection. This matches
4849         the MS behavior.
4850
4851 2006-10-06  Chris Toshok  <toshok@ximian.com>
4852
4853         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
4854         right mouse clicks.  Fixes bug #79593.
4855
4856 2006-10-06  Chris Toshok  <toshok@ximian.com>
4857
4858         * Splitter.cs: doh, fix splitters that don't want to cancel the
4859         movement when you drag them.  Also, impose the limits on the
4860         values we send to the SplitterMovingEvent.  Fixes #79598.
4861
4862 2006-10-06  Jackson Harper  <jackson@ximian.com>
4863
4864         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
4865         since we use this for auto scrolling also.
4866
4867 2006-10-05  Chris Toshok  <toshok@ximian.com>
4868
4869         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
4870         beginning to think that most datagrid column types don't need this
4871         method.  Fixes bug #79392.
4872
4873 2006-10-05  Chris Toshok  <toshok@ximian.com>
4874
4875         * DataGrid.cs: move back to a more lazy scheme for creating the
4876         CurrencyManager, so we aren't updating it every time you set
4877         either DataSource or DataMember.  Also, don't call
4878         RecreateDataGridRows if the currency manager hasn't changed.
4879
4880 2006-10-05  Chris Toshok  <toshok@ximian.com>
4881
4882         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
4883         emitted, SelectedIndex should already be updated.  Fixes bug
4884         #78929.
4885
4886 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
4887
4888         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
4889           ToolStripTextBox.cs: Initial commit.
4890         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
4891
4892 2006-10-05  Jackson Harper  <jackson@ximian.com>
4893
4894         * TabControl.cs: We need to invalidate the tab control area when
4895         new ones are added (duh).
4896
4897 2006-10-03  Chris Toshok  <toshok@ximian.com>
4898
4899         * Form.cs (ProcessDialogKey): if the focused control is in this
4900         form and is a button, call its PerformClick method here.  Fixes
4901         #79534.
4902
4903 2006-10-04  Jackson Harper  <jackson@ximian.com>
4904
4905         * TabPage.cs: Ignore setting of Visible, and add an internal
4906         method for setting the controls visibility.  TabPage's Visible
4907         property is a little strange on MS, this seems to make us
4908         compatible, and fixes cases where people set all the tab pages to
4909         visible.
4910         * TabControl.cs: Use the new internal setting on tab pages
4911         visibility.
4912
4913 2006-10-03  Mike Kestner  <mkestner@novell.com>
4914
4915         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
4916
4917 2006-10-03  Mike Kestner  <mkestner@novell.com>
4918
4919         * ListView.cs : use is_visible instead of Visible to check if 
4920         scrollbars should be placed/sized.  Also some max_wrap_width
4921         love for LargeIcon view.  [Fixes #79533]
4922
4923 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
4924
4925         * TextControl.cs :
4926           Make set_TextAlign() do actually update the align. Fixed #78403.
4927
4928 2006-10-03  Chris Toshok  <toshok@ximian.com>
4929
4930         * DataGrid.cs: fix a crash when switching datasources if the
4931         vertical scrollbar is at someplace other than Value = 0.  Also,
4932         reduce the number of recalculation passes we do in SetDataSource
4933         from 2 to 1.
4934
4935 2006-10-03  Jackson Harper  <jackson@ximian.com>
4936
4937         * TextBoxBase.cs: Move the if value the same bail check up, we
4938         don't want to empty the document if it is already empty, this
4939         seems to severly mess up the caret.  TODO: I should probably fix
4940         the empty statement to update teh caret somehow.
4941
4942 2006-10-03  Chris Toshok  <toshok@ximian.com>
4943
4944         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
4945         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
4946         reflection, an internal row type, properties on said type, etc.)
4947         will work with our datagrid.  Fixes #79531.
4948
4949 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4950
4951         * FileDialog.cs: Don't crash if a path is not accessible
4952           (System.UnauthorizedAccessException). Fixes #79569.
4953         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
4954           a ':' too. Return unknown icon for those paths/files.
4955
4956 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
4957
4958         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
4959         GetContainerControl returns null.
4960
4961 2006-10-02  Chris Toshok  <toshok@ximian.com>
4962
4963         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
4964         call to XGetWindowAttributes instead of "handle".  fixes an X
4965         error using notifyicon after the NotifyIconWindow to Form base
4966         class switch.
4967
4968 2006-10-02  Chris Toshok  <toshok@ximian.com>
4969
4970         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
4971         server grab and looping we need to do to get down to the most
4972         deeply nested child window.
4973         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
4974         QueryPointer again after the WarpPointer so we can generate a
4975         proper (fake) MotionNotify event to be enqueued in the destination
4976         window's queue.
4977         (GetCursorPos): call QueryPointer.
4978
4979         Fixes #79556.
4980
4981 2006-10-02  Jackson Harper  <jackson@ximian.com>
4982
4983         * NotifyIcon.cs: Derive the notify icon from a form, so things
4984         like FindForm work on it.
4985         - Swallow the WM_CONTEXTMENU message, since that is generated on
4986         mouse down, and context menu is a mouse up kinda guy.  I believe
4987         the correct fix here is probably to make the notify icon entirely
4988         NC area, but this seems to work fine for anyone not manipulating
4989         WndProc.
4990
4991 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
4992
4993         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
4994           ToolStripItemCollection.cs, ToolStripLabel.cs,
4995           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
4996           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
4997           Initial implementation.
4998         * TextRenderer.cs: Provide padding to MeasureText.
4999
5000 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
5001
5002         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
5003         of ButtonBaseAccessibleObject. Fix bug #79552.
5004
5005 2006-10-02  Jackson Harper  <jackson@ximian.com>
5006
5007         * MdiWindowManager.cs: When maximizing use the containers client
5008         rect, not it's bounds, so nc area is accounted correctly.
5009         - Use the parent form's size for the menu position, since the
5010         client isn't always the full form size.
5011
5012 2006-10-01  Chris Toshok  <toshok@ximian.com>
5013
5014         * ScrollableControl.cs: make sure neither right_edge or
5015         bottom_edge are < 0, since they're used as LargeChange for the
5016         horiz/vert scrollbars respectively.  Fixes #79539.
5017
5018 2006-10-01  Chris Toshok  <toshok@ximian.com>
5019
5020         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
5021         the xplatuix11 code can cause us to destroy/recreate our handle.
5022
5023         * XplatUIX11.cs
5024         (SystrayAdd):
5025         - this code can be invoked many times for the same Hwnd.  Make
5026           sure we only destroy the client window once (the first time this
5027           method is called).  This fixes bug #79544.
5028         - Remove the call to the improperly bound XSync.  why we had two
5029           bindings to this, I will never know, but this call resulted in
5030           events being discarded from the queue(!).
5031         - correct a misunderstanding of _XEMBED_INFO - the second atom is
5032           not our current state but the state we wish to be in.  So, 0 if
5033           we don't want to be mapped.  Change it to 1.
5034         (SystrayRemove): The XEMBED spec makes mention of the fact that
5035         gtk doesn't support the reparent of client windows away from the
5036         embedder.  Looking at gtksocket-x11.c seems to agree with this.
5037         The only avenue we have for removing systray icons is to destroy
5038         them.  We don't want the handle to go away for good, though, so
5039         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
5040         #79545.
5041         
5042 2006-10-01  Chris Toshok  <toshok@ximian.com>
5043
5044         * Form.cs (WndProc): inline the native_enabled variable usage into
5045         the cases in which it's used.  Fixes #79536.
5046
5047 2006-09-29  Mike Kestner  <mkestner@novell.com>
5048
5049         * ListView.cs : toggle the selection state for ctrl clicks in 
5050         multiselect mode. [Fixes #79417]
5051
5052 2006-09-29  Mike Kestner  <mkestner@novell.com>
5053
5054         * ListView.cs : kill CanMultiSelect and refactor the selection
5055         code to support multiselection in the absence of mod keys. Steal
5056         arrow/home/end keys by overriding InternalPreProcessMessage to
5057         restore regressed keynav behavior.
5058         [Fixes #79416]
5059
5060 2006-09-29  Jackson Harper  <jackson@ximian.com>
5061
5062         * MdiClient.cs: Repaint the titlebars when the active window is
5063         changed.
5064
5065 2006-09-29  Chris Toshok  <toshok@ximian.com>
5066
5067         * Application.cs: when entering a runloop with a modal, make sure
5068         the hwnd is enabled.  Fixes #79480.
5069
5070 2006-09-29  Chris Toshok  <toshok@ximian.com>
5071
5072         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
5073         when ListManager.CanAddRows == false, bump us back one.
5074
5075         * DataGridColumnStyle.cs (ParentReadOnly): remove the
5076         listmanager.CanAddRows check.  This makes ArrayLists uneditable
5077         using a datagrid, which is not right.
5078         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
5079         is an IEditable, but call property_descriptor.SetValue regardless.
5080         fixes #79435.
5081
5082 2006-09-29  Chris Toshok  <toshok@ximian.com>
5083
5084         * DataGridBoolColumn.cs: we need to test equality in the face of
5085         possible null values (as is the case with the default NullValue).
5086         This patch keeps us from crashing in that case.
5087
5088 2006-09-29  Jackson Harper  <jackson@ximian.com>
5089
5090         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
5091         here, since it will get called for every node collection in the
5092         tree. This is now done in the treeview once the sorting is
5093         finished.
5094         * TreeView.cs: Recalculate the visible order, and update the
5095         scrollbars after sorting, set the top nope to the root so that the
5096         recalc actually works.
5097
5098 2006-09-29  Chris Toshok  <toshok@ximian.com>
5099
5100         * LinkLabel.cs: more handling of the default link collection in
5101         the face of LinkArea manipulation.  The default link collection
5102         contains 1 element (start=0,length=-1).  If the user sets LinkArea
5103         to anything and the links collection is the default, clear it.
5104         Then only add the link if its nonempty.  Fixes #79518.
5105
5106 2006-09-29  Chris Toshok  <toshok@ximian.com>
5107
5108         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
5109         piece correctly when we hit a '\n'.  Fixes #79517.
5110
5111 2006-09-29  Chris Toshok  <toshok@ximian.com>
5112
5113         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
5114         change the binding of gdk_init_check to take two IntPtr's, and
5115         pass IntPtr.Zero for both of them.  Fixes #79520.
5116
5117 2006-09-29  Mike Kestner  <mkestner@novell.com>
5118
5119         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
5120         [Fixes #78779]
5121
5122 2006-09-28  Jackson Harper  <jackson@ximian.com>
5123
5124         * XplatUIX11.cs: When translating NC messages make sure we go from
5125         whole window to screen, not client window to screen.
5126         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
5127         method doesn't exist
5128         - Skip over controls that aren't forms when arranging.
5129
5130 2006-09-28  Jackson Harper  <jackson@ximian.com>
5131
5132         * XplatUIWin32.cs: Clip the rect to the parent window.
5133         * XplatUIStructs.cs: Add clipping modes struct.
5134         * InternalWindowManager.cs: New private method that factors title
5135         bar heights in when calculating the pos of an NC mouse message.
5136         - Use SendMessage to force a paint when the form's size is changed
5137         instead of painting the decorations immediately.
5138         - Don't let the NC button click messages get to DefWndProc,
5139         because they will attempt to handle windowing themself, and this
5140         messes up z-order (it will put them in front of the scrollbars).
5141         * XplatUIX11.cs: Make sure that we don't reset window managers if
5142         we already have one (ie the window is an MDI window).
5143
5144 2006-09-28  Chris Toshok  <toshok@ximian.com>
5145
5146         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
5147         menu code really needs going over.
5148
5149 2006-09-27  Chris Toshok  <toshok@ximian.com>
5150
5151         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
5152         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
5153         window is maximizable.  So, we need to make sure that even if we
5154         clear the border/wm frame of those functions, they're still
5155         available (basically, we remove the decoration without removing
5156         the function).  Half the fix for #79338.
5157
5158 2006-09-27  Chris Toshok  <toshok@ximian.com>
5159
5160         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
5161         Fixes bug #79515.
5162
5163 2006-09-27  Chris Toshok  <toshok@ximian.com>
5164
5165         * Splitter.cs: reorder things a bit so that we don't actually
5166         draw/move the splitter until after calling OnSplitterMoving.  This
5167         lets users cancel/disallow the movement by explicitly setting
5168         event.SplitX/SplitY.  Fixes #79372.
5169
5170 2006-09-27  Jackson Harper  <jackson@ximian.com>
5171
5172         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
5173         because it is most likely on a window being destroyed, and that
5174         will give us an X11 error.
5175
5176 2006-09-27  Chris Toshok  <toshok@ximian.com>
5177
5178         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
5179         the dropdown button now toggles between showing and hiding the
5180         dropdown.  Also, get rid of dropdown_form_showing and just use
5181         dropdown_form.Visible.  We still don't do a grab, but I'll leave
5182         that part to someone who has handled Capture-fu before.
5183
5184 2006-09-27  Chris Toshok  <toshok@ximian.com>
5185
5186         * DataGrid.cs: return false if alt isn't pressed when '0' is
5187         pressed.  this keeps the '0' key from being swallowed, and fixes
5188         bug #79350.
5189
5190 2006-09-27  Chris Toshok  <toshok@ximian.com>
5191
5192         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
5193         Calling Refresh (in response to a scrollbar event) screws up the
5194         scrollbar painting.  Fixes bug #78923.
5195
5196 2006-09-27  Chris Toshok  <toshok@ximian.com>
5197
5198         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
5199         then insert into hashtable" blocks threadsafe.
5200
5201 2006-09-27  Chris Toshok  <toshok@ximian.com>
5202
5203         * MessageBox.cs (CreateParams): the styles should be |'ed with our
5204         baseclass's, since otherwise the
5205         ControlBox/MinimizeBox/MaximizeBox assignments above have no
5206         effect.  This gets the close button back in messageboxes.
5207
5208 2006-09-27  Chris Toshok  <toshok@ximian.com>
5209
5210         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
5211         flag, not just != 0.  this makes flags that are actually multiple
5212         bits (like WS_CAPTION) work.  fixes bug #79508.
5213
5214 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
5215
5216         * PageSetupDialog.cs: add support for getting and settings the 
5217         paper size, source and orientation.
5218
5219 2006-09-26  Chris Toshok  <toshok@ximian.com>
5220
5221         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
5222         and caption == "", we need to remove the resize handles as well as
5223         the title bar.
5224
5225         * Control.cs (set_Text): turns out that setting Text on a form
5226         should change the WM styles on the window, since if ControlBox ==
5227         false, the only way to get a window border is to have a non-""
5228         Text property.  check winforms/forms/text.cs for an example.  so,
5229         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
5230         update both window styles and title.  This fixes a lot of dialogs
5231         (including the preferences dialog in MonoCalendar.)
5232
5233 2006-09-26  Chris Toshok  <toshok@ximian.com>
5234
5235         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
5236         control isn't a Form), call Win32ShowWindow to hide the window,
5237         but don't update the control Visible property.  When we reparent
5238         back to a parent control, call SetVisible in order for the
5239         window's visibility to be reinstated.
5240
5241         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
5242         the FosterParent.
5243
5244         * Control.cs (ControlCollection.Remove): remove that value.Hide()
5245         call for good, since it breaks MonoCalendar (and other things I'm
5246         sure.) Also, set all_controls to null *after* the owner calls,
5247         which end up regenerating it.
5248         (ChangeParent): allow new_parent to be == null, passing
5249         IntPtr.Zero down to XplatUI.
5250
5251         this fixes #79294 the right way.
5252
5253 2006-09-26  Mike Kestner  <mkestner@novell.com>
5254
5255         * GridEntry.cs : internal SetParent method.
5256         * PropertyGrid.cs : attach to property changed on the proper
5257         target if we have a hierarchical grid with subobjects. Setup
5258         GridItem.Parent for hierarchical items.
5259         * PropertyGridView.cs : Set value on the correct target for
5260         hierarchical grids. [Fixes #78903]
5261
5262 2006-09-26  Chris Toshok  <toshok@ximian.com>
5263
5264         * Control.cs (ChildNeedsRecreating): this should return true if
5265         either we're being recreated and the child is in our list, or our
5266         parent is waiting for our recreation.
5267
5268 2006-09-26  Chris Toshok  <toshok@ximian.com>
5269
5270         * Control.cs (ControlCollection.Remove): reinstate the
5271         value.Hide() call as suggested in bug #79294.
5272
5273 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
5274
5275         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
5276         coordinates (versus a relative move).
5277
5278 2006-09-26  Chris Toshok  <toshok@ximian.com>
5279
5280         * Control.cs: rework child recreation a little bit.  It turns out
5281         that we race between the DestroyNotify the WM_DESTROY message.  If
5282         the parent gets its DestroyNotify before the child gets the
5283         WM_DESTROY message, the child ends up not recreating (since the
5284         parent finishes its recreation on DestroyNotify, and the child
5285         checks ParentIsRecreating.)
5286
5287         So, instead we store off a list of all the child controls which
5288         need to be recreated when the parent control starts to recreate
5289         itself.  Then, when child controls get their WM_DESTROY message we
5290         check to see if they're in the parent's pending recreation list,
5291         and if so, we recreate.  This removes all dependency on ordering
5292         from the code and fixes the initial MonoCalendar upgrade dialog.
5293         
5294 2006-09-26  Jackson Harper  <jackson@ximian.com>
5295
5296         * TextControl.cs: Use the Line to get the length of the line,
5297         since soft line breaks can change the end line.
5298
5299 2006-09-26  Chris Toshok  <toshok@ximian.com>
5300
5301         * Control.cs (ControlCollection.AddImplicit): don't add the
5302         control again if it's already in one of our lists.  This keeps us
5303         from adding controls over and over again for comboboxes when their
5304         handle gets recreated (as the combobox adds implicit controls in
5305         OnHandleCreated).  Fixes the X11 errors in bug #79480.
5306
5307 2006-09-26  Jackson Harper  <jackson@ximian.com>
5308
5309         * TextControl.cs: When deleting characters make sure that any
5310         orphaned zero lengthed tags get deleted.
5311         - Fix ToString for zero lengthed tags.
5312
5313 2006-09-25  Jackson Harper  <jackson@ximian.com>
5314
5315         * TextControl.cs: When getting a tag at the location there can be
5316         multiple tags at the same spot, these are 0-lengthed tags that
5317         appear when extra formatting has been stuck in a location.  We
5318         need to pull out the last of these 0 lengthed tags.
5319
5320 2006-09-25  Jackson Harper  <jackson@ximian.com>
5321
5322         * TextControl.cs: Fix print out in debug method.
5323         * TextBoxBase.cs: When text is set bail if we are setting to the
5324         previous value.
5325         
5326 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
5327
5328         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
5329           It is now possible to change the selected index in a FontXXXListBox
5330           with the up and down arrow keys from the FontXXXTextBoxes.
5331           Also, send the FontXXXTextBox mouse wheel event to the corresponding
5332           FontXXXListBoxes to match ms.
5333
5334 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
5335
5336         * SystemInformation.cs: Return a clone of the theme's MenuFont because
5337         anyone can dispose it, anytime. All other properties returns enums, 
5338         structs or basic types so they don't need such tricks.
5339
5340 2006-09-22  Jackson Harper  <jackson@ximian.com>
5341
5342         * XplatUI.cs:
5343         * XplatUIWin32.cs:
5344         * Clipboard.cs:
5345         * DataFormats.cs:
5346         * XplatUIOSX.cs:
5347         * XplatUIDriver.cs: Update interface to add a primary selection
5348         flag, so the driver can use the primary selection buffer if
5349         needed.
5350         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
5351
5352         * RichTextBox.cs: We need to supply the data object to paste now
5353         (so we can choose to supply CLIPBOARD or PRIMARY).
5354         * TextBoxBase.cs: Supply data object to paste (see above).
5355         - Middle click uses the primary selection data object.
5356         
5357 2006-09-21  Chris Toshok  <toshok@ximian.com>
5358
5359         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
5360         of SetWMStyles.  It's still a rat's nest and is largely
5361         order-dependent which I dislike immensely.  This also fixes the X
5362         button disappearing from toplevel forms.
5363
5364 2006-09-21  Mike Kestner <mkestner@novell.com>
5365
5366         * ListBox.cs: move Jordi's click/dblclick raising code to the
5367         mouse up handler.
5368
5369 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
5370
5371         * ListBox.cs: Fixes 79450
5372
5373 2006-09-21  Mike Kestner <mkestner@novell.com>
5374
5375         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
5376         to deal with people updating the TreeNodeCollection after the tree
5377         is disposed.  "Fixes" 79330.
5378
5379 2006-09-20  Jackson Harper <jackson@ximian.com>
5380
5381         * TextControl.cs: Push the cursor record onto the undo stack
5382         before the delete action. This fixes 78651.
5383
5384 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
5385
5386         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
5387         CreateParams. Fixes 79329.
5388
5389 2006-09-19  Chris Toshok  <toshok@ximian.com>
5390
5391         * XplatUIX11.cs: a couple of blanket code massage passes to clean
5392         things up a bit.  First, get rid of the NetAtoms array (and the NA
5393         enum), and just embed the atoms as static fields.  Also, add a
5394         couple of functions (StyleSet and ExStyleSet) to clean up all the
5395         bitmask testing of styles.
5396
5397         * X11Structs.cs: remove the NA enum, not needed anymore.
5398         
5399 2006-09-19  Chris Toshok  <toshok@ximian.com>
5400
5401         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
5402         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
5403         added cleanup to get MessageBox titles appearing again, which were
5404         broken by my earlier fix for caption-less/ControlBox-less windows.
5405
5406 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
5407
5408         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
5409           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
5410           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
5411           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
5412           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
5413           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
5414           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
5415           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
5416           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
5417           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
5418           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
5419             Inital import.
5420         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
5421           ToolStripButton.cs: Stubs needed for above.
5422         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
5423
5424 2006-09-15  Chris Toshok  <toshok@ximian.com>
5425
5426         * XplatUIX11.cs:
5427         - make the MessageQueues hashtable Synchronized.
5428         
5429         - SendMessage: if the Hwnd is owned by a different thread, use the
5430         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
5431         thread.  Fixes bug #79201.
5432
5433 2006-09-15  Chris Toshok  <toshok@ximian.com>
5434
5435         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
5436         ControlBox == false, we disallow maximize/minimize/close.  If the
5437         form Caption is "" we also disallow move (and get rid of the Title
5438         decoration).  Unfortunately, regardless of how things are set,
5439         we're stuck with the Title and WM menu.
5440
5441 2006-09-15  Chris Toshok  <toshok@ximian.com>
5442
5443         * Application.cs: add locking around the static message_filters
5444         ArrayList, part of #79196.
5445
5446 2006-09-15  Chris Toshok  <toshok@ximian.com>
5447
5448         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
5449         Form.ControlBox == false, the window has no titlebar nor resize
5450         handles.  fixes bug #79368.
5451
5452 2006-09-15  Chris Toshok  <toshok@ximian.com>
5453
5454         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
5455         >= 0.  Fixes bug #79370.
5456
5457 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
5458         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
5459         * Control.cs:
5460             Add properties: LayoutEngine, Margin, DefaultMargin.
5461             Add method: GetPreferredSize.
5462             Move layout logic from PerformLayout to layout engines. 
5463
5464 2006-09-13  Chris Toshok  <toshok@ximian.com>
5465
5466         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
5467         fix for #79326 broke #78718, so this change addresses that.
5468
5469         - in SendWMDestroyMessages remove the call to
5470         CleanupCachedWindows, since we might be recreating the control and
5471         need to maintain the references to right Hwnd handles.  Also, set
5472         the zombie flag to true for each of the children in the hierarchy
5473         instead of calling hwnd.Dispose.  This will cause GetMessage to
5474         ignore all events for the window except for DestroyNotify.
5475
5476         - In GetMessage, ignore messages except for DestroyNotify for
5477         zombie hwnds.
5478         
5479         * Control.cs: revert the is_recreating fix from the last
5480         ChangeLog.  It's definitely "right", but it breaks switching from
5481         an MDI form to a non-MDI form.  Will need to revisit that.
5482
5483         * Hwnd.cs: add a zombie flag, which means "the
5484         client_window/whole_window handles are invalid, but we're waiting
5485         for the DestroyNotify event to come in for them".  Set the flag to
5486         false explicitly if setting WholeWindow/ClientWindow, and also
5487         when Disposing.
5488         
5489 2006-09-13  Chris Toshok  <toshok@ximian.com>
5490
5491         * XplatUIX11.cs: rework window destruction slightly.
5492
5493         - when destroying the windows associated with a control, we don't
5494         need 2 separate XDestroyWindow calls.  Just the one for the
5495         whole_window (or for client_window if whole_window is somehow
5496         IntPtr.Zero -- can this happen?) is enough.
5497
5498         - reworked SendWMDestroyMessages slightly, so we always dispose
5499         the child control hwnd's after sending the messages.
5500         
5501         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
5502         the two places it was used (one was even using hwnd.Handle and the
5503         other hwnd.client_window.  ugh), adding another call in
5504         SendWMDestroyMessages.  We need this new call because now the
5505         DestroyNotify events in the queue will be ignored for the child
5506         controls (as their hwnd's were disposed, and the window id's
5507         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
5508
5509         - this fixes bug #79326.
5510
5511 2006-09-13  Chris Toshok  <toshok@ximian.com>
5512
5513         * Control.cs: don't always set is_recreating to false at the end
5514         of RecreateHandle, since sometimes we're not done (and won't be
5515         until WndProc handles the WM_DESTROY message).  Also, set
5516         is_recreating to false in the WM_DESTROY handling code.  Part of
5517         the fix for bug #79326.
5518
5519 2006-09-13  Miguel de Icaza  <miguel@novell.com>
5520
5521         * X11DesktopColors.cs: Start the droppage of debugging messages.
5522
5523         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
5524
5525 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
5526
5527         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
5528
5529 2006-09-12  Chris Toshok  <toshok@ximian.com>
5530
5531         * DataGrid.cs (get_ListManager): if the list_manager is null, try
5532         to create it using SetDataSource.  Fixes bug #79151.
5533
5534 2006-09-11  Chris Toshok  <toshok@ximian.com>
5535
5536         * XEventQueue.cs: add a DispatchIdle property.
5537
5538         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
5539         either the queue is null, or the queue has DispatchIdle set to
5540         true.
5541         (DoEvents): set queue.DispatchIdle to false around the
5542         peek/translate/dispatch message loop in this method.  This keeps
5543         Application.Doevents from emitting idle events.  Part of the fix
5544         for #78823.
5545
5546 2006-09-11  Chris Toshok  <toshok@ximian.com>
5547
5548         * DataGrid.cs (set_DataSource): make this work for both the
5549         winforms/datagrid test and ReportBuilder.  It seems as though when
5550         we've created a ListManager (or maybe it's if we have a
5551         BindingContext?), when we set the DataSource it clears the
5552         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
5553         #79333.
5554
5555 2006-09-11  Chris Toshok  <toshok@ximian.com>
5556
5557         * XplatUIX11.cs: deal with queue being null, which happens in all
5558         the Clipboard functions.  Fixes one of the two problems mentioned
5559         in #78612.
5560
5561 2006-09-11  Chris Toshok  <toshok@ximian.com>
5562
5563         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
5564         button on various spots (including outside the menu) works closer
5565         to MS, and doesn't crash.  Fixes #79343.
5566
5567 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
5568
5569         * ListView.cs: Do not initialize item_sorter in init. To match MS,
5570         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
5571         and the internal comparer is set. When a new ListViewItemSorter is set,
5572         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
5573         was specified. No further processing is necessary if SortOrder is set
5574         to it's current value. If Sorting is modified to None, and View is
5575         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
5576         (either custom or our internal ItemComparer) to null, on 1.0 profile
5577         only set item_sorter to null if its our internal IComparer. If Sorting
5578         is modified to Ascending or Descending, then use our internal IComparer
5579         if none is set, and if the current IComparer is our internal one then:
5580         on 2.0 profile always replace it with one for new Sorting, and on 1.0
5581         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
5582         Enum.IsDefined to verify whether a valid View value is specified in
5583         its setter. Automatically sort listview items when listview is
5584         created. In Sort, do nothing if ListView is not yet created, or if
5585         no item_sorter is set (no Sorting was set, Sorting was explicitly set
5586         to None or ListViewItemSorter was set to null). Added Sort overload
5587         taking a bool to indicate whether the ListView should be redrawn when
5588         items are sorted (we use this in ListViewItemCollection to avoid double
5589         redraws). Modified our internal IComparer to take the sort order into
5590         account. In Add and AddRange methods of ListViewItemCollection, also
5591         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
5592         view), but use overload with noredraw option to avoid double redraw.
5593         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
5594         true when View is Tile, and do the same when attempting to set View to
5595         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
5596         for selected/checked indices, as it involves overhead when sorting is
5597         done while these collections are not used all that often. Instead
5598         we'll build the indices on demand. Modified IList implementation of
5599         CheckedIndexCollection to use public methods if object is int.
5600         Modified CheckedListViewItemCollection to hide checked items if
5601         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
5602         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
5603         IList implementation in SelectedIndexCollection to use public methods
5604         if object is int. Modified SelectedListViewItemCollection to hide
5605         selected items if listview is not yet created.
5606         * ListViewItem.cs: CheckedIndices list no longer needs to be
5607         maintained separately (see ListView changes). Also clone font, fixes
5608         test failure.
5609
5610 2006-09-11  Mike Kestner  <mkestner@novell.com>
5611
5612         * ComboBox.cs: if we are updating the contents of the currently
5613         selected index, refresh the control or the textbox selection.
5614         [Fixes #79066]
5615
5616 2006-09-11  Mike Kestner  <mkestner@novell.com>
5617
5618         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
5619         the 'specified' logic has been moved there.  This seems like a bug 
5620         in Control.cs, since our current SetBoundsCore completely ignores 
5621         the specified parameter.  Peter's commit seems to indicate that is 
5622         the way the MS control implementation works.  [Fixes #79325]
5623
5624 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
5625
5626         * XplatUI.cs: Set default_class_name to be composed
5627         of current domain id. This allows MWF to be loaded in multiple
5628         domains on Win32.
5629
5630 2006-09-09  Miguel de Icaza  <miguel@novell.com>
5631
5632         * X11Keyboard.cs: If we are unable to obtain the input method, do
5633         not call CreateXic to create the input context.   Should fix
5634         #78944/79276.
5635
5636 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
5637
5638         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
5639           Simplified gnome support by adding more pinvokes to get the
5640           icon for a file or mime type.
5641
5642 2006-09-08  Jackson Harper  <jackson@ximian.com>
5643
5644         * MenuAPI.cs: Deslect popup context menu items before closing the
5645         window, so that you don't see the previously selected item
5646         selected when you reopen the menu.
5647         * TextControl.cs: Update the cursor position even if we don't have
5648         focus.  This fixes typing in things like the ComboBox.  I'm not
5649         totally sure we should always set the visibility if we don't have
5650         focus, but couldn't find any corner cases where the cursor showed
5651         up when it shouldn't.
5652
5653 2006-09-08  Chris Toshok  <toshok@ximian.com>
5654
5655         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
5656         our arrays are length 256.  & 0xff before indexing.  Fixes the
5657         crash in bug #78077.
5658         
5659 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5660
5661         * ThemeWin32Classic.cs: 
5662         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
5663         is true. Handle that check box too.
5664
5665 2006-09-07  Chris Toshok  <toshok@ximian.com>
5666
5667         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
5668         79244.
5669
5670 2006-09-07  Chris Toshok  <toshok@ximian.com>
5671
5672         * Control.cs: in set_BackColor only do the work if
5673         background_color != value.
5674
5675         * XplatUIX11.cs: move the clearing of invalid areas (both client
5676         and nc) to the same block of code where we set (nc_)expose_pending
5677         to false.  That is, move it from PaintEventEnd to PaintEventStart,
5678         so things that cause invalidates from within OnPaint will trigger
5679         another call to OnPaint.  Fixes bug #79262.
5680
5681 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
5682
5683         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
5684         * FileDialog.cs: Fix typo
5685
5686 2006-09-07  Jackson Harper  <jackson@ximian.com>
5687
5688         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
5689         for tab pages if they have any.
5690
5691 2006-09-06  Mike Kestner  <mkestner@novell.com>
5692
5693         * Splitter.cs: use the "current" rect when finishing drag handle
5694         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
5695
5696 2006-09-06  Mike Kestner  <mkestner@novell.com>
5697
5698         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
5699         support offset splitters. [Fixes #79298]
5700
5701 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
5702
5703         * Mime.cs: Fixed a bug that could override the global mime type
5704           result.
5705
5706 2006-09-05  Jackson Harper  <jackson@ximian.com>
5707
5708         * TabControl.cs: Better calculation method for setting the slider
5709         pos. Prevents crashes on really wide tabs.
5710         - Draw Image on tab pages if an image list is used.
5711
5712 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5713
5714         * MonthCalendar.cs: When Font changes, the Size should be
5715         updated to fit the new font's space requirements.
5716
5717 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
5718
5719         * ListBox.cs: If the items are cleared with Items.Clear set
5720           top_index to 0.
5721
5722 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5723
5724         * MonthCalendar.cs: Handle arrow keys as input keys. Also
5725         fire DateChanged event instead of DateSelected event when
5726         the date was changed by keyboard interaction.
5727
5728 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5729
5730         * DateTimePicker.cs: Handle DateChanged for the associated
5731         month_calendar control, and set month_calendar.Font from 
5732         OnFontChanged method, as well as resize the height of the
5733         control when needed. Make PreferredHeight proportional.
5734
5735 2006-09-01  Chris Toshok  <toshok@ximian.com>
5736
5737         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
5738         properties.
5739
5740         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
5741
5742 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
5743
5744         * FileDialog.cs: Set ClientSize instead of window size, to allow space
5745           for decorations (Fixes #79219)
5746
5747 2006-09-01  Mike Kestner  <mkestner@novell.com>
5748
5749         * ComboBox.cs: first stab at sorting plus some selection handling
5750         fixes to bring us more in line with MS behavior.  Also switches back
5751         to index based selection.  Alternative patches for index-based 
5752         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
5753         and latency@gmx.de on bug 78848.  I assume they were similar to this
5754         code I've had simmering in my tree forever.
5755         [Fixes #78848]
5756
5757 2006-09-01  Chris Toshok  <toshok@ximian.com>
5758
5759         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
5760         when setting list position guard against ending up with a -1 index
5761         (the other part of the fix for #78812).  Should probably make sure
5762         we don't need the analogous fix in the ItemDeleted case.
5763
5764         * DataGrid.cs:
5765         - in SetDataSource, work around the fact that the way
5766         OnBindingContextChanged is invoked will cause us to re-enter this
5767         method.  I'll remove the hack once I investigate
5768         OnBindingContextChanged.
5769
5770         - fix the logic in set_DataSource and set_DataMember (basically
5771         what to do if the other of the two is null.)
5772         
5773         - in OnListManagerItemChanged, we need to take into account the
5774         edit row when deciding whether or not to call RecreateDataGridRows
5775         (part of the fix for #78812).
5776
5777 2006-09-01  Jackson Harper  <jackson@ximian.com>
5778
5779         * Splitter.cs: Don't do anything if there is no control to affect
5780         (prevents us from crashing in weird tet cases).
5781         * TreeView.cs: Bounding box for the mouse movement reverting
5782         focus/selection back to previously selected node.  This matches
5783         MS, and makes the tree a lot more useable.
5784         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
5785         use clipping so they are not drawn.  This fixes when the control
5786         is set to have a transparent background, or if it was over an
5787         image.
5788
5789 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
5790
5791         * MimeIcon.cs: Improved handling for reading default icons when
5792           using gnome (2.16 made it necessary). Check and read svg icons
5793           first, then 48x48 and then 32x32 icons.
5794
5795 2006-08-31  Chris Toshok  <toshok@ximian.com>
5796
5797         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
5798         visible.
5799
5800         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
5801         ProcessKeyPreview.  Fixes part of #77806.
5802
5803         * DataGrid.cs: big patch.
5804
5805         - revert the queueing up of DataSource/DataMember if inside
5806         BeginInit/EndInit calls.  That's not the way the datagrid achieves
5807         its delayed databinding.  Instead, call SetDataSource in
5808         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
5809         #78811.
5810
5811         - Also, it wasn't mentioned in #78811, but the test case exhibits
5812         behavior that was lacking in our datagrid implementation - Columns
5813         that have mapping names that don't exist in the datasource's
5814         properties aren't shown.  Yuck.  To fix this I added the bound
5815         field to the column style, and basically any calculation to figure
5816         out anything about columns uses a loop to find the bound columns.
5817         still need to investigate if I can cache an array of the bound
5818         columns or if the indices must be the same.
5819
5820         - When setting CurrentCell, we no longer abort if the cell being
5821         edited was in the add row.  This fixes the other part of #77806.
5822
5823         - The new code also fixes #78807.
5824         
5825         * ThemeWin32Classic.cs: perpetrate the same disgusting
5826         column.bound field hack, and only render bound fields.
5827
5828 2006-08-31  Chris Toshok  <toshok@ximian.com>
5829
5830         * DataGridColumnStyle.cs: add bound field.  this field is true if
5831         the datasource has a property corresponding to the mapping name.
5832
5833         * DataGridTableStyle.cs: set the bound field on the column styles
5834         depending on whether or not we have a column for that property.
5835
5836 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
5837
5838         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
5839           splitter control (fixes #79228)
5840
5841 2006-08-31  Chris Toshok  <toshok@ximian.com>
5842
5843         * DataGridColumnStyle.cs: we need to delay the assignment of
5844         property descriptor until the last possible moment due to the lazy
5845         databinding stuff in the datagrid.  Also, fix the exceptions
5846         thrown by CheckValidDataSource to match MS.
5847
5848 2006-08-31  Jackson Harper  <jackson@ximian.com>
5849
5850         * Form.cs: When activated select the active control, if there is
5851         no active control, we select the first control.
5852         * XplatUIX11.cs: If there is no focus control when we get a
5853         FocusIn event, find the toplevel form and activate it.  This
5854         occurs when you popup a window, it becomes the focus window, then
5855         you close that window, giving focus back to the main window.
5856
5857 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5858
5859         * MonthCalendar.cs: 
5860         * ThemeWin32Classic.cs: Cache Font in bold style, as well
5861         as StringFormat with Center alignments in MonthCalendar,
5862         instead of creating new ones when drawing the control. 
5863         Also, draw the month name in bold style.
5864
5865 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
5866
5867         * Control.cs:
5868           - PerformLayout(): It would seem MS performs the fill even if the 
5869             control is not visible (part of #79218 fix)
5870           - ResetBackColor(): Use the setter to reset the color, to allow
5871             overriders to catch the change.
5872         * Form.cs:
5873           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
5874           - CreateHandle(): dito (part of $79218 fix)
5875           - Don't set an icon if we have a dialog
5876         * ScrollableControl.cs:
5877           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
5878           - ScrollIntoView(): No need to scroll if control is already visible
5879             (resolves fixme and fixes #79218)
5880
5881 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5882
5883         * MonthCalendar.cs: Change proportions in SingleMonthSize
5884         to match the aspect of the original control.
5885
5886 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
5887
5888         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
5889           get updated when they get maximized.
5890
5891 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
5892
5893         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
5894
5895 2006-08-29  Chris Toshok  <toshok@ximian.com>
5896
5897         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
5898
5899 2006-08-29  Jackson Harper  <jackson@ximian.com>
5900
5901         * TreeView.cs: Need to track selected node and highlighted node,
5902         they aren't always the same thing, when the mouse is down on a
5903         node it is hilighted, but not selected yet.
5904         - Do the HideSelection stuff right
5905         - Need to focus on rbutton mouse down. And redraw selection when
5906         right click is mouse upped.
5907
5908 2006-08-29  Mike Kestner  <mkestner@novell.com>
5909
5910         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
5911         when SubItems.Count < Columns.Count.  [Fixes #79167]
5912
5913 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
5914
5915         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
5916
5917 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
5918
5919         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
5920           from X. Only send based on ConfigureNotify if we don't have the
5921           correct location in hwnd (if the window manager moved us)
5922
5923 2006-08-28  Mike Kestner  <mkestner@novell.com>
5924
5925         * ListView.cs: remove a TODO. 
5926         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
5927         [Fixes ListView part of #79166]
5928
5929 2006-08-28  Mike Kestner  <mkestner@novell.com>
5930
5931         * ListView.cs: move wheel handler to parent since it is focused
5932         instead of the item_control now.  [Fixes #79177]
5933
5934 2006-08-28  Mike Kestner  <mkestner@novell.com>
5935
5936         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
5937         when the control is focused. [Fixes #79171]
5938
5939 2006-08-28  Mike Kestner  <mkestner@novell.com>
5940
5941         * ListView.cs: size the item and header controls for empty and
5942         unscrollable views.
5943         * ThemeWin32Classic.cs: draw disabled backgrounds.
5944         [Fixes #79187]
5945
5946 2006-08-28  Chris Toshok  <toshok@ximian.com>
5947
5948         * Form.cs: remove unused "active_form" static field.
5949
5950         * Hwnd.cs: lock around accesses to static windows collection.
5951
5952         * Application.cs: lock threads in Exit ().
5953
5954 2006-08-28  Chris Toshok  <toshok@ximian.com>
5955
5956         * NativeWindow.cs: lock around accesses to window_collection.
5957         
5958 2006-08-28  Chris Toshok  <toshok@ximian.com>
5959
5960         * Control.cs: err, fix this the right way, by locking on controls
5961         when using it.  not by making it synchronized.
5962
5963 2006-08-28  Chris Toshok  <toshok@ximian.com>
5964
5965         * Control.cs: make the static "controls" field synchronized, as it
5966         gets updated from multiple threads.
5967
5968 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5969
5970         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
5971           Prevent other threads from exiting when calling thread sets quit state.
5972         * XEventQueue.cs: Added PostQuitState property
5973
5974 2006-08-27  Chris Toshok  <toshok@ximian.com>
5975
5976         * AsyncMethodData.cs: add a slot for the window handle.
5977
5978         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
5979         window (the destination control's window, not the foster window).
5980
5981         * Control.cs (BeginInvokeInternal): store the window's handle in
5982         the AsyncMethodData.
5983         
5984
5985 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5986
5987         * XplatUIX11.cs:
5988           - PostQuitMessage: Removed resetting S.D display handle, we might have
5989             another loop started after calling PostQuitMessage (Fixes #79119)
5990           - Created destructor to reset S.D handle
5991
5992 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
5993
5994         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
5995
5996 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5997
5998         * TextControl.cs (Insert): Update the caret position even if we don't
5999           have a handle yet, just don't call the driver in that case.
6000         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
6001           to the end of the new selection text (Fixes #79184)
6002
6003 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6004
6005         * Form.cs (Activate): Only activate if the handle is created)
6006         * Control.c:
6007           - Mark window as invisible when it's disposed
6008           - Check if window handle is created when setting window visible, 
6009             instead of relying just on the is_created variable
6010           - Check if object is disposed when creating the control (Fixes #79155)
6011
6012 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6013
6014         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
6015           when allowing layout again. Otherwise we re-generate the anchoring 
6016           distance to the border again and actually alter what the user wanted
6017           This is ugly, it'd be better if we used DisplayRectangle instead of
6018           ClientRectangle for Control.UpdateDistances, but that causes us to
6019           have other problems (initial anchoring positons would be wrong)
6020           (Fixes #78835)
6021
6022 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6023
6024         * Control.cs:
6025           - The size and location setters shouldn't go directly to 
6026             SetBoundsCore, but to SetBounds, which triggers layout on the
6027             parent, then calls SetBoundsCore. (Related to fix for #78835)
6028           - SetBounds: Moved actual location update code into this function
6029             from SetBoundsCore, to match MS. Added call to PerformLayout if
6030             we have a parent (to trigger resizing of anchored parents if the 
6031             child size has changed (see testcase for #78835) 
6032         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
6033           new control code
6034         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
6035
6036 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6037
6038         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
6039           System.Drawing when a toplevel window gets closed; there might
6040           be other toplevel windows belonging to the same app (Fixes #78052)
6041
6042 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
6043
6044         * FileDialog.cs: After reading FileDialog settings from mwf_config
6045           use Desktop prefix only if a real folder doesn't exist anymore.
6046         * FontDialog.cs: Added char sets.
6047           It is now possible to select the font, size or style with the
6048           textboxes.
6049
6050 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
6051
6052         * PrintPreviewDialog.cs: Use assembly name constants.
6053
6054 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6055
6056         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
6057           scrollbar from whacking it's buttons)
6058
6059 2006-08-24  Chris Toshok  <toshok@ximian.com>
6060
6061         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
6062         in this patch (aggregating setting Left/Top/Width/Height to
6063         setting Bounds on the scrollbars), but the crux of the fix is in
6064         Recalculate, where we scroll by the remaining scroll_position if
6065         we're hiding a scrollbar.  The 2*$5 reward in the comment is
6066         serious.
6067
6068 2006-08-24  Jackson Harper  <jackson@ximian.com>
6069
6070         * MdiClient.cs:
6071         * MdiWindowManager.cs: If the form is made a non-mdi window we
6072         need to remove the form closed event so that closing forms works
6073         correctly.
6074
6075 2006-08-24  Jackson Harper  <jackson@ximian.com>
6076
6077         * Control.cs: Make IsRecreating internal so that the driver can
6078         check it
6079         - Temporarily remove the Hide when controls are removed, its
6080         making a whole bunch of things not work because visibility isn't
6081         getting reset elsewhere correctly
6082         * Form.cs: Need to do a full handle recreation when the mdi parent
6083         is set.
6084         * XplatUIX11.cs: If we are recreating handles don't dispose the
6085         HWNDs.  What was happening is the handles were being recreated in
6086         SendWMDestroyMessages, but then flow continued on in that method
6087         and destroyed the new handles.
6088
6089 2006-08-23  Jackson Harper  <jackson@ximian.com>
6090
6091         * Form.cs: MdiClient is always at the back of the bus
6092         * Control.cs: When the order of items in the collection is changed
6093         we need to reset the all_controls array
6094         - do the same sorta setup thats done when adding a control when a
6095         control is set on the collection.
6096
6097 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
6098
6099         * TextBoxBase.cs (get_Text): Return an empty array if our document
6100           is empty (fixes #79052)
6101
6102 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6103
6104         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
6105           on WM_SYSCHAR messages (fixes #79053)
6106
6107 2006-08-23  Chris Toshok  <toshok@ximian.com>
6108
6109         * DataGrid.cs: fix flickering when scrolling vertically.
6110
6111 2006-08-23  Chris Toshok  <toshok@ximian.com>
6112
6113         * DataGrid.cs (EndEdit): only invalidate the row header when we
6114         need to.
6115
6116 2006-08-23  Chris Toshok  <toshok@ximian.com>
6117
6118         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
6119         methods.  fixes the flicker when scrolling around.
6120
6121 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6122
6123         * FileDialog.cs: Making sure the control is created before we get a 
6124           chance to use it with BeginInvoke (Fixes #79096)
6125
6126 2006-08-23  Chris Toshok  <toshok@ximian.com>
6127
6128         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
6129         width to use when painting the rows.
6130
6131 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
6132
6133         * TextBoxBase.cs:
6134           - Throw ArgumentException if a negative value is passed to SelectionLength
6135           - Update the selection end if start is moved. end needs to be always
6136             after start. (Fixes #79095)
6137           - Track selection length; MS keeps the selection length even if start
6138             is changed; reset on all other operations affection selection
6139
6140 2006-08-22  Jackson Harper  <jackson@ximian.com>
6141
6142         * TreeView.cs: Make sure both scrollbars get displayed and sized
6143         correctly when the other bar is visible.
6144         - Use the original clip rectangle for checking if the area between
6145         the two scrollbars is visible, not the viewport adjusted clipping
6146         rectangle.
6147
6148 2006-08-22  Jackson Harper  <jackson@ximian.com>
6149
6150         * Binding.cs: We don't use IsBinding because it requires the
6151         control to be created, which really shouldn't be necessary just to
6152         set a property on the control.
6153
6154 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6155
6156         * ComboBox.cs: Some CB.ObjectCollection methods must throw
6157         ArgumentNullReferenceException when the argument is null.
6158
6159 2006-08-21  Jackson Harper  <jackson@ximian.com>
6160
6161         * Timer.cs: Track the thread that the timer is started in (NOT
6162         CREATED), this way messages for it will only be triggered on its
6163         queue.
6164         * XEventQueue.cs: Track the timers here, this makes timers per
6165         thread, like MS.
6166         * XplatUIX11.cs: The timers are moved to the XEventQueue.
6167
6168 2006-08-19  Chris Toshok  <toshok@ximian.com>
6169
6170         * XplatUIX11.cs: after further communication with pdb, we get the
6171         best of both worlds.  SetZOrder working for un-Mapped windows, and
6172         no X errors for un-mapped windows.
6173
6174 2006-08-19  Chris Toshok  <toshok@ximian.com>
6175
6176         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
6177         as it was causing pdn toolbars to not have the correct stacking.
6178
6179 2006-08-18  Mike Kestner  <mkestner@novell.com> 
6180
6181         * ListView.cs : guard against negative ClientArea.Width in scrollbar
6182         calculation.  Not sure why control should ever be setting a negative
6183         width though.  Fixes #78931.
6184
6185 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6186
6187         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
6188         null items in ObjectCollection class.
6189         * ListBox.cs.: Likewise.
6190
6191 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
6192
6193         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
6194           as the base method in ThemeWin32Classic should work fine.
6195           Fixed bug #78607.
6196
6197 2006-08-18  Jackson Harper  <jackson@ximian.com>
6198
6199         * Binding.cs: When validating if the value entered doesn't convert
6200         properly reset to the old value.
6201         * RadioButton.cs: Don't fire click when we get focus.
6202
6203 2006-08-18  Jackson Harper  <jackson@ximian.com>
6204
6205         * FileDialog.cs: Paint the selection on the directory combobox the
6206         same way as on MS. 
6207
6208 2006-08-17  Jackson Harper  <jackson@ximian.com>
6209
6210         * ErrorProvider.cs: Don't allow the error control to be selected.
6211         * Control.cs: Don't send the SetFocus messages, the control
6212         activation will do this, and if we do it blindly here validation
6213         does not work.
6214
6215 2006-08-17  Jackson Harper  <jackson@ximian.com>
6216
6217         * Control.cs:
6218         * ContainerControl.cs: Make validation events fire in the correct
6219         order.  TODO: For some reason the first validation event is not
6220         getting fired.
6221
6222 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6223
6224         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
6225
6226 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6227
6228         * ComboBox.cs : implement scroll wheel support for popped-down
6229         state. Fixes #78945. 
6230
6231 2006-08-17  Jackson Harper  <jackson@ximian.com>
6232
6233         * TreeView.cs: Specify treeview actions (old patch that didn't get
6234         committed for some reason).
6235         - Don't let the mouse wheel scroll us too far.  Just want to make
6236         the bottom node visible, not scroll it all the ways to the top.
6237
6238 2006-08-17  Jackson Harper  <jackson@ximian.com>
6239
6240         * XplatUIX11.cs: Mouse wheel events go to the focused window.
6241
6242 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6243
6244         * ComboBox.cs : don't do mouseover selection in simple mode.
6245
6246 2006-08-16  Jackson Harper  <jackson@ximian.com>
6247
6248         * Form.cs: Fire the closing events for all the mdi child windows
6249         when a window is closed.  If the cancel args are set to true, the
6250         main window still gets the event fired, but it doesn't not close.
6251         * MdiWindowManager.cs: Do this closing cleanup in a Closed
6252         handler, instead of when the button is clicked, so cancelling the
6253         close works correctly.
6254         * ComboBox.cs: Send the mouse down to the scrollbar.
6255
6256 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6257
6258         * ListBox.cs: When passing 'null' to SelectedItem,
6259         set SelectedIndex to -1, to unselect items. This is the
6260         observed behaviour in .Net.
6261
6262 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
6263
6264         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
6265           MS flags saying there won't be any. (fixes #78800)
6266         * Control.cs (HandleClick): Made virtual
6267
6268 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6269
6270         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
6271           cultures. Fixed bug #78399.
6272
6273 2006-08-16  Jackson Harper  <jackson@ximian.com>
6274
6275         * Form.cs: Use the MdiClients MdiChildren property to access
6276         MdiChildren instead of creating the array from the child controls.
6277         * MdiClient.cs: Maintain a separate array of the mdi children, so
6278         that insertion order is maintained when the Z-order is changed.
6279
6280 2006-08-16  Mike Kestner  <mkestner@novell.com> 
6281
6282         * ListView.cs : add an ItemComparer and default to it for sorting.
6283         Fixes #79076, but sorting needs a complete overhaul to be compat with
6284         MS.
6285
6286 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6287
6288         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
6289
6290 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6291
6292         * Hwnd.cs (Mapped): Properly traverse the tree
6293
6294 2006-08-15  Chris Toshok  <toshok@ximian.com>
6295
6296         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
6297         pass manager.Current.GetType() to ParseData.  It has to be the
6298         property type.  So, hold off doing the ParseData until we're in
6299         SetPropertyValue where we know the type.  This fixes the crash in
6300         #78821 but the textbox is still empty.
6301
6302 2006-08-15  Chris Toshok  <toshok@ximian.com>
6303
6304         * DataGrid.cs:
6305         - when we're scrolling, only call Edit() again if the
6306         current cell is still unobscured. Fixes bug #78927.
6307         - when handling mousedown on a cell, ensure the cell is visible
6308         before calling Edit.
6309         - remove the properties from DataGridRow, and remove the
6310         DataGridParentRow class altogether.
6311         
6312
6313 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6314
6315         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
6316           fire OnTextChanged by ourselves. There's no point calling base,
6317           we don't set the base value anywhere else. Fixes #78773.
6318
6319 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6320
6321         * ListBox.cs: Call CollectionChanged when modifying
6322         an item from Items indexer, to update the actual items
6323         in the list box.
6324
6325 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6326
6327         * PrintDialog.cs: Small fixes for focus and a pair of checks,
6328         to match .Net behaviour.
6329
6330 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6331
6332         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
6333
6334 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6335
6336         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
6337
6338 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6339
6340         * MessageBox.cs: Prevent potential NRE exception.
6341         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
6342
6343 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6344
6345         * MessageBox.cs: Calculate the owner of a messagebox, also make
6346           it topmost. Fixes #78753
6347
6348 2006-08-14  Chris Toshok  <toshok@ximian.com>
6349
6350         * XplatUIX11.cs: A couple of fixes so that metacity will let us
6351         programmatically move windows.  first, set the PPosition hint as
6352         well as the USPosition hint.  Second include some code from pdb
6353         that sets the window type to NORMAL when we set the transient for
6354         hint.  This is because, in the absence of a window type, metacity
6355         thinks any window with TransientFor set is a dialog, and refuses
6356         to let us move it programmatically.  fascists.
6357
6358 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6359
6360         * XplatUIX11.cs: When setting normal hints, take into consideration
6361           an different hints previously set so we don't delete them (fixes #78866)
6362
6363 2006-08-12  Chris Toshok  <toshok@ximian.com>
6364
6365         * ToolBarButton.cs: make Layout return a boolean, if something to
6366         do with the button's layout changed.
6367
6368         * ToolBar.cs:
6369         - add another parameter to Redraw, @force, which all existing
6370           calls set to true.
6371         - make the Layout function return a boolean which is true if the
6372           layout has actually changed.  Redraw now uses this (and @force)
6373           to determine when to invalidate.  At present the only place
6374           where @force can be false is the call from OnResize, when
6375           background_image == null.  So, resizing a toolbar when the
6376           layout doesn't change results in no drawing.
6377
6378 2006-08-12  Chris Toshok  <toshok@ximian.com>
6379
6380         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
6381         the VScrollBar and HScrollbar reversed.  oops.
6382
6383         * DataGrid.cs: fix the logic that assigns sizes to the implicit
6384         scrollbars.  we were assigning them twice (once in
6385         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
6386         therefore causing two scrollbar resizes (and redraws?) to happen
6387         per grid resize.
6388
6389 2006-08-12  Chris Toshok  <toshok@ximian.com>
6390
6391         * ToolBarButton.cs: redraw the entire button if the theme tells us
6392         to.
6393
6394         * Theme.cs: add ToolBarInvalidateEntireButton.
6395
6396         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
6397         buttons, just the border.
6398
6399         * ThemeNice.cs: redraw the entire toolbar button since we need to
6400         draw the highlight image.
6401
6402         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
6403         we need to redraw the entire button (not just the border).
6404
6405 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6406
6407         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
6408           for vertical bars. Fixes the mismatches shown by #78513
6409
6410 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
6411
6412         * FileDialog.cs: If a saved/remembered path doesn't exist
6413           anymore, fall back to "Desktop".
6414
6415 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6416
6417         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
6418           parent. It's apparently legal to not have one
6419         * XplatUIX11.cs:
6420           - SetZOrder: Don't try to set Z-Order on an unmapped window
6421           - CreateWindow: 0,0 are legal coordinates for a window. don't move
6422             it unless the coordinates are negative
6423
6424 2006-08-10  Mike Kestner  <mkestner@novell.com>
6425
6426         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
6427         when setting to null per msdn docs.  Fixes #78854.
6428
6429 2006-08-10  Chris Toshok  <toshok@ximian.com>
6430
6431         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
6432         flickering by setting a clip rectangle on the Graphics when we
6433         need to redraw just a particular menuitem.  Also, rename "OnClick"
6434         to "OnMouseDown" to reflect what it actually is.
6435         
6436         * Form.cs: track the OnMouseDown change.
6437
6438 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
6439
6440         * CommonDialog.cs: Properly inherit the CreateParams from the form
6441           and only change what we need. Fixes #78865
6442
6443 2006-08-10  Chris Toshok  <toshok@ximian.com>
6444
6445         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
6446         flickering in flat mode (and most of the flickering in general) by
6447         only invalidating the button border (and not the entire rectangle)
6448         when the state changes.  A couple of cases still flicker:
6449         ToggleButtons, and the dropdown arrow case when the user mouse
6450         ups.
6451
6452 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
6453
6454         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
6455           for german keyboards. Numlock state shouldn't affect the behaviour
6456           of the Del key. Fixes bug #78291.
6457
6458 2006-08-10  Chris Toshok  <toshok@ximian.com>
6459
6460         * ListControl.cs: remove the items.Clear line from BindDataItems,
6461         as this is the first thing done by both subclasses in their
6462         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
6463         passed -1, refresh the list.  This gets databinding working when
6464         the datasource is set on the list before the datasource is
6465         populated (as in wf-apps/ReportBuilder.)
6466
6467         * ComboBox.cs: remove the argument to BindDataItems.  This call
6468         should really go away, and be initiated by the ListControl code.
6469
6470         * ListBox.cs: same.
6471
6472 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6473
6474         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
6475           if no data is in the document when the control is displayed
6476
6477 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
6478
6479         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
6480           yes (fixes #78806)
6481         * TextControl.cs: 
6482           - PositionCaret: Allow positioning of caret but don't call methods 
6483             requiring a handle if the window isn't created yet
6484           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
6485           - owner_HandleCreated: Don't position the caret, just update it's 
6486             location. User might have already set a different position
6487
6488 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6489
6490         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
6491           windows. Screws up the returned coordinates for child windows. 
6492           Fixes #78825. I'm hoping this doesn't break something, since the
6493           code was explicitly put in 8 months ago, but no bug was attached.
6494           Menus still seem to work properly.
6495
6496 2006-08-08  Chris Toshok  <toshok@ximian.com>
6497
6498         * DataGrid.cs: make BeginInit/EndInit actually do what they're
6499         supposed to do - delay data binding until the EndInit call.  Also,
6500         make the table style collection's CollectionChangeAction.Refresh
6501         work properly.
6502
6503         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
6504         (with action = Refresh) when a consituent table's MappingName is
6505         changed.
6506
6507 2006-08-08  Chris Toshok  <toshok@ximian.com>
6508
6509         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
6510         Invalidate, since changing the text can change the size of the all
6511         toolbar buttons.
6512
6513 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6514
6515         * Form.cs (AddOwnedForm): Still need to add the form to our listif
6516           we don't have it yet
6517
6518 2006-08-08  Chris Toshok  <toshok@ximian.com>
6519
6520         * PrintControllerWithStatusDialog.cs: don't .Close() the status
6521         dialog, as this causes X errors later on, since we actually
6522         destroy the window.  Instead, .Hide() it.
6523
6524 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6525
6526         * ComboBox.cs: Added focus reflection for popup window
6527         * XplatUIX11.cs: 
6528           - Removed transient setting for non-app windows for now, not sure it
6529             was needed
6530           - Fixed logic checking if we have captions when deciding 
6531             override_redirect, WS_CAPTION is two bits and a 0 check was not
6532             sufficient
6533           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
6534             complicated
6535         * Form.cs: 
6536           - AddOwnedForm: Don't just add the form to the list, call the property
6537             to ensure the driver is informed about the ownership as well
6538           - CreateHandle: Set the TopMost status in the driver if we have an owner
6539         * XplatUI.cs: Fixed debug statement
6540
6541 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
6542         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
6543           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
6544           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
6545           TrackBarRenderer.cs: Make constructor private.
6546         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
6547         * ProfessionalColorTable.cs: Make properties virtual.
6548
6549 2006-08-06  Duncan Mak  <duncan@novell.com>
6550
6551         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
6552         is not changing.
6553
6554 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6555         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
6556           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
6557           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
6558           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
6559           Initial import of new 2.0 classes.
6560
6561 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6562         * Application.cs: Add 2.0 VisualStyles properties.
6563
6564 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6565         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
6566           XplatUIX11.cs: Create property to allow access to existing private
6567           variable "themes_enabled"
6568
6569 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6570
6571         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
6572         file size, as otherwise our class libraries fail using windows. Fixes
6573         bug #78759.
6574
6575 2006-08-04  Jackson Harper  <jackson@ximian.com>
6576
6577         * Form.cs:
6578         * XplatUIX11.cs: Move the toolwindow window manager creation into
6579         the X11 driver, this way on win32 we can let windows create/handle
6580         the toolwindows.
6581
6582 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6583
6584         * PrintDialog.cs: Remove some redundant checks, add some others,
6585         clean some code, and move the focus to the text boxes when the
6586         values are incorrect.
6587
6588 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
6589
6590         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
6591
6592 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
6593
6594         * NumericUpDown.cs: Setting the Minimum and Maximum is now
6595           handled correctly. Fixes bug #79001.
6596
6597 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6598
6599         * PrintDialog.cs: The "Copies" numeric up down must have
6600         set the Minimum property to 1; only if the value is bigger
6601         than 1, activate "Collate" check box. This is the behaviour of .Net.
6602         Also modify the Document elements only if it is not null.
6603
6604 2006-08-03  Jackson Harper  <jackson@ximian.com>
6605
6606         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
6607         length. (We have a larger array then actual node count).
6608                 
6609 2006-08-03  Jackson Harper  <jackson@ximian.com>
6610
6611         * ComboBox.cs: Don't show selection by default.
6612         - The SelectAll isn't needed here, since the focus code should do
6613         that
6614         - DDL style lists to manual selection drawing, so when they
6615         get/lose focus they have to invalidate.
6616
6617 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
6618
6619         * TextBoxBase.cs: Don't always show all selections by default.
6620
6621 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
6622         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
6623           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
6624           Fixed various typos.
6625
6626 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
6627
6628         * Control.cs: Removing the controls in a ControlCollection with
6629           Clear now hides the controls as expected. Fixes bug #78804. 
6630
6631 2006-08-03  Jackson Harper  <jackson@ximian.com>
6632
6633         * Control.cs: Revert previous focus patch, it breaks reflector.
6634
6635 2006-08-03  Jackson Harper  <jackson@ximian.com>
6636
6637         * ComboBox.cs: Cleanup selection and focus with the combobox.
6638         This also eliminates some duplicated keyboard code, since now
6639         everything is handled by the main class.
6640         - Make list selection work on mouse up instead of down, to match
6641         MS.
6642
6643 2006-08-02  Jackson Harper  <jackson@ximian.com>
6644
6645         * Control.cs: Setting focus needs to go through the whole
6646         selection mechanism.
6647
6648 2006-08-02  Chris Toshok  <toshok@ximian.com>
6649
6650         * PrintPreviewDialog.cs: change MinimumSize to use
6651         base.MinimumSize so it works.
6652
6653 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
6654
6655         * TextControl.cs:
6656           - UpdateCaret: Added sanity check in case caret isn't defined yet
6657           - Line.Delete: Now updating selection and caret markers if we're
6658             transfering a node (Properly fixes #78323)
6659           - SetSelectionEnd: Added sanity check
6660         * TextBoxBase.cs: Removed broken attempt to fix #78323
6661
6662 2006-08-01  Chris Toshok  <toshok@ximian.com>
6663
6664         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
6665         Close() call is handled in Form, not here.
6666
6667 2006-08-01  Chris Toshok  <toshok@ximian.com>
6668
6669         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
6670         layout/rendering.
6671
6672         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
6673         for sizes < 100% zoom.  The code now aggressively attempts to keep
6674         from calling document.Print (), and tries not to use the scaling
6675         g.DrawImage whenever possible (it still does if you scale to >
6676         100%, since usually that involves huge images).
6677
6678         * PrintPreviewControl.cs: hook up the close button.
6679
6680 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
6681         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
6682           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
6683           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
6684           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
6685           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
6686           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
6687           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
6688           Removed [Serializable] for 2.0 Event Handlers.
6689
6690 2006-07-31  Jackson Harper  <jackson@ximian.com>
6691
6692         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
6693         * TextControl.cs: Uncomment out the body of this method.
6694
6695 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
6696
6697         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
6698           standard cursors.
6699
6700 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6701
6702         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
6703           that embed TextBox and need selections visible even if textbox is not
6704           focused to enforce that behaviour.
6705         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
6706           selection drawing
6707
6708 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6709
6710         * TextControl.cs:
6711           - Added new SetSelectionStart/SetSelectionEnd overloads
6712           - Fixed viewport width assignment to be accurate
6713           - Adjusted alignment line shift calculations to allow cursor on right
6714             aligned lines to be always visible at the right border (like MS)
6715         * TextBoxBase.cs:
6716           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
6717           - TextBoxBase_SizeChanged: recalculating canvas on size changes
6718           - CalculateScrollBars: Use ViewPort size instead of window size, to
6719             properly consider space occupied by the border and scrollbars 
6720             (Fixes #78661)
6721           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
6722             calculations; no longer leaves artifacts
6723           - CaretMoved: Adjusted window scrolling to match MS and fixed several
6724             calculation bugs (Still missing right/center align calculations)
6725
6726 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
6727
6728         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
6729           use of both scroll rect and clip rect, as they do the same.
6730
6731 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6732
6733         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
6734           in the event handler (fixes #78912)
6735
6736 2006-07-31  Chris Toshok  <toshok@ximian.com>
6737
6738         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
6739         grid.ListManager.Count, since grid.ListManager might be null.
6740         This of course begs the question "why are we drawing rows for a
6741         grid with no list manager (and therefor no rows)?"  Fixes the
6742         crash in bug #78929.
6743
6744 2006-07-31  Chris Toshok  <toshok@ximian.com>
6745
6746         * RelatedPropertyManager.cs: Don't always chain up to the parent
6747         ctor.  instead, call SetDataSource if the parent's position is !=
6748         -1.  Fixes the crash in #78822.
6749
6750 2006-07-31  Chris Toshok  <toshok@ximian.com>
6751
6752         * DataGrid.cs (get_ListManager): use field instead of property
6753         accessors for datasource and datamember.
6754         (RowsCount): make internal again.
6755         (OnMouseDown): end edits before resizing columns/rows.
6756         (OnMouseUp): restart edits after resizing columns/rows.
6757
6758 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
6759
6760         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
6761           This fixes the situation where the last set cursor is displayed
6762           whenever the mouse is over scrollbars.
6763
6764 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6765
6766         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
6767         Document properties, as well as initial values.
6768
6769 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
6770
6771         * XplatUIWin32.cs (SetBorderStyle): Setting both border
6772           and ClientEdge results in a 3-pixel border, which is
6773           wrong.
6774
6775 2006-07-28  Jackson Harper  <jackson@ximian.com>
6776
6777         * TreeNodeCollection.cs: Fix the clear method.
6778         - Fix the Shrink also
6779
6780 2006-07-27  Jackson Harper  <jackson@ximian.com>
6781
6782         * TreeView.cs: Make sure the visible order is computed when we
6783         attempt to size the scrollbars (for trees that mess with the
6784         scrolling when they shouldn't.
6785         - Make sure to give the scrollbars valid values.
6786
6787 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6788
6789         * XplatUIX11.cs: Move motion compression code to where it
6790           has less performance impact
6791
6792 2006-07-26  Jackson Harper  <jackson@ximian.com>
6793
6794         * UpDownBase.cs: When the control is selected make the child
6795         controls non selectable, so that a click on them won't do a
6796         focus/unfocus cycle.
6797         - Don't give focus to the text box when the spinner is selected.
6798         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
6799
6800 2006-07-26  Chris Toshok  <toshok@ximian.com>
6801
6802         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
6803         satisfied with this solution.  If the bitmaps are small, we should
6804         just cache them in the PrintPreviewDialog and draw them here.
6805         Also, the layout is broken for the 2-up and 3-up cases.
6806
6807         * Theme.cs: add PrintPReviewControlPaint.
6808
6809         * PrintPreviewDialog.cs: first pass implementation.
6810
6811         * PrintPreviewControl.cs: first pass implementation.  No
6812         scrollbars yet.
6813
6814         * PrintDialog.cs: only validate fields if that particular portion
6815         of the UI is enabled.  Also, set the document's controller to a
6816         PrintControllerWithStatusDialog wrapping the document's print
6817         controller.
6818
6819         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
6820         bring up a SaveFileDialog (i hope we don't want to match the
6821         behavior of the crappy windows file entry) and set the
6822         PrinterSettings.PrintFileName accordingly.
6823
6824 2006-07-26  Jackson Harper  <jackson@ximian.com>
6825
6826         * ContainerControl.cs: Add a field that disables auto selecting
6827         the next control in a container when the container is activated.
6828         * UpDownBase.cs: Don't select the text box when the up down is
6829         selected.
6830
6831 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6832
6833         * XEventQueue.cs: Added methods for peeking (used for compression
6834           of successive events)
6835         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
6836           mouse move events (fixes #78732)
6837
6838 2006-07-25  Jackson Harper  <jackson@ximian.com>
6839
6840         * UpDownBase.cs: Use an internal class for the textbox so that we
6841         can control focus.  the updown control should always have focus,
6842         if either the text area or the buttons are clicked.
6843         - Send the key messages to the textbox, since it never actually
6844         has focus
6845         - Activate and decativate the textbox caret.
6846
6847 2006-07-24  Jackson Harper  <jackson@ximian.com>
6848
6849         * Control.cs: Use the directed select when selecting a control,
6850         this way the container controls override will get called and the
6851         whole ActiveControl chain will get triggered.  TODO: probably need
6852         to make sure this gets done everywhere instead of the old
6853         Select(Control).
6854         * ContainerControl.cs: Implement the directed Select method to
6855         find and activate the correct child control.    
6856         
6857 2006-07-22  Mike Kestner  <mkestner@novell.com>
6858
6859         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
6860         menu handling code so that clicks without a grab work too.
6861         [Fixes #78914]
6862
6863 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
6864
6865         * FileDialog.cs: Enable the BackButton when dirstack has one element.
6866           Added some small optimizations.
6867
6868 2006-07-21  Matt Hargett  <matt@use.net>
6869
6870         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
6871
6872 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
6873
6874         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
6875           tests pass and match MS in some strange border cases.
6876
6877 2006-07-21  Chris Toshok  <toshok@ximian.com>
6878
6879         * ThemeWin32Classic.cs: handle drawing of the relation links and
6880         parent row buttons.
6881
6882         * Theme.cs: change args to DataGridPaintParentRow.
6883
6884         * DataGrid.cs: Don't use controls for the relation links and
6885         parent buttons, so we have to handle all their interactions in
6886         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
6887         when we're navigating through child tables, so we can reinstate
6888         selection, expanded state, current cell, etc.
6889
6890 2006-07-20  Chris Toshok  <toshok@ximian.com>
6891
6892         * ToolBar.cs: When we redraw a button, for whatever reason,
6893         there's no reason to redraw the entire toolbar.  Also, don't call
6894         Control.Refresh from within Redraw, as it's much heavier than
6895         Invalidate (which is really what we want).
6896
6897 2006-07-20  Chris Toshok  <toshok@ximian.com>
6898
6899         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
6900         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
6901         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
6902         traces from within a debug IBindingList datasource
6903         (in mono/winforms/datagrid) for *days*, I've finally gotten things
6904         to work in a similar fashion.
6905
6906 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6907
6908         * ListBox.cs: Don't call Sort () when setting 
6909         the Sorted property to false (avoid an unnecessary sort).
6910
6911 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6912
6913         * ListControl.cs: DataSource should throw an ArgumentException
6914         instead of a normal exception when the argument is not of the 
6915         correct type.
6916
6917 2006-07-20  Mike Kestner  <mkestner@novell.com>
6918
6919         * Control.cs: add InternalPreProcessMessage to allow us to steal
6920         key events before MWF gets its paws on them.  Adapted from a
6921         suggestion by eno.
6922         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
6923         up/down/left/right navigation. Override the new internal control
6924         method to steal the events since they never make it to WndProc.
6925         * ToolBarButton.cs: don't worry about pushed when setting hilight
6926         since the drawing code prefers pushed to hilight. Invalidate on 
6927         Hilight changes. Fixes #78547 and #78525.
6928
6929 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6930
6931         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
6932           the canvas size. Fixes #78868
6933
6934 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
6935
6936         * Splitter.cs: Track requested split position until first layout
6937           is performed. Fixes #78871
6938
6939 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6940
6941         * Application.cs: Removed code that forces 1.x for the version
6942           number if the version started with 0. Not sure why that code was
6943           there and I couldn't find any bugs that indicated we needed it.
6944           Fixes #78869
6945
6946 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
6947
6948         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
6949           ResetDefaults(), just write some output to the console until it's
6950           implemented. Fixes bug #78907 for now. Eliminated two warnings.
6951
6952 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
6953
6954         * PropertyGridView.cs: set StartPosition of drop down forms
6955         so they appear in correct initial spot.  Fixes #78190.
6956
6957 2006-07-19  Mike Kestner  <mkestner@novell.com>
6958
6959         * ThemeWin32Classic.cs: use parent background color when drawing
6960         flat toolbars.  Restructure the conditionals to make sure non-flat
6961         non-Divider toolbars are filled too.  Fixes #78837.
6962
6963 2006-07-19  Mike Kestner  <mkestner@novell.com>
6964
6965         * ListBox.cs: Sort on collection changes even if the handle
6966         isn't created yet.  Fixes #78813.
6967
6968 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6969
6970         * ListControl.cs: DisplayMember should never be null,
6971         and now we assign String.Empty when null is passed to it (this
6972         is the .Net way).
6973
6974 2006-07-17  Mike Kestner  <mkestner@novell.com>
6975
6976         * ListViewItem.cs: restructure Font and subitem Font handling 
6977         to hold a specific font and refer back to owner on null.
6978         Fixes #78761.
6979
6980 2006-07-17  Mike Kestner  <mkestner@novell.com>
6981
6982         * ToolBar.cs: bandaid for side-effect of previous patch which was
6983         discarding explicit heights for non-AutoSize toolbars.  Need to
6984         extend my format tester to deal with AutoSize=false. Fixes #78864.
6985
6986 2006-07-15  Jackson Harper  <jackson@ximian.com>
6987
6988         * LabelEditTextBox.cs:
6989         * TreeView.cs: Use a new LabelEdit class for node editing, this
6990         class automatically 'closes' itself when it gets the enter key or
6991         loses focus.
6992         - Use the client rectangle when setting the trees scrollbars, so
6993         border style is taken into account.
6994         
6995 2006-07-14  Jackson Harper  <jackson@ximian.com>
6996
6997         * TreeNode.cs:
6998         * TreeView.cs: Make the editing work similar to MSs, firing the
6999         events correctly and ending edits correctly.
7000
7001 2006-07-14  Mike Kestner  <mkestner@novell.com>
7002
7003         * ToolBarButton.cs:
7004         * ToolBar.cs: layout restructuring and redraw enhancements to support
7005         formatting changes gracefully, like setting TextAlign, ImageList, 
7006         ButtonSize, and Appearance.  Handles explicit button sizing quirks
7007         of the MS controls.  Things like flat toolbars ignoring button size
7008         but becoming constant sized at the largest button's size.  Normal
7009         toolbars with an image set cannot be shrunk smaller than the image,
7010         but text can be clipped/ignored.
7011         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
7012         is zero.  Seems like DrawString should be smart enough to not put
7013         anything on screen though. Also trim labels and ellipsize at the char
7014         boundary, not word.
7015         Fixes #78711 and #78483.
7016
7017 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7018
7019         * FolderBrowserDialog.cs: Disable "New Folder" button and
7020           "New Folder" contextmenu menuitem if a folder like "My Computer"
7021           is selected.
7022
7023 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7024
7025         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
7026         * FolderBrowserDialog.cs:
7027           - Use MWFConfig to store and read size and position settings
7028           - Added code to create a new folder (button or context menu).
7029             Use TreeView labeledit to change the name of the new folder.
7030
7031 2006-07-14  Jackson Harper  <jackson@ximian.com>
7032
7033         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
7034         when the tree is scrolled we end editing.
7035
7036 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
7037
7038         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
7039           Down arrows
7040
7041 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
7042
7043         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
7044         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
7045         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
7046         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
7047         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
7048         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
7049         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
7050         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
7051         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
7052         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
7053         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
7054         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
7055         ListViewItemSelectionChangedEventHandler.cs,
7056         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
7057         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
7058         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
7059         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
7060         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
7061         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
7062         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
7063         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
7064         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
7065         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
7066         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
7067         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
7068         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
7069         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
7070         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
7071         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
7072         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
7073         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
7074         WebBrowserNavigatingEventHandler.cs, 
7075         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
7076
7077 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
7078
7079         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
7080         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
7081         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
7082         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
7083         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
7084         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
7085         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
7086         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
7087         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
7088         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
7089         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
7090         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
7091         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
7092         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
7093         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
7094         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
7095         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
7096         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
7097         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
7098         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
7099         ListViewItemStates.cs, MaskFormat.cs: Added
7100
7101 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
7102
7103         * PropertyGridView.cs: Fix keyboard navigation of drop down.
7104         Patch from eno for bug 78558.
7105         
7106 2006-07-13  Jackson Harper  <jackson@ximian.com>
7107
7108         * TreeView.cs: When an edit is finished make sure that the
7109         selected node is visible.
7110         - When setting the top/bottom use the scrollbars is_visible, so
7111         everything will be set correctly even if the tree isn't visible
7112         yet.
7113
7114 2006-07-13  Jackson Harper  <jackson@ximian.com>
7115
7116         * ComboBox.cs: Revert the item->index part of my previous patch.
7117         * TreeView.cs: Use LostFocus instead of Leave for detecting when
7118         the edit box has lost focus (duh).
7119         - Just make the edit box not visible when we get return, that will
7120         take the focus, which will call EndEdit
7121         * TreeNode.cs When we start editing, notify the treeview.
7122
7123 2006-07-12  Jackson Harper  <jackson@ximian.com>
7124
7125         * ComboBox.cs: Clear out old items before setting the item list.
7126         This prevents databound controls from having their items added
7127         twice.
7128         - Switch the combobox to use indices whereever possible instead of
7129         using Item's.  This allows usto navigate through lists that have
7130         more then one item with the same string value (ie a, b, b, a).
7131         - Scroll the listboxes scrollbar when a non visible item is
7132         highlighted
7133         - Allow keypress to cycle through all the possible values. For
7134         example if you have b1, b2, b3 and hold down the B key all the
7135         values will be cycled through.
7136         
7137 2006-07-12  Jackson Harper  <jackson@ximian.com>
7138
7139         * TextBoxBase.cs:
7140         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
7141         this using the internal methods.
7142         * Control.cs: Add OnGotFocusInternal.  A new method that allows
7143         controls to "override" OnGotFocus and change focus behavior if
7144         needed.
7145         - Same thing for LostFocus
7146         * ComboBox.cs: Pass off focus to the text control properly.
7147
7148 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
7149
7150         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
7151         * FolderBrowserDialog.cs: Almost a complete rewrite.
7152           - Better support for Environment.Specialfolders
7153           - Added support for MWFVFS
7154           - Made setting SelectedPath work
7155
7156 2006-07-12  Jackson Harper  <jackson@ximian.com>
7157
7158         * Control.cs: Optimze getting all the controls.
7159
7160 2006-07-11  Jackson Harper  <jackson@ximian.com>
7161
7162         * ContainerControl.cs: Override SETFOCUS in the container control,
7163         so that it is not selected on mouse click.
7164
7165 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
7166
7167         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
7168           Hopefully we will have a better way once all of focus is complete.
7169
7170 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
7171
7172         * ThemeWin32Classic.cs: Commented out some debug code and fixed
7173           a compile error with csc.
7174
7175 2006-07-11  Jackson Harper  <jackson@ximian.com>
7176
7177         * Control.cs: When hiding a control only select the next control
7178         if the current control was focused.
7179         - Don't handle enter/leave when setting/killing focus, this is
7180         done by the container control.
7181         - Remove is_selected, it's not needed anymore.
7182         - Add utility methods for selecting a child control, and for
7183         firing the Enter/Leave events.
7184         * ContainerControl.cs: When a control is activated fire the
7185         enter/leave events.
7186         - Don't wrap when processing the tab key, so that focus can be
7187         moved outside of the container.
7188         - Use the correct active control
7189
7190 2006-07-11  Jackson Harper  <jackson@ximian.com>
7191
7192         * ComboBox.cs: Remove some debug code that was blinding me.
7193         * UpDownBase.cs: These controls actually aren't implicit, they are
7194         visible to the user.
7195
7196 2006-07-10  Chris Toshok  <toshok@ximian.com>
7197
7198         * DataGrid.cs: move back to the is_adding boolean field.  god i
7199         hate this is_editing/is_adding/is_changing stuff.
7200
7201 2006-07-10  Chris Toshok  <toshok@ximian.com>
7202
7203         * DataGridTableStyle.cs: just check if the property type is bool.
7204         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
7205         Don't use CanRenderType.
7206
7207         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
7208         if our text == NullText.  Remove CanRenderType.
7209
7210         * DataGridBoolColumn.cs: nuke CanRenderType.
7211
7212         * DataGrid.cs: reenable some code to end the current edit inside
7213         of set_CurrentCell.  This fixes the other 1.1.16 regression.
7214         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
7215         Also, remove the visible_row_count arg from CalcRowHeaders, since
7216         we don't need to worry about the actual height of the area.
7217
7218 2006-07-10  Chris Toshok  <toshok@ximian.com>
7219
7220         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
7221         mode, just return.
7222
7223         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
7224         the real sense of the IsInEditOrNavigateMode property (true =
7225         navigate, false = edit).  Also, update OnKeyPress to reflect this.
7226
7227         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
7228         column style exists, we still need to set its property descriptor
7229         to match up with our list manager.
7230
7231 2006-07-10  Chris Toshok  <toshok@ximian.com>
7232
7233         * ThemeWin32Classic.cs: implement the new row/header painting
7234         approach.  The parent row painting will likely go away and
7235         replaced with label controls, but the rest seems to work ok (and
7236         efficiently).
7237
7238         * Theme.cs: change the way we draw datagrid rows.  we don't draw
7239         the row headers as a block now.  Instead we draw them in the
7240         normal draw-row loop.  Add some calls for drawing parent rows and
7241         relation rows.
7242
7243         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
7244         a default table style.  Set the defaults from ThemeEngine.Current,
7245         not SystemColors.  Fix lots of misc issues with property setters.
7246
7247         * DataGrid.cs: move loads of style information out of this class
7248         as it's being duplicated with DataGridTableStyle.  keep track of a
7249         special DataGridTableStyle for the properties we used to mirror
7250         here.  Switch all the style properties to access this table style
7251         instead of instance fields of this class.  Also add a internal
7252         class to represent parent rows (more needs to be stored here, like
7253         the selection state from the parent table, as well as the
7254         expansion state.)  Also, for datasources with relations, do the
7255         right thing for collapse/expand, and add support for the
7256         navigation/parent row buttons.
7257
7258         Lastly, fix the crash in the 1.1.16 build.
7259
7260         * GridTableStylesCollection.cs: make the explicit interface
7261         implementations call the class's methods as opposed to duplicating
7262         them.
7263
7264         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
7265         0 so the text doesn't jump around when we move the cursor.
7266
7267 2006-07-10  Jackson Harper  <jackson@ximian.com>
7268
7269         * TextBoxBase.cs:
7270         * ListBox.cs: Match MS's ToString (this makes debugging focus
7271         stuff infinitely easier).
7272
7273 2006-07-10  Jackson Harper  <jackson@ximian.com>
7274
7275         * Control.cs (SelectNextControl): When checking the control's
7276         parent use this instead of ctrl.parent so that null can be passed
7277         to SelectNextControl. (I have unit tests for this).
7278         - Remove unused var.
7279
7280 2006-07-10  Chris Toshok  <toshok@ximian.com>
7281
7282         * CurrencyManager.cs: correct one regression, the removal of the
7283         finalType field.  Also, add a MonoTODO on CanAddRows, implement
7284         Refresh() correctly, and fix some event emission in
7285         ListChangedHandler.
7286
7287 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
7288
7289         * FileDialog.cs: Don't use brackets for new folders if they exist
7290           under *nix. Instead use -(number of existing folders +1).
7291
7292 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
7293
7294         * FileDialog.cs:
7295           - Fixed really nasty bug #78771
7296           - Don't block the whole GUI when reading directories with a lot of
7297             entries. Use an other thread instead and call BeginInvoke to
7298             update the ListView in MWFFileView
7299
7300 2006-07-07  Chris Toshok  <toshok@ximian.com>
7301
7302         * Control.cs (Dispose): release any Capture when disposing.
7303
7304 2006-07-07  Chris Toshok  <toshok@ximian.com>
7305
7306         * LinkLabel.cs (Select): if we chain up to the parent, set
7307         focused_index to -1 so we'll search for the first available link
7308         the next time the user tabs into us.  Also, if the direction is
7309         backward and focused_index == -1, start the search from the last
7310         element.
7311
7312 2006-07-07  Chris Toshok  <toshok@ximian.com>
7313
7314         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
7315         is beyond the end of the text, don't do anything.
7316         (CreateLinkPieces): set our ControlStyles.Selectable based on
7317         whether or not we have any links.
7318         (Link.Invalidate): use a loop instead of foreach.
7319         (Link.set_Start): null out owner.sorted_links so it'll be
7320         recreated by CreateLinkPieces.
7321
7322 2006-07-06  Chris Toshok  <toshok@ximian.com>
7323
7324         * LinkLabel.cs: revert the SetStyle change.
7325
7326 2006-07-06  Chris Toshok  <toshok@ximian.com>
7327
7328         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
7329         (OnEnableChanged): s/Refresh/Invalidate
7330         (OnGotFocus): if we have a focused index already, refocus it (so
7331         if we mouse out/in to the window it'll focus the right link).
7332         (OnKeyDown): move the tab handling out of here.
7333         (OnLostFocus): don't set focused_index to -1, so we can refocus it
7334         when we lose focus.
7335         (OnMouseDown): don't Capture here - Control handles it.  Also,
7336         focus the active link.
7337         (OnMouseUp): don't deal with Capture.
7338         (OnPaintBackgroundInternal): remove.
7339         (OnTextAlignChanged): CreateLinkPieces before calling the
7340         superclass's method.
7341         (OnTextChanged): call CreateLinkPieces before calling superclass's
7342         method.
7343         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
7344         move around.
7345         (Select): implement this, moving the selection between different
7346         links, and call parent.SelectNextControl if we don't have another
7347         link to focus in the given direction.
7348         (CreateLinkPieces): call Invalidate instead of Refresh.
7349         
7350 2006-07-06  Chris Toshok  <toshok@ximian.com>
7351
7352         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
7353         new LinkLabel internals.
7354
7355         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
7356         over pieces looking for active/focused/etc links.  also, deal with
7357         runs of text (and links) with embedded \n's in them, and use
7358         MeasureCharacterRanges instead of MeasureString to figure out the
7359         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
7360         two-step.
7361
7362 2006-07-04  Jackson Harper  <jackson@ximian.com>
7363
7364         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
7365         XKB or key auto repeat, do it manually.  Without key auto repeat,
7366         when a key is held down we get key press, key release, key press,
7367         key release, ... with auto repeat we get key press, key press, key
7368         press ..., and then a release when the key is actually released.
7369
7370 2006-07-03  Jackson Harper  <jackson@ximian.com>
7371
7372         * TabControl.cs:
7373         * ThemeWin32Classic.cs: Tabs do not obey normal background color
7374         rules, they are always control color regardless of the background
7375         color.
7376
7377 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
7378
7379         * FileDialog.cs: Added internal class MWFConfig.
7380           Removed Registry support and replaced it with support for the new
7381           MWFConfig class. See MWFConfig comments for more information.
7382
7383 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
7384
7385         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
7386           rectangle. Added some patches from eno from bug #78490 and fixed
7387           the arrow position for small up and down CPDrawScrollButtons.
7388
7389 2006-06-30  Jackson Harper  <jackson@ximian.com>
7390
7391         * InternalWindowManager.cs: Remove some debug code.
7392         * Form.cs: When an MdiParent is set to null, the window is
7393         "detatched" and becomes a normal window.
7394         * MdiClient.cs: Don't bring the new child form to the front until
7395         it is activated (setting it as active does this), this makes the
7396         previously active forms titlebar get redrawn as inactive.
7397
7398 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
7399
7400         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
7401           with later controls
7402
7403 2006-06-29  Mike Kestner  <mkestner@novell.com>
7404
7405         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
7406         arrow in keynav state.  Fixes #78682.
7407
7408 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7409
7410         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
7411           order (fixes #78393)
7412
7413 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
7414
7415         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
7416           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
7417           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
7418           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
7419           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
7420           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
7421           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
7422           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
7423           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
7424           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
7425           enumerations (FlagsAttribute, SerializableAttribute, added/removed
7426           values)
7427
7428 2006-06-28  Mike Kestner  <mkestner@novell.com>
7429
7430         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
7431
7432 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7433
7434         * PropertyGrid.cs,
7435           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
7436           item lines from other area (It also makes BackColor consistent and
7437           compatible with .NET). Fixed bug #78564.
7438
7439 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
7440
7441         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
7442         Patch from Eno for #78555.
7443
7444 2006-06-27  Chris Toshok  <toshok@ximian.com>
7445
7446         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
7447
7448         * DataGridColumnStyle.cs: same.
7449
7450         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
7451         
7452         * DataGridDrawingLogic.cs: nuke.
7453
7454 2006-06-27  Chris Toshok  <toshok@ximian.com>
7455
7456         * DataGridTableStyle.cs: clean up the constructors, and build the
7457         list of child relations for this table.  I have no idea if this is
7458         where we should be doing it (it probably isn't), but since we're
7459         already iterating over the properties..
7460
7461         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
7462         struct and array for keeping track of row information, similar to
7463         what's shown in a hack on
7464         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
7465
7466         * Theme.cs: be consistent about the naming of DataGrid methods,
7467         prefering ColumnWidths and RowHeights over columnsWidths and
7468         RowsHeights.
7469
7470         * ThemeWin32Classic.cs: same, and also add support for variable
7471         sized rows (and the +/- expansion icons for related rows).
7472
7473 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7474
7475         * TextBoxBase.cs: Applied Eno's patch from #78660
7476
7477 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7478
7479         * Form.cs (ScaleCore): We don't want to scale our form if it's
7480           state is minimized or maximized, but we still need to scale our
7481           child windows. Also, added try/finally block to ensure layout
7482           gets reset (Fixes #78697)
7483
7484 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7485
7486         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
7487
7488 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7489
7490         * Form.cs: Fixed c+p error and added check to resize form if minimum
7491           size is bigger than current size (Fixes #78709)
7492
7493 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
7494
7495         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
7496
7497 2006-06-26  Mike Kestner  <mkestner@novell.com>
7498
7499         * ComboBox.cs: only do Keypress handling in the combo when there  
7500         are items in the collection. Fixes #78710.
7501
7502 2006-06-26  Chris Toshok  <toshok@ximian.com>
7503
7504         * Binding.cs: make this work bi-directionally.  also, clear up
7505         other mixups between Push/Pull Data (e.g. we're supposed to pull
7506         data when validating).
7507
7508         * BindingManagerBase.cs: trim some fully qualified collection
7509         types.
7510
7511         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
7512
7513 2006-06-23  Chris Toshok  <toshok@ximian.com>
7514
7515         * PropertyManager.cs: It appears (according to the unit tests)
7516         that PropertyManager doesn't use
7517         PropertyDescriptor.AddValueChanged to track propery value changes
7518         in its datasource, but uses the same scheme as Binding, where it
7519         looks for a <Property>Changed event and binds to it.
7520
7521         Also, according to the docs, IsSuspended always returns false for
7522         a property manager with a non-null datasource.
7523
7524 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
7525
7526         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
7527           need to update the actual DialogResult. (Fixes #78613)
7528
7529 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
7530
7531         * Form.cs (ShowDialog): Release any captures before running the
7532           new message pump (fixes #78680)
7533
7534 2006-06-22  Mike Kestner  <mkestner@novell.com>
7535
7536         * ListView.cs: Layout column widths properly in details mode even 
7537         if HeaderStyle.None is set.  Fixes #78691.
7538
7539 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
7540
7541         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
7542
7543 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
7544
7545         * Control.cs (ContainsFocus): Using new driver method to get focused
7546           window, instead of trying to use internal tracking var, which can
7547           recursion issues (Fixes #78685)
7548         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
7549           XplatUIWin32.cs: Added GetFocus method to return focused window
7550
7551 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7552
7553         * ColorDialog.cs: when the mouse button is pressed inside the color
7554         matrix, don't let the cursor move out of it until the button is
7555         released, which is the behavior on windows. Changed 'colours' by
7556         'colors' to use the same word consistently.
7557
7558 2006-06-21  Chris Toshok  <toshok@ximian.com>
7559
7560         * DataGrid.cs: add in some basic navigation stuff (navigating to a
7561         child relation and back, using a stack).  Also, remove
7562         GetDataSource and the code that calls it - it's not needed.  Also,
7563         track CurrencyManager.ListName's removal.
7564
7565 2006-06-21  Chris Toshok  <toshok@ximian.com>
7566
7567         * CurrencyManager.cs: push some of the original type checking from
7568         BindingContext.CreateBindingManager to here, and remove some of
7569         the finalType stuff.  Need more tests to make sure I've got the
7570         ListName part right, and we might need more in SetDataSource.
7571
7572         * PropertyManager.cs: add a ctor that takes just the datasource,
7573         and no property name.  Make SetDataSource work with a null
7574         property_name, and make Current return the data_source if the
7575         property descriptor is null.  this makes 'string foo = "hi";
7576         BindingContext[foo].Current' return "hi" as it should.
7577
7578         * RelatedCurrencyManager.cs: make this code more generic - there's
7579         no reason the parent manager has to be CurrencyManager, and
7580         there's no reason to pass the DataRelation.  It suffices to use a
7581         BindingManagerBase and PropetyDescriptor.
7582
7583         * RelatedPropertyManager.cs: make a similar change here.
7584         
7585         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
7586         flower I knew it could be.
7587
7588 2006-06-20  Chris Toshok  <toshok@ximian.com>
7589
7590         * PropertyManager.cs: the PropertyChangedHandler is invoked when
7591         data in the source has changed and we need to update the control,
7592         so s/PullData/PushData.
7593
7594         * CurrencyManager.cs: Refresh is meant to update the control from
7595         data in the datasource.  So, s/PullData/PushData.
7596
7597         * BindingContext.cs: add more ugliness (we weren't handling the
7598         case where data_source = DataTable and data_member = column_name).
7599
7600         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
7601         from the perspective of the datasource.  PullData pulls from the
7602         control, PushData pushes to the control.
7603
7604 2006-06-20  Chris Toshok  <toshok@ximian.com>
7605
7606         * BindingContext.cs: rewrite the CreateBindingManager code to
7607         handle navigation paths more or less properly.  This could
7608         definitely stand some more work, in particular to push the
7609         recursion up to the toplevel.  But that relies on fixes in other
7610         places (System.Data comes to mind).
7611
7612         Also, move to a flat hashtable (and encode the twolevel nature of
7613         the dictionary into the hash key).  This lets us implement the
7614         IEnumerable.GetEnumerator method.
7615
7616         * RelatedCurrencyManager.cs: new class.  Update our view based on
7617         our relation and our parent CurrencyManager's position.
7618
7619         * CurrencyManager.cs: split out some logic from the ctor into
7620         SetView, so it can be called from the new RelatedCurrencyManager
7621         subclass.
7622
7623         * RelatedPropertyManager.cs: new class.  Update our datasource
7624         based on the position of our parent CurrencyManager.
7625
7626         * PropertyManager.cs: split out some logic from the ctor into
7627         SetDataSource, so it can be called from the new RelatedDataSource
7628         subclass.  Also, make the Current getter return the value
7629         of the PropertyDescriptor, not the data_source.
7630
7631         * Binding.cs: no need to duplicate the string splitting code here.
7632
7633 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
7634
7635         * Control.cs:
7636           - set_Enabled: OnEnabledChanged is not called if the inherited state 
7637             of the control is not altered, even though  we might be changing the
7638             internal state of the control (#78458)
7639           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
7640             OnEnabledChanged, to allow easy altering of any child window state
7641           - OnEnabledChanged: Added code to enable/disable driver window state
7642           - OnParentEnabledChanged: Instead of firing the event, call 
7643             OnEnabledChanged, which will fire the event and also a) set driver
7644             window state and pass the enabled state to any grandchildren (#78458)
7645
7646 2006-06-19  Jackson Harper  <jackson@ximian.com>
7647
7648         * InternalWindowManager.cs: We don't set the cursor explicitly
7649         thats done via the response to NCHITTESTs.
7650         - Don't need to adjust for titlebar heights anymore, the
7651         coordinates are coming in the correct coordinates now (see peters
7652         last patch).
7653
7654
7655 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
7656
7657         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
7658           being translated relative to whole window, instead of client window.
7659           That caused broken offsets on mouseclick (and caused gas for our
7660           InternalWindowManager)
7661
7662 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
7663
7664         * TextControl.cs:
7665           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
7666           - Undo(): Added replay of cursor move on DeleteChars action; added
7667             calling Undo() again if a recorded cursor move is invalid (to
7668             ensure that some action is performed on Undo)
7669         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
7670
7671 2006-06-16  Jackson Harper  <jackson@ximian.com>
7672
7673         * MdiClient.cs: Instead of just sizing maximized windows when
7674         there is a resize we also have to adjust the Y of minimized
7675         windows, so they stay pinned to the bottom of the mdi container.
7676         - Eliminate separate tracking of the active control, we can just
7677         get this from the controls collection.
7678         - Paint the decorations for the newly activated titlebar so we get
7679         a pretty blue bar.
7680         * InternalWindowManager.cs:
7681         * ThemeWin32Classic.cs: Minimized windows get all three buttons
7682         even if they are a tool window.
7683         
7684 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
7685
7686         * TextControl.cs (Undo): Handle non-existent cursor locations in the
7687           undo buffer, these can happen when text was deleted and the cursor
7688           was recorded first. Since we will also have a recorded cursor
7689           after the delete this is not an issue. (Fixes #78651)
7690
7691 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
7692
7693         * AccessibleObject.cs: Remove dependence on Control.is_selected;
7694           instead properly track control states internally (allows us to
7695           remove is_selected from Control)
7696
7697 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7698
7699         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
7700         whose width is not a multiple of 8.
7701
7702 2006-06-13  Jackson Harper  <jackson@ximian.com>
7703
7704         * MdiClient.cs:  Only maximize the next child if the current one
7705         is maximized.
7706
7707 2006-06-13  Chris Toshok  <toshok@ximian.com>
7708
7709         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
7710         modified.  Also, guard against grid or grid_drawing being null in
7711         Invalidate.
7712
7713         * DataGrid.cs: Reformat tons of getters/setters.  In the
7714         DataMember setter, just call SetNewDataSource instead of
7715         duplicating some of its functionality.  In SetNewDataSource, don't
7716         check ListManager for null, since the property getter creates the
7717         object if needed.
7718
7719         * DataGridTableStyle.cs: don't set TableStyle or call
7720         SetDataGridInternal on the column here, it's done in
7721         GridColumnStylesCollection.Add.
7722
7723         * GridColumnStylesCollection.cs: fix all the explicit interface
7724         implementations to just call our methods.  Nuke AddInternal() and
7725         move the body of it to Add().  Also, add a call to
7726         column.SetDataGridInternal to Add().
7727
7728         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
7729         base()+duplicate code.  Also, use the Format property instead of
7730         format to generate an Invalidate ala MS.  Lastly, create the
7731         textbox here, unconditionally.
7732         (set_Format): call Invalidate.
7733         (get_TextBox): no need to call EnsureTextBox.
7734         (Commit): remove the message box.
7735         (Edit) remove the call to EnsureTextBox.
7736         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
7737         (EnterNullValue): no need to check textbox for null.
7738         (HideEditBox): no need to check textbox for null.
7739         (SetDataGridInColumn): add the textbox to the grid's controls.
7740         (EnsureTextBox): nuke.
7741         
7742 2006-06-13  Jackson Harper  <jackson@ximian.com>
7743
7744         * MdiWindowManager.cs: Hook up to the maximized menus paint event
7745         and redraw the buttons when needed. Unhook when the window is
7746         unmaximized.
7747         * MainMenu.cs: Add an internal Paint event, the mdi window manager
7748         needs this so that it can redraw its buttons when the menu is
7749         repainted.
7750         * InternalWindowManager.cs:
7751         * Form.cs: The method order has changed for DrawMaximizedButtons,
7752         so that it can be a PaintEventHandler.
7753         
7754 2006-06-13  Jackson Harper  <jackson@ximian.com>
7755
7756         * MdiClient.cs: When we close a maximized mdi window, the next mdi
7757         window is activated and maximized, even if it wasn't before.
7758         - When  a new window is activated repaint the decorations of the
7759         old one, so that it no longer has the Active "look" (the blue
7760         titlebar).
7761         * InternalWindowManager.cs: Open up CreateButtons to base classes
7762         so they can recreate the buttons on state changes.
7763         - If a window is maximized give it all three buttons
7764         * MdiWindowManager.cs: Create the titlebar buttons when the state
7765         is changed, this is needed because a toolwindow will not have all
7766         three buttons until it is maximized.
7767
7768 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
7769
7770         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
7771           Fixed bug #78609.
7772
7773 2006-06-12  Jackson Harper  <jackson@ximian.com>
7774
7775         * KeysConverter.cs: Make sure we handle the Ctrl special case
7776         if its the only key.
7777         
7778 2006-06-12  Jackson Harper  <jackson@ximian.com>
7779
7780         * Theme.cs: Add a method to get the size of a managed window
7781         toolbar button.
7782         * InternalWindowManager.cs: Remove the ButtonSize property, this
7783         should be retrieved from the theme.
7784         * MdiWindowManager.cs: Get the button size from the theme
7785         * ThemeWin32Classic.cs: Make the method to get the managed window
7786         titlebar button size public.
7787         - Handle the different button sizes of maximized toolwindows
7788         (should match any maximized window).
7789         - Get the titlebar height from the theme, not the WM (which gets
7790         it from the theme).
7791
7792 2006-06-12  Jackson Harper  <jackson@ximian.com>
7793
7794         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
7795         event down to the mdi window manager.
7796         - Expose some extra stuff to base classes
7797         - Make sure to end the Capture on an NC Mouse up, so that we can
7798         get double clicks properly, and the sizing doens't stick.
7799         - When doing PointToClient contain it in the workable desktop
7800         area, this prevents windows from changing size when the cursor is
7801         pulled outside of the working area while sizing.
7802         * MdiWindowManager.cs: When we get a double click maximize the
7803         window.
7804         - Reset the cursor after handling mode changes.
7805
7806 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
7807
7808         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
7809           current desktop, instead of just assuming a 0, 0 origin. This
7810           is needed for our internal window manager, to know the top
7811           margin of the desktop
7812
7813 2006-06-12  Chris Toshok  <toshok@ximian.com>
7814
7815         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
7816         we need this to get rid of the selected background in the bool
7817         column.
7818         (CancelEditing): move the ConcedeFocus call to above the Abort
7819         call.  Also, set is_changing to false and invalidate the row
7820         header if we were changing before.
7821         (ProcessKeyPreviewInternal): remove, since noone outside this
7822         class calls it anymore.  Roll the code into ProcessKeyPreview.
7823         (EndEdit): remove the internal version.
7824         (InvalidateCurrentRowHeader): make private.
7825
7826         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
7827         Keys.Escape handling (and with it the last call to
7828         DataGrid.EndEdit from outside the class.)
7829
7830
7831 2006-06-12  Chris Toshok  <toshok@ximian.com>
7832
7833         * DataGridTextBox.cs (.ctor): isedit defaults to false.
7834         (OnKeyPress): set isedit to true.
7835         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
7836         already handled by the grid.
7837
7838         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
7839         right.  ugh.
7840         (set_DataSource): SetDataSource always returns true, so stop
7841         putting it in an if statement.
7842         (EndEdit): get rid of some {}'s
7843         (ProcessGridKey): return true in case Keys.Escape.
7844         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
7845         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
7846         PositionChanged, stopped connecting to CurrentChanged.
7847         (GetDataSource): simplify this a bunch.
7848         (SetDataSource): change return type from bool to void.
7849         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
7850         to this, and make sure we don't set ListManager.Position inside
7851         set_CurrentCell.
7852         (OnListManagerItemChanged): if we're passed an actual index,
7853         redraw that row.
7854
7855         * CurrencyManager.cs (set_Position): don't call PullData here.
7856
7857 2006-06-09  Jackson Harper  <jackson@ximian.com>
7858
7859         * TreeNode.cs:  Recalculate the visible order before doing the
7860         Expand/Collapse Below calls, because those calls generate an
7861         expose.
7862         - Reduce calls to the TreeView property, which is mildly expensive
7863         by using a local var.
7864         * Form.cs: Layout the MDI child windows when creating the parent
7865         form.
7866         - Don't use the internal constructor anymore
7867         * MdiClient.cs: use the parent form width/height (if available)
7868         when laying out the child windows, we do this because the
7869         mdiclient isn't docked yet when the initial layout is done.
7870         - Don't need an internal constructor anymore.
7871
7872 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7873
7874         * FileDialog.cs: handle access errors when trying to create a folder
7875         or changing to a directory. No need to initialize out parameters.
7876
7877 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7878
7879         * FileDialog.cs: Append a number when creating a new folder if the
7880           folder already exists (use parenthesis instead of square brackets)
7881
7882 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7883
7884         * FileDialog.cs:
7885           - Disabled registry support for windows and added better registry
7886             error checking for other systems (need to investigate why it
7887             works perfectly on my system)
7888           - If a folder already exist show an error MessageBox instead of
7889             trying to create an indexed name.
7890           - Fixed a non intentional typo.
7891
7892 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7893
7894         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
7895
7896 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7897
7898         * FileDialog.cs: When creating a new folder don't crash if the
7899           folder already exists.
7900
7901 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7902
7903         * FileDialog.cs: Allmost a complete rewrite.
7904           - added a "virtual" file system that handles the differences
7905             between unix and windows file systems (especially the directory
7906             structure). Moved most of the directory and file handling code
7907             into the vfs.
7908             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
7909             UnixFileSystem and FSEntry.
7910           - Recently used folder/directory, size, location and used file names
7911             (file name ComboBox) are now stored in the registry and get read
7912             before the dialog shows up (fixes part 6 of bug #78446).
7913           - Creation of new folders/directories is now possible (context menu
7914             or ToolBar). Added TextEntryDialog for this that fills in the gap
7915             until ListView.LabelEdit works.
7916           - Fixed cursor handling (bug #78527) and focus handling for
7917             PopupButtonPanel
7918           - Various "Search in" ComboBox enhancements. The content of the
7919             dropdown listbox now almost matches ms.
7920           - Changed the behaviour when the user switches to SpecialFolder
7921             Recent to show the ListView in View.Details.
7922           - Beside using the ToolBar to change the View property of the
7923             file ListView it is now possible to use the context menu too.
7924
7925 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7926
7927         * ComboBox.cs: Don't create a new ObjectCollection when an item
7928           gets inserted. Just insert the item in the existing object_items
7929           ArrayList.
7930
7931 2006-06-08  Jackson Harper  <jackson@ximian.com>
7932
7933         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
7934         that the treeview and root node checks are done also, this fixes a
7935         regression i caused in the unit tests.
7936
7937 2006-06-07  Wade Berrier <wberrier@novell.com> 
7938
7939         * RichTextBox.cs: More ISO8859-1 -> unicode
7940
7941 2006-06-07  Mike Kestner  <mkestner@novell.com>
7942
7943         * ComboBox.cs : use items to hold highlight/selection so that
7944         collection insertions don't require synchronization.
7945
7946 2006-06-07  Jackson Harper  <jackson@ximian.com>
7947
7948         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
7949         routine.  We now always keep the sized edge at the cursor instead
7950         of computing movement and adjusting rects.  There is one buglet
7951         with this method though when the cursor is moved over area that
7952         the window can not expand too (such as the toolbars on the desktop).
7953
7954 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7955
7956         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
7957         here. Fixes crash on startup in AlbumSurfer.
7958
7959 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
7960
7961         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
7962           values
7963
7964 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7965
7966         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
7967         statement to avoid calling XNextEvent which will block if another thread
7968         took the event that we were expecting. Fixes bug #78605.
7969
7970 2006-06-07  Mike Kestner  <mkestner@novell.com>
7971
7972         * ListView.cs : isolated checkbox clicking from the selection logic.
7973         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
7974
7975 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7976
7977         * Form.cs: Check that the value passed to Form.DialogResult
7978         is a valid enum value.
7979
7980 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7981
7982         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
7983         Computer'. Clicking it in the network view goes to 'My Computer'.
7984         Added CIFS filesystem type. Display the mount point of filesystems.
7985         Avoid duplicate mount points (happens for me with CIFS);
7986
7987 2006-06-06  Jackson Harper  <jackson@ximian.com>
7988
7989         * InternalWindowManager.cs: Draw the maximized windows buttons
7990         when resizing.
7991
7992 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7993
7994         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
7995         all other dialogs. Fixes bug #78585.
7996
7997 2006-06-06  Mike Kestner  <mkestner@novell.com>
7998
7999         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
8000         Only invalidate checkbox on checkstate changes to avoid flicker.
8001         * ListBox.cs : avoid unselect/select when clicking selected item.
8002         avoid reselection flicker for already multiselected items.
8003         Fixes #78382.
8004
8005 2006-06-06  Jackson Harper  <jackson@ximian.com>
8006
8007         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
8008         the parent form so that the menu is removed if needed.
8009
8010 2006-06-06  Mike Kestner  <mkestner@novell.com>
8011
8012         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
8013         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
8014
8015 2006-06-06  Mike Kestner  <mkestner@novell.com>
8016
8017         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
8018
8019
8020 2006-06-06  Jackson Harper  <jackson@ximian.com>
8021
8022         * Control.cs: Use the property (instead of the field) to get the
8023         default cursor so it is instantiated correctly.
8024         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
8025         resizes so we need to manually repaint the window decorations here.
8026         - Set the titlebar button locations as soon as they are created,
8027         otherwise they are not set correctly on win32.
8028         
8029 2006-06-06  Chris Toshok  <toshok@ximian.com>
8030
8031         * CurrencyManager.cs (set_Position): call PullData before
8032         OnCurrentChanged.
8033         (AddNew): after calling IBindingList.AddNew, update our
8034         listposition, and call OnCurrentChanged/OnPositionChanged (without
8035         calling PullData).
8036         (OnCurrentChanged): remove the call to PullData from here.
8037         (OnItemChanged): remove the call to PushData from here.
8038         (OnPositionChanged): change the test from == null to != null to
8039         match the other methods.
8040         (ListChangedHandler): the grossest part of the patch.  Implement
8041         this such that it passes the unit tests in CurrencyManagerTest and
8042         the output more or less matches that of MS's implementation.
8043  
8044 2006-06-06  Mike Kestner  <mkestner@novell.com>
8045
8046         * ListView.cs : only update check state on single click.
8047         * ThemeWin32Classic.cs : fix focus drawing for details view without
8048         fullrowselect.  Fixes #78454.
8049         * XplatUIX11.cs : fix for double click emission.
8050
8051 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
8052
8053         * PropertyGridView.cs : Applied Atsushi's patch to fix
8054         font dialog bug  (#78197).
8055
8056 2006-06-05  Jackson Harper  <jackson@ximian.com>
8057
8058         * TreeNode.cs: Compute the next node for expanding/collapsing
8059         correctly. We now factor in nodes without a NextNode
8060         correctly. (Fixes somes cases in nunit-gui).
8061         * InternalWindowManager.cs: Set the bounds when updating the
8062         virtual position of a tool window.
8063         
8064 2006-06-05  Chris Toshok  <toshok@ximian.com>
8065
8066         * DataGrid.cs: rename cached_currencymgr to list_manager.
8067         (set_CurrentCell): move SetCurrentCell code here, and clean it up
8068         some.
8069         (CurrentRow, CurrentColumn): single accessors so we can make the
8070         cursor movement code a lot easier to understand.
8071         (CurrentRowIndex): implement this in terms of CurrentRow.
8072         (BeginEdit): clean this up a bit.
8073         (CancelEditing): sort out the is_editing/is_changing/is_adding
8074         stuff a little.
8075         (EndEdit): minor changes.
8076         (OnKeyDown): add a comment about a (most likely) unnecessary
8077         check.
8078         (OnMouseDown): cancel editing when we click on a row header.  And
8079         use the CurrentRow setter, not CurrentCell.
8080         (ProcessDialogKey): directly call ProcessGridKey.
8081         (UpdateSelectionAfterCursorMove): factor out this common block of
8082         code (it's used everywhere that we move the cursor by updating row
8083         or column).
8084         (ProcessGridKey): pretty substantial overhaul.  Use the
8085         CurrentRow/CurrentColumn properties to make the code a lot more
8086         readable.  Only use the CurrentCell property when we have to
8087         modify both row and column at once.  Tab behavior is still broken,
8088         and Delete is untested.
8089         (Select): if we have no selected rows, set selection_start to
8090         @row.
8091         (EditCurrentCell): rename EditCell this.  It was only ever invoked
8092         with CurrentCell as the arg, so drop the arg and rename it.
8093
8094         * DataGridColumnStyle.cs: clean up the constructors a little, and
8095         drop CommonConstructor().
8096
8097         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
8098         actually get notified when the user hits it.
8099         (ProcessKeyMessage): *substantially* simplify this method.
8100         There's no reason (that I can see) for the textbox to be making
8101         calls into the datagrid at all.  Remove all of them but the ones
8102         for Enter handling.  those will take some more work.
8103
8104         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
8105         calling HideEditBox.
8106         (HideEditBox): if we have an active textbox, render it invisible
8107         without causing a re-layout of the datagrid.
8108
8109 2006-06-05  Mike Kestner  <mkestner@novell.com>
8110
8111         * ListView.cs : fix NRE crasher when focuseditem is cleared by
8112         collection changes by resetting it to Items[0].  Fixes #78587.
8113
8114 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8115
8116         * MessageBox.cs: if the height of the text is larger than the icon_size,
8117         use that. Fixes bug #78575.
8118
8119 2006-06-05  Jackson Harper  <jackson@ximian.com>
8120
8121         * TreeView.cs: Fix line drawing when scrolling.  To do this each
8122         node is basically responsible for drawing its entire horizontal
8123         area.  When drawing a node it draws its parent node lines if
8124         needed.
8125         - Adjust the clip area to the viewport rectangle
8126         - Fix Left/Right key handling to match MS. (It expand/collapses
8127         and moves to parents/first child but does not move selection to
8128         sibling nodes).
8129         - Fix SetTop to work with new bound calculation code
8130         - When scrollbars are no longer needed we need to reset scrolling
8131         vars and recalculate the visible order so the redraw is correct
8132         * TreeNode.cs: We can't expand/collapse nodes with no children.
8133
8134 2006-06-03  John Luke  <john.luke@gmail.com> 
8135
8136         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
8137         so the colors work without dev packages
8138         
8139 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
8140
8141         * Control.cs 
8142           - Select: Implemented to just use activate. Seems to match MS 
8143             behaviour closest. Documented to only do actual control walking 
8144             based on it's parameters if in a container control so I moved 
8145             the code there.
8146           - Removed selection check logic from our internal Select() method
8147         * ContainerControl.cs:
8148           - Select: Moved selection logic from Control here, since MS documents
8149             that containers obey the bool arguments. No longer calling base
8150
8151 2006-06-02  Jackson Harper  <jackson@ximian.com>
8152
8153         * TreeView.cs: If the selected node isn't changed when we get
8154         focus update the previously selected node so that we see the
8155         selection box.
8156
8157 2006-06-02  Mike Kestner  <mkestner@novell.com>
8158
8159         * ComboBox.cs: restructure grab and general mouse event handling.
8160         Make the composite control raise mouse events like it was a single
8161         control for leaves/enters/motion/up/down events.  fix dropdown list
8162         coordinate mangling and refactor it into the scrollbar subclass to
8163         reduce code duplication.  Fixes #78282 #78361 and #78457.
8164
8165 2006-06-02  Mike Kestner  <mkestner@novell.com>
8166
8167         * ScrollBar.cs: remove Capture setting/clearing, as it happens
8168         automatically in the Control.WndProc.
8169
8170 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8171
8172         * FileDialog.cs: fix crash when running SharpChess, which sets the
8173         FilterIndex to 2 with only one Filter.
8174
8175 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8176
8177         * ToolBar.cs: add SizeSpecified property.
8178         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
8179         try to figure out our real size, otherwise fallback to what the
8180         container says.
8181
8182 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
8183
8184         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
8185         * Control.cs (WndProc): MS always calls the DefWndProc to pass
8186           up the event
8187
8188 2006-06-01  Mike Kestner  <mkestner@novell.com>
8189
8190         * ListView.cs: revamp the focus management in ListView.  It still
8191         causes churn of LostFocus/GotFocus emissions on clicks, but it's
8192         better than not handling focus at all.  Will revisit when pdb feels
8193         the general focus handling is solid.  Fixes #78526.
8194
8195 2006-06-01  Jackson Harper  <jackson@ximian.com>
8196
8197         * TreeView.cs: Set the default border style in the constructor.
8198         - Move painting to use OnPaintInternal instead of capturing
8199         WM_PAINT, this is the correct way of doing things
8200         - UpdateBelow shouldn't invalidate the scrollbar area
8201         - Cap the top on update below in case the node was above the top
8202         of the viewport rectangle.
8203         - ExpandBelow and Collapse below need to obey Begin/End Update.
8204         * TreeNode.cs: Make is_expanded internal so the treenode
8205         collection can change it without firing the whole event chain.
8206         * TreeNodeCollection.cs: When clearing all the child nodes make
8207         sure to recalc the visible order.
8208         - Improve algo for remove the top node
8209
8210 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
8211
8212         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
8213           SendMessage directly calling window procedures, which in turn might
8214           call SetFocus()
8215
8216 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
8217
8218         * Control.cs: Don't handle WM_SETFOCUS if the same window already
8219           has focus (works around X11 sending a FocusIn after our SetFocus)
8220         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
8221
8222 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
8223
8224         * Mime.cs: Fix for the NET_2_0 build.
8225           NameValueCollection needs StringComparer now.
8226
8227 2006-05-31  Chris Toshok  <toshok@ximian.com>
8228
8229         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
8230         return (via an out parameter) the starting X of the column.
8231         (UpdateVisibleColumn): track change to FromPixelToColumn.
8232         (HitTest): add a ColumnResize case here.
8233         (DrawResizeLine): new function, probably poorly named.
8234
8235         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
8236         only need to keep one reference.
8237         (set_ListManager): same.
8238         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
8239         Also, add support for HitTestType.ColumnResize.
8240         (OnMouseMove): add column resize behavior here, and change the
8241         cursor to the correct one as we move around the datagrid.
8242         (OnMouseUp): terminate the column resize if we're resizing.
8243         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
8244         for the current cell.
8245         (ConnectListManagerEvents): use cached_currencymgr.
8246         (DisconnectListManagerEvents): fill this in, using
8247         cached_currencymgr.
8248         (SetCurrentCell): remove cached_currencymgr_events handling.
8249         (SetDataMember): only call DisconnectListManagerEvents if
8250         cached_currencymgr is != null.
8251         (SetDataSource): same.
8252         (OnListManagerCurrentChanged): cached_currencymgr_events ->
8253         cached_currencymgr.
8254
8255 2006-05-31  Jackson Harper  <jackson@ximian.com>
8256
8257         * BindingManagerBase.cs: Remove somedebug code that creeped into
8258         SVN.
8259         * TreeNode.cs: We get the indent level dynamically right now, so
8260         don't track it as a member.
8261         * TreeNodeCollection.cs: Make sure all nodes added to the list
8262         have parents, treeviews/topnodes setup properly.
8263         - Don't attempt to track indent level.
8264
8265 2006-05-30  Jackson Harper  <jackson@ximian.com>
8266
8267         * BindingContext.cs: Create the currency manager tables here.
8268         This allows us to more easily create null tables (when bad data
8269         members are used), and more easily create related currency
8270         managers.
8271         * CurrencyManager.cs: All the table creation stuff is done by the
8272         binding context now.
8273         - Current should throw an exception if listposition is -1.
8274         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
8275         been bound yet.
8276
8277 2006-05-30  Mike Kestner  <mkestner@novell.com>
8278
8279         * ListView.cs: allow reexpansion of zero-width column headers.
8280         Fixes #78528.
8281
8282 2006-05-28  Chris Toshok  <toshok@ximian.com>
8283
8284         * CurrencyManager.cs (get_Current): after the late binding
8285         listposition = -1 fix, we need to guard against it here and return
8286         null, otherwise we raise an exception (which is swallowed
8287         elsewhere, and breaks datagrid databinding.)
8288
8289 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
8290
8291         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
8292           than WM_SYSKEY, don't throw if get something unexpected (#78507)
8293
8294 2006-05-26  Jackson Harper  <jackson@ximian.com>
8295
8296         * ControlPaint.cs:
8297         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
8298         values, it's faster and it's all we care about (we don't care if
8299         the names aren't equal).
8300         * KeyboardLayouts.cs: Eliminate some dead code.
8301         - Lazy init things
8302         * X11Keyboard.cs: Lazy init keyboard detection.
8303         - Cleanup access modifiers a little.
8304
8305 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
8306
8307         * XplatUIX11.cs: Once again, attempting to get layout just right.
8308
8309 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
8310
8311         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
8312           the sizes of each link section, that will result in sizes that
8313           match DrawString's layout (Fixes #78391)
8314
8315 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
8316
8317         * FileDialog.cs: If AddExtension property is true autocomplete the
8318           extensions in SaveFileDialog correctly. Fixes bug #78453.
8319           Set MyNetwork and MyComputer to "C:\" for windows. This should
8320           fix part 8 of bug #78446 for now.
8321
8322 2006-05-26  Chris Toshok  <toshok@ximian.com>
8323
8324         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
8325         invalidate the current row header if we need to, but presumably
8326         we'll invalidate the row corrsponding to the bounds or
8327         editingControl.
8328         (GridHScrolled): switch back to this method, as it's part of the
8329         public api.  *sigh*.
8330         (GridVScrolled): same.
8331         (OnMouseWheel): hack up something that more or less works.  Call
8332         GridHScrolled/GridVScrolled directly, instead of duplicating much
8333         of their code here.
8334         (EnsureCellVisibility): reinstate a bunch of this code, since we
8335         can't just set the scrollbar Value and expect to do all the work
8336         in the ValueChanged handler.  Also, Call Update() after scrolling
8337         in one direction so the other XplatX11.ScrollWindow call has the
8338         proper stuff in the proper places.
8339         (EditCell): set is_editing to true before calling .Edit.
8340
8341         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
8342         don't bother comparing first.
8343         (OnKeyPress): call grid.ColumnStartedEditing before calling
8344         base.OnKeyPress.  this will set is_changing and invalidate the row
8345         header if necessary.
8346         (ProcessKeyMessage): for WM_CHAR messages, call
8347         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
8348         and WM_KEYDOWN.
8349         
8350         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
8351         it's done in the DataGrid.
8352         (NextState): call grid.ColumnStartedEditing, which takes care of
8353         invalidating the row header (and setting is_changing).
8354
8355         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
8356         here.  it's done in the DataGrid.
8357
8358 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8359
8360         * Control.cs: allow changing the cursor when the mouse position is
8361         out of bounds but Capture is set.
8362         * LinkLabel.cs: handle the case when the mouse button is pressed on the
8363         linklabel but released somewhere else.
8364
8365 2006-05-25  Jackson Harper  <jackson@ximian.com>
8366
8367         * TreeView.cs: When we get focus if there is no selected node make
8368         it the top node
8369         - Remove some uneeded setup code from Draw.
8370         * TreeNodeCollection.cs: If the tree doesn't have a top node when
8371         a new node is inserted make the new node the top.
8372         * XplatUIX11.cs:
8373         * Timer.cs: Use Utc time so that no local time zone stuff needs to
8374         be used (should be faster).
8375         
8376 2006-05-25  Chris Toshok  <toshok@ximian.com>
8377
8378         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
8379         problem with the last commit.
8380
8381 2006-05-25  Chris Toshok  <toshok@ximian.com>
8382
8383         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
8384         need the invalidate call here, while scrolling right-to-left via
8385         the left arrow key (i.e. moving the editing cell while scrolling).
8386
8387         * DataGrid.cs (.ctor): remove the initialization of
8388         ctrl_pressed/shift_pressed.  We no longer track them using key
8389         up/down handlers, but by using Control.ModifierKeys.  Also, switch
8390         to using ValueChanged handlers on the scrollbars instead of
8391         Scrolled event handlers.  This simplifies a bunch of the scrolling
8392         code.
8393         (GridHValueChanged): rename from GridHScrolled, and change it to
8394         work with the new event args.
8395         (GridVValueChanged): same.
8396         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
8397         (OnMouseWheel): actually scroll the datagrid.  Don't change the
8398         selected cell.
8399         (ProcessGridKey): correct all the keyboard navigation stuff I
8400         could find.  Ctrl up/down/left/right/home/end work now.
8401         (EnsureCellVisibility): correct method name spelling.  Also,
8402         simplify this a touch by not explicitly calling the
8403         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
8404         scrollbar value.
8405         (OnKeyUpDG): no need for this method now.
8406         
8407 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8408
8409         * LinkLabel.cs: display the OverrideCursor when hovering the label.
8410         Fixes bug #78392.
8411
8412 2006-05-25  Chris Toshok  <toshok@ximian.com>
8413
8414         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
8415         r61019.
8416
8417 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8418
8419         * Application.cs: Moved setting of is_modal and closing to before
8420           we create the control, to allow the event handlers called as a
8421           result of creation affect closing. Also removed Gonzalo's previous
8422           change to setting DialogResult, the behaviour has been moved to 
8423           Form.ShowDialog()
8424         * Form.cs: 
8425           - ShowDialog(): Removed explicit creation of the form, let RunLoop
8426             handle it instead
8427           - ShowDialog(): If no dialog result is set, we need to return Cancel
8428           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
8429             the close is cancelled
8430
8431 2006-05-25  Jackson Harper  <jackson@ximian.com>
8432
8433         * StatusBar.cs: We only need to update the sizes of the other
8434         panels when we have auto size contents.  Also we are only updating
8435         the contents of the panel, not the borders, so compensate for the
8436         border width (TODO: get this width from the theme somehow).
8437         * TreeView.cs: Scrollable is true by default
8438         - Use invalidate instead of refresh where needed
8439         - Factor the scrollable value into scrollbar updating
8440         - Update the scrollbars if the Scrollable property is altered
8441         - Update the selected node if its ImageIndex is changed
8442         - Handle null nodes in UpdateNode (mainly so we don't have to
8443         check if selected is null when updating it
8444         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
8445         are factored into the visible count
8446         - Use VisibleCount for clarity in the code
8447         - When the font is changed we need to recurse through all the
8448         nodes and invalidate their sizes
8449         
8450 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8451
8452         * Application.cs: set the DialogResult to fixed when the main form is
8453         hidden or destroyed while being modal.
8454
8455 2006-05-25  Miguel de Icaza  <miguel@novell.com>
8456
8457         * Theme.cs: Use Tangoified messagebox icons. 
8458
8459         (GetSizedResourceImage): Also cope with width = 0 and do not
8460         trigger a warning in that case (0 means "give me your icon from
8461         the resouce, no special size needed).
8462
8463 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8464
8465         * Application.cs: Leave runloop if the the main modal form is 
8466           hidden (fixes #78484)
8467
8468 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
8469
8470         * BindingContext.cs : reject null datasource in Contains() and
8471           Item[].
8472         * CurrencyManager.cs : check data_member validity when data_source
8473           is dataset. When it is late binding, the initial position is -1.
8474
8475 2006-05-24  Jackson Harper  <jackson@ximian.com>
8476
8477         * TreeNodeCollection.cs: Dont't recalculate the visible order on
8478         inserted nodes that aren't visible.  This changes the
8479         max_visible_order which confuses scrollbar settings.
8480         - Use the enumerator to get the prev node instead of duplicating
8481         code.
8482         * TreeView.cs: Use new method for setting scrollbar values
8483         - Don't set the bounds every time the scrollbar is updated
8484         - When updating below the root node use an invalidate instead of a
8485         refresh to prevent the child controls (scrollbars) from being
8486         refreshed. (UpdateBelow still needs to be reworked anyways).
8487         - Reenable SetBottom now that visible orders are set correctly,
8488         added some debug code incase we ever get bad values there again.
8489         - Set the scrollbar max to 2 less then the max value, this
8490         compensates for the max value being one above the node count, and
8491         for scrollbars adding one extra "notch".
8492         - When drawing image nodes if there is an imagelist we draw the
8493         first image in the list if the supplied image index is out of the
8494         image list's bounds.
8495         
8496 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8497
8498         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
8499           we receive a size change from the WM (Fixes #78503)
8500
8501 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
8502
8503         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
8504           rectangle (Fixes #78501)
8505
8506 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8507
8508         * ButtonBase.cs: 
8509           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
8510             as a bitfield.
8511           - Fixed MouseMove to no longer switch pressed state unless the left
8512             mouse button is pressed. Atsushi provided the original patch (#78485)
8513           
8514 2006-05-24  Jackson Harper  <jackson@ximian.com>
8515
8516         * ScrollBar.cs: New internal methods that allow us to change a
8517         couple values on the scrollbar (the most common case is maximum
8518         and large change) without getting multiple invalidates.
8519
8520 2006-05-24  Chris Toshok  <toshok@ximian.com>
8521
8522         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
8523         (Edit): save off the original state in oldState, and set
8524         grid.is_editing to true.
8525         (OnKeyDown): abort editing if escape is pressed.  also, call
8526         NextState if space is pressed.
8527         (OnMouseDown): call NextState.
8528         (NextState): factor out shared code from OnKeyDown and OnMouseDown
8529         here.  Also, only invalidate the row header once (on the initial
8530         is_changing switch) to save on redraws.
8531
8532 2006-05-24  Chris Toshok  <toshok@ximian.com>
8533
8534         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
8535         if the value in the cell is different than it was before.  This
8536         keeps us from triggering a layout when we move around a datarid
8537         with a highlighted cell.
8538         (Edit): suspend layout when creating/positining the text box, and
8539         resume passing false so we don't ever actually re-layout.
8540         (ReleaseHostedControl): same.
8541         (EnsureTextBox): reformat slightly, and set WordWrap to false.
8542
8543         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
8544         control-key sequences should go to the datagrid - remove that
8545         lock.  Also, modify the conditions under which we move between
8546         cells when moving the cursor within a cell, and remove the "this"
8547         and "base" from field accesses.  We weren't even consistent, given
8548         they all were in the base class.
8549
8550 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
8551
8552         * Binding.cs : (.ctor)
8553           An obvious NRE fix for BindingTest.CtorNullTest().
8554
8555 2006-05-23  Chris Toshok  <toshok@ximian.com>
8556
8557         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
8558         them between lines.  This fixes some quirks editing cells in the
8559         datagrid.
8560
8561 2006-05-23  Jackson Harper  <jackson@ximian.com>
8562
8563         * TreeView.cs: Use begin/end update when doing expand/collapse all
8564         so that we don't get flicker on the scrollbar.
8565
8566 2006-05-23  Jackson Harper  <jackson@ximian.com>
8567
8568         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
8569         treenode calculations to be independant of the painting code. To
8570         do this nodes track a visible order which is calculated by the
8571         treeview.
8572         - Call new methods for expanding/collapsing nodes.  These methods
8573         use scrollwindow so we don't have to update everything below the
8574         node.
8575         * TreeView.cs: Refactored drawing and scrolling code.  We don't
8576         need to update nodes when drawing anymore or calculate scrollbar
8577         stuff.
8578         - Added new methods for expanding/collapsing nodes. These methods
8579         use ScrollWindow so as to not have to redraw all the nodes below.
8580         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
8581         we add/remove nodes or sort.
8582         - Handle removing the selected and the top node properly.
8583
8584 2006-05-23  Chris Toshok  <toshok@ximian.com>
8585
8586         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
8587         maybe this should actually happen in the datagrid code?
8588         (EndEdit): no need to invalidate anything, given that
8589         ReleaseHostedControl causes the datagrid to relayout, which
8590         invalidates everything anyway.
8591
8592         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
8593         in SetCurrentCell).
8594         (set_SelectionBackColor): call InvalidateSelection instead of
8595         Refresh.
8596         (set_SelectionForeColor): same.
8597         (BeginEdit): Flesh this out a bit.
8598         (CancelEditing): only do any of this if we're editing/adding.
8599         (EndEdit): same.
8600         (OnMouseDown): there's no need to cancel editing here, it's done
8601         in SetCurrentCell.
8602         (SetCurrentCell): only invalidate the current row header if it's a
8603         different row than the new one.
8604         (ShiftSelection): fix this to work like MS does.
8605         (ResetSelection): factor out the invalidation of selected_rows to
8606         InvalidateSelection.
8607         (SetDataSource): cancel any editing that's going on.
8608
8609         * DataGridColumnStyle.cs
8610         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
8611         call the non-interface version.
8612
8613         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
8614         header rectangle with the clip rectangle so we don't redraw the
8615         entire header for just a small area.  Gets rid of the last flicker
8616         when horizontally scrolling.
8617         (DataGridPaintRow): same.
8618
8619 2006-05-23  Mike Kestner  <mkestner@novell.com>
8620
8621         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
8622         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
8623         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
8624         Critical bug report.
8625
8626 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
8627
8628         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
8629           and this fixes #78493
8630
8631 2006-05-23  Miguel de Icaza  <miguel@novell.com>
8632
8633         * Theme.cs (GetSizedResourceImage): Scale images if the proper
8634         size is not found.  
8635         
8636         * FileDialog.cs: Do not change the background for the side bar as
8637         it wont work nicely with the theme, and also reduces the artifacts
8638         in rendering the icons (which I want to fix too).
8639
8640         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
8641         resources, not resgen resources. 
8642
8643         (PlatformDefaultHandler): Pull images using the new API.
8644
8645 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
8646
8647         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
8648           a reference to the hwnd and will not remove it unless there are
8649           no pending exposures (fixes #78341)
8650         * XplatUI.cs: Improved debug
8651
8652 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
8653
8654         * MenuAPI.cs : don't handle OnClick event when it was not the left
8655           button. Fixed bug #78487.
8656
8657 2006-05-23  Mike Kestner  <mkestner@novell.com>
8658
8659         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
8660         prefer submenus to the top menu for item lookup, to avoid popping down
8661         top-row items.
8662
8663 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
8664
8665         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
8666           Graphics.FillRectangle as the visual results are really bad (even
8667           on win). We now draw perfect arrows (and perfect shadows when the
8668           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
8669           Pen.DashPattern to draw the dots of each line.
8670
8671 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
8672
8673         * FileDialog.cs: Update the filename combobox when navigating through
8674           the ListView with the cursor keys. Fixes part 7 of bug #78446.
8675
8676 2006-05-22  Mike Kestner  <mkestner@novell.com>
8677
8678         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
8679         Fixes #78463.
8680
8681 2006-05-22  Mike Kestner  <mkestner@novell.com>
8682
8683         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
8684         requests. Fix a misspelled parameter and a copy paste exception error
8685         in Select.
8686
8687 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
8688
8689         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
8690           to get the same width/height (5/13) on X11 as the default font has on
8691           win32. This means that our DefaultFont emSize is smaller than the 
8692           the MS SWF equivalent (even thought the width/height stays the same)
8693
8694 2006-05-20  Jackson Harper  <jackson@ximian.com>
8695
8696         * MdiClient.cs:
8697         * MdiWindowManager.cs:
8698         * InternalWindowManager.cs: Make sure to use the border width from
8699         the theme.
8700
8701 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
8702
8703         * PrintDialog.cs: Implements printer details
8704
8705 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
8706
8707         * FileDialog.cs: Added focus handling for PopupButtonPanel.
8708           Fixes part 1 and 2 of bug #78446
8709
8710 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
8711
8712         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
8713           instead of sticking to the first ever calculated value
8714
8715 2006-05-19  Mike Kestner  <mkestner@novell.com>
8716
8717         * ComboBox.cs: fix mouse motion selection to use MousePosition and
8718         PointToClient, since Capture is set. Fixes #78344.
8719
8720 2006-05-19  Mike Kestner  <mkestner@novell.com>
8721
8722         * ListView.cs: match MS behavior in Details view where items are not
8723         drawn if Columns.Count == 0. 
8724         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
8725         Use a separate pen to draw the check, since changing the width affects
8726         the box as well.  Fixes #78454.
8727
8728 2006-05-18  Miguel de Icaza  <miguel@novell.com>
8729
8730         * ListView.cs: ArgumentOutOfRangeException, single versions of the
8731         exception should throw the name of the invalid argument.
8732
8733         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
8734         there are no files listed. 
8735
8736 2006-05-18  Jackson Harper  <jackson@ximian.com>
8737
8738         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
8739         up.
8740
8741 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
8742
8743         * Control.cs: Brought back our old UpdateZOrder method as a private
8744           function and switched our calls from UpdateZOrder to the new one.
8745           This fixes the Paint.Net canvas disappearing bug.
8746
8747 2006-05-18  Jackson Harper  <jackson@ximian.com>
8748
8749         * Theme.cs:
8750         * ThemeWin32Classic.cs:
8751         * InternalWindowManager.cs: Move the drawing into the theme,
8752         expose everything the theme should need from the window manager.
8753
8754 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8755
8756         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
8757           from the call to NativeWindow to avoid walking up the parent chain
8758           further than needed (speeds up setting cursors and avoids setting
8759           the wrong cursor if a parent has another cursor defined)
8760         * Cursor.cs: When loading an icon as cursor, MS uses the center of
8761           the icon as hotspot, not what's contained as hotspot in the icon
8762           file. This fixes the perceived drawing offset seen with Paint.Net
8763         
8764 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
8765
8766         * XplatUIX11.cs: 
8767           - Store the calculated rectangle in Hwnd object and use it when 
8768             setting the client size
8769           - Force Toolwindows to always be type Dock, to ensure they're on top
8770
8771 2006-05-18  Mike Kestner  <mkestner@novell.com>
8772
8773         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
8774         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
8775         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
8776         Substantial refactoring to remove confusing nested classes. Coding
8777         standard and Get+Set->property refactorings.  Shift to index based
8778         highlighting in ComboListBox instead of constantly using IndexOf and
8779         Items[]. Add invalidations on resize for DropDownList to fix ugliness
8780         in FileDialog growth.  Draw borders manually since Simple mode needs
8781         to look like two independent controls.  Make listbox border
8782         conditional to DropDownStyle.  Improved OwnerDraw support.
8783
8784 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
8785
8786         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
8787         Don't set the disposed graphics to null, so we can throw the "right"
8788         exception if the graphics is reused later (added a flag to avoid 
8789         double disposing). Some behaviours are different under 2.0 and are
8790         filled under bug #78448.
8791
8792 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8793
8794         * Control.cs: When double-buffering is enabled, we need to reset
8795           our graphics context between paint calls. Otherwise, any 
8796           transformations and other alterations on the context will 
8797           become cumulative (#77734)
8798
8799 2006-05-18  Mike Kestner  <mkestner@novell.com>
8800
8801         * ListView.cs: do focused item selection like MS on clicks. 
8802         Rework focus handling for ItemControl so LostFocus invalidates as
8803         well.
8804         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
8805         the ListView ItemControl has focus.
8806
8807 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
8808
8809         * XplatUIX11.cs: If client_window ends up being width or height zero
8810           due to border settings, move it off window inside whole_window (#78433)
8811
8812 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8813
8814         * Mime.cs: Shrink the mime file cache correctly.
8815
8816 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8817
8818         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
8819
8820 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8821
8822         * XplatUIX11.cs (AddExpose): More sanity checks
8823
8824 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8825
8826         * XplatUIX11.cs:
8827           - AddExpose: Don't add expose ranges outside the size of our
8828             window
8829           - Cast opacity values to Int32 to avoid crashes with certain
8830             values
8831           - Added disabled code paths that protect against illegal cross-
8832             thread painting (Developers.exe)
8833
8834 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8835
8836         * ProgressBar.cs: Invalidate the control when it's resized
8837           since block size is based on control size. (#78388)
8838
8839 2006-05-16  Miguel de Icaza  <miguel@novell.com>
8840
8841         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
8842         of setting the incoming argument to the "reset" value, we set the
8843         this.datamember to string.empty (before we were invalidating the
8844         incoming data).   
8845
8846         Fixes 78420
8847
8848 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8849
8850         * Form.cs: Only apply transparency settings after the form
8851           is created. (Fixes #77800)
8852
8853 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8854
8855         * ApplicationContext.cs: Grab the HandleDestroyed event so
8856           we know when to fire OnMainFormClosed 
8857
8858 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8859
8860         * Application.cs: Introduced sub-class to allow tracking of
8861           threads and centralized triggering of the event mess for
8862           ThreadExit, AppExit, etc..  (#76156)
8863
8864 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
8865
8866         * MimeIcon.cs:
8867           - Do not return a null icon index value for a mime subclass.
8868             Instead try the main mime type class too.
8869           - Seems that some newer distributions don't have a link to some
8870             gnome default icons anymore. So check the default gnome dir too.
8871           
8872
8873 2006-05-16  Jackson Harper  <jackson@ximian.com>
8874
8875         * MdiClient.cs: Don't paint the parent background image if we have
8876         our own background image.
8877
8878 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8879
8880         * Control.cs:
8881           - PerformLayout: Do not shrink space filled by DockStyle.Fill
8882             controls, all filled controls are supposed to overlap (#78080)
8883           - UpdateZOrder is supposed to update the control's z-order in the
8884             parent's z-order chain. Fixed to behave like that
8885           - BringToFront: Removed obsolete code
8886           - SendToBack: Simplyfied
8887           - SetChildIndex: Trigger layout calculations when Z-order changes
8888             since layout is done by z-order
8889
8890 2006-05-16  Chris Toshok  <toshok@ximian.com>
8891
8892         [ fixes bug #78410 ]
8893         * DataGrid.cs (set_AlternatingBackColor): use
8894         grid_drawing.InvalidateCells instead of Refresh().
8895         (set_BackColor): call grid_drawing.InvalidateCells.
8896         (set_BackgroundColor): use Invalidate instead of Refresh.
8897
8898         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
8899         invalidate the cell area.
8900
8901 2006-05-15  Chris Toshok  <toshok@ximian.com>
8902
8903         [ fixes bug #78011 ]
8904         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
8905         on to DataGridPaintRow.
8906         (DataGridPaintRow): take a clip argument, and only draw the cells
8907         which intersect it.  same with the not_usedarea.
8908
8909         * Theme.cs (DataGridPaintRow) add @clip parameter.
8910
8911         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
8912         XplatUI.ScrollWindow.
8913         (ScrollToRow): same.
8914
8915         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
8916         with last column which was causing a gray swath to appear with the
8917         XplatUI.ScrollWindow code.
8918
8919 2006-05-15  Chris Toshok  <toshok@ximian.com>
8920
8921         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
8922         use XplatUI.ScrollWindow.
8923         (VerticalScrollEvent): use XplatUI.ScrollWindow.
8924
8925 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
8926
8927         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
8928
8929 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8930
8931         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
8932           file since there are no equivalent X11 cursors
8933
8934 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8935
8936         * MonthCalendar.cs : DateTimePicker should reflect selected date
8937           on mouse*up*, not mouse*down*. Fixed originally reported part of
8938           bug #76474.
8939
8940 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8941
8942         * TabControl.cs : When argument index is equal or more than tab
8943           count, just ignore. Fixed bug #78395.
8944
8945 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8946
8947         * Control.cs: Dispose all child controls when control is diposed (#78394)
8948
8949 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8950
8951         * ColorDialog.cs: Finally it is possible to select the color with
8952           the text boxes
8953
8954 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8955
8956         * PrintDialog.cs: Fix typo
8957
8958 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8959
8960         * PrintDialog.cs: PrintDialog is not resizable
8961         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
8962           color. Made some ToolBar drawing methods protected virtual.
8963
8964 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
8965
8966         * PrintDialog.cs: Implementation of the PrintDialog
8967
8968 2006-05-12  Chris Toshok  <toshok@ximian.com>
8969
8970         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
8971         thumb, instead use MoveThumb.  This has the side effect of making
8972         most of the other thumb moving machinery use MoveThumb as well.
8973         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
8974         need to actually invalidate the rectangle where the new thumb will
8975         go.
8976         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
8977         We force an Update() after, so it's not as fast as it could be,
8978         but at least there's zero flicker and no droppings.
8979         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
8980         (UpdateThumbPos): add another argument (dirty), which says whether
8981         or not to calculate/add dirty regions which we later invalidate.
8982         For cases where we know we're going to use MoveThumb, we pass
8983         false for this.  Otherwise, pass true.
8984
8985 2006-05-12  Jackson Harper  <jackson@ximian.com>
8986
8987         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
8988         the status bar.
8989         
8990 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
8991
8992         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
8993           and GetClipRegion methods and UserClipWontExposeParent property.
8994         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
8995           overriding UserClipWontExposeParent property, setting to false, since
8996           Win32 handles the required expose messages to draw our clipped parent
8997           areas internally
8998         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
8999           PaintEventStart to set the user clip region if set.
9000         * Control.cs: 
9001           - Now internally tracking the Region for the control since we need to
9002             store it if the handle is not yet created and only set it when it
9003             becomes created. Before setting the region forced handle creation
9004           - Added code to draw the parents underneath a user-clipped region
9005         * Hwnd.cs: Added UserClip property
9006
9007 2006-05-12  Chris Toshok  <toshok@ximian.com>
9008
9009         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
9010         (set_Maximum): same.
9011         (set_Minimum): same.
9012         (set_SmallChange): same.
9013         (OnMouseUpSB): remove the call to refresh when releasing the
9014         thumb.  We shouldn't need it.
9015         
9016 2006-05-12  Miguel de Icaza  <miguel@novell.com>
9017
9018         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
9019         AutoSize set to None, we do not need to relayout everything, we
9020         just need to invalidate the current region.
9021
9022         (Draw): Do not draw the entire ClientArea, just redraw the
9023         clip area being passed.
9024
9025         * MdiClient.cs: Make MdiClient constructor with the Form argument
9026         internal. 
9027
9028 2006-05-12  Jackson Harper  <jackson@ximian.com>
9029
9030         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
9031         parents background image,  but strangely not their own.
9032         - (DrawStatusBarPanel): Take into account horizontal alignment
9033         when drawing the strings and icons.
9034
9035 2006-05-12  Mike Kestner  <mkestner@novell.com>
9036
9037         * ListBox.cs: avoid invalidations for focus when the collection is
9038         empty. 
9039
9040 2006-05-12  Chris Toshok  <toshok@ximian.com>
9041
9042         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
9043         invalidate the entire thumb area.  Call InvalidateDirty which
9044         limits the redraw to the thumb itself and surrounding pixels.
9045
9046         * XplatUIX11.cs (ScrollWindow): optimize copying.
9047         
9048 2006-05-12  Chris Toshok  <toshok@ximian.com>
9049
9050         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
9051         Figure out the positioning/layout in a single pass instead of
9052         multiple recursive invocations.  Speeds up the initial display of
9053         the data grid.  Also, make many things private that were
9054         originally public but unused outside this class.
9055
9056 2006-05-11  Jackson Harper  <jackson@ximian.com>
9057
9058         * MdiClient.cs: Improved layout code.
9059
9060 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
9061
9062         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
9063           not SelectedObject.
9064
9065 2006-05-11  Chris Toshok  <toshok@ximian.com>
9066
9067         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
9068         union of that will always be {0,0,width,height}.
9069
9070 2006-05-11  Jackson Harper  <jackson@ximian.com>
9071
9072         * Form.cs: Match MS's DefaultSize for forms (they must have
9073         changed the size in sp2).
9074
9075 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
9076
9077         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
9078
9079 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
9080
9081         * TextControl.cs : Fixed bug #78109. This incorrect position
9082           comparison caused crash on automatic line split.
9083         * TextBoxBase.cs : reduce duplicate code.
9084
9085 2006-05-10  Jackson Harper  <jackson@ximian.com>
9086
9087         * MdiClient.cs: Active form is only sent to the back when using
9088         the Next form functionality, when a form is clicked the current
9089         active shouldn't be sent to the back.
9090         - Layout the mdi windows when the container is first made visible.
9091         * Form.cs: Give the MdiClient a ref to the containing form when we
9092         create it.
9093         
9094 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
9095
9096         * LinkLabel.cs : link_font could be uninitialized, so populate one
9097           before actual use. Fixed bug #78340.
9098
9099 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
9100
9101         * XplatUIX11.cs : clipboard format native value is IntPtr.
9102           Fixed bug #78283.
9103
9104 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9105
9106         * Control.cs: 
9107           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
9108             which is passed up the parent chain by DefWndProc
9109           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
9110             to DefWndProc (#77956)
9111         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
9112
9113 2006-05-10  Jackson Harper  <jackson@ximian.com>
9114
9115         * MdiClient.cs: We need to remove the controls from the mdi
9116         collection, when we close the window.
9117         * MdiWindowManager.cs: Special handling of closing mdi windows.
9118         * InternalWindowManager.cs: Make the close method virtual so the
9119         mdi window manager can handle it specially.
9120
9121 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
9122
9123         * DataGrid.cs:
9124           - Recalculate grid when the data source has changed
9125           - Matches styles provided by user from all data sources types
9126         * DataGridTableStyle.cs: For columns that provided by the user set the
9127         with the preferred value is there was unassigned.
9128         * CurrencyManager.cs: throw OnItemChanged event
9129
9130 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
9131
9132         * PictureBox.cs: Don't animate until handle is created. Start animation
9133           when handle is created.
9134
9135 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9136
9137         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
9138           current codebase.
9139         * XEventQueue.cs: We don't need to provide the extra info
9140
9141 2006-05-10  Jackson Harper  <jackson@ximian.com>
9142
9143         * MdiClient.cs: If the mdi clients parent form has a background
9144         image set, we draw that background image for the mdi area's
9145         background.
9146
9147 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
9148
9149         * TextBoxBase.cs: Set IBeam cursor (#78347)
9150
9151 2006-05-10  Mike Kestner  <mkestner@novell.com>
9152
9153         * ToolBar.cs: fix some text padding issues with ButtonSize
9154         calculation. Update the default size to match MS documentation.
9155         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
9156         button size. Fixes #78296.
9157
9158 2006-05-10  Mike Kestner  <mkestner@novell.com>
9159
9160         * ListBox.cs: use is_visible for scrollbar positioning in case the
9161         control isn't on screen yet.  Fix off by one with Right vs Width
9162         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
9163         
9164 2006-05-10  Jackson Harper  <jackson@ximian.com>
9165
9166         * X11Dnd.cs: Drop to a control with another control on top of it.
9167         * ToolBar.cs: Work on a copy of the buttons list, so that it can
9168         be modified in click handlers. TODO: Look for similar problems in
9169         other controls.
9170
9171 2006-05-09  Jackson Harper  <jackson@ximian.com>
9172
9173         * Form.cs: Window managers need the old window state when setting
9174         window state now.
9175         * InternalWindowManager.cs: Allow the base mdi window manager to
9176         handle more of the MDI only stuff (like maximize buttons).
9177         * MdiWindowManager.cs: Fix some snafus in changing the window
9178         state.  Add all the menu functionality, for both popup and
9179         maximized menus.
9180         * MdiClient.cs: When a new form is selected the currently
9181         activated form is sent to the back, this matches MS.
9182         - Implement a new method to activate the next mdi child window.
9183
9184 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
9185
9186         * Control.cs: 
9187           - Added new InternalCapture method to allow controls to prevent
9188             the capture behaviour on the click handlers
9189           - Switched to use InternalCapture
9190         * ComboBox.cs:
9191           - Using InternalCapture to prevent mouse captures from being released
9192             on mouse button release (Fixes #78100)
9193         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
9194           returns Form borders if a caption is present. (Fixes #78310)
9195
9196 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
9197
9198         * TreeNode.cs: Changed serialization .ctor to not require every field
9199           to be present. (#78265)
9200         * OwnerDrawPropertyBag.cs: Added serialization .ctor
9201
9202 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
9203
9204         * MimeIcon.cs: for is faster than foreach for strings.
9205
9206 2006-05-05  Mike Kestner  <mkestner@novell.com>
9207
9208         * CheckedListBox.cs: update check handling code to not use selected.
9209         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
9210         behavior for visual feedback, motion response, shift/ctrl handling,
9211         and properly deal with all 4 selection modes. Updates to bounds
9212         handling logic.  Add scroll wheel support. [Fixes #77842]
9213
9214 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
9215
9216         * ListView.cs:
9217           - Moved adding of Implicit controls into .ctor. That way, subsequent
9218             creation of the controls will not cause them to think they are 
9219             toplevel windows (fixes #78200 header problem)
9220           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
9221           - Switched visibility setting of header control to use internal field
9222             to avoid triggering handle creation
9223           - Now checking if handle is created before causing a refresh when items
9224             are added (This makes us now match handle creation time with MS)
9225         * Splitter.cs: Removed loading of private splitter cursor, switched to
9226           Cursors version now that that is loading the right ones
9227         * Cursors.cs: Load proper splitter cursors from resources
9228         * Cursor.cs: Added second method of loading resource cursors for the 
9229           VS.Net users amongst us
9230
9231 2006-05-05  Mike Kestner  <mkestner@novell.com>
9232
9233         * ListView.cs: give header_control a minimum size based on the
9234         ListView size.
9235
9236 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
9237
9238         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
9239           window seems to do that with metacity, so set that type. (#78120)
9240
9241 2006-05-05  Mike Kestner  <mkestner@novell.com>
9242
9243         * ListViewItem.cs: fix Details mode checkbox layout bug.
9244         * ThemeWin32Classic.cs: draw a ListView column header for unused space
9245         at the end of the header, if it exists. [Fixes for #78200]
9246
9247 2006-05-04  Jackson Harper  <jackson@ximian.com>
9248
9249         * MdiClient.cs: Add a helper property to get the container form.
9250         * MdiWindowManager.cs: We have to make sure to use the menu origin
9251         when drawing the icons and buttons, this fixes maximized window
9252         icons/buttons on win32.
9253         * InternalWindowManager.cs: Reset the restore captions when a
9254         window goes from Maximized to Minimized and vice versa. Move the
9255         DrawMaximizedButtons into the MdiWindowManager source, tool
9256         windows can't be maximized. NOTE: This could use a little
9257         refactoring if time ever permits.
9258         
9259 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
9260
9261         * TextBox.cs: Add MWFCategoryAttributes
9262         * TextBoxBase.cs: Add MWFCategoryAttributes
9263         * Form.cs: Add MWFCategoryAttributes
9264
9265 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
9266
9267         * Control.cs: Add MWFCategoryAttributes
9268         * ScrollableControl.cs: Add MWFCategoryAttributes
9269
9270 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
9271
9272         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
9273           Divider is true. Fix a little glitch in PropertyToolBar
9274           drawing code
9275
9276 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
9277
9278         * Control.cs:
9279           - Dispose: Call base.Dispose, this causes the disposed event
9280             to be fired (and probably other, more important stuff)
9281           - SetVisibleCore: Set is_visible to true after creating the
9282             window so that the window still gets created invisible (if
9283             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
9284             to generate a WM_ACTIVE message
9285         * Form.cs: Call Dispose when we want to destroy the window, instead of
9286           just destroying the handle (Dispose will do that for us)
9287         * XplatUIX11.cs:
9288           - RootWindow also needs a queue, so we can properly process the
9289             property change events from RootWindow (like Activate)
9290           - Generatic synthetic WM_ACTIVE message when the active window is
9291             being destroyed
9292
9293 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
9294
9295         * LinkLabel.cs: Trigger a recalc of our label dimensions when
9296           bounds are changed
9297
9298 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
9299
9300         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
9301           for determining width and height (image might not be assigned if
9302           we're drawing an imagelist)
9303
9304 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
9305
9306         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
9307         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
9308           height from system
9309         * Theme.cs: No longer returns hardcoded menu height, instead calls
9310           new driver method
9311         * Form.cs (OnLoad): Scaling happens before triggering Load events 
9312           on MS (# 78257)
9313
9314 2006-05-01  Mike Kestner  <mkestner@novell.com>
9315
9316         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
9317
9318 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
9319
9320         * TextBoxBase.cs: Removed Fixme
9321         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
9322
9323 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
9324
9325         * XplatUIX11.cs:
9326           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
9327             the rectangle relative to the parent, considering borders. We
9328             don't really want that.
9329           - ScrollWindow: Fixed warning to be more understandable
9330         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
9331           scrollbars and scroll only the visible area
9332         * RichTextBox.cs: Removed debug output
9333
9334 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9335
9336         * NumericUpDown.cs (Text): Just use base
9337         * UpDownBase.cs: Ensure txtView is created before using it
9338
9339 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9340
9341         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
9342           casting to IntPtr to avoid 64bit overflow errors
9343
9344 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9345
9346         * Control.cs:
9347           - AllowDrop: Don't force handle creation.
9348           - CreateHandle: Added call to tell driver if we're allowed to drop
9349
9350 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9351
9352         * FileDialog.cs: Remember the last directory not only for the
9353           current instance but also for new FileDialog instances.
9354
9355 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9356         
9357         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
9358           broke sending async messages
9359
9360 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9361
9362         * XplatUIX11.cs:
9363           - ScrollWindow: Fixed method. We finally generate expose events again
9364             for scrolled areas. This was causing 'garbage' when scrolling
9365             textbox and other controls that used ScrollWindow
9366           - Switched from using the regular queue for paint events to the MS 
9367             model of 'generating' paint events when the queue is empty.
9368             We use the new XQueueEvent.Paint subclass to store which windows
9369             need painting.
9370           - AddExpose now takes the x/y/width/height of the exposed area
9371             and inserts the window into the paint queue if not already there
9372           - InvalidateWholeWindow: Switched to use new AddExpose method
9373           - UpdateMessageQueue: Added which queue to monitor for paint events
9374           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
9375             the unlikely case nothing above handles it. We reset the expose
9376             pending states to get them off the queue.
9377           - GetMessage: Now pulls a paint event if no other events are in the
9378             queue
9379           - Invalidate: Switched to new AddExpose method
9380           - PeekMessage: Updated to understand pending paint events
9381           - UpdateWindow: Fixed logic bug. We were only updating if the window
9382             didn't need updating. Also switched to sending WM_PAINT directly,
9383             like MS does.
9384         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
9385           and random access Remove(). The random access is needed to handle
9386           UpdateWindow() where a WM_PAINT is sent directly without accessing
9387           the queue.
9388         * ScrollBar.cs: Added Update() calls to cause immediate updates to
9389           allow for better feedback when scrolling. Scrollbars are small and
9390           the immediate update should make it 'feel' more responsive without
9391           slowing things down. ScrollBar still needs it's invaliate logic
9392           updated to not always invalidate the whole bar on certain changes.
9393
9394 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9395
9396         * Control.cs:
9397         (BackColor): if the control does not support a transparent background,
9398         return the default backcolor when the parent backcolor is transparent.
9399
9400 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
9401
9402         * Application.cs: Updated to new StartLoop/GetMessage API
9403         * RichTextBox.cs: Provide some output on RTF parsing errors
9404         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
9405           new queue_id argument to GetMessage and PeekMessage to allow faster
9406           handling of per-thread queues in drivers.
9407         * Hwnd.cs: Added Queue tracking and property
9408         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
9409         * XEventQueue.cs: Added thread trackingA
9410         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
9411         * XplatUIX11.cs:
9412           - Implemented new per-thread queue
9413           - GetMessage: Fixed return/break behaviour on several cases. We were
9414             returning stale messages in some cases, instead of just processing
9415             the next message
9416
9417 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9418
9419         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
9420
9421 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
9422
9423         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
9424           fixed off-by-one comparisons between Width/Height and Right/Bottom.
9425
9426 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9427
9428         * PropertyGridView.cs: Fix drop down width.
9429
9430 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9431
9432         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
9433           a mess in DrawToolBar, so I removed one of them.
9434
9435 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9436
9437         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
9438           needed (clip). Otherwise we get artifacts.
9439
9440 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9441
9442         * FixedSizeTextBox.cs: Added constructor to allow specifying which
9443           dimension is fixed
9444         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
9445           and switched FixedSizeTextBox to only be fixed vertical (#78116)
9446         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
9447           if it matches the scale base font (avoids unneeded scaling)
9448
9449 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9450
9451         * X11DesktopColors.cs: One gtk_init_check should be enough
9452
9453 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
9454
9455         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
9456           match MS behaviour
9457
9458 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9459
9460         * TextBoxBase.cs: 
9461           - Generate OnTextChanged for Backspace even if we're only deleting
9462             the current selection
9463           - When setting the Text property, only select all text if the
9464             control does not have focus when it is being set. Otherwise
9465             just place the cursor at the beginning of the control
9466
9467 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9468
9469         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
9470           Added a little helper to draw PropertyGrid ToolBar with a different
9471           border and a different BackColor.
9472         * PropertyGrid.cs: Some background parts didn't get painted with the
9473           correct background color. Added a class that helps us to draw the
9474           correct border for PropertyGridView and a class that helps us to
9475           draw ToolBars with a different backcolor
9476         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
9477
9478 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
9479
9480         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
9481         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
9482
9483 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9484
9485         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
9486           into the palette entries. Also, since we're working on a copy
9487           we needed to copy the palette back onto the bitmap.
9488         * Cursor.cs: Same fix as XplatUIWin32.cs.
9489
9490 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
9491
9492         * ImageListStreamer.cs: Need to read the var (or we're off)
9493
9494 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9495
9496         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
9497           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
9498           TextBoxBase.cs: Unused var fixes
9499         * AxHost.cs: Small 2.0 fix
9500         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
9501           as it seems that is what at least Metacity expects. This will make
9502           icons show up on 64bit platforms. We still have some 64bit size
9503           issues, though, since the startup app window size still won't match.
9504
9505 2006-04-25  Mike Kestner  <mkestner@novell.com>
9506
9507         * *.cs: cleanup newly reported exception var unused warnings.
9508
9509 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9510
9511         * ThemeWin32Classic.cs: Button image alignment now matches exactly
9512           ms
9513
9514 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9515
9516         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
9517           image. The image position is always the same, no matter if the
9518           button is pressed or not.
9519
9520 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9521
9522         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
9523           selection and set the correct filename for SaveFileDialog.
9524           Patch by Emery Conrad.
9525
9526 2006-04-24  Mike Kestner  <mkestner@novell.com>
9527
9528         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
9529         check for item.X outside the ClientRect instead of item.Y. Fixes
9530         #78151.
9531
9532 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9533
9534         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
9535         trust that value blindly and do some sanity check. Fixes bug #77814.
9536
9537 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9538
9539         * ImageListStreamer.cs: save the mask as a 1bpp image.
9540
9541 2006-04-21  Mike Kestner  <mkestner@novell.com>
9542
9543         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
9544         pass Checked and Indeterminate to the Theme Engine. Improve
9545         encapsulation with ListBox.
9546         * ListBox.cs: Keep a StringFormat instead of calculating it every item
9547         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
9548         nested types.  Move all CheckState functionality to CheckedListBox.
9549         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
9550         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
9551         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
9552         single base list. Fix scrollbar sizing and placement to mirror MS.
9553         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
9554         used.
9555         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
9556         for CheckedListBox by using new DrawItemState info.  Center the
9557         checkboxes on the items. Use new StringFormat property.
9558
9559 2006-04-18  Jackson Harper  <jackson@ximian.com>
9560
9561         * Form.cs: MdiChildren don't do default locations the same way as
9562         regular forms.  This prevents a crash when trying to position the
9563         mdi windows.
9564
9565 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
9566
9567         * PropertyGridTextBox.cs: Formatting, copyright
9568         * PropertiesTab.cs: Formatting
9569         * PropertyGrid.cs: Formatting
9570         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
9571           click toggling of values
9572           
9573 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
9574
9575         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
9576         * Control.cs (.ctor): verify_thread_handle is static, don't reset
9577           every time a control is created
9578         * Application.cs: Removed obsolete EnableRTLMirroring method
9579
9580 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
9581
9582         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
9583         SelectedIndex to -1. Fixes bug #78121.
9584
9585 2006-04-17  Jackson Harper  <jackson@ximian.com>
9586
9587         * Binding.cs: Handle null values for Current and BindingContext.
9588         This occurs when binding is a little delayed.
9589         * CurrencyManager.cs: return null for Current when there are no
9590         items in the list.
9591         - Hookup to the listchanged event on the DataView and update
9592         bindings when the list is changed.  This fixes late binding of
9593         controls.
9594
9595 2006-04-17  Jackson Harper  <jackson@ximian.com>
9596
9597         * X11Dnd.cs:
9598         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
9599         Ringenbach.
9600
9601 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
9602
9603         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
9604           place
9605         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
9606           with the correct ButtonState
9607
9608 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
9609
9610         * XplatUIX11.cs: Improved distinguishing between window types to
9611           tell the WM a type closer to what the app wants (Fixes #78107)
9612
9613 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
9614
9615         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
9616           GrabHandle
9617
9618 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
9619
9620         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
9621           drawing code to reflect the size grip changes
9622
9623 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9624
9625         * ImageListStreamer.cs: fix handling of the mask that follows the main
9626         bitmap when deserializing and serialize it properly. The generated mask
9627         should better be a 1bpp image, but I'll do that later.
9628
9629 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
9630
9631         * FileDialog.cs: Show something in the DirComboBox on *nix if the
9632           path doesn't fit into some of our Current.Places
9633
9634 2006-04-13  Jackson Harper  <jackson@ximian.com>
9635
9636         * ComboBox.cs: Use borders instead of drawing our own decorations,
9637         try to obey correct rules for heights.
9638         * Theme.cs:
9639         * ThemeNice.cs:
9640         * ThemeClearLooks.cs:
9641         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
9642         this is now handled by borders.
9643         - Remove unused DrawListBoxDecorationSize method.
9644         
9645 2006-04-13  Mike Kestner  <mkestner@novell.com>
9646
9647         * MenuAPI.cs: null guarding for the disbled click check fixes crash
9648         reported by Alex.
9649
9650 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
9651
9652         * ThemeWin32Classic.cs: 
9653           - Fixed CPDrawStringDisabled
9654           - Corrected drawing of disabled menu items
9655           - Fixed drawing of disabled radio buttons (bug #78095)
9656           - Draw check in a disabled CheckBox with color ControlDark 
9657
9658 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9659
9660         * Form.cs: Use the provided width when calculating the menu size;
9661           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
9662           and ClientSize.Width won't be updated yet
9663         * Application.cs: Use Visible instead of Show() to make form visible,
9664           this way we create the handle later and menusize is considered
9665
9666 2006-04-12  Mike Kestner  <mkestner@novell.com>
9667
9668         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
9669         reporting.
9670
9671 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9672
9673         * TextBox.cs: Implemented context menu
9674
9675 2006-04-12  Mike Kestner  <mkestner@novell.com>
9676
9677         * ListView.cs: implement box selection. fixes #77838.
9678         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
9679
9680 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
9681
9682         * XplatUIX11.cs: Added setting of window type when transient window
9683           is created (metacity would move it otherwise)
9684         * X11Structs.cs: Added WINDOW_TYPE atoms
9685         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
9686           background (the control is Opaque but still wants transparent
9687           backgrounds)
9688
9689 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9690
9691         * Control.cs: Added OnPaintBackgroundInternal to allow controls
9692           that set Opaque but don't mean it (like all ButtonBase-derived
9693           controls) to still draw their background
9694         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
9695           the background
9696
9697 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
9698
9699         * Control.cs (PaintControlBackground): Set the graphics object
9700           on our PaintEvent to null to prevent it from being disposed
9701           when the PaintEvent gets disposed
9702
9703 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
9704
9705         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
9706         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
9707
9708 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9709
9710         * Control.cs: 
9711           - Added transparency check to BackColor property. Transparent
9712             backgrounds are only allowed if the control styles permit it
9713           - Added recursive painting of parent control background and
9714             foreground if a control with a transparent backcolor is drawn
9715             (Thanks to Tim Ringenback for providing his 'hack' as a base
9716              for this patch) Fixes #77985 and #78026.
9717           - Added Opaque style check before calling OnPaintBackground, no
9718             need to draw the background if the control is opaque
9719           - Removed ControlAccessibleObject owner variable (inherited from
9720             base, no need to define again)
9721           - Added some documentation links explaining the drawing events
9722             and styles
9723
9724 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
9725
9726         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
9727           that the affected control is the located at the left border of our
9728           parent (Fixes #77936)
9729
9730 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9731
9732         * TextBoxBase.cs: When rendering disabled or readonly controls,
9733           draw the background with 'Control' instead of 'Window' color as
9734           long as the user hasn't specifically set a color
9735
9736 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
9737
9738         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
9739           since that won't be updated if the user types text (only if it's
9740           programatically set)
9741
9742 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9743
9744         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
9745           layout changes do to app-triggered resizes will have the proper
9746           display rectangle for layout
9747
9748 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
9749
9750         * ThemeWin32Classic.cs:
9751           - Make use of the SystemBrushes and SystemPens wherever possible
9752           - Corrected some highlight colors
9753           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
9754             drawing
9755         * Theme.cs: Added Empty field to CPColor struct
9756
9757 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9758
9759         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
9760           is displayed when calculating the display rectangle. Thanks to Mike
9761           for teaching me the err of my ways.
9762
9763 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
9764
9765         * ScrollableControl.cs:
9766           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
9767             (instead of 0,0) and we now return the real width/height instead of
9768             just the clientrectangle, adjusted for padding. The rectangle is
9769             now cached and created by the new CalculateDisplayRectangle method.
9770           - Created new CalculateDisplayRectange method, which basically does
9771             what get_DisplayRectangle() did originally, but now using the 
9772             right edge instead of DisplayRectangle to determine the size of
9773             our scrollbars
9774           - get_Canvas(): Fixed it to properly calculate canvas for 
9775             right/bottom controls which seem to be placed to the right/bottom
9776             of any controls that have a fixed location
9777           - Removed TODO that's taken care of
9778           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
9779             and SetDisplayRectLocation according to new MSDN2 docs
9780           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
9781             event when that is called, this is added for compatibility
9782           - ScrollControlIntoView(): Implemented.
9783           - Switched scrollbars to be implicit, they shouldn't be selectable
9784         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
9785           call it when the active control is set/changed
9786         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
9787         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
9788           implicit_control variable (used for native Win32 message generation)
9789         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
9790           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
9791         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
9792         * XplatUIStructs.cs: Added ScrollBarCommands enum
9793
9794 2006-04-10  Jackson Harper  <jackson@ximian.com>
9795
9796         * ButtonBase.cs:
9797         * CheckedListBox.cs:
9798         * ComboBox.cs:
9799         * DataGrid.cs:
9800         * DataGridView.cs:
9801         * Form.cs:
9802         * GroupBox.cs:
9803         * ListBox.cs:
9804         * PrintPreviewControl.cs:
9805         * ProgressBar.cs:
9806         * PropertyGrid.cs:
9807         * Splitter.cs:
9808         * StatusBar.cs:
9809         * TrackBar.cs:
9810         * UpDownBase.cs: Fixup base event overrides.
9811         
9812 2006-04-06  Mike Kestner  <mkestner@novell.com>
9813
9814         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
9815         all user-initiated value changes to min <= value <= max-thumbsz+1.
9816         (set_Value): check for vert/horiz when calculating new thumb position.
9817         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
9818         like MS does.
9819         (OnMouseMoveSB): refactor the thumb dragging code and refine
9820         invalidation logic to reduce flicker.
9821         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
9822         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
9823         (UpdateThumbPosition): small code readability cleanup
9824
9825 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
9826
9827         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
9828           different
9829
9830 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9831
9832         * ThemeNice.cs: Use a better graphics effect when a button is pressed
9833
9834 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9835
9836         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
9837         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
9838           This dramatically reduces the number of Pen.Dispose calls. 
9839           Where possible call ResPool methods only once instead of calling it
9840           over and over again (for example for the same color).
9841
9842 2006-04-06  Mike Kestner  <mkestner@novell.com>
9843
9844         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
9845         Also remove an unused private field on the collection. Fixes #77972.
9846
9847 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9848
9849         * ThemeNice.cs: Added ToolBar drawing code
9850
9851 2006-04-06  Mike Kestner  <mkestner@novell.com>
9852
9853         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
9854         I'm assuming that means we need to look up the toplevel for the
9855         provided control. Fixes the crash trace in #77911 but exposes another
9856         crash in some strange reflection usage in NDocGui.
9857
9858 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9859
9860         * ThemeNice.cs: Gave it a little silver touch and added Images
9861           method
9862         * FontDialog.cs: FontDialog is not resizable
9863         * FileDialg.cs: Added SizeGripStyle.Show
9864
9865 2006-04-05  Jackson Harper  <jackson@ximian.com>
9866
9867         * KeyboardLayouts.cs: Remove warning.
9868
9869 2006-04-05  Jackson Harper  <jackson@ximian.com>
9870
9871         * Control.cs: Enable OnPaintInternal so we can use it for drawing
9872         all of our controls instead of Paint +=.
9873         * ListBox.cs:
9874         * ListView.cs:
9875         * MenuAPI.cs:
9876         * MessageBox.cs:
9877         * NotifyIcon.cs:
9878         * ProgressBar.cs:
9879         * ScrollBar.cs:
9880         * Splitter.cs:
9881         * StatusBar.cs:
9882         * TabControl.cs:
9883         * TextBoxBase.cs:
9884         * ToolBar.cs:
9885         * TrackBar.cs:
9886         * UpDownBase.cs:
9887         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
9888         use OnPaintInternal. Remove Width/Height and Visible checks in
9889         paint handler, this is done at a higher level now.
9890         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
9891         * PaintEventArgs.cs: Add a handled flag so controls that don't
9892         want anymore painting after OnPaintInternal can make sure OnPaint
9893         isn't called.
9894
9895 2006-04-05  Mike Kestner  <mkestner@novell.com>
9896
9897         * Form.cs: fix the menu WndProc hacks to respect the native enabled
9898         state of the form, so that we don't process events when Modal dialogs
9899         are up. Fixes #77922.
9900
9901 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
9902
9903         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
9904           checking is done.
9905
9906 2006-04-05  Mike Kestner  <mkestner@novell.com>
9907
9908         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
9909
9910 2006-04-05  Mike Kestner  <mkestner@novell.com>
9911
9912         * ListView.cs (HeaderMouseMove): null guarding for the over column
9913         when setting up the drag_to_index.  Fixes #78015.
9914
9915 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
9916
9917         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
9918           in the taskbar. Transient windows seem to accomplish that.
9919
9920 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
9921
9922         * Form.cs:
9923           - Re-enabled CreateParams.X/Y code for FormStartPosition
9924           - Added code for manual placement when creating the Control
9925           - Incomplete patch to treat MDI forms differently when
9926             setting the ClientSizeCore. (Still need to figure out handling
9927             x/y coords there)
9928         * XplatUIX11.cs:
9929           - When we're explicitly setting the X/Y position of a non-Child
9930             window, let the WM know. Metacity really wants this.
9931
9932 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9933
9934         * ThemeNice.cs: Added CPDrawButton
9935
9936 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9937
9938         * ThemeNice.cs: Changed the color for focused buttons and activated
9939           the arrows for small scroll buttons.
9940
9941 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9942
9943         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
9944           anymore. Changed some method modifiers to protected (virtual)
9945         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
9946           changes
9947         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
9948           Updated drawing of menus, buttons and progressbars; added
9949           CPDrawBorder3D 
9950
9951 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9952
9953         * ImageListStreamer.cs: implemented serialization/deserialization
9954         of the images.
9955
9956 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
9957
9958         * ThemeWin32Classic.cs:
9959           - Removed all the DrawFrameControl stuff; CPDrawButton,
9960             CPDrawCheckBox and CPDrawRadioButton are now handled directly
9961             inside the methods
9962           - Updated and corrected the drawing code of CPDrawButton,
9963             CPDrawCheckBox and CPDrawRadioButton to better match ms
9964           - Updated theme checkbox and radiobutton code to use the CP*
9965             methods
9966
9967 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9968
9969         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
9970           bug is fixed
9971
9972 2006-03-31  Jackson Harper  <jackson@ximian.com>
9973
9974         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
9975         sometimes.
9976         * UpDownBase.cs: Don't CreateGraphics manually, use a
9977         Refresh. Ideally we would invalidate the correct areas here.
9978
9979 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9980
9981         * XplatUIX11.cs: 
9982           - We now track the mapping state of windows. If a window (or 
9983             one of it's parents) is not mapped we no longer permit
9984             WM_PAINT messages to be generated since we'd otherwise get 
9985             lots of BadMatch X errors. Jackson did all the work figuring
9986             out the problem.
9987           - Destroying the caret if the window it's contained in is 
9988             destroyed. Can't use regular DestroyCaret method since it
9989             might fall into a drawing function (trying to remove the
9990             caret) and with that generate new BadMatch errors. Again,
9991             Jackson tracked this down.
9992           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
9993             make sure we send the messages to all windows. (The old code
9994             would send the WM_DESTROY to the window, and then all child
9995             windows would be 'gone' because the WM_DESTROY handle lookup
9996             would no longer find the destroyed window)
9997         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
9998         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
9999
10000 2006-03-31  Jackson Harper  <jackson@ximian.com>
10001
10002         * ScrollableControl.cs: Dont recalc if we are not visible.
10003
10004 2006-03-31  Mike Kestner  <mkestner@novell.com>
10005
10006         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
10007         the visibility branch.
10008
10009 2006-03-31  Jackson Harper  <jackson@ximian.com>
10010
10011         * ScrollBar.cs: Cap values when incrementing/decrementing.
10012
10013 2006-03-31  Mike Kestner  <mkestner@novell.com>
10014
10015         * MenuAPI.cs: setup menu.tracker for popup/context menus.
10016         * ToolTip.cs: guard against timer expirations with no active control.
10017         Not sure why it happened.
10018
10019 2006-03-31  Mike Kestner  <mkestner@novell.com>
10020
10021         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
10022         text.
10023         * ToolTip.cs: Position the tooltip based on where the cursor is at
10024         popup time, not at MouseEnter time.  Add a Down state so that we don't
10025         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
10026         positioning offset. Lookup DisplaySize at positioning time, since it
10027         can theoretically change during invocation.
10028         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
10029         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
10030
10031 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10032
10033         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
10034           Fixes behaviour when the Text property of the box is String.Empty
10035
10036 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
10037
10038         * XplatUIX11.cs: Only send mouseleave for our client windows, not
10039           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
10040           a window)
10041
10042 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10043
10044         * FileDialog.cs: Visual enhancement for the popup buttons in 
10045           PopupButtonPanel
10046
10047 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
10048
10049         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
10050           code
10051
10052 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
10053
10054         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
10055           highlighted menu items to match ms
10056
10057 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
10058
10059         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
10060
10061 2006-03-30  Mike Kestner  <mkestner@novell.com>
10062
10063         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
10064         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
10065         go active to account for HotLight to Selected transition.
10066         * MenuItem.cs: add internal Selected prop. Fill out the Status
10067         property by calculating it from item info. Add HotLight,
10068         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
10069
10070 2006-03-30  Mike Kestner  <mkestner@novell.com>
10071
10072         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
10073
10074 2006-03-29  Jackson Harper  <jackson@ximian.com>
10075
10076         * Form.cs: Implement TODO.
10077
10078 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
10079
10080         * PrintPreviewDialog.cs: Implemented missing methods and events; still
10081           missing proper dialog setup in the constructor
10082
10083 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
10084
10085         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
10086         * Control.cs:
10087           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
10088           - Fixed ResetBindings and removed TODO
10089           - Added check for cross-thread calls to get_Handle()
10090           - Added Marshaller attribute for set_Font to satisfy class status
10091         * FontDialog.cs: Removed TODOs that seemed implemented
10092         * UpDownBase.cs: Removed unneeded TODO and Fixme
10093         * MessageBox.cs: Implemented support for Default button and removed TODO
10094         * FileDialog.cs: Removed obsolete TODO
10095         * DomainUpDown.cs: Removed obsolete TODO
10096         * ButtonBase.cs: Removed obsolete TODO
10097         * XplatUIWin32.cs: Removed obsolete TODO
10098         * Form.cs:
10099           - Removed obsolete TODO
10100           - Calling CheckAcceptButton when the acceptbutton is changed to allow
10101             internal status updates
10102           - Making sure the active control is selected when the control is created
10103         * CurrencyManager.cs: Removed obsolete TODO
10104
10105 2006-03-29  Mike Kestner  <mkestner@novell.com>
10106
10107         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
10108         of PrintPreviewDialog and RichTextBox.
10109
10110 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
10111
10112         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
10113           DarkDark, Light and LightLight colors for a specific color
10114         * ThemeWin32Classic.cs:
10115           - Use Button drawing code to draw RadioButtons and CheckBoxes with
10116             Appearance = Button 
10117           - Make use of the new ResPool helper CPColor
10118           - Draw ProgressBar and StatusBar with correct 3D borders
10119
10120 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
10121
10122         * ColorDialog.cs: Return selected color. Fixes bug #77940.
10123
10124 2006-03-28  Mike Kestner  <mkestner@novell.com>
10125
10126         * ListView.cs: fix Icon layout to plan for scrollbar widths when
10127         calculating col/row counts.
10128
10129 2006-03-28  Mike Kestner  <mkestner@novell.com>
10130
10131         * ColumnHeader.cs:
10132         * ListView.cs:
10133         * ListViewItem.cs:
10134         * Menu.cs: 
10135         switch to explicit interface method implementation for some methods
10136         corcompare identifies as inconsistent with MS.
10137
10138 2006-03-28  Mike Kestner  <mkestner@novell.com>
10139
10140         * MainMenu.cs: 
10141         * Menu.cs:
10142         add a few missing methods from the class status output.
10143
10144 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
10145
10146         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
10147           correct.
10148
10149 2006-03-28  Mike Kestner  <mkestner@novell.com>
10150
10151         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
10152
10153 2006-03-27  Mike Kestner  <mkestner@novell.com>
10154
10155         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
10156         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
10157
10158 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
10159
10160         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
10161
10162 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10163
10164         * ThemeWin32Classic.cs:
10165           - GroupBox: Inserted a little gap between the text and the lines
10166             on the right side
10167           - Made the code in CPDrawBorder3D more readable
10168           - Corrected the drawing location of the up and down arrows in 
10169             CPDrawScrollButton
10170
10171 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10172
10173         * ControlPaint.cs: Corrected line widths in DrawBorder for
10174           ButtonBorderStyle Inset and Outset
10175
10176 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10177
10178         * ThemeWin32Classic.cs:
10179           - Rewrote the totally broken CPDrawBorder3D method. That was
10180             one of the main problems for the terrific ThemeWin32Classic
10181             look
10182           - Updated and corrected Button drawing
10183           - Correct the dimensions of the SizeGrip to match ms ones
10184           - Removed a small drawing glitch in DrawComboBoxEditDecorations
10185         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
10186           Border3DStyle.Sunken to match ms.
10187
10188 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
10189
10190         * ThemeWin32Classic.cs: First small part of the "de-uglify
10191           ThemeWin32Classic" effort, SizeGrip
10192
10193 2006-03-24  Jackson Harper  <jackson@ximian.com>
10194
10195         * XplatUIX11.cs: Give a max idle time of one second, this matches
10196         MS and forces an Idle event every second when there are no other
10197         events in the queue.
10198
10199 2006-03-24  Mike Kestner  <mkestner@novell.com>
10200
10201         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
10202         * ListView.Item.cs: fix layout issues with null image lists and images
10203         smaller than checkbox size.
10204         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
10205         mode like MS does.  It's weird, but consistent.  ;-)
10206         Fixes #77890.
10207
10208 2006-03-24  Mike Kestner  <mkestner@novell.com>
10209
10210         * ListView.cs: Scroll wheel support for the item control.  Fixes
10211         #77839.
10212
10213 2006-03-23  Jackson Harper  <jackson@ximian.com>
10214
10215         * ScrollableControl.cs: Special case negative sized areas, not
10216         zero.
10217         * MonthCalendar.cs: Save the rect of the clicked date so we can
10218         use it for invalidation.
10219         - Try to cut down on the number of invalidates
10220         - Invalidate the rect the mouse is over and was over when moving
10221         the mouse, so we get the focus box following the cursor.
10222
10223 2006-03-23  Mike Kestner  <mkestner@novell.com>
10224
10225         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
10226         focus rectangle drawing. Fixes #77835.
10227
10228 2006-03-23  Mike Kestner  <mkestner@novell.com>
10229
10230         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
10231         the if and else if and reverting back to the original == check on the
10232         None conditional.
10233
10234 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
10235
10236         * FontDialog.cs: Update the example panel if the selected index of
10237           the fontListBox changes.
10238
10239 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
10240
10241         * FileDialog.cs: Make FileDialog remember which directory it was in
10242           last in the same execution.
10243
10244 2006-03-22  Mike Kestner  <mkestner@novell.com>
10245
10246         * FileDialog.cs: make the DropDownMenu on the toolbar display
10247         RadioChecks since they are mutually exclusive and that's what MS does.
10248
10249 2006-03-22  Mike Kestner  <mkestner@novell.com>
10250
10251         * Theme.cs: add Color param to CPDrawMenuGlyph.
10252         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
10253         checks and radio marks and arrows are visible on highlighted items.
10254         * ControlPaint.cs: update to use new Theme signature.
10255
10256 2006-03-22  Mike Kestner  <mkestner@novell.com>
10257
10258         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
10259         is active. Fixes #77870.
10260
10261 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
10262
10263         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
10264           to be focused/selected after startup
10265
10266 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
10267
10268         * ColorDialog.cs: 
10269           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
10270             CustomColors and ShowHelp properties
10271           - Some internal rewrites to get better results when using the
10272             ColorMatrix
10273
10274 2006-03-22  Mike Kestner  <mkestner@novell.com>
10275
10276         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
10277         HoverSelection.  Fixes #77836.
10278
10279 2006-03-22  Mike Kestner  <mkestner@novell.com>
10280
10281         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
10282         ToggleButtons.  (De)Sensitize the Back button around a stack count of
10283         1, not 0.  Update ButtonSize based on a pixel count of the win32
10284         control.  Adjust the toolbar size/location for new button size.
10285
10286 2006-03-22  Jackson Harper  <jackson@ximian.com>
10287
10288         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
10289         true.
10290         * ScrollBar.cs: When doing increments and decrements we need to
10291         set the Value property so that ValueChanged gets raised. A
10292         possible optimization here would be to make an internal SetValue
10293         that doesn't invalidate immediately.
10294         * ToolTip.cs: Tooltips get added to their container (when
10295         supplied) so they get disposed when the container is disposed.
10296         - Don't create tooltips for String.Empty. This prevents all these
10297         little 2-3 pixel windows from showing up when running nunit-gui
10298         and driving me mad.
10299         * Form.cs: Don't set topmost when setting the owner if the handles
10300         haven't been created yet.  The topmost set will happen when the
10301         handles are created.
10302
10303 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
10304
10305         * XplatUIX11.cs:
10306           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
10307           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
10308             visible (to allow them to recalculate their sizes)
10309
10310 2006-03-21  Mike Kestner  <mkestner@novell.com>
10311
10312         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
10313         methods. Removed a ton of redundant code.  Still not really happy with
10314         the border rendering, but I think that's mainly because of the
10315         ControlDarkDark being black instead of a dark grey. Depending on how 
10316         close we want to be, we might want to revisit those color choices.
10317         Among the new features added during the refactor were DropDownArrow
10318         pressed rendering, Disabled image rendering.  Proper flat appearance
10319         boundary rendering.  Removed the Divider and Wrapping dividers since I
10320         can't figure out any combination of themes and conditions to make the
10321         MS control draw a horizontal line on a toolbar despite what the
10322         Divider property docs indicate.
10323         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
10324         conditions and incorrect layout.  Updated to coding standard.
10325         * ToolBarButton.cs: refactored layout and positioning code from
10326         ToolBar to here.  Invalidate wherever possible instead of forcing
10327         redraws of the whole toolbar. 
10328         (Known remaining issues: explicit ButtonSize smaller than provided
10329         images.)
10330
10331 2006-03-21  Mike Kestner  <mkestner@novell.com>
10332
10333         * ContextMenu.cs (Show): use the position parameter instead of just
10334         showing at the MousePosition.
10335
10336 2006-03-21  Jackson Harper  <jackson@ximian.com>
10337
10338         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
10339         control handle this.
10340         * TreeNodeCollection.cs: If we are clearing the root node we need
10341         to reset top_node so calcs can still happen.
10342         * ThemeWin32Classic.cs: This is a Flags so we need to check
10343         properly.
10344         
10345 2006-03-21  Jackson Harper  <jackson@ximian.com>
10346
10347         * DataGrid.cs: Create columns when the binding context has been
10348         changed.
10349         * X11Structs.cs: Keysyms are uints.
10350         - Add size to fix build.
10351
10352 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
10353
10354         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10355           XplatUIOSX.cs: 
10356           - Added ResetMouseHover method to allow controls to retrigger
10357             hovering if they need it more than once
10358           - Implemented MouseHoverTime and MouseHoverSize properties
10359         * Timer.cs: Start() must reset the interval
10360         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
10361           properties
10362
10363 2006-03-21  Jackson Harper  <jackson@ximian.com>
10364
10365         * X11Keyboard.cs: improved layout detection. Move the nonchar
10366         tables into this file.
10367         * KeyboardLayouts.cs: Move the tables into resource files.
10368
10369 2006-03-21  Mike Kestner  <mkestner@novell.com>
10370
10371         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
10372
10373 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
10374
10375         * Mime.cs: Various speed optimizations. Looking up mime types
10376           is now 2 times faster than before
10377
10378 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
10379
10380         * CreateParams.cs: Added internal menu field
10381         * Control.cs: 
10382           - Switched call order for UpdateBounds; now we always call
10383             the one that also takes ClientSize, and we're calculating the 
10384             client size via driver method in the others. The previous
10385             method of tracking client size by difference wasn't working
10386             for forms where even the starting client size wouldn't match
10387             the overall form size (due to borders) (Part of fix for #77729)
10388           - CreateParams(): Do not use parent.Handle unless the handle is
10389             already created. Causes havoc with Nexxia and throws off our
10390             creation of controls
10391         * XplatUIX11.cs:
10392           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
10393           - Switched handling of ConfigureNotify over to new PerformNCCalc 
10394             method (consolidates code)
10395           - Changed RequestNCRecalc to use new PerformNCCalc method
10396           - Added calls to RequestNCRecalc when menus and borders are changed
10397             to allow app to set NC size. (Part of fix for #77729) This matches
10398             when MS send a WM_NCRECALC on Win32 windows.
10399           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
10400             (Part of fix for #77729). This matches what MS does, they also
10401             send that message when the form is made visible.
10402           - XException.GetMessage: Improved usability of X errors by including
10403             a translation of the window into Hwnd and Control class
10404           - Improved debug info for window creation, reparenting and destruction
10405           - Created helper method WindowIsMapped() [Currently not used]
10406         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
10407         * Form.cs:
10408           - CreateParams: Now setting our menu on the new internal menu field
10409           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
10410             avoid calculating the same property twice
10411         * Hwnd.cs:
10412           - Improved usability of ToString() for debugging purposes
10413           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
10414             determine the height of the menu, instead of just the font. This
10415             required to also create a graphics context and to keep a bmp 
10416             around (for performance reasons)
10417
10418 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
10419
10420         * MenuAPI.cs: Added OnMouseUp method
10421         * Form.cs:
10422           - Now remembering the requested client size, avoids size errors
10423           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
10424             instead of base if the menu is active. This is required due to
10425             control now capturing and releasing on down/up and it would
10426             prematurely release our menu capture
10427
10428 2006-03-17  Jackson Harper  <jackson@ximian.com>
10429
10430         * KeyboardLayouts.cs: Add the czech layouts.
10431
10432 2006-03-16  Jackson Harper  <jackson@ximian.com>
10433
10434         * Control.cs: Use the viewport space when sizing not the controls
10435         client size, so things like ScrollableControl that effect the
10436         viewport size (when scrollbars are added) are computed correctly.
10437         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
10438         of ManagerEntrys.
10439         - Handle creating BindingManagers for null data sources.
10440         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
10441         source, otherwise when rows are added they are added to the 'fake'
10442         datasource and we will crash when trying to set the position in
10443         those rows.
10444         - Use Implicit scrollbars on the datagrid so they arent
10445         selectable.
10446         
10447 2006-03-16  Jackson Harper  <jackson@ximian.com>
10448
10449         * Binding.cs:
10450         * InternalWindowManager.cs:
10451         * MdiWindowManager.cs:
10452         * X11Keyboard.cs: I really want Mike to love me again (fix
10453         compiler warnings).
10454
10455 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
10456
10457         * DataGrid.cs:
10458           - OnMouseDown: Switch to editing mode when clicking on the cell
10459                          even if we're clicking on the cell that's currently 
10460                          selected
10461           - ProcessGridKey: Left/Right now wrap like MS.Net does
10462           - ProcessGridKey: Tab now knows to add a new row when tab is
10463                             pressed in the cell of the last column of the 
10464                             last row
10465           - ProcessGridKey: Enter now adds another row  if pressed in the last
10466                             row and selectes the new row, same column cell
10467           - ProcessGridKey: Home/End navigate columns, not rows, like 
10468                             originally implemented
10469           - Broke ProcessKeyPreview code out into an extra Internal method
10470             so it can be called from the edit code
10471         * DataGridTextBox.cs (ProcessKeyMessage):
10472           - Switched to accept Tab keypresses
10473           - Added F2 handling to allow jumping to the end of the edited cell
10474           - Added logic to allow moving caret left/right inside edited cell
10475             and making the edited cell jump when the caret hits cell borders
10476           - Tab and Enter are now passed to the datagrid after being handled
10477         * TextBoxBase.cs:
10478           - Removed capture code now that Control handles it
10479           - set_SelectionStart now ensures caret is visible
10480
10481 2006-03-16  Jackson Harper  <jackson@ximian.com>
10482
10483         * TrackBar.cs: Debackwards the increment/decrement for handling
10484         mouse clicks on the bar with vertical trackbars.
10485         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
10486         bottom to match MS.
10487
10488 2006-03-16  Mike Kestner  <mkestner@novell.com>
10489
10490         * ListView.cs: make shift/ctrl keyboard and mouse selection 
10491         consistent with the MS control. Fix a bug in
10492         SelectedListViewItemCollection.Clear that was pissing me off for the
10493         better part of a day because the collection was being altered
10494         underneath us as we walked the list.
10495
10496 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
10497
10498         * Control.cs: Not sure how we could miss this so long, but it seems
10499           that MS.Net has Capture set all the way from before calling 
10500           OnMouseDown through sending the mouse events until after
10501           OnMouseUp. This will fix DataGrid's selection being set to end
10502           at the location of the MouseUp.
10503
10504 2006-03-15  Jackson Harper  <jackson@ximian.com>
10505
10506         * BindingContext.cs: Check the binding after its added so that it
10507           can initialize the binding managers and hookup to events.
10508         * Binding.cs: Data members seem to sometimes include rows/cols in
10509           the format Row.Column we now take this into account.
10510           - Hookup to the position changed event so we can update the
10511           control when the position has changed in the data set.
10512         * CurrencyManager.cs: Take into account the row/col naming
10513           convention when creating dataset tables.
10514         * BindingContext.cs: Using a newer better way of storing
10515           datasource/datamember pairs.  Hopefully this better matches MS for
10516           looking up binding managers.
10517
10518
10519 2006-03-15  Jackson Harper  <jackson@ximian.com>
10520
10521         * BindingContext.cs: The currency manager needs the data member
10522         name, if the member is a data set we use the name to find the
10523         correct table.
10524         * CurrencyManager.cs: When creating the list prefer an IList over
10525         an IListSource.
10526         - Attempt to create a DataTable from a DataSet (TODO: might need
10527         some better error checking here, although MS doesn't seem to have much)
10528         - If we have a DataTable create a view and use it as our list.
10529
10530 2006-03-15  Mike Kestner  <mkestner@novell.com>
10531
10532         * ListView.cs: keep a matrix of the icon mode layout to facilitate
10533         keyboard navigation. Support Up/Down/Left/Right selection correctly
10534         for all 4 View modes.
10535         * ListViewItem.cs: add internal row/col fields for icon layouts.
10536
10537 2006-03-15  Jackson Harper  <jackson@ximian.com>
10538
10539         * TabControl.cs: Redraw the tabs when we resize so their newly
10540         calculated sizes are drawn on screen.
10541         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
10542         composite characters.
10543         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
10544         - filter events so that composite characters can be created
10545         patches by peter
10546         * X11Structs.cs: Add XIMProperties enum.
10547
10548 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
10549
10550         * Control.cs (BringToFront, SendToBack): Don't use window or handle
10551           unless it's created
10552
10553 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
10554
10555         * Control.cs (PerformLayout): We don't need to consider visiblity
10556           for anchoring, only for docking. This fixes 'whacky' alignment
10557           in listbox and other controls that use implicit scrollbars after
10558           the previous PerformLayout patch
10559         * ListBox.cs: Switched to use implicit scrollbars
10560           
10561 2006-03-14  Mike Kestner  <mkestner@novell.com>
10562
10563         * ToolBar.cs: 
10564         * VScrollBar.cs:
10565         - chain up the "new event" overrides to base and use
10566         OnEvent to raise them.  Part of fix for bug #76509.
10567
10568 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
10569
10570         * FileDialog.cs: Do not select an item in the parent directory
10571           on backspace
10572
10573 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
10574
10575         * Control.cs (PerformLayout): It would seem that we considered
10576           invisible windows for our layout. Not quite the right thing
10577           to do. Now we don't any longer, thereby fixing bug #76889.
10578
10579 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
10580
10581         * Control.cs (CanFocus): I goofed. A control can have focus 
10582           even though it's not selectable. Made it match MS docs.
10583
10584 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10585
10586         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
10587           center by default (fixes #76895)
10588         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
10589           all uses of Border3DSides.All with the explicit ORd together
10590           Left|Right|Top|Bottom because I assume that nobody was aware 
10591           that All also implies a center fill. Most places I checked had
10592           a fill right above.
10593         * ProgressBarStyle.cs: Added
10594
10595 2006-03-13  Mike Kestner  <mkestner@novell.com>
10596
10597         * ListView.cs: fix breakage in drag shadow header positioning 
10598         from Peter's csc compilation fix.
10599
10600 2006-03-13  Mike Kestner  <mkestner@novell.com>
10601
10602         * ListView.cs: fix NRE produced by backspacing twice in a focused
10603         FileDialog.
10604
10605 2006-03-13  Mike Kestner  <mkestner@novell.com>
10606
10607         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
10608
10609 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10610
10611         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
10612           be changed
10613         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
10614           the allowed size before making programmatic size changes
10615
10616 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
10617
10618         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
10619           set, metacity is broken and will still use the emty sizes in 
10620           the struct. (Fix for #77089)
10621
10622 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10623
10624         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
10625           WindowExStyles and marked both enums as Flags
10626         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
10627           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
10628           to match WindowStyles split
10629         * XplatUIX11.cs:
10630           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
10631           - Updated to match WindowStyles split
10632         * XplatUIWin32.cs:
10633           - Fixed FosterParent creation, was using ExStyle on the Style field
10634             (This should help with Popup focus issues)
10635           - Updated to match WindowStyles split
10636
10637 2006-03-13  Jackson Harper  <jackson@ximian.com>
10638
10639         * MdiWindowManager.cs: Use the system menu height. Fixes some
10640         strange sizing issues.
10641
10642 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
10643
10644         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
10645         * TextBoxBase.cs:
10646           - Scroll to caret after inserting text (#77672)
10647           - Make scroll range one pixel higher, fixes off-by-one error (and
10648             makes underlines visible on the last line)
10649
10650 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
10651
10652         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
10653           the keyboard state from being stuck with keys in 'pressed' state when
10654           focus is switched away via keyboard
10655         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
10656           reset the keyboard if no X11 KeyUp events are expected to come
10657         * X11Structs.cs: Switched type of Visible to bool to match driver
10658
10659 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
10660
10661         * TextControl.cs:
10662           - Switched caret to be just 1 pixel wide, matches MS and looks less
10663             clunky
10664           - Moved caret display 1 pixel down from the top of the control
10665             to improve view
10666           - InsertCharAtCharet: Update the selection start if moving the caret
10667             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
10668           - No longer always creating the caret when the caret methods are
10669             called. Only the actual ShowCaret/HideCaret will do that now
10670           - Only setting caret visible if the owner control has focus
10671           - UpdateView: Added invalidation-shortcut logic for center and right 
10672             aligned text. Previously we'd update all according to the left
10673             logic which caused drawing errors. Also fixed height of invalidated
10674             areas, now properly invalidating the whole area (was off-by-one)
10675           - owner_HandleCreated: Always generate the document when the
10676             handle is created; this ensures that 
10677         * TextBoxBase.cs:
10678           - Fixed situation where caret would disappear under the right
10679             window border, also improved scrolling behaviour on left-
10680             aligned textboxes
10681           - Fixed right-aligned textboxes to have a border to the
10682             right instead of the caret being under the right border
10683         * XplatUIX11.cs:
10684           - Switched from 'nested' to simple visible/not visible tracking 
10685             for caret (part of fix for #77671)
10686           - No longer passing through translated FocusIn/FocusOut messages
10687             since we were notifying too often and the wrong windows. Instead
10688             we just notify our focussed window of receiving or loosing focus
10689         * XplatUIWin32.cs: Switched from 'nested' show/hide 
10690           counting for caret to simple visible yes/no behaviour (part of 
10691           fix for #77671)
10692
10693 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
10694
10695         * Mime.cs: Remove debug code...
10696
10697 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
10698
10699         * MimeGenerated.cs: Removed
10700         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
10701           and subclasses) from /usr/(local/)share/mime and
10702           $HOME/.local/share/mime.
10703
10704 2006-03-10  Jackson Harper  <jackson@ximian.com>
10705
10706         * MdiWindowManager.cs: Recalc the NC area when a window is
10707         maximized/restored so that the menu area is drawn on forms that
10708         don't have a menu.
10709
10710 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10711
10712         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
10713           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
10714           us to force a WM_NCCALCRESIZE message being sent. This is needed
10715           for MDI maximizing.
10716
10717 2006-03-10  Jackson Harper  <jackson@ximian.com>
10718
10719         * Form.cs: We need to use the ActiveMenu when calculating menu
10720         height.
10721         - Fix nullref when the window manager hasn't been created yet.
10722         * Control.cs: Fix nullref when we try to bring a control to the
10723         front that has no parent.
10724         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
10725         height.
10726         - Add a dummy item to the maximized menu so it always has the
10727         correct height. Otherwise when there are no menus we don't get our
10728         icon and buttons.
10729         
10730
10731 2006-03-10  Jackson Harper  <jackson@ximian.com>
10732
10733         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
10734         stuff.
10735         * Form.cs: Make the window_state internal so the window managers
10736         can track it.
10737         - When an MDI child is maximized let its window manager create the
10738         main menu (so it can add its icon).
10739         - Notify the window managers of state changes
10740         - Let the window manager paint its buttons and handle button
10741         clicks on the menu when it is maximized.
10742         * InternalWindowManager.cs: Move the prev_bounds into the mdi
10743         window manager, since tool windows don't use it, only mdi windows.
10744         - Tell the main form that we don't want it to handle NCPAINT
10745         itself to avoid extra painting.
10746         - Handle clicks on a maximized windows menu.
10747         - Handle window state changes
10748         - Handle minimize/maximize clicks correctly by setting the window state.
10749         * MdiWindowManager.cs: Add an icon menu that (the menu you get
10750         when clicking on the forms icon).
10751         - New method to create a forms maximized menu. This is its normal
10752         menu + an icon.
10753         - Handle window state changes.
10754         - Handle sizing of maximized windows.  Maximized windows are just
10755         drawn bigger then the parent visible area. All controls are still
10756         there, they are just outside the visible area (this matches windows).
10757         * MdiClient.cs: No scrollbars when a child window is maximized.
10758         - Let the children windows figure out how big they should be when
10759         sizing maximized windows.
10760         - Implement a version of ArrangeIconicWindows somewhat similar to
10761         Windows version.  There are some little differences, but I don't
10762         think any app will rely on the layout of minimized mdi windows.
10763
10764 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10765
10766         * Padding.cs: Several fixes to allow compiling with csc 2.0
10767
10768 2006-03-09  Jackson Harper  <jackson@ximian.com>
10769
10770         * Menu.cs:
10771         * MenuItem.cs: Cheap hack so we can add items to the list without
10772         the events being raised.  This allows adding mdi items during
10773         drawing. TODO: Should probably find a better time to add the items.
10774
10775 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10776
10777         * ThemeWin32Classic.cs:
10778           - CheckBox_DrawText: Added logic to not wrap if not enough space
10779             is available (Fix for bug #77727)
10780           - RadioButton_DrawText: Added logic not to wrap if not enough
10781             space is available (Fix for bug #77727). Also removed some
10782             duplicate code, DrawString always drawing the regular text
10783             before hitting the if statement.
10784
10785 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
10786
10787         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
10788
10789 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10790
10791         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
10792         * ContainerControl.cs: Partial implementation of some 2.0 scaling
10793           methods. Moved the new 2.0 properties into alphabetical order with
10794           other properties and added MonoTODO tags
10795
10796 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10797
10798         * AutoScaleMode.cs: Added. Fix build.
10799
10800 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10801
10802         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10803           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
10804           and was requiring premature handle creation for calls from above
10805         * Form.cs, Control.cs: Removed handle arguments from calls to
10806           CalculateClientRect()
10807
10808 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10809
10810         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
10811           drag_column.column_rect is MarshalByRef and can't be used that way
10812
10813 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10814
10815         * AxHost.cs: Added deserialization constructor for 
10816           AxHost+State (fixes 77743)
10817
10818 2006-03-09  Mike Kestner  <mkestner@novell.com>
10819
10820         * ListView.cs: 
10821         - Added column drag reordering for details view.
10822         - fixed behavior when mouse is dragged off column and
10823         AllowColumnReorder is false.
10824         * ColumnHeader.cs: clone the format too in Clone.
10825         * Theme.cs: add DrawListViewHeaderDragDetails method.
10826         * ThemeWin32Classic.cs:
10827         - impl new method for drawing drag column shadows and targets.
10828         - support column offset for details mode in DrawListViewItem.
10829
10830 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10831
10832         * TextControl.cs: Reset the char_count when the document is cleared
10833           (Fixes bug reported on mono-winforms mailing list)
10834
10835 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10836
10837         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
10838           of calling base we simply process the key ourselves, since both
10839           DefWindowProc and the handled method would set m.Result. 
10840           (Fixes #77732)
10841
10842 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10843
10844         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
10845           method also moves the window; instead implemented a copy of
10846           Control.ScaleCore (Part of fix for #77456)
10847         * TextBoxBase.cs: 
10848           - Created new CreateGraphicsInternal method to allow providing
10849             a graphics context when no handle is created without triggering
10850             handle creation. (Part of fix for #77456)
10851           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10852         * TextControl.cs: 
10853           - Switched Constructor to require TextBoxBase instead of Control (to
10854             allow uncast access to CreateGraphicsInternal)
10855           - Safeguarded use of owner.Handle property. No longer accessing it
10856             unless the handle is already created.
10857           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10858           - Now triggering a recalc when owning control becomes visible
10859         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
10860           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
10861           premature handle creation (Part of fix for #77456)
10862         * Control.cs:
10863           - We now only destroy our double-buffering buffers when the
10864             control is resized or disposed, but not when visibility
10865             changes. (The code even re-created them twice every time)
10866           - Now requiring a redraw of the buffer on visibility changes
10867             (fixes bug 77654 part 2)
10868           - Not passing OnParentVisibleChanged up unless the control
10869             is visible
10870           - CanFocus: Fixed to match MS documentation
10871           - Focus: Fixed to return actual focus state and to check if
10872             setting focus is legal before setting it
10873
10874 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
10875
10876         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
10877           when to draw focus rectangle by looking at parent focus and
10878           selected state instead. This fixes TabPages on Linux sometimes
10879           having none or multiple focus rectangles.
10880         * XplatUIX11.cs (SetFocus): 
10881           - Don't set the focus if the same window already has focus
10882           - Use SendMessage instead of PostMessage (like it's Win32
10883             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
10884             to match MS behaviour
10885         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
10886           are not selectable.
10887
10888 2006-03-07  Jackson Harper  <jackson@ximian.com>
10889
10890         * PictureBox.cs: Revert line I accidently committed last week.
10891
10892 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10893
10894         * Control.cs: 
10895           - Added new IsRecreating and ParentIsRecreating properties to
10896             allow testing if RecreateHandle has been called on ourselves
10897             or one of our parents
10898           - WndProc(WM_DESTROY): If our control handle is being recreated
10899             we immediately need to create the handle when receiving the
10900             destroy, that way our child windows find a valid parent handle
10901             when they themselves are being recreated upon WM_DESTROY receipt
10902             (fix for bug #77654 part 1)
10903         * XplatUIX11.cs:
10904           - DestroyWindow: WM_DESTROY must be sent to our own window before
10905             notifying any child windows. MS documents that child windows
10906             are still valid when WM_DESTROY is received. (Control now relies on
10907             this behaviour)
10908           - Added some fine-grain debug options
10909
10910 2006-03-06  Jackson Harper  <jackson@ximian.com>
10911
10912         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
10913         box and base calculations off this.
10914         * MdiChildContext.cs:
10915         * MdiWindowManager.cs: Don't need to ensure scrollbars here
10916         anymore.
10917         
10918 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
10919
10920         * Splitter.cs: In situations where the affected control is added
10921           to the parent's control list after the splitter, we would not
10922           populate affected. Now we try populating it on mousedown, if
10923           it's not already set, and force it to be re-set whenever our
10924           parent changes.
10925
10926 2006-03-03  Matt Hargett  <matt@use.net>
10927
10928         * Control.cs: implement Control.Padding
10929         * Padding.cs: -Padding.All returns -1 when constructing with the
10930         implicit default ctor
10931         -Padding.ToString() matches MS.NET
10932         * ContainerControl.cs: implement
10933         ContainerControl.AutoScaleDimensions
10934         * ListControl.cs: implement ListControl.FormattingEnabled
10935         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
10936         * ButtonBase.cs:
10937         * TabPage.cs: Implement UseVisualStyleBackColor.
10938         * PictureBox.cs: Implement PictureBox.InitialImage.
10939
10940 2006-03-03  Mike Kestner  <mkestner@novell.com>
10941
10942         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
10943         event declarations to proxy to base event.
10944         * ListViewItem.cs: update to use ItemControl.
10945         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
10946         * ThemeWin32Classic.cs: update to new ListView theme API and fix
10947         column header label rendering for 0 width columns.
10948
10949 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
10950
10951         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
10952           that causes the control to be created. Fixes #77476.
10953
10954 2006-03-02  Jackson Harper  <jackson@ximian.com>
10955
10956         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
10957         expose_pending.
10958
10959 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
10960
10961         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
10962           passed in for the EventArgs (fixes #77690)
10963
10964 2006-03-01  Jackson Harper  <jackson@ximian.com>
10965
10966         * ScrollBar.cs: Refresh afterbeing resized.
10967
10968 2006-02-28  Mike Kestner  <mkestner@novell.com>
10969
10970         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
10971         Clean up a tracker compile warning.
10972         * MenuItem.cs: add internal PerformPopup method.
10973         [Fixes #77457]
10974
10975 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10976
10977         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
10978           implicit expose) when the text is set to null
10979
10980 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
10981
10982         * RichTextBox.cs (FlushText): When newline is true, we always
10983           need to split the line, even if no text is on it and we may
10984           never eat newlines. (Fixes #77669)
10985
10986 2006-02-28  Mike Kestner  <mkestner@novell.com>
10987
10988         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
10989         and set Selected instead.
10990         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
10991         collections.
10992
10993 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10994
10995         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
10996
10997 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
10998
10999         * FontDialog.cs:
11000           - Got rid of the panel. All controls are now directly added to
11001             the dialog form
11002           - It is now possible to set a font with the Font property
11003           - MinSize and MaxSize property do now what they should
11004           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
11005           - Searching and selecting a font with the font textbox works now,
11006             the same applies to the style and size textbox
11007           - Draw the correct 3D border in the example panel
11008           - Fixed a little mem leak (unused fonts didn't get disposed)
11009           - Many other internal updates/rewrites...
11010           - Fix typo
11011
11012 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
11013
11014         * TextControl.cs: 
11015           - InsertRTFFromStream: Added 'number of characters inserted' argument
11016           - set_SelectedRTF: Now using the number of characters to calculate
11017             the new location for the selection and cursor (x/y cannot be used
11018             due to potentially already wrapped text)
11019
11020 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
11021
11022         * TextControl.cs: Added property and implemented means to allow 
11023           disabling recalculation of a document (can be used to speed up
11024           multiple inserts and is needed to make RTF inserts predictable, see
11025           bug #77659)
11026         * RichTextBox.cs: Using the new NoRecalc property of Document to
11027           keep x/y insert locations predictable. Also makes it faster inserting
11028           large chunks of RTF
11029
11030 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
11031
11032         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
11033           it's easier for a child control to handle the other messages without
11034           having to duplicate the special functionality
11035         * TextBoxBase.cs
11036           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
11037             code to handle processing the key ourselves, in order to get 
11038             access to the result of KeyEventArgs.Handled. We now only call 
11039             ProcessKey if they key hasn't been handled already. Fixes #77526.
11040           - set_Text: If null or empty string is given, just clear the 
11041             document. Fixes part of #77526
11042
11043 2006-02-27  Jackson Harper  <jackson@ximian.com>
11044
11045         * SizeGrip.cs: Paint the background color before painting the grip
11046         so things look right.
11047         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
11048
11049 2006-02-27  Mike Kestner  <mkestner@novell.com>
11050
11051         * ListView.cs:
11052           - Restructure layout and invalidation model to remove a ton of
11053           flicker from the control and speed up performance in general.
11054           - Add manual column resize, flickers like crazy, but I already have
11055           some ideas on how I'll fix that. (#76822)
11056           - Merge the three Icon-based views into a single layout method.
11057           - Move item selection interaction logic from the item since 
11058           interaction with the collections is more appropriate to the view.
11059           - Deselection on non-item clicks.
11060         * ListViewItem.cs:
11061           - Encapsulate most of the layout. Add some internal props to trigger
11062           layout.  Move to a model where Items invalidate themselves instead
11063           of just invalidating the whole control every time something changes.
11064           - Invalidate on Text/Caption changes.
11065           - switch to an offset based layout model to avoid having to absolute
11066           position every element on item moves.
11067           - correct checkbox layout to conform to MS layout.
11068         * ThemeWin32Classic.cs:
11069           - refactor some column header drawing code.
11070           - fix string justification for column headers (#76821)
11071           - make SmallIcon labels top justified for compat with MS impl.
11072         * ThemeClearlooks.cs:
11073           - adjust to new ListViewItem internal checkbox bounds api.
11074
11075 2006-02-27  Jackson Harper  <jackson@ximian.com>
11076
11077         * Control.cs:  Change where implicit controls fall in the zorder.
11078         They are now on top of all children.
11079         - Synced AddImplicit code with Add
11080         - Removed unused enumerator.
11081         * SizeGrip.cs: Remove the TODO as its been TODONE.
11082
11083 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
11084
11085         * TextControl.cs(Insert): Combine the last lines unless the insertion
11086           string ends with \n\n, otherwise we leave one line too many (Fixes
11087           something I noticed with the testapp for #77526; the bug itself was
11088           already fixed in the previous checkin)
11089
11090 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
11091
11092         * RichTextBox.cs:
11093           - SelectionColor and SelectionFont methods no longer set absolute
11094             styles. Instead, the keep font or color respectively (This 
11095             resolves a long-standing FIXME in the code)
11096           - When flushing RTF text, the insert code now considers text trailing
11097             behind the insertion point (Fixes the bug where when replacing
11098             the selected text via SelectedRTF the remainder of the line behind 
11099             the selection would stay on the first insertion line)
11100         * TextBoxBase.cs:
11101           - AppendText now updates the selection points after inserting text
11102           - AppendText now ensures that the last tag (sometimes 0-length) of
11103             the document is used for the style information (Fixes part of 
11104             bug #77220)
11105         * TextControl.cs:
11106           - Created new FontDefiniton class to allow describing partial style
11107             changes
11108           - StreamLine() now takes a lines argument, to allow it to decide
11109             whether an encountered zero-length tag is the last in the document
11110             (which must be kept to not loose the font/color contained in it,
11111             for later appends)
11112           - Created Combine() and Split() methods for Marker structs, to 
11113             support marker updates due to reformatted documents (soft line
11114             wraps)
11115           - Implemented Document.CaretTag setter
11116           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
11117             of the last line (Not the cause, but also exposed by bug #77220)
11118           - Added LineTag argument to InsertString method, to allow callers
11119             to force a certain tag to be used (required to force use of the
11120             trailing zero-length tag of a document)
11121           - Now updating markers in Combine(), to avoid stale tag markers
11122           - Added some method descriptions to aid maintenance
11123           - Implemented new FormatText concept, allowing additive/subtractive
11124             formatting by only specifying the components that are to be 
11125             changed. This was needed for resolving the RTB.SelectedColor/
11126             RTB.SelectedFont fixmes
11127           - Added Break() support method to allow breaking up linetags (used
11128             for partial formatting)
11129           - Added GenerateTextFormat() method. It is used for partial 
11130             formatting and allows to generate a full font/color from given
11131             attributes and an existing tag.
11132
11133 2006-02-26  Jackson Harper  <jackson@ximian.com>
11134
11135         * XplatUIX11.cs:  Use the correct caption height.
11136         - Translate hittest coordinates to screen coords to match MS.
11137         * XplatUIWin32.cs: When we create MDI windows we need to reset
11138         some of the style flags, so we get a nice blank window, and can
11139         draw all the decorations ourselves.
11140         - Set a clipping rectangle on the non client paint event, the
11141         window manager drawing code needs one.
11142         * Form.cs: The window manager needs to know when the window state
11143         has been updated.
11144         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
11145         don't need to factor in border and title sizes in these
11146         methods. TODO: Remove the args and fix the call points.
11147         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
11148         properly.
11149         - Let the driver set the cursors.
11150         - Improve active window handling
11151         - Correct sizes for title bars and buttons.
11152         - Match MS drawing better
11153         * MdiWindowManager.cs: We don't need to handle border style
11154         updates specially anymore.
11155         - Check for scrollbars when windows are done moving
11156         - Handle Active properly.
11157         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
11158         correctly. I am spewing the exception though, so we don't hide the
11159         bugs.
11160         
11161 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
11162
11163         * DataGridViewRowPostPaintEventArgs.cs,
11164           DataGridViewCellPaintingEventArgs.cs,
11165           DataGridViewRowCollection.cs,
11166           DataGridViewRowPrePaintEventArgs.cs,
11167           DataGridViewCell.cs: Clear a few warnings and implement a few
11168           exceptions that should be thrown.
11169
11170 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
11171
11172         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
11173           'inheriting' our parent's (non-default) cursor. (Part of
11174            the fix for #77479)
11175
11176 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
11177
11178         * XplatUIX11.cs: Fixed cast to make csc happy
11179
11180 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
11181
11182         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
11183           it's for the client area (part of fix for #77479 and needed
11184           for MDI window cursor handling)
11185         * XplatUIX11.cs
11186           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
11187             the appropriate default cursors and also passing the message
11188             up the parent chain 
11189           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
11190             for non-client areas
11191
11192 2006-02-15  Jackson Harper  <jackson@ximian.com>
11193
11194         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
11195         is a real MDI window
11196
11197 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
11198
11199         * X11DesktopColors.cs: Instead of checking the desktop session
11200           string for "KDE" check if it starts with "KDE"
11201
11202 2006-02-10  Jackson Harper  <jackson@ximian.com>
11203
11204         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
11205         systems).
11206
11207 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
11208
11209         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
11210           errors
11211         * ColorDialog.cs:
11212           - Got rid of the panel. All controls are now directly added to
11213             the dialog form
11214           - Changed to mono coding style
11215
11216 2006-02-10  Jackson Harper  <jackson@ximian.com>
11217
11218         * InternalWindowManager.cs: We don't need the set visibility to
11219         false hack anymore now that peter has written beautiful shutdown
11220         code.
11221
11222 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
11223
11224         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
11225           where already explicitly destroyed
11226
11227 2006-02-10  Jackson Harper  <jackson@ximian.com>
11228
11229         * MdiClient.cs: Handle the case where windows are too high or to
11230         the left and we need scrollbars.
11231
11232 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
11233
11234         * MimeIcon.cs: Added some icons
11235         * FileDialog.cs:
11236           - Fixed bug #77477
11237           - Got rid of the panel. All controls are now directly added to
11238             the dialog form
11239           - Changed to mono coding style
11240           - On Linux "My Computer" and "My Network" will now show some
11241             more usefull information. A new class, MasterMount, gathers
11242             this information from /proc/mount. Updated MWFFileView to make
11243             use of this information
11244           - Fixed a bug that caused FileDialog to crash when
11245             ".recently_used" file had a zero size
11246           - FilterIndex does now what it should
11247           - Some Refactoring
11248         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
11249             FileDialog changes
11250
11251 2006-02-09  Jackson Harper  <jackson@ximian.com>
11252
11253         * ComboBox.cs: Don't touch if null.
11254
11255 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
11256
11257         * Cursor.cs: 64bit safeness fix
11258         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
11259
11260 2006-02-09  Jackson Harper  <jackson@ximian.com>
11261
11262         * Form.cs: If a form is made into an MDI form update the styles so
11263         all the props can get set correctly.
11264         - Kill the mdi_container when we dont need it anymore.
11265         * InternalWindowManager.cs: Add missing NOT
11266
11267 2006-02-08  Jackson Harper  <jackson@ximian.com>
11268
11269         * InternalWindowManager.cs: Respek clipping when drawing MDi
11270         decorations.
11271
11272 2006-02-08  Jackson Harper  <jackson@ximian.com>
11273
11274         * Hwnd.cs: Add bits to track non client expose events.
11275         * XplatUIX11.cs: Track non client expose events on the hwnd. This
11276         gives us a proper invalid rect and will allow for some nice
11277         optimizations with NC client drawing
11278         - MDI windows are children windows, so move their style handling
11279         into the child window block.
11280         * InternalWindowManager.cs: Remove a state reset that was
11281         getting invoked at the wrong time. Fixes managed windows getting
11282         into a 'stuck' captured state.
11283
11284 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
11285
11286         * TextControl.cs (Document.ctor): Now initializing 
11287           selection_anchor. Fixes #77493
11288
11289 2006-02-07  Jackson Harper  <jackson@ximian.com>
11290
11291         * TrackBar.cs: The increment/decrements were backwards.
11292
11293 2006-02-07  Mike Kestner  <mkestner@novell.com>
11294
11295         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
11296         to the instance itself.
11297
11298 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
11299
11300         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
11301           on ulongs and pointers, the size differs between 32bit and 64bit
11302           systems. 
11303
11304 2006-02-07  Mike Kestner  <mkestner@novell.com>
11305
11306         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
11307         for 64 bit platforms to work around a metacity bug. 
11308
11309 2006-02-07  Jackson Harper  <jackson@ximian.com>
11310
11311         * TrackBar.cs: Process the input keys we need, and hookup to
11312         KeyDown instead of using WndProc, so we get key messages.
11313
11314 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
11315
11316         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
11317           machine we're on. 
11318         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
11319           we need to translate the XdndVersion atoms array before sending it
11320
11321 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
11322
11323         * XplatUIX11.cs: 
11324           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
11325             number of bits for the property, not the number of bytes. The
11326             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
11327             but would not crash since it specified 8 bits instead of 4 bits)
11328           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
11329             defined as XID -> long in the C headers)
11330           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
11331             references since those are now IntPtr to begin with
11332           - Switched all Atom.XXX 'int' casts to IntPtr casts
11333           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
11334           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
11335           - Added XChangeActivePointerGrab DllImport (for X11DnD)
11336         * X11Structs.cs:
11337           - Changed 'int' type for Atoms in XEvent structures to IntPtr
11338           - Changed atom in HoverStruct to be IntPtr
11339         * X11DnD.cs:
11340           - Removed local DllImports, switched code to use those from XplatUIX11
11341           - Removed/fixed casts related to the switch of Atom to be a IntPtr
11342
11343 2006-02-06  Mike Kestner  <mkestner@novell.com>
11344
11345         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
11346         method signatures in the import region.  There may still be some
11347         lingering struct marshaling issues, as I didn't drill down into those.
11348         Yet.
11349
11350 2006-02-06  Jackson Harper  <jackson@ximian.com>
11351
11352         * ComboBox.cs: Dont manually set the top_item, this is computed
11353         when the scrollbar position is set.
11354
11355 2006-02-06  Mike Kestner  <mkestner@novell.com>
11356
11357         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
11358         startup crashes on amd64.  There's other fixes needed.  All pinvoke
11359         usage of Atom needs to be mapped to IntPtr for example.  And there are
11360         likely other int/long issues to be addressed.
11361
11362 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
11363
11364         * FileDialog.cs: One more...
11365
11366 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11367
11368         * FileDialog.cs: Next try
11369
11370 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11371
11372         * FileDialog.cs: First part of fix for #77464
11373
11374 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11375
11376         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
11377           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
11378           AcceptButton border drawing.
11379
11380 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
11381
11382         * Form.cs: Moved positioning of form after auto scaling is applied,
11383           otherwise it would possibly use wrong form size.
11384
11385 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
11386
11387         * Control.cs (RecreateHandle): No need to re-create any child
11388           controls, the child windows will get destroyed automatically by
11389           the windowing system or driver, and re-created when the handle
11390           is being accessed the first time. Fixes #77456
11391         * Form.cs: No longer setting the form to closing if the handle is 
11392           being recreated. This seems like the right thing to do, don't
11393           have a bug or testcase for this, though.
11394
11395 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11396
11397         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
11398           controls to avoid unwanted side effects
11399
11400 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
11401
11402         * Control.cs: 
11403           - ScaleCore needs to scale the bounds, not the ClientSize of the 
11404             control. Fixes #77416.
11405           - DefaultSize is 0,0 for control
11406         * TextBoxBase.cs: 
11407           - DefaultSize is 100, 20
11408           - SetBoundsCore: Now enforcing the height, no matter if the provided
11409             height is more or less than the preferred one, as long as AutoSize
11410             is on
11411         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
11412
11413 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11414
11415         * Control.cs:
11416           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
11417             call unless both performLayout is true *and* we have a pending
11418             layout change
11419           - ResumeLayout: MS does not completely nest Suspend and Resume,
11420             they bottom out at 0, fixed our code to match that.
11421           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
11422             SetBoundsCore, we were updating even when we shouldn't. This fixes
11423             swf-anchors mis-anchoring when resizing the app fast and lots.
11424           - UpdateDistances: Now only setting the left and top distance if 
11425             we have a parent and are not suspended, this is based on
11426             a suggestion by Don Edvaldson in bug #77355.
11427           - OnVisibleChanged: Fixed logic when to create the control. We may
11428             not create the control if we have no parent or if it's not visible;
11429             switched to using Visible property instead of is_visible field 
11430             since the property also considers parent states. This fixes a bug
11431             when starting Paint.Net
11432
11433 2006-02-02  Jackson Harper  <jackson@ximian.com>
11434
11435         * Form.cs: If the forms handle hasn't been created yet don't call
11436         into xplatui to make it top most, just set the topmost flag on the
11437         form in CreateParams
11438         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
11439
11440 2006-02-01  Jackson Harper  <jackson@ximian.com>
11441
11442         * ScrollableControl.cs: Refactored the Recalculate method a
11443         little, this wasn't handling all the variants of bottom and right
11444         bars needed to be added and added/removed based on their
11445         counterparts being added/removed (which changes the drawable
11446         size). Also we special case client widths and heights of 0 and
11447         don't add the scrollbar for those.
11448
11449 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
11450
11451         * XplatUIX11.cs: 
11452           - Added method to get AbsoluteGeometry(); currently unused, but might
11453             be used in the future, if we try again to figure out toplevel
11454             coordinates with some more crappy window managers
11455           - Added FrameExtents() method to retrieve the WM set decoration size
11456           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
11457             to deal with at least KDE, FVWM and metacity (Fixes #77092)
11458         * Hwnd.cs: 
11459           - Added whacky_wm tracking var for metacity
11460           - Added logic to have default menu height if the actual menu height
11461             has not yet been calculated (part of fix for #77426)
11462         * Form.cs: Keep track whether client size has been set and re-set 
11463           it if a menu is added/removed afterwards (Fixes #77426)
11464
11465 2006-01-31  Jackson Harper  <jackson@ximian.com>
11466
11467         * Control.cs: When a new Site is set on the component attempt to
11468         pull the AmbientProperties from it.
11469
11470 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
11471
11472         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
11473           in the background of the owning form. Fixes #77332
11474
11475 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11476
11477         * MimeIcon.cs: Fix for #77409
11478
11479 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11480
11481         * XplatUIX11GTK.cs: Initial import
11482
11483 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
11484
11485         * FixedSizeTextBox: fixes class signature
11486
11487 2006-01-30  Jackson Harper  <jackson@ximian.com>
11488
11489         * FixedSizeTextBox.cs: New internal class that represents a
11490         textBox that will not be scaled.
11491         * TreeView.cs:
11492         * ComboBox.cs:
11493         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
11494         standard TextBox.
11495                 
11496 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
11497
11498         * XplatUIX11.cs: Retrieve default screen number instead of
11499           assuming 0. Attempted fix for #77318
11500
11501 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
11502
11503         * XplatUIWin32.cs: 
11504           - GetWindowPos: When a window is parented by FosterParent, use 
11505             the desktop instead of FosterParent as the base to get coordinates
11506           - CreateWindow: Don't make FosterParent the parent window for Popups
11507             if we don't want a taskbar entry, Popups automatically don't get one
11508         * Hwnd.cs: Need to call remove to actually remove the key from the
11509           hash table
11510
11511 2006-01-30  Mike Kestner  <mkestner@novell.com>
11512
11513         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
11514
11515 2006-01-30  Jackson Harper  <jackson@ximian.com>
11516
11517         * TreeView.cs:
11518         * TreeNode.cs: Raise events no matter how the treenode is
11519         checked. Patch by Don Edvalson.
11520
11521 2006-01-30  Jackson Harper  <jackson@ximian.com>
11522
11523         * TreeNode.cs: Signature fix.
11524
11525 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
11526
11527         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
11528
11529 2006-01-20  Mike Kestner  <mkestner@novell.com>
11530
11531         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
11532         event forwarding when menus are active.
11533         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
11534         Most of the patch is pdb's with a little rework.
11535
11536 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
11537
11538         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
11539           Removed GetMenuDC and ReleaseMenuDC methods; replaced
11540           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
11541         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
11542         * InternalWindowManager.cs: Added use of PaintEventStart/End to
11543           handling of WM_NCPAINT message, now passing the PaintEventArgs to
11544           the PaintWindowDecorations method
11545         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
11546         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
11547         * MenuAPI.cs: Made tracker window invisible
11548         * XplatUIWin32.cs:
11549           - Removed GetMenuDC and ReleaseMenuDC methods
11550           - Implemented the client=false path for PaintEventStart and
11551             PaintEventEnd
11552
11553 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
11554
11555         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
11556         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
11557           styles
11558         * Form.cs: 
11559           - MaximizeBox, MinimizeBox: Recreate the handle when setting
11560             the style
11561           - CreateParams: Reworked the styles to match MS look'n'feel,
11562             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
11563             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
11564
11565 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
11566
11567         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
11568           window is not mapped, since otherwise every form that's being 
11569           created is considered minimized, which is wrong.
11570         * Form.cs: Catching the exception and returning our internal value
11571           instead
11572
11573 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
11574
11575         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
11576           SetWindowMinMax() to have means to tell the driver about the minimum,
11577           maximum and maximized state window sizes. (Part of the fix for #76485)
11578         * Form.cs:
11579           - Implemented tracking of minimum and maximum window size, now calling
11580             new SetWindowMinMax() driver method to tell the driver (Part of the
11581             fix for #76485)
11582           - Finished handling of WM_GETMINMAXINFO method, now setting all values
11583             (Completes fix for #76485)
11584           - Calling new SetWindowMinMax driver method when the handle for a 
11585             form is created, to make sure the driver knows about it even if
11586             the values have been set before the window was created
11587           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
11588             to avoid messing up our anchoring calculations (partial fix
11589             for #77355)
11590         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
11591         * XplatUIX11.cs:
11592           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
11593           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
11594             (and presumably other freedesktop.org compliant WMs). Left the
11595             assumption unmapped=minimized, needed for SetVisible to work.
11596           - Now setting the window state when creating windows
11597           - Fixed SetVisible to consider/set the window state when mapping
11598             a Form. We cannot set the state before it's mapped, and we cannot
11599             use Form.WindowState once it's mapped (since it would ask the
11600             driver and get 'normal'. Therefore, we grab the state before
11601             mapping, map, and then set state.
11602           - Implmemented SetWindowMinMax method; Metacity does not seem to
11603             honor the ZoomHints, though.
11604         * XplatUIWin32.cs:
11605           - Removed MINMAXINFO (moved to XplatUIStructs)
11606           - Added SetWindowMinMax stub (on Win32 the only way to set that
11607             information is in response to the WM_GETMINMAXINFO message, which
11608             is handled in Form.cs)
11609           - Added logic to SetVisible to set the proper window state when a 
11610             form is made visible (fixes #75720)
11611
11612 2006-01-26  Jackson Harper  <jackson@ximian.com>
11613
11614         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
11615         same way we handle them with Invoke.
11616
11617 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
11618
11619         * Form.cs:
11620           - Added tracking of window state so CreateParams can return
11621             the appropriate style
11622           - Moved setting of WS_CAPTION style in CreateParams to allow
11623             styles without caption
11624         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
11625           control if the TextBox property is accessed. Fixes #77345
11626         * Control.cs:
11627           - get_Created: now uses is_disposed and is_created to determine
11628             return value (suggested by Jackson)
11629           - CreateHandle: No longer exits if the handle is being recreated
11630           - RecreateHandle: If the handle is not yet created call the 
11631             appropriate method to create either control or handle. If the
11632             control is already created CreateHandle will simply exit instead
11633             of just creating the handle
11634         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
11635           now SendMessage WM_DESTROY directly to the control when DestroyWindow
11636           is called.
11637         * XplatUIX11.cs: 
11638           - When DestroyWindow is called, instead of waiting for the 
11639             DestroyNotification from X11, we directly post it to the WndProc
11640             and immediately dispose the hwnd object.
11641             Same applies to DestroyChildWindows, and this obsoletes the
11642             expose_pending tracking. Contrary to Win32 behaviour we destroy our
11643             child windows before our own, to avoid X11 errors.
11644           - Removed the direct sending of WM_PAINT on UpdateWindow
11645         * XplatUIWin32.cs:
11646           - Reworked DoEvents and GetMessage to allow access to internal queue
11647             even when trying non-blocking access to the queue.  Fixes #77335. 
11648             Based on a patch suggestion by Don Edvalson. The new private
11649             GetMessage can now also be used as a backend for a PeekMessage
11650             frontend version.
11651         * XplatUI.cs: Improved debug output for CreateWindow
11652
11653 2006-01-25  Jackson Harper  <jackson@ximian.com>
11654
11655         * Help.cs: Allow param to be null. Patch by Don Edvalson.
11656
11657 2006-01-24  Jackson Harper  <jackson@ximian.com>
11658
11659         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
11660         when we have a MaxDropItems lower then the selected index.
11661
11662 2006-01-24  Jackson Harper  <jackson@ximian.com>
11663
11664         * Control.cs: Don't allow selection of non visible controls, allow
11665         selection of controls without parents.
11666
11667 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
11668
11669         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
11670         * DataGridDrawingLogic.cs: Add editing row only when is necessary
11671
11672 2006-01-23  Jackson Harper  <jackson@ximian.com>
11673
11674         * UpDownBase.cs: Make the textbox handle all the selection and
11675         tabbing. This fixes tabing to updown controls.
11676
11677 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
11678
11679         * TextBoxBase.cs: fixes exception thown the object was null
11680
11681 2006-01-23  Jackson Harper  <jackson@ximian.com>
11682
11683         * ButtonBase.cs: Just use the base CreateParams. They set
11684         visibility and enabled correctly.
11685         * ComboBox.cs:
11686         * TrackBar.cs:
11687         * MonthCalendar.cs: Lets let the base set as much of the
11688         createparams as possible so we don't have duplicate code all over
11689         the place.
11690
11691 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
11692
11693         * ThemeGtk.cs: Added TrackBar and some experimental code to
11694           get double buffering back
11695
11696 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
11697
11698         * DataGrid.cs: Allows row number set internally higher than the last
11699         when creating a new row. Restores the editing functionality.
11700
11701 2006-01-20  Mike Kestner  <mkestner@novell.com>
11702
11703         * MimeIcon.cs: delay Image creation until the icons are accessed
11704         instead of creating 190 scaled images on GnomeHandler startup.
11705
11706 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
11707
11708         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
11709           first call base before processing the event. Fixes #77279
11710
11711 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
11712
11713         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
11714           that the stride for the GDI bitmap would match the stride of
11715           a DIB or a Cursor.
11716
11717 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
11718
11719         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
11720
11721 2006-01-19  Jackson Harper  <jackson@ximian.com>
11722
11723         * ComboBox.cs: Hookup the text controls keydown event so we get
11724         those when the text control has the focus.
11725
11726 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
11727
11728         * Label.cs: Now using the base events instead of defining new ones;
11729           this allows us to just call the base properties without having to
11730           duplicate all base property logic 
11731
11732 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
11733
11734         * Label.cs: A label by default is not a tabstop (Fixes one of our
11735           failing nunit tests)
11736
11737 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
11738
11739         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
11740         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
11741
11742 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
11743
11744         * Cursor.cs: Reimplemented creating cursor bitmaps without using
11745           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
11746           This fixes #77218
11747         * XplatUIWin32.cs: 
11748           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
11749             constructor creates images that can't be saved. Part of the fix
11750             for #76103
11751           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
11752           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
11753             bug fix for handling window state in forms properly)
11754
11755 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11756
11757         * ThemeGtk.cs: Simplify ScrollBar drawing
11758
11759 2006-01-18  Jackson Harper  <jackson@ximian.com>
11760
11761         * Splitter.cs: Set the default dock style for the splitter control
11762         in the constructor.
11763
11764 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11765
11766         * ThemeGtk.cs: Corrected StateType and ShadowType for
11767           gtk_paint_box
11768
11769 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11770
11771         * Control.cs: Make use of Theme.DoubleBufferingSupported
11772         * ThemeGtk.cs:
11773           - Added drawing for flat style buttons
11774           - Added ScrollBar drawing
11775
11776 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11777
11778         * ThemeClearlooks.cs: Removed some unneeded code.
11779         * ThemeGtk.cs: First part of ThemeGtk enhancements.
11780
11781 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11782
11783         * LinkLabel.cs: We need to update the hover drawing when
11784           leaving the control as well.
11785
11786 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
11787
11788         * DataGrid.cs: Clicking on non empty areas in the columns
11789            area was giving an exception
11790
11791 2006-01-17  Jackson Harper  <jackson@ximian.com>
11792
11793         * ThemeWin32Classic.cs:
11794         * ListView.cs: Do not draw/clip the headers when the header style
11795         is None.
11796
11797 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11798
11799         * DataGrid.cs: Fixes 77260
11800         
11801 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11802
11803         * DataGrid.cs: Clicking on a column on a empty grid was giving
11804           an exception
11805
11806 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11807
11808         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
11809           or any keypress will crash the grid.
11810
11811 2006-01-17  Mike Kestner  <mkestner@novell.com>
11812
11813         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
11814         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
11815         invisible/previously-visible items.
11816         [Fixes #76909]
11817
11818 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
11819
11820         * ThemeClearlooks.cs:
11821         - Added CL_Draw_Button method; now other theme controls that are 
11822           not derived from button or do not have a button can draw buttons
11823           too
11824         - Updated ComboBox drawing
11825         - Beautified RadioButton drawing
11826         - Corrected drawing of bottom and left tabs
11827         - Beautified DateTimePicker and MonthCalendar
11828         - Added CPDrawButton and CPDrawRadioButton
11829
11830 2006-01-16  Jackson Harper  <jackson@ximian.com>
11831
11832         * ComboBox.cs: Set the initial value of the scrollbar to the
11833         current index. Reduce the numbers of refreshs and IndexOfs called.
11834
11835 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
11836
11837         * FileDialog.cs: When the file listview is focused hitting the
11838           backspace key moves the fileview to the parent directory
11839
11840 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11841
11842         * Form.cs: 
11843           - Added RecreateHandle call when changing taskbar visibility to 
11844             trigger reparenting in Win32 driver (Fixes #75719)
11845           - If a window has minimize or maximize buttons, it cannot have
11846             a help button
11847         * XplatUIWin32.cs:
11848           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
11849             the toplevel form with FosterParent (A toolwindow not on the
11850             taskbar) (Fixes #75719)
11851           - Made FosterParent a toolwindow
11852
11853 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11854
11855         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
11856
11857 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11858
11859         * ToolTip.cs: If SetToolTip is called from a control and the mouse
11860           is currently over that control, make sure that tooltip_window.Text
11861           gets updated
11862
11863 2006-01-13  Mike Kestner  <mkestner@novell.com>
11864
11865         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
11866
11867 2006-01-13  Jackson Harper  <jackson@ximian.com>
11868
11869         * TreeView.cs: On MS GetNodeAt never actually factors in the X
11870         value passed.  Also redraw the selected node when we recieve
11871         focus, so tabbing between trees works correctly.
11872
11873 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11874
11875         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
11876           ~/.gconf/%gconf-tree.xml, so use
11877           .gconf/desktop/gnome/interface/%gconf.xml
11878
11879 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11880
11881         * TextControl.cs: Draw text in gray if control is disabled
11882
11883 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11884
11885         * TreeView.cs: Draw the focus rectangle outside the highlight, to
11886           make sure it's always visible. Fixes #76680.
11887
11888 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11889
11890         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
11891
11892 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
11893
11894         * PageSetupDialog.cs: Added.
11895         * PrintDialog.cs: Attributes.
11896         * PrintPreviewControl.cs: Updates.
11897         * PrintPreviewDialog.cs: Updates.
11898         
11899 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11900
11901         * Control.cs: Undid my selection check fix, since it's not needed
11902         * TextBoxBase.cs:
11903           - Now considering the presence of hscroll/vscroll when sizing
11904             vscroll/hscroll respectively. Fixed bug #77077
11905           - Added Left/Up/Down/Right to IsInputKey list to prevent
11906             ContainerControl from stealing them. This fixes what I broke
11907             with my last checkin.
11908
11909 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
11910
11911         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
11912           I finally understand how the property can be set without a setter :-)
11913
11914 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11915
11916         * Application.cs:
11917           - Switched RunLoop to use static Message.Create to create a 
11918             Message object
11919           - Added PreProcessMessage call in runloop for keyboard events; this
11920             is part of the fix for #77219, I overlooked this originally in the
11921             MSDN doc for PreProcessMessage
11922         * Control.cs:
11923           - Removed call to PreProcessMessage from handling of keyboard 
11924             messages; it's supposed to be done in the message pump
11925           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
11926             per MSDN documentation.
11927           - IsInputChar: All chars are input chars by default; removed the 
11928             parent calling chain, MS does not document that
11929           - PreProcessMessage: If IsInputChar is true, we want to return false
11930             to allow dispatching of the message
11931           - When selecting the next control, now also check that we're not
11932             selecting ourselves again and therefore return a false positive.
11933         * TextBoxBase.cs:
11934           - Tried to match return values for IsInputKey and ProcessDialogKey
11935             to what MS returns; moved processing of our special keys outside
11936             ProcessDialogKey since MS does not seem to return true on those.
11937           - Moved code that previously was in ProcessDialogKey into new private
11938             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
11939           - Reworked handling of WM_CHAR to not have to duplicate code from
11940             Control.cs anymore, instead we simply call down to base.
11941            
11942 2006-01-12  Jackson Harper  <jackson@ximian.com>
11943
11944         * ComboBox.cs: We always need to refresh the text area when
11945         EndUpdate is called. Fixes the combobox in the file dialog.
11946         * Control.cs: Don't create the creator_thread until the controls
11947         handle is created.  Also in InvokeRequired we check if the
11948         creator_thread is null. This gives the effect of InvokeRequired
11949         returning true if the controls handle is not created yet, and
11950         matches MS.
11951
11952 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11953
11954         * XplatUI.cs:
11955           - Added StartLoop() driver method. This is used to allow drivers to
11956             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
11957             loop for a particular thread
11958           - Added EndLoop() driver method. This is called once the message
11959             pump for the thread is shut down
11960           - Added SupportsTransparency method to allow the driver to indicate
11961             opacity support for windows
11962         * Form.cs:
11963           - Removed TODO attribute, completed AllowTransparency property
11964           - Added documented logic to Opacity
11965         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
11966           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
11967           versions of CompatibleTextRendering
11968         * X11Structs.cs: Added opacity atom to our atom enumeration
11969         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
11970           of a form might be set before it's reparented by the WM, and we need
11971           the opacity value without calling up to Form)
11972         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
11973           SupportsTransparency() driver methods
11974         * Application.cs: Now calling StartLoop and EndLoop driver methods
11975         * XplatUIX11.cs:
11976           - Added opacity atom registration
11977           - Added StartLoop()/EndLoop() methods. They're empty right now but
11978             will need to get implemented when we switch to a per-thread queue
11979           - Implemented SupportsTransparency() method
11980           - Implemented SetWindowTransparency() method
11981           - Added support for setting the opacity value when a window is
11982             reparented (since the opacity needs to be set on the WM frame)
11983         * XplatUIOSX.cs, XplatUIWin32.cs:
11984           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
11985
11986 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11987
11988         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
11989
11990 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11991
11992         * FileDialog.cs: Added ToolTip for MWFFileView
11993         * MimeIcon.cs: Rewrote GnomeHandler.
11994           - Get currently used gnome icon theme from
11995             ($HOME)/.gconf/%gconf-tree.xml
11996           - Make use of inherited icon themes
11997           - Support SVG icon themes like Tango via librsvg
11998
11999 2006-01-12  Miguel de Icaza  <miguel@novell.com>
12000
12001         Revert's Jackson's revert which broke 2.0 builds.   Fix both
12002         builds. 
12003         
12004         * Application.cs: Move the use_compatible_text_rendering outside
12005         the NET_2_0 define.  If we ever need to use the
12006         use_compatible_text_rendering on the individual controls they will
12007         access the variable from the common shared code paths.
12008
12009 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
12010
12011         * XplatUI.cs:
12012           - Added more granular debug options
12013           - Added method to print both window text and id
12014           - Switched debug output to use new Window() debug method
12015           - Added IsEnabled() driver method
12016           - Added EnableWindow() driver method
12017         * Form.cs:
12018           - Removed end_modal; no longer needed, new loop handles termination
12019             via 'closing' variable
12020           - If form is modal, setting DialogResult will now initiate loop
12021             termination via 'closing' variable
12022           - Added support for is_enabled/WS_DISABLED to CreateParams
12023           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
12024             does all the work
12025           - Removed code that's now in RunLoop from ShowDialog()
12026           - Added various documented sanity checks to ShowDialog()
12027           - Added handling of WM_DESTROY message; we set 'closing' on getting
12028             the message to indicate the message pump to terminate
12029           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
12030             send by the Application.ExitThread method. (We send the message
12031             to destroy the window after all other events have been
12032             processed through the queue, instead of destroying the handle 
12033             directly)
12034           - Moved code from Close() method to WM_CLOSE handler; added logic
12035             to only send close-related events if the form is not displayed
12036             modal
12037         * Splitter.cs (..ctor): Fixed typo in resource name
12038         * Control.cs:
12039           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
12040             brush now
12041           - set_Cursor: Now only setting calling into XplatUI if the handle for
12042             the control is already created; this avoids implict handle creation
12043             or crashes if it's not created
12044           - set_Enabled: Now setting the enabled state via the new driver method
12045             instead of just tracking it
12046           - CreateParams: Added logic to set WS_DISABLED based on enabled state
12047           - CreateControl: Reordered event firing and method calls to more
12048             closely fire events in the order MS does. Now setting the
12049             enabled state in the driver when creating the control.
12050           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
12051             match MS order
12052         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
12053           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
12054         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
12055         * Hwnd.cs:
12056           - Added tracking of window enabled state (get_Enabled/set_Enabled)
12057           - Added EnabledHwnd property to easily allow a driver to find the
12058             handle of the first enabled window in the parent chain (this is
12059             used by drivers to pass up input events of disabled windows)
12060         * XplatUIDriver.cs: Added IsEnabled() method
12061         * Application.cs:
12062           - Removed crude and obsolete exiting tracking variable
12063           - Removed internal ModalRun(); replaced by RunLoop()
12064           - Implemented private CloseForms() method to allow closing all 
12065             windows owned by a particular (or all) threads
12066           - Exit() now properly closes all windows without forcing the message
12067             pump to quit
12068           - Removed obsolete InternalExit() method
12069           - Changed Run() methods to use new RunLoop() message pump
12070           - Implemented new RunLoop() method for both modal and non-modal forms
12071         * CommonDialog.cs:
12072           - get_CreateParams: Added setting of WS_DISABLED
12073           - Simplified ShowDialog(); now all the work is done in RunLoop(),
12074             invoked via Form.ShowDialog()
12075         * NativeWindow.cs: We don't remove the window from the collection when
12076           the handle is destroyed; there might still be messages for it in the
12077           queue (mainly the resulting WM_DESTROY); instead it will be removed
12078           when Control calls InvalidateHandle in the WM_DESTROY handler
12079         * XplatUIX11.cs:
12080           - CreateWindow: Added logic to handle the WS_DISABLED window style
12081           - EnableWindow: Implemented based on Hwnd.Enabled
12082           - GetMessage: Reset PostQuitState so the method can be called again
12083           - Implemented support for disabled windows (passing messages to the
12084             first enabled parent) in handling all input messages
12085           - Added optimizations for handling Expose events
12086           - Implemeted new driver method IsEnabled()
12087           - Now always resetting paint pending tracking vars when we start paint
12088           - Re-implemented UpdateWindow via just sending a WM_PAINT message
12089         * XplatUIOSX.cs: Added IsEnabled method stub
12090         * XplatUIWin32.cs: Implemented new IsEnabled() method
12091
12092 2006-01-11  Jackson Harper  <jackson@ximian.com>
12093
12094         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
12095         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
12096         variables a little.
12097         * ColorDialog.cs: Clear out the old form before adding the new
12098         panel.  
12099
12100 2006-01-11  Jackson Harper  <jackson@ximian.com>
12101
12102         * X11Dnd.cs: Make sure to add all the text formats when adding
12103         strings to the data object.
12104         * TreeNodeCollection.cs: When adding to a sorted tree we need to
12105         do some redrawing too.  Also change the UpdateNode to an
12106         UpdateBelow so the newly added node gets painted.
12107         
12108 2006-01-11  Miguel de Icaza  <miguel@novell.com>
12109
12110         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
12111         LinkLabel.cs, PropertyGrid.cs: Implement the
12112         UseCompatibleTextRendering property for 2.x
12113
12114         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
12115
12116 2006-01-11  Jackson Harper  <jackson@ximian.com>
12117
12118         * TreeView.cs: Use the property for setting the selected node so
12119         the correct events get raised.
12120         * TreeNode.cs: Update the tree when the fore/back colours of a
12121         node are set.
12122
12123 2006-01-10  Jackson Harper  <jackson@ximian.com>
12124
12125         * TreeView.cs: Allow setting SelectedNode to null.
12126
12127 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12128
12129         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
12130
12131 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12132
12133         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
12134
12135 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12136
12137         * PrintDialog.cs: Added attributes and set default property values.
12138
12139 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12140
12141         * PrintControllerWithStatusDialog.cs: 
12142         Added PrintControllerWithStatusDialog.
12143
12144 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12145
12146         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
12147         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
12148
12149 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
12150
12151         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
12152
12153 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
12154
12155         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
12156         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
12157
12158 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
12159
12160         * MimeIcon.cs: Added internal class SVGUtil.
12161
12162 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
12163
12164         * FileDialog.cs: Don't crash if there are two files with the
12165           same name but different locations.
12166
12167 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
12168
12169         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
12170         dates across multiple month grids. Used to not highlight entire 
12171         month, but does now.
12172         
12173 2006-01-06  Jackson Harper  <jackson@ximian.com>
12174
12175         * MonthCalendar.cs: Removed DoEvents call to prevent a running
12176         message loop. Change timer intervals to numbers that seem more
12177         natural.
12178
12179 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
12180
12181         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
12182           object for location info since screen object is now implemented.
12183
12184 2006-01-05  Jackson Harper  <jackson@ximian.com>
12185
12186         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
12187         * AsyncMethodResult.cs: We no longer use a WeakReference for the
12188         AsyncMethodResult, this is because we ALWAYS want the
12189         ManualResetEvent to get set.
12190         * Control.cs: When disposing use an async invoke to call shutdown
12191         code, so that thigns don't block on the finalizer thread.  Also
12192         check if we even have a message loop before trying to send
12193         messages, if we don't then don't bother sending messages.
12194         - No more weak references for async methods
12195         * XplatUIDriver.cs: No more weak references for async methods.
12196
12197 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12198
12199         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
12200           returns two FontFamily with the same name
12201
12202 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
12203
12204         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
12205           drawing disabled text. Instead using the ColorGrayText color
12206
12207 2006-01-04  Jackson Harper  <jackson@ximian.com>
12208
12209         * TreeNode.cs: redraw the node when its image index is changed.
12210
12211 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
12212
12213         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
12214           time I checked there are no others like it.
12215
12216 2006-01-04  Jackson Harper  <jackson@ximian.com>
12217
12218         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
12219         this gives the behavoir I was looking for.
12220         * Control.cs: Special case Invoking EventHandlers, this matches MS
12221         and fixes part of bug #76326.
12222
12223 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12224
12225         * ThemeClearlooks.cs, FileDialog.cs:
12226           - Reflect the latest Theme class changes
12227           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
12228             with DateTime
12229             
12230 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12231
12232         * Theme.cs: Cache UI resource images and resize them if needed
12233
12234 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
12235
12236         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
12237           is called. This fixes the crash in Nexxia when setting the font
12238           attributes in the chat. [However, RTF needs a look-over to make sure
12239           that all SelectionXXX methods handle the special case that selection
12240           is empty and therefore the change must be applied to all text starting
12241           at the cursor/selection start]
12242
12243 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
12244
12245         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12246           XplatUIOSX.cs: Added SendMessage and PostMessage methods
12247         * X11Keyboard.cs: Switched to new way of calling PostMessage
12248
12249 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
12250
12251         * Theme.cs: Added theme interface for images to allow the theme to
12252           control what images are used for things like FileDialog, MessageBox
12253           icons, etc.
12254         * MessageBox.cs: Now uses the new Theme icon/image interfaces
12255
12256 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
12257
12258         * FileDialog.cs:
12259           - Removed some dead code
12260           - Opening a recently used file does work now
12261           - Small UI enhancements
12262           - Refactoring
12263
12264 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
12265
12266         * FileDialog.cs: Forgot too add __MonoCS__
12267
12268 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
12269
12270         * FileDialog.cs: We are able to read recently used files now let's
12271           go on and write them.
12272
12273 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
12274
12275         * FileDialog.cs: Breathe some life into "last open"/"recently used"
12276           button
12277         * MimeIcon.cs: Do a check for the top level media type also
12278
12279 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
12280
12281         * ThemeClearlooks.cs:
12282           - Added CPDrawStringDisabled
12283           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
12284             some chars if the text doesn't fit into text_rect
12285           - DrawListViewItem: If View = View.LargeIcon center the image;
12286             rewrote the drawing of ListViewItem.Text if View = 
12287             View.LargeIcon
12288
12289 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
12290
12291         * MimeIcon.cs: Use default KDE icon theme if there is no
12292           "48x48" directory for the current icon theme, fixes #77114
12293         * Mime.cs: Disable not working and actually not used code. 
12294         * ThemeWin32Classic.cs:
12295           - Replace "new SolidBrush" in GetControlBackBrush and
12296             GetControlForeBrush with ResPool.GetSolidBrush
12297           - Changed DrawListViewItem from private to protected virtual
12298         * FileDialog.cs:
12299           - Added form.MaximizeBox = true
12300           - Don't throw an exception if there is a broken symbolic link
12301
12302 2005-12-23  Jackson Harper  <jackson@ximian.com>
12303
12304         * TabControl.cs: Give the panels focus, keyboard navigation is
12305         fixed so this works correctly now.
12306         - We need these key events also.
12307         * ToolBar.cs: Remove some of the poor mans double buffering.
12308         
12309 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
12310
12311         * ComboBox.cs: The internal TextBox now returns the focus.
12312
12313 2005-12-23  Jackson Harper  <jackson@ximian.com>
12314
12315         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
12316
12317 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12318
12319         * Control.cs: Removed debug code
12320         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
12321           implicit children
12322
12323 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
12324
12325         * Control.cs: When creating the control, update the Z-order after
12326           all it's children are created, too. (Fixes nexxia not showing
12327           picturebox bug)
12328
12329 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12330
12331         * Control.cs: Do not update the anchoring distances if layout is
12332           suspended, instead do it once layout is resumed
12333
12334 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
12335
12336         * Control.cs: 
12337           - After many hours of debugging, for both Jackson and
12338             myself, it turns out that it helps to set the parent of a control
12339             if you want to actually see it onscreen. In the spirit of that
12340             discovery, we're now setting the parent of the control and
12341             it's children when the control's handle is created. This fix
12342             will make Lutz Roeder's Reflector run happily. 
12343           - now just creating the handle instead of the whole control when
12344             getting a graphics context for the control.
12345
12346 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12347
12348         * ScrollableControl.cs: When calculating the canvas, don't consider
12349           the scrollbar widths. Instead, predict if horizontal scrollbar
12350           will affect canvas when deciding on vertical display and vice versa.
12351
12352 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12353
12354         * RichTextBox.cs: Set default RTF font for documents that don't
12355           have a font table (Fixes #77076)
12356
12357 2005-12-22  Jackson Harper  <jackson@ximian.com>
12358
12359         * TextBoxBase.cs: It's difficult to do, but you can have an empty
12360         clipboard. This prevents a NullRef in that case.
12361         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
12362         clipboard. PRIMARY is for the currently selected text only. (We
12363         should implement PRIMARY at some point.
12364
12365 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12366
12367         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
12368           a Unicode function with a structure that was defined in Ansi way.
12369           This fixes #76942.
12370
12371 2005-12-21  Jackson Harper  <jackson@ximian.com>
12372
12373         * StatusBar.cs: Statusbar handles its fore/back colours on it's
12374         on. Because thats how it rolls. (and this avoids it using ambient
12375         colours).
12376         * ThemeWin32Classic.cs: Use the proper back color for filling.
12377         * Menu.cs: Use the system menu bar color for drawing menu
12378         bars. Using the window back color will bring ambient colours into
12379         the picture.
12380
12381 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
12382
12383         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
12384           Bitmaps were created and not disposed.
12385
12386 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12387
12388         * Control.cs (CreateControl): Don't do anything if the control is
12389           already created, otherwise we'd fire the OnCreated event more than
12390           once
12391
12392 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12393
12394         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
12395           will always match. Instead return -1. Fixes #76464.
12396
12397 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12398
12399         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
12400           neither the beginning nor the end of the line (Fixes bug #76479)
12401
12402 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12403
12404         * Control.cs:
12405           - ControlNativeWindow.ControlFromHandle(): Now handling situation
12406             where handle is invalid
12407           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
12408             instead of slower linear search
12409         * NativeWindow.cs: Don't remove the window from the hashtable until
12410           after the driver has destroyed it (since the driver might use
12411           Control.FromHandle to lookup the control object
12412         * Hwnd.cs: Added DestroyPending property to track if a window is 
12413           already destroyed as far as the driver is concerned and only hasn't
12414           yet notified the control
12415         * XplatUIX11.cs:
12416           - Activate(): Check if the window is still valid before using the 
12417             handle
12418           - Implemented DestroyChildWindow() method to mark child windows as
12419             destroyed when a window is destroyed. This prevents situations 
12420             where we might call an X method based on queued events for a
12421             window that already has been destroyed but we haven't yet pulled
12422             the destroy method from the queue.
12423           - Added a call to the new DestroyChildWindow() method to the drivers
12424             DestroyWindow code. Also now marking the destroyed window itself
12425             as pending
12426
12427 2005-12-20  Jackson Harper  <jackson@ximian.com>
12428
12429         * StatusBar.cs:
12430         * StatusBarPanel.cs: Don't calculate panel sizes on draw
12431         anymore. Just do them when needed, also track the rects of panels
12432         so that we can optimize refreshing more in the future.
12433
12434 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
12435
12436         * ColorDialog.cs: Fixed focus drawing in small color controls
12437
12438 2005-12-19  Jackson Harper  <jackson@ximian.com>
12439
12440         * InternalWindowManager.cs:
12441         * MdiWindowManager.cs: Cleanup some coordinate system changes so
12442         moving windows works properly.
12443
12444 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
12445
12446         * Control.cs: 
12447           - Removed call to InitLayout() from SetBoundsCore(); doc says
12448             it's only called when a control is added to a container
12449           - Split InitLayout logic, moved to separate UpdateDistances() method
12450             since we need to perform those calculations more often than just
12451             when adding the control to a container. (Needed to fix #77022)
12452           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
12453           - Reduced the OnBindingContextChanged events count, don't send them
12454             unless the control is created, we still aren't totally matching
12455             MS, but I can't quite figure out some of their rules
12456
12457 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12458
12459         * ThemeClearlooks.cs: Corrected distance between ProgressBar
12460           stripes
12461
12462 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12463
12464         * ThemeClearlooks.cs:
12465           - Updated ProgressBar drawing
12466           - Corrected drawing of ScrollBars and scroll buttons
12467           - Some temporary fixes for minor pixel artefacts
12468
12469 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
12470
12471         * Control.cs:
12472           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
12473             cause events to be sent in the same order as MS does.
12474           - Added ChangeParent() method to trigger various OnXXXChanged events
12475             that need to be fired when a parent changes (This is a reworking
12476             of the patch from r54254, with the X11 errors fixed)
12477           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
12478             since on MS we get OnLayoutChanged events when calling Clear()
12479           - Changed Enabled property to consider parent state as well, if a
12480             parent is not enabled, the control will not be either
12481           - Changed Parent property to simply call Controls.Add() since that
12482             now does all the work required, this way we avoid code duplication
12483           - Threw in a few OnBindingsContextChanged calls to try and match
12484             when MS sends them. We seem to send a few too many, though.
12485           - Added call to CreateControl when adding the control to a parent.
12486             We were never calling CreateControl. Still needs some work, in
12487             some places we treat HandleCreated and ControlCreated as equal, 
12488             which is wrong
12489           - Removed obsolete commented out code from UpdateZOrder()
12490
12491 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12492
12493         * ThemeClearlooks.cs: Updated TrackBar drawing.
12494
12495 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12496
12497         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
12498
12499 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12500
12501         * FileDialog.cs: Add the Help button and the open readonly
12502           checkbox only if needed
12503
12504 2005-12-16  Jackson Harper  <jackson@ximian.com>
12505
12506         * Control.cs: Make sure we have an active menu before trying to
12507         process commands on it. Prevents menu-less forms from crashing
12508         when Alt is pressed.
12509         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
12510         Dieter Bremes.
12511         * RichTextBox.cs: Expand statement to help out gmcs and fix the
12512         2.0 build.
12513
12514 2005-12-16  Jackson Harper  <jackson@ximian.com>
12515
12516         * InternalWindowManager.cs: Don't translate tool windows screen
12517         coordinates. This fixes windows 'bouncing' around when being moved.
12518
12519 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12520
12521         * TextBoxBase.cs:
12522           - MaxLength now treats 2^31-1 equal to unlimited length (this is
12523             not quite MS compatible, MS uses that number only for single line
12524             and 2^32-1 for multi-line, but I figure it won't hurt keeping
12525             the limit at 2GB)
12526           - Now enforcing the MaxLength limit when entering characters
12527           - Added argument to internal Paste() method to track if it's called
12528             from programatically or via keyboard, since keyboard driven pastes
12529             need to enforce max-length
12530           - Added logic to Paste to only paste as many chars as MaxLength 
12531             allows
12532         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
12533         * TextControl.cs:
12534           - Added Length property to return number of characters in document
12535           - Added private CharCount property which only tracks actual chars
12536             in the document (no linefeeds) and fires event when CharCount
12537             changes
12538           - Added tracking of character count to all methods that alter it
12539           - Added LengthChanged event to allow applications to subscribe
12540             to any changes to the document
12541
12542 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12543
12544         * TextBox.cs: 
12545           - Removed local password_char field (moved to TextBoxBase)
12546           - Now setting the document's password var when password is
12547             set
12548         * TextBoxBase.cs:
12549           - Added password_char field (needed here so MultiLine can
12550             access it)
12551           - Added logic to MultiLine property setter to set the document's
12552             variable when password display is allowed
12553           - Removed debug code and made some debug code conditional
12554         * TextControl.cs:
12555           - Added RecalculatePasswordLine() method to handle special password
12556             char only lines
12557           - Added PasswordChar property, also added related tracking vars
12558           - Draw() method now uses local text var for grabbing text to draw,
12559             this var is set to line.text unless we're doing password display,
12560             then it is set to the pre-generated all-password-chars line
12561           - Added calling RecalculatePasswordLine() method for password lines
12562
12563 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
12564
12565         * Hwnd.cs: 
12566           - Added Reparented property to allow tracking of Window Manager
12567             reparenting actions (which affect X/Y calculations of toplevel 
12568             windows)
12569           - Made ToString() print window handles in hex
12570         * XplatUIX11.cs:
12571           - AddConfigureNotify(): Now uses reparented state off Hwnd to
12572             determine if X/Y needs offsetting
12573           - AddConfigureNotify(): Fixed offset calculations
12574           - Now adds ReparentNotify messages into the queue
12575           - Now processes ReparentNotify messages and causes a 
12576             WM_WINDOWPOSCHANGED message to be sent upstream if a window
12577             is reparented (as most likely it's X/Y coordinates are changed
12578             due to that)
12579
12580 2005-12-14  Jackson Harper  <jackson@ximian.com>
12581
12582         * XplatUIX11.cs: Tool windows still need to respek focus.
12583
12584 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
12585
12586         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
12587           have a working release
12588
12589 2005-12-13  Jackson Harper  <jackson@ximian.com>
12590
12591         * Form.cs: Update styles after setting the border style regardless
12592         of whether or not the window is using a window manager.
12593
12594 2005-12-13  Jackson Harper  <jackson@ximian.com>
12595
12596         * Form.cs: We now hook into an internal window manager instead of just an
12597         MDI subsystem, this is so we can have properly behaving tool windows.
12598         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
12599         * InternalWindowManager.cs: New internal class that acts as a
12600         window manager for tool windows and as a base for mdi windows.
12601         * MdiWindowManager.cs: New class that acts as a window manager for
12602         mdi windows.
12603
12604 2005-12-12  Jackson Harper  <jackson@ximian.com>
12605
12606         * Control.cs: Updates so we match behavoir for for implicit
12607         controls. Fixes explosions in MDI.
12608
12609 2005-12-12  Jackson Harper  <jackson@ximian.com>
12610
12611         * Control.cs: Implement Invalidate (Region).
12612
12613 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
12614
12615         * Control.cs: 
12616           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
12617             the same events as MS does. MS fires events for each property 
12618             except, for unknown reasons, Cursor, when the control is reparented. 
12619             I can't seem to totally match add/remove since MS also fires some 
12620             VisibleChanged events, which makes no sense. Consolidated the
12621             parenting code into a separate method so it can be called from
12622             both Add and Remove. set_Parent no longer needs any special logic
12623             as it calls the parent's add method which implicitly fires
12624             all events
12625           - Removed some obsolete code and debug output
12626           - Enabled state is inherited from parents, if this is enabled
12627
12628 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
12629
12630         * Form.cs: Removed commented out code
12631
12632 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
12633
12634         * Control.cs:
12635           - Added internal version of Invoke, with additional argument 
12636             indicating if we're calling it from a Dispose() handler. That
12637             way we can avoid BeginInvoke throwing an exception if we're
12638             calling for an already destroyed window.
12639           - Added a dispose argument to BeginInvokeInternal, and made the
12640             check if a valid window handle chain exists conditional on
12641             it not being a dispose call
12642           - Removed code in DestroyHandle to destroy our children. Since we
12643             now handle the WM_DESTROY message we will catch all our children
12644             being destroyed.
12645           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
12646         * Form.cs:
12647           - Added a field to track the application context of the form.
12648           - No need to set closing variable as response to WM_CLOSE, instead
12649             we destroy the window. We also call PostQuitMessage if the form
12650             has an application context (which makes it the main app form,
12651             which, when closed terminates the app)
12652         * XplatUI.cs:
12653           - Dropped Exit() method, it's naming was confusing
12654           - Added PostQuitMessage() which causes GetMessage to return false
12655             once the message queue is empty
12656         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
12657           PostQuitMessage()
12658         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
12659           no longer a valid XplatUI method, but left it in since it's used
12660           internally. Added empty PostQuitMessage() method.
12661         * MenuAPI.cs: Replaced call to Exit() with call to
12662           PostQuitMessage, even though this is probably no longer needed.
12663         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
12664         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
12665         * Application.cs:
12666           - Replaced call to XplatUI.Exit() with PostQuitMessage()
12667           - Removed old debug code that would call XplatUI for exception
12668             display, enabled standard exception handling (Still not enabled
12669             though, until NativeWindow's ExternalExceptionHandler define
12670             is removed
12671         * NativeWindow.cs:
12672           - Added internal method to allow control to update NativeWindow
12673             after a window has been destroyed
12674           - Added handling of already destroyed windows when calling i
12675             DestroyWindow
12676           - Added removal of handle from list on ReleaseHandle
12677         * XplatUIX11.cs:
12678           - Dropped GetMessageResult var and related code
12679           - Added PostQuitState to field to track if PostQuitMessage has been
12680             called
12681           - Dropped Exit() method
12682           - Added PostQuitMessage() method
12683           - GetMessage now will return false if PostQuitState is set and no
12684             more messages are in the queue.
12685           - Expose handler will no longer generate WM_PAINT messages if we are
12686             in PostQuitState since it's very likely any windows have already
12687             been destroyed, and since Hwnd won't get updated until we have
12688             processed the DestroyNotify we'd be causing X errors.
12689         
12690 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12691
12692         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
12693           Thanks to Mike for pointing out the err of my ways.
12694
12695 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12696
12697         * Control.cs(PreProcessMessage): Moved menu handling back, but
12698           after all other key handling, to match MS (who handles Menu in
12699           DefWndProc)
12700         * Menu.cs (WndProc): Removed my brainfart
12701
12702 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12703
12704         * Control.cs(PreProcessMessage): Removed special menu handling 
12705         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
12706
12707 2005-12-07  Mike Kestner  <mkestner@novell.com>
12708
12709         * Control.cs : special case SYSKEYUP so that we can adjust keynav
12710         state according in tracker.
12711         * Menu.cs : promote tracker field to base class and provide a tracker
12712         lookup capability.  Add/Remove shortcuts dynamically if the top menu
12713         has a tracker. Unparent items that are removed from the collection.
12714         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
12715         * Theme*.cs: add always_show_hotkeys field to support configurability
12716         of mnemonic display.  win32 doesn't show mnemonics until Alt is
12717         pressed.
12718
12719 2005-12-07  Jackson Harper  <jackson@ximian.com>
12720
12721         * MdiChildContext.cs: Use Control.ResetCursor.
12722         * Control.cs: ResetCursor needs to set the property so that the
12723         correct XplatUI call gets made.
12724
12725 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12726
12727         * Control.cs: More fixes to make our key events match MS. We
12728           were not setting the modifier state on KeyData, and we were
12729           not generating any events when Alt was pressed with a key
12730           since handling of WM_SYSxxx was missing for the OnKey methods.
12731
12732 2005-12-07  Jackson Harper  <jackson@ximian.com>
12733
12734         * MdiChildContext.cs: reenable the sizing code.
12735         - When the mouse leaves a window reset its cursor.
12736
12737 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
12738
12739         * ThemeClearlooks.cs: Reflect latest Hwnd changes
12740
12741 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12742
12743         * Hwnd.cs: Now using the theme 3d bordersize to calculate
12744           widths of Fixed3D borders
12745
12746 2005-12-07  Jackson Harper  <jackson@ximian.com>
12747
12748         * MdiClient.cs: Fix warnings. Earn Mike's love.
12749
12750 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
12751
12752         * ThemeClearlooks.cs:
12753           - Adjusted mouse over button color
12754           - Added first parts of CheckBox drawing
12755           - Added correct color for selected text background
12756           - Fixed ComboBox drawing
12757           - Added CPDrawBorder3D and CPDrawBorder
12758
12759 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
12760
12761         * XplatUIX11.cs: Added call to XBell for AudibleAlert
12762
12763 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
12764
12765         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12766           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
12767           alert users via sound. We could add an enum arg with different
12768           types of alerts in the future
12769
12770 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
12771
12772         * Control.cs: Fix behaviour problems pointed out by Mike
12773
12774 2005-12-05  Mike Kestner  <mkestner@novell.com>
12775
12776         * StatusBarPanel.cs: add Invalidate method and hook it into all the
12777         prop setters.  Calls parent.Refresh for now, but could be maybe be
12778         optimized with an internal method on StatusBar at some point.
12779         [Fixes #76513]
12780
12781 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
12782
12783         * RichTextBox.cs: Implemented get_SelectionColor
12784
12785 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
12786
12787         * ThemeClearlooks.cs:
12788           - Removed dead code
12789           - Draw black button border only if button is Form.AcceptButton
12790           - Draw correct button color for pressed RadioButton if the mouse 
12791             has entered the button
12792           - Updated ProgressBar drawing!
12793           - Updated CPDrawSizeGrip drawing
12794           - Updated StatusBarPanel drawing
12795
12796 2005-12-05  Mike Kestner  <mkestner@novell.com>
12797
12798         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
12799         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
12800
12801 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
12802
12803         * ThemeClearlooks.cs: Initial check-in, activate with
12804           export MONO_THEME=clearlooks
12805         * ThemeEngine.cs: Added ThemeClearlooks
12806
12807 2005-12-03  Mike Kestner  <mkestner@novell.com>
12808
12809         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
12810         [Fixes #76897]
12811
12812 2005-12-02  Jackson Harper  <jackson@ximian.com>
12813
12814         * Form.cs: If the child form has no menu the default main menu is
12815         used as the active menu.
12816
12817 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
12818
12819         * ListBox.cs: Check if any items exist before trying to resolve 
12820           coordinates into items
12821
12822 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12823
12824         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
12825           as the second color for the background hatch
12826
12827 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12828
12829         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
12830         * RichTextBox.cs: FormatText position arguments are 1-based, now making
12831           sure that what we pass to FormatText is always 1-based. Fixes #76885
12832
12833 2005-11-29  Miguel de Icaza  <miguel@novell.com>
12834
12835         * NumericUpDown.cs (EndInit): When we are done initializing,
12836         reflect any updates on the UI.
12837
12838 2005-12-02  Jackson Harper  <jackson@ximian.com>
12839
12840         * ImplicitHScrollBar.cs:
12841         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
12842         their container controls.
12843         * TreeView.cs: Use the new implicit scrollbars.
12844
12845 2005-12-02  Jackson Harper  <jackson@ximian.com>
12846
12847         * TreeView.cs: Make top_node internal so the TreeNodeCollections
12848         can play with it.
12849         * TreeNodeCollection.cs: If we remove the topnode we need to
12850         update topnode to the next node in line.
12851         - When clearing nodes go through the same process as removing
12852         them, so they get depareneted and checked if they are top node.
12853
12854 2005-12-01  Jackson Harper  <jackson@ximian.com>
12855
12856         * TreeView.cs: When imagelists are used the image area is
12857         selectable as well as the text.
12858         - If there are no selected nodes select the first one.
12859         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
12860         so don't do it more then we need to.
12861
12862 2005-12-01  Jackson Harper  <jackson@ximian.com>
12863
12864         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
12865         that arrows can be scaled.
12866
12867 2005-12-01  Jackson Harper  <jackson@ximian.com>
12868
12869         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
12870         fail. Patch by Dieter Bremes
12871
12872 2005-11-30  Jackson Harper  <jackson@ximian.com>
12873
12874         * Form.cs: Property is 2.0 only
12875         * PrintDialog.cs: Signature fix.
12876
12877 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12878
12879         * TextControl.cs: 
12880           - No longer artificially moves text 2 pixels down (now that we have
12881             borders this is no longer needed)
12882           - Added calcs for left, hanging and right indent
12883
12884 2005-11-23  Mike Kestner  <mkestner@novell.com>
12885
12886         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
12887
12888 2005-11-30  Jackson Harper  <jackson@ximian.com>
12889
12890         * MdiChildContext.cs: Set the cloned menus forms, as these don't
12891         get cloned as part of CloneMenu ().
12892         * Menu.cs: Make sure the parent of the items get set correctly
12893         when they are added.  And the owners are notified of the changes.
12894         * Form.cs: Create an ActiveMenu property, so that when MDI is used
12895         we can change the menu being displayed/handled by the form without
12896         changing the menu assosciated with the form.
12897         - Don't let Mdi children draw/handle menus.
12898         
12899 2005-11-30  Jackson Harper  <jackson@ximian.com>
12900
12901         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
12902         a MenuChanged event. Just to make the API a little more
12903         consistent.
12904         * MainMenu.cs:
12905         * MenuItem.cs: Use the new OnMenuChanged
12906         * MdiChildContext.cs: Handle menu merging.
12907         * Form.cs: Implement MergedMenu.
12908         
12909 2005-11-30  Jackson Harper  <jackson@ximian.com>
12910
12911         * Menu.cs: We were misusing Add. Add goes behind the specified
12912         index according to the docs, and does not replace the specified
12913         index. So I added an Insert method.
12914
12915 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12916
12917         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
12918           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
12919           is for Jackson
12920         * RichTextBox.cs: Added calls to base for DnD events
12921
12922 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
12923
12924         * TextControl.cs:
12925           - Fixed drag-selection related crash; style fixes
12926           - Implemented undo class
12927             o Implemented method to capture document state for specified
12928               range in document tree
12929             o Implemented method to restore captured document state
12930             o Implemented cursor tracking
12931             o Implemented basic undo stack
12932           - Added undo cursor tracking to methods altering cursor location
12933           - Added undo tracking to selection deletion (still missing
12934             other text-altering hookups)
12935         * RichTextBox.cs:
12936           - Added SelectionLength property
12937           - Implemented CanPaste()
12938           - Implemented Paste()
12939           - Added missing protected methods
12940           - Fixed RTF->Document conversion; now uses font index 0 and color 
12941             index 0 as the default font for the parsed text
12942           - Fixed RTF<->Document font size translation
12943           - Fixed RTF generation, now properly handles cross-tag boundaries
12944             for single line selection
12945           - No longer always appends blank line to generated RTF
12946           - Removed TODOs
12947           - Added missing attributes
12948           - Hooked up undo-related methods
12949         * TextBoxBase.cs:
12950           - Implemented Copy()
12951           - Implemented Paste()
12952           - Implemented Cut()
12953           - Fixed caret mis-behaviour on backspace across line-boundaries
12954
12955 2005-11-29  Jackson Harper  <jackson@ximian.com>
12956
12957         * MdiClient.cs: Add a method for activating mdi children. Very
12958         basic right now. I imagine someday it might need more girth.
12959         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
12960         children windows names are added to the menu item.
12961         * ThemeWin32Classic.cs: Draw the arrow if the item is an
12962         mdilist. This happens regardless of whether or not there are any
12963         mdi windows to see in the list, and according to my tests happens
12964         before the items are even added. Also happens if there isn't even
12965         an mdi client to get windows from.
12966
12967 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
12968
12969         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
12970         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
12971
12972 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
12973
12974         * DataGridTableStyle.cs:
12975           - Create always the styles for the missing columns even if they are
12976             provided by the user (not default table style)
12977         * DataGrid.cs:
12978           - Fixes bug 76770
12979           - Fixes SetDataBinding (always re-attach source)
12980           - Fixes SetNewDataSource (only clear styles if they are not for 
12981             this source)
12982          -  Expands OnTableStylesCollectionChanged to handle style refresh 
12983             and remove properly
12984
12985 2005-11-29  Jackson Harper  <jackson@ximian.com>
12986
12987         * FileDialog.cs: Implement missing bits, remove some dead
12988         code.
12989         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
12990         creation of the panel so that the options set on the dialog are
12991         seen when the panel is created.
12992         * TreeView.cs: raise a click when items are clicked.
12993         
12994 2005-11-29  Jackson Harper  <jackson@ximian.com>
12995
12996         * MdiClient.cs: Pass some signature methods through to base.
12997
12998 2005-11-28  Jackson Harper  <jackson@ximian.com>
12999
13000         * ListView.cs: Raise the click event when items are clicked.
13001
13002 2005-11-28  Jackson Harper  <jackson@ximian.com>
13003
13004         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
13005         a nullref.
13006
13007 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
13008
13009         * ThemeNice.cs: - Removed 1 pixel bitmaps
13010           - Use SmoothingMode.AntiAlias where it makes sense
13011             (ScrollButton arrow for example)
13012           - Enhanced Button focus drawing
13013           - Fixed ComboBox drawing (no artefacts anymore, focus
13014             rectangle is back again, reduced size of ComboButton, etc.)
13015           - Fixed RadioButton focus drawing for Appearence.Button
13016           - Slight ScrollButton redesign
13017           - Some LinearGradientBrush size fixes
13018           - GroupBoxes have now rounded edges
13019           - Fixed StatusBar drawing
13020
13021 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
13022
13023         * ThemeNice.cs: - Remove dead code
13024           - use correct background colors for menus, etc.
13025           - Fake pixel drawing with 1 pixel bitmaps
13026
13027 2005-11-24  Jackson Harper  <jackson@ximian.com>
13028
13029         * MdiClient.cs: Size the scrollbars when resizing the window.
13030         - Resize the maximized windows when the client is resized
13031         * Form.cs: Make the child context available
13032         
13033 2005-11-23  Jackson Harper  <jackson@ximian.com>
13034
13035         * MdiChildContext.cs: Don't size windows if they are maximized.
13036
13037 2005-11-23  Mike Kestner  <mkestner@novell.com>
13038
13039         * ContextMenu.cs: use MenuTracker.
13040         * Control.cs: remove menu handle usage.
13041         * Form.cs: remove menu handle usage.
13042         * Hwnd.cs: remove menu handle usage.
13043         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
13044         motion and clicks to the new Tracker handlers.
13045         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
13046         and handle usage.
13047         * MenuAPI.cs: refactored to combine popup and menubar event handling.
13048         Killed the MENU and MENUITEM data types and associated collections
13049         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
13050         MenuTracker class that exposes the leftovers from the old MenuAPI
13051         static methods. Restructured Capture handling so that only one grab is
13052         done for the entire menu hierarchy instead of handing off grabs to
13053         submenus. Tracker now has an invisible control to Capture when active.
13054         * MenuItem.cs: add sizing accessors, kill Create
13055         and handle usage.
13056         * Theme.cs: remove menu handle and MENU(ITEM) usage.
13057         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
13058         MENU(ITEM). remove menu handle usage, use Menu directly.
13059         * XplatUIDriver.cs: remove menu handle usage.
13060         * XplatUIOSX.cs: remove menu handle usage.
13061         * XplatUIWin32.cs: remove menu handle usage.
13062         * XplatUIX11.cs: remove menu handle usage.
13063
13064 2005-11-22  Jackson Harper  <jackson@ximian.com>
13065
13066         * Hwnd.cs: Don't compute the menu size for
13067         DefaultClientRectangle.
13068         - Reenable menu sizes being computed for GetClienRectangle.
13069         * Form.cs: Remove comment of trechery
13070         
13071 2005-11-22  Jackson Harper  <jackson@ximian.com>
13072
13073         * Hwnd.cs: The adjustments for the menu bar are made when it is
13074         attached to the form.
13075
13076 2005-11-19  Jackson Harper  <jackson@ximian.com>
13077
13078         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
13079         (just like on windows).
13080
13081 2005-11-19  Jackson Harper  <jackson@ximian.com>
13082
13083         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
13084         use real buttons anymore because they are in non client area. The
13085         one TODO here is that I need to somehow invalidate a section of
13086         the non client area.
13087
13088 2005-11-18  Jackson Harper  <jackson@ximian.com>
13089
13090         * Control.cs: Put the enum check back in now that MDI doesnt have
13091         to use this to set border styles.
13092         * Form.cs: Only set mdi child windows borders if the handle has
13093         been created.
13094         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
13095         this directly on to the driver.
13096         - Get the move start position before adjusting for the titlebar
13097         height, this fixes the windows "skipping" when they are first
13098         moved.
13099
13100 2005-11-18  Jackson Harper  <jackson@ximian.com>
13101
13102         * XplatUIX11.cs: Just compute the mdi borders separately as they
13103         don't totally match up with normal form borders.
13104
13105 2005-11-18  Jackson Harper  <jackson@ximian.com>
13106
13107         * Control.cs: Set WS_ styles for borders, so that the driver does
13108         not have to retrieve the control instance to figure out what kind
13109         of borders it should have.
13110         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
13111         driver can know its an mdi child easily.
13112         * XplatUIX11.cs: Get the border styles and whether the window is
13113         MDI from the Styles and ExStyles params instead of having to get a
13114         control. This prevents a chicken and egg problem.       
13115
13116 2005-11-18  Jackson Harper  <jackson@ximian.com>
13117
13118         * MdiClient.cs: Fix typo so scrollbars show up correctly.
13119
13120 2005-11-18  Jackson Harper  <jackson@ximian.com>
13121
13122         * MdiClient.cs: Calculate when to add and remove scrollbars
13123         correctly.
13124         * MdiChildContext.cs: Adjust the y position to take the titlebar
13125         into account.
13126         - No height for FormBorderStyle.None
13127
13128 2005-11-18  Jackson Harper  <jackson@ximian.com>
13129
13130         * Control.cs: Allow non enum values to be used for
13131         InternalBorderStyle.  MDI does this to set a special border style.
13132         - New utility methods for converting points to/from client coords
13133         - Add the newly created control to the Controls collection before
13134         updating its style. This way UpdateStyle can walk the control
13135         heirarchy to find the control if needed.
13136         so I don't need to create a new Point object all the time.
13137         * Form.cs: Let MDI windows handle their border styles.
13138         - Set styles on MDI windows so the correct title style is derived.
13139         * MdiChildContext.cs: Move all the painting and window handling
13140         into the non client area.
13141         - Use correct sizing and put correct buttons on frames based on
13142         the FormBorderStyle.
13143         - Notify the mdi client about scrolling
13144         - Need to handle the buttons ourselves now, because they are all
13145         in non client areas and we can't add controls there.
13146         * MdiClient.cs: Halfway to scrolling, this implementation is
13147         somewhat broken though, we need to check to make sure other
13148         windows aren't causing scrolling before removing the bars. Also
13149         the bars need to be drawn on top, maybe I can switch implicit
13150         controls to be on top.
13151         * Hwnd.cs: caption_height and tool_caption_height are now
13152         properties of an hwnd, this way they can be set by the driver
13153         based on the type of window they are.  In X11 the window manager
13154         handles the decorations so caption_height is zero unless its an
13155         MDI window.
13156         - Add 3 pixel borders for MDI windows (0xFFFF).
13157         - Get rid of some code duplication, have DefaultClientRectanle
13158         just call GetClientRectangle.
13159         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
13160         Hwnd now.
13161         - Set border styles differently for mdi windows.
13162         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
13163         Hwnd now.
13164         
13165 2005-11-15  Mike Kestner  <mkestner@novell.com>
13166
13167         * Menu.cs: when adding an item to the collection, if item is already 
13168         parented, remove it from the parent.
13169
13170 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
13171
13172         * X11DesktopColors.cs: Added KDE support
13173
13174 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
13175
13176         * XplatUIWin32.cs: 
13177           - Clipboard methods now can translate Rtf format
13178           - No longer removes clipboard contents whenever a new format is added
13179             to allow placing multiple formats on the clipboard
13180         * Clipboard.cs: Clipboard now supports getting a IDataObject and
13181           will place all formats contained in it onto the clipboard. Also
13182           now cleans the clipboard before placing a new object onto it
13183         * RichTextBox.cs:
13184           - Implemented set_Rtf
13185           - Implemented set_SelectedRtf
13186           - Created InsertRTFFromStream() method to allow single code base
13187             for all properties and methods that insert RTF into document
13188           - Removed debug output
13189         * TextControl.cs:
13190           - Fixed Delete(int) to fix up line numbers
13191           - Fixed ReplaceSelection to combine start and end line
13192           - Fixed serious DeleteChars bug that would leave the document tree
13193             broken
13194           - Improved DumpTree with several logic checks to detect broken
13195             document trees
13196           - Removed debug lines
13197           - Fixed Caret.WordForward/WordBack moving code, now always also 
13198             updates caret.tag (fixes crash when word-selecting across tag
13199             boundaries via keyboard)
13200           - Added Insert() method for inserting multiline text into documents
13201           - Fixed DeleteChars() calculation errors that would cause a broken
13202             tag chain with multiple tag lines
13203           - DeleteChars() no longer crashes on multi-tag lines if not all tags
13204           - Split() no longer moves caret if split is at caret location
13205           - ReplaceSelection() now updates the cursor and re-displays it
13206           - ReplaceSelection() now uses new Insert() method to avoid code
13207             duplication
13208           - FormatText() can now handle formatting partial lines
13209         * TextBoxBase.cs:
13210           - Append now uses new TextControl.Insert() method (this avoids 
13211             duplicate code)
13212           - Implemented Ctrl-X (Cut) (
13213           - Implemented Ctrl-C (Copy)
13214           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
13215             regeneration when pasting text; roundtripping Copy&Paste within
13216             edit control still fails due to some calculation bugs in GenerateRTF)
13217           - The Delete key will now remove the current selection if it is visible
13218         * TextBox.cs: Removed debug lines
13219         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
13220           driver to be initialized and can't therefore be done via a static ctor)
13221
13222 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
13223
13224         * TextControl.cs: Added backend code for finding char arrays and strings
13225         * TextBoxBase.cs:
13226           - Added mouse wheel scroll support
13227           - Added support for VScroll and HScroll events
13228         * RichTextBox.cs:
13229           - Implemented all seven Find() variants
13230           - Implemented GetCharFromPosition()
13231           - Implemented GetCharIndexFromPosition()
13232           - Implemented GetLineFromIndex()
13233           - Implemented GetPositionFromCharIndex();
13234           - Implemented SaveFile for PlainText and UnicodeText
13235           - Fixed set_Font, now setting a new font applies that font to
13236             the whole document
13237           - Implemented generic Document to RTF converter
13238           - Implemented SaveFile for RichText format (still missing unicode
13239             conversion for non-ansi chars)
13240           - Implemented get_Rtf
13241           - Implemented get_SelectedRtf
13242
13243 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
13244
13245         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
13246           to allow any captures to be released before triggering OnClick. This
13247           way a click handler may capture the mouse without interference.
13248         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
13249           This way we send them even though X may not allow a grab (if the window
13250           isn't visible, for example)
13251
13252 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
13253
13254         * DataGridViewRowEventArgs.cs: DataGridView implementation
13255         * DataGridViewElement.cs: DataGridView implementation
13256         * DataGridViewComboBoxCell.cs: DataGridView implementation
13257         * DataGridViewDataErrorContexts.cs: DataGridView implementation
13258         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
13259         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
13260         * ImageLayout.cs: DataGridView implementation
13261         * DataGridViewComboBoxColumn.cs: DataGridView implementation
13262         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
13263         * DataGridViewSelectionMode.cs: DataGridView implementation
13264         * IDataGridViewEditingControl.cs: DataGridView implementation
13265         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
13266         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
13267         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
13268         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
13269         * DataGridViewColumnSortMode.cs: DataGridView implementation
13270         * DataGridView.cs: DataGridView implementation
13271         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
13272         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
13273         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
13274         * Padding.cs: DataGridView implementation
13275         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
13276         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
13277         * DataGridViewRowEventHandler.cs: DataGridView implementation
13278         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
13279         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
13280         * DataGridViewButtonCell.cs: DataGridView implementation
13281         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
13282         * DataGridViewEditMode.cs: DataGridView implementation
13283         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
13284         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
13285         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
13286         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
13287         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
13288         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
13289         * DataGridViewCellEventHandler.cs: DataGridView implementation
13290         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
13291         * DataGridViewCellStyleConverter.cs: DataGridView implementation
13292         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
13293         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
13294         * DataGridViewColumnEventArgs.cs: DataGridView implementation
13295         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
13296         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
13297         * QuestionEventArgs.cs: DataGridView implementation
13298         * IDataGridViewEditingCell.cs: DataGridView implementation
13299         * DataGridViewTriState.cs: DataGridView implementation
13300         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
13301         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
13302         * DataGridViewColumnCollection.cs: DataGridView implementation
13303         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
13304         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
13305         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
13306         * DataGridViewColumn.cs: DataGridView implementation
13307         * DataGridViewCellBorderStyle.cs: DataGridView implementation
13308         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
13309         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
13310         * DataGridViewRow.cs: DataGridView implementation
13311         * DataGridViewImageCellLayout.cs: DataGridView implementation
13312         * DataGridViewImageCell.cs: DataGridView implementation
13313         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
13314         * DataGridViewCheckBoxCell.cs: DataGridView implementation
13315         * DataGridViewHeaderCell.cs: DataGridView implementation
13316         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
13317         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
13318         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
13319         * DataGridViewTextBoxColumn.cs: DataGridView implementation
13320         * QuestionEventHandler.cs: DataGridView implementation
13321         * DataGridViewCellStyleScopes.cs: DataGridView implementation
13322         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
13323         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
13324         * DataGridViewCell.cs: DataGridView implementation
13325         * DataGridViewCellEventArgs.cs: DataGridView implementation
13326         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
13327         * DataGridViewCellStyle.cs: DataGridView implementation
13328         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
13329         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
13330         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
13331         * TextFormatFlags.cs: DataGridView implementation
13332         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
13333         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
13334         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
13335         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
13336         * DataGridViewButtonColumn.cs: DataGridView implementation
13337         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
13338         * HandledMouseEventArgs.cs: DataGridView implementation
13339         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
13340         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
13341         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
13342         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
13343         * DataGridViewRowCollection.cs: DataGridView implementation
13344         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
13345         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
13346         * DataGridViewHitTestType.cs: DataGridView implementation
13347         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
13348         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
13349         * DataGridViewColumnEventHandler.cs: DataGridView implementation
13350         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
13351         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
13352         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
13353         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
13354         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
13355         * DataGridViewContentAlignment.cs: DataGridView implementation
13356         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
13357         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
13358         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
13359         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
13360         * DataGridViewPaintParts.cs: DataGridView implementation
13361         * DataGridViewCellCollection.cs: DataGridView implementation
13362         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
13363         * DataGridViewImageColumn.cs: DataGridView implementation
13364         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
13365         * DataGridViewElementStates.cs: DataGridView implementation
13366         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
13367         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
13368         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
13369         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
13370         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
13371         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
13372         * DataGridViewRowHeaderCell.cs: DataGridView implementation
13373         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
13374         * DataGridViewTextBoxCell.cs: DataGridView implementation
13375         * DataGridViewBand.cs: DataGridView implementation
13376         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
13377         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
13378         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
13379         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
13380         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
13381         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
13382         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
13383         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
13384         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
13385         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
13386         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
13387
13388 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
13389
13390         * ThemeWin32Classic.cs: 
13391           - Draw the outside focus rectangle around buttons
13392           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
13393             doesn't use end caps for every dash of a line anymore. This
13394             workaround ignores the forecolor.
13395
13396 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
13397
13398         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
13399           endian safe.
13400
13401 2005-11-07  Jackson Harper  <jackson@ximian.com>
13402
13403         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
13404
13405 2005-11-07  Jackson Harper  <jackson@ximian.com>
13406
13407         * ScrollableControl.cs: Calculate the maximum and change vars
13408         (more) correctly so that scrollbars appear as a sensible size.
13409
13410 2005-11-04  Jackson Harper  <jackson@ximian.com>
13411
13412         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
13413         collection.
13414         * TreeView.cs: When the tree is sorted null out the top_node so
13415         that it is recalculated.
13416         - Use dotted lines instead of dashed lines to match MS better.
13417
13418 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
13419
13420         * ListView.cs: 
13421           - Implements key search for items. Useful when browsing files with FileDialog
13422           - When changing view mode or when clear the items reset scrollbar positions
13423
13424 2005-11-04  Jackson Harper  <jackson@ximian.com>
13425
13426         * CurrencyManager.cs: Implement the MetaDataChanged event, the
13427         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
13428         as to what the method may do as there is no real way of creating a
13429         derived CurrencyManager and calling the method. 
13430
13431 2005-11-03  Jackson Harper  <jackson@ximian.com>
13432
13433         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
13434         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
13435         method which seems to just be used internally to refresh the tabs.
13436
13437 2005-11-03  Jackson Harper  <jackson@ximian.com>
13438
13439         * TabControl.cs: Implement the remove method. Fix some broken
13440         comments.
13441
13442 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13443
13444         * DateTimePicker.cs:
13445           - Added missing DateTimePickerAccessibleObject class
13446           - Added missing events
13447           - Added OnFontChanged method
13448         * Form.cs: Added missing attributes
13449         * TreeView.cs: Added missing attributes
13450
13451 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
13452
13453         * GridItemCollection.cs: Fix signatures
13454
13455 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13456
13457         * XplatUI.cs: Updated build rev/date
13458         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
13459           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
13460         * Application.cs: Trigger context-specific ExitThread events
13461
13462 2005-11-03  Jackson Harper  <jackson@ximian.com>
13463
13464         * Menu.cs:
13465         * MainMenu.cs:
13466         * GridTableStylesCollection.cs:
13467         * Timer.cs:
13468         * TabPage.cs:
13469         * HelpProvider.cs:
13470         * StatusBar.cs:
13471         * MonthCalendar.cs: Signature fixes
13472
13473 2005-11-03  Jackson Harper  <jackson@ximian.com>
13474
13475         * TreeNodeCollection.cs: Remove should not be virtual.
13476         * TreeView.cs: Implement the last of the missing methods.
13477
13478 2005-11-03  Jackson Harper  <jackson@ximian.com>
13479
13480         * TreeNodeConverter.cs: Implement to get off my class-status back.
13481
13482 2005-11-03  Jackson Harper  <jackson@ximian.com>
13483
13484         * TreeView.cs: Hookup the bits for drag and drop.
13485         * TreeNode.cs: Don't cache the tree_view or index anymore, now
13486         that nodes can be moved from tree to tree easily this just causes
13487         all sorts of problems.
13488         * TreeNodeCollection: Don't need to give treenodes an index and
13489         treeview anymore when they are added, these are computed on the
13490         fly. Also make sure to remove a node before its added.
13491
13492 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13493
13494         * TextControl.cs:
13495           - Added CaretSelection enum
13496           - Added comparison methods to Marker struct, makes selection code
13497             more readable
13498           - Added SelectionStart and SelectionEnd as 'moveable' location for
13499             the CaretDirection enum and handler
13500           - Added selection_prev variable to track optimized invalidation for
13501             word and line selection
13502           - Added SelectionVisible property (returns true if there is a valid 
13503             selection)
13504           - Switched CaretHasFocus to only display the caret if there is no
13505             visible selection
13506           - Avoiding StringBuilder.ToString to retrieve a single char, instead
13507             using the direct character index; should be much faster
13508           - Added various conditional debug statements
13509           - Fixed invalidation calculation for selection ranges
13510           - Added ExpandSelection() method to support word and line selection
13511           - Switched SetSelectionToCaret to use new Marker compare overloads
13512           - Added central IsWordSeparator() method to determine word 
13513             separators/whitespace and FindWordSeparator() to streamline common
13514             usage of IsWordSeparator()
13515         * TextBoxBase.cs:
13516           - Removed unneeded grabbed variable, it was just mirroring
13517             Control.Capture
13518           - No longer firing OnTextChanged event when Text setter is called,
13519             since the base will fire the event for us
13520           - Added handling of Ctrl-Up/Down selection
13521           - Added handling of Shift-Cursorkey selection
13522           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
13523             words
13524           - Added handling of Shift and Ctrl-Shift-Home/End selection
13525           - Removed some debug output
13526           - Added handling for single/double/tripple-click to place caret/
13527             select word/select line respectively (Fixes bug #76031)
13528           - Added support for drag expansion of word/line selection
13529         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
13530           current selection
13531
13532 2005-11-02  Jackson Harper  <jackson@ximian.com>
13533
13534         * X11Dnd.cs: If the drag is going to and from a MWF window just
13535         copy the data instead of sending it out through the X Selection
13536         mechanism.
13537
13538 2005-11-02  Jackson Harper  <jackson@ximian.com>
13539
13540         * X11Dnd.cs:
13541         * XplatUIX11.cs: When in a drag we don't want motion notify
13542         messages to get passed on to the other controls. This prevents
13543         mouse move messages from showing up in the drag source.
13544
13545 2005-11-02  Jackson Harper  <jackson@ximian.com>
13546
13547         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
13548         the correct button is release to end a drag.
13549         * XplatUIX11.cs: Make the button state internal so the drag system
13550         can access it.  Dragging needs to know about all button releases,
13551         not just left button.
13552
13553 2005-11-02  Miguel de Icaza  <miguel@novell.com>
13554
13555         * Form.cs (Icon): If the icon is null, reset the icon to the
13556         default value. 
13557
13558         * Cursor.cs: When writing the AND-mask bitmap do not include the
13559         number of colors, but hardcode those to two (black and white),
13560         fixes the loading of color cursors (Paint Dot Net).
13561
13562         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
13563         turn off autoscaling.
13564
13565         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
13566
13567 2005-11-02  Jackson Harper  <jackson@ximian.com>
13568
13569         * X11Dnd.cs: Make sure to send a status message if the pointer
13570         enters a control that can not accept a drop, otherwise the cursor
13571         isn't updated correctly. Also tried to compress the lines of code
13572         a bit.
13573
13574 2005-11-02  Jackson Harper  <jackson@ximian.com>
13575
13576         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
13577         set actions correctly.  This isn't perfect as XDND and win32 have
13578         some differences on how you allow actions. I'll clear this up by
13579         adding a path for drag from MWF to MWF windows.
13580         * XplatUIX11.cs: Hook into the dnd system.
13581
13582 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
13583
13584         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
13585         previously shown but they are no longer need it. Very obvious when 
13586         browsing files with FileDialog.
13587
13588 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
13589
13590         * Control.cs: We always need to call OnPaintBackground. We pretty much
13591           ignore AllPaintingInWmPaint and always do the painting there, whether 
13592           it's set or not, since we always ignore the WM_ERASEBKGND message 
13593           (which we don't generate on X11). This fixes #76616.
13594         * Panel.cs: Removed unneeded background painting. This happens properly
13595           in Control.cs already
13596
13597 2005-10-31  Mike Kestner  <mkestner@novell.com>
13598
13599         * Menu.cs: Add items to collection before setting their index.
13600         * MenuItem.cs : add range checking with ArgumentException like MS.
13601         [Fixes #76510]
13602
13603 2005-10-31  Jackson Harper  <jackson@ximian.com>
13604
13605         * ListBox.cs: Invalidate if the area is visible at all not just
13606         contained in the visible rect. Fixes unselection of semi visible
13607         items.
13608
13609 2005-10-31  Jackson Harper  <jackson@ximian.com>
13610
13611         * Control.cs: Consistently name the dnd methods. Make them
13612         internal so we can override them to match some MS behavoir
13613         internally.
13614         * Win32DnD.cs: Use the new consistent names.
13615
13616 2005-10-31  Jackson Harper  <jackson@ximian.com>
13617
13618         * TreeView.cs: Don't draw the selected node when we lose focus.
13619
13620 2005-10-31  Jackson Harper  <jackson@ximian.com>
13621
13622         * X11Dnd.cs: We still need to reset the state even though a full
13623         reset isn't being done, otherwise status's still get sent all over
13624         the place.
13625
13626 2005-10-31  Jackson Harper  <jackson@ximian.com>
13627
13628         * Control.cs: Make the dnd_aware flag internal so the dnd
13629         subsystem can check it. Catch exceptions thrown in dnd handlers to
13630         match MS behavoir.
13631         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
13632         * X11Dnd.cs: Handle null data in the converters. Set the XDND
13633         version when sending a XdndEnter. Use the control/hwnd dnd_aware
13634         flags to reduce the number of dnd enters/status's sent.
13635
13636 2005-10-31  Jackson Harper  <jackson@ximian.com>
13637
13638         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
13639
13640 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
13641
13642         * PictureBox.cs: Fixes 76512
13643
13644 2005-10-28  Jackson Harper  <jackson@ximian.com>
13645
13646         * X11Dnd.cs: Early implementation to support winforms being a drag
13647         source for data on X11. Also restructured the converters so they
13648         can go both ways now.
13649         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
13650         
13651 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
13652
13653         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
13654           clipboard requests
13655
13656 2005-10-27  Jackson Harper  <jackson@ximian.com>
13657
13658         * TreeNode.cs: Implement serialization so my DnD examples will work.
13659
13660 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
13661
13662         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
13663           TreeView.cs: Don't dispose objects that are not owned.
13664           
13665 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
13666
13667         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
13668           should retrieve the current cursor and report that, but XplatUI
13669           doesn't (yet) have an interface for that (and I'm not sure I even
13670           can, on X11)
13671         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
13672           until any message loop processing is done (and the WM_SETCURSOR
13673           replaces the cursor to the proper one)
13674         * XplatUIX11.cs: 
13675           - Fixed override behaviour, we can't set the cursor globally on X11, 
13676             just for our windows.
13677           - Invalidating the System.Drawing X11 display handle when we are
13678             shutting down
13679         * Control.cs: Fix to make csc happy
13680
13681 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
13682
13683         * TextBoxBase.cs: 
13684           - get_Text: Add last line (without trailing newline) to returned
13685             value (Fixes 76212)
13686           - get_TextLength: Count last line in returned length
13687           - ToString: Call Text property instead of duplicating code
13688
13689 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
13690
13691         * ImageList.cs: Dispose ImageAttributes objects.
13692
13693 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
13694
13695         * ImageList.cs: Use attribute constructors with less arguments where
13696           possible.
13697
13698 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
13699
13700         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
13701           Use typeof instead of strings when assembly is referenced. Added
13702           some more comments.
13703
13704 2005-10-21  Jackson Harper  <jackson@ximian.com>
13705
13706         * ListView.cs: Raise a double click event. Also tried to somewhat
13707         fix when the selectedindexchanged event is raised. Its still
13708         broken though.
13709
13710 2005-10-21  Jackson Harper  <jackson@ximian.com>
13711
13712         * TreeView.cs: New method to invalidate the plus minus area of a
13713         node without invalidating the whole node (maybe this can be used
13714         in some more places).
13715         * TreeNodeCollection.cs: When adding to an empty node we need to
13716         invalidate its plus minus area so the little block shows up.
13717         
13718 2005-10-21  Jackson Harper  <jackson@ximian.com>
13719
13720         * TreeView.cs: Make sure that when we invalidate a node the bounds
13721         are big enough to cover the selected box and the focus
13722         rectangle. Use a different colour for the lines connecting nodes
13723         so they show up with all themes.
13724
13725 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
13726
13727         * NativeWindow.cs: Don't call anything that could call into the driver,
13728           we might be on a different thread.
13729
13730 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
13731
13732         * Control.cs(Dispose): Since Dispose might run on a different thread,
13733           make sure that we call methods that could call into the driver via
13734           invoke, to avoid thread issues
13735
13736 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
13737
13738         * XplatUI.cs: Removed finalizer
13739         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
13740           not allowing to be called on the finalizer thread.
13741
13742 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
13743
13744         * ImageList.cs:
13745           - Reverted r51889 and r51891.
13746           - Added ImageListItem class that stores unmodified image items and image
13747             properties required to create list images until handle is created.
13748           - Added AddItem and moved image creation logic to AddItemInternal.
13749           - Added CreateHandle method that creates images based on unmodified items.
13750           - Added DestroyHandle that changes state to store unmodified items.
13751           - Add and AddStrip methods no more create handle.
13752           - ReduceColorDepth has no return value.
13753           - Dispose destroys handle.
13754           - Modified other methods to reflect the above changes.
13755           - Implemented key support.
13756           - Added profile 2.0 members and attributes.
13757           - Added private Reset and ShouldSerialize methods that provide the same
13758             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
13759             them as they are private.
13760           - Added some more comments about implementation details.
13761
13762 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13763
13764         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
13765
13766 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13767
13768         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
13769
13770 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13771
13772         * DataGridDrawingLogic.cs: Fixes column hit calcultation
13773         * DataGridColumnStyle.cs: Remove debug message
13774
13775 2005-10-20  Jackson Harper  <jackson@ximian.com>
13776
13777         * TreeView.cs: We can always get input keys regardless of whether
13778         or not editing is enabled. They are used for navigation.
13779
13780 2005-10-20  Jackson Harper  <jackson@ximian.com>
13781
13782         * TreeNode.cs: Use the viewport rect for determining if a node
13783         needs to be moved for visibility. Don't use Begin/End edit. This
13784         calls a full refresh when its done.
13785         * TreeView.cs: New SetBottom works correctly.  Make the viewport
13786         rect property internal so the treenodes can see it. When clicking
13787         on a node we need to ensure that its visible because it might just
13788         be partly visible when clicked.
13789
13790 2005-10-20  Jackson Harper  <jackson@ximian.com>
13791
13792         * TreeNodeCollection.cs: Remove debug code.
13793
13794 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13795
13796         * Datagrid.cs: Implements column sorting in Datagrid
13797         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
13798
13799 2005-10-20  Jackson Harper  <jackson@ximian.com>
13800
13801         * TreeNodeCollection.cs: Remove items properly. Update the correct
13802         area after removing them.
13803
13804 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13805
13806         * Datagrid.cs: Should not call base.OnPaintBackground
13807
13808 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13809
13810         * XplatUIX11.cs (GetMessage):
13811           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
13812             window instead of client window
13813           - Now properly calculates NC_xBUTTONUP message coordinates
13814           - ScreenToMenu now properly calculates it's coordinates of whole 
13815             window, since menus are in the whole window, not in the client
13816             window
13817           - Added WholeToScreen coordinate translation method
13818
13819 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
13820
13821         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
13822           want to return a message, loop back to the beginning of the function
13823           and grab the next real message to process instead.
13824
13825 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13826
13827         * Splitter.cs: Properly set limits if no filler control is used
13828
13829 2005-10-19  Jackson Harper  <jackson@ximian.com>
13830
13831         * ColorDialog.cs: Don't show the help button if it is not enabled
13832         instead of disabling it (this is what MS does). Don't create the
13833         panel until the dialog is run, otherwise the vars (such as
13834         ShowHelp) are not set yet.
13835
13836 2005-10-19  Jackson Harper  <jackson@ximian.com>
13837
13838         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
13839         are reduced when adding nodes.
13840         * TreeNode.cs:
13841         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
13842         tree.
13843         
13844 2005-10-19  Jackson Harper  <jackson@ximian.com>
13845
13846         * FolderBrowserDialog.cs: End editing our treeview so the window
13847         actually gets refreshed.
13848
13849 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13850
13851         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
13852           Obsoleted handling of WM_ERASEBKGND, now always draws our background
13853           inside of WM_PAINT
13854
13855 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13856
13857         * MenuAPI.cs: Returns after Hidding window
13858         * XplatUIX11.cs: Added TODO found while debugging menu issues
13859
13860 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13861
13862         * XplatUIX11.cs: Do not re-map the whole window when it's size
13863           becomes non-zero unless it's supposed to be actually visible
13864
13865 2005-10-18  Jackson Harper  <jackson@ximian.com>
13866
13867         * TreeView.cs: We don't need to keep a count anymore.
13868         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
13869         use the Grow method.
13870
13871 2005-10-18  Jackson Harper  <jackson@ximian.com>
13872
13873         * TreeNodeCollection.cs: Insert is not supported on arrays, so
13874         implement it manually here.
13875
13876 2005-10-18  Jackson Harper  <jackson@ximian.com>
13877
13878         * ImageList.cs: Dont kill the list when the colour depth is
13879         changed, just change the colour depth of all the images.
13880         - Same goes for setting the image size. Just resize them all
13881         instead of killing the list softly.
13882
13883 2005-10-18  Jackson Harper  <jackson@ximian.com>
13884
13885         * Control.cs: Don't invalidate empty rectangles.
13886
13887 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13888
13889         * ListViewItem.cs:
13890           - Adds checked item to the Checked/Item lists (where empty before)
13891           - Do not add items to the Selected lists if they are already present
13892         * ListView.cs:
13893           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
13894           - When deleting items make sure that we delete them for the Selected
13895           and Checked list also.
13896
13897 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13898
13899         * Label.cs: Dispose objects no longer used
13900         * ThemeWin32Classic.cs: Dispose objects no longer used
13901
13902 2005-10-18  Jackson Harper  <jackson@ximian.com>
13903
13904         * TabControl.cs: Don't refresh the whole control when the tabs are
13905         scrolled, we just need to refresh the tab area.
13906
13907 2005-10-17  Jackson Harper  <jackson@ximian.com>
13908
13909         * XplatUIX11.cs: Compress code a little bit. Only calculate the
13910         after handle when we need it.
13911
13912 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13913
13914         * Control.cs: When the parent size changes, recalculate anchor 
13915           positions. Partial fix for #76462
13916
13917 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13918
13919         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
13920           drawn. Fixes #76462
13921
13922 2005-10-17  Jackson Harper  <jackson@ximian.com>
13923
13924         * MonthCalendar.cs: Don't create the numeric up down until our
13925         handle is created. Otherwise our handle is created in the
13926         constructor and we don't know if we are a WS_CHILD or WS_POPUP
13927         yet.
13928
13929 2005-10-17  Jackson Harper  <jackson@ximian.com>
13930
13931         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
13932         correctly.
13933
13934 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13935         * TreeNode.cs : small logical fix (was using local var instead of field)
13936         
13937 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13938
13939         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
13940
13941 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13942
13943         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
13944
13945 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
13946
13947         * Control.cs: 
13948           - Re-implemented anchoring code. My first version was really broken.
13949             This fixes bug #76033. Unlike the previous implementation we will
13950             no longer have round errors since all numbers are calculated from
13951             scratch every time. Removed various anchor-related obsolete vars.
13952           - InitLayout no longer causes layout event firing and layout to be 
13953             performed
13954
13955 2005-10-16  Jackson Harper  <jackson@ximian.com>
13956
13957         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
13958         which was broken).
13959
13960 2005-10-16  Jackson Harper  <jackson@ximian.com>
13961
13962         * TabControl.cs: Remove debug code.
13963
13964 2005-10-16  Jackson Harper  <jackson@ximian.com>
13965
13966         * XEventQueue.cs: Increase the default queue size (very simple
13967         apps needed to grow the queue).
13968         * Hwnd.cs: No finalizer so we don't need to suppress
13969         finalization. Compute the invalid area manually so a new rectangle
13970         does not newto be created.
13971         * ScrollableControl.cs: Don't set any params (otherwise visibility
13972         isn't set correctly).
13973         * MdiChildContext.cs: New constructor takes the mdi parent so it
13974         doesn't have to be computed and avoids a crash on windows. Draw
13975         the window icon properly, and allow the text to be seen.
13976         * Form.cs: Use new MdiChildContext constructor. Make sure the
13977         child context isn't null in wndproc.
13978         * TabControl.cs: Don't set focus, this is muddling keyboard
13979         behavoir. Expand the tab rows when a window size increase will
13980         allow extra tabs to be seen. Don't allow tabs smaller than the
13981         width of a window to be scrolled out of view.
13982         * TreeNode.cs:
13983         * TreeView.cs: Use measure string to calculate a nodes width, the
13984         width is cached and only updated when the text or the font is
13985         changed. Don't check for expand/collapse clicks on the first level
13986         nodes if root lines are disabled.
13987         
13988 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
13989
13990         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
13991
13992 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13993
13994         * DataGridBoolColumn.cs: fixes warning
13995
13996 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13997
13998         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
13999         to match more to match more precisely the MS Net behavior
14000
14001 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
14002
14003         * Hwnd.cs: Added field to track if window is mapped
14004         * XplatUIX11.cs: 
14005           - Unmap windows if they become 0-size, re-map when 
14006             they are >0 again; fixes #76035
14007           - Re-set our error handler after initializing X11Desktop
14008             to override any error handlers Gtk or whatever was called
14009             may have set.
14010
14011 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
14012
14013         * CheckedListBox.cs: Removed unused vars
14014         * ListView.cs: Fixed signatures
14015         * RichTextBox.cs: Removed unused vars
14016         * TextBoxBase.cs: Removed unused vars
14017         * XplatUIWin32.cs: Removed unused vars
14018         * XplatUIX11.cs: Removed unused vars
14019         * XplatUI.cs: Updated version and date to latest published
14020
14021 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
14022
14023         * Cursor.cs: Added private .ctor to work around a bug in
14024           resourceset (Thanks to Geoff Norton for the help on this)
14025         * SplitterEventArgs.cs: Made fields accessible so we don't
14026           waste boatloads of objects and can reuse the same one
14027           in Splitter
14028         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
14029           any captions and borders when generating screen coordinates
14030         * Splitter.cs: Reimplemented control, now fully complete, uses
14031           rubberband drawing, supports and obeys all properties, has
14032           proper cursors
14033
14034 2005-10-13  Miguel de Icaza  <miguel@novell.com>
14035
14036         * Form.cs (Form): Setup default values for autoscale and
14037         autoscale_base_size;  Make these instance variables, not static
14038         variables. 
14039
14040         (OnLoad): on the first load, adjust the size of the form.
14041
14042 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
14043
14044         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
14045           width argument to DrawReversibleRectangle()
14046         * XplatUIWin32.cs, XplatUIX11.cs: 
14047           - Implemented width for DrawReversibleRectangle()
14048           - Added logic to DrawReversibleRectangle that recognizes a zero
14049             width or height and only draws a line in that situation
14050         
14051 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
14052
14053         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
14054         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
14055         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
14056           method (it uses our FosterParent window to get a graphics context)
14057
14058 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
14059
14060         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
14061           and SetWindowBackground methods
14062         * Control.cs:
14063           - Setting proper ControlStyles
14064           - We no longer call XplatUI.SetWindowBackground and XplatUI.
14065             EraseWindowBackground, instead we draw the window background
14066             ourselves in PaintControlBackground. This behaviour is
14067             required to match MS, where, when OnPaintBackground is not
14068             called, the background is not drawn.
14069           - Removed unneeded Refresh() in set_Text
14070         * Hwnd.cs: Dropped the ErasePending support. No longer needed
14071         * XplatUIX11.cs:
14072           - Created DeriveStyles method to translate from CreateParams to
14073             FormBorderStyle and TitleStyle, also handles BorderStyle (which
14074             matches FormBorderStyle enum values)
14075           - Consolidated SetHwndStyles and CalculateWindowRect border/title
14076             style calculations into single DeriveStyles method
14077           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
14078             from redrawing the whole window on any resize or expose.
14079           - Fixed CreateWindow usage of SetWindowValuemask. Before not
14080             all styles were applied to our whole/client window appropriately
14081           - Removed EraseWindowBackground() and SetWindowBackground() methods
14082           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
14083             no longer clear/redraw the background through X
14084           - Removed handling of erase_pending bit, we have no use for it (or
14085             so it seems)
14086         * XplatUIOSX.cs:
14087           - Removed generation and handling of WM_ERASEBKGND message
14088           - Removed EraseWindowBackground() and SetWindowBackground() methods
14089           - Removed handling of hwnd.ErasePending flag
14090         * XplatUIWin32.cs:
14091           - Removed EraseWindowBackground() and SetWindowBackground() methods
14092           - We no longer call EraseWindowBackground on PaintEventStart, we 
14093             ignore the fErase flag, erasing is handled in Control in the
14094             background handler
14095         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
14096           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
14097           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
14098           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
14099           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
14100           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
14101           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
14102
14103 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
14104
14105         * PropertyGrids.cs: Get sub properties
14106         * PropertyGridView.cs: Fix drawing code
14107
14108 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14109
14110         * ListBox.cs: Fixes 76383
14111
14112 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14113
14114         * DataGridTextBoxColumn.cs: Sets location and size before attachment
14115         * ThemeWin32Classic.cs: Fixes border drawing and calculations
14116         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
14117
14118
14119 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14120
14121         * ComboBox.cs: Fixes border drawing
14122
14123 2005-10-10  Miguel de Icaza  <miguel@novell.com>
14124
14125         * MimeIcon.cs: Ignore errors if the file can not be read.
14126
14127 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
14128
14129         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
14130          - Fixed border calculations
14131          - Fixed horizontal scrolling in single column listboxes
14132          - Fixed drawing issues
14133
14134 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
14135
14136         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
14137           FormBorderStyle enum
14138         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
14139           code to determine FormBorderStyles from CreateParams
14140         * Form.cs:
14141           - Fixed bug where we'd set the wrong window styles if we were
14142             not creating an MDI window
14143           - Added call to XplatUI.SetBorderStyle when form borders are set
14144         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
14145         * Hwnd.cs:
14146           - Removed obsolete edge style
14147           - Switched from BorderStyle to FormBorderStyle
14148         
14149 2005-10-10  Jackson Harper  <jackson@ximian.com>
14150
14151         * Form.cs: Use the property to get the window handle instead of
14152         accessing it directly. Prevents a null reference exception.
14153
14154 2005-10-10  Jackson Harper  <jackson@ximian.com>
14155
14156         * TreeView.cs: Don't adjust the rect given to DrawString now that
14157         our libgdiplus draws correctly.
14158
14159 2005-10-08  Jackson Harper  <jackson@ximian.com>
14160
14161         * TreeView.cs: Don't try to find the clicked on node if there are
14162         no nodes in the tree.
14163
14164 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
14165
14166         * RichTextBox.cs:
14167
14168           restore
14169
14170 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
14171
14172         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
14173           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
14174           ErrorProvider.cs:
14175           Use ResPool for brushes and dispose System.Drawing objects that
14176           are not used anymore.
14177
14178 2005-10-07  Jackson Harper  <jackson@ximian.com>
14179
14180         * MdiChildContext.cs: Use the new borders instead of drawing them
14181         ourselves.
14182
14183 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
14184
14185         * Calling UpdateBounds after changing the window's BorderStyle 
14186         since the style can change the ClientSize
14187
14188 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14189
14190         * Control.cs: Made PaintControlBackground virtual
14191         * Panel.cs: Overriding PaintControlBackground instead of using paint
14192           event; paint event method was interfering with 'real' users of the
14193           event.
14194
14195 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
14196
14197         * ThemeWin32Classic.cs: remove border drawing since it is handled
14198         by the base control class now and was causing double border drawing.
14199
14200 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14201
14202         * Panel.cs: Redraw our background on paint. Not a pretty solution,
14203           but it does seem to match MS behaviour. This fixes bug #75324
14204
14205 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14206
14207         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
14208           somewhat hackish looking
14209
14210 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14211
14212         * TextBoxBase.cs:
14213           - We now accept Enter even if AcceptEnter is false, if the containing
14214             form does not have an AcceptButton configured (fixes bug #76355)
14215           - Calculations are now fixed to no longer use Width/Height, but
14216             ClientSize.Width/Height, since we now support borders (this was
14217             a result of fixing borders and therefore bug #76166)
14218           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
14219             true (fixes bug #76354)
14220         
14221 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14222
14223         * Control.cs: 
14224           - Defaulting BorderStyle and setting it in XplatUI when our window 
14225             is created
14226           - Added enum check to InternalBorderStyle setter
14227         * XplatUIX11.cs: 
14228           - Added drawing of window borders
14229           - Now properly calculates WM decorations offset for toplevel 
14230             windows (fixes bug #74763)
14231         * XplatUIWin32.cs: 
14232           - Implemented BorderStyles for windows (we're letting win32 draw 
14233             the border for us)
14234           - Fixed the signature for SetWindowLong
14235         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
14236           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
14237           setting borders
14238         * UpDownBase.cs: Remove drawing of borders, this is handled by
14239           the driver, outside the client area
14240         * ListView.cs: Removed bogus border calculations. The control should
14241           be oblivious to borders, since those are not part of the client
14242           area. 
14243         * X11DesktopColors.cs: Commented out (currently) unneeded variables
14244         * ThemeWin32Classic.cs: Removed border calculations from ListView 
14245           drawing code
14246
14247 2005-10-06  Jackson Harper  <jackson@ximian.com>
14248
14249         * MdiChildContext.cs: Clear out the old virtual position remove
14250         all the unneeded calls to CreateGraphics.
14251
14252 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14253
14254         * TextControl.cs: Use proper color for highlighted text; fixes #76350
14255
14256 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14257
14258         * Form.cs: 
14259           - Added loading and setting of our new default icon
14260           - Only set icon if window is already created
14261
14262 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14263
14264         * Label.cs:
14265           - Do not explicitly set the foreground and background colors, to
14266             allow inheriting from parents (fixes #76302)
14267           - Use Control's InternalBorderStyle property to deal with borders
14268
14269 2005-10-06  Jackson Harper  <jackson@ximian.com>
14270
14271         * MdiChildContext.cs: Use the new xplatui function to draw a
14272         reversible rect.
14273
14274 2005-10-06  Jackson Harper  <jackson@ximian.com>
14275
14276         * Form.cs: Add the parent before creating the child context cause
14277         we need the parent when setting up the child.
14278
14279 2005-10-06  Jackson Harper  <jackson@ximian.com>
14280
14281         * FolderBrowserDialog.cs: redo the tree population code so a
14282         second thread isn't used. Should be a lot faster and more stable
14283         now.
14284
14285 2005-10-05  Jackson Harper  <jackson@ximian.com>
14286
14287         * TreeView.cs: There are no expand/collapse boxes if the node has
14288         no children.
14289
14290 2005-10-05  Jackson Harper  <jackson@ximian.com>
14291
14292         * X11DesktopColors.cs: Get menu colours for the gtk theme.
14293
14294 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
14295
14296         * FileDialog.cs: Fix InitialDirectory
14297
14298 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
14299
14300         * ComboBox.cs:
14301                 - Fixes changing between styles
14302                 - Fixes simple mode
14303                 - Fixes last item crashing when navigating with keyboard
14304
14305 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
14306
14307         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
14308
14309 2005-10-05  Jackson Harper  <jackson@ximian.com>
14310
14311         * TreeView.cs: If updating the root node do a full refresh.
14312         * TreeNode.cs: The root node should be expanded by default. Also
14313         added a utility prop to tell if we are the root node.
14314         * TreeNodeCollection.cs: Only refresh if the node we are being
14315         added to is expanded. Also added a comment on a potential
14316         optimization.
14317         
14318 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
14319
14320         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
14321           in dispose method. Fixes #76330
14322
14323 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
14324
14325         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
14326
14327                 - Implements vertical and horizontal scrolling using XplatUI
14328                 - Fixes keyboard navagation
14329                 - Fixes EnsureVisible
14330                 - Drawing fixes
14331                 - Handles and draws focus properly
14332
14333
14334 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
14335
14336         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
14337           Create handle. NET_2_0: Destroy handle when value is null.
14338
14339 2005-10-03  Jackson Harper  <jackson@ximian.com>
14340
14341         * ScrollBar.cs: My last scrollbar patch was broken. This is a
14342         revert and a new patch to prevent the thumb from refreshing so
14343         much.
14344
14345 2005-10-02  Jackson Harper  <jackson@ximian.com>
14346
14347         * ScrollBar.cs: Don't update position if it hasn't actually
14348         changed. This occurs when you hold down the increment/decrement
14349         buttons and the thumb gets to the max/min.
14350
14351 2005-10-01  Jackson Harper  <jackson@ximian.com>
14352
14353         * Form.cs:
14354         * MdiChildContext.cs:
14355         * MdiClient.cs: Implement ActiveMdiChild in Form.
14356
14357 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
14358
14359         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
14360
14361 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
14362
14363         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
14364           be found
14365
14366 2005-09-30  Jackson Harper  <jackson@ximian.com>
14367
14368         * ListBox.cs: Don't do a full refresh unless some data has
14369         actually changed.
14370
14371 2005-09-30  Jackson Harper  <jackson@ximian.com>
14372
14373         * TreeView.cs: Make sure that the checkboxes size is factored in
14374         even when not visible.
14375
14376 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14377
14378         * FileDialog.cs: Fix Jordi's build break
14379
14380 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14381
14382         * FileDialog.cs: 
14383                 - Use standard the Windows colours for the combobox as espected
14384                 - Dispose objects that use resouces when no longer need them
14385
14386 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14387
14388         * X11DesktopColors.cs: Initial incomplete implementation
14389         * XplatUIX11.cs: Added call to initialize X11DesktopColors
14390
14391 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
14392
14393         * Theme.cs: 
14394           - Switched Theme color names to match the names defined in 
14395             System.Drawing.KnownColors. Life's hard enough, no need to make 
14396             it harder.
14397           - Added setters to all theme color properties so themes can set
14398             their color schemes. The setters also propagate the color changes
14399             to System.Drawing.KnownColors via reflection
14400         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
14401           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
14402           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
14403           use the new, more logical theme color names
14404         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
14405           post-NT colors
14406         * ThemeWin32Classic.cs:
14407           - Removed code to set the old classic Windows colors. Instead it
14408             now relies on the colors returned by System.Drawing.KnownColors
14409             which will be either modern static colors (Unix) or colors
14410             read from the user's configuration (Win32)
14411           - Updated to use the new, more logical theme color names
14412           - Switched DataGrid drawing code to use only Theme colors instead of
14413             a mix of System.Drawing.KnownColors and Theme colors
14414           - DrawFrameControl(): Removed code that fills the button area, the
14415             fill would overwrite any previous fill done by a control. This
14416             fixes bug #75338 
14417           - Added DrawReversibleRectangle() stub
14418         * ScrollableControl.cs: Set visible state to false when scrollbars
14419           are removed (pdn fix)
14420         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
14421           DrawReversibleRectangle() method to allow drawing primitive 
14422           'rubber bands'
14423         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
14424
14425 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14426
14427         * ImageList.cs: Add(Icon): Create handle.
14428
14429 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14430
14431         * ListView.cs:
14432         * ThemeWin32Classic.cs:
14433                 - Fixes detail mode
14434                 - Sets clippings
14435                 - Issues with drawing
14436
14437 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14438
14439         * ImageList.cs: Moved RecreateHandle back to ImageList as event
14440           source has to be the ImageList.
14441
14442 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14443
14444         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
14445
14446 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14447
14448         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
14449
14450 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14451
14452         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
14453
14454 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
14455         * GridItem.cs: Fixed TODOs
14456         * GridItemCollection.cs: Added ICollection interface
14457
14458 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14459
14460         * ImageList.cs: Resize icons when needed.
14461
14462 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
14463
14464         * ListViewItem.cs
14465                 - Fixes GetBounds and returns on screen rects
14466         * ListView.cs:
14467                 - Fixes vertical and horzintal scrolling of items
14468         * ThemeWin32Classic.cs:
14469                 - Fixes drawing
14470                 
14471 2005-09-29  Raja R Harinath  <harinath@gmail.com>
14472
14473         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
14474
14475 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
14476
14477         * ImageList.cs: Added comments about handle creation. Moved Handle,
14478           HandleCreated and OnRecreateHandle implementations to ImageCollection.
14479           Handle is created in Add methods.
14480
14481 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14482          
14483         * DataGridDrawingLogic.cs: 
14484                 - Takes rows into account on Colum calculations
14485                 - Returns the column when clickig
14486         * DataGrid.cs:
14487                 - Fixes default HitTestInfo values
14488                 - Fixes HitTestInfo.ToString
14489                 - Fixes ResetBackColor          
14490         
14491 2005-09-28  Jackson Harper  <jackson@ximian.com>
14492
14493         * MdiChildContext.cs: Obey rules for fixed sized windows (no
14494         sizing or cursor changes). Also added some temp code to draw the
14495         titlebars text (Makes dev a little easier).
14496
14497 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14498
14499         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
14500
14501 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14502          
14503         * ListBox.cs: Fixes bug 76253
14504
14505 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14506
14507         * ImageList.cs: Added comments about the current implementation. Added
14508           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
14509           Format32bppArgb to preserve transparency and can use Graphics.FromImage
14510           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
14511           with Bitmap.LockBits for better performance. Revised the whole file to
14512           match MS.NET behaviour and provide better performance. Non-public
14513           interface members are calling public members even when they throw
14514           NotSupportedException for better maintainability. Moved ColorDepth,
14515           ImageSize, ImageStream and TransparentColor implementations to
14516           ImageCollection for better performance as these properties are not used
14517           by ImageList.
14518         * ImageListStreamer.cs: Added a new internal constructor that takes an
14519           ImageList.ImageCollection and serializes Images based on
14520           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
14521           match ImageList property name.
14522
14523 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
14524
14525         * ListBox.cs: Fixes IndexFromPoint for last item
14526
14527 2005-09-27  Jackson Harper  <jackson@ximian.com>
14528
14529         * Form.cs: Set the position of new mdi children correctly.
14530
14531 2005-09-27  Jackson Harper  <jackson@ximian.com>
14532
14533         * MdiClient.cs: New mdi children need to be added to the back of
14534         the controls collection so the zorder is set correctly. Also add a
14535         count of all the child windows that have been created.
14536
14537 2005-09-27  Jackson Harper  <jackson@ximian.com>
14538
14539         * Form.cs (CreateParams): Setup MDI forms correctly.
14540
14541 2005-09-27  Jackson Harper  <jackson@ximian.com>
14542
14543         * MdiChildContext.cs:
14544         * MonthCalendar.cs:
14545         * UpDownBase.cs:
14546         * ListBox.cs:
14547         * ListView.cs:
14548         * TextBoxBase.cs:
14549         * TreeView.cs:
14550         * ScrollableControl.cs:
14551         * ComboBox.cs: Add implicit controls using the new implict control
14552         functionality in ControlCollection. Also try to block multiple
14553         control add in a suspend/resume layout to save some cycles.
14554         
14555 2005-09-27  Jackson Harper  <jackson@ximian.com>
14556
14557         * Control.cs: Add functionality to the controls collection to add
14558         'implicit controls' these are controls that are created by the
14559         containing control but should not be exposed to the user. Such as
14560         scrollbars in the treeview.
14561         * Form.cs: The list var of the ControlsCollection is no longer
14562         available because of the potential of implicit controls getting
14563         ignored by someone accessing the list directly.
14564
14565 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
14566
14567         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
14568           loose it's parent. (Fixed bug introduced in r49103 when we added
14569           setting the child parent to null on Remove)
14570
14571 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
14572
14573         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
14574         * Splitter.cs: Added missing attributes for BorderStyle property.
14575         * TextBoxBase.cs: Marked Calculate* methods internal.
14576         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
14577         MS.NET.
14578
14579 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
14580          
14581         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
14582
14583 2005-09-25  Jackson Harper  <jackson@ximian.com>
14584
14585         * TreeView.cs: Update the node bounds correctly regardless of
14586         whether the node is visible.
14587
14588 2005-09-25  Jackson Harper  <jackson@ximian.com>
14589
14590         * ImageList.cs: Don't dispose the image after it is added to the
14591         image list. Only reformat images that need to be resized.
14592
14593 2005-09-25  Jackson Harper  <jackson@ximian.com>
14594
14595         * ImageList.cs: Don't set the format when changing the image.
14596
14597 2005-09-25  Jackson Harper  <jackson@ximian.com>
14598
14599         * TreeView.cs: We can't just assume the node has a font. Use the
14600         treeviews font if no node font is available.
14601
14602 2005-09-25  Jackson Harper  <jackson@ximian.com>
14603
14604         * TreeView.cs: Allow the scrollbars to be reset with negative
14605         values.
14606         - Don't add scrollbars to negative sized windows.
14607
14608 2005-09-23  Jackson Harper  <jackson@ximian.com>
14609
14610         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
14611         old Mono.Posix. Also remove some stray code that shouldn't have
14612         been committed.
14613
14614 2005-09-23  Jackson Harper  <jackson@ximian.com>
14615
14616         * TreeView.cs: Attempt at proper sizing of the horizontal
14617         scrollbar. Also don't resize the scrollbars unless they are
14618         visible.
14619
14620 2005-09-23  Jackson Harper  <jackson@ximian.com>
14621
14622         * TreeView.cs: We don't need to expand the invalid area when the
14623         selection changes, as this is all drawn in the node's bounding
14624         box. The area needs to be expanded (previous typo was contracting
14625         it) when the focus rect moves.
14626
14627 2005-09-23  Jackson Harper  <jackson@ximian.com>
14628
14629         * TreeView.cs: Display the selection box under the correct
14630         circumstances. We were rendering white text with no selection box
14631         before.
14632
14633 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
14634
14635         * TextControl.cs(Split): Now updates selection start/end if it points 
14636           into a line that's being split. Fixes a FIXME and bug #75258
14637
14638 2005-09-23  Jackson Harper  <jackson@ximian.com>
14639
14640         * Binding.cs:
14641         * ListControl.cs: Don't use the path when retrieving binding
14642         managers from the binding context. My bat sense tells me that the
14643         path is only used on insertion.
14644
14645 2005-09-22  Jackson Harper  <jackson@ximian.com>
14646
14647         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
14648
14649 2005-09-22  Jackson Harper  <jackson@ximian.com>
14650
14651         * Splitter.cs: There are special cursors used for splitting.
14652         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
14653
14654 2005-09-22  Jackson Harper  <jackson@ximian.com>
14655
14656         * Splitter.cs: Change the cursor appropriately when the splitter
14657         is moused over, so the user actually knows there is a splitter
14658         there.
14659
14660 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14661
14662        * Label.cs : Fix ToString method to give same output as MS.NET
14663
14664 2005-09-22  Jackson Harper  <jackson@ximian.com>
14665
14666         * TreeView.cs: Create the scrollbars when the handle is created
14667         and add them right away, just make them invisble. Also account for
14668         the window being shrunk vertically to the point that the vert
14669         scrollbar needs to be added.
14670         - Remove some 0.5 adjustments to get around anti aliasing issues.
14671         
14672 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
14673          
14674         * MainMenu.cs: Fixes default value
14675         * MenuItem.cs: Fixes default value
14676
14677 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
14678
14679         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
14680
14681 2005-09-21  Jackson Harper  <jackson@ximian.com>
14682
14683         * Control.cs: Don't try to set the border style on the window if
14684         it hasn't been created. When the window is created the border
14685         style will be used.
14686
14687 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
14688
14689         * Control.cs (Update): Don't call XplatUI if we don't have a
14690           window handle yet
14691
14692 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
14693
14694         * ContainerControl.cs: Instead of throwing an exception, print
14695           a one-time warning about Validate not being implemented
14696         * XplatUIWin32.cs: Removed debug output
14697
14698 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
14699
14700         * Control.cs: Only set XplatUI background if we expect the windowing
14701           system to handle the background. This stops controls that draw their
14702           own background from flickering
14703
14704         * XplatUIX11.cs: Support custom visuals and colormaps for window 
14705           creation. This allows, amongst other things, using MWF X11 windows 
14706           with OpenGL.
14707
14708 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
14709
14710         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
14711           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
14712           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
14713           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
14714           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
14715           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
14716           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
14717           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
14718           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
14719           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
14720           GridColumnStylesCollection.cs, 
14721           IDataGridColumnStyleEditingNotificationService.cs,
14722           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
14723           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
14724           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
14725           TreeNodeCollection.cs, AmbientProperties.cs, 
14726           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
14727           DataObject.cs, ErrorProvider.cs, Splitter.cs,
14728           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
14729           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
14730           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
14731           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
14732           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
14733           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
14734           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
14735           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
14736           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
14737           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
14738           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
14739           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
14740           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
14741           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
14742           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
14743           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
14744           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
14745           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
14746           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
14747           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
14748           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
14749           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
14750           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
14751           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
14752           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
14753           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
14754           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
14755           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
14756           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
14757           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
14758           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
14759           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
14760           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
14761           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
14762           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
14763
14764 2005-09-21  Jackson Harper  <jackson@ximian.com>
14765
14766         * TreeNode.cs: Call Before/After Expand not Collapse when
14767         expanding.
14768
14769 2005-09-20  Jackson Harper  <jackson@ximian.com>
14770         
14771         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
14772
14773 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14774          
14775         * ListViewItem.cs:
14776                 - Fixes bug 76120
14777                 - Fixes proper storing of subitems
14778                 - Fixes not updated items
14779
14780 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
14781
14782         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
14783           things if our window handle isn't created yet. Also disabled 
14784           debug for TextBoxBase
14785
14786 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
14787
14788         * MenuAPI.cs: Remove filtering of events to allow menu usage
14789
14790 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14791
14792         * Cursor.cs: Allow null to be passed to Cursor.Current.
14793
14794 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
14795
14796         * ThemeWin32Classic.cs:
14797           - Change some private methods/fields to protected virtual so that 
14798             they can be accessed and overriden in derived classes
14799           - First refactoring of some methods. Derived themes now don't 
14800             need to duplicate the complete code from ThemeWin32Classic
14801         * ThemeNice.cs:
14802           - Added nice StatusBar
14803           - Derive from ThemeWin32Classic and not Theme
14804           - Removed duplicate ThemeWin32Classic code
14805
14806 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14807
14808         * Control.cs (ControlCollection.Add): If the value null is passed
14809         the control is ignored. 
14810
14811         Optimize this loop.
14812
14813 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
14814
14815         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
14816           PostQuitMessage state.
14817         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
14818
14819 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
14820
14821         * Application.cs: Our constructor will never get called, move 
14822           initialization to fields; fixes bug #75933
14823
14824 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14825
14826         * FileDialog.cs :
14827                 - Allow files to be selected properly using file name
14828                 combo box.
14829                 - Add ability to change diretory (absolute / relative)
14830                 using file name combo box.
14831
14832 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14833          
14834         * ListBox.cs: 
14835                 - Fixes Multicolumn listboxes item wrong calculations
14836                 - Allows to click when only one item is in the listbox
14837                 - Fixes crash when no items using keyboard navigation
14838
14839 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
14840
14841         * ComboBox.cs: Reverted almost everything from the latest patch which
14842           broke ComboBox
14843
14844 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
14845         
14846         * ToolTip.cs:
14847                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
14848         * ComboBox.cs:
14849                 - When DropDownStyle is Simple, it does not show scrollbar 
14850                 to the last item of the list.
14851                 - When DropDownStyle is Simple, it crashed when the list was 
14852                 scrolled down with the down cursor key.
14853                 - Fixed a bug that when DropDownStyle is DropDownList, the 
14854                 selected item was not shown.
14855                 - The position of the selected item was not preserved when 
14856                 the next dropdown happened.
14857         * ThemeWin32Classic.cs:
14858                 - Items were wrapped at the right end.
14859         * CheckedListBox.cs:
14860                 - Fixed Add method
14861         * ListBox.cs:
14862                 - Items should be fully shown.
14863                 - When resizing and vertical scrollbar disappeared, the item 
14864                 of index 0 should be on the top of the list.
14865                 - GetItemRectangle should consider the size of ver. scrollbar
14866         * StatusBar.cs:
14867                 - SizingGrip area should not be allocated when it is not 
14868                 displayed.
14869                 - Now it reflects MinWidth of the containing panel and 
14870                 fixed a crash that happens when its width becomes so small.
14871
14872 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14873
14874         * CheckedListBox.cs: Fixes bug 76028
14875         * ListBox.cs: Fixes bug 76028
14876
14877 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14878
14879         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
14880         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
14881
14882 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
14883
14884         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
14885
14886 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14887
14888         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
14889
14890 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14891
14892         * IRootGridEntry.cs: Added
14893         * PropertyGridCommands.cs: Added
14894         * PropertiesTab.cs: Added missing methods and property
14895         * PropertyGridView.cs: Made class internal
14896         * PropertyGridTextBox.cs: Made class internal
14897
14898 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14899
14900         * MimeIcon.cs: Try to check some other environment variables
14901           if "DESKTOP_SESSION" returns "default"
14902
14903 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14904
14905         * ThemeNice.cs: Corrected background colors (e.g. menus)
14906         * ColorDialog.cs: Use correct background colors for controls
14907
14908 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14909
14910         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
14911
14912 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
14913
14914         * RichTextBox.cs: Added initial implementation
14915         * lang.cs: Removed. Was accidentally checked in long time ago
14916         * TODO: Removed. Contents were obsolete
14917
14918 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14919                                                                                 
14920         * PropertiesTab.cs : Added
14921
14922 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14923                                                                                 
14924         * PropertyGrid.cs : Update
14925         * PropertyGridView.cs : Update
14926         * System.Windows.Forms.resx : Added images and strings
14927
14928 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
14929
14930         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
14931  
14932 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
14933
14934         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
14935           a busy loop right after the Ungrab the X11 display is otherwise 
14936           blocked
14937
14938 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
14939
14940         * ThemeWin32Classic.cs: Optimise the use of clipping
14941
14942 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
14943
14944         * DataGrid.cs: fixes recursion bug
14945
14946 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
14947
14948         * ThemeNice.cs: 
14949           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
14950           - Cleanup
14951
14952 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
14953
14954         * ThemeNice.cs: Draw nice ProgressBars
14955
14956 2005-09-01  Miguel de Icaza  <miguel@novell.com>
14957
14958         * VScrollBar.cs: Another buglet found by Aaron's tool. 
14959
14960         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
14961         bug finder.
14962
14963 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
14964
14965         * ThemeNice.cs:
14966           - Added nicer menu drawing
14967           - Updated DrawTab
14968           - some refactoring
14969
14970 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14971
14972         * CreateParams.cs (ToString): Made output match MS
14973         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
14974             handle is already created (to avoid forcing window creation)
14975         * XplatUIX11.cs: Set window text to caption after creating window,
14976           in case Text was set before window was created
14977         * Form.cs: Use this.Text instead of a static string as caption
14978
14979 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14980
14981         * NotifyIcon.cs: Don't set the window to visible; this screws
14982           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
14983           OnPaint without a bitmap)
14984         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
14985           happen very often anyway; we could add the check to the WM_PAINT 
14986           event generation code
14987
14988 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14989
14990         * NotifyIcon.cs: Fill the icon area with a background color, to 
14991           avoid 'residue' when transparent icons are drawn
14992         * XplatUIX11.cs:
14993           - Handle whole_window == client_window when destroying windows
14994           - SystrayAdd(): Set client_window to whole_window value to
14995             get mouse and other events passed to NotifyIcon
14996
14997 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14998
14999         * Form.cs: Set proper default for Opacity property
15000         * NotifyIcon.cs:
15001           - ShowSystray(): Don't bother creating telling the OS
15002             about the systray item if no icon is provided
15003           - Now handles WM_NCPAINT message to deal with whole/client window
15004             split
15005           - Create window as visible to not get caught by Expose optimization
15006         * Hwnd.cs: Removed debug message
15007         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
15008           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
15009             PaintEventStart/End to use new client argument
15010         * TextBoxBase.cs:
15011           - Commented out debug messages
15012           - Switched PaintEventStart/End to use new client argument
15013         * XplatUI.cs: Added client window bool to PaintEventStart()/
15014           PaintEventEnd() calls, to support drawing in non-client areas
15015         * XplatUIDriver.cs: 
15016           - Added client window bool to PaintEventStart()/PaintEventEnd() 
15017             calls, to support drawing in non-client areas
15018           - Added conditional compile to allow using MWF BeginInvoke 
15019             on MS runtime
15020         * XplatUIX11.cs:
15021           - Added some conditional debug output
15022           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
15023             whole/client window split
15024           - Implemented handling of client argument to PaintEventStart()/End()
15025         * Control.cs:
15026           - Throw exception if BeginInvoke() is called and the window handle
15027             or one of the window's parent handles is not created
15028           - Added conditional compile to allow using MWF BeginInvoke on
15029             MS runtime
15030           - get_Parent(): Only sets parent if handle is created. This avoids
15031             forcing window handle creation when parent is set.
15032           - Now fires Layout and Parent changed events in proper order
15033           - Switched to use Handle instead of window.Handle for Z-Order setting,
15034             the get_Parent() patch above causes us to possibly get null for 'window'
15035           - Implemented handling of client argument to PaintEventStart()/End()
15036           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
15037             default handling)
15038           - Now sends a Refresh() to all child windows when Refresh() is called
15039
15040 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
15041
15042         * Form.cs: Added (non-functional) Opacity property
15043         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
15044
15045 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
15046         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
15047           use export MONO_THEME=nice to activate it.
15048           Currently supported controls:
15049           - Button
15050           - ComboBox
15051           - ScrollBar
15052           - TabControl (TabAlignment.Top only, other will follow)
15053         * ThemeEngine.cs: Add theme nice
15054         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
15055           if enabled
15056
15057 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
15058
15059         * Splitter.cs: Resize docked control and its neighbor.
15060
15061 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15062         -- Making Windows with Menus layout correctly --
15063         * Form.cs : The first leg of the fix
15064                 Menu setter - adjust Client Size as needed to make space for the menu
15065                 SetClientSizeCore - doesn't call base version to be able to pass the 
15066                         menu handle to XplatUI.CalculateWindowRect
15067         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
15068         * XplatUIX11.cs: The critical second leg of the fix
15069                 GetWindowPos needs to use a recalculated client_rect
15070                 so that resizing the window doesn't break layout of child controls. 
15071                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
15072                 Lots of \t\n killed
15073
15074 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
15075
15076         * Label.cs: Now properly recalculates width and height on Font and Text
15077           changes if AutoSize is set
15078
15079 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
15080         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
15081
15082 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
15083
15084         * ImageList.cs: Makes ToString method compatible with MS
15085
15086 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
15087
15088         * MenuAPI.cs: fixes bug 75716
15089
15090 2005-08-11 Umadevi S <sumadevi@novell.com>
15091         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
15092
15093 2005-08-11 Umadevi S <sumadevi@novell.com>
15094         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
15095
15096 2005-08-10  Umadevi S <sumadevi@novell.com>
15097         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
15098
15099 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
15100
15101         * Menu.cs: fixes bug 75700
15102         * MenuAPI.cs: fixes navigation issues
15103
15104 2005-08-09  Umadevi S <sumadevi@novell.com>
15105         * CheckedListBox.cs - simple fix for GetItemChecked.
15106
15107 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
15108
15109         * ComboBox.cs: Serveral fixes
15110         * ListBox.cs: Serveral fixes
15111
15112 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
15113
15114         * ComboBox.cs: Fixes FindString methods and GetItemHeight
15115         * ListBox.cs: Fixes FindString methods
15116
15117 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
15118
15119         * DataGrid.cs: fixes bugs exposed by new tests
15120
15121 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
15122
15123         * Mime.cs: Compile Mono assembly references only if compiling
15124           with Mono (Allows to build with VS.Net again)
15125
15126 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
15127
15128         * Control.cs (PaintControlBackground): Draw background image
15129         corrrectly.
15130         (CheckForIllegalCrossThreadCalls): Stubbed.
15131         
15132         * Form.cs (OnCreateControl): Center when should be centered.
15133         
15134         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
15135
15136 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
15137
15138         * Binding.cs: Binding to properties should be case unsensitive
15139
15140 2005-07-18 vlindos@nucleusys.com
15141
15142         * DataGrid.cs: fixes setmember order
15143
15144 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
15145
15146         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
15147         * FileDialog.cs: FileDialog is now resizable and uses the new
15148           MimeIconEngine
15149
15150 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
15151
15152         * DataGridTextBoxColumn.cs: default value
15153         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
15154         * GridTableStylesCollection.cs: fixes checking MappingName
15155         * DataGridDrawingLogic.cs: fixes drawing logic issues
15156         * DataSourceHelper.cs: rewritten to make compatible with more data sources
15157         * DataGrid.cs: fixes    
15158
15159 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
15160
15161         * MimeGenerated.cs: Use case sensitive comparer for
15162           NameValueCollections
15163
15164 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
15165
15166         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
15167         * ThemeWin32Classic.cs: bug fixes, code refactoring
15168         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
15169         * DataGrid.cs: bug fixes, code refactoring
15170         * DataGridTextBox.cs: bug fixes, code refactoring
15171         * DataGridColumnStyle.cs:  bug fixes, code refactoring
15172         * Theme.cs:  bug fixes, code refactoring
15173
15174 2005-07-01  Peter Bartok  <pbartok@novell.com> 
15175
15176         * TextControl.cs: Quick fix for the reported crash on ColorDialog
15177           and other text box usage
15178
15179 2005-07-01  Jackson Harper  <jackson@ximian.com>
15180
15181         * TabControl.cs: Make sure the bottom of the tab covers the pages
15182         border.
15183
15184 2005-06-30  Peter Bartok  <pbartok@novell.com> 
15185
15186         * Form.cs (ShowDialog): Assign owner of the dialog
15187         * TextBoxBase.cs: Always refresh caret size when deleting, caret
15188           might have been moved to a tag with different height
15189
15190 2005-06-30  Jackson Harper  <jackson@ximian.com>
15191
15192         * Form.cs: Don't create an infinite loop when setting focus
15193         * MenuItem.cs: Don't dirty the parents if we don't have any
15194
15195 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
15196
15197         * LibSupport.cs: Rename
15198
15199 2005-06-29  Peter Bartok  <pbartok@novell.com>
15200
15201         * TextBoxBase.cs: Re-align caret after deleting a character
15202         * TextControl.cs:
15203           - DeleteChars(): Ensure that tag covers the provided position
15204           - StreamLine(): Drop reference for dropped tag
15205
15206 2005-06-29  Peter Bartok  <pbartok@novell.com> 
15207
15208         * TextControl.cs: 
15209           - Selections now work properly, anchoring at the initial location
15210             and properly extending in either direction (SetSelectionToCaret(),
15211             SetSelectionStart() and SetSelectionEnd())
15212           - No longer redraws the whole control on selection change, now
15213             calculates delta between previous and new selection and only
15214             invalidates/redraws that area
15215           - Fixed FindPos() math off-by-one errors
15216           - Changed DeleteChars() to verify the provided tag covers the
15217             provided position, selections may have a tag that doesn't cover
15218             the position if the selection is at a tag border
15219           - Fixed off-by-one errors in DeleteChars()
15220           - Added missing streamlining check in DeleteChars() to remove
15221             zero-length tags
15222           - Implemented Invalidate() method, now properly calculates exposures
15223             between two given lines/positions
15224           - Implemented SetSelection()
15225           - Obsoleted and removed FixupSelection()
15226           - Improved RecalculateDocument() logic, removing code duplication
15227
15228 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15229
15230         * LibSupport.cs: changes to match different input/output arguments.
15231
15232 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15233
15234         * LibSupport.cs: added libsupport.so init routine.
15235
15236 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
15237         
15238         * ControlBindingsCollection.cs
15239                 - Throws an exception on null datasource when adding
15240                 - Checks for duplicated bindings when adding
15241
15242 2005-06-28  Jackson Harper  <jackson@ximian.com>
15243
15244         * TreeView.cs (OnKeyDown): Support left and right properly
15245         (navigates as well as expanding and collapsing.
15246         - Add support for Multiply, this expands all the selected nodes
15247         children.
15248         - Fix some tabbing.
15249
15250 2005-06-28  Jackson Harper  <jackson@ximian.com>
15251
15252         * TreeView.cs: Implement keyboard navigation, currently supports,
15253         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
15254         support for toggling checkboxes with the space bar.
15255
15256 2005-06-28  Jackson Harper  <jackson@ximian.com>
15257
15258         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
15259         tree.
15260
15261 2005-06-28  Jackson Harper  <jackson@ximian.com>
15262
15263         * TreeView.cs: Add missing event.
15264
15265 2005-06-27  Peter Bartok  <pbartok@novell.com> 
15266
15267         * TextControl.cs:
15268           - Made line ending size configurable (now allows for counting 
15269             lineendings as \n or \r\n)
15270           - Added margin to viewport to keep caret visible on right side
15271           - Fixed translation routines for line/pos to documentpos to consider
15272             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
15273           - Fixed some line-endings to be unix style
15274           - Fixed Document.FormatText to perform it's calculations 1-based
15275           - Added descriptions for a few methods that might otherwise get 
15276             used wrong
15277           - Added NOTE section with some basic conventions to remember at 
15278             the top of the file
15279           - Major fixup for RichTextBox selection drawing:
15280             * Fixed crashes when multiple tags on a single line were selected
15281             * fixed selection box drawing not overlaying text
15282             * fixed bogus offset calculation for tags not starting at index 1
15283             * Switched behaviour from using multiple Substrings of a 
15284               StringBuilder.ToString() to using multiple 
15285               StringBuilder.ToString(start, length) statements, hoping this is
15286               faster (kept original version commented out in the code, in case
15287               original version was faster)
15288         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
15289           alignment != Left
15290         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
15291           call it as well
15292
15293 2005-06-27  Jackson Harper  <jackson@ximian.com>
15294
15295         * TabControl.cs: Move to the left and right with the arrow
15296         keys. These keys don't cycle beyond first and last like
15297         tab. Refresh all the tabs when scrolling them to the left or
15298         right.
15299
15300 2005-06-27  Jackson Harper  <jackson@ximian.com>
15301
15302         * TabControl.cs:
15303           - ToString: Added method
15304           - CreateParams: Remove TODO and comment
15305           - OnKeyDown: Cycle through bounds properly.
15306           - SelectedIndex: Scroll to the right or left if we need to
15307           display the newly selected tab.
15308
15309 2005-06-23  Jackson Harper  <jackson@ximian.com>
15310
15311         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
15312         set.
15313
15314 2005-06-23  Jackson Harper  <jackson@ximian.com>
15315
15316         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
15317         CTRL-SHIFT-TAB, and HOME, END are there any others?
15318
15319 2005-06-23  Jackson Harper  <jackson@ximian.com>
15320
15321         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
15322
15323 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15324         
15325         * DataGridTextBoxColumn.cs: fixes and enhancements
15326         * ThemeWin32Classic.cs: fixes and enhancements
15327         * DataGridBoolColumn.cs:  fixes and enhancements
15328         * DataGridDrawingLogic.cs:  fixes and enhancements
15329         * CurrencyManager.cs: fixes and enhancements
15330         * DataGrid.cs: fixes and enhancements
15331         * DataGridColumnStyle.cs:  fixes and enhancements
15332
15333 2005-06-22  Jackson Harper  <jackson@ximian.com>
15334
15335         * TabControl.cs: Add some missing methods that just call into the
15336         base. Make the TabPageCollection's IList interface behave in the
15337         same manner as the MS implementation.
15338
15339 2005-06-22  Peter Bartok  <pbartok@novell.com> 
15340
15341         * TextControl.cs: Added sanity check
15342         * TextBoxBase.cs: 
15343           - Fixed wrapping behaviour, don't set wrap on single line controls
15344             (this fixes the breakage of colordialog introduced in an earlier
15345              checkin)
15346           - Added rudimentary support for autoscrolling right-aligned controls
15347             (still needs fixing, also, center alignment scroll is missing)
15348
15349 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15350         
15351         * ScrollBar.cs: Fixes thumbpos on Maximum values
15352
15353 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
15354         
15355         * PropertyGridView.cs: Pass context information to UITypeEditors 
15356
15357 2005-06-21  Peter Bartok  <pbartok@novell.com> 
15358
15359         * TextBoxBase.cs:
15360           - Now calling PositionCaret with absolute space coordinates
15361           - Enabled vertical scrolling
15362           - Better tracking of scrollbar changes, tied into WidthChange
15363             event
15364           - Improved cursor tracking
15365           - Removed debug output
15366         * TextControl.cs:
15367           - PositionCaret coordinates are now works in absolute space, not 
15368             the canvas
15369           - Improved tracking of document size
15370           - Added events for width and height changes
15371
15372 2005-06-21  Peter Bartok  <pbartok@novell.com>
15373
15374         * Form.cs: Set focus to active control when form is activated
15375         * TextControl.cs: 
15376           - Added word-wrap functionality to RecalculateLine() 
15377           - Added some short function descriptions for VS.Net to aid in
15378             writing dependent controls
15379           - Added Caret property, returning the current coords of the caret
15380           - Added ViewPortWidth and ViewPortHeight properties
15381           - Added Wrap property
15382           - Added CaretMoved event
15383           - Removed some old debug code
15384           - Split() can now create soft splits
15385           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
15386           - Added method to format existing text
15387           - Fixed size/alignment calculations to use viewport
15388           - RecalculateDocument now can handle changing line-numbers while
15389             calculating lines
15390
15391         * TextBox.cs:
15392           - Added some wrap logic, we don't wrap if alignment is not left
15393           - Added casts for scrollbar var, base class switched types to
15394             also support RichTextBoxA
15395           - Implemented handling of scrollbar visibility flags
15396
15397         * TextBoxBase.cs:
15398           - Switched scrollbars type to RichTextBoxScrollBars to support
15399             RichTextBox
15400           - Added tracking of canvas width/height
15401           - Switched scrollbars to be not selectable (to keep focus on text)
15402           - Added central CalculateDocument() method to handle all redraw
15403             requirements
15404           - Added ReadOnly support
15405           - Added WordWrap support
15406           - Fixed handling of Enter key (we now treat it as a DialogKey)
15407           - Fixed caret positioning when h or v scroll is not zero
15408           - Fixed placing/generation of vertical scrollbar
15409           - Added CalculateScrollBars() method to allow updating scrollbar
15410             limits and visibility
15411           - Fixed handling of horizontal scroll
15412           - Added handling of vertical scroll
15413           - Implemented auto-'jump' when caret moves to close to a left or
15414             right border and there is text to be scrolled into view (currently
15415             there's the potential for a stack overflow, until a bug in
15416             scrollbar is fixed)
15417
15418 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
15419         
15420         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
15421
15422 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
15423
15424         * Mime.cs:
15425         - added inodes.
15426         - return application/x-zerosize for files with size zero
15427           (if no extension pattern matches).
15428         - check matches collection for strings too.
15429         - return only the first mime type if the name value
15430           collection has more than one mime type.
15431
15432 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
15433         
15434         * PropertyGrid.cs: Cleaned up some TODOs
15435         * PropertyGridView.cs: Added support for UITypeEditors
15436
15437 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15438         
15439         * DataGrid.cs: clears cached value
15440
15441 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15442
15443         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
15444         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
15445         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
15446         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
15447         
15448 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
15449
15450         * ThemeWin32Classic.cs: fixes colour
15451
15452 2005-06-15  Peter Bartok  <pbartok@novell.com>
15453
15454         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
15455         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
15456         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
15457         * Control.cs: Added some MWFCategory and MWFDescription attributes
15458         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
15459
15460 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
15461
15462         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
15463         usage
15464
15465 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
15466
15467         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
15468         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
15469         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
15470         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
15471         * DataGrid.cs: default datagrid settings for Default Styles, fixes
15472         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
15473
15474 2005-06-13  Jackson Harper  <jackson@ximian.com>
15475
15476         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
15477         isn't printed when the user enables dropping. (X11 does accept
15478         drops).
15479         
15480 2005-06-13  Jackson Harper  <jackson@ximian.com>
15481
15482         * TreeView.cs: Remove some TODOS.
15483
15484 2005-06-13  Jackson Harper  <jackson@ximian.com>
15485
15486         * Form.cs: Hook into the mdi framework.
15487         * MdiClient.cs: Use the base control collections add method so
15488         parents get setup correctly. Set the default back colour and dock
15489         style.
15490         * MdiChildContext.cs: New class, this bad actor handles an
15491         instance of an MDI window. Right now there is only basic
15492         support. You can drag, close, and resize windows. Minimize and
15493         Maximize are partially implemented.
15494
15495 2005-06-13  Jackson Harper  <jackson@ximian.com>
15496
15497         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
15498         freaky when both vals are negative. NOTE: There are probably other
15499         places in XplatUIX11 that this needs to be done.
15500
15501 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
15502
15503         * DataGrid.cs: implement missing methods, move KeyboardNavigation
15504         * DataGridColumnStyle.cs: fixes signature
15505
15506 2005-06-12  Jackson Harper  <jackson@ximian.com>
15507
15508         * XplatUIX11.cs: Use sizing cursors similar to the ones on
15509         windows.
15510
15511 2005-06-11  Jackson Harper  <jackson@ximian.com>
15512
15513         * StatusBarPanel.cs: Signature cleanups. Implement
15514         BeginInit/EndInit.
15515
15516 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
15517
15518         * DataGridTextBoxColumn.cs: Honors aligment
15519         * GridColumnStylesCollection.cs: Contains is case unsensitive
15520         * GridTableStylesCollection.cs: several fixes
15521         * DataGridTableStyle.cs: default column creation
15522         * DataGridDrawingLogic.cs: fixes
15523         * CurrencyManager.cs: ListName property
15524         * DataGrid.cs: multiple styles support
15525         * DataGridColumnStyle.cs: fixes
15526         
15527
15528 2005-06-10  Peter Bartok  <pbartok@novell.com>
15529
15530         * Control.cs(Select): Moved SetFocus call to avoid potential
15531           loops if controls change the active control when getting focus
15532         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
15533           the up/down buttons
15534
15535 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
15536
15537         * ImageListConverter.cs: Implemented
15538
15539 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
15540
15541         * MonthCalendar.cs: Wired in NumericUpDown control for year
15542
15543 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
15544
15545         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
15546           DoubleClick events, since they are not meant to be fired.
15547
15548 2005-06-09  Peter Bartok  <pbartok@novell.com>
15549
15550         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
15551           Jonathan's standalone controls into MWF, implemented missing
15552           events, attributes and methods; added xxxAccessible classes
15553         * AccessibleObject.cs: Made fields internal so other classes
15554           can change them if needed
15555
15556 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
15557
15558         * UpDownBase.cs: Complete implementation
15559         * NumericUpDown.cs: Complete implementation
15560         * DomainUpDown.cs: Complete implementation
15561
15562 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
15563
15564         * DataGridTextBoxColumn.cs: drawing fixes
15565         * DataGridCell.cs: fixes ToString method to match MSNet
15566         * DataGridTableStyle.cs: fixes
15567         * DataGridBoolColumn.cs: fixes, drawing
15568         * DataGridDrawingLogic.cs: fixes, new methods
15569         * DataGridTextBox.cs: Keyboard and fixes
15570         * DataGrid.cs:
15571                 - Keyboard navigation
15572                 - Scrolling fixes
15573                 - Row selection (single, multiple, deletion, etc)
15574                 - Lots of fixes
15575         
15576 2005-06-07  Jackson Harper  <jackson@ximian.com>
15577
15578         * ThemeWin32Classic.cs: Clear the background area when drawing
15579         buttons.
15580
15581 2005-06-06  Peter Bartok  <pbartok@novell.com>
15582
15583         * ImageListStreamer.cs: Fixed signature for GetData
15584         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
15585         * ComboBox.cs:
15586           - Added missing ChildAccessibleObject class
15587           - Added missing OnXXXFocus overrides, switched to using those
15588             instead of the event handler
15589         * Control.cs:
15590           - Added Parent property for ControlAccessibleObject
15591           - Fixed signatures
15592           - Fixed attributes
15593           - Added ResetBindings()
15594         * ListBindingConverter.cs: Implemented some methods
15595         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
15596         * ImageList.cs: Implemented basic handle scheme, removed TODOs
15597         * ContainerControl.cs: Fixed signature, now subscribing to the
15598           ControlRemoved event instead of overriding the handler, LAMESPEC
15599         * CurrencyManager.cs: Added missing attribute
15600         * MonthCalendar.cs: Added missing properties
15601
15602 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
15603
15604         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
15605         
15606 2005-06-06  Gaurav Vaish and Ankit Jain
15607
15608         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
15609         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
15610         
15611 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
15612
15613         * Control.cs: fixes CreateParams Width / Height.
15614
15615 2005-06-05  Peter Bartok  <pbartok@novell.com>
15616
15617         * Win32DnD.cs: Removed compilation warnings
15618
15619 2005-06-05  Peter Bartok  <pbartok@novell.com>
15620
15621         * Control.cs (CreateParams): Since we don't know if one of the
15622           properties we use is overridden, lets make sure if we fail accessing
15623           we continue with a backup plan
15624
15625 2005-06-05  Peter Bartok  <pbartok@novell.com>
15626
15627         * Win32DnD.cs:
15628           - Removed debug output
15629           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
15630             struct
15631           - Plugged resource leak
15632         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
15633           MS size
15634
15635 2005-06-05  Peter Bartok  <pbartok@novell.com>
15636
15637         * XplatUIWin32.cs: Removed DnD code
15638         * Win32DnD.cs: Implemented drop source and drop target functionality
15639
15640 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15641
15642         * UpDownBase.cs: remove duplicate addition of event, enable some code
15643         that was commented out.
15644         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
15645         Validate input when a key is pressed. It works fine now for every
15646         combination of Hexadecimal. Only missing some drawing love when sharing
15647         space with other controls.
15648
15649 2005-06-04  Peter Bartok  <pbartok@novell.com>
15650
15651         * Control.cs:
15652           - We need to pass a window for DragDrop, so enable callback events
15653           - Added DnD callback events when being a DragSource
15654         * XplatUI.cs (StartDrag): Added window handle argument
15655         * XplatUIDriver.cs (StartDrag): Added window handle argument
15656         * QueryContinueDragEventArgs: Made fields internally accessible so
15657           drivers can set them
15658         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
15659           can set them
15660
15661 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
15662
15663         * DataGridTextBoxColumn.cs: column text editing
15664         * DataGridTableStyle.cs: Respect columns styles created by the user
15665         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
15666         * DataGridBoolColumn.cs: bool column editing
15667         * DataGrid.cs: fixes to scrolling, properties, etc
15668         * DataGridTextBox.cs: handle keyboard
15669         * DataGridColumnStyle.cs: fixes
15670
15671 2005-06-02  Jackson Harper  <jackson@ximian.com>
15672
15673         * ImageListStreamer.cs: Somewhat broken implementation of
15674         GetObjectData. The RLE needs some work to match MS properly.
15675
15676 2005-06-02  Jackson Harper  <jackson@ximian.com>
15677
15678         * X11Dnd.cs: Attempting to keep at least one file in MWF
15679         monostyled.
15680
15681 2005-06-02  Peter Bartok  <pbartok@novell.com>
15682
15683         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
15684           that way
15685
15686 2005-06-02  Peter Bartok  <pbartok@novell.com>
15687
15688         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
15689         * XplatUI.cs: Added DoDragDrop() method
15690         * XplatUIDriver.cs: Added DoDragDrop() method
15691
15692 2005-06-02  Jackson Harper  <jackson@ximian.com>
15693
15694         * Splitter.cs: Implement BorderStyle.
15695
15696 2005-06-02  Jackson Harper  <jackson@ximian.com>
15697
15698         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
15699         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
15700         X11 using XDND.
15701
15702 2005-06-02  Peter Bartok  <pbartok@novell.com>
15703
15704         * DataObject.cs:
15705           - Added Data setter
15706           - Fixed broken insertion code for SetData, now also
15707             overwrites any existing entry of the same format name
15708         * Hwnd.cs: Added list of pointers that automatically gets
15709           freed when the window is disposed
15710         * XplatUI.cs: Call driver initialization method when loading
15711           a driver
15712         * Control.cs:
15713           - OnDragLeave takes EventArgs, not DragEventArgs
15714           - Added setting of WS_EX_ACCEPTFILES style when dropping is
15715             supported
15716           - Forces style update when drop state changes
15717         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
15718           not perfect since we cannot (yet) call the IDataObject.GetData()
15719           method, we keep getting 0x80004005 error, dunno why)
15720
15721 2005-06-02  Peter Bartok  <pbartok@novell.com>
15722
15723         * DragEventArgs.cs: Make fields internal so we can cache the
15724           object and re-set the fields from XplatUI
15725
15726 2005-06-02  Jackson Harper  <jackson@ximian.com>
15727
15728         * Control.cs: Add some internal methods so the DnD subsystem can
15729         raise DnD events. Also call into the driver when AllowDrop is set.
15730         * XplatUI.cs:
15731         * XplatUIDriver.cs: New method for setting whether or not a window
15732         is allowed to accept drag and drop messages.
15733                 
15734 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
15735         
15736         * ScrollBar.cs: Make sure that values sent in Scroll events
15737         are always between Maximum and Minimum.
15738
15739 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
15740
15741         * Menu.cs: Call MenuChanged when menuitem visibility has been
15742         changed.
15743         * MenuItem.cs: Rebuild menu when item is (not) visible.
15744         * MainMenu.cs: MainMenu has special MenuChanged.
15745         * Theme.cs: Caption and FrameBorderSize are not fixed.
15746         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
15747         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
15748         * XplatUIX11.cs,
15749         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
15750         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
15751
15752 2005-05-30  Jackson Harper  <jackson@ximian.com>
15753
15754         * DataFormat.cs: We can't statically initialize this stuff because
15755         it calls into the xplatui and could create a loop. So we lazy init
15756         it.
15757
15758 2005-05-28  Jackson Harper  <jackson@ximian.com>
15759
15760         * Control.cs: Proper implementation of Product(Name/Version).
15761
15762 2005-05-27  Jackson Harper  <jackson@ximian.com>
15763
15764         * DataObject.cs: Dont crash if no data is found.
15765
15766 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
15767         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
15768                 as per status page, guessing it should be set to true
15769
15770 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
15771
15772         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
15773         * DataGridTableStyle.cs: set proper formatting text, def header text
15774         * ThemeWin32Classic.cs: new themable paramaters
15775         * DataGridBoolColumn.cs: paint check box, get data, fixes
15776         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
15777         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
15778         * DataGridColumnStyle.cs: fixes
15779         * Theme.cs: new themable paramaters
15780                 
15781 2005-05-26  Peter Bartok  <pbartok@novell.com>
15782
15783         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
15784
15785 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15786         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
15787
15788 2005-05-24  Peter Bartok  <pbartok@novell.com>
15789
15790         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
15791           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
15792           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
15793           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
15794           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
15795           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
15796           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
15797           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
15798           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
15799           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
15800           missing attributes, etc
15801         * DataGridPreferredColumnWidthTypeConverter.cs: Added
15802
15803 2005-05-24  Peter Bartok  <pbartok@novell.com>
15804
15805         * Help.cs: Added, implemented trivial functions, throws up MessageBox
15806           when user tries to get help
15807         * DataObject.cs, DataFormats.cs, LinkArea.cs,
15808           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
15809           to suppress warnings
15810         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
15811           avoid unreachable code warning
15812
15813 2005-05-20  Peter Bartok  <pbartok@novell.com>
15814
15815         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
15816
15817 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15818
15819         * DataGridTextBoxColumn.cs: Basic painting methods
15820         * DataGridTableStyle.cs: Set table style in the column
15821         * ThemeWin32Classic.cs: Use Theme for colors
15822         * DataGridDrawingLogic.cs: Implement more drawing
15823         * DataGrid.cs: drawing, theming, enhacements, fixes
15824         * DataGridColumnStyle.cs: fixes, drawing
15825         * Theme.cs: theming for Datagrid
15826
15827 2005-05-20  Peter Bartok  <pbartok@novell.com>
15828
15829         * Cursor.cs: Implemented GetObjectData() method
15830
15831 2005-05-20  Peter Bartok  <pbartok@novell.com>
15832
15833         * Cursors.cs: Added setting of cursor name
15834         * Cursor.cs:
15835           - Implemented constructors
15836           - Implemented Draw and DrawStretched
15837           - Implemented Current property
15838           - Implemented == and != operators
15839           - Implemented Dispose()
15840           - Implemented ToString
15841           - Added missing attributes
15842         * XplatUIX11.cs:
15843           - Added missing reset for OverrideCursor when DoEvents is called
15844           - Fixed creation of cursor, logic was wrong
15845         * XplatUIWin32.cs:
15846           - Added missing reset for OverrideCursor when DoEvents is called
15847           - Fixed creation of cursor, bit arrays were swapped
15848         * Clipboard.cs: Removed obsolete MonoTODO attribute
15849
15850 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15851
15852         * ComboBox.cs: fixes OnSelectedItemChanged
15853         * ControlBindingsCollection.cs: fixes item range check
15854
15855 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15856
15857         * UpDownBase.cs:
15858                 - Calc preferred height properly
15859                 - Implement missing properties
15860                 
15861         * NumericUpDown.cs: Implement missing events
15862
15863 2005-05-19  Jackson Harper  <jackson@ximian.com>
15864
15865         * TabControl.cs: New method that resizes the tab pages before
15866         redrawing them. This as needed as the control is double buffered
15867         and sizing will not be recalculated unless ResizeTabPages is
15868         called.
15869         * TabPage.cs: Set base.Text instead of Text in the constructor so
15870         that UpdateOwner does not get called. Use the new Redraw method of
15871         TabControl instead of Refresh so the sizing is recalculated.
15872         * ThemeWin32Classic.cs: Draw the text for button tabs.
15873
15874 2005-05-19  Jackson Harper  <jackson@ximian.com>
15875
15876         * Control.cs: Paint control background images. Fix typo where
15877         PaintControlBackground was not getting called correctly.
15878
15879 2005-05-19  Peter Bartok  <pbartok@novell.com>
15880
15881         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
15882           I can investigate, apparently I broke FileDialog
15883
15884 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
15885
15886         * AxHost.cs: Some simple properties.
15887         * Control.cs: window must be accessible after ctor.
15888         * Form.cs: Added TransparencyKey property.
15889         * TextBoxBase.cs: Implemented Clear. Text property can be null.
15890         * XplatUIWin32.cs: SetBorderStyle implemented.
15891
15892 2005-05-18  Peter Bartok  <pbartok@novell.com>
15893
15894         * DataObject.cs: Entries are not global but particular to the
15895           DataObject, now it behaves that way
15896         * XplatUIWin32.cs: Implemented Clipboard methods
15897         * Clipboard.cs: Implemented
15898         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
15899         * XplatUIOSX.cs: Updated to final clipboard prototypes
15900         * XplatUIX11.cs: Implemented Clipboard methods
15901         * XplatUIDriver.cs: Updated to final clipboard prototypes
15902         * XplatUIStructs.cs:
15903           - Added BITMAPINFOHEADER struct
15904           - Added ClipboardFormats enum
15905         * X11Structs.cs:
15906           - Added ClipboardStruct
15907           - Added Atom enum items for clipboard types
15908           - Fixed atom types for Selection event structures
15909         * DataFormats.cs:
15910           - Added internal properties and methods for drivers to enumerate
15911             all known formats
15912           - Switched initialization method to allow drivers to assign their
15913             own IDs even for the MS predefined clipboard IDs
15914         * XplatUI.cs: Updated to final clipboard interface
15915
15916 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15917         * PropertyGridView.cs: Fixed compiler warnings.
15918
15919 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15920         * PropertyGrid.cs: Added some event calls
15921         * PropertyGridView.cs: Change drawing code to use double buffering
15922         * PropertyGridTextBox.cs: Changed Text property name
15923         * GridItem.cs: Added Bounds property.
15924         * GridEntry.cs: Added Bounds property.
15925
15926 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
15927
15928         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
15929         since GetType() may not return the correct type if the object is
15930         a remoting proxy.
15931
15932 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
15933
15934         * TreeNodeCollection.cs: fixes get/set item ranges
15935         
15936 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15937
15938         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
15939                 
15940 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15941
15942         * ComboBox.cs: Fix item range comparation
15943         * ListView.cs: Fix item range comparation
15944
15945 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15946
15947         * FontDialog.cs:
15948           - Clear example panel when OnPaint is called
15949           - Better solution for displaying the example panel text
15950           - Select default indexes in the ListBoxes
15951
15952 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15953
15954         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
15955
15956 2005-05-11  Peter Bartok  <pbartok@novell.com>
15957
15958         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
15959         * SelectionRangeConverter.cs: Implemented
15960         * PropertyGrid.cs: Fixed attribute value
15961         * Control.cs:
15962           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
15963           - Added Sebastien Pouliot's CAS Stack Propagation fixes
15964         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
15965           that's common to all drivers. First methods to go there are
15966           Sebastien Pouliot's CAS Stack Propagation helper methods
15967         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
15968           Sebastien Pouliot for CAS Stack Propagation
15969
15970 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15971
15972         * OSXStructs.cs:
15973           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
15974
15975 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
15976
15977         * DataGridTextBoxColumn.cs: fixed some members
15978         * GridColumnStylesCollection.cs: indexed column is case insensitive
15979         * DataGridTableStyle.cs: fixes
15980         * ThemeWin32Classic.cs: add new theme parameter
15981         * Theme.cs: add new theme parameter
15982         * DataGridDrawingLogic.cs: Datagrid's drawing logic
15983         * DataGrid.cs: fixes, new internal properties, etc.
15984         * DataGridColumnStyle.cs: allows to set grid value
15985         *
15986
15987 2005-05-10  Peter Bartok  <pbartok@novell.com>
15988
15989         * AccessibleObject.cs:
15990           - Removed MonoTODO attribute on help, method is correct
15991           - Fixed Bounds property
15992         * AxHost.cs: Moved MonoTODO
15993         * ButtonBase.cs: Now setting AccessibleObject properties
15994         * RadioButton.cs: Setting proper AccessibleObject role
15995         * CheckBox.cs: Setting proper AccessibleObject role
15996         * ControlBindingsCollection.cs: Added properties, methods and attributes
15997         * DataFormats.cs: Fixed awkward internal API, and changed to enable
15998           userdefined DataFormats.Format items as well
15999         * ListControl.cs: Removed data_member from the public eye
16000         * OpenFileDialog.cs:
16001           - Made class sealed
16002           - Added missing attributes
16003         * SaveFileDialog.cs: Added missing attributes
16004         * ImageListStreamer.cs: Fixed code that caused warnings
16005         * LinkLabel.cs: Removed unreachable code
16006         * TreeView.cs: Fixed code that caused warnings
16007         * PropertyGridView.cs: Fixed code that caused warnings
16008         * GridColumnStylesCollection.cs: Added missing attributes
16009         * GridTableStylesCollection: Added missing attribute
16010         * PropertyManager: Added .ctor
16011         * SecurityIDType: Added
16012         * DataObject.cs: Implemented class
16013         * LinkArea.cs: Added missing attribute
16014
16015 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
16016
16017         * RadioButton.cs: call base method to allow to fire OnClick event
16018         * UpDownBase.cs: OnMouseUp call base method
16019         * CheckedListBox.cs: call base method before returning
16020         * TrackBar.cs: call base method before returning
16021         
16022
16023 2005-05-10  Peter Bartok  <pbartok@novell.com>
16024
16025         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
16026           for messages
16027
16028 2005-05-10  Peter Bartok  <pbartok@novell.com>
16029
16030         * DataFormats.cs: Implemented
16031         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
16032           XplatUIX11.cs: Added Clipboard APIs
16033         * XplatUIWin32.cs: Implemented Clipboard APIs
16034         * FolderBrowserDialog.cs: Added missing event, attributes
16035
16036 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
16037
16038         * CheckBox.cs: call base method to allow to fire OnClick event
16039
16040 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
16041
16042         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
16043
16044 2005-05-06  Peter Bartok  <pbartok@novell.com>
16045
16046         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
16047         * Screen.cs: Implemented
16048         * HelpNavigator.cs: Added
16049         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
16050           property
16051         * HelpProvider.cs: Implemented all we can do until we have a CHM
16052           help library (which means that "What's This" does work now)
16053
16054 2005-05-06  Jackson Harper  <jackson@ximian.com>
16055
16056         * XplatUIX11.cs: Fix waking up the main loop.
16057                 
16058 2005-05-05  Peter Bartok  <pbartok@novell.com>
16059
16060         * XplatUI.cs: Updated revision
16061         * Form.cs: Removed enless loop
16062         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
16063         * Label.cs (OnPaint): Added call to base.OnPaint()
16064         * ToolTip.cs: Made ToolTipWindow reusable for other controls
16065         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
16066         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
16067         * AxHost.cs: Added
16068         * ButtonBase.cs: Moved base.OnPaint() call to end of method
16069         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
16070           to ToolTip.ToolTipWindow for drawing and size methods; this allows
16071           reuse of ToolTipWindow by other controls
16072         * SizeGrip.cs: Moved base.OnPaint() call to end of method
16073         * XplatUIX11.cs: Now clipping drawing area (experimental)
16074         * PictureBox.cs: Moved base.OnPaint() call to end of method
16075         * Theme.cs: Fixed ToolTip abstracts to match new format
16076         * ErrorProvider.cs: Implemented
16077
16078 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
16079
16080         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
16081         * LinkLabel.cs:
16082                 - Adds cursors
16083                 - Handles focus
16084                 - Implements LinkBehavior
16085                 - Fixes many issues
16086
16087 2005-05-03  Jackson Harper  <jackson@ximian.com>
16088
16089         * ListView.cs: Calculate the scrollbar positioning on resize and
16090         paint, so they get put in the correct place.
16091
16092 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
16093
16094         * ColorDialogs.cs: The small color panels are now handled by
16095           SmallColorControl. This fixes drawing of the focus rectangle
16096           and adds a 3D border.
16097
16098 2005-05-03  Peter Bartok  <pbartok@novell.com>
16099
16100         * Control.cs: Modified version of Jonathan Chamber's fix for
16101           double-buffering
16102
16103 2005-05-03  Jackson Harper  <jackson@ximian.com>
16104
16105         * ListView.cs: Remove redraw variable. Control now handles whether
16106         or not a redraw needs to be done, and will only raise the paint
16107         event if redrawing is needed.
16108
16109 2005-05-03  Jackson Harper  <jackson@ximian.com>
16110
16111         * Splitter.cs: No decorations for the splitter form. Cache the
16112         hatch brush.
16113
16114 2005-05-03  Jackson Harper  <jackson@ximian.com>
16115
16116         * TreeView.cs: Use dashed lines to connect nodes. Use the
16117         ControlPaint method for drawing the focus rect instead of doing
16118         that in treeview.
16119
16120 2005-05-02  Peter Bartok  <pbartok@novell.com>
16121
16122         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
16123
16124 2005-04-29  Jackson Harper  <jackson@ximian.com>
16125
16126         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
16127         entire image buffer. Just clear the clipping rectangle.
16128
16129 2005-04-29  Jackson Harper  <jackson@ximian.com>
16130
16131         * ThemeWin32Classic.cs: Don't draw list view items that are
16132         outside the clipping rectangle.
16133
16134 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
16135
16136         * ListBox.cs: added horizontal item scroll
16137
16138 2005-04-29  Jackson Harper  <jackson@ximian.com>
16139
16140         * ThemeWin32Classic.cs: Remove some old debug code that was
16141         causing flicker with the new double buffering code.
16142
16143 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
16144
16145         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
16146         behave like combobox and comboboxlist (still not sure if this is
16147         correct though).
16148
16149 2005-04-28  Jackson Harper  <jackson@ximian.com>
16150
16151         * ThemeWin32Classic.cs: Don't fill the middle of progress
16152         bars. This fills areas outside of the clip bounds that don't need
16153         to be filled.
16154
16155 2005-04-28  Jackson Harper  <jackson@ximian.com>
16156
16157         * Control.cs: Don't expose functionality to touch the image buffers.
16158         * ProgressBar.cs:
16159         * ListView.cs: We do not need to (and no longer can) manipulate
16160         the image buffers directly. All of this is handled by Control.
16161
16162 2005-04-28  Peter Bartok  <pbartok@novell.com>
16163
16164         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
16165           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
16166           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
16167
16168 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
16169
16170         * Combobox:
16171                 - Adjust control's height for non-simple comboboxes (bug fix)
16172                 - Remove dead code
16173         * MenuAPI.cs: remove unused var
16174         * ScrollBar.cs: remove unsed var
16175                  
16176         * ListBox.cs: unselect items when clearing
16177
16178 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
16179
16180         * ListControl.cs: honors OnPositionChanged and default Selected Item
16181         * ListBox.cs: unselect items when clearing
16182
16183 2005-04-27  Jackson Harper  <jackson@ximian.com>
16184
16185         * X11Keyboard.cs: Initialize a default keyboard and give a warning
16186         if a "correct" keyboard is not found. This will make us not crash,
16187         but might give some users bad keyboard layouts...seems to be the
16188         same thing rewind does.
16189
16190 2005-04-27  Jackson Harper  <jackson@ximian.com>
16191
16192         * BindingManagerBase.cs: Attach the current/position changed
16193         handlers to their respective events.
16194
16195 2005-04-27  Jackson Harper  <jackson@ximian.com>
16196
16197         * Control.cs: Make sure that the first WM_PAINT does a full draw,
16198         not just a blit.
16199         * ThemeWin32Classic.cs: Don't fill the background for picture
16200         boxes. This could overright user drawing.
16201         * ComboBox.cs: Just fill the clipping rect not the entire client
16202         rect when drawing the background. This prevents pieces of the
16203         image buffer from getting overwritten and is theoretically faster.
16204
16205 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
16206
16207         * ComboBox.cs: Databinding support fixes, fire missing events
16208         * ListControl.cs: implement missing methods and properties, fixes
16209         * ThemeWin32Classic.cs: Databiding support on Drawing
16210         * CheckedListBox.cs: Databinding support fixes, fire missing events
16211         * ListBox.cs: Databinding support fixes, fire missing events
16212         
16213 2005-04-25  Peter Bartok  <pbartok@novell.com>
16214
16215         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
16216
16217 2005-04-25  Jackson Harper  <jackson@ximian.com>
16218
16219         * TreeView.cs: Use the horizontal scrollbars height not width when
16220         determining how much of the client area is available.
16221
16222 2005-04-25  Jackson Harper  <jackson@ximian.com>
16223
16224         * Control.cs: Double buffering is handled differently now. As per
16225         the spec, the extra buffer is created in the WM_PAINT message and
16226         passed down to the control's drawing code.
16227         * GroupBox.cs:
16228         * Label.cs:
16229         * CheckBox.cs:
16230         * ProgressBar.cs:
16231         * RadioButton.cs:
16232         * ColorDialog.cs:
16233         * ComboBox.cs:
16234         * PropertyGridView.cs:
16235         * UpDownBase.cs:
16236         * MessageBox.cs:
16237         * MenuAPI.cs:
16238         * ListView.cs:
16239         * ButtonBase.cs:
16240         * SizeGrip.cs:
16241         * ScrollBar.cs:
16242         * ListBox.cs:
16243         * TrackBar.cs:
16244         * ToolBar.cs:
16245         * PictureBox.cs:
16246         * DateTimePicker.cs:
16247         * StatusBar.cs:
16248         * TreeView.cs: Update to new double buffering system.
16249         * MonthCalendar.cs: Uncomment block, as Capture is now
16250         working. Update to new double buffering
16251         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
16252         * PaintEventArgs.cs: New internal method allows us to set the
16253         graphics object. This is used for double buffering.
16254         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
16255         rectangle. The internal paint_area var has been removed from
16256         StatusBar. The clipping rect should be used instead.
16257         * Theme.cs: Give the PictureBox drawing method a clipping rect.
16258         * TabPage.cs: The RefreshTabs method was removed, so just call the
16259         tab controls Refresh method now.
16260         * TabControl.cs: Update to new double buffering. Make sure the
16261         handle is created before sizing the tab pages, otherwise we will
16262         get stuck in a loop.
16263
16264 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
16265
16266         * LinkLabel.cs: Fix typo, bug #74719; patch
16267           from Borja Sanchez Zamorano
16268
16269 2005-04-22  Jackson Harper  <jackson@ximian.com>
16270
16271         * TreeNode.cs: Implement Handle stuff.
16272         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
16273
16274 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
16275
16276         * DataGridTextBoxColumn.cs: call base constructors, fixes
16277         * GridColumnStylesCollection.cs: missing events, methods, and functionality
16278         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
16279         * DataGridTableStyle.cs: implements create default column styles
16280         * DataGridBoolColumn.cs: which types can handle
16281         * DataGrid.cs: missing methods, fixes, new functionality
16282         * DataGridColumnStyle.cs: fixes
16283
16284 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
16285         * FolderBrowserDialog.cs:
16286         - Use a thread to fill the TreeView
16287         - Adjusted some sizes
16288
16289 2005-04-19  Peter Bartok  <pbartok@novell.com>
16290
16291         * LinkLabel.cs: (Re-)create the pieces when setting the Text
16292           property. Fixes #74360.
16293
16294 2005-04-19  Jackson Harper  <jackson@ximian.com>
16295
16296         * XEventQueue.cs: Lock when getting the lockqueue size.
16297         * PictureBox.cs: Call base OnPaint
16298         
16299 2005-04-19  Peter Bartok  <pbartok@novell.com>
16300
16301         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
16302           messages were no longer being processed (this broke BeginInvoke)
16303
16304           
16305 2005-04-18  Jackson Harper  <jackson@ximian.com>
16306
16307         * TreeView.cs: buglet that caused node images to get drawn
16308         regardless of whether or not they were in the clipping rectangle.
16309
16310 2005-04-18  Jackson Harper  <jackson@ximian.com>
16311
16312         * CurrencyManager.cs: There are four rules for GetItemProperties:
16313         - If the type is an array use the element type of the array
16314         - If the type is a typed list, use the type
16315         - If the list contains an Item property that is not an object, use
16316         that property
16317         - use the first element of the list if there are any elements in
16318         the list.
16319         
16320 2005-04-17  Jackson Harper  <jackson@ximian.oom>
16321
16322         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
16323         click. This handles offsets for scrolling properly and reduces
16324         memory. Also fixed GetNode to not offset now that TopNode works
16325         properly.
16326         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
16327         
16328 2005-04-17  Jackson Harper  <jackson@ximian.com>
16329
16330         * CursorConverter.cs: Initial implementation.
16331
16332 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16333
16334         * ListControl.cs: work towards complex data binding support on ListControl
16335         * CurrencyManager.cs: work towards complex data binding support on ListControl
16336         * ListBox.cs: work towards complex data binding support on ListControl
16337
16338
16339 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16340
16341         * GridTableStylesCollection.cs: fixes name and constructor
16342         * DataGridTableStyle.cs: fixes
16343         * DataGridBoolColumn.cs: fixes names and constructors
16344         * DataGrid.cs: define methods and properties. Some init implementations
16345         * DataGridCell.cs: define methods and properties. Some init implementations
16346         * GridTablesFactory.cs: Define methods and properties
16347
16348 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
16349
16350         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
16351         graphics port changes.  We still want the coordinates in global screen
16352         coordinates.
16353
16354 2005-04-14  Jackson Harper  <jackson@ximian.com>
16355
16356         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
16357         check plus minus or checkbox clicks unless those features are enabled.
16358
16359 2005-04-14  Jackson Harper  <jackson@ximian.com>
16360
16361         * TreeView.cs: Add methods for setting the top and bottom visible
16362         nodes. TreeNode::EnsureVisible uses these methods.
16363         * TreeNode.cs: Implement EnsureVisible
16364
16365 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
16366
16367         * Form.cs: Pospone menu assignation if the window has not been created yet
16368         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
16369         size and position
16370
16371 2005-04-12  Jackson Harper  <jackson@ximian.com>
16372
16373         * TreeView.cs: Set the TopNode properly when scrolling
16374         occurs. This has the added benifit of reducing the amount of
16375         walking that needs to be done when drawing. Also removed an old
16376         misleading TODO.
16377         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
16378         
16379 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
16380
16381         * Timer.cs: fixes interval setting when the timer is already enabled
16382         
16383 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
16384
16385         * FolderBrowserDialog.cs: First approach
16386
16387 2005-04-09  Peter Bartok  <pbartok@novell.com>
16388
16389         * FolderBrowserDialog: Added
16390
16391 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
16392
16393         * LinkLabel.cs: move drawing code into the theme
16394         * ThemeWin32Classic.cs: drawing code and painting background bugfix
16395         * Theme.cs: define DrawLinkLabel method
16396
16397 2005-04-05  Jackson Harper  <jackson@ximian.com>
16398
16399         * BindingContext.cs: Use weak references so these bad actors don't
16400         stay alive longer then they need to.
16401
16402 2005-04-05  Jackson Harper  <jackson@ximian.com>
16403
16404         * ListControl.cs: Basic implementation of complex databinding.
16405         * ComboBox.cs:
16406         * ListBox.cs: Add calls to ListControl databinding methods.
16407
16408 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
16409
16410         * FileDialog.cs:
16411           - Don't change PopupButtonState to Normal when the
16412             PopupButton gets pressed several times.
16413           - Renamed ButtonPanel to PopupButtonPanel
16414
16415 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
16416
16417         * ColorDialog.cs: Use cached objects instead of creating them
16418         * LinkLabel.cs: Use cached objects instead of creating them
16419         * Splitter.cs: Use cached objects instead of creating them
16420         * FontDialog.cs: Use cached objects instead of creating them
16421         * PropertyGridView.cs: Use cached objects instead of creating them
16422         * MessageBox.cs: Use cached objects instead of creating them
16423         * FileDialog.cs: Use cached objects instead of creating them
16424         * ThemeWin32Classic.cs: Use cached objects instead of creating them
16425         * TreeView.cs: Use cached objects instead of creating them
16426         
16427 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
16428
16429         * Control.cs: use Equals to compare the font since no == op
16430         * ScrollBar.cs: use Equals to compare the font since no == op
16431
16432 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
16433
16434         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
16435
16436 2005-04-01  Jackson Harper  <jackson@ximian.com>
16437
16438         * Binding.cs: Implement IsBinding.
16439         * BindingManagerBase.cs:
16440         * PropertyManager.cs:
16441         * CurrencyManager.cs: Add IsSuspended property.
16442
16443 2005-04-01  Jackson Harper  <jackson@ximian.com>
16444
16445         * Binding.cs: Had some IsAssignableFrom calls backwards.
16446
16447 2005-04-01  Jackson Harper  <jackson@ximian.com>
16448
16449         * Binding.cs: Handle null data members when pulling data.
16450         * PropertyManager.cs: Handle the data member being a property that
16451         does not exist.
16452
16453 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16454
16455         * DataGridTextBoxColumn.cs: fixes signature
16456         * DataGrid.cs: calls right constructor
16457
16458 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16459
16460         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
16461         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
16462         * GridTableStylesCollection.cs: implements GridTableStylesCollection
16463         * DataGridTableStyle.cs: implements DataGridTableStyle
16464         * DataGridBoolColumn.cs: implements DataGridBoolColumn
16465         * DataGridTextBox.cs: implements DataGridTextBox
16466         * DataGridColumnStyle.cs: implements DataGridColumnStyle
16467
16468 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
16469
16470         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
16471
16472 2005-03-29  Peter Bartok  <pbartok@novell.com>
16473
16474         * Application.cs:
16475           - Properly implemented CompanyName property
16476           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
16477             returns a path that includes CompanyName, ProductName and
16478             Version (fixes bug #70330)
16479
16480 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
16481
16482         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
16483           fixes bug #72588.
16484
16485 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16486
16487         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
16488         
16489           - Added ReadOnly CheckBox
16490           - Further refactoring: moved some code from Open-/SaveFileDialog
16491             to FileDialog
16492
16493 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16494
16495         * OpenFileDialog.cs: Fixed CheckFileExists
16496         * FileDialog.cs:
16497           Moved FileView and DirComboBox outside FileDialog class.
16498           They can now be used outside FileDialog
16499
16500 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16501
16502         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
16503         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
16504
16505 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16506
16507         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16508           - Added missing CreatePrompt property in SaveDialog
16509           - Overall SaveDialog handling should be better now
16510           - Added non standard ShowHiddenFiles property
16511           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
16512           - Added InitialDirectory and RestoreDirectory support
16513
16514 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
16515
16516         * FileDialog.cs: Made dirComboBox usable
16517
16518 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
16519
16520         * FileDialog.cs: Added Filter support (case sensitiv)
16521
16522 2005-03-24  Jackson Harper  <jackson@ximian.com>
16523
16524         * TabControl.cs: Need a couple more pixels for the lines.
16525
16526 2005-03-23  Jackson Harper  <jackson@ximian.com>
16527
16528         * TabControl.cs: Give the tab page focus when it is selected.
16529
16530 2005-03-23  Jackson Harper  <jackson@ximian.com>
16531
16532         * TabControl.cs: Account for the drawing of tabs borders when
16533         invalidating. If the slider was clicked dont do click detection on
16534         the tabs.
16535
16536 2005-03-23  Jackson Harper  <jackson@ximian.com>
16537
16538         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
16539
16540 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
16541
16542         * CategoryGridEntry.cs: Added
16543         * GridItem.cs: Added helper properties
16544         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
16545         * GridEntry.cs: Updated code for collection
16546         * PropertyGrid.cs: Cleaned up some formatting
16547         * PropertyGridView.cs: Added drop down functionality for enums.
16548         * GridItemCollection.cs: Added enumerator logic
16549         * PropertyGridEntry.cs: Added
16550
16551 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
16552
16553         * FileDialog.cs:
16554           - Removed unnecessary commented code
16555           - Fixed handling for entering the filename manually in the combobox
16556
16557 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
16558
16559         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
16560
16561 2005-03-18  Peter Bartok  <pbartok@novell.com>
16562
16563         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
16564           them being touching the border
16565
16566 2005-03-18  Peter Bartok  <pbartok@novell.com>
16567
16568         * TextControl.cs: Quick hack to center text better
16569
16570 2005-03-18  Peter Bartok  <pbartok@novell.com>
16571
16572         * ControlPaint.cs:
16573           - Don't throw NotImplemented exceptions, just print a notice once
16574             instead (requested by Miguel). This makes running existing SWF
16575             apps a bit easier
16576         * Control.cs:
16577           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
16578           - Added context menu trigger on right click
16579         * Panel.cs: Trigger invalidate on resize
16580         * StatusBar.cs:
16581           - Removed old double-buffer drawing
16582           - Added ResizeRedraw style to force proper update of statusbar
16583         * ListView.cs:
16584           - Removed debug output
16585         * ThemeWin32Classic.cs:
16586           - Fixed drawing of status bar, now draws Text property if there
16587             are no defined panels
16588
16589 2005-03-18  Jackson Harper  <jackson@ximian.com>
16590
16591         * ImageList.cs: When the image stream is set pull all the images
16592         from it.
16593         * ImageListStreamer.cs: Implement reading image list streams.
16594
16595 2005-03-18  Peter Bartok  <pbartok@novell.com>
16596
16597         * ThemeWin32Classic.cs (DrawPictureBox):
16598           - Fixed calculations for centered drawing
16599           - Fixed drawing for normal mode, not scaling the image on normal
16600
16601 2005-03-18  Peter Bartok  <pbartok@novell.com>
16602
16603         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
16604           textbox
16605         * FileDialog.cs:
16606           - Made Open/Save button the accept button for FileDialog
16607           - Tied the cancel button to the IButtonControl cancel button
16608           - Save/Open now properly builds the pathname
16609           - Now handles user-entered text
16610           - Preventing crash on right-click if no item is selected
16611           - Fixed Text property, now uses contents of textbox
16612           - Fixed SelectedText property, now just returns the text part that
16613             is selected in the text box
16614
16615 2005-03-18  Jackson Harper  <jackson@ximian.com>
16616
16617         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
16618         rect, make sure to de-adjust the interior rect after drawing the
16619         tab text.
16620
16621 2005-03-18  Peter Bartok  <pbartok@novell.com>
16622
16623         * MenuAPI.cs: Remove menu *before* executing selected action to
16624           prevent the menu from 'hanging around'
16625           
16626 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
16627
16628         * XplatUIOSX.cs: Implemented WorkingArea property
16629
16630 2005-03-17  Peter Bartok  <pbartok@novell.com>
16631
16632         * XplatUIX11.cs: Fixed menu coord calculations
16633         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
16634           for calculating offsets
16635
16636 2005-03-17  Peter Bartok  <pbartok@novell.com>
16637
16638         * Hwnd.cs: Do not consider menu presence for default client
16639           rectangle location/size
16640         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
16641           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
16642           translation functions
16643         * FileDialog.cs: Fixed (what I presume is a) typo
16644
16645 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
16646
16647         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
16648           X access (avoids X-Async errors)
16649
16650 2005-03-16  Jackson Harper  <jackson@ximian.com>
16651
16652         * TabControl.cs: Raise the SelectedIndexChanged event.
16653
16654 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
16655
16656         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16657           - Removed vertical ToolBar and replaced it with a custom panel
16658             (desktop and home button already work)
16659           - Added Help button (some controls get resized or relocated then)
16660           - Draw correct text depending on Open or Save.
16661           - Fixed some typos...
16662
16663 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
16664
16665         * ScrollBar.cs:
16666           - Only change Maximum and Minimum when need it (bug fix)
16667
16668 2005-03-15  Peter Bartok  <pbartok@novell.com>
16669
16670         * Form.cs: Use Handle for icon, to trigger creation if
16671           the window does not yet exist
16672         * Control.cs:
16673           - CanSelect: Slight performance improvement
16674           - Focus(): Preventing possible recursion
16675           - Invalidate(): Removed ControlStyle based clear flag setting
16676           - WM_PAINT: fixed logic for calling OnPaintBackground
16677           - WM_ERASEBKGND: Fixed logic, added call to new driver method
16678             EraseWindowBackground if the control doesn't paint background
16679         * XplatUIWin32.cs:
16680           - Moved EraseWindowBackground() method to internal methods
16681           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
16682             is sent via SendMessage on BeginPaint call on Win32
16683         * XplatUIX11.cs:
16684           - Added EraseWindowBackground() method
16685           - No longer sends WM_ERASEBKGND on .Expose, but on call to
16686             PaintEventStart, which more closely matches Win32 behaviour
16687           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
16688           - Fixed SetFocus() to properly deal with client and whole windows
16689         * Hwnd.cs: Added ErasePending property
16690         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
16691         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
16692
16693 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
16694
16695         * XplatUIOSX.cs:
16696           - Fix hard loop when timers exist.
16697           - Fix bugs with middle and right click for 3 button mice.
16698
16699 2005-03-11  Peter Bartok  <pbartok@novell.com>
16700
16701         * XplatUIX11.cs:
16702           - get_WorkingArea: Need to call X directly, GetWindowPos only
16703             returns cached data now
16704           - Added sanity check to GetWindowPos hwnd usage
16705
16706 2005-03-11  Jackson Harper  <jackson@ximian.com>
16707
16708         * BindingManagerBase.cs: This method isn't used anymore as
16709         PullData now updates the data in the control.
16710
16711 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
16712
16713         * Form.cs: fixes menu drawing on X11
16714         * MenuAPI.cs:  fixes menu drawing on X11
16715
16716 2005-03-11  Peter Bartok  <pbartok@novell.com>
16717
16718         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
16719           from Jonathan Gilbert; should fix bug #73606
16720         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
16721           in Screen coordinates. Thanks, Jordi.
16722         * Form.cs: Added missing attribute
16723
16724 2005-03-11  Peter Bartok  <pbartok@novell.com>
16725
16726         * Form.cs:
16727           - Rudimentary Mdi support
16728           - Removed outdated FormParent code
16729           - Implemented lots of missing properties and methods, still missing
16730             transparency support
16731           - Added missing attributes
16732           - Implemented support for MaximumBounds
16733           - Added firing of various events
16734         * XplatUI.cs: Added SetIcon() method
16735         * XplatUIDriver.cs: Added SetIcon() abstract
16736         * XplatUIOSX.cs: Stubbed out SetIcon() method
16737         * XplatUIX11.cs:
16738           - Implemented SetIcon() support
16739           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
16740           - Switched to unix line endings
16741         * XplatUIWin32.cs:
16742           - Made POINT internal so for can access it as part of MINMAX
16743           - Implemented SetIcon() support
16744           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
16745             native Mdi support again, might have to go managed)
16746         * Control.cs: Now fires the StyleChanged event
16747         * MdiClient.cs: Added; still mostly empty
16748
16749 2005-03-10  Peter Bartok  <pbartok@novell.com>
16750
16751         * SaveFileDialog.cs: Added emtpy file
16752
16753 2005-03-08  Peter Bartok  <pbartok@novell.com>
16754
16755         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
16756           in turn triggers OnCreateContro) when creating a handle for the
16757           first time.
16758         * TextControl.cs: Fixed endless loop in certain cases when
16759           replacing the current selection
16760
16761 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
16762
16763         * ScrollBar.cs:
16764           - Honors NewValue changes in Scroll events allowing apps to change it
16765           - Adds First and Last Scroll events
16766           - Fixes Thumb events
16767
16768 2005-03-07  Peter Bartok  <pbartok@novell.com>
16769
16770         * Hwnd.cs: Added DefaultClientRectangle property
16771         * XplatUI.cs: Now using the X11 driver Where() method, which provides
16772           more detailed debug information
16773         * XplatUIX11.cs:
16774           - Fixed size-change feedback loop, where we would pull an old size
16775             off the queue and mistakenly change our window's size to an
16776             earlier value
16777           - Now compressing ConfigureNotify events, to reduce looping and
16778             redraw issues
16779         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
16780           is called
16781
16782 2005-03-07  Jackson Harper  <jackson@ximian.com>
16783
16784         * Binding.cs: Push data pushes from data -> property. Check if the
16785         property is readonly when attempting to set it.
16786
16787 2005-03-07  Jackson Harper  <jackson@ximian.com>
16788
16789         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
16790         instead of IsSubclassOf. Pulling data now sets the value on the
16791         control.
16792         * PropertyManager.cs:
16793         * CurrencyManager.cs: Just need to pull data when updating now,
16794         because PullData will set the value on the control.
16795
16796 2005-03-04  Jackson Harper  <jackson@ximian.com>
16797
16798         * Binding.cs: Implement data type parsing and converting on pulled
16799         data. TODO: Are there more ways the data can be converted?
16800
16801 2005-03-04  Jackson Harper  <jackson@ximian.com>
16802
16803         * Binding.cs: Support <Property>IsNull checks. Also bind to the
16804         controls Validating method so we can repull the data when the
16805         control loses focus.
16806
16807 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
16808
16809         * ColumnHeader.cs:
16810           - Fixes null string format
16811           
16812         * ListView.cs:
16813           - Adds enum type checks
16814           - Fixes redrawing and recalc need after changing some properties
16815           - Fixes on focus_item set after the event
16816           - Fixes adding columns after the control has been created
16817           
16818         * ThemeWin32Classic.cs:
16819           - Fixes CheckBox focus rectangle
16820           - Fixes ColumnHeader drawing
16821
16822
16823 2005-03-03  Jackson Harper  <jackson@ximian.com>
16824
16825         * Binding.cs: Bind to <Property>Changed events so we can detect
16826         when properties are changed and update the data.
16827
16828 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
16829
16830         * ImageList.cs:
16831           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
16832           - Fixes ImageList constructor with ImageList container
16833           - Fixes image scaling (wrong parameters at DrawImage)
16834
16835 2005-02-02  Jackson Harper  <jackson@ximian.com>
16836
16837         * Binding.cs: Make property searches case-insensitive. Eliminate
16838         some duplicated code.
16839
16840 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
16841
16842         * ComboBox.cs:
16843                 - Handle focus event
16844                 - Fix scrollbar events
16845                 - Discard highlighted item if remove it
16846                 - Fixes SelectedItem with strings
16847
16848 2005-03-01  Peter Bartok  <pbartok@novell.com>
16849
16850         * Control.cs:
16851           - Fixed Visible property, now follows (once again) parent chain
16852             to return false if any control in the chain is visible=false
16853           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
16854           - Fixed several places where is_visible instead of Visible was used
16855           - Implemented FIXME related to focus selection when setting focused
16856             control to be invisible
16857
16858         * XplatUIWin32.cs: Now using proper method to find out if window is
16859           visible. Thanks to Jordi for pointing it out
16860
16861 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
16862
16863         * ComboBox.cs: show/hide scrollbar instead of creating it
16864
16865 2005-02-27  Jackson Harper  <jackson@ximian.com>
16866
16867         * CurrencyManager.cs: Add PositionChanged stuff.
16868
16869 2005-02-27  Peter Bartok  <pbartok@novell.com>
16870
16871         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
16872         * XplatUIOSX.cs: Added GetMenuOrigin() stub
16873         * XplatUIWin32.cs: Implemented GetMenuOrigin()
16874         * XplatUIX11.cs:
16875           - Implemented GetMenuDC()
16876           - Implemented GetMenuOrigin()
16877           - Implemented ReleaseMenuDC()
16878           - Implemented generation of WM_NCPAINT message
16879           - Implemented generation and handling of WM_NCCALCSIZE message
16880         * Form.cs: Added debug helper message for Jordi's menu work
16881         * Hwnd.cs:
16882           - Modified ClientRect property; added setter, fixed getter to handle
16883             setting of ClientRect
16884           - Added MenuOrigin property
16885
16886 2005-02-26  Peter Bartok  <pbartok@novell.com>
16887
16888         * XplatUIX11.cs:
16889           - Destroys the caret if a window that's being destroyed contains it
16890           - Ignores expose events coming from the X11 queue for windows that
16891             already are destroyed
16892           - Now uses the proper variable for handling DestroyNotify, before we
16893             marked the wrong window as destroyed
16894           - Improved/added some debug output
16895
16896 2005-02-26  Peter Bartok  <pbartok@novell.com>
16897
16898         * X11Keyboard.cs: Fixes to work on 64bit systems
16899
16900 2005-02-26  Peter Bartok  <pbartok@novell.com>
16901
16902         * Control.cs:
16903           - Now calling OnHandleDestroyed from DestroyHandle()
16904             instead of Dispose()
16905           - Removed bogus call to controls.Remove() from DestroyHandle()
16906
16907 2005-02-26  Peter Bartok  <pbartok@novell.com>
16908
16909         * Control.cs: Properly destroy child windows when our handle is
16910           destroyed
16911
16912 2005-02-25  Peter Bartok  <pbartok@novell.com>
16913
16914         * XplatUI.cs:
16915           - Added 'DriverDebug' define to allow tracing XplatUI API calls
16916           - Alphabetized Static Methods and Subclasses
16917
16918         * XplatUIX11.cs:
16919           - Added XException class to allow custom handling of X11 exceptions
16920           - Created custom X11 error handler, tied into XException class
16921           - Added support for MONO_XEXCEPTIONS env var to allow the user
16922             to either throw an exception on X errors or continue running
16923             after displaying the error
16924           - Added handling of DestroyNotify message
16925           - Added handler for CreateNotify message (still disabled)
16926           - Improved (tried to at least) Where method to provide file and lineno
16927         * X11Structs.cs:
16928           - Added XErrorHandler delegate
16929           - Added XRequest enumeration (to suppor translation of errors)
16930
16931 2005-02-25  Jackson Harper  <jackson@ximian.com>
16932
16933         * PropertyManager.cs: Implement editing features
16934         * CurrencyManager.cs:
16935         * Binding.cs: First attempt at UpdateIsBinding
16936         * BindingManagerBase.cs: Call UpdateIsBinding before
16937         pushing/pulling data.
16938
16939 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
16940
16941         * MenuAPI.cs: Respect disabled items
16942         * ThemeWin32Classic.cs
16943                 - Caches ImageAttributes creation for DrawImageDisabled
16944                 - Fixes vertical menu line drawing
16945                 - Draws disabled arrows in disable menu items
16946
16947 2005-02-24  Peter Bartok  <pbartok@novell.com>
16948
16949         * Hwnd.cs:
16950           - Added UserData property to allow associating arbitrary objects
16951             with the handle
16952           - Fixed leak; now removing Hwnd references from static windows array
16953         * XplatUIWin32.cs:
16954           - Fixed Graphics leak in PaintEventEnd
16955           - Removed usage of HandleData, switched over to Hwnd class
16956         * HandleData.cs: Removed, obsoleted by Hwnd.cs
16957
16958 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16959
16960         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
16961         * ScrollBar.cs: Fixes bug
16962         * TrackBar.cs: removes death code, clipping, mimize refreshes,
16963          keyboard navigation enhancements
16964
16965 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16966
16967         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
16968         * GroupBox.cs: Add control styles
16969         * Label.cs: Add control styles
16970         * UpDownBase.cs: Add control styles
16971         * ListBox.cs: Add control styles
16972         * XplatUIWin32.cs: Fixes wrong parameter order
16973
16974
16975 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
16976
16977         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
16978
16979 2005-02-23  Jackson Harper  <jackson@ximian.com>
16980
16981         * PropertyManager.cs: Implement property binding. This doesn't
16982         seem to work yet though as (I think) there are some bugs in
16983         System.ComponentModel.PropertyDescriptor.
16984         * BindingContext.cs: Use new PropertyManager constructor.
16985
16986 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
16987
16988         * ProgressBar.cs: use clip region in ProgressBar
16989         * ThemeWin32Classic.cs: use clip region in ProgressBar
16990
16991 2004-02-22  Jackson Harper  <jackson@ximian.com>
16992
16993         * BindingsCollection.cs: Remove some debug code.
16994
16995 2005-02-22  Jackson Harper  <jackson@ximian.com>
16996
16997         * BindingContext.cs:
16998         * ControlBindingsCollection.cs:
16999         * CurrencyManager.cs:
17000         * Binding.cs:
17001         * BindingManagerBase.cs: Initial implementation
17002         * BindingsCollection.cs: Add an internal contains method that the
17003         BindingManagerBase uses to ensure bindings aren't added twice to
17004         the collection.
17005         * PropertyManager.cs: Stubbed out.
17006         * Control.cs:
17007         * ContainerControl.cs: Hook up databinding
17008         
17009 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
17010
17011         * XplatUIOSX.cs:
17012           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
17013           Fixed Invalidate/Update chain.
17014           Fixed tons of other minor bugs (this is almost a complete rewrite).
17015
17016 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
17017
17018         * ComboBox.cs: do subcontrol creation when the control is created
17019
17020 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17021
17022         * Label.cs: fixes image drawing (image and imagelist)
17023         * ThemeWin32Classic.cs: cache brushes
17024         
17025 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17026
17027         * Form.cs: Move menu drawing code to Theme class
17028         * ComboBox.cs: Move ComboBox drawing code to Theme class
17029         * MenuItem.cs: Move menu drawing code to Theme class
17030         * MenuAPI.cs: Move menu drawing code to Theme class
17031         * ThemeWin32Classic.cs: New methods
17032         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
17033         * ListBox.cs: Move Listbox drawing code to Theme class
17034         * Theme.cs: New methods
17035
17036 2005-02-20  Peter Bartok  <pbartok@novell.com>
17037
17038         * Control.cs:
17039           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
17040             only process mnemonics on those)
17041           - Fixed event sequence for key handling; first calling
17042             ProcessKeyEventArgs now
17043         * TextBoxBase.cs:
17044           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
17045             for processing non-character keys
17046           - Fixed WM_CHAR to generate proper event sequence before processing
17047         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
17048           generation
17049
17050 2005-02-19  Peter Bartok  <pbartok@novell.com>
17051
17052         * UserControl.cs: Added TextChanged event; added attributes
17053         * SizeGrip.cs: Implemented resizing and optional display of grip
17054         * Form.cs: Fixed attribute
17055         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
17056           Changed meaning of ScrollWindow bool argument; instead of the
17057           clear attribute (which will be true usually anyway), it gives the
17058           option of moving child controls as well.
17059         * XplatUIX11.cs:
17060           - Changed to match new ScrollWindow argument
17061           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
17062             now handles the implicit parent window a WM puts around us
17063         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
17064           to work)
17065         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
17066         * TreeView.cs: Adjusted to new ScrollWindow arguments
17067
17068 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
17069
17070         * Form.cs: Menu integration with non-client area
17071         * MenuItem.cs: Menu integration with non-client area
17072         * MenuAPI.cs: Menu integration with non-client area
17073
17074 2005-02-18  Peter Bartok  <pbartok@novell.com>
17075
17076         * MethodInvoker.cs: Added
17077         * MdiLayout.cs: Added
17078         * SendKeys.cs: Started implementation
17079         * ErrorIconAlignment.cs: Added
17080
17081 2005-02-18  Peter Bartok  <pbartok@novell.com>
17082
17083         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
17084         * Form.cs: Added handling for Menu-related Non-client messages
17085
17086 2005-02-17  Peter Bartok  <pbartok@novell.com>
17087
17088         * UpDownBase.cs: Fixed typo, compilation errors
17089         * DomainUpDown.cs: Fixed attribute value
17090
17091 2005-02-16  Miguel de Icaza  <miguel@novell.com>
17092
17093         * UpDownBase.cs: Attach entry events.
17094         Propagate events.
17095         Add ForeColor property, Focused, InterceptArrowKeys (interception
17096         does not work yet).
17097
17098 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
17099
17100         * Form.cs:
17101                 - Redraw non client are on Setmenu
17102                 - Calc proper menu starting point
17103
17104 2005-02-17  Peter Bartok  <pbartok@novell.com>
17105
17106         * Application.cs: Fixed message_filter check
17107
17108 2005-02-17  Peter Bartok  <pbartok@novell.com>
17109
17110         * Application.cs: Now calls registered message filters
17111         * DockStyle.cs: Fixed attribute
17112         * Form.cs: Fixed attribute
17113         * Menu.cs: Fixed attribute
17114         * ToolTip.cs: Fixed attribute
17115         * TreeNode.cs: Added missing attributes and arranged in regions
17116         * PropertyGrid.cs: Fixed signatures
17117         * TreeNodeCollection.cs: Added attributes
17118         * Splitter.cs: Added missing attributes; arranged into regions
17119         * TabPage.cs: Added missing attributes; arranged into regions
17120         * TextBoxBase.cs: Added missing attributes
17121         * TextBox.cs: Added missing attributes
17122         * ArrangeDirection.cs: Added missing attributes
17123         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
17124         * ToolBarButton.cs: Fixed attributes
17125         * AnchorStyles.cs: Fixed attribute
17126         * TrackBar.cs: Fixed attributes
17127         * TabControl.cs: Added missing attributes and arranged into regions
17128         * ToolBar.cs: Fixed attribute
17129         * StatusBar.cs: Fixed signature, organized into regions and added
17130           attributes
17131         * StatusBarPanel.cs: Fixed attributes
17132         * ContentsResizedEventArgs.cs: Implemented
17133         * ContentsResizedEventHandler.cs: Implemented
17134         * DateBoldEventArgs.cs: Implemented
17135         * DateBoldEventHandler.cs: Implemented
17136         * UpDownEventArgs.cs: Implemented
17137         * UpDownEventHandler.cs: Implemented
17138         
17139 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
17140
17141         * Form.cs: first Menu NC refactoring
17142         * MenuAPI.cs: first Menu NC refactoring
17143         
17144 2005-02-16  Peter Bartok  <pbartok@novell.com>
17145
17146         * ImeMode.cs: Added missing attributes
17147         * Menu.cs: Fixed attribute
17148         * GroupBox.cs: Fixed attribute
17149         * Label.cs: Fixed attribute
17150         * ColorDialog.cs (RunDialog): Removed TODO attribute
17151         * ComboBox.cs: Fixed attributes
17152         * ListControl.cs: Added missing attributes
17153         * PropertyGrid.cs: Fixed attributes
17154         * Control.cs: Fixed attributes
17155         * ListViewItem.cs: Added TypeConverter attribute
17156         * NotifyIcon.cs: Fixed attributes
17157         * ListView.cs: Fixed attributes
17158         * ButtonBase.cs: Fixed attribute
17159         * ImageList.cs: Added missing attributes
17160         * ContainerControl.cs: Fixed signature
17161         * CheckedListBox.cs: Fixed attribute; added missing attributes
17162         * Panel.cs: Fixed attributes
17163         * PropertyTabChangedEventArgs.cs: Added missing attribute
17164         * PropertyValueChangedEventArgs.cs: Added missing attribute
17165         * Binding.cs: Fixed attribute
17166         * ListViewItemConverter: Implemented ListViewSubItemConverter class
17167         * ListBox.cs: Fixed attribute; added missing attributes;
17168         * ScrollableControl.cs: Added missing attributes
17169         * PictureBox.cs: Added missing attributes; implemented missing property
17170         * DateTimePicker.cs: Added missing attributes
17171         * Theme.cs (ToolWindowCaptionHeight): Fixed type
17172         * MonthCalendar.cs: Fixed attributes
17173         * StatusBarPanel.cs: Added missing attributes
17174         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
17175
17176 2005-02-16  Peter Bartok  <pbartok@novell.com>
17177
17178         * TextBoxBase.cs: The previous method to enforce height yet remember
17179           the requested high was less than ideal, this is an attempt to do
17180           it better.
17181         * Control.cs: Added comment about possible problem
17182         * Copyright: Updated format
17183         * GridItemType.cs: Fixed swapped values
17184
17185 2005-02-15  Jackson Harper  <jackson@ximian.com>
17186
17187         * BaseCollection.cs: Use property so we never access an
17188         uninitialized list. Also initialize the list in the property.
17189
17190 2005-02-15  Peter Bartok  <pbartok@novell.com>
17191
17192         * GroupBox.cs (ProcessMnemonic): Implemented
17193         * Label.cs (ProcessMnemonic): Implemented
17194         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
17195           hotkeys
17196
17197 2005-02-15  Peter Bartok  <pbartok@novell.com>
17198
17199         * RadioButton.cs (ProcessMnemonic): Implemented
17200         * CheckBox.cs (ProcessMnemonic): Implemented
17201         * Control.cs:
17202           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
17203             handling
17204           - Added internal method to allow calling ProcessMnemonic from other
17205             controls
17206         * ContainerControl.cs:
17207           - Started support for handling validation chain handling
17208           - Implemented ProcessMnemonic support
17209           - Added Select() call to Active, to make sure the active control
17210             receives focus
17211         * Form.cs: Setting toplevel flag for Forms (this was lost in the
17212           FormParent rewrite)
17213         * ThemeWin32Classic.cs:
17214           - DrawCheckBox(): Fixed stringformat to show hotkeys
17215           - DrawRadioButton(): Fixed stringformat to show hotkeys
17216         * CommonDialog.cs: Removed WndProc override, not needed
17217
17218 2005-02-14  Peter Bartok  <pbartok@novell.com>
17219
17220         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
17221           missed those in the rewrite
17222
17223 2005-02-14  Miguel de Icaza  <miguel@novell.com>
17224
17225         * NumericUpDown.cs (Increment, ToString): Add.
17226         (DecimalPlaces): implement.
17227         
17228         Add attributes.
17229         
17230         * UpDownBase.cs: Add the designer attributes.
17231
17232 2005-02-13  Peter Bartok  <pbartok@novell.com>
17233
17234         * Panel.cs: Removed border_style, now in Control
17235         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
17236           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
17237
17238 2005-02-13  Peter Bartok  <pbartok@novell.com>
17239
17240         * MouseButtons.cs: Added missing attributes
17241         * XplatUIStructs.cs: Added enumeration for title styles
17242         * LeftRightAlignment.cs: Added missing attributes
17243         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
17244           it compatible with Graphics.FromHwnd()
17245         * SelectedGridItemChangedEventArgs.cs: Fixed property type
17246         * Keys.cs: Added missing attributes
17247         * SelectionRange.cs: Added missing attributes
17248         * SelectionRangeConverter.cs: Added
17249         * XplatUI.cs:
17250           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
17251             ReleaseMenuDC methods
17252           - Renamed ReleaseWindow to UngrabWindow
17253           - Added proper startup notice to allow version identification
17254         * Form.cs:
17255           - Added missing attributes
17256           - Removed FormParent concept
17257         * Label.cs: Removed border_style field, now in Control
17258         * RadioButton.cs: Now properly selects RadioButton when focus is
17259           received
17260         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
17261         * Control.cs:
17262           - Added missing attributes
17263           - Added borderstyle handling
17264           - Removed FormParent concept support
17265           - Fixed calls to XplatUI to match changed APIs
17266           - Fixed bug that would case us to use disposed Graphics objects
17267           - Removed unneeded internal methods
17268           - PerformLayout(): Fixed to handle DockStyle.Fill properly
17269           - SelectNextControl(): Fixed to properly check common parents
17270         * TextBoxBase.cs: Removed border_style field (now in Control)
17271         * MessageBox.cs:
17272           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
17273             fixed calculations for form size
17274           - Added support for localized strings and icons
17275           - Improved form size calculations, added border
17276         * ListView.cs: Removed border_style field (now in Control)
17277         * X11Structs.cs: Moved several structs from X11 driver here
17278         * X11Keyboard.cs: Changed debug message
17279         * Application.cs: Removed FormParent concept support
17280         * CommonDialog.cs:
17281           - Resetting end_modal flag
17282           - Removed FormParent concept support
17283         * NativeWindow.cs: Removed FormParent concept support
17284         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
17285           Client area and Non-Client whole window to allow support for WM_NC
17286           messages
17287         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
17288           prevent using it until it supports Hwnd as per Geoff Norton's request
17289         * ToolBar.cs: Fixed drawing, was not doing proper drawing
17290         * PictureBox.cs: Removed border_style field, now in Control
17291         * XplatUIWin32.cs: Added new driver methods
17292
17293 2005-02-12  Peter Bartok  <pbartok@novell.com>
17294
17295         * OpacityConverter.cs: Implemented
17296         * Hwnd.cs: Internal class to support drivers that need to emulate
17297           client area/non-client area window behaviour
17298
17299 2005-02-11  Peter Bartok  <pbartok@novell.com>
17300
17301         * KeysConverter.cs: Implemented
17302
17303 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
17304
17305         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
17306         * LinkLabel: Added missing attributes
17307         * MainMenu.cs: fixes ToString
17308         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
17309         * ListBox.cs: fixes event position
17310         * TrackBar.cs: adds missing attributes and events
17311         
17312 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
17313
17314         * MenuItem.cs: Use SystemInformation and bug fixes
17315         * MenuAPI.cs: Use SystemInformation and bug fixes
17316
17317 2005-02-09  Jackson Harper  <jackson@ximian.com>
17318
17319         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
17320         their keystate otherwise things like VK_MENU get stuck "on".
17321
17322 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
17323
17324         * ListBox.cs: Fixes AddRange bug
17325         
17326 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
17327
17328         * ProgressBar.cs
17329                 - Add missing attributes
17330                 - Add missing method
17331                 
17332         * CheckedListBox.cs: Added missing attributes
17333                 - Add missing attributes
17334                 - Remove extra method
17335         
17336         * ComboBox.cs: Added missing attributes
17337         * VScrollBar.cs: Added missing attributes
17338         * ScrollBar.cs:  Added missing attributes
17339         * ListBox.cs: Fixes signature, add missing consts
17340         * LinkArea.cs:   Added missing attributes
17341         
17342
17343 2005-02-08  Peter Bartok  <pbartok@novell.com>
17344
17345         * Menu.cs: Added missing attributes
17346         * MainMenu.cs: Added missing attributes
17347         * GroupBox.cs: Added missing attributes
17348         * Label.cs: Added missing attributes
17349         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
17350         * ColorDialog.cs:
17351           - Added Instance and Options properties
17352           - Added missing attributes
17353         * Cursor.cs: Made Serializable
17354         * NotifyIcon: Added missing attributes
17355         * MenuItem.cs: Added missing attributes
17356         * TextBoxBase.cs: Implemented AppendText() and Select() methods
17357         * Panel.cs: Added Missing attributes
17358         * MonthCalendar.cs: Fixed CreateParams
17359
17360 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17361         
17362         * LinkLabel.cs:
17363                 - Fixes signature
17364                 - Fixes issues with links
17365                 - Adds the class attributes
17366
17367 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17368         
17369         * ComboBox.cs:
17370                 - Fixes button when no items available in dropdown
17371                 - Fixes repainting problems
17372                 - Adds the class attributes
17373                 
17374 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17375
17376         * XplatUIOSX.cs: Detect the menu bar and title bar height from
17377         the current theme.  Cache these on startup.
17378
17379 2005-02-07  Jackson Harper  <jackson@ximian.com>
17380
17381         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
17382         the scrollbar buttons when they are depressed.
17383
17384 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17385
17386         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
17387         Get the display size from the main displayid.  We currently dont
17388         support multiple display configurations.
17389
17390 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17391
17392         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
17393
17394 2005-02-07  Miguel de Icaza  <miguel@novell.com>
17395
17396         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
17397
17398 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
17399
17400         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
17401
17402 2005-02-04  Jackson Harper  <jackson@ximian.com>
17403
17404         * ThemeWin32Classic.cs: Respect the clipping rect when
17405         drawing. Only fill the intersection of clips and rects so there
17406         isn't a lot of large fills.
17407         * ScrollBar.cs: Pass the correct clipping rect to the theme
17408         engine. Remove some debug code.
17409
17410 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
17411         
17412         * DateTimePicker.cs:
17413                 - Fixed crash on DateTime.Parse, use Constructor instead
17414
17415 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17416         
17417         * MenuItem.cs:
17418         * MenuAPI.cs:
17419                 - Owner draw support (MeasureItem and DrawItem)
17420
17421 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17422         
17423         *  Menu.cs:
17424                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
17425                 - Fixes MenuItems.Add range
17426         * MenuItem.cs:
17427                 - MergeMenu and Clone and CloneMenu functions
17428
17429 2005-02-03  Jackson Harper  <jackson@ximian.com>
17430
17431         * ScrollBar.cs: Make abstract
17432         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
17433         is abstract.
17434
17435 2005-02-03  Jackson Harper  <jackson@ximian.com>
17436
17437         * ScrollBar.cs: First part of my scrollbar fixups. This removes
17438         all the unneeded refreshes and uses invalidates with properly
17439         computed rects.
17440
17441 2005-02-03  Peter Bartok  <pbartok@novell.com>
17442
17443         * ComponentModel.cs: Added
17444         * IDataGridEditingService.cs: Added
17445         * Timer.cs: Added missing attributes
17446         * ToolTip.cs: Added missing attributes
17447
17448 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17449
17450         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
17451
17452 2005-02-03  Peter Bartok  <pbartok@novell.com>
17453
17454         * ListBox.cs: Added missing attributes
17455
17456 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
17457         
17458         * ListBox.cs:
17459                 - Fixes font height after font change
17460                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
17461                 
17462 2005-02-02  Peter Bartok  <pbartok@novell.com>
17463
17464         * HandleData.cs: Introduced static methods to allow class
17465           to be more self-contained and track it's own HandleData objects
17466         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
17467           HandleData to use new static methods
17468
17469 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
17470
17471         * Combobox.cs:
17472                 - Fixes default size and PreferredHeight
17473                 - Missing events
17474                 - ObjectCollection.Insert implementation
17475                 
17476         * ListControl.cs
17477                 - Fixes signature
17478         * ListBox.cs:
17479                 - Several fixes
17480                 - ObjectCollection.Insert implementation
17481                 - No selection after clean
17482                 - Small fixes
17483
17484 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17485
17486         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
17487
17488 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
17489
17490         * Combobox.cs:
17491                 - Caches ItemHeight calculation for OwnerDrawVariable
17492                 - Handles dropdown properly
17493                 - Fixes several minor bugs
17494
17495 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17496
17497         * ListBox.cs:
17498                 - Fixes 71946 and 71950
17499                 - Fixes changing Multicolumn on the fly
17500                 - Fixes keyboard navigation on Multicolumn listboxes
17501
17502 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17503         
17504         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
17505         crash reporter log.
17506
17507 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17508
17509         * XplatUIOSX.cs: Allow applications to actually exit.
17510
17511 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17512
17513         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
17514         their parent at creation time rather than lazily later.  Fixes a major
17515         regression we were experiencing.
17516
17517 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17518
17519         * ThemeWin32Classic.cs: more date time picker painting fixes
17520         * DateTimePicker.cs: more monthcalendar drop down fixes
17521         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
17522
17523 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17524
17525         * ScrollBar.cs:
17526                 - When moving the thumb going outside the control should stop the moving
17527                 - Adds the firing of missing events
17528                 - Fixes no button show if Size is not specified
17529                 - End / Home keys for keyboard navigation
17530
17531 2005-01-30  Peter Bartok  <pbartok@novell.com>
17532
17533         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
17534           sanity check to prevent theoretical loop
17535         * XplatUIWin32.cs (SetVisible): Removed debug output
17536         * XplatUIX11.cs (SystrayChange): Added sanity check
17537         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
17538         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
17539           behaviour, valid until the X11 client window rewrite is done
17540         * TextBox.cs (ctor): Setting proper default foreground and background
17541           colors
17542
17543 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
17544
17545         * Theme: Added DrawDateTimePicker to interface
17546         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
17547         * DateTimePicker.cs: Created (still needs keys and painting code)
17548         * DateTimePickerFormat.cs: added
17549         * MonthCalendar.cs: fixed CreateParams for popup window mode
17550           
17551 2005-01-29  Peter Bartok  <pbartok@novell.com>
17552
17553         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
17554           this should also the calculations for ligher/darker
17555         * Theme.cs: Fixed defaults for ScrollBar widths/heights
17556
17557 2005-01-29  Peter Bartok  <pbartok@novell.com>
17558
17559         * ArrangeDirection.cs: Added
17560         * ArrangeStartingPositon.cs: Added
17561         * SystemInformation.cs: Implemented
17562         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17563           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
17564           used by SystemInformation class
17565         * X11Strucs.cs: Added XSizeHints structure
17566         * MenuAPI.cs:
17567           - Fixed CreateParams to make sure the menu window is always visible
17568           - TrackPopupMenu: Added check to make sure we don't draw the
17569             menu offscreen
17570
17571 2005-01-29  Peter Bartok  <pbartok@novell.com>
17572
17573         * HandleData.cs: Added method for altering invalid area
17574         * TextBoxBase.cs: Implemented TextLength
17575
17576 2005-01-28  Peter Bartok  <pbartok@novell.com>
17577
17578         * XplatUIX11.cs: Improvement over last patch, not sending
17579           the WM_PAINT directly anymore, instead we scroll any pending
17580           exposed areas and let the system pick out the WM_PAINT later
17581
17582 2005-01-28  Peter Bartok  <pbartok@novell.com>
17583
17584         * SWF.csproj: Deleted, no longer used. Instead,
17585           Managed.Windows.Forms/SWF.csproj should be used
17586         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
17587           directly, to avoid a potential race condition with the next
17588           scroll
17589
17590 2005-01-28  Peter Bartok  <pbartok@novell.com>
17591
17592         * XplatUI.cs: Made class internal
17593
17594 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
17595
17596         * CheckedListBox.cs:
17597                 - Draw focus
17598                 - Fixed Drawing
17599                 - Missing methods and events
17600
17601 2005-01-27  Peter Bartok  <pbartok@novell.com>
17602
17603         * Application.cs (Run): Don't use form if we don't have one
17604
17605 2005-01-27  Peter Bartok  <pbartok@novell.com>
17606
17607         * TextBoxBase.cs (get_Lines): Fixed index off by one error
17608
17609 2005-01-27  Peter Bartok  <pbartok@novell.com>
17610
17611         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
17612         * GridItem.cs: Added; Patch by Jonathan S. Chambers
17613         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
17614         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
17615         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
17616         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
17617         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17618         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
17619         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17620         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17621         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17622         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
17623
17624 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
17625
17626         * Combobox.cs:
17627                 - Draw focus on Simple Combobox
17628                 - Fixes drawing issues
17629                 - fixes 71834
17630
17631 2005-01-27  Peter Bartok  <pbartok@novell.com>
17632
17633         * Form.cs:
17634           - Place window in default location, instead of hardcoded 0/0
17635           - Send initial LocationChanged event
17636         * Control.cs:
17637           - UpdateBounds after creation to find out where the WM placed us
17638           - Make sure that if the ParentForm changes location the Form
17639             is notified
17640         * XplatUIX11.cs: XGetGeometry will not return the coords relative
17641             to the root, but to whatever the WM placed around us.
17642             Translate to root coordinates before returning toplevel
17643             coordinates
17644         * XplatUIWin32.cs: Removed debug output
17645         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
17646           flag to GetWindowPos, to allow translation of coordinates on X11
17647
17648 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
17649
17650         * ListBox.cs: connect LostFocus Event
17651
17652 2005-01-27  Peter Bartok  <pbartok@novell.com>
17653
17654         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17655           XplatUIX11.cs: Extended the Systray API
17656         * Form.cs: Removed debug output
17657         * Application.cs: Fixed focus assignment, always need to call
17658           XplatUI.Activate() since Form.Activate() has rules that may
17659           prevent activation
17660         * NotifyIcon.cs: Should be complete now
17661         * ToolTip.cs: Worked around possible timer bug
17662
17663 2005-01-27  Jackson Harper  <jackson@ximian.com>
17664
17665         * TabControl.cs:
17666         - Only invalidate the effected tabs when the
17667         selected index changes. This reduces drawing and gets rid of some
17668         flicker.
17669         - Only refresh if the tabs need to be shifted, otherwise only
17670         invalidate the slider button.
17671         - On windows the tabs are not filled to right if the slider is
17672         visible.
17673         
17674 2005-01-27  Jackson Harper  <jackson@ximian.com>
17675
17676         * TabControl.cs: Only refresh on mouseup if we are showing the
17677         slider. Also only invalidate the button whose state has changed.
17678
17679 2005-01-26  Peter Bartok  <pbartok@novell.com>
17680
17681         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
17682         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
17683           and SystrayRemove() methods
17684         * XplatUIOSX.cs: Stubbed Systray methods
17685         * XplatUIX11.cs:
17686           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
17687             methods
17688           - Fixed broken XChangeProperty calls (marshalling messed up things)
17689         * X11Structs.cs: Added enums and structs required for Size hinting
17690         * NotifyIcon.cs: Added & implemented
17691
17692 2005-01-26  Jackson Harper  <jackson@ximian.com>
17693
17694         * TabControl.cs: Space vertically layed out tabs properly.
17695
17696 2005-01-26  Peter Bartok  <pbartok@novell.com>
17697
17698         * Form.cs (CreateClientParams): Always set the location to 0,0
17699           since we're a child window.
17700
17701         * Control.cs (SetVisibleCore): Always explicitly setting the location
17702           of a toplevel window, apparently X11 doesn't like to move windows
17703           while they're not mapped.
17704
17705 2005-01-26  Jackson Harper  <jackson@ximian.com>
17706
17707         * TabControl.cs: Implement FillToRight size mode with vertically
17708         rendered tabs.
17709
17710 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
17711
17712         * ControlPaint.cs, ThemeWin32Classic.cs
17713                 - Fixes DrawFocusRectangle
17714
17715 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
17716
17717         * MenuAPI.cs:
17718                 - MenuBar tracking only starts when item is first clicked
17719                 - Fixes menu hidding for multiple subitems
17720                 - Unselect item in MenuBar when item Executed
17721                 - Fixes bug 71495
17722
17723 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
17724
17725         * ListControl.cs:
17726                 - IsInputKey for ListBox
17727         * ListBox.cs:
17728                 - Focus item
17729                 - Shift and Control item selection
17730                 - Implement SelectionMode.MultiExtended
17731                 - Fixes RightToLeft
17732         * ComboBox.cs:
17733                 - IsInputKey implemented
17734                 - Do not generate OnTextChangedEdit on internal txt changes
17735                 
17736 2005-01-23  Peter Bartok  <pbartok@novell.com>
17737
17738         * AccessibleObject.cs: Partially implemented Select()
17739         * MonthCalendar.cs: Added missing attributes and events
17740         * Form.cs: Fixed CreateParams behaviour, now controls derived from
17741           form can properly override CreateParams.
17742         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17743           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
17744           Control performs Invalidate & Update
17745         * NativeWindow (CreateHandle): Added special handling for Form
17746           and Form.FormParent classes to allow overriding of From.CreateParams
17747         * Control.cs:
17748           - ControlNativeWindow: Renamed 'control' variable to more intuitive
17749             name 'owner'
17750           - ControlNativeWindow: Added Owner property
17751           - Removed usage of Refresh() on property changes, changed into
17752             Invalidate(), we need to wait until the queue is processed for
17753             updates, direct calls might cause problems if not all vars for
17754             Paint are initialized
17755           - Added call to UpdateStyles() when creating the window, to set any
17756             styles that CreateWindow might have ignored.
17757           - Added support for Form CreateParent overrides to UpdateStyles()
17758         * MessageBox.cs: Removed no longer needed FormParent override stuff,
17759           CreateParams are now properly overridable
17760         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
17761           CreateParams are now properly overridable
17762
17763 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
17764
17765         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
17766         OnTextBoxChanged.
17767
17768         Capture LostFocus and OnTextBoxChanged.  The later introduces a
17769         recursive invocation that I have not figured out yet.
17770
17771         Reset the timer when not using (it was accumulating).
17772
17773
17774         (OnTextBoxChanged): Set UserEdit to true here to track whether the
17775         user has made changes that require validation.
17776
17777         Reset changing to avoid loops.
17778
17779 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
17780
17781         * NumericUpDown.cs: Display value at startup.
17782
17783         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
17784         ValidateEditText.
17785
17786         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
17787         filled in.  Added some basic parsing of text.
17788
17789         Still missing the OnXXX method overrides, and figuring out the
17790         events that must be emitted.
17791
17792         * UpDownBase.cs: Handle UserEdit on the Text property.
17793         
17794 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
17795
17796         * ComboBox.cs:
17797           - Fixes IntegralHeight
17798           - ToString method
17799
17800 2005-01-21  Jackson Harper  <jackson@ximian.com>
17801
17802         * TabControl.cs: Set the SelectedIndex property when SelectedTab
17803         is set so that the page visibility is updated and the tabs are
17804         sized correctly.
17805
17806 2005-01-21  Jackson Harper  <jackson@ximian.com>
17807
17808         * TabControl.cs: Use cliping rectangle for blitting. Give the
17809         theme the clipping rect so we can do clipping while
17810         drawing. Remove some debug code.
17811
17812 2005-01-21  Jackson Harper  <jackson@ximian.com>
17813
17814         * TabPage.cs: Add a new method so tab pages can force the tab
17815         control to recalculate the tab page sizes.
17816         * TabControl.cs: UpdateOwner needs to make the tab control recalc
17817         sizes.
17818
17819 2005-01-20  Jackson Harper  <jackson@ximian.com>
17820
17821         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
17822
17823 2005-01-20  Jackson Harper  <jackson@ximian.com>
17824
17825         * TreeView.cs: Set the bounds for nodes properly. They were
17826         getting screwed up when checkboxes were not enabled, but images
17827         were.
17828
17829 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
17830
17831         * ListBox.cs:
17832                 - Owner draw support
17833                 - Fixes
17834                 
17835 2005-01-20  Jackson Harper  <jackson@ximian.com>
17836
17837         * XplatUIStructs.cs: More misc keys
17838         * X11Keyboard.cs: Ignore some control keys.
17839
17840 2005-01-20  Jackson Harper  <jackson@ximian.com>
17841
17842         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
17843         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
17844
17845 2005-01-19  Peter Bartok  <pbartok@novell.com>
17846
17847         * Control.cs: Un-selecting the control when it is loosing focus
17848
17849 2005-01-19  Jackson Harper  <jackson@ximian.com>
17850
17851         * TreeView.cs: Hook up to the text controls leave event so we can
17852         end editing when the users clicks outside the text box.
17853         
17854 2005-01-19  Jackson Harper  <jackson@ximian.com>
17855
17856         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
17857         get set in the conversion array.
17858
17859 2005-01-19  Peter Bartok  <pbartok@novell.com>
17860
17861         * Application.cs (ModalRun): Added a call to CreateControl to ensure
17862           focus is properly set
17863         * Button.cs:
17864           - Added missing attributes
17865           - removed styles, those are already set in the base class
17866         * ButtonBase.cs:
17867           - Added missing attributes
17868           - Added clip window styles
17869         * CheckBox.cs: Added missing attributes
17870         * CommonDialog.cs:
17871           - FormParentWindow.CreateParams: Added required clip styles
17872         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
17873           also filters modifier keys
17874         * MessageBox.cs:
17875           - Added assignment of Accept and Cancel button to enable Enter
17876             and Esc keys in MessageBox dialogs
17877           - FormParentWindow.CreateParams: Added required clip styles
17878         * RadioButton.cs: Added missing attributes
17879         * TextControl.cs: No longer draws selection if control does not
17880           have focus
17881         * TextBoxBase.cs:
17882           - Now draws simple rectangle around test area to make it obvious
17883             there's a control. This is a hack until we properly support borders
17884           - A few simple fixes to support selections better, now erases selected
17885             text when typing, and resets selection when using movement keys
17886
17887 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
17888
17889         * UpDownBase.cs: Added some new properties.
17890
17891         * DomainUpDown.cs: Implement a lot to get my test working.
17892
17893 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17894
17895         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
17896
17897 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17898
17899         * OSXStructs (WindowAttributes): Fixed csc complaints
17900
17901 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17902
17903         * XplayUIOSX.cs:
17904           OSXStructs.cs: Initial refactor to move enums and consts into
17905           OSXStructs and use them in the driver for greater readability.
17906
17907 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17908
17909         * XplatUIOSX.cs: Initial support for Standard Cursors.
17910         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
17911
17912 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
17913
17914         * ComboBox.cs: ability to change style when the ctrl is already
17915         created, missing methods and events, bug fixes, signature fixes
17916
17917 2005-01-19  Peter Bartok  <pbartok@novell.com>
17918
17919         * Cursors.cs (ctor): Added ctor to fix signature
17920
17921 2005-01-18  Peter Bartok  <pbartok@novell.com>
17922
17923         * Button.cs: Implemented DoubleClick event
17924         * ButtonBase.cs:
17925           - Fixed keyboard handling to behave like MS, where the press of
17926             Spacebar is equivalent to a mousedown, and the key release is
17927             equivalent to mouseup. Now a spacebar push will give the same
17928             visual feedback like a mouse click.
17929           - Added missing attributes
17930           - Added ImeModeChanged event
17931           - Added support for generating DoubleClick event for derived classes
17932         * CheckBox.cs:
17933           - Implemented DoubleClick event
17934           - Added missing attributes
17935         * CommonDialog.cs: Added missing attribute
17936         * ContextMenu.cs: Added missing attributes
17937         * RadioButton.cs:
17938           - AutoChecked buttons do not allow to be unselected when clicked
17939             (otherwise we might end up with no selected buttons in a group)
17940           - Added missing attributes
17941           - Implemented DoubleClickEvent
17942         * ThreadExceptionDialog.cs: Enabled TextBox code
17943
17944 2005-01-18  Peter Bartok  <pbartok@novell.com>
17945
17946         * Form.cs: Removed debug output
17947         * Button.cs: Added support for DoubleClick method
17948
17949 2005-01-18  Peter Bartok  <pbartok@novell.com>
17950
17951         * Form.cs:
17952           - Added method to parent window that allows triggering size
17953             calculations when a menu is added/removed
17954           - set_Menu: Cleaned up mess from early days of Form and Control,
17955             now properly triggers a recalc when a menu is added/removed
17956           - Added case to select form itself as focused form if no child
17957             controls exist
17958           - Added PerformLayout call when showing dialog, to ensure properly
17959             placed controls
17960         * Control.cs:
17961           - Select(): Made internal so Form can access it
17962           - Focus(): Only call Xplat layer if required (avoids loop), and sets
17963             status
17964         * Application.cs (Run): Removed hack and calls PerformLayout instead
17965           to trigger calculation when Form becomes visible
17966
17967 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
17968
17969         * ComboBox.cs: fixes for ownerdraw
17970
17971 2005-01-18  Peter Bartok  <pbartok@novell.com>
17972
17973         * TextControl.cs:
17974           - Sentinel is no longer static, each Document gets it's own, this
17975             avoids locking or alternatively overwrite problems when more
17976             than one text control is used simultaneously.
17977           - Switched to use Hilight and HilightText brushes for text selection
17978
17979         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
17980
17981 2005-01-18  Peter Bartok  <pbartok@novell.com>
17982
17983         * Control.cs:
17984           - Hooked up the following events:
17985                 o ControlAdded
17986                 o ControlRemoved
17987                 o HandleDestroyed
17988                 o ImeModeChanged
17989                 o ParentChanged
17990                 o TabStopChanged
17991                 o Invalidated
17992                 o SystemColorsChanged
17993                 o ParentFontChanged
17994                 o Move
17995           - Removed debug output
17996           - Added a call to the current theme's ResetDefaults when a color change
17997             is detected
17998         * Form.cs: Now setting the proper ImeMode
17999         * Theme.cs: Defined a method to force recreation of cached resources
18000           and rereading of system defaults (ResetDefaults())
18001         * ThemeWin32Classic.cs: Added ResetDefaults() stub
18002
18003 2005-01-17  Peter Bartok  <pbartok@novell.com>
18004
18005         * Control.cs: Added missing attributes
18006
18007 2005-01-17  Jackson Harper  <jackson@ximian.com>
18008
18009         * TreeNode.cs: Implement editing. Add missing properties selected
18010         and visible.
18011         * TreeView.cs: Implement node editing. Also some fixes to use
18012         Invalidate (invalid area) instead of Refresh when selecting.
18013
18014 2005-01-17  Peter Bartok  <pbartok@novell.com>
18015
18016         * Control.cs:
18017           - Implemented InvokeGotFocus() method
18018           - Implemented InvokeLostFocus() method
18019           - Implemented InvokePaint() method
18020           - Implemented InvokePaintBackground() method
18021           - Implemented InvokeClick() method
18022           - Implemented FindForm() method
18023           - Implemented RectangleToClient() method
18024           - Implemented ClientToRectangle() method
18025           - Implemented ResetBackColor() method
18026           - Implemented ResetCursor() method
18027           - Implemented ResetFont() method
18028           - Implemented ResteForeColor() method
18029           - Implemented ResetImeMode() method
18030           - Implemented ResetLeftToRight() method
18031           - Implemented ResetText() method
18032           - Implemented Scale() methods
18033           - Implemented ScaleCore() method
18034           - Implemented Update() method
18035           - Removed unused variables
18036           - Stubbed AccessibilityNotifyClients and
18037             ControlAccessibleObject.NotifyClients() methods (dunno what to do
18038             with those yet)
18039           - Now setting proper default for RightToLeft property
18040           - Fixed bug in SetClientSizeCore that would cause windows to get
18041             really big
18042           - Now sending Click/DoubleClick events
18043           - Now selecting controls when left mouse button is clicked on
18044             selectable control
18045         * AccessibleEvents.cs: Added
18046         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
18047         * XplatUIOSX.cs: Stubbed UpdateWindow() method
18048         * XplatUIWin32.cs: Implemented UpdateWindow() method
18049         * XplatUIX11.cs: Implemented UpdateWindow() method
18050         * Form.cs: Removed stray semicolon causing CS0162 warning
18051         * ThemeWin32Classic.cs: Fixed unused variable warnings
18052         * ScrollableControl.cs: Now calls base method for ScaleCore
18053         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
18054           style to avoid interference with internal click handler (which is
18055           different than standard Control click handling)
18056         * RadioButton.cs:
18057           - Now unchecks all sibling radio buttons when control is
18058             selected (Fixes #68756)
18059           - Removed internal tabstop variable, using the one inherited from
18060             Control
18061
18062 2005-01-17  Jackson Harper  <jackson@ximian.com>
18063
18064         * NavigateEventArgs.cs: Fix base type.
18065         * LinkLabel.cs: Sig fix
18066         
18067 2005-01-17  Jackson Harper  <jackson@ximian.com>
18068
18069         * TreeView.cs: Only invalidate the effected nodes bounds when
18070         selecting nodes.
18071
18072 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18073
18074         * XplatUIWin32.cs: fixes Win32 marshaling
18075         * XplatUIX11.cs: fixes method signature
18076
18077 2005-01-17  Peter Bartok  <pbartok@novell.com>
18078
18079         * XplatUIX11.cs: Clean up resources when we no longer need them
18080
18081 2005-01-17  Peter Bartok  <pbartok@novell.com>
18082
18083         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
18084           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
18085           and DestroyCursor() methods.
18086         * Cursor.cs: Partially implemented, now supports standard cursors;
18087           still contains some debug code
18088         * Cursors.cs: Implemented class
18089         * Control.cs:
18090           - WndProc(): Added handling of WM_SETCURSOR message, setting the
18091             appropriate cursor
18092           - Implemented Cursor property
18093           - Replaced break; with return; more straightforwar and possibly
18094             faster
18095           - Now properly setting the result for WM_HELP
18096         * X11Structs.cs: Added CursorFontShape enum
18097         * XplatUIStructs.cs:
18098           - Added StdCursor enum (to support DefineStdCursor() method)
18099           - Added HitTest enum (to support sending WM_SETCURSOR message)
18100         * XplatUIX11.cs:
18101           - Now sends the WM_SETCURSOR message
18102           - Implemented new cursor methods
18103         * XplatUIOSX.cs: Stubbed new cursor methods
18104         * XplatUIWin32.cs:
18105           - Implemented new cursor methods
18106           - Added GetSystemMetrics function and associated enumeration
18107
18108 2005-01-15  Peter Bartok  <pbartok@novell.com>
18109
18110         * Control.cs:
18111           - WndProc(): Now handles EnableNotifyMessage
18112           - SelectNextControl(): Fixed bug where if no child or sibling
18113             controls exist we looped endlessly
18114
18115 2005-01-14  Jackson Harper  <jackson@ximian.com>
18116
18117         * TreeView.cs: Recalculate the tab pages when a new one is added
18118         so that the proper bounding rects are created.
18119
18120 2005-01-14  Jackson Harper  <jackson@ximian.com>
18121
18122         * TreeView.cs: Draw a gray box instead of a grip in the lower
18123         right hand corner when there are both horizontal and vertical
18124         scroll bars.
18125
18126 2005-01-14  Jackson Harper  <jackson@ximian.com>
18127
18128         * Control.cs: When erasing backgrounds use FromHwnd instead of
18129         FromHdc when there is a NULL wparam. This occurs on the X driver.
18130         * XplatUIX11.cs: Set the wparam to NULL.
18131
18132 2005-01-13  Jackson Harper  <jackson@ximian.com>
18133
18134         * PictureBox.cs: Implement missing methods (except ToString, need
18135         to test that on windows) and events. When visibility is changed we
18136         need to redraw the image because the buffers are killed. When size
18137         is changed refresh if the sizemode needs it.
18138
18139 2005-01-13  Peter Bartok  <pbartok@novell.com>
18140
18141         * Control.cs (SelectNextControl): Was using wrong method to select
18142           a control
18143
18144 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18145
18146         * ComboBox.cs: fixes dropstyle
18147
18148 2005-01-13  Peter Bartok  <pbartok@novell.com>
18149
18150         * Form.cs:
18151           - Implemented Select() override
18152           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
18153           - Now sets keyboard focus on startup
18154         * Control.cs (SelectNextControl): Now properly handles directed=true
18155         * TextBoxBase.cs:
18156           - WndProc: Now passes tab key on to base if AcceptTabChar=false
18157           - Added (really bad) focus rectangle (mostly for testing)
18158         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
18159           to enforce redraw on focus changes
18160         * ContainerControl.cs:
18161           - Fixed detection of Shift-Tab key presses
18162           - Fixed traversal with arrow keys
18163         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
18164           gonna keep this or if it's complete yet
18165         
18166 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
18167
18168         * ComboBox.cs: missing properties, fixes
18169
18170 2005-01-13  Peter Bartok  <pbartok@novell.com>
18171
18172         * Panel.cs (ctor): Setting Selectable window style to off
18173         * Splitter.cs (ctor): Setting Selectable window style to off
18174         * GroupBox.cs (ctor): Setting Selectable window style to off
18175         * Label.cs (ctor): Setting Selectable window style to off
18176
18177 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
18178
18179         * UpDownBase.cs (InitTimer): If the timer has been already
18180         created, enable it.
18181
18182         Use a TextBox instead of a Label.
18183
18184 2005-01-12  Jackson Harper  <jackson@ximian.com>
18185
18186         * TreeView.cs: Refresh the tree after sorting the nodes. Always
18187         draw the connecting node lines (when ShowLines is true).
18188         * TreeNode.cs: The nodes index can now be updated. This is used
18189         when a node collection is sorted.
18190         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
18191         insert or an existing unsorted node collection can be sorted.
18192         
18193 2005-01-12  Peter Bartok  <pbartok@novell.com>
18194
18195         * ContainerControl.cs: Implemented ProcessDialogKeys()
18196
18197 2005-01-12  Peter Bartok  <pbartok@novell.com>
18198
18199         * Control.cs:
18200           - Implemented SelectNextControl() method
18201           - Several focus related bug fixes
18202           - Fixed Docking calculations to match MS documentation and
18203             behaviour
18204
18205 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
18206
18207         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
18208         bug fixes
18209
18210 2005-01-12  Peter Bartok  <pbartok@novell.com>
18211
18212         * Control.cs:
18213           - Fixed broken Contains() method
18214           - Implemented GetNextControl() method. Finally. This is the pre-
18215             requisite for focus handling.
18216
18217 2005-01-12  Peter Bartok  <pbartok@novell.com>
18218
18219         * OSXStrucs.cs: Added
18220
18221 2005-01-12  Peter Bartok  <pbartok@novell.com>
18222
18223         * XplatUIWin32.cs:
18224           - Removed PeekMessageFlags
18225           - Implemented SetWindowStyle() method
18226         * XplatUIStructs.cs: Added PeekMessageFlags
18227         * X11Structs: Added missing border_width field to XWindowChanges struct
18228         * XplatUIX11.cs:
18229           - PeekMessage: Now throws exception if flags which are not yet
18230             supported are passed
18231           - Implemented SetWindowStyle() method
18232           - Fixed SetZOrder to handle AfterHwnd properly
18233         * XplatUI.cs: Added SetWindowStyle() method
18234         * XplatUIDriver.cs: Added SetWindowStyle() abstract
18235         * Control.cs:
18236           - Implemented UpdateStyles() method
18237           - Implemented UpdateZOrder() method
18238         * XplatUIOSX.cs: Added SetWindowStyle() stub
18239
18240 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
18241
18242         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
18243         button mouse).
18244
18245
18246 2005-01-11  Jackson Harper  <jackson@ximian.com>
18247
18248         * TreeView.cs: Still need to draw lines to siblings even if out of
18249         the current node is out of the clip.
18250
18251 2005-01-11  Jackson Harper  <jackson@ximian.com>
18252
18253         * TreeView.cs: When setting the hbar/vbar/grip position use
18254         SetBounds so that perform layout is only called once. Also suspend
18255         and resume layout so layout is only done once for all controls.
18256         - Removed some debug fluff
18257         * SizeGrip.cs: Call base implmentation in overriding methods.
18258         - When visibility is changed the drawing buffers are killed so we
18259         need to redraw.
18260
18261 2005-01-11  Jackson Harper  <jackson@ximian.com>
18262
18263         * TreeView.cs: Calculate the open node count while drawing. This
18264         saves us an entire tree traversal for every paint operation. Use
18265         a member var for the open node count so less vars are passed around.
18266
18267 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
18268
18269         * MonthCalendar.cs:
18270         - fixed selection to use mousemove, not mouse polling on timer
18271         * ThemeWin32Classic.cs
18272         - removed redundant unused variable "no_more_content"
18273         
18274 2005-01-11  Peter Bartok  <pbartok@novell.com>
18275
18276         * XplatUIX11.cs (DoEvents): Needs to return when no more events
18277           are pending, so it now calls PeekMessage instead of GetMessage;
18278           implemented a incomplete version of PeekMessage
18279         
18280 2005-01-11  Peter Bartok  <pbartok@novell.com>
18281
18282         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
18283           I18n issues
18284         * TextBoxBase.cs: Added sending of TextChanged event
18285
18286 2005-01-10  Jackson Harper  <jackson@ximian.com>
18287
18288         * TreeView.cs: Try not to draw outside the clipping rectangle on
18289         each node element.
18290
18291 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
18292
18293         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
18294
18295 2005-01-10  Jackson Harper  <jackson@ximian.com>
18296
18297         * TreeView.cs:
18298         - Implement fast scrolling. Now only the newly
18299         exposed nodes are drawn and the old image is moved using the
18300         XplatUI::ScrollWindow method.
18301         - Factor in height of nodes when calculating whether or not the
18302         node is in the clipping rect.
18303
18304 2005-01-10  Jackson Harper  <jackson@ximian.com>
18305
18306         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
18307
18308 2005-01-10  Peter Bartok  <pbartok@novell.com>
18309
18310         * Application.cs: Added temporary hack to resolve all our resize
18311           required issues on startup. This will get fixed properly at
18312           some point in the future
18313
18314 2005-01-10  Jackson Harper  <jackson@ximian.com>
18315
18316         * SizeGrip.cs: New internal class that is used as a sizing
18317         grip control...hence the name.
18318
18319 2005-01-10  Peter Bartok  <pbartok@novell.com>
18320
18321         * Control.cs: Implemented proper TabIndex handling, now assigning
18322           a tabindex when a control is added to a container
18323         * GroupBox.cs (ctor): Now sets the Container style bit, required
18324           for Control.GetNextControl()
18325
18326 2005-01-09  Jackson Harper  <jackson@ximian.com>
18327
18328         * TextBoxBase.cs: Clear window when scrolling (fixes build).
18329
18330 2005-01-09  Peter Bartok <pbartok@novell.com>
18331
18332         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
18333           XplatUIX11.cs: Added ability to control ScrollWindow expose and
18334           an overload for ScrollWindow to allow only scrolling a rectangle
18335
18336 2005-01-09  Peter Bartok <pbartok@novell.com>
18337
18338         * Form.cs:
18339           - Implemented SetDesktopBounds method
18340           - Implemented SetDesktopLocation method
18341
18342 2005-01-08  Jackson Harper  <jackson@ximian.com>
18343
18344         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
18345         the node count has changed, this removes to VScroll::Refresh calls
18346         when drawing.
18347
18348 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
18349
18350         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
18351
18352 2005-01-07  Jackson Harper  <jackson@ximian.com>
18353
18354         * TreeNode.cs: Just update the single node when it is
18355         checked. Don't refresh after toggling, the Expand/Collapse already
18356         handles this.
18357         * TreeView.cs: Respect clipping a little more when drawing. Try
18358         not to redraw things that don't need to be redrawn. Just hide the
18359         scrollbars when they are no longer needed instead of removing
18360         them, so they don't have to be created again and again.
18361         
18362 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
18363
18364         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
18365         coordinates to window space to place the caret properly, FIXED.
18366         Implement GetWindowState & SetWindowState
18367
18368 2005-01-06  Peter Bartok <pbartok@novell.com>
18369
18370         * Form.cs:
18371           - Implemented ClientSize property
18372           - Implemented DesktopBounds property
18373           - Implemented DesktopLocation property
18374           - Implemented IsRestrictedWindow property
18375           - Implemented Size property
18376           - Implemented TopLevel property
18377           - Implemented FormWindowState property
18378         * Control.cs:
18379           - Implemented GetTopLevel() method
18380           - Implemented SetTopLevel() method
18381         * X11Structs.cs (Atom):
18382           - Added AnyPropertyType definition
18383           - Added MapState definiton and updated XWindowAttribute struct
18384         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
18385         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
18386         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
18387         * XplatUIWin32.cs:
18388           - Implemented GetWindowState() and SetWindowState() methods
18389           - Fixed Win32GetWindowLong return type
18390         * XplatUIX11.cs:
18391           - Introduced central function for sending NET_WM messages
18392           - Implemented GetWindowState() and SetWindowState() methods
18393         * TextBoxBase.cs (set_Lines):
18394           - Now uses Foreground color for text added via Text property (Duh!)
18395           - Added code to remember programmatically requested size (fixes
18396             behaviour when Multiline is set after Size)
18397           - Added AutoSize logic
18398
18399 2005-01-06  Jackson Harper  <jackson@ximian.com>
18400
18401         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
18402
18403 2005-01-06  Jackson Harper  <jackson@ximian.com>
18404
18405         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
18406         set to less then 0.
18407
18408 2005-01-06  Jackson Harper  <jackson@ximian.com>
18409
18410         * ScrollableControl.cs: Lazy init the scrollbars.
18411         
18412 2005-01-06  Jackson Harper  <jackson@ximian.com>
18413
18414         * Theme.cs: Speed up getting pens and solid brushes, by using
18415         their ARGB as a hash instead of tostring and not calling Contains.
18416
18417 2005-01-06  Peter Bartok <pbartok@novell.com>
18418
18419         * Form.cs:
18420           - Implemented OnActivated and OnDeactivate event trigger
18421           - Implemented Activate() method
18422           - Fixed ShowDialog() to activate the form that was active before
18423             the dialog was shown
18424         * XplatUIX11.cs:
18425           - Added global active_window var that tracks the currently active
18426             X11 window
18427           - Now always grabs Property changes from the root window to always
18428             catch changes on the active window property
18429           - Added code to PropertyNotify handler to send Active/Inactive
18430             messages when state changes. This puts X11 and Win32 en par on
18431             WM_ACTIVATE notifications (except for double notifications when
18432             the user clicks away from our modal window to another one of our
18433             windows)
18434
18435 2005-01-05  Jackson Harper  <jackson@ximian.com>
18436
18437         * ImageList.cs: Implment ctor
18438
18439 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18440
18441         * XplatUIOSX.cs: Implement Activate/SetTopmost
18442
18443 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18444
18445         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
18446
18447 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18448
18449         * XplatUIOSX.cs: Implement GetActive/SetFocus.
18450
18451 2005-01-05  Peter Bartok <pbartok@novell.com>
18452
18453         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
18454           XplatUIOSX.cs: Added GetActive method to return the currently
18455           active window for the application (or null, if none is active)
18456         * Form.cs:
18457           - Implemented ActiveForm
18458           - Commented out owner assignment for modal dialogs (causes problems
18459             on Win32, since the owner will be disabled)
18460           - Reworked some Active/Focus handling (still incomplete)
18461         * CommonDialog.cs: Commented out owner assignment for modal dialogs
18462           (causes problems on Win32, since the owner will be disabled)
18463         * IWin32Window: Added ComVisible attribute
18464
18465 2005-01-05  Peter Bartok <pbartok@novell.com>
18466
18467         * ToolTip.cs (WndProc): Enable setting focus now that we have the
18468           required XplatUI functions.
18469
18470 2005-01-05  Peter Bartok <pbartok@novell.com>
18471
18472         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
18473           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
18474           to implement focus and activation handling; still incomplete and
18475           with debug output
18476
18477 2005-01-04  Peter Bartok <pbartok@novell.com>
18478
18479         * TextBoxBase.cs: Changed access level for Document property to
18480           match switch to internal for TextControl
18481
18482 2005-01-04  Peter Bartok <pbartok@novell.com>
18483
18484         * AccessibleObject: Added ComVisible attribute
18485
18486 2005-01-04  Jackson Harper  <jackson@ximian.com>
18487
18488         * X11Keyboard.cs: Remove unneeded var.
18489
18490 2005-01-04  Jackson Harper  <jackson@ximian.com>
18491
18492         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
18493         but PAINT.
18494         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
18495         ClientMessage. This makes apps exit cleanly (more often).
18496         
18497 2005-01-04  Jackson Harper  <jackson@ximian.com>
18498
18499         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
18500         handling focus, return correct colors and fonts,
18501         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
18502         handle selection, horizontal scrolling, and mouse interaction.
18503
18504 2005-01-04  Peter Bartok <pbartok@novell.com>
18505
18506         * ICommandExecutor.cs: Added
18507         * IDataGridColumnStyleEditingNotificationService.cs: Added
18508         * IFeatureSupport.cs: Added
18509         * IFileReaderService.cs: Added
18510         * IDataObject.cs: Added ComVisible attribute
18511         * AmbientProperties.cs: Added
18512         * BaseCollection.cs: Added missing attributes
18513         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
18514         * BaseCollection.cs: Added missing attributes
18515         * Binding.cs: Added TypeConverter attribute
18516         * BindingContext.cs: Added DefaultEvent attribute
18517         * BindingsCollection.cs: Added DefaultEvent attribute
18518         * Button.cs: Added DefaultValue attribute
18519         * DragEventArgs.cs: Added ComVisible attribute
18520         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
18521         * KeyEventArgs.cs: Added ComVisible attribute
18522         * KeyPressEventArgs.cs: Added ComVisible attribute
18523         * MouseEventArgs.cs: Added ComVisible attribute
18524         * NavigateEventArgs.cs: Added
18525         * NavigateEventHandler.cs: Added
18526         * FeatureSupport.cs: Added
18527         * OSFeature.cs: Added
18528         * Theme.cs: Added abstract Version property to support OSFeature
18529         * ThemeWin32Classic.cs: Added Version property to
18530           support OSFeature.Themes
18531         * ProgressBar.cs: Removed OnPaintBackground override, not required since
18532           the proper styles to avoid background drawing are set, also doesn't
18533           match MS signature
18534         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
18535         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
18536         * ScrollEventArgs.cs: Added ComVisible attribute
18537         * SplitterEventArgs.cs: Added ComVisible attribute
18538         * AccessibleSelection.cs: Added Flags attribute
18539         * Appearance.cs: Added ComVisible attribute
18540         * Border3DSide.cs: Added ComVisible attribute
18541         * Border3DStyle.cs: Added ComVisible attribute
18542         * BorderStyle.cs: Added ComVisible attribute
18543         * DragAction.cs: Added ComVisible attribute
18544         * ErrorBlinkStyle.cs: Added
18545         * ScrollEventType.cs: Added ComVisible attribute
18546         * AnchorStyles.cs: Added Editor attribute
18547         * DockStyle.cs: Added Editor attribute
18548         * HorizontalAlignment.cs: Added ComVisible attribute
18549         * HelpEventArgs.cs: Added ComVisible attribute
18550         * PaintEventArgs.cs: Added IDisposable
18551
18552 2005-01-04  Peter Bartok <pbartok@novell.com>
18553
18554         * TextControl.cs: Switched Line, LineTag and Document classes to
18555           internal
18556
18557 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
18558
18559         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
18560         Simple mode, fixes, IntegralHeight, etc.
18561
18562 2005-01-04  Peter Bartok <pbartok@novell.com>
18563
18564         * TextBoxBase.cs: Using proper font variable now
18565
18566 2005-01-04  Peter Bartok <pbartok@novell.com>
18567
18568         * Form.cs (ShowDialog): Set parent to owner, if provided
18569         * GroupBox.cs: Removed unused vars
18570         * TextControl.cs:
18571           - Added GetHashCode() for Document and LineTag classes
18572           - Removed unused variables
18573           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
18574             to allow translation between continuous char position and line/pos
18575         * CheckBox.cs: Removed vars that are provided by base class
18576         * RadioButton.cs: Removed vars that are provided by base class, added
18577           new keyword where required
18578         * LinkLabel.cs: Added new keyword where required
18579         * Control.cs (WndProc): Removed unused variable
18580         * TextBoxBase.cs:
18581           - Finished SelectionLength property
18582           - Implemented SelectionStart property
18583           - Implemented Text property
18584           - Removed unused vars
18585         * MessageBox.cs: Added new keyword where required
18586         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
18587           WndProc signature
18588         * MenuAPI.cs: Added new keyword where required
18589         * ButtonBase.cs: Removed vars that are provided by base class, added
18590           new keyword where required
18591         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
18592           argument to double, to allow compiling with csc 2.0 (Atsushi ran
18593           into this)
18594         * Application.cs (Run): Now triggers the ThreadExit event
18595         * CommonDialog.cs: Added new keyword where required; now properly sets
18596           parent (owner) for dialog
18597         * XplatUIX11.cs: Commented out unused vars
18598         * StatusBar.cs: Fixed signature for Text property
18599         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
18600
18601 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
18602
18603         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
18604         TrackBar.cs, MonthCalendar.cs: remove unused vars
18605
18606 2005-01-03  Jackson Harper  <jackson@ximian.com>
18607
18608         * ThemeWin32Classic.cs:
18609         * X11Keyboard.cs: Remove unused vars.
18610
18611 2005-01-03  Peter Bartok  <pbartok@novell.com>
18612
18613         * TextBox.cs:
18614           - set_Text: Tied into TextControl
18615           - set_TextAlignment: Tied into TextControl
18616         * TextControl.cs:
18617           - Added alignment properties and implemented alignment handling
18618             and drawing (still has a bug, not generating proper expose events)
18619           - Added new Line() constructor to allow passing the line alignment
18620           - Fixed selection setting, properly handling end<start now
18621           - Added aligment considerations to RecalculateDocument()
18622         * TextBoxBase.cs:
18623           - Now properly enforces control height for single line controls
18624           - Added support for CharacterCasing
18625           - Added IsInputKey override
18626           - Fixed Keys.Enter logic
18627           - Added SetBoundsCore override
18628           - Fixed mouse selection handling
18629
18630 2005-01-03  Jackson Harper  <jackson@ximian.com>
18631
18632         * TreeView.cs:
18633           - Collapse and uncheck all nodes when CheckBoxes is disabled.
18634           - Checkboxes are always aligned to the bottom of the node,
18635           regardless of item height.
18636           - Use the node bounds to draw the text so we can center it when
18637           the item height is greater then the font height.
18638           - Node::Bounds are only the text part of the node.
18639         * TreeNode.cs: New method to combine collapsing and unchecking all
18640           nodes recursively.
18641
18642 2005-01-02  Jackson Harper  <jackson@ximian.com>
18643
18644         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
18645         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
18646         tree when a check is changed. TODO: Only refresh the checked node.
18647
18648 2004-12-30  Jackson Harper  <jackson@ximian.com>
18649
18650         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
18651         * TreeNode.cs: When collapsing make sure to never collapse the
18652         root node.
18653
18654 2004-12-29  Jackson Harper  <jackson@ximian.com>
18655
18656         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
18657         
18658 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
18659
18660         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
18661
18662 2004-12-28  Peter Bartok  <pbartok@novell.com>
18663
18664         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
18665           not yet assigned
18666
18667 2004-12-28  Peter Bartok  <pbartok@novell.com>
18668
18669         * Control.cs (WndProc): Added WM_HELP handler, now generates
18670           HelpRequested event
18671         * Form.cs: Added HelpButton property and required support code
18672         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
18673
18674 2004-12-28  Peter Bartok  <pbartok@novell.com>
18675
18676         * CommonDialog.cs:
18677           - Made DialogForm.owner variable internal
18678           - Added check to ensure owner form is set before setting
18679             owner properties in CreateParams
18680
18681 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
18682
18683         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
18684           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
18685           GetCursorPos.  Fix major visibility issues.  Rework the windowing
18686           system to support borderless/titleless windows (implements menus).
18687           Fix GetWindowPos.  Implement initial background color support for
18688           views.
18689
18690 2004-12-28  Peter Bartok  <pbartok@novell.com>
18691
18692         * Form.cs (get_CreateParams): Make sure we have an owner before using
18693           the owner variable. Implement proper default if no owner exists
18694
18695 2004-12-28  Peter Bartok  <pbartok@novell.com>
18696
18697         * In preparation for making Managed.Windows.Forms the default build target
18698           for System.Windows.Forms, the following stubbed files were added.
18699           Dialogs are currently being implemented by contributors and are only
18700           short-term place holders.
18701         * ColorDialog.cs: Initial check-in (minmal stub)
18702         * DataGrid.cs: Initial check-in (minimal stub)
18703         * DataGridLineStyle.cs: Initial check-in (minimal stub)
18704         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
18705         * DataGridTableStyle.cs: Initial check-in (minimal stub)
18706         * FontDialog.cs: Initial check-in (minimal stub)
18707         * FileDialog.cs: Initial check-in (minimal stub)
18708         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
18709         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
18710         * OpenFileDialog: Initial check-in (minimal stub)
18711         * IComponentEditorPageSite.cs: Initial check-in
18712         * Splitter.cs: Initial check-in (for Jackson)
18713         * SplitterEventArgs.cs: Initial check-in (for Jackson)
18714         * SplitterEventHandler.cs: Initial check-in (for Jackson)
18715         * TextBox.cs: Initial check-in; still needs some wiring to
18716           TextControl backend
18717         * Form.cs: Implemented ControlBox property
18718         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
18719         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
18720         * TextControl.cs: Added selection functionality; added todo header
18721         * TextBoxBase.cs:
18722           - Implemented Lines property
18723           - Implemented TextHeight property
18724           - Implemented SelectedText property
18725           - Implemented SelectionLength property
18726           - Implemented SelectAll method
18727           - Implemented ToString method
18728           - Removed and cleaned up some debug code
18729           - Implemented (still buggy) mouse text selection
18730
18731 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
18732
18733         * ComboBox.cs: Complete DropDownList implementation, fixes.
18734
18735 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
18736
18737         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
18738         * ComboBoxStyle.cs: ComboBoxStyle enum
18739         * ComboBox.cs: Initial work on ComboBox control
18740
18741 2004-12-21  Peter Bartok  <pbartok@novell.com>
18742
18743         * Control.cs (ctor, CreateParams): Moved setting of is_visible
18744           forward so that anything that creates a window gets the default,
18745           also no longer uses Visible property in CreateParams to avoid
18746           walking up the parent chain and possibly get the wrong visible
18747           status. Fixed IsVisible to no longer walk up to the parent.
18748
18749 2004-12-21  Peter Bartok  <pbartok@novell.com>
18750
18751         * Form.cs (ShowDialog): Unset modality for the proper window
18752  
18753 2004-12-20  Peter Bartok  <pbartok@novell.com>
18754
18755         * CommonDialog.cs: Initial check-in
18756
18757 2004-12-20  Peter Bartok  <pbartok@novell.com>
18758
18759         * Control.cs (Visible): Now uses the parent window instead of the
18760           client area window for the property
18761
18762         * Form.cs
18763           - ShowDialog(): Now uses the proper window for modality
18764           - The default visibility state for the form parent is now false. This
18765             will prevent the user from seeing all the changes to the form and
18766             its controls before the application hits Application.Run()
18767           - Removed some stale commented out code
18768
18769         * NativeWindow.cs:
18770           - Added FindWindow() method to have a method to check for existence
18771             of a window handle
18772           - Added ability to override default exception handling (for example
18773             when debugging with VS.Net; to do this the ExternalExceptionHandler
18774             define must be set
18775           - Removed some useless debug output
18776
18777         * XplatUIX11.cs:
18778           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
18779             not working as expected
18780           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
18781             property to allow switching back to the modal window if focus is
18782             given to another one of our windows (Application Modal)
18783           - Now only sets override_redirect if we create a window
18784             without WS_CAPTION
18785           - Moved EventMask selection before mapping of newly created window
18786             so we can catch the map event as well
18787           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
18788           - Added various Atom related DllImports
18789           - Implemented Exit() method
18790           - .ctor() : No longer shows window if WS_VISIBLE is not defined
18791             in the CreateParams
18792
18793         * MessageBox.cs: Now properly deals with the FormParent window by
18794           providing an override the FormParent CreateParams property to
18795           set as POPUP instead of OVERLAPPED window.
18796
18797 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18798
18799         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
18800         Minor code cleanup.
18801
18802 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18803         
18804         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
18805
18806 2004-12-18  Peter Bartok  <pbartok@novell.com>
18807
18808         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
18809           implementing SetModal() method
18810
18811 2004-12-18  Peter Bartok  <pbartok@novell.com>
18812
18813         * X11Structs.cs (XGCValues): Fixed type of function element
18814         * XplatUI.cs: Added ScrollWindow() method
18815         * XplatUIDriver.cs: Added ScrollWindow() abstract
18816         * XplatUIWin32.cs: Implemented ScrollWindow() method
18817         * XplatUIX11.cs: Implemented ScrollWindow() method
18818         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
18819
18820 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18821
18822         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
18823         Some more keyboard support (INCOMPLETE)
18824
18825 2004-12-17  Peter Bartok  <pbartok@novell.com>
18826
18827         * TextControl.cs:
18828         - Added color attribute to line tags.
18829         - Added color argument to all functions dealing with tags
18830         - Added color argument support to various functions
18831         - Fixed miss-calculation of baseline/shift in certain circumstances
18832
18833         * TextBoxBase.cs: Added new color option to test code
18834
18835 2004-12-17  Jackson Harper  <jackson@ximian.com>
18836
18837         * TreeNode.cs:
18838         * MonthCalendar.cs: Signature fixes
18839
18840 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18841
18842         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
18843         keyboard event moved it.  Create a new graphics context for each paint resolves this
18844
18845 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18846
18847         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
18848         Make caret exist and go blink blink.  Initial keyboard support.
18849         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
18850         works.
18851
18852 2004-12-17  Jackson Harper  <jackson@ximian.com>
18853
18854         * XplatUIStructs.cs: Updated set of virtual keycodes.
18855         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
18856
18857 2004-12-17  Jackson Harper  <jackson@ximian.com>
18858
18859         * XplatUIX11.cs: Prune old keyboard code.
18860
18861 2004-12-17  Jackson Harper  <jackson@ximian.com>
18862
18863         * XplatUIX11.cs: When generating mouse wparams get the modifier
18864         keys from the ModifierKeys property.
18865
18866 2004-12-17  Jackson Harper  <jackson@ximian.com>
18867
18868         * X11Keyboard.cs: Send up/down input when generating
18869         messages. Remove some unused vars.
18870
18871 2004-12-17  Jackson Harper  <jackson@ximian.com>
18872
18873         * TabControl.cs:
18874         * TreeView.cs: get rid of warnings.
18875
18876 2004-12-17  Jackson Harper  <jackson@ximian.com>
18877
18878         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
18879
18880 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
18881
18882         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
18883           CheckedListBox.cs: Implementation
18884
18885 2004-12-17  Peter Bartok  <pbartok@novell.com>
18886
18887         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
18888
18889 2004-12-16  Peter Bartok  <pbartok@novell.com>
18890
18891         * TextControl.cs:
18892           - InsertCharAtCaret(): Fixed start pos fixup
18893           - CaretLine_get: No longer derives the line from the tag, the tag
18894             could be stale if lines in the document have been added or deleted
18895           - RebalanceAfterDelete(): Fixed bug in balancing code
18896           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
18897           - Line.Streamline(): Now can also elminate leading empty tags
18898           - DumpTree(): Added a few more tests and prevented exception on
18899             uninitialized data
18900           - Added Debug section for Combining lines
18901           - Delete(): Now copies all remaining properties of a line
18902           
18903         * TextBoxBase.cs:
18904           - Left mousebutton now sets the caret (and middle button still acts
18905             as formatting tester, which must go away soon)
18906           - Added Debug section for Deleting/Combining lines
18907           - Fixed calculations for UpdateView after Combining lines
18908
18909 2004-12-16  Peter Bartok  <pbartok@novell.com>
18910
18911         * TextControl.cs: Now properly aligns text on a baseline, using the
18912           new XplatUI.GetFontMetrics() method. Simplified several calculations
18913         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
18914           defined
18915
18916 2004-12-16  Peter Bartok  <pbartok@novell.com>
18917
18918         * XplatUI.cs: Added GetFontMetrics() method
18919         * XplatUIDriver.cs: Added GetFontMetrics() abstract
18920         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
18921           into libgdiplus, our private GetFontMetrics function
18922         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
18923         * XplatUIWin32.cs: Implemented GetFontMetrics() method
18924
18925 2004-12-16  Jackson Harper  <jackson@ximain.com>
18926
18927         * XplatUIStruct.cs: Add enum for dead keys
18928         * X11Keyboard.cs: Map and unmap dead keys.
18929
18930 2004-12-16  Jackson Harper  <jackson@ximian.com>
18931
18932         * X11Keyboard.cs: Detect and use the num lock mask.
18933
18934 2004-12-16  Peter Bartok  <pbartok@novell.com>
18935
18936         * Control.cs (CreateGraphics): Added check to make sure the
18937           handle of the window exists before calling Graphics.FromHwnd()
18938
18939 2004-12-16  Peter Bartok  <pbartok@novell.com>
18940
18941         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
18942           contains a lot of code that's not supposed to be there for the
18943           real thing, but required for developing/testing the textbox
18944           backend.
18945
18946 2004-12-16  Peter Bartok  <pbartok@novell.com>
18947
18948         * TextControl.cs:
18949         - Fixed Streamline method
18950         - Added FindTag method to Line
18951         - Added DumpTree method for debugging
18952         - Added DecrementLines() method for deleting lines
18953         - Fixed UpdateView to update the cursor to end-of-line on single-line
18954           updates
18955         - Added PositionCaret() method
18956         - Fixed MoveCaret(LineDown) to move into the last line, too
18957         - Added InsertChar overload
18958         - Fixed InsertChar tag offset calculations
18959         - Added DeleteChar() method
18960         - Added Combine() method for folding lines
18961         - Fixed Delete() method, no longer allocates wasted Line object and
18962           now copies all properties when swapping nodes
18963         - Delete() method now updates document line counter
18964
18965 2004-12-15  Jackson Harper  <jackson@ximian.com>
18966
18967         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
18968         * X11Keyboard.cs: Expose the currently selected modifier keys
18969         through a property.
18970
18971 2004-12-15  Peter Bartok  <pbartok@novell.com>
18972
18973         * TextControl.cs: Initial check-in. Still incomplete
18974
18975 2004-12-15  Jackson Harper  <jackson@ximian.com>
18976
18977         * TreeNode.cs:
18978         * TreeView.cs: Fix build on csc (second time today ;-))
18979
18980 2004-12-15  Jackson Harper  <jackson@ximian.com>
18981
18982         * TreeView.cs: Store the treenodes plus/minus box bounds when it
18983         is calculated and use this for click testing.
18984         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
18985
18986 2004-12-15  Jackson Harper  <jackson@ximian.com>
18987
18988         * TreeView.cs: Pass the nodes image index to the image list when
18989         drawing that image.
18990
18991 2004-12-15  Jackson Harper  <jackson@ximian.com>
18992
18993         * X11Keyboard.cs: Set messages hwnd.
18994         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
18995         post_message calls.
18996
18997 2004-12-15  Jackson Harper  <jackson@ximian.com>
18998
18999         * X11Keyboard.cs: Fix to compile with csc.
19000         
19001 2004-12-15  Jackson Harper  <jackson@ximian.com>
19002
19003         * X11Structs.cs: Add key mask values
19004         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
19005         * X11Keyboard.cs: New file - Extrapolates and interpolates key
19006         down/up foo into WM_CHAR foo
19007         * KeyboardLayouts.cs: Common keyboard layouts
19008         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
19009         post messages into the main queue.
19010
19011 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
19012
19013         * Button.cs: implement ProcessMnemonic
19014         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
19015           brushes everytime
19016         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
19017         * ButtonBase.cs: Show HotkeyPrefix (not the &)
19018
19019 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
19020         
19021         * MonthCalendar.cs: Implemented click-hold for next/previous month
19022           and date selection
19023           
19024 2004-12-11  Peter Bartok  <pbartok@novell.com>
19025
19026         * X11Structs.cs:
19027           - Added XKeyboardState (moved from XplatUIX11.cs)
19028           - Added XCreateGC related enums and structures
19029           - Added GXFunction for XSetFunction
19030
19031         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
19032
19033         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
19034           CaretVisible() calls
19035
19036         * ToolTip.cs: Added code to prevent stealing focus from app windows
19037
19038         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
19039           DestroyCaret, SetCaretPos and CaretVisible)
19040
19041         * XplatUIX11.cs:
19042           - Added implementation for caret functions
19043           - Moved hover variables into a struct, to make it a bit easier
19044             on the eyes and to debug
19045           - Removed XKeyboardState (moved to XplatUIX11.cs)
19046           - Moved Keyboard properties into the properties region
19047
19048         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
19049           call to get a graphics context for our control
19050
19051         * XplatUIOSX.cs: Added empty overrides for the new caret functions
19052
19053         * TreeView.cs: Fixed bug. No matter what color was set it would always
19054           return SystemColors.Window
19055
19056         * XplatUIWin32.cs: Implemented caret overrides
19057
19058 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
19059
19060         * ListBox.cs: fire events, implement missing methods and properties,
19061         sorting.
19062
19063 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
19064
19065         * MonthCalendar.cs: invalidation bug fixing
19066         * ThemeWin32Classic.cs: paint fixing
19067
19068 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
19069
19070         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
19071         prepare the CGContextRef there now.
19072
19073 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
19074
19075         * MonthCalendar.cs:
19076           - optimisationL only invalidate areas that have changed
19077         * ThemeWin32Classic.cs:
19078           - only paint parts that intersect with clip_area
19079
19080 2004-12-09  Peter Bartok  <pbartok@novell.com>
19081
19082         * Application.cs: Undid changes from r37004 which cause problems
19083         on X11
19084
19085 2004-12-09  Ravindra  <rkumar@novell.com>
19086
19087         * ToolBar.cs: Added support for displaying ContextMenu
19088         attached to a button on ToolBar.
19089         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
19090         property.
19091
19092 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
19093
19094         * Label.cs: autosize works in text change and removes unnecessary
19095         invalidate
19096
19097 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
19098
19099         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
19100         remove warnings
19101
19102 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
19103
19104         * XplatUIOSX.cs: Added mouse move/click/grab support
19105         Remove some debugging WriteLines not needed anymore.
19106         Add window resizing/positioning.
19107         Fix visibility on reparenting.
19108
19109 2004-12-08  Peter Bartok  <pbartok@novell.com>
19110
19111         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
19112
19113 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
19114
19115         * XplatUIOSX.cs: Initial checkin
19116         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
19117
19118 2004-12-03  Ravindra <rkumar@novell.com>
19119
19120         * ListView.cs: Added some keybindings and fixed scrolling.
19121         ScrollBars listen to ValueChanged event instead of Scroll
19122         Event. This would let us take care of all changes being
19123         done in the scrollbars' values programmatically or manually.
19124         * ListView.cs (CanMultiselect): Added a check for shift key.
19125         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
19126         * ListViewItem.cs (Clone): Fixed. We need to make a copy
19127         of ListViewSubItemCollection as well.
19128
19129 2004-12-06  Peter Bartok <pbartok@novell.com>
19130
19131         * Control.cs (Parent): Added check and exception to prevent
19132         circular parenting
19133
19134 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
19135
19136         * ListBox.cs: implemented clipping, selection single and multiple,
19137         bug fixing
19138
19139 2004-12-03  Ravindra <rkumar@novell.com>
19140
19141         * ListView.cs (ListView_KeyDown):
19142         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
19143         when CTRL key is pressed.
19144         * ListViewItem.cs (Selected): Fixed setting the property.
19145
19146 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
19147
19148         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
19149
19150         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
19151         MinimizeBox, ShowInTaskbar, TopMost properties.
19152
19153         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
19154         will be implemented).
19155
19156 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
19157
19158         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
19159
19160         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
19161         tests.
19162         
19163         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
19164         
19165         * TreeView.cs: BackColor is Colors.Window.
19166
19167 2004-12-01  Jackson Harper  <jackson@ximian.com>
19168
19169         * TreeView.cs: When resizing the tree if the user is making it
19170         smaller we don't get expose events, so we need to handle adding
19171         the horizontal scrollbar in the size changed handler as well as
19172         the expose handler.
19173
19174 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
19175
19176         * DrawItemState.cs: fixes wrong enum values
19177
19178 2004-12-01  Jackson Harper  <jackson@ximian.com>
19179
19180         * TreeView.cs: Resize the hbar as well as the vbar on resize.
19181
19182 2004-12-01  Jackson Harper  <jackson@ximian.com>
19183
19184         * NodeLabelEditEventArgs.cs:
19185         * NodeLabelEditEventHandler.cs:
19186         * OpenTreeNodeEnumerator.cs:
19187         * TreeNode.cs:
19188         * TreeNodeCollection.cs:
19189         * TreeView.cs:
19190         * TreeViewAction.cs:
19191         * TreeViewCancelEventArgs.cs:
19192         * TreeViewCancelEventHandler.cs:
19193         * TreeViewEventArgs.cs:
19194         * TreeViewEventHandler.cs: Initial implementation.
19195
19196 2004-12-01  Ravindra <rkumar@novell.com>
19197
19198         * ListView.cs (CalculateListView): Fixed scrolling related
19199         calculations. Also, removed some debug statements from other
19200         places.
19201         * ListViewItem.cs: Changed access to 'selected' instance variable
19202         from private to internal.
19203         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
19204
19205 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
19206
19207         * ThemeWin32Classic.cs: remove cache of brush and pens for
19208         specific controls and use the global system, fixes scrollbutton
19209         bugs (for small sizes, disabled, etc)
19210         
19211         * ScrollBar.cs: does not show the thumb for very small controls
19212         (as MS) and allow smaller buttons that the regular size
19213
19214 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
19215
19216         * UpDownBase.cs: Add abstract methods for the interface.
19217         Add new virtual methods (need to be hooked up to TextEntry when it
19218         exists).
19219         Add override methods for most features.
19220         Computes the size, forces the height of the text entry.
19221
19222         * NumericUpDown.cs: Put here the current testing code.
19223
19224         * Set eol-style property on all files that do not have mixed line
19225         endings, to minimize the future problems.  There are still a few
19226         files with mixed endings, and someone should choose whether they
19227         want to move it or not.
19228
19229 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
19230
19231         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
19232         System.Colors
19233         
19234 2004-11-30  Ravindra <rkumar@novell.com>
19235
19236         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
19237         drawing and replaced use of SystemColors by theme colors.
19238         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
19239         * ListView.cs (ListViewItemCollection.Add): Throw exception when
19240         same ListViewItem is being added more than once.
19241
19242 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
19243
19244         * MonthCalendar.cs:
19245           - ControlStyles love to make the control not flicker
19246           
19247 2004-11-30  Peter Bartok  <pbartok@novell.com>
19248
19249         * CharacterCasing.cs: Added
19250
19251 2004-11-29  Peter Bartok  <pbartok@novell.com>
19252
19253         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
19254           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
19255           I am removing these files as they conflict with already completed
19256           work. While it is fantastic to get contributions to MWF, I
19257           respectfully ask that everyone please coordinate their contributions
19258           through mono-winforms-list or #mono-winforms at this time. We're
19259           explicitly avoiding stubbing and don't want controls that don't have
19260           their basic functionality implemented in svn. Please also see
19261           http://www.mono-project.com/contributing/winforms.html
19262
19263
19264 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
19265
19266         * Application.cs (ModalRun): Don't hang after exit.
19267
19268         * Theme.cs: New TreeViewDefaultSize property.
19269
19270         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
19271         with less hardcoded SystemColors constant.
19272         Implemented TreeViewDefaultSize.
19273
19274         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
19275         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
19276
19277
19278 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
19279
19280         * MonthCalendar.cs:
19281           - Fix NextMonthDate and PrevMonthDate click moving calendar
19282
19283 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
19284
19285         * MonthCalendar.cs:
19286           - Fix usage of ScrollChange Property when scrolling months
19287
19288 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
19289
19290         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
19291          - Fixes menu destroying
19292          - Support adding and removing items on already created menus
19293
19294 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
19295
19296         * MonthCalendar.cs:
19297           - Re-worked all bolded dates handling to match win32
19298         * ThemeWin32Classic.cs:
19299           - Fixed rendering with bolded dates
19300
19301 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
19302
19303         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
19304         - Horizontal scroolbar
19305         - Multicolumn
19306         - Fixes
19307
19308
19309 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
19310
19311         * MonthCalendar.cs:
19312           - Fix Usage of MaxSelectionCount from SelectionRange
19313           - Fixed Shift + Cursor Selection
19314           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
19315           - Fixed normal cursor selection to be compat with win32
19316           - Fixed Shift + Mouse Click selection
19317
19318 2004-11-24  Peter Bartok <pbartok@novell.com>
19319
19320         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
19321         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
19322         * XplatUIX11.cs:
19323           - CreatedKeyBoardMsg now updates keystate with Alt key
19324           - Added workaround for timer crash to CheckTimers, Jackson will
19325             develop a proper fix and check in later
19326           - Implemented DispatchMessage
19327           - Removed calling the native window proc from GetMessage (call
19328             now moved to DispatchMessage)
19329
19330         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
19331           the keydata (Fixes bug #69831)
19332
19333         * XplatUIWin32.cs:
19334           - (DispatchMessage): Switched to return IntPtr
19335           - Added DllImport for SetFocus
19336
19337 2004-11-24  Ravindra <rkumar@novell.com>
19338
19339         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
19340         background drawing.
19341         * ListViewItem.cs: Fixed various properties, calculations
19342         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
19343         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
19344         and some internal properties. Fixed MouseDown handler and Paint
19345         method.
19346
19347 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19348
19349         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
19350
19351 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19352
19353         * ContainerControl.cs: correct accidental check in of local changes
19354
19355 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19356
19357         * ThemeWin32Classic.cs:
19358                 - Fixed Drawing Last month in grid (sometimes not showing)
19359         * MonthCalendar.cs:
19360                 - Fixed title width calculation bug (makeing title small)
19361
19362 2004-11-23  Peter Bartok <pbartok@novell.com>
19363
19364         * XplatUIX11.cs:
19365           - Added generation of WM_MOUSEHOVER event
19366           - Added missing assignment of async_method atom
19367           - Fixed WM_ERASEBKGND; now only redraws the exposed area
19368
19369 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19370
19371         * ThemeWin32Classic.cs:
19372                 - Fixed Drawing of today circle when showtodaycircle not set
19373                 - fixed drawing of first and last month in the grid (gay dates)
19374         * MonthCalendar.cs:
19375                 - Fixed Drawing of today circle
19376                 - Fixed drawing of grady dates
19377                 - Fixed HitTest for today link when ShowToday set to false
19378                 - Fixed DefaultSize to obey ShowToday
19379
19380 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19381
19382         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
19383         * System.Windows.Forms/Theme.cs
19384         * MonthCalendar.cs: added for MonthCalendar
19385         * SelectionRange.cs: added for MonthCalendar
19386         * Day.cs: added for MonthCalendar: added for MonthCalendar
19387         * DateRangeEventArgs.cs: added for MonthCalendar
19388         * DateRangeEventHandler.cs: added for MonthCalendar
19389
19390 2004-11-22  Ravindra <rkumar@novell.com>
19391
19392         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
19393         property.
19394
19395 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
19396
19397         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
19398         event handler.
19399         
19400         * NumericUpDown.cs: Added new implementation.
19401         * UpDownBase.cs: Added new implementation.
19402
19403         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
19404         implementations.
19405         
19406         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
19407         implementations.
19408
19409         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
19410         methods.
19411
19412 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
19413
19414         * Timer.cs  (Dispose): Should call the base dispose when
19415         overriding.
19416
19417 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19418
19419         * ScrollBar.cs: updates thumb position when max, min or increment
19420         is changed
19421
19422 2004-11-21  Ravindra <rkumar@novell.com>
19423
19424         * ListView.cs: Implemented item selection, activation and
19425         column header style. Fixed properties to do a redraw, if
19426         required. Added support for MouseHover, DoubleClick, KeyDown
19427         and KeyUp event handling and some minor fixes.
19428         * ListViewItem.cs: Fixed constructor.
19429         * ThemeWin32Classic.cs: Improved drawing for ListView.
19430
19431 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19432
19433         * ThemeWin32Classic.cs: initial listbox drawing code
19434         * DrawMode.cs: new enumerator
19435         * ListControl.cs: stubbed class
19436         * ListBox.cs: initial implementation
19437         * Theme.cs: new methods definitions
19438         * SelectionMode.cs: new enumerator
19439
19440 2004-11-17  Peter Bartok  <pbartok@novell.com>
19441
19442         * XplatUIWin32.cs: Added double-click events to the class style
19443         * Control.cs (WndProc):
19444           - Added handling of click-count to MouseDown/ MouseUp events.
19445           - Added handling of middle and right mouse buttons
19446           - Removed old debug code
19447
19448 2004-11-17  Jackson Harper  <jackson@ximian.com>
19449
19450         * XplatUIX11.cs: Use the new Mono.Unix namespace.
19451
19452 2004-11-17  Ravindra <rkumar@novell.com>
19453
19454         * ListView.cs: Added event handling for MouseMove/Up/Down.
19455         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
19456         * ThemeWin32Classic.cs: We need to clear the graphics context and
19457         draw column header in a proper state.
19458
19459
19460 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
19461
19462         *  Menu.cs: fixes signature
19463
19464 2004-11-16  Peter Bartok  <pbartok@novell.com>
19465
19466         * XplatUIX11.cs (GetMessage): Implemented generation of
19467           double click mouse messages
19468
19469 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
19470
19471         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
19472         not by menu
19473
19474 2004-11-11  Peter Bartok  <pbartok@novell.com>
19475
19476         * HandleData.cs: Added Visible property
19477         * XplatUIX11.cs (IsVisible): Now uses Visible property from
19478           HandleData
19479         * XplatUIX11.cs: Removed old debug leftovers
19480         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
19481         * Control.cs (WndProc): Removed old debug leftovers,
19482           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
19483           needed WM_SIZE handling
19484
19485 2004-11-11  Jackson Harper  <jackson@ximian.com>
19486
19487         * OwnerDrawPropertyBag.cs:
19488         * TreeViewImageIndexConverter.cs: Initial implementation
19489
19490 2004-11-10  Jackson Harper  <jackson@ximian.com>
19491
19492         * ThemeWin32Classic.cs:
19493         * TabControl.cs: instead of moving tabs by the slider pos just
19494         start drawing at the tab that is offset by the slider. This way
19495         scrolling always moves by exactly one tab.
19496
19497 2004-11-10  Jackson Harper  <jackson@ximian.com>
19498
19499         * TabControl.cs: You can only scroll left when the slider has
19500         already ben moved right.
19501         
19502 2004-11-10  Jackson Harper  <jackson@ximian.com>
19503
19504         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
19505         the clip area.
19506         
19507 2004-11-10  Jackson Harper  <jackson@ximian.com>
19508
19509         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
19510         clip area.
19511         
19512 2004-11-09  Jackson Harper  <jackson@ximian.com>
19513
19514         * TabControl.cs (CalcXPos): New helper method so we can determine
19515         the proper place to start drawing vertical tabs.
19516         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
19517         
19518 2004-11-09  Jackson Harper  <jackson@ximian.com>
19519
19520         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
19521         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
19522         and Bottom, left and right are illegal values for this and
19523         multiline is enabled when the alignment is set to left or right.
19524         (DrawTab): Each alignment block should draw the text itself now
19525         because Left requires special love. Also add rendering for Left
19526         aligned tabs.
19527         
19528 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
19529
19530         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
19531         does not destroy the windows, removes debugging messages
19532
19533 2004-11-09  jba  <jba-mono@optusnet.com.au>
19534
19535         * ThemeWin32Classic.cs
19536         (DrawButtonBase): Fix verticle text rect clipping in windows
19537         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
19538         rendering and incorrect text rect clipping
19539         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
19540         rendering and incorrect text rect clipping
19541         
19542 2004-11-08  Jackson Harper  <jackson@ximian.com>
19543
19544         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
19545         bottom when they are bottom aligned so the bottoms of the tabs get
19546         displayed.
19547         * TabControl.cs (DropRow): Move rows up instead of down when the
19548         tab control is bottom aligned.
19549
19550 2004-11-08 13:59  pbartok
19551
19552         * XplatUIX11.cs:
19553           - Added handling for various window styles
19554           - Added handling for popup windows
19555           - Added SetTopmost handling
19556
19557 2004-11-08 13:55  pbartok
19558
19559         * XplatUIWin32.cs:
19560           - Added argument to SetTopmost method
19561           - Fixed broken ClientToScreen function
19562
19563 2004-11-08 13:53  pbartok
19564
19565         * XplatUIStructs.cs:
19566           - Added missing WS_EX styles
19567
19568 2004-11-08 13:53  pbartok
19569
19570         * XplatUI.cs, XplatUIDriver.cs:
19571           - Added argument to SetTopmost
19572
19573 2004-11-08 13:52  pbartok
19574
19575         * X11Structs.cs:
19576           - Added XSetWindowAttributes structure
19577           - Improved XWindowAttributes structure
19578           - Added SetWindowValuemask enum
19579           - Added window creation arguments enum
19580           - Added gravity enum
19581           - Added Motif hints structure
19582           - Added various Motif flags and enums
19583           - Added PropertyMode enum for property functions
19584
19585 2004-11-08 13:50  pbartok
19586
19587         * Form.cs:
19588           - Fixed arguments for updated SetTopmost method
19589
19590 2004-11-08 13:49  pbartok
19591
19592         * ToolTip.cs:
19593           - Fixed arguments for updated SetTopmost function
19594           - Fixed usage of PointToClient
19595
19596 2004-11-08 13:44  pbartok
19597
19598         * MenuAPI.cs:
19599           - Added Clipping of children and siblings
19600
19601 2004-11-08 13:41  pbartok
19602
19603         * MainMenu.cs:
19604           - Removed SetMenuBarWindow call. We do this in Form.cs
19605
19606 2004-11-08 13:40  jackson
19607
19608         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
19609           scrolling jimmi in the correct location with bottom aligned tabs
19610
19611 2004-11-08 13:36  pbartok
19612
19613         * ContainerControl.cs:
19614           - Implemented BindingContext
19615           - Implemented ParentForm
19616
19617 2004-11-08 12:46  jackson
19618
19619         * TabControl.cs: Put bottom rendered tabs in the right location
19620
19621 2004-11-08 07:15  jordi
19622
19623         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
19624           removes dead code
19625
19626 2004-11-05 17:30  jackson
19627
19628         * TabControl.cs: When selected tabs are expanded make sure they
19629           don't go beyond the edges of the tab control
19630
19631 2004-11-05 14:57  jackson
19632
19633         * TabControl.cs: Reset show_slider so if the control is resized to
19634           a size where it is no longer needed it's not displayed anymore
19635
19636 2004-11-05 13:16  jackson
19637
19638         * TabControl.cs: Make tab pages non visible when added to the
19639           control
19640
19641 2004-11-05 12:42  jackson
19642
19643         * TabControl.cs: Implement SizeMode.FillToRight
19644
19645 2004-11-05 12:16  jackson
19646
19647         * Control.cs: Do not call CreateHandle if the handle is already
19648           created
19649
19650 2004-11-05 11:46  jackson
19651
19652         * TabControl.cs: Remove superflous call to CalcTabRows
19653
19654 2004-11-05 09:07  jackson
19655
19656         * XplatUIX11.cs: Update for Mono.Posix changes
19657
19658 2004-11-05 07:00  ravindra
19659
19660         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
19661           scrolling.
19662
19663 2004-11-04 22:47  jba
19664
19665         * ThemeWin32Classic.cs:
19666           - Fix Button rendering for FlatStyle = Flat or Popup
19667           - Fix RadioButton and CheckBox rendering when Appearance = Button
19668             (normal and flatstyle).
19669           - Correct outer rectangle color when drawing focus rectangle
19670           - Adjust button bounds to be 1 px smaller when focused
19671           - Make button not draw sunken 3d border when pushed (windows compat)
19672           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
19673           - Offset the text in RadioButton and Checkbox when being rendered as
19674           a button.
19675           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
19676           radiobuttons
19677           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
19678           - Fixed disabled text rendering for normally rendered radiobuttons
19679
19680 2004-11-04 10:26  jackson
19681
19682         * TabControl.cs: Recalculate tab rows when resizing
19683
19684 2004-11-04 07:47  jordi
19685
19686         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
19687           collection completion, drawing issues, missing features
19688
19689 2004-11-04 05:03  ravindra
19690
19691         * ScrollBar.cs:
19692                 - We need to recalculate the Thumb area when
19693                 LargeChange/maximum/minimum values are changed.
19694           - We set the 'pos' in UpdatePos() method to minimum, if it's less
19695                 than minimum. This is required to handle the case if large_change is
19696                 more than max, and use LargeChange property instead of large_change
19697                 variable.
19698           - We return max+1 when large_change is more than max, like MS does.
19699
19700 2004-11-04 04:29  ravindra
19701
19702         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
19703                 - Changed default value signatures (prefixed all with ListView).
19704                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
19705                 ListView.
19706           - Fixed calculations for ListViewItem and implemented Clone()
19707           method.
19708
19709 2004-11-04 04:26  ravindra
19710
19711         * Theme.cs, ThemeWin32Classic.cs:
19712                 - Changed default ListView values signatures (prefixed all with
19713                 ListView).
19714           - Fixed default size values for VScrollBar and HScrollBar.
19715                 - Fixed DrawListViewItem method.
19716
19717 2004-11-04 04:05  ravindra
19718
19719         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
19720
19721 2004-11-04 04:04  ravindra
19722
19723         * ImageList.cs: Implemented the missing overload for Draw method.
19724
19725 2004-11-03 19:29  jackson
19726
19727         * TabControl.cs: Handle dropping rows on selection properly
19728
19729 2004-11-03 11:59  jackson
19730
19731         * TabControl.cs: remove debug code
19732
19733 2004-11-03 11:52  jackson
19734
19735         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
19736           the scrolly widgerywoo
19737
19738 2004-11-02 13:52  jackson
19739
19740         * TabControl.cs: Resize the tab pages and tabs when the tab control
19741           is resized
19742
19743 2004-11-02 13:40  jackson
19744
19745         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
19746           selected tab to the bottom
19747
19748 2004-11-02 13:39  jackson
19749
19750         * TabPage.cs: Store the tab pages row
19751
19752 2004-11-02 12:33  jordi
19753
19754         * MenuItem.cs: fixes handle creation
19755
19756 2004-11-02 11:42  jackson
19757
19758         * TabControl.cs: signature fix
19759
19760 2004-11-02 08:56  jackson
19761
19762         * TabControl.cs: Calculate whether the tab is on an edge properly.
19763           Remove top secret debugging code
19764
19765 2004-11-01 19:57  jackson
19766
19767         * TabControl.cs: Add click handling, and proper sizing
19768
19769 2004-11-01 19:47  jackson
19770
19771         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
19772           tab controls
19773
19774 2004-11-01 19:39  jackson
19775
19776         * TabPage.cs: add internal property to store the bounds of a tab
19777           page
19778
19779 2004-10-30 04:23  ravindra
19780
19781         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
19782           values.
19783
19784 2004-10-30 04:21  ravindra
19785
19786         * ListView.cs, ListViewItem.cs: Added support for scrolling and
19787           fixed calculations.
19788
19789 2004-10-30 03:06  pbartok
19790
19791         * XplatUIX11.cs:
19792           - Removed extension of DllImported libs
19793
19794 2004-10-29 09:55  jordi
19795
19796         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
19797           navigation, itemcollection completion, menu fixes
19798
19799 2004-10-27 22:58  pbartok
19800
19801         * XplatUIX11.cs:
19802           - Now throws a nice error message when no X display could be opened
19803
19804 2004-10-26 13:51  jordi
19805
19806         * ListView.cs: removes warning
19807
19808 2004-10-26 03:55  ravindra
19809
19810         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
19811           ThemeWin32Classic.cs: Some formatting for my last checkins.
19812
19813 2004-10-26 03:36  ravindra
19814
19815         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
19816           control and default values.
19817
19818 2004-10-26 03:35  ravindra
19819
19820         * Theme.cs: Added some default values for ListView control.
19821
19822 2004-10-26 03:33  ravindra
19823
19824         * ToolBar.cs: ToolBar should use the user specified button size, if
19825           there is any. Added a size_specified flag for the same.
19826
19827 2004-10-26 03:33  ravindra
19828
19829         * ColumnHeader.cs: Added some internal members and calculations for
19830           ColumnHeader.
19831
19832 2004-10-26 03:32  ravindra
19833
19834         * ListViewItem.cs: Calculations for ListViewItem.
19835
19836 2004-10-26 03:31  ravindra
19837
19838         * ListView.cs: Added some internal members and calculations for
19839           ListView.
19840
19841 2004-10-22 13:31  jordi
19842
19843         * MenuAPI.cs: speedup menus drawing
19844
19845 2004-10-22 13:16  jackson
19846
19847         * XplatUIX11.cs: Make sure to update exposed regions when adding an
19848           expose event
19849
19850 2004-10-22 11:49  jackson
19851
19852         * Control.cs: oops
19853
19854 2004-10-22 11:41  jackson
19855
19856         * Control.cs: Check to see if the window should have its background
19857           repainted by X when drawing.
19858
19859 2004-10-22 11:31  jackson
19860
19861         * XplatUIX11.cs: When invalidating areas only use XClearArea if
19862           clear is true, this way we do not get flicker from X repainting the
19863           background
19864
19865 2004-10-22 11:28  jackson
19866
19867         * XEventQueue.cs: Queue properly
19868
19869 2004-10-21 09:38  jackson
19870
19871         * XEventQueue.cs: Fix access modifier
19872
19873 2004-10-21 09:36  jackson
19874
19875         * XEventQueue.cs: Don't loose messages
19876
19877 2004-10-21 09:22  jackson
19878
19879         * XEventQueue.cs: Don't loose messages
19880
19881 2004-10-20 04:15  jordi
19882
19883         * BootMode.cs: enum need it by SystemInfo
19884
19885 2004-10-19 21:58  pbartok
19886
19887         * XplatUIWin32.cs:
19888           - Small sanity check
19889
19890 2004-10-19 21:56  pbartok
19891
19892         * Form.cs:
19893           - Added private FormParentWindow class which acts as the container
19894             for our form and as the non-client area where menus are drawn
19895           - Added/Moved required tie-ins to Jordi's menus
19896           - Fixed/Implemented the FormStartPosition functionality
19897
19898 2004-10-19 21:52  pbartok
19899
19900         * Control.cs:
19901           - Removed unneeded locals
19902           - Added code to all size and location properties to understand and
19903             deal with the parent container of Form
19904
19905 2004-10-19 21:33  pbartok
19906
19907         * Application.cs:
19908           - Fixed to deal with new Form subclasses for menus
19909
19910 2004-10-19 17:48  jackson
19911
19912         * XEventQueue.cs: commit correct version of file
19913
19914 2004-10-19 16:50  jackson
19915
19916         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
19917
19918 2004-10-19 16:15  jordi
19919
19920         * MenuAPI.cs: MenuBarCalcSize returns the height
19921
19922 2004-10-19 08:31  pbartok
19923
19924         * Control.cs:
19925           - Added missing call to PreProcessMessage before calling OnXXXKey
19926           methods
19927
19928 2004-10-19 00:04  ravindra
19929
19930         * ToolTip.cs: Fixed constructor.
19931
19932 2004-10-18 09:31  jordi
19933
19934         * MenuAPI.cs: menuitems in menubars do not have shortcuts
19935
19936 2004-10-18 09:26  jordi
19937
19938         * MenuItem.cs: fixes MenuItem class signature
19939
19940 2004-10-18 08:56  jordi
19941
19942         * MenuAPI.cs: prevents windows from showing in the taskbar
19943
19944 2004-10-18 00:28  ravindra
19945
19946         * ToolTip.cs: Suppressed a warning message.
19947
19948 2004-10-18 00:27  ravindra
19949
19950         * Control.cs: Default value of visible property must be true.
19951
19952 2004-10-17 23:19  pbartok
19953
19954         * ToolTip.cs:
19955           - Complete implementation
19956
19957 2004-10-17 23:19  pbartok
19958
19959         * XplatUIX11.cs:
19960           - Added EnableWindow method
19961           - Added SetModal stub
19962           - Added generation of WM_ACTIVATE message (still needs testing)
19963           - Added SetTopMost stub
19964           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
19965
19966 2004-10-17 23:17  pbartok
19967
19968         * XplatUIWin32.cs:
19969           - Removed VirtualKeys to XplatUIStructs
19970           - Implemented SetTopMost method
19971           - Implemented EnableWindow method
19972           - Bugfix in ScreenToClient()
19973           - Bugfixes in ClientToScreen()
19974
19975 2004-10-17 22:51  pbartok
19976
19977         * XplatUIStructs.cs:
19978           - Added WS_EX styles to WindowStyles enumeration
19979
19980 2004-10-17 22:50  pbartok
19981
19982         * XplatUI.cs, XplatUIDriver.cs:
19983           - Added method for enabling/disabling windows
19984           - Added method for setting window modality
19985           - Added method for setting topmost window
19986
19987 2004-10-17 22:49  pbartok
19988
19989         * ThemeWin32Classic.cs:
19990           - Added ToolTip drawing code
19991
19992 2004-10-17 22:49  pbartok
19993
19994         * Theme.cs:
19995           - Added ToolTip abstracts
19996
19997 2004-10-17 22:47  pbartok
19998
19999         * Form.cs:
20000           - Fixed Form.ControlCollection to handle owner relations
20001           - Added Owner/OwnedForms handling
20002           - Implemented Z-Ordering for owned forms
20003           - Removed unneeded private overload of ShowDialog
20004           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
20005             so I hope)
20006           - Fixed Close(), had wrong default
20007           - Added firing of OnLoad event
20008           - Added some commented out debug code for Ownership handling
20009
20010 2004-10-17 22:16  pbartok
20011
20012         * Control.cs:
20013           - Fixed/implemented flat list of controls
20014
20015 2004-10-17 22:14  pbartok
20016
20017         * Application.cs:
20018           - Added code to simulate modal dialogs on Win32
20019
20020 2004-10-17 16:11  jordi
20021
20022         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
20023           mouse event
20024
20025 2004-10-17 13:39  jordi
20026
20027         * MenuAPI.cs: menu drawing fixes
20028
20029 2004-10-15 09:10  ravindra
20030
20031         * StructFormat.cs: General Enum.
20032
20033 2004-10-15 09:09  ravindra
20034
20035         * SizeGripStyle.cs: Enum for Form.
20036
20037 2004-10-15 09:08  ravindra
20038
20039         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
20040           in Theme for ListView.
20041
20042 2004-10-15 09:06  ravindra
20043
20044         * ColumnHeader.cs: Flushing some formatting changes.
20045
20046 2004-10-15 09:05  ravindra
20047
20048         * ListViewItem.cs: Implemented GetBounds method and fixed coding
20049           style.
20050
20051 2004-10-15 09:03  ravindra
20052
20053         * ListView.cs: Implemented Paint method and fixed coding style.
20054
20055 2004-10-15 07:34  jordi
20056
20057         * MenuAPI.cs: fix for X11
20058
20059 2004-10-15 07:32  ravindra
20060
20061         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
20062                 - Renamed Paint() method to Draw() for clarity. Also, moved
20063                 DrawImage() to OnPaint().
20064
20065 2004-10-15 07:25  ravindra
20066
20067         * CheckBox.cs, RadioButton.cs:
20068                 - Removed Redraw (), we get it from ButtonBase.
20069                 - Implemented Paint (), to do class specific painting.
20070
20071 2004-10-15 07:16  ravindra
20072
20073         * ButtonBase.cs:
20074                 - Redraw () is not virtual now.
20075                 - Added an internal virtual method Paint (), so that
20076                 derived classes can do their painting on their own.
20077                 - Modified OnPaint () to call Paint ().
20078
20079 2004-10-15 06:43  jordi
20080
20081         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
20082           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
20083
20084 2004-10-15 00:30  ravindra
20085
20086         * MessageBox.cs:
20087                 - MessageBox on windows does not have min/max buttons.
20088                 This change in CreateParams fixes this on Windows. We
20089                 still need to implement this windowstyle behavior in
20090                 our X11 driver.
20091
20092 2004-10-14 05:14  ravindra
20093
20094         * ToolBar.cs:
20095                 - Changed Redraw () to do a Refresh () always.
20096                 - Fixed the MouseMove event handling when mouse is pressed,
20097                 ie drag event handling.
20098                 - Replaced the usage of ToolBarButton.Pressed property to
20099                 ToolBarButton.pressed internal variable.
20100
20101 2004-10-14 05:10  ravindra
20102
20103         * ToolBarButton.cs:
20104                 - Added an internal member 'inside' to handle mouse move
20105                 with mouse pressed ie mouse drag event.
20106                 - Changed 'Pressed' property to return true only when
20107                 'inside' and 'pressed' are both true.
20108                 - Some coding style love.
20109
20110 2004-10-14 00:17  ravindra
20111
20112         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
20113           public method.
20114
20115 2004-10-14 00:15  ravindra
20116
20117         * ButtonBase.cs: Redraw () related improvements.
20118
20119 2004-10-14 00:14  ravindra
20120
20121         * MessageBox.cs: Moved InitFormSize () out of Paint method and
20122           removed unnecessary calls to Button.Show () method.
20123
20124 2004-10-13 17:50  pbartok
20125
20126         * XplatUIX11.cs:
20127           - Formatting fix
20128           - Removed destroying of window until we solve the problem of X
20129             destroying the window before us on shutdown
20130
20131 2004-10-13 16:32  pbartok
20132
20133         * ButtonBase.cs:
20134           - Now Redraws on MouseUp for FlatStyle Flat and Popup
20135
20136 2004-10-13 14:18  pbartok
20137
20138         * XplatUIX11.cs:
20139           - Added code to destroy the X window
20140
20141 2004-10-13 14:18  pbartok
20142
20143         * XplatUIWin32.cs:
20144           - Added code to destroy a window
20145
20146 2004-10-13 14:12  pbartok
20147
20148         * ButtonBase.cs:
20149           - Added the Redraw on Resize that got dropped in the last rev
20150
20151 2004-10-13 09:06  pbartok
20152
20153         * ThemeWin32Classic.cs:
20154           - Path from John BouAntoun:
20155             * Fix check rendering (centre correctly for normal style, offset
20156               correctly for FlatStyle).
20157             * Fix border color usage (use backcolor) for FlatStyle.Popup
20158             * Use checkbox.Capture instead of checkbox.is_pressed when
20159               rendering flatstyle states.
20160
20161 2004-10-12 21:48  pbartok
20162
20163         * ThemeWin32Classic.cs:
20164           - Removed all occurences of SystemColors and replaced them with the
20165             matching theme color
20166
20167 2004-10-12 21:41  pbartok
20168
20169         * ThemeWin32Classic.cs:
20170           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
20171             him using the function for flatstyle drawing
20172           - Changed functions to use the new version of CPDrawBorder3D
20173
20174 2004-10-12 21:15  pbartok
20175
20176         * ControlPaint.cs:
20177           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
20178             match MS documentation. They need to return defined colors if the
20179             passed color matches the configured control color. Thanks to John
20180             BouAntoun for pointing this out.
20181
20182 2004-10-12 20:57  pbartok
20183
20184         * Control.cs:
20185           - Fix from John BouAntoun: Raise ForeColorChanged event when text
20186             color is changed
20187
20188 2004-10-12 20:46  pbartok
20189
20190         * CheckBox.cs:
20191           - Fix from John BouAntoun: Now properly sets the Appearance property
20192
20193 2004-10-12 20:45  pbartok
20194
20195         * ThemeWin32Classic.cs:
20196           - Fixes from John BouAntoun: now handles forecolors and backcolors
20197             for flatstyle rendered controls much better; It also fixes normal
20198             checkbox rendering when pushed or disabled.
20199
20200 2004-10-08 02:50  jordi
20201
20202         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
20203           work
20204
20205 2004-10-07 08:56  jordi
20206
20207         * ThemeWin32Classic.cs: Removes deletion of cached brushes
20208
20209 2004-10-06 03:59  jordi
20210
20211         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
20212           XplatUIWin32.cs: removes warnings from compilation
20213
20214 2004-10-05 12:23  jackson
20215
20216         * RadioButton.cs: Fix ctor
20217
20218 2004-10-05 11:10  pbartok
20219
20220         * MessageBox.cs:
20221           - Partial implementation by Benjamin Dasnois
20222
20223 2004-10-05 10:15  jackson
20224
20225         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
20226           by John BouAntoun
20227
20228 2004-10-05 03:07  ravindra
20229
20230         * ToolBar.cs:
20231                 - Removed a private method, Draw ().
20232                 - Fixed the ButtonDropDown event handling.
20233                 - Fixed MouseMove event handling.
20234
20235 2004-10-05 03:04  ravindra
20236
20237         * ThemeWin32Classic.cs:
20238                 - Added DrawListView method and ListViewDefaultSize property.
20239                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
20240                 - Changed DOS style CRLF to Unix format (dos2unix).
20241
20242 2004-10-05 03:03  ravindra
20243
20244         * Theme.cs:
20245                 - Added DrawListView method and ListViewDefaultSize property.
20246
20247 2004-10-05 02:42  ravindra
20248
20249         * ToolBarButton.cs: Added an internal member dd_pressed to handle
20250           clicks on DropDown arrow.
20251
20252 2004-10-04 22:56  jackson
20253
20254         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
20255           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
20256           Control handle the buffers, derived classes should not have to
20257           CreateBuffers themselves.
20258
20259 2004-10-04 21:20  jackson
20260
20261         * StatusBar.cs: The control handles resizing the buffers now.
20262
20263 2004-10-04 21:18  jackson
20264
20265         * Control.cs: When resizing the buffers should be invalidated. This
20266           should be handled in Control not in derived classes.
20267
20268 2004-10-04 14:45  jackson
20269
20270         * TabPage.cs: oops
20271
20272 2004-10-04 02:14  pbartok
20273
20274         * LeftRightAlignment.cs:
20275           - Initial check-in
20276
20277 2004-10-04 01:09  jordi
20278
20279         * ThemeWin32Classic.cs: fixes right button position causing right
20280           button not showing on horizontal scrollbars
20281
20282 2004-10-02 13:12  pbartok
20283
20284         * XplatUIX11.cs:
20285           - Simplified the Invalidate method by using an X call instead of
20286             generating the expose ourselves
20287           - Added an expose when the window background is changed
20288           - Implemented ClientToScreen method
20289
20290 2004-10-02 13:08  pbartok
20291
20292         * XplatUIWin32.cs:
20293           - Added Win32EnableWindow method (test for implementing modal
20294           dialogs)
20295           - Added ClientToScreen method and imports
20296
20297 2004-10-02 13:07  pbartok
20298
20299         * XplatUI.cs, XplatUIDriver.cs:
20300           - Added ClientToScreen coordinate translation method
20301
20302 2004-10-02 13:06  pbartok
20303
20304         * KeyPressEventArgs.cs:
20305           - Fixed access level for constructor
20306
20307 2004-10-02 13:06  pbartok
20308
20309         * NativeWindow.cs:
20310           - Changed access level for the window_collection hash table
20311
20312 2004-10-02 13:05  pbartok
20313
20314         * Form.cs:
20315           - Added KeyPreview property
20316           - Added Menu property (still incomplete, pending Jordi's menu work)
20317           - Implemented ProcessCmdKey
20318           - Implemented ProcessDialogKey
20319           - Implemented ProcessKeyPreview
20320
20321 2004-10-02 13:02  pbartok
20322
20323         * Control.cs:
20324           - Added private method to get the Control object from the window
20325           handle
20326           - Implemented ContextMenu property
20327           - Implemented PointToScreen
20328           - Implemented PreProcessMessage
20329           - Implemented IsInputChar
20330           - Implemented IsInputKey
20331           - Implemented ProcessCmdKey
20332           - Completed ProcessKeyEventArgs
20333           - Fixed message loop to call the proper chain of functions on key
20334           events
20335           - Implemented ProcessDialogChar
20336           - Implemented ProcessDialogKey
20337           - Implemented ProcessKeyMessage
20338           - Implemented ProcessKeyPreview
20339           - Added RaiseDragEvent stub (MS internal method)
20340           - Added RaiseKeyEvent stub (MS internal method)
20341           - Added RaiseMouseEvent stub (MS Internal method)
20342           - Added RaisePaintEvent stub (MS Internal method)
20343           - Added ResetMouseEventArgs stub (MS Internal method)
20344           - Implemented RtlTranslateAlignment
20345           - Implemented RtlTranslateContent
20346           - Implemented RtlTranslateHorizontal
20347           - Implemented RtlTranslateLeftRight
20348           - Added generation of KeyPress event
20349
20350 2004-10-02 05:57  ravindra
20351
20352         * ListViewItem.cs: Added attributes.
20353
20354 2004-10-02 05:32  ravindra
20355
20356         * ListView.cs: Added attributes.
20357
20358 2004-10-01 11:53  jackson
20359
20360         * Form.cs: Implement the Close method so work on MessageBox can
20361           continue.
20362
20363 2004-09-30 14:06  pbartok
20364
20365         * XplatUIX11.cs:
20366           - Bug fixes
20367
20368 2004-09-30 11:34  jackson
20369
20370         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
20371
20372 2004-09-30 07:26  ravindra
20373
20374         * ListViewItemConverter.cs: Converter for ListViewItem.
20375
20376 2004-09-30 07:26  ravindra
20377
20378         * SortOrder.cs: Enum for ListView control.
20379
20380 2004-09-30 07:25  ravindra
20381
20382         * ColumnHeader.cs: Supporting class for ListView control.
20383
20384 2004-09-30 07:24  ravindra
20385
20386         * ListView.cs, ListViewItem.cs: Initial implementation.
20387
20388 2004-09-30 07:20  ravindra
20389
20390         * ItemActivation.cs: Enum for ListView Control.
20391
20392 2004-09-29 20:29  pbartok
20393
20394         * XplatUIX11.cs:
20395           - Added lookup of pixel value for background color; tries to get a
20396             color 'close' to the requested color, it avoids having to create a
20397             colormap.  Depending on the display this could mean the used color
20398             is slightly off the desired color. Might have to change it to a more
20399             resource intensive colormap approach, but it will work as a
20400           workaround to avoid red screens.
20401
20402 2004-09-29 14:27  jackson
20403
20404         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
20405
20406 2004-09-28 12:44  pbartok
20407
20408         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
20409           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
20410           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
20411           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
20412           TrackBar.cs, VScrollBar.cs:
20413           - Streamlined Theme interfaces:
20414             * Each DrawXXX method for a control now is passed the object for
20415               the control to be drawn in order to allow accessing any state the
20416               theme might require
20417
20418             * ControlPaint methods for the theme now have a CP prefix to avoid
20419               name clashes with the Draw methods for controls
20420
20421             * Every control now retrieves it's DefaultSize from the current
20422             theme
20423
20424 2004-09-28 12:17  jackson
20425
20426         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
20427           drawing
20428
20429 2004-09-24 14:57  jackson
20430
20431         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
20432           Gives us a nice little performance boost.
20433
20434 2004-09-24 12:02  jackson
20435
20436         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
20437           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
20438           Control and supporting classes. Initial checkin
20439
20440 2004-09-23 13:08  jackson
20441
20442         * Form.cs: Temp build fixage
20443
20444 2004-09-23 01:39  ravindra
20445
20446         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
20447           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
20448           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
20449           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
20450           EventHandlers needed by ListView Control.
20451
20452 2004-09-22 14:12  pbartok
20453
20454         * ScrollableControl.cs:
20455           - Implemented DockPadding property
20456           - Implemented AutoScroll property
20457           - Implemented AutoScrollMargin property
20458           - Implemented AutoScrollMinSize property
20459           - Implemented AutoScrollPosition property
20460           - Implemented DisplayRectangle property (still incomplete)
20461           - Implemented CreateParams property
20462           - Implemented HScroll property
20463           - Implemented VScroll property
20464           - Implemented OnVisibleChanged property
20465
20466 2004-09-22 14:09  pbartok
20467
20468         * Form.cs:
20469           - Added Form.ControllCollection class
20470           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
20471             RemoveOwnedForm (still incomplete, missing on-top and common
20472             minimize/maximize behaviour)
20473           - Added StartPosition property (still incomplete, does not use when
20474             creating the form)
20475           - Added ShowDialog() methods (still incomplete, missing forcing the
20476             dialog modal)
20477
20478 2004-09-22 14:05  pbartok
20479
20480         * Application.cs:
20481           - Added message loop for modal dialogs
20482
20483 2004-09-22 14:02  pbartok
20484
20485         * GroupBox.cs:
20486           - Fixed wrong types for events
20487
20488 2004-09-22 14:00  pbartok
20489
20490         * Shortcut.cs, FormWindowState.cs:
20491           - Fixed wrong values
20492
20493 2004-09-22 12:01  jackson
20494
20495         * Control.cs: Text is never null
20496
20497 2004-09-20 22:14  pbartok
20498
20499         * XplatUIWin32.cs:
20500           - Fixed accessibility level for Idle handler
20501
20502 2004-09-20 18:54  jackson
20503
20504         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20505           XplatUIX11.cs: New message loop that uses poll so we don't get a
20506           busy loop
20507
20508 2004-09-17 10:43  pbartok
20509
20510         * ScrollBar.cs:
20511           - Fixed behaviour of arrow buttons. Now properly behaves like
20512             Buttons (and like Microsoft's scrollbar arrow buttons)
20513
20514 2004-09-17 10:14  pbartok
20515
20516         * ScrollBar.cs:
20517           - Added missing release of keyboard/mouse capture
20518
20519 2004-09-17 06:18  jordi
20520
20521         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
20522           Theme.cs: Very early menu support
20523
20524 2004-09-16 17:45  pbartok
20525
20526         * XplatUIWin32.cs:
20527           - Fixed sending a window to the front
20528           - Added overload for SetWindowPos to avoid casting
20529
20530 2004-09-16 17:44  pbartok
20531
20532         * Control.cs:
20533           - Added SendToBack and BringToFront methods
20534
20535 2004-09-16 07:00  ravindra
20536
20537         * Copyright: Added Novell URL.
20538
20539 2004-09-16 07:00  ravindra
20540
20541         * ToolBar.cs: Invalidate should be done before redrawing.
20542
20543 2004-09-15 21:19  ravindra
20544
20545         * ColumnHeaderStyle.cs: Enum for ListView Control.
20546
20547 2004-09-15 21:18  ravindra
20548
20549         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
20550           ListView Control.
20551
20552 2004-09-13 18:26  jackson
20553
20554         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
20555           properly
20556
20557 2004-09-13 18:13  jackson
20558
20559         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
20560           a second thread and post messages into the main threads message
20561           queue. This makes timing much more consistent. Both win2K and XP
20562           have a minimum timer value of 15 milliseconds, so we now do this
20563           too.
20564
20565 2004-09-13 15:18  pbartok
20566
20567         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20568           XplatUIX11.cs:
20569           - Added Z-Ordering methods
20570
20571 2004-09-13 10:56  pbartok
20572
20573         * Form.cs:
20574           - Fixed #region names
20575           - Moved properties and methods into their proper #regions
20576
20577 2004-09-13 10:51  pbartok
20578
20579         * Form.cs:
20580           - Added Accept and CancelButton properties
20581           - Added ProcessDialogKey() method
20582
20583 2004-09-13 08:18  pbartok
20584
20585         * IWindowTarget.cs:
20586           - Initial check-in
20587
20588 2004-09-10 21:50  pbartok
20589
20590         * Control.cs:
20591           - Added DoDragDrop() [incomplete]
20592           - Properly implemented 'Visible' handling
20593           - Added SetVisibleCore()
20594           - Implemented FindChildAtPoint()
20595           - Implemented GetContainerControl()
20596           - Implemented Hide()
20597
20598 2004-09-10 19:28  pbartok
20599
20600         * Control.cs:
20601           - Moved methods into their appropriate #regions
20602           - Reordered methods within regions alphabetically
20603
20604 2004-09-10 18:57  pbartok
20605
20606         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20607           - Added method to retrieve text from window
20608
20609 2004-09-10 18:56  pbartok
20610
20611         * Control.cs:
20612           - Moved some internal functions into the internal region
20613           - Implemented FontHeight
20614           - Implemented RenderRightToLeft
20615           - Implemented ResizeRedraw
20616           - Implemented ShowFocusCues
20617           - Implemented ShowKeyboardCues
20618           - Implemented FromChildHandle
20619           - Implemented FromHandle
20620           - Implemented IsMnemonic
20621           - Implemented ReflectMessage
20622           - All public and protected Static Methods are now complete
20623
20624 2004-09-10 16:54  pbartok
20625
20626         * Control.cs:
20627           - Implemented remaining missing public instance properties
20628           - Alphabetized some out of order properties
20629
20630 2004-09-10 05:51  ravindra
20631
20632         * PictureBox.cs: Added a check for null image.
20633
20634 2004-09-10 00:59  jordi
20635
20636         * GroupBox.cs: remove cvs tag
20637
20638 2004-09-09 05:25  ravindra
20639
20640         * ToolBar.cs: Make redraw accessible from ToolBarButton.
20641
20642 2004-09-09 05:23  ravindra
20643
20644         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
20645           parent redraw.
20646
20647 2004-09-09 02:28  pbartok
20648
20649         * ThemeWin32Classic.cs:
20650           - Improve disabled string look
20651
20652 2004-09-09 01:15  jordi
20653
20654         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
20655           args and handler
20656
20657 2004-09-08 23:56  ravindra
20658
20659         * ItemBoundsPortion.cs: It's enum, not a class!
20660
20661 2004-09-08 23:47  ravindra
20662
20663         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
20664           Enums for Form.
20665
20666 2004-09-08 21:13  ravindra
20667
20668         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
20669           ListView control.
20670
20671 2004-09-08 21:03  ravindra
20672
20673         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
20674           avoid crash.
20675
20676 2004-09-08 21:01  ravindra
20677
20678         * ScrollableControl.cs: Removed unreachable code.
20679
20680 2004-09-08 06:45  jordi
20681
20682         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
20683
20684 2004-09-08 01:00  jackson
20685
20686         * XplatUIX11.cs: Only run the timers when updating the message
20687           queue. This effectively gives X messages a higher priority then
20688           timer messages. Timers still need love though
20689
20690 2004-09-07 14:01  jackson
20691
20692         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
20693           this for us and the handle is no longer valid.
20694
20695 2004-09-07 13:59  jackson
20696
20697         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
20698           loop that manages to not crash. TODO: Add poll and cleanup timers
20699
20700 2004-09-07 11:12  jordi
20701
20702         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
20703
20704 2004-09-07 03:40  jordi
20705
20706         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
20707           fixes, methods, multiple links
20708
20709 2004-09-06 06:55  jordi
20710
20711         * Control.cs: Caches ClientRectangle rectangle value
20712
20713 2004-09-05 02:03  jordi
20714
20715         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
20716           certain situations
20717
20718 2004-09-04 11:10  jordi
20719
20720         * Label.cs: Refresh when font changed
20721
20722 2004-09-02 16:24  pbartok
20723
20724         * Control.cs:
20725           - Added sanity check to creation of double buffer bitmap
20726
20727 2004-09-02 16:24  pbartok
20728
20729         * ButtonBase.cs:
20730           - Fixed selection of text color
20731           - Fixed handling of resize event; now properly recreates double
20732             buffering bitmap
20733           - Added missing assignment of TextAlignment
20734           - Added proper default for TextAlignment
20735
20736 2004-09-02 14:26  pbartok
20737
20738         * RadioButton.cs:
20739           - Added missing RadioButton.RadioButtonAccessibleObject class
20740
20741 2004-09-02 14:26  pbartok
20742
20743         * Control.cs:
20744           - Added missing Control.ControlAccessibleObject class
20745           - Started to implement Select()ion mechanisms, still very incomplete
20746
20747 2004-09-02 14:25  pbartok
20748
20749         * AccessibleObject.cs:
20750           - Added missing methods
20751
20752 2004-09-02 14:23  pbartok
20753
20754         * AccessibleNavigation.cs, AccessibleSelection.cs:
20755           - Initial check-in
20756
20757 2004-09-02 10:32  jordi
20758
20759         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
20760           pool for pens, brushes, and hatchbruses
20761
20762 2004-09-01 15:30  jackson
20763
20764         * StatusBar.cs: Fix typo
20765
20766 2004-09-01 14:44  pbartok
20767
20768         * RadioButton.cs:
20769           - Fixed state
20770
20771 2004-09-01 14:39  pbartok
20772
20773         * Button.cs, RadioButton.cs:
20774           - Functional initial check-in
20775
20776 2004-09-01 14:01  pbartok
20777
20778         * CheckBox.cs:
20779           - Added missing default
20780           - Added missing region mark
20781
20782 2004-09-01 09:10  jordi
20783
20784         * Label.cs: fixes method signatures, new methods, events, fixes
20785           autosize
20786
20787 2004-09-01 07:19  jordi
20788
20789         * Control.cs: Init string variables with an empty object
20790
20791 2004-09-01 04:20  jordi
20792
20793         * Control.cs: fires OnFontChanged event
20794
20795 2004-08-31 20:07  pbartok
20796
20797         * ButtonBase.cs:
20798           - Enabled display of strings
20799
20800 2004-08-31 20:05  pbartok
20801
20802         * Form.cs:
20803           - Added (partial) implementation of DialogResult; rest needs to be
20804             implemented when the modal loop code is done
20805
20806 2004-08-31 19:55  pbartok
20807
20808         * CheckBox.cs:
20809           - Fixed to match the removal of the needs_redraw concept
20810
20811 2004-08-31 19:55  pbartok
20812
20813         * ButtonBase.cs:
20814           - Removed the rather odd split between 'needs redraw' and redrawing
20815           - Now handles the events that require regeneration (ambient
20816             properties and size)
20817
20818 2004-08-31 19:41  pbartok
20819
20820         * Control.cs:
20821           - Added firing of BackColorChanged event
20822           - Added TopLevelControl property
20823           - Fixed handling of WM_ERASEBKGRND message
20824
20825 2004-08-31 12:49  pbartok
20826
20827         * ButtonBase.cs:
20828           - Removed debug
20829           - Minor fixes
20830
20831 2004-08-31 12:48  pbartok
20832
20833         * CheckBox.cs:
20834           - Finished (famous last words)
20835
20836 2004-08-31 04:35  jordi
20837
20838         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
20839           scrolling bugs, adds new methods
20840
20841 2004-08-30 14:42  pbartok
20842
20843         * CheckBox.cs:
20844           - Implemented CheckBox drawing code
20845
20846 2004-08-30 14:42  pbartok
20847
20848         * ButtonBase.cs:
20849           - Made Redraw() and CheckRedraw() virtual
20850           - Improved mouse up/down/move logic to properly track buttons
20851
20852 2004-08-30 09:44  pbartok
20853
20854         * CheckBox.cs:
20855           - Updated to fix broken build. Not complete yet.
20856
20857 2004-08-30 09:28  pbartok
20858
20859         * CheckState.cs:
20860           - Initial checkin
20861
20862 2004-08-30 09:17  pbartok
20863
20864         * Appearance.cs:
20865           - Initial check-in
20866
20867 2004-08-27 16:12  ravindra
20868
20869         * ToolBarButton.cs: Added TypeConverter attribute.
20870
20871 2004-08-27 16:07  ravindra
20872
20873         * ImageIndexConverter.cs: Implemented.
20874
20875 2004-08-27 14:17  pbartok
20876
20877         * Control.cs:
20878           - Removed unneeded stack vars
20879           - First attempt to fix sizing issues when layout is suspended
20880
20881 2004-08-25 15:35  jordi
20882
20883         * ScrollBar.cs: more fixes to scrollbar
20884
20885 2004-08-25 14:04  ravindra
20886
20887         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
20888           Added the missing divider code and grip for ToolBar Control.
20889
20890 2004-08-25 13:20  pbartok
20891
20892         * Control.cs:
20893           - Control now properly passes the ambient background color to child
20894             controls
20895
20896 2004-08-25 13:20  jordi
20897
20898         * ScrollBar.cs: small bug fix regarding bar position
20899
20900 2004-08-25 12:33  pbartok
20901
20902         * Timer.cs:
20903           - Now only calls SetTimer or KillTimer if the enabled state has
20904           changed
20905
20906 2004-08-25 12:33  pbartok
20907
20908         * XplatUIWin32.cs:
20909           - Fixed timer handling, now seems to work
20910           - Improved error message for window creation
20911
20912 2004-08-25 12:32  pbartok
20913
20914         * Control.cs:
20915           - Fixed generation of MouseUp message
20916
20917 2004-08-25 12:29  jordi
20918
20919         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
20920           and fixes for progressbar
20921
20922 2004-08-24 18:43  ravindra
20923
20924         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
20925           in ToolBar control.
20926
20927 2004-08-24 17:15  pbartok
20928
20929         * Panel.cs:
20930           - Added #region
20931           - Added missing events
20932           - Alphabetized
20933
20934 2004-08-24 17:14  pbartok
20935
20936         * StatusBar.cs, PictureBox.cs:
20937           - Now uses Control's CreateParams
20938
20939 2004-08-24 16:36  pbartok
20940
20941         * XplatUIX11.cs:
20942           - Fixed background color handling
20943           - Fixed sending of enter/leave events on a grab
20944
20945 2004-08-24 16:35  pbartok
20946
20947         * X11Structs.cs:
20948           - Refined definitions for CrossingEvent
20949
20950 2004-08-24 12:37  jordi
20951
20952         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
20953           formmating, methods signature, and adds missing events
20954
20955 2004-08-24 12:24  jordi
20956
20957         * Control.cs: fire OnEnabledChanged event
20958
20959 2004-08-24 11:17  pbartok
20960
20961         * XplatUIWin32.cs:
20962           - Implemented SetTimer() and KillTimer()
20963
20964 2004-08-24 11:16  pbartok
20965
20966         * XplatUIX11.cs:
20967           - Now uses Remove instead of Add to kill the timer
20968
20969 2004-08-24 10:16  jackson
20970
20971         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
20972           picture boxes in the theme now. Draw picture box borders and obey
20973           sizing modes
20974
20975 2004-08-24 05:49  jackson
20976
20977         * Timer.cs: Remove top secret debugging code
20978
20979 2004-08-24 05:34  jackson
20980
20981         * PictureBox.cs: Temp hack to make picture boxes draw their full
20982           image
20983
20984 2004-08-24 05:29  jackson
20985
20986         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20987           XplatUIX11.cs: Move timers to the driver level. On X they are
20988           queued by the driver and checked on idle.
20989
20990 2004-08-24 01:07  jackson
20991
20992         * XplatUIX11.cs: Use a queue for async messages instead of passing
20993           them as ClientMessages since that was totally broken. Also simply
20994           check for events and return an idle message if none are found. This
20995           gives us an idle handler, and prevents deadlocking when no messages
20996           are in the queue.
20997
20998 2004-08-23 18:19  ravindra
20999
21000         * XplatUIWin32.cs: Removed the unwanted destructor.
21001
21002 2004-08-23 17:27  pbartok
21003
21004         * ButtonBase.cs:
21005           - Finishing touches. Works now, just needs some optimizations.
21006
21007 2004-08-23 16:53  jordi
21008
21009         * ScrollBar.cs: small fix
21010
21011 2004-08-23 16:45  pbartok
21012
21013         * Application.cs:
21014           - Removed debug output
21015           - Simplifications
21016
21017 2004-08-23 16:43  jordi
21018
21019         * ScrollBar.cs: [no log message]
21020
21021 2004-08-23 16:10  pbartok
21022
21023         * Form.cs:
21024           - Fixed handling of WM_CLOSE message
21025           - Removed debug output
21026
21027 2004-08-23 16:09  pbartok
21028
21029         * Application.cs:
21030           - Added handling of Idle event
21031           - Added handling of form closing
21032           - Fixed reporting of MessageLoop property
21033           - Removed some unneeded code, should provide a bit of a speedup
21034
21035 2004-08-23 15:22  pbartok
21036
21037         * Control.cs:
21038           - Added InitLayout() method
21039           - Added code to properly perform layout when Anchor or Dock property
21040             is changed
21041           - Changed 'interpretation' of ResumeLayout. MS seems to have a
21042             LAMESPEC, tried to do it in a way that makes sense
21043
21044 2004-08-23 14:10  jordi
21045
21046         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
21047           properties and methods
21048
21049 2004-08-23 13:55  pbartok
21050
21051         * Control.cs:
21052           - Properly fixed Jordi's last fix
21053           - Now uses Cursor's Position property instead of calling XplatUI
21054           directly
21055
21056 2004-08-23 13:44  jordi
21057
21058         * PaintEventHandler.cs: Adding missing attribute
21059
21060 2004-08-23 13:39  pbartok
21061
21062         * Cursor.cs:
21063           - Implemented Position property
21064
21065 2004-08-23 13:39  pbartok
21066
21067         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21068           - Added method to move mouse cursor
21069
21070 2004-08-23 13:39  pbartok
21071
21072         * XplatUIX11.cs:
21073           - Fixed setting of background color
21074           - Added method to move mouse cursor
21075
21076 2004-08-23 13:16  jordi
21077
21078         * Control.cs: avoids null exception
21079
21080 2004-08-22 17:46  jackson
21081
21082         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
21083           PictureBox
21084
21085 2004-08-22 17:40  jackson
21086
21087         * XplatUIX11.cs: Add some missing locks
21088
21089 2004-08-22 15:10  pbartok
21090
21091         * Control.cs, Form.cs:
21092           - Removed OverlappedWindow style from Control, instead it's default
21093             now is child
21094           - Made form windows OverlappedWindow by default
21095
21096 2004-08-22 13:34  jackson
21097
21098         * ScrollBar.cs: Update the position through the Value property so
21099           the OnValueChanged event is raised.
21100
21101 2004-08-22 12:04  pbartok
21102
21103         * SWF.csproj:
21104           - Added Cursor.cs and UserControl.cs
21105
21106 2004-08-22 12:03  pbartok
21107
21108         * Cursor.cs:
21109           - Started implementation, not usable yet
21110
21111 2004-08-22 12:00  pbartok
21112
21113         * UserControl.cs:
21114           - Implemented UserControl (complete)
21115
21116 2004-08-21 19:20  ravindra
21117
21118         * ToolBar.cs: Correcting the formatting mess of VS.NET.
21119
21120 2004-08-21 18:49  ravindra
21121
21122         * ToolBar.cs: Probably this completes the missing attributes in
21123           toolbar control.
21124
21125 2004-08-21 18:03  ravindra
21126
21127         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
21128           Fixed toolbar control signatures.
21129
21130 2004-08-21 16:32  pbartok
21131
21132         * LinkLabel.cs:
21133           - Signature Fixes
21134
21135 2004-08-21 16:30  pbartok
21136
21137         * Label.cs:
21138           - Signature fixes
21139
21140 2004-08-21 16:19  pbartok
21141
21142         * Control.cs, Label.cs:
21143           - Signature fixes
21144
21145 2004-08-21 15:57  pbartok
21146
21147         * ButtonBase.cs:
21148           - Added loads of debug output for development
21149           - Fixed typo in method name
21150
21151 2004-08-21 15:52  pbartok
21152
21153         * ToolBarButtonClickEventArgs.cs:
21154           - Added missing base class
21155
21156 2004-08-21 14:53  pbartok
21157
21158         * Control.cs:
21159           - Updated to match new GrabWindow signature
21160
21161 2004-08-21 14:51  pbartok
21162
21163         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21164           - Added method to get default display size
21165
21166 2004-08-21 14:23  pbartok
21167
21168         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21169           - Added method to query current grab state
21170           - Added argument to allow confining a grab to a window
21171
21172 2004-08-21 14:22  pbartok
21173
21174         * Keys.cs:
21175           - Added [Flags] attribute so that modifiers can be used in bitwise
21176           ops
21177
21178 2004-08-21 14:21  pbartok
21179
21180         * TrackBar.cs, ScrollBar.cs:
21181           - Replaced direct XplatUI calls with their Control counterpart
21182
21183 2004-08-21 13:32  pbartok
21184
21185         * Control.cs:
21186           - Implemented Created property
21187
21188 2004-08-21 13:28  pbartok
21189
21190         * Control.cs:
21191           - Implemented ContainsFocus
21192
21193 2004-08-21 13:26  pbartok
21194
21195         * Control.cs:
21196           - Implemented CausesValidation
21197
21198 2004-08-21 13:21  pbartok
21199
21200         * Control.cs:
21201           - Implemented CanFocus
21202           - Implemented CanSelect
21203           - Implemented Capture
21204
21205 2004-08-21 12:35  pbartok
21206
21207         * XplatUIWin32.cs:
21208           - Fixed bug with Async message handling
21209           - Implemented getting the ModifierKeys
21210
21211 2004-08-21 12:32  jackson
21212
21213         * AsyncMethodResult.cs: Make sure we have the mutex before we
21214           release it. Fixes BeginInvoke on windows
21215
21216 2004-08-21 11:31  pbartok
21217
21218         * XplatUIWin32.cs, XplatUIX11.cs:
21219           - Drivers now return proper mouse state
21220
21221 2004-08-21 10:54  jackson
21222
21223         * Control.cs: Implement EndInvoke
21224
21225 2004-08-21 10:48  jackson
21226
21227         * Timer.cs: Remove unneeded finalizer
21228
21229 2004-08-20 19:52  ravindra
21230
21231         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
21232           in mouse event handling in the ToolBar control.
21233
21234 2004-08-20 19:50  ravindra
21235
21236         * ImageList.cs: Changed draw method to use the arguments passed in
21237           to draw the image.
21238
21239 2004-08-20 18:58  pbartok
21240
21241         * XplatUIStructs.cs:
21242           - Added private message for async communication
21243
21244 2004-08-20 17:38  ravindra
21245
21246         * Control.cs: Made RightToLeft property virtual and removed a
21247           Console.WriteLine.
21248
21249 2004-08-20 14:39  jordi
21250
21251         * ThemeGtk.cs: use style_attach
21252
21253 2004-08-20 14:39  pbartok
21254
21255         * XplatUIWin32.cs:
21256           - Added jackson's Async code from X11 to Win32
21257
21258 2004-08-20 14:09  pbartok
21259
21260         * SWF.csproj:
21261           - Added all new files
21262
21263 2004-08-20 14:09  pbartok
21264
21265         * Control.cs:
21266           - Added call to set window background color
21267
21268 2004-08-20 14:03  pbartok
21269
21270         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21271           - Added method for setting the window background
21272
21273 2004-08-20 14:02  pbartok
21274
21275         * XplatUIWin32.cs:
21276           - Added method for setting the background color
21277           - Added handling for erasing the window background
21278
21279 2004-08-20 13:45  jordi
21280
21281         * TrackBar.cs: fixes timer, new properties and methods
21282
21283 2004-08-20 13:34  jackson
21284
21285         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
21286           correct thread
21287
21288 2004-08-20 13:22  jackson
21289
21290         * Timer.cs: Timer Tick events are now handed through Controls Async
21291           mechanism so the callbacks are executed in the same thread as X
21292
21293 2004-08-20 13:19  jackson
21294
21295         * XplatUIDriver.cs: Expose functionality to send async messages
21296           through the driver
21297
21298 2004-08-20 13:18  jackson
21299
21300         * Control.cs: Implement Begininvoke
21301
21302 2004-08-20 13:14  jackson
21303
21304         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
21305           messages through the driver
21306
21307 2004-08-20 13:12  jackson
21308
21309         * XplatUIX11.cs: Lock before all X operations. Also added Async
21310           method functionality through XSendEvent
21311
21312 2004-08-20 13:11  jackson
21313
21314         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
21315           This will screw up on 64 bit systems)
21316
21317 2004-08-20 13:10  jackson
21318
21319         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
21320           Async messages through X/Win32
21321
21322 2004-08-19 19:39  pbartok
21323
21324         * XplatUIX11.cs:
21325           - Updated code to match new HandleData.DeviceContext type
21326
21327 2004-08-19 19:38  pbartok
21328
21329         * HandleData.cs:
21330           - Made DeviceContext a generic object to allow usage from various
21331           drivers
21332           - Added support for queueing Windows messages
21333
21334 2004-08-19 19:37  pbartok
21335
21336         * XplatUIWin32.cs:
21337           - Added generation of MouseEnter, MouseLeave and MouseHover events
21338           - Added cleanup on EndPaint
21339
21340 2004-08-19 19:17  pbartok
21341
21342         * Control.cs:
21343           - Added handling of WM_MOUSEHOVER
21344           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
21345           code
21346
21347 2004-08-19 18:55  jordi
21348
21349         * ThemeGtk.cs: fixes button order
21350
21351 2004-08-19 18:12  jordi
21352
21353         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
21354
21355 2004-08-19 17:09  pbartok
21356
21357         * Control.cs:
21358           - Added Right property
21359           - Added RightToLeft property
21360
21361 2004-08-19 16:27  jordi
21362
21363         * ThemeGtk.cs: experimental GTK theme support
21364
21365 2004-08-19 16:26  jordi
21366
21367         * ITheme.cs, Theme.cs: move themes from an interface to a class
21368
21369 2004-08-19 16:25  jordi
21370
21371         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
21372           theme enhancaments
21373
21374 2004-08-19 16:04  pbartok
21375
21376         * XplatUIX11.cs:
21377           - Added colormap basics
21378           - Added a way to re-initialize with a different display handle
21379           - Fixed setting of the window background color
21380           - Added various X11 imports related to colors and colormaps
21381
21382 2004-08-19 15:51  pbartok
21383
21384         * X11Structs.cs:
21385           - Removed packing hints (Paolo suggested this a while back)
21386           - fixed colormap type
21387           - Added default Atom types
21388           - Added Screen and color structs and enums
21389
21390 2004-08-19 15:39  pbartok
21391
21392         * ImageList.cs:
21393           - Added missing Draw() method
21394           - Added missing RecreateHandle event
21395
21396 2004-08-19 15:30  pbartok
21397
21398         * Form.cs:
21399           - Added handling of WM_CLOSE
21400
21401 2004-08-18 13:16  jordi
21402
21403         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
21404           a table
21405
21406 2004-08-18 09:56  jordi
21407
21408         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
21409
21410 2004-08-17 15:31  ravindra
21411
21412         * SWF.csproj: Updated project.
21413
21414 2004-08-17 15:25  pbartok
21415
21416         * Control.cs:
21417           - Drawing improvement; don't call UpdateBounds if we are not visible
21418             (or have been minimized)
21419
21420 2004-08-17 15:24  pbartok
21421
21422         * XplatUIWin32.cs:
21423           - Finished IsVisible
21424           - Added Win32GetWindowPlacement
21425
21426 2004-08-17 15:08  jackson
21427
21428         * Panel.cs: Initial checkin of the Panel
21429
21430 2004-08-17 14:25  pbartok
21431
21432         * Control.cs:
21433           - Fixed broken handling of default window sizes
21434
21435 2004-08-17 13:29  jackson
21436
21437         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
21438           has a large startup time.
21439
21440 2004-08-17 10:25  jackson
21441
21442         * HandleData.cs: union areas properly
21443
21444 2004-08-17 10:12  jackson
21445
21446         * HandleData.cs: union areas properly
21447
21448 2004-08-16 20:00  ravindra
21449
21450         * ToolBar.cs, ToolBarButton.cs: Added attributes.
21451
21452 2004-08-16 18:48  ravindra
21453
21454         * ToolBar.cs: Added attributes.
21455
21456 2004-08-16 17:17  ravindra
21457
21458         * SWF.csproj: Updated project.
21459
21460 2004-08-16 17:16  jackson
21461
21462         * XplatUIX11.cs: Check for more expose events before sending a
21463           WM_PAINT so they can all be grouped together. This makes dragging a
21464           window across another window redraw in a sane way.
21465
21466 2004-08-16 15:47  pbartok
21467
21468         * Control.cs:
21469           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
21470             support OnMouseEnter/Leave()
21471           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
21472             exposure handling
21473
21474 2004-08-16 15:46  pbartok
21475
21476         * XplatUIStructs.cs, XplatUIX11.cs:
21477           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
21478           OnMouseEnter/Leave()
21479
21480 2004-08-16 15:34  jackson
21481
21482         * XplatUIX11.cs: Group multiple expose events in HandleData, make
21483           sure messages get the message field set to WM_NULL if they are not
21484           handled.
21485
21486 2004-08-16 15:24  jackson
21487
21488         * HandleData.cs: HandleData is used for storing message information
21489           for window handles
21490
21491 2004-08-15 17:23  ravindra
21492
21493         * ColorDepth.cs: Added attribute.
21494
21495 2004-08-15 17:23  ravindra
21496
21497         * SWF.csproj: Updated project for ToolBar Control.
21498
21499 2004-08-15 17:20  ravindra
21500
21501         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
21502           control and also dos2unix format.
21503
21504 2004-08-15 17:13  ravindra
21505
21506         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
21507           ToolBarButtonClickEventArgs.cs,
21508           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
21509           ToolBarTextAlign.cs: First Implementation of ToolBar control.
21510
21511 2004-08-15 15:31  pbartok
21512
21513         * ButtonBase.cs:
21514           - First (mostly) working version
21515
21516 2004-08-13 16:15  pbartok
21517
21518         * Control.cs:
21519           - Fixed Anchor default
21520
21521 2004-08-13 15:43  pbartok
21522
21523         * Control.cs:
21524           - Changed GetCursorPos signature
21525
21526 2004-08-13 15:42  pbartok
21527
21528         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21529           - Changed signature for GetCursorPos
21530
21531 2004-08-13 15:25  pbartok
21532
21533         * XplatUIX11.cs:
21534           - Cleanup
21535           - Fixed resizing/exposure handling
21536
21537 2004-08-13 15:22  jordi
21538
21539         * ThemeWin32Classic.cs: removes redundant code and fixes issues
21540           with tickposition
21541
21542 2004-08-13 14:55  jordi
21543
21544         * TrackBar.cs: change from wndproc to events
21545
21546 2004-08-13 13:00  jordi
21547
21548         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21549           XplatUIX11.cs: implements PointToClient (ScreenToClient)
21550
21551 2004-08-13 12:53  pbartok
21552
21553         * XplatUIWin32.cs:
21554           - Changed GetWindowPos to also provide client area size
21555           - Fixed broken prototypes for several win32 functions
21556
21557 2004-08-13 12:53  pbartok
21558
21559         * XplatUI.cs, XplatUIDriver.cs:
21560           - Changed GetWindowPos to also provide client area size
21561
21562 2004-08-13 12:52  pbartok
21563
21564         * XplatUIX11.cs:
21565           - Added generation of WM_POSCHANGED
21566           - Changed GetWindowPos to also provide client area size
21567
21568 2004-08-13 12:52  pbartok
21569
21570         * Control.cs:
21571           - Added Dispose() and destructor
21572           - Fixed resizing and bounds calculation
21573           - Fixed Layout
21574           - Added memory savings for invisible windows
21575
21576 2004-08-13 12:46  jordi
21577
21578         * TrackBar.cs: adds timer and grap window
21579
21580 2004-08-13 10:25  jackson
21581
21582         * Timer.cs: SWF Timer
21583
21584 2004-08-12 16:59  pbartok
21585
21586         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21587           - Implemented method to get current mouse position
21588
21589 2004-08-12 14:29  jordi
21590
21591         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
21592           enhancement, fix mouse problems, highli thumb, etc
21593
21594 2004-08-12 13:31  pbartok
21595
21596         * Control.cs:
21597           - Fixed Anchoring bugs
21598
21599 2004-08-12 13:01  jackson
21600
21601         * StatusBar.cs: Don't forget things
21602
21603 2004-08-12 12:54  jackson
21604
21605         * ThemeWin32Classic.cs: Handle owner draw status bars
21606
21607 2004-08-12 12:54  jackson
21608
21609         * StatusBar.cs: Implement missing properties, events, and methods.
21610           Handle mouse clicking
21611
21612 2004-08-12 10:19  jackson
21613
21614         * StatusBarPanelClickEventArgs.cs,
21615           StatusBarPanelClickEventHandler.cs: Classes for handling status
21616           bar panel click events
21617
21618 2004-08-12 10:10  jackson
21619
21620         * Control.cs: Add missing properties
21621
21622 2004-08-12 09:46  pbartok
21623
21624         * BindingsManagerBase.cs:
21625           - Name changed to BindingManagerBase.cs
21626
21627 2004-08-12 09:25  jordi
21628
21629         * ScrollableControl.cs: calls ctrlbase instead of exeception
21630
21631 2004-08-11 16:28  pbartok
21632
21633         * InputLanguageChangingEventArgs.cs:
21634           - Never check in before compiling. Fixes the last check-in
21635
21636 2004-08-11 16:26  pbartok
21637
21638         * InputLanguageChangingEventArgs.cs:
21639           - More signature fixes
21640
21641 2004-08-11 16:20  pbartok
21642
21643         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
21644           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
21645           ImageListStreamer.cs, InputLanguage.cs,
21646           InputLanguageChangedEventArgs.cs,
21647           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
21648           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
21649           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
21650           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21651           - Signature fixes
21652
21653 2004-08-11 16:16  pbartok
21654
21655         * Application.cs:
21656           - Fixed Signature
21657           - Added .Net 1.1 method
21658
21659 2004-08-11 15:25  pbartok
21660
21661         * SWF.csproj:
21662           - Fixed BindingManagerBase.cs filename
21663
21664 2004-08-11 15:22  pbartok
21665
21666         * BindingManagerBase.cs:
21667           - Was checked in with wrong filename
21668
21669 2004-08-11 14:50  pbartok
21670
21671         * SWF.csproj:
21672           - Updated
21673
21674 2004-08-11 13:41  jordi
21675
21676         * XplatUIWin32.cs: Fixes ClientRect
21677
21678 2004-08-11 13:19  pbartok
21679
21680         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21681           XplatUIX11.cs:
21682           - We had SetWindowPos and MoveWindow to set window positions and
21683             size, removed MoveWindow. We have GetWindowPos, so it made sense to
21684             keep SetWindowPos as matching counterpart
21685           - Added some X11 sanity checking
21686
21687 2004-08-11 12:59  pbartok
21688
21689         * Control.cs:
21690           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
21691             (It seems that SetBounds is just a front for SetBoundsCore and
21692              SetBoundsCore updates the underlying window system and
21693              UpdateBounds is responsible for updating the variables associated
21694              with the Control and sending the events)
21695           - Major cleanup of Size handling; we now have two sizes, client_size
21696             and bounds. Bounds defines the window with decorations, client_size
21697             without them.
21698
21699 2004-08-11 12:55  pbartok
21700
21701         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21702           - Added method to calculate difference between decorated window and
21703             raw client area
21704
21705 2004-08-11 12:54  pbartok
21706
21707         * Label.cs:
21708           - Forcing redraw on resize
21709
21710 2004-08-11 11:43  pbartok
21711
21712         * ImageList.cs:
21713           - Removed disposing of the actual images when the list is disposed
21714
21715 2004-08-11 09:13  pbartok
21716
21717         * Control.cs:
21718           - Now properly reparents windows
21719
21720 2004-08-11 08:37  pbartok
21721
21722         * Control.cs:
21723           - Duh!
21724
21725 2004-08-11 07:47  pbartok
21726
21727         * Control.cs:
21728           - Rewrote the collection stuff. Might not be as fast now, not
21729             keeping the number of children around and accessible directly, but
21730             it's more straightforward
21731
21732 2004-08-11 07:44  pbartok
21733
21734         * AccessibleObject.cs:
21735           - Fixed to match ControlCollection rewrite
21736
21737 2004-08-11 07:43  pbartok
21738
21739         * ImageList.cs:
21740           - Added missing creation of the collection list
21741
21742 2004-08-10 20:08  jackson
21743
21744         * StatusBar.cs: Get the paint message from WndProc
21745
21746 2004-08-10 19:31  jackson
21747
21748         * ThemeWin32Classic.cs: Create Brushes as little as possible
21749
21750 2004-08-10 19:20  jackson
21751
21752         * UICues.cs: Add Flags attribute
21753
21754 2004-08-10 19:19  jackson
21755
21756         * StatusBarPanel.cs: Signature cleanup
21757
21758 2004-08-10 19:10  jackson
21759
21760         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
21761           Initial implementation of status bar item drawing
21762
21763 2004-08-10 17:27  jordi
21764
21765         * TrackBar.cs: add missing methods, properties, and restructure to
21766           hide extra ones
21767
21768 2004-08-10 16:24  jackson
21769
21770         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
21771           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
21772           attribute
21773
21774 2004-08-10 13:21  jordi
21775
21776         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
21777           enhancements and standarize on win colors defaults
21778
21779 2004-08-10 12:52  jackson
21780
21781         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
21782           ThemeWin32Classic.cs: Implement DrawItem functionality
21783
21784 2004-08-10 12:47  jordi
21785
21786         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
21787
21788 2004-08-10 12:32  jordi
21789
21790         * Control.cs: throw ontextchange event
21791
21792 2004-08-10 11:43  pbartok
21793
21794         * Control.cs:
21795           - Added more to the still unfinished Dock/Anchor layout code
21796
21797 2004-08-10 11:39  pbartok
21798
21799         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21800           - Added GetWindowPos method
21801
21802 2004-08-10 11:36  pbartok
21803
21804         * XplatUIWin32.cs:
21805           - Implemented several methods
21806
21807 2004-08-10 09:47  jackson
21808
21809         * TrackBar.cs: Allow control to handle buffering
21810
21811 2004-08-10 09:41  jackson
21812
21813         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
21814
21815 2004-08-10 09:24  jackson
21816
21817         * Label.cs, LinkLabel.cs: Let Control handle buffering.
21818
21819 2004-08-10 09:09  jackson
21820
21821         * StatusBar.cs: Let Control handle all the buffering.
21822
21823 2004-08-10 09:08  jackson
21824
21825         * Control.cs: Control will now handle the buffering code, so each
21826           control does not have to implement this.
21827
21828 2004-08-10 08:34  jackson
21829
21830         * XplatUIDriver.cs: Use default colors from the theme
21831
21832 2004-08-09 17:12  pbartok
21833
21834         * ImageList.cs:
21835           - Fixed several bugs Ravindra pointed out
21836
21837 2004-08-09 16:11  pbartok
21838
21839         * Control.cs:
21840           - Added incomplete dock layout code
21841           - Added support for mouse wheel
21842
21843 2004-08-09 16:09  pbartok
21844
21845         * XplatUIX11.cs:
21846           - Added handling for middle and right mousebutton
21847           - Added handling for mouse wheel
21848           - Added handling for key state and mouse state and position
21849           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
21850           messages
21851
21852 2004-08-09 15:40  jackson
21853
21854         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
21855           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
21856           checkin
21857
21858 2004-08-09 15:37  jackson
21859
21860         * StatusBar.cs: Initial implementation of StatusBar
21861
21862 2004-08-09 15:36  jackson
21863
21864         * ITheme.cs: Add support for drawing status bar and getting status
21865           bar item sizes
21866
21867 2004-08-09 15:35  pbartok
21868
21869         * MouseButtons.cs:
21870           - Fixed values
21871
21872 2004-08-09 15:34  jackson
21873
21874         * ThemeWin32Classic.cs: Add support for drawing status bar and get
21875           status bar item sizes
21876
21877 2004-08-09 15:21  jackson
21878
21879         * ThemeWin32Classic.cs: Use known colors for default control
21880           colours
21881
21882 2004-08-09 15:12  jackson
21883
21884         * ThemeWin32Classic.cs: Make the default font static, it is static
21885           in control so this doesn't change functionality and creating fonts
21886           is sloooooow.
21887
21888 2004-08-09 14:56  pbartok
21889
21890         * X11Structs.cs:
21891           - Added GrabMode enum
21892
21893 2004-08-09 14:55  pbartok
21894
21895         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21896           - Removed Run method, was only required for initial development
21897
21898 2004-08-09 14:51  pbartok
21899
21900         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21901           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
21902           capture
21903
21904 2004-08-09 13:48  pbartok
21905
21906         * XplatUIX11.cs:
21907           - Fixed default sizing for child windows
21908
21909 2004-08-09 12:56  pbartok
21910
21911         * XplatUIX11.cs:
21912           - Added generation of WM_DESTROY message
21913           - Added handling of window manager induced shutdown
21914
21915 2004-08-09 11:31  jackson
21916
21917         * ThemeWin32Classic.cs: New names for control properties
21918
21919 2004-08-09 11:25  jackson
21920
21921         * Control.cs: Use new color names
21922
21923 2004-08-09 11:02  jackson
21924
21925         * XplatUI.cs: Get default window properties from the theme
21926
21927 2004-08-09 11:01  jackson
21928
21929         * ITheme.cs: The theme engine now controls default window
21930           properties
21931
21932 2004-08-09 11:00  jackson
21933
21934         * ThemeWin32Classic.cs: Add default window color properties
21935
21936 2004-08-09 10:17  jackson
21937
21938         * ThemeWin32Classic.cs: Use correct default back color
21939
21940 2004-08-09 10:05  jackson
21941
21942         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
21943           the theme now.
21944
21945 2004-08-09 09:56  jackson
21946
21947         * XplatUI.cs: Remove defaults, these are handled by the theme now.
21948
21949 2004-08-09 09:54  jackson
21950
21951         * Control.cs: Get default properties from the theme.
21952
21953 2004-08-09 09:53  jackson
21954
21955         * ITheme.cs: Themes now handle default control properties
21956
21957 2004-08-09 09:53  jackson
21958
21959         * ThemeWin32Classic.cs: Themes now handle default control
21960           properties so coloring will be consistent
21961
21962 2004-08-08 16:54  jordi
21963
21964         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
21965
21966 2004-08-08 15:08  jordi
21967
21968         * XplatUIX11.cs: fixes keyboard crash
21969
21970 2004-08-08 13:47  jordi
21971
21972         * Label.cs: add cvs header info
21973
21974 2004-08-08 12:09  jackson
21975
21976         * ThemeWin32Classic.cs: Add pen_buttonface
21977
21978 2004-08-08 11:52  jordi
21979
21980         * Label.cs, LinkLabel.cs: [no log message]
21981
21982 2004-08-08 11:34  jordi
21983
21984         * ThemeWin32Classic.cs: Use Windows Standard Colours
21985
21986 2004-08-07 17:32  jordi
21987
21988         * TrackBar.cs: throw exceptions of invalid enums values
21989
21990 2004-08-07 17:31  jordi
21991
21992         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
21993           draw method name
21994
21995 2004-08-07 16:56  jackson
21996
21997         * HorizontalAlignment.cs: Initial checkin
21998
21999 2004-08-07 13:16  jordi
22000
22001         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
22002           methods
22003
22004 2004-08-07 13:05  jordi
22005
22006         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
22007           GetSysColor defines
22008
22009 2004-08-06 18:01  pbartok
22010
22011         * ThemeWin32Classic.cs:
22012           - Fixed some rounding issues with float/int
22013
22014 2004-08-06 18:00  jackson
22015
22016         * DockStyle.cs, AnchorStyles.cs:
22017
22018                   Add flags and serializable attributes.
22019
22020 2004-08-06 17:46  pbartok
22021
22022         * XplatUIX11.cs:
22023           - Implemented GetParent
22024
22025 2004-08-06 17:18  pbartok
22026
22027         * TrackBar.cs:
22028           - Fixed some rounding issues with float/int
22029
22030 2004-08-06 17:17  pbartok
22031
22032         * X11Structs.cs, XplatUIX11.cs:
22033           - Fixed Refresh and Invalidate
22034
22035 2004-08-06 15:30  pbartok
22036
22037         * Control.cs, X11Structs.cs, XplatUIX11.cs:
22038           - Fixed recursive loop when resizing
22039           - Improved/fixed redrawing on expose messages
22040
22041 2004-08-06 09:53  jordi
22042
22043         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
22044           keyboard navigation
22045
22046 2004-08-06 08:02  pbartok
22047
22048         * X11Structs.cs, XplatUIX11.cs:
22049           - Fixed reparenting
22050           - Fixed window border creation
22051
22052 2004-08-05 15:38  pbartok
22053
22054         * XplatUIX11.cs:
22055           - Attempted fix for reparenting problems
22056
22057 2004-08-04 15:14  pbartok
22058
22059         * Control.cs:
22060           - Fixed Invalidation bug (calculated wrong client area)
22061           - Added ClientSize setter
22062
22063 2004-08-04 15:13  pbartok
22064
22065         * Form.cs:
22066           - Added AutoScale properties
22067
22068 2004-08-04 15:13  pbartok
22069
22070         * SWF.csproj:
22071           - Added latest files
22072
22073 2004-08-04 14:11  pbartok
22074
22075         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
22076           XplatUIX11.cs:
22077           - Added Invalidate handling
22078
22079 2004-08-03 17:09  jordi
22080
22081         * XplatUIDriver.cs: fixes spelling mistake
22082
22083 2004-07-27 09:53  jordi
22084
22085         * TrackBar.cs: fixes trackbar events, def classname, methods
22086           signature
22087
22088 2004-07-27 09:29  jordi
22089
22090         * ScrollBar.cs: fixes scrollbar events
22091
22092 2004-07-27 04:38  jordi
22093
22094         * Control.cs: changes to be able to run winforms samples
22095
22096 2004-07-26 11:42  jordi
22097
22098         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
22099           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
22100
22101 2004-07-26 05:41  jordi
22102
22103         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
22104           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
22105           implementation
22106
22107 2004-07-22 09:22  jordi
22108
22109         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
22110           check link overlapping, implement events, and fixes
22111
22112 2004-07-21 10:28  jordi
22113
22114         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
22115
22116 2004-07-21 10:19  jordi
22117
22118         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
22119           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
22120           LinkLabelLinkClickedEventArgs.cs,
22121           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
22122           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
22123           implementation
22124
22125 2004-07-19 13:09  jordi
22126
22127         * Control.cs, Label.cs: label control re-written: added missing
22128           functionlity, events, and properties
22129
22130 2004-07-19 10:49  jordi
22131
22132         * Control.cs: fixes SetBounds logic
22133
22134 2004-07-19 01:29  jordi
22135
22136         * Control.cs: Call RefreshWindow only if the window has created
22137
22138 2004-07-15 14:05  pbartok
22139
22140         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
22141           - Implemented ImageList and ImageList.ImageCollection classes
22142           - Added ColorDepth enumeration
22143           - Updated SWF VS.Net project
22144
22145 2004-07-15 11:06  jordi
22146
22147         * XplatUIStructs.cs: added MsgButons enum
22148
22149 2004-07-15 11:03  jordi
22150
22151         * Control.cs: added basic mouse handeling events
22152
22153 2004-07-15 03:38  jordi
22154
22155         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
22156           Vertical TrackBar control implementation
22157
22158 2004-07-13 09:33  jordi
22159
22160         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
22161
22162 2004-07-13 09:31  jordi
22163
22164         * Control.cs, Form.cs: commit: new properties and fixes form size
22165           problems
22166
22167 2004-07-09 14:13  miguel
22168
22169         * ProgressBar.cs: Spelling
22170
22171 2004-07-09 11:25  pbartok
22172
22173         * ProgressBar.cs:
22174           - Removed usage of Rectangle for drawing. Miguel pointed out it's
22175           faster
22176
22177 2004-07-09 11:17  miguel
22178
22179         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
22180
22181                 * ProgressBar.cs: Fixed spelling for `block'
22182
22183                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
22184                 style guidelines.
22185
22186                 Avoid using the += on rect.X, that exposed a bug in the compiler.
22187
22188 2004-07-08 23:21  pbartok
22189
22190         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
22191           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
22192           BaseCollection.cs, Binding.cs, BindingContext.cs,
22193           BindingMemberInfo.cs, BindingsCollection.cs,
22194           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
22195           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
22196           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
22197           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
22198           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
22199           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
22200           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
22201           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
22202           FrameStyle.cs, GiveFeedbackEventArgs.cs,
22203           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
22204           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
22205           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
22206           InputLanguageChangedEventArgs.cs,
22207           InputLanguageChangedEventHandler.cs,
22208           InputLanguageChangingEventArgs.cs,
22209           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
22210           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
22211           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
22212           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
22213           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
22214           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
22215           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
22216           QueryAccessibilityHelpEventArgs.cs,
22217           QueryAccessibilityHelpEventHandler.cs,
22218           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
22219           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
22220           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
22221           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
22222           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
22223           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
22224           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
22225           XplatUIX11.cs, lang.cs:
22226           - Initial check-in
22227