2007-01-10 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2007-01-10  Chris Toshok  <toshok@ximian.com>
2
3         * ContainerControl.cs (set_ActiveControl): rework this a bit (and
4         add some nice ascii art pictures and explanation of the process).
5         (GetMostDeeplyNestedActiveControl): new utility function we need
6         because our ActiveControl can refer to a child container with its
7         own ActiveControl.
8
9         * Form.cs (OnActivated): remove the call to SelectActiveControl
10         from here, since you can override this method and not chain up,
11         and winforms still sets the active control.
12         (OnCreateControl): also remove the unnecessary SelectActiveControl
13         call from here.
14         (WndProc): it's actually called from the WM_ACTIVATE block, just
15         before calling OnActivated.
16
17         * Control.cs (Select (Control)): move the call to XplatUI.SetFocus
18         inside the else.  the ActiveControl setter will end up setting
19         focus on @control.  This keeps us from setting it again (and
20         generating an extra LostFocus/GotFocus pair).
21         (Select (bool, bool)): reindent.
22
23 2007-01-10  Jonathan Pobst  <jpobst@novell.com>
24
25         * FlowLayoutPanel.cs, MenuStrip.cs, SplitContainer.cs, SplitterPanel.cs,
26         StatusStrip.cs, TableLayoutPanel.cs, TableLayoutStyleCollection.cs,
27         ToolStrip.cs, ToolStripComboBox.cs, ToolStripContainer.cs,
28         ToolStripContentPanel.cs, ToolStripControlHost.cs, ToolStripDropDown.cs,
29         ToolStripDropDownButton.cs, ToolStripDropDownItem.cs, ToolStripDropDownMenu.cs,
30         ToolStripItem.cs, ToolStripMenuItem.cs, ToolStripPanel.cs, ToolStripPanelRow.cs,
31         ToolStripSeparator.cs, ToolStripSplitButton.cs, ToolStripStatusLabel.cs
32         ToolStripTextBox.cs: Another wave of corcompare work.
33
34 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
35
36         * ColumnHeader.cs: Implement 2.0 AutoResize method using
37         the Width property.
38
39         * ListView.cs: Implement 2.0 AutoResizeColumn and AutoResizeColumns
40         methods by callling Column.AutoResize method on columns.
41
42 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
43
44         * Control.cs: Provide proper implementations of PreferredSize
45         and GetPreferredSize (2.0).
46
47 2007-01-09  Jonathan Pobst  <monkey@jpobst.com>
48
49         * Form.cs: Remove one character (!) to make my previous OnClosing
50         stuff work for modal windows like MessageBox.
51
52 2007-01-09  Carlos Alberto Cortez <calberto.cortez@gmail.com>
53
54         * ListView.cs:
55         * ThemeWin32Classic.cs: Use ListView.GetReorderedColumn instead of
56         ListView.Columns to get the last displayed column. Fixes #80452.
57
58 2007-01-09  Everaldo Canuto  <everaldo@simios.org>
59
60         * Label.cs, LinkLabel.cs: Source code identation fixes.
61
62 2007-01-08  Everaldo Canuto  <everaldo@simios.org>
63
64         * ToolBarButton.cs: Remove InvalidateBorder and use Invalidate instead,
65         we dont need to invalidate only borders because when we invalidate four
66         border lines the invalidate's generates a complete redraw of button, 
67         because it now invalidate a complete rect some other redraws operations
68         are fixed. Fixes #80196.
69         
70         * Theme.cs, ThemeNice.cs, ThemeClearLooks.cs, ThemeWin32Classic.cs:
71         Remove ToolBarInvalidateEntireButton as it is not used.
72
73 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
74         
75         * Form.cs: Make sure that both OnClosing and OnFormClosing are
76         called for 2.0 profile.
77         * CloseReason.cs: Make class internal for 1.1.
78
79 2007-01-08  Jonathan Pobst  <monkey@jpobst.com>
80
81         * ToolStripManager.cs: Implement FindToolStrip functionality.
82         * ToolStrip.cs: Register and unregister with ToolStripManager.
83
84 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
85
86         * Control.cs: This was messy.  2.0 moves much of ControlCollection
87         to ArrangedElementCollection.  Implemented this with as few #if's as 
88         possible (which is still too many).
89
90 2007-01-07  Jonathan Pobst  <monkey@jpobst.com>
91
92         * Control.cs: Implement SizeFromClientSize() [2.0].
93
94 2007-01-07  Everaldo Canuto  <everaldo@simios.org>
95
96         * Hwnd.cs: On GetClientRectangle add a new parameter border_static,
97         use Theme.BorderSize to calculate area instead of static value 1, 
98         by the way use new BorderStaticSize instead     Border3DSize when 
99         border_static is true. Fixes #79537.
100         
101         * XplatUIOSX.cs: Fix call to GetClientRectangle. 
102         
103         * ThemeWin32Classic.cs: On CPDrawBorder3D dont draw inner border when
104         it is not needed.
105
106 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
107
108         * Hwnd.cs: Gives more code legibility to GetWindowRectangle.
109
110 2007-01-06  Everaldo Canuto  <everaldo@simios.org>
111
112         * Label.cs: Override CreateParams to use WS_EX_STATICEDGE instead of
113         WS_EX_CLIENTEDGE in ExStyles when BorderStyle is Fixed3D, it is
114         
115         * Hwnd.cs: 
116         - border_static field added, it will used to define when a control 
117         theres 3D border but it must be static (thin).
118         - In GetWindowRectangle use Theme.BorderSize to calculate area 
119         instead of static value 1, by the way use new BorderStaticSize instead
120         Border3DSize when border_static is true.
121
122         * XplatUIX11.cs, XplatUIOSX.cs: 
123         - When WS_EX_STATICEDGE ExStyle is set define border_static as true.
124         
125         * Theme.cs: BorderStaticSize field added.
126
127 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
128
129         * XplatUIX11.cs: Removed unused hwnd var in SetBorderStyle.
130
131 2007-01-05  Everaldo Canuto  <everaldo@simios.org>
132
133         * Control.cs: Under InternalBorderStyle call RecreateHangle to 
134         mimic same behavior than win32 that set border only in CreateParams,
135         it fix problems under CreateParams overrides. Fix #79442 and partial
136         fix #79537.
137         
138         * XplatUIX11.cs: Dont set hwnd.border_style in SetBorderStyle instead
139         of thi control you must call recreate handle. 
140         
141         * XplatUIWin32.cs: Remove all SetBorderStyle code, for win32 we dont
142         need to do anything as RecreateHangle will take care about borders.
143
144 2007-01-05  Mike Kestner  <mkestner@novell.com>
145
146         * ListView.cs: hack to eliminate Lost/Got focus notifications on
147         cycles between the ItemControl and parent.  Fixes #80388.
148
149 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
150
151         * Control.cs: Lazy init layout engine. Do not directly use 
152         layout_engine since LayoutEngine may be overridden (on 2.0 profile).
153
154 2007-01-05  Chris Toshok  <toshok@ximian.com>
155
156         * DataGrid.cs: don't forceably rebind columns in SetDataSource
157         unless our list manager has changed (i.e. unless we have reason to
158         believe our columns have changed).  Fixes #80422.
159         
160         also, disable the call do BindColumns in
161         OnListManagerMetaDataChanged.  this breaks this test in 2.0 (in
162         1.1 the event isn't raised in response to a column addition on a
163         table.)
164
165 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
166
167         * Control.cs: Move LayoutEngine.Layout to the OnLayout method, so
168         that inheritors can not call it if they choose.  Fixes bug #80456.
169
170 2007-01-05  Andreia Gaita  <avidigal@novell.com>
171
172         * XplatUIWin32.cs: Initialize MSG.refobject at 0 so it 
173         doesn't blow up with a null exception on marshalling.
174         
175 2007-01-05  Jonathan Pobst  <monkey@jpobst.com>
176
177         * Control.cs: Implement several 2.0 protected properties and methods.
178         Ensure that all necessary events are being called when properties
179         are set.
180
181 2007-01-05  Mike Kestner  <mkestner@novell.com>
182
183         * ListView.cs: implement PgUp/PgDn for Details view.  Also
184         fixes First/LastVisibleIndex to use the item_control.ClientRect 
185         instead of the parent control.  Fixes #80378.
186
187 2006-01-05  Atsushi Enomoto  <atsushi@ximian.com>
188
189         * PageSetupDialog.cs : cosmetic refactoring; use RegionInfo to
190           determine whether to use yard-pound or not (bug #78399).
191
192 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
193
194         * FileDialog.cs: Sebastien fixed the libgdiplus png alpha
195         problems. So it is time to bring back the old popupbutton colors.
196
197 2006-01-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
198
199         * ColumnHeader.cs:
200         * ListView.cs: Implement 2.0 ColumnHeader.DisplayIndex
201         property by using the internal information of the
202         columns order in ListView.
203
204 2007-01-04  Jonathan Pobst  <monkey@jpobst.com>
205
206         * CommonDialog.cs, Cursor.cs, ErrorProvider.cs, HelpProvider.cs:
207         Add 2.0 Tag properties.
208
209         * LinkArea.cs: Add 2.0 ToString method.
210
211 2007-01-03  Chris Toshok  <toshok@ximian.com>
212
213         * DataGrid.cs: the Alt+0 handling was wrong, it should have been
214         Ctrl+0.  Fixes bug #80367.  Also, don't eat the Delete keypress
215         when we're editing, which fixes #80047.
216
217 2007-01-03  Chris Toshok  <toshok@ximian.com>
218
219         * Form.cs: apply patch contributed by Dominik Seichter.  fixes
220         #80404.
221
222 2007-01-03  Jonathan Pobst  <monkey@jpobst.com>
223
224         * MenuStrip.cs, ToolStripMenuItem.cs: Add MdiWindowListItem
225         property and implementation.
226
227         * Form.cs, MdiClient.cs, MdiWindowManager.cs: Add needed hooks
228         for MdiWindowListItem property.
229
230         * ToolStripDropDown.cs: Don't consider hidden menu items while
231         laying out the menu.
232
233 2007-01-03  Andreia Gaita  <avidigal@novell.com>
234
235         * SendKeys.cs: window handle is not needed in win32, so just
236         get the active window for X after parsing keys and don't use
237         it when building the message; it is passed by parameter to the 
238         Xplat method and used there to build the message instead. Also,
239         wait for events to be processed on SendWait, as opposed to Send,
240         which doesn't wait :) Playing with threads and Send() completely 
241         hangs on ms.net, only SendWait() works.
242         
243         XplatUIX11.cs
244         X11Display.cs: Check for valid window handle.
245
246 2007-01-03  Jackson Harper  <jackson@ximian.com>
247
248         * TextControl.cs: Need to prevent wrap calculations when replacing
249         text (this was there before i removed it accidently).
250         - Don't update the cursor during the positioning, just set it to
251         selection_start at the end of the operaion.
252
253 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
254
255         * Control.cs:
256         * NotifyIcon.cs: corcompare work, no more X's in 1.1 class status.
257         
258 2007-01-03  Rolf Bjarne Kvinge  <RKvinge@novell.com>
259
260         * MonthCalendar.cs: Added Click and DoubleClick events again,
261         but this time they only hide Control's Click and DoubleClick.
262         
263 2007-01-03  Gert Driesen  <drieseng@users.sourceforge.net>
264
265         * Theme.cs: Re-enabled DefaultFont change. Use const to refer to
266         System.Drawing assembly. Spaces to tabs. Removed extra tabs.
267
268 2007-01-02  Jackson Harper  <jackson@ximian.com>
269
270         * TextBoxBase.cs: We move the caret with the split now, so we
271         don't need to explicitly move the caret after splitting.  This
272         fixes the caret bumping down an extra line on Enter.
273
274 2007-01-02  Miguel de Icaza  <miguel@novell.com>
275
276         * ContainerControl.cs: Add AutoValidateChanged event (for PDN
277         2.72). 
278
279         * ScrollableControl.cs: Add Scroll event.
280
281 2007-01-02  Mike Kestner  <mkestner@novell.com>
282
283         * ListView.cs: one more try with help from georgegiolfan@yahoo.com 
284         to fix all hdr height padding codepaths.  Fixes #80207.
285
286 2007-01-02  Chris Toshok  <toshok@ximian.com>
287
288         * StatusBar.cs (.ctor): remove the Anchor setting, as it's just
289         setting it to the Control defaults anyway, and it being after the
290         Dock set was screwing up layout.
291         (set_Dock): don't short circuit out of setting base.Dock.  Also,
292         no need to call UpdateStatusBar here, as it'll be re-layed out if
293         it needs to be.
294
295 2007-01-02  Mike Kestner  <mkestner@novell.com>
296
297         * ListView.cs: patch from georgegiolfan@yahoo.com to add padding
298         to header height for width == -1. Fixes the rest of #80207.
299
300 2007-01-02  Mike Kestner  <mkestner@novell.com>
301
302         * ListView.cs: rework the mouse event forwarding everaldo added
303         to translate the coordinates to the parent control not
304         raise the parent events until after we've done our work. Hover
305         needs more work, in the case where HoverSelection is on, because
306         the item control receives more than one MouseHover per Enter
307         event, so we need to ensure only the "first" hover gets forwarded.
308         Opening a minor bug for that.
309
310 2007-01-02  Gert Driesen  <drieseng@users.sourceforge.net>
311
312         * CheckedListBox.cs: Fixed SelectionMode to match MS.
313         * ListControl.cs: Implemented AllowSelection property. Removed extra
314         tabs.
315         * ListBox.cs: Implemented AllowSelection property.
316
317 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
318
319         * MenuItem.cs: In MdiWindowClickHandler uses sender instead of
320         SelectedItem, it prevent for errors when you must disable item
321         before perform click. Fixes #80409.
322
323 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
324
325         * MenuAPI.cs: Prevent second level and beyond submenus to close
326         until first level when move out side of popup.
327         
328 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
329
330         * MenuAPI.cs:
331         - Down submenu positin in three pixels.
332         - Closes sub menu when mouse leaves from menu. Fixes #80402.
333
334 2007-01-02  Everaldo Canuto  <everaldo@simios.org>
335
336         * ThemeWin32Classic.cs:
337         - Fix popup menu size adding one pixel on the top.
338         - Down menu item border from two to one to mimic Win32.
339         - Some source identation fixes. 
340
341 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
342
343         * ThemeWin32Classic.cs: Use float numbers to calculate size and
344         position of menu arrows, it fix wrong arrow size.
345
346 2007-01-01  Everaldo Canuto  <everaldo@simios.org>
347
348         * ThemeWin32Classic.cs: Uses CPDrawBorder3D to draw menu borders
349         instead of line, it simplify draw operation and fix it using 3D
350         borders to mimic Win32.
351
352 2007-01-01  Jonathan Pobst  <monkey@jpobst.com>
353
354         * StatusStrip.cs: Add implementation of the sizing grip.
355
356         * ToolStripRenderer.cs, ToolStripProfessionalRenderer.cs: Add
357         StatusStrip rendering.
358
359 2006-12-31  Chris Toshok  <toshok@ximian.com>
360
361         * ToolBar.cs: don't assign to dock_style in the .ctor.  it doesn't
362         override the layout style (anchor/dock) of the control.  assign to
363         Dock instead.  Fixes bug #80416.
364
365         * ToolStrip.cs: same.
366
367 2006-12-31  Andreia Gaita  <avidigal@novell.com>
368
369         * ContainerControl.cs: Use ContainerSelected flag to check if 
370         a Container is directly selected, or if Select is called on a 
371         non-container. If a container is directly selected, focus events 
372         should not be raised.
373         Apply #80411 patch to throw exception on set_ActiveControl if 
374         control is the same as the current one.
375         
376         * Control.cs: Use ContainerSelected flag (see above).
377         Add invalidation check to raise event but not invalidate if 
378         dimensions are 0.       
379         Apply #80411 patch.
380         
381
382 2006-12-31  Everaldo Canuto  <everaldo@simios.org>
383
384         * MenuAPI.cs: After click, dont close popup menu when menu is
385         ContextMenu. Fixes #80399.
386
387 2006-12-30  Chris Toshok  <toshok@ximian.com>
388
389         * ContainerControl.cs: make sure we throw the exception if the
390         container control doesn't contain the control we're setting
391         ActiveControl to.
392
393 2006-12-30  Chris Toshok  <toshok@ximian.com>
394
395         * Control.cs (SetTopLevel): fix the exception raised by
396         SetTopLevel for child controls.
397         (set_Anchor): call UpdateDistances when setting the anchor type.
398         This fixes bug #80336.
399
400 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
401
402         * Theme.cs: For now, revert back to 8pt font.
403
404 2006-12-29  Everaldo Canuto  <everaldo@simios.org>
405
406         * MenuAPI.cs: Set popup as active when open a ContextMenu. 
407         Fixes #80395.
408
409 2006-12-29  Chris Toshok  <toshok@ximian.com>
410
411         * Control.cs: reorder the code in OnResize to give the same event
412         ordering as MS.
413
414 2006-12-29  Rolf Bjarne Kvinge  <RKvinge@novell.com>
415
416         * MdiClient.cs: Implemented MdiLayout for ArrangeIcons,
417         TileHorizontally and TileVertically.
418         
419 2006-12-29  Alexander Olk  <alex.olk@googlemail.com>
420
421         * ColorDialog.cs, FileDialog.cs, FolderBrowserDialog.cs,
422         FontDialog.cs, Mime.cs, MimeIcon.cs, OpenFileDialog.cs,
423         SaveFileDialog.cs, ThemeClearlooks.cs, ThemeNics.cs:
424         Corrected copyright and email adress.
425
426 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
427
428         * TreeNode.cs: On 2.0 profile, throw InvalidOperationException instead
429         of Exception in FullPath property if no TreeView is associated with
430         the TreeNode.
431
432 2006-12-29  Gert Driesen  <drieseng@users.sourceforge.net>
433
434         * Theme.cs: Marked default_font as private, and initialize it in ctor
435         with MS Sans Sarif 8.25 on 1.0 profile, and SystemFonts.DefaultFont
436         on 2.0 profile.
437         * ThemeGtk.cs: Removed default_font intialization.
438         * ThemeWin32Classic.cs: Removed default_font initialization.
439
440 2006-12-28  Chris Toshok  <toshok@ximian.com>
441
442         * Control.cs: fix a couple of place where we were creating handles
443         more aggressively than we should be.  Fixes ControlRefresh unit
444         tests.
445
446 2006-12-28  Chris Toshok  <toshok@ximian.com>
447
448         * Control.cs: contrary to what the comment said, Control.Dock does
449         not supercede Control.Anchor - the last one you assign to decides
450         the layout behavior.  so we need to keep track of which was the
451         last set.  Also, fix some of the affected property arguments in
452         PerformLayout calls, and remove an redundant parent.PerformLayout
453         call in OnResized.
454
455         Add a VisibleInternal property, which returns is_visible.  We
456         can/should get rid of all the usage of this field elsewhere.
457
458 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
459         
460         * Control.cs: DoubleBuffered property reflects the OptimizedDoubleBuffer
461         control style, not DoubleBuffer. Added UseDoubleBuffering property
462         that indicates whether doublebuffering is enabled and supported.
463         (comment from and code based on Gert Driesen's patch in #80324).
464         Fixes #80324.
465
466 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
467         
468         * Control.cs: Fixed a NRE.
469
470 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
471
472         * TrackBar.cs: Fix SmallChange and LargeChange exceptions
473         for 2.0.
474
475 2006-12-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
476
477         * Control.cs: Rewrote double buffering, now a seperate
478         class handles all the buffering, no Graphics is disposed of
479         until the painting is finished (earlier implementation 
480         would crash if the control was resized in the OnPaint, 
481         since it would cause the double buffer to be recreated
482         and the old one disposed), a separate Graphics is 
483         created for every paint (MS behaviour and anyways the state
484         of the Graphics would have to be saved and restored otherwise)
485         
486         * XplatUIDriver.cs: 
487         * XplatUIX11.cs:
488         * XplatUI.cs: Added and implemented GetOffscreenGraphics 
489         so that we can get the graphics for the back buffer without
490         having to create a new one and remove the offscreen_dc parameter
491         from CreateOffscreenDrawable and DestroyOffscreenDrawable.
492         
493 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
494
495         * ListView.cs: Add key-related 2.0 methods for CheckedItemCollection.
496         Also make virtual all the key-related methods.
497
498         * ListViewItem.cs: Make virtual the key related methods for
499         ListViewSubItemCollection.
500
501 2006-12-27  Carlos Alberto Cortez <calberto.cortez@gmail.com>
502
503         * ListView.cs:
504         * ListViewItem.cs:
505         * ThemeWin32Classic.cs:
506         * Theme.cs: Initial support for Tile view in ListView,
507         as well as the implementation of the required bits for it (Item
508         and Subitem).
509
510 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
511
512         * MonthCalendar.cs: On 2.0, throw ArgumentOutOfRangeException instead
513         of ArgumentException in MaxSelectionCount, MaxDate and MinDate.
514         Provide useful exception messages.
515
516 2006-12-27  Rolf Bjarne Kvinge  <RKvinge@novell.com>
517
518         * TrackBar.cs: Remove a warning.
519         * MonthCalendar.cs: Moved back to using Capture to hide the calendar
520         when used by DateTimePicker, fixes #80287. This also requires that 
521         MonthCalendar implements it's own drawing for the yearly updown control,
522         otherwise the Capture tracking would be too complicated. Removed the Click 
523         and DoubleClick events (according to comments they were hiding the base class
524         event to prevent them from beeing fired - MSDN only says MonthCalendar doesn't
525         raise these events, not that they cannot be raised. It is possible to raise 
526         them by calling OnClick and OnDoubleClick). Added two internal fields in 
527         HitTestInfo in order to track give more tracking info needed by MonthCalendar.
528         * ThemeWin32Classic.cs: Implement drawing of MonthCalendar's updown part.
529         * DateTimePicker.cs: Removed handling of MonthCalendar's LostFocus
530         event, no longer needed.
531         
532 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
533
534         * ScrollableControl.cs: In AutoScrollMinSize, only set AutoScroll to
535         true if new value differs from current value.
536
537 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
538
539         * Control.cs: ControlCollection.Count must be public. Fixed build of
540         unit tests.
541
542 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
543
544         * ListView.cs: Redraw when FullRowSelect is changed. Fixes bug #80379.
545
546 2006-12-27  Gert Driesen  <drieseng@users.sourceforge.net>
547
548         * ComboBox.cs: Mergable=>MergableProperty. Fixes build.
549
550 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
551
552         * Control.cs: Invalidates control including when Width and Height is 
553         equal zero or is not visible, only Paint event must be care about 
554         this. Fixes #79913.
555
556 2006-12-26  Chris Toshok  <toshok@ximian.com>
557
558         * CurrencyManager.cs, PropertyManager.cs, BindingManagerBase.cs:
559         more corcompare work.
560
561         * DataGridView.cs: fix compiler warning.
562
563         * ColumnHeader.cs: some corcompare work, and also take the
564         opportunity to make the internal fields private.
565
566         * ListView.cs: fix the fallout from the above field change.
567
568 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
569
570         * ToolStripButton.cs, ToolStripComboBox.cs, ToolStripControlHost.cs,
571         ToolStripItem.cs, ToolStripProgressBar.cs, ToolStripSplitButton.cs,
572         ToolStripTextBox.cs: Fixes to events and corcompare.
573
574 2006-12-26  Everaldo Canuto  <everaldo@simios.org>
575
576         * ListView.cs: Call owner.OnMousexx event to propagate events from
577         item to ListView. Fixes #80367.
578
579 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
580
581         * ComboBox.cs: On 2.0, DropDownWidth throws ArgumentOutOfRangeException
582         if value is less than one. ItemHeight should not be set to a value
583         less than 1, and throw ArgumentOutOfRangeException on 2.0 profile. 
584         Removed extra tabs.
585
586 2006-12-26  Jonathan Pobst  <monkey@jpobst.com>
587
588         * ToolStripMenuItem.cs: Add ShortcutDisplayString for Moma.
589         * ToolStripStatusLabel.cs: Add Spring for Moma.
590
591 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
592
593         * DataGridView.cs: Fixed several NullReferenceException in On* methods.
594         Fixed code formatting. Removed debug code.
595         * DataGridViewTextBoxEditingControl.cs: Removed debug code.
596
597 2006-12-26  Gert Driesen  <drieseng@users.sourceforge.net>
598
599         * DataGridView.cs: Fixed GridColor, DefaultSize, DefaultCellStyle,
600         RowHeadersDefaultStyle, RowHeadersWidth to match MS. Throw
601         ArgumentOutOfRangeException if ColumnCount is negative. In 
602         ColumnHeadersHeight, throw ArgumentOutOfRangeException if height is
603         less than 4 or higher than 32768.
604         * DataGridViewCellStyle.cs: Fixed default value for NullValue.
605         Fixed FormatProvider to return CurrentCulture unless explicitly set.
606         Fixed IsFormatProviderDefault to return true if FormatProvider has
607         not been explicitly set.
608
609 2006-12-25  Chris Toshok  <toshok@ximian.com>
610
611         * Application.cs: add a couple of 2.0 events.
612
613 2006-12-25  Chris Toshok  <toshok@ximian.com>
614
615         * Control.cs: fix compiler warning.
616
617         * AxHost.cs: corcompare fixes.
618
619         * ApplicationContext.cs: corcompare fixes.
620
621 2006-12-25  Chris Toshok  <toshok@ximian.com>
622
623         * Control.cs: only update dist_right/dist_bottom if the
624         width/height is > 0.  this fixes anchored controls being resized
625         smaller until they disappear and then resized larger again.
626
627 2006-12-25  Chris Toshok  <toshok@ximian.com>
628
629         * Control.cs: a couple of changes.  Remove dist_left and dist_top,
630         since they're nothing more than X/Left and Y/Top, respectively.
631
632         Also, move back to a per-control Bitmap/Graphics for
633         DeviceContext, since using the static Hwnd.bmp/bmp_g is bad in the
634         MT case.  Go with a tiny bitmap though, 1x1, instead of Width x
635         Height.
636
637 2006-12-25  Miguel de Icaza  <miguel@novell.com>
638
639         * MessageBox.cs: Implemented overload that takes a new "bool
640         displayHelpButton" by adding a new internal field "show_help".
641         When clicked this will raise the HelpRequested on the owner or the
642         main form. 
643
644         From: 007dbe3ff0ca4729a4f5fcd1d8ab2a2e.txt
645         From: c935e12b95fe4dc1ae670e7f4dc5fd68.txt
646
647         * ListView.cs: Add support ColumnWidthChanged and
648         ColumnWidthChanging. 
649
650         Add support for ColumnReordered event.
651         (ReorderColumn): Add NET_2_0 specific support for cancelling the
652         reorder.
653
654         Very nice codebase!
655
656         * TextBoxBase.cs (GetLineFromCharIndex): Implement this method.
657
658         This is used by report f4ae0a88a0a244558aaadf017c9b9efe.
659
660 2006-12-24  Chris Toshok  <toshok@ximian.com>
661
662         * GridTablesFactory.cs: 2.0 corcompare work.
663
664         * ToolStripContainer.cs: add "override" to
665         ContextMenuStripChanged, and remove the local event object.
666
667         * ToolStripDropDown.cs: same with a couple properties.
668
669         * ToolStripPanel.cs: same with AutoSizeChanged event.
670
671         * TextBoxBase.cs: add "override" to AutoSizeChanged.
672
673         * Form.cs: add the remaining 2.0 events, and do some corcompare
674         attribute work.
675
676         * DateTimePicker.cs: add "new" to padding.
677
678         * ButtonBase.cs: use Control's use_compatible_text_rendering.
679
680         * ToolStripContentPanel.cs: use base.AutoSizeChanged.
681
682         * DataGridView.cs: PaddingChanged is overridden.
683
684 2006-12-24  Chris Toshok  <toshok@ximian.com>
685
686         * Control.cs: corecompare work here too.
687
688         * DataGridViewElement.cs, DataGridView.cs,
689         DataGridViewButtonCell.cs, DataGridViewRowCollection.cs,
690         DataGridViewImageColumn.cs, DataGridViewComboBoxColumn.cs,
691         DataGridViewImageCell.cs, DataGridViewCheckBoxCell.cs,
692         DataGridViewHeaderCell.cs, DataGridViewCell.cs: more corcompare
693         work.
694
695 2006-12-24  Miguel de Icaza  <miguel@novell.com>
696
697         * Control.cs: Switched the error message on the console for a
698         todo.  A review of the code will have to cope with this anyways
699         (since its a large feature, it is in our radar) and it was
700         producing too much output when running PDN.
701
702         * ToolStripComboBox.cs: Set the text when the SelectedIndex
703         changes.  Applications depend on this (PDN 2.72)
704
705 2006-12-23  Chris Toshok  <toshok@ximian.com>
706
707         * TableLayoutSettings.cs: finish up the corcompare work for this
708         class.
709
710 2006-12-23  Chris Toshok  <toshok@ximian.com>
711
712         * Control.cs: make SetImplicitBounds internal, do some futzing
713         with LayoutEngine so that it's available in 1.1, and remove the
714         entire duplicated code mess from PerformLayout.  Use
715         System.Windows.Forms.Layout.DefaultLayout instead.
716
717         * LayoutEngine.cs: make this class internal in 1.1, public in 2.0.
718
719 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
720
721         * Form.cs: Add MainMenuStrip property.
722
723 2006-12-23  Jonathan Pobst  <monkey@jpobst.com>
724
725         * Control.cs: Add ContextMenuStrip property and implementation.
726         Fix ContextMenu implementation to show menu centered on control when
727         activated using the keyboard instead of showing at screen (0,0).
728
729         * ToolStripDropDown.cs: Fix needed overload of Show ().
730
731 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
732
733         * Menu.cs: Name property added for 2.0 profile.
734         
735 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
736
737         * Menu.cs: Update information about FindMenuItem, method to be
738         implemented soon.
739
740 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
741
742         * MenuAPI.cs: When deselect items deselect also selected subitems.
743         
744 2006-12-23  Everaldo Canuto  <everaldo@simios.org>
745
746         * MenuAPI.cs: When hides menu set Wnd to null, it prevents
747         FindSubItemByCoord to found itens that is not active, also an
748         cheking added to FindSubItemByCoord to search for items only 
749         in visible popup windows. Fixes #80274.
750
751 2006-12-22  Everaldo Canuto  <everaldo@simios.org>
752
753         * UserControl.cs: Remove MonoTodo and use InternalBorderStyle,
754         internal property, it be care about change ExStyle. 
755
756 2006-12-22  Andreia Gaita  <avidigal@novell.com>
757
758         * ContainerControl.cs: set activeControl for parent forms up the 
759         tree when the new activecontrol is a container.
760         When validating the active control, if it is a container, also
761         raise up the validation for it's active control. Fixes #80280
762         
763         * Control.cs: Add internal property flag and check to prevent
764         Focus events from getting raised when Select() is called for
765         a ContainerControl. There are still too many focus events being
766         raised at the moment though.
767         Cleaned up the code a bit.
768
769 2006-12-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
770
771         * Control.cs: Added all missing 2.0 events.and
772         fixed a couple of corcompare issues.
773         * TrackBar.cs: Implemented missing 2.0 bits.
774         * MonthCalendar.cs, 
775         * DateTimePicker.cs, 
776         * MdiClient.cs: Fixed some corcompare issues.
777
778 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
779
780         * ContextMenuStrip.cs, FlowLayoutPanel.cs, SplitContainer.cs,
781         SplitterPanel.cs: corecompare work.
782
783 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
784
785         * ToolStripContainer.cs, ToolStripDropDown.cs, StatusStrip.cs:
786         Clean up warnings for BackgroundImageChanged and PaddingChanged
787         events now that they are implemented in Control.cs.
788
789 2006-12-21  Jonathan Pobst  <monkey@jpobst.com>
790
791         * Control.cs: Make sure layout_engine isn't null before using it (2.0).
792         
793         * TableLayoutControlCollection.cs, TableLayoutPanel.cs, TableLayoutCellPosition.cs,
794         TableLayoutSettings.cs, TableLayoutStyleCollection.cs: Initial implementation
795         of TableLayoutPanel and supporting cast.
796
797 2006-12-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
798
799         * XplatUIWin32.cs: 
800         - GrabWindow now confines the mouse pointer to the confine window.
801         - Added Win32ClipCursor and Win32GetClipCursor.
802
803         * Control.cs: 
804         - Added CaptureWithConfine to be able to capture and confine 
805         mouse pointer.
806         
807         * InternalWindowManager.cs: 
808         - Call CaptureWithConfine instead of Capture if we're an
809         MdiChild (fixes #79982).
810
811 2006-12-21  Chris Toshok  <toshok@ximian.com>
812
813         * DataGrid.cs: guard against the initial state of selection, where
814         selection_start == -1.  make sure we only select from index >= 0.
815         Fixes bug #80291.
816
817 2006-12-21  Chris Toshok  <toshok@ximian.com>
818
819         * Control.cs: we don't need to be so draconian with
820         UpdateDistances, and we thusly don't need to call it before
821         calling PerformLayout in ResumeLayout.  Fixes bug #80289.
822
823 2006-12-21  Daniel Nauck  <dna@mono-project.de>
824
825         * ComboBox.cs,
826         TextBox.cs: Implemented AutoComplete properties.
827
828 2006-12-20  Chris Toshok  <toshok@ximian.com>
829
830         * DataGridView*.cs: some corecompare work.
831
832 2006-12-20  Jackson Harper  <jackson@ximian.com>
833
834         * XplatUIX11.cs: We need to hide the caret when deleting it,
835         otherwise you get carets left lying around everywhere.
836         * TextBoxBase.cs: Kill then redraw the caret when scrolling.  This
837         prevents getting some weird half drawn caret tracers when
838         scrolling.
839         * TextControl.cs: Attempt to reduce the number of times we need to
840         recreate the caret.
841
842 2006-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
843
844         * MonthCalendar.cs: Fixed previous month button. Removed extra tabs.
845
846 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
847
848         * DateTimePicker.cs:
849         - Implemented missing 2.0 bits.
850         - Changed some default values to match MS.
851         
852 2006-12-20  Jackson Harper  <jackson@ximian.com>
853
854         * TextBoxBase.cs: When changing the font across the document we
855         can't recalculate after changing each line, since that will cahnge
856         the line count.
857         - PreferredHeight is a little different than i thought.
858         - When backspacing, move the caret before we do the actual char
859         delete, because when that delete crosses a wrap boundary the
860         positional information will change.
861
862 2006-12-19  Rolf Bjarne Kvinge  <RKvinge@novell.com>
863
864         * Control.cs: Added some missing 2.0 bits: 
865         BackgroundImageLayout, BackgroundImageLayoutChanged, 
866         OnPaddingChanged, MouseClick, MouseDoubleClick, PaddingChanged and 
867         add IBindableComponent and IDropTarget implementation.
868         
869         * MonthCalendar.cs: 
870         - Added all missing 2.0 features:
871         BackgroundImageLayout, RightToLeftLayout, 
872         OnHandleDestroyed, RightToLeftLayoutChanged, 
873         BackgroundImageLayoutChanged, MouseClick, MouseDoubleClick,
874         PaddingChanged.
875         - Rewrote all the BoldDate code, it was completely broken.
876         - Fixed all the tests (the tests can now be re-enabled, the
877         problems were not with the tests, but with the control, it was
878         mostly broken).
879         
880         * DateTimePicker.cs: Changed the location where the 
881         MonthCalendar is shown.
882         
883 2006-12-19  Chris Toshok  <toshok@ximian.com>
884
885         * DataGridView.cs: add IDropTarget implementation.
886
887         * ToolStripPanel.cs: add IDropTarget implementation.
888
889 2006-12-19  Jackson Harper  <jackson@ximian.com>
890
891         * TextControl.cs: soft now means something different than what it
892         used to mean, we want to move the caret regardless of whether or
893         not this break was soft (would we really have wanted the caret
894         to not move with the break in the old context?)
895         * TreeView.cs: Make sure we factor in the vert scrollbar when
896         calculating the horizontal scrollbar's maximum.
897
898 2006-12-19  Andreia Gaita  <avidigal@novell.org>
899
900         * SendKeys.cs: Fix Send() behaviour, clear keys after sending,
901         check for keywords in alternate casing, close bug #80049.
902
903 2006-12-19  Chris Toshok  <toshok@ximian.com>
904
905         * ToolStripItem.cs: add the implementation of the 4 IDropTarget
906         methods (which all do nothing).
907
908         * IDropTarget.cs: add the 4 missing methods.
909
910 2006-12-19  Chris Toshok  <toshok@ximian.com>
911
912         * TableLayoutRowStyleCollection.cs: corcompare work.
913         
914         * TableLayoutSettings.cs: same.
915
916         * TableLayoutStyle.cs: same.
917
918         * TableLayoutColumnStyleCollection.cs: same.
919
920 2006-12-19  Jonathan Pobst  <monkey@jpobst.com>
921
922         * ColumnStyle.cs, RowStyle.cs, TableLayoutStyle.cs: Plumbing for
923         TableLayoutPanel I've had in my local tree for way too long.
924
925 2006-12-19  Miguel de Icaza  <miguel@novell.com>
926
927         * TableLayoutSettings.cs: Finish the public API (still needs all
928         the logic to update on changes). 
929
930         * TableLayoutPanelCellPosition.cs: new file.
931         
932         * TableLayoutRowStyleCollection.cs,
933         TableLayoutColumnStyleCollection, TableLayoutStyle.cs,
934         TableLayoutSettings.cs: Track the final 2.0 table api.
935
936 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
937
938         * ColumnHeader.cs: Add Tag, Name, ImageKey, ImageIndex,
939         and Image List 2.0 members for ColummnHeader.
940         * ListView.cs: Add key-related 2.0 methods for
941         ColumnHeaderCollection.
942
943 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
944
945         * ListViewItem.cs: Changed AddRange overloads to match MS: throw
946         ArgumentNullException if items argument is null. Ignore null item in
947         arrays. Removed extra tabs.
948
949 2006-12-19  Gert Driesen  <drieseng@users.sourceforge.net>
950
951         * MonthCalendar.cs: Fixed InvalidCastException.
952
953 2006-12-19  Jackson Harper  <jackson@ximian.com>
954
955         * TextControl.cs: Don't increment the position here.
956         - When calculating char positions only add in the line break size
957         for hard line breaks.
958
959 2006-12-19  Andreia Gaita  <avidigal@novell.org>
960
961         * SendKeys.cs: Changed some things to match ms.net behaviour
962         when parsing shifted capital letters.
963         
964         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32, XplatUIOSX: 
965         Add window handle as parameter to SendInput. X11 needs the 
966         window handle, and the handle being passed      to it in the keys 
967         queue is the active control handle (which windows needs), not 
968         the window handle.
969         
970         XplatUIX11.cs, XplaUIX11-new.cs, X11Display: Implement SendInput 
971         to support SendKeys on X.       
972         
973         * X11Keyboard: Implement helper method to lookup a linux keycode
974         given the virtual keycode. Added table of keycode-2-virtualkey
975         values to support this.
976
977 2006-12-19  Carlos Alberto Cortez <calberto.cortez@gmail.com>
978
979         * ListView.cs: Add support for SelectedIndexCollection
980         and SelectedItemCollection 2.0 methods. Implement support
981         for ImageKey too.
982         * ListViewItem.cs: Add support for ListViewSubItemCollection
983         2.0 methods. Also, fix an incorrect behavior of AddRange method
984         (it shouldn't call Clear).
985         * ThemeWin32Classic.cs: Support for ListView.ImageKey 2.0 property.
986
987 2006-12-19  Jackson Harper  <jackson@ximian.com>
988
989         * RichTextBox.cs: 
990         * TextBoxBase.cs: New args for FormatText
991         * TextControl.cs: Rewrote the main drawing method, this version
992         feels a little easier to understand and debug to me.  Hopefully it
993         does to others also
994         - Fix FormatText to OR in the new formating values.  Added
995         FormatSpecified param, basically this works in the same way as
996         BoundsSpecified in Control.
997         - Set the caret properties when the caret is positioned.
998         - When wrapping text make sure that we calculate the width of the
999         last character
1000         - when calculating alignments we might have wrapped down to the
1001         next line, so don't search for an individual tag, search for the
1002         end of the line
1003         - We need to invalidate the selection area when we replace the
1004         selection.
1005         
1006 2006-12-19  Daniel Nauck  <dna@mono-project.de>
1007
1008         * Application.cs: add Restart () 2.0 support
1009
1010 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1011
1012         * MenuItem.cs: Invalidate menu item rectangle after change Enable
1013         property. Fixes #80268.
1014         
1015 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1016
1017         * MenuAPI.cs: Dont trigger select event when closes top menu
1018         item. Fixes #80270.
1019
1020 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1021
1022         * MenuAPI.cs: When you click on menuitem only trigger onselect
1023         event for top menu itens. Fixes #80271.
1024         
1025 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1026
1027         * MdiWindowManager.cs: Make IconicBounds depend on
1028         the bottom of MdiClient, not the top (fixes #80267)
1029         
1030 2006-12-18  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1031
1032         * MdiClient.cs: Added missing 2.0 attribute
1033
1034 2006-12-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1035
1036         * ListViewItem.cs: Add Name and Tag 2.0 properties, as well
1037         as IndexOfKey, ContainsKey, RemoveByKey and indexer 2.0.
1038
1039 2006-12-18  Everaldo Canuto  <everaldo@simios.org>
1040
1041         * MenuAPI.cs: Fix click when menuitem is not popup,
1042         this regression was caused by last commit (#80272).
1043
1044 2006-12-17  Everaldo Canuto  <everaldo@simios.org>
1045
1046         * MenuAPI.cs: When a non-toplevel menuitem is clicked dont
1047         fire click event or close menu. Fixes #80272.
1048
1049 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1050
1051         * ListViewHitTestInfo.cs: add
1052
1053 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1054
1055         * ButtonBase.cs: Added FlatButtonAppearance 2.0 support.
1056         * FlatButtonAppearance.cs: add
1057         * DockingAttribute.cs: add
1058
1059 2006-12-17  Chris Toshok  <toshok@ximian.com>
1060
1061         * DataGrid.cs: hook up MetaDataChanged event on the list manager,
1062         and rebind our columns when it does - this way, if you make
1063         changes to the DataTable (or set the Table attribute on a DataView
1064         after setting it as the DataGrid's DataSource, the changes are
1065         made visible.)  Fixes bug #80107.
1066
1067 2006-12-17  Daniel Nauck  <dna@mono-project.de>
1068
1069         * ListViewGroup.cs: add internal Location property for layouting.
1070         * Theme.cs: add abstract ListViewGroupHeight function.
1071         * ThemeWin32Classic.cs: implement ListViewGroupHeight function.
1072
1073 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1074
1075         * TabControl.cs: Fixed checks for NET_2_0-specific exceptions.
1076         Added reset of selected index to 0 when adding first tab page.
1077         Fixes #80264
1078         
1079         * NumericUpDown.cs: Fix NET_2_0 check
1080
1081 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1082
1083         * ListViewGroup.cs: fixed DefaultValueAttribute value
1084
1085 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1086
1087         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
1088
1089 2006-12-15  Miguel de Icaza  <miguel@novell.com>
1090
1091         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
1092         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
1093         ScrollableControl.cs: Add a handful of methods that are
1094         overwritten in 2.0 
1095
1096 2006-12-15  Chris Toshok  <toshok@ximian.com>
1097
1098         * XplatUIWin32.cs: initial implementation of the Reversible
1099         drawing functions.  there are some problems.  DrawReversibleFrame
1100         doesn't seem to work at all for Dashed FrameStyle, and in the
1101         Thick case there are drawing errors at the corners (we probably
1102         need to bind Rectangle instead of doing moveto/lineto's.)
1103
1104 2006-12-16  Andreia Gaita  <avidigal@novell.com>
1105         
1106         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
1107         to send blocks of key messages. Send accumulates keys to send with Flush, 
1108         while SendWait sends all keys immediately.
1109                 
1110         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
1111         XplatUIX11.cs,  XplatUIX11-new.cs:
1112         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
1113         to Win32 SendInput.
1114         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
1115         
1116         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
1117         testing for ms.net on this class is very tricky, as the tests run too fast 
1118         to allow the hook to release, essentially freezing the keyboard and the 
1119         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
1120         category :p
1121
1122 2006-12-16  Daniel Nauck  <dna@mono-project.de>
1123
1124         * Padding.cs: fixed serialization compability to MS ("_var" field names),
1125                         added missing attributes.
1126  
1127 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1128
1129         * ListViewGroup.cs: Added missing attributes.
1130         * ListViewGroupCollection.cs: Added missing attributes.
1131
1132 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1133
1134         * ListViewItem.cs: fixed ListViewSubItem text property.
1135
1136 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1137         
1138         * Control.cs: Added missing 2.0 attributes
1139         
1140 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1141         
1142         * MdiClient.cs: Added missing 2.0 attribute.
1143         * MonthCalendar.cs: Added some missing 2.0 attributes 
1144         and properties.
1145         
1146 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1147
1148         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
1149
1150 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
1151
1152         * MainMenu.cs: Add the new 2.0 constructor to help out people
1153         using the MainMenu in VS2005.
1154
1155 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1156         
1157         * MdiChildContext.cs: Removed it, no longer used.
1158         * MdiClient.cs: Added missing 2.0 attributes.
1159         
1160 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1161         
1162         * InternalWindowManager.cs: Fix a NullRef with previous 
1163         changes for toolwindows.
1164         
1165 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1166
1167         * Control.cs: 
1168         - Added AfterTopMostControl to allow for certain controls 
1169         to always stay on top when normal controls are brought to 
1170         front.
1171         
1172         * XplatUIWin32.cs: 
1173         - (DrawInversibleRectangle): Get window rectangle from Win32 
1174         in stead of from control, since Win32 doesn't calculate
1175         screen coords correctly from control's Location if it 
1176         have docked siblings.
1177         
1178         * MdiWindowManager.cs:
1179         - Correct the control menu popup location when clicked on
1180         the maximized form icon. (fixes #80223.1)
1181         - Don't show moving rectangle if mouse hasn't moved from
1182         the original clicked point.
1183         - Removed FormGotFocus handler (not used).
1184         - Calculate the control buttons location from the main
1185         window's size and not client size (fixes #79770).
1186         - Form is now closed when the form icon is double-clicked
1187         (fixes #79775). 
1188         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
1189         
1190         * InternalWindowManager.cs:
1191         - Moved some MDI-only methods to MdiWindowManager.
1192         - Removed unused properties and methods.
1193         - Unified method naming for methods handling wm messages.
1194         - Moved all message handling to seperate methods for
1195         each message.
1196         
1197         * ThemeWin32Classic.cs:
1198         - DrawManagedWindowDecorations now draws the title bar 
1199         with a gradient brush.
1200         - Add a CPDrawButtonInternal that allows us to specify
1201         light, normal and dark colors for the buttons (control 
1202         buttons for MDI children were drawn with the same light
1203         color as the background, therefore loosing the 3D effect).
1204         
1205         * SizeGrip.cs:
1206         - Add a CapturedControl property that is used to 
1207         determine the control to resize (defaults to parent). 
1208         Needed for MdiClient, since its SizeGrip's parent is
1209         MdiClient, but the control to resize is the main form.
1210         
1211         * MdiClient.cs:
1212         - Set SizeGrip's CapturedControl to the main form in order
1213         to resize the main form and not the MdiClient.
1214         - Override AfterTopMostControl to leave the scrollbars 
1215         always on top.
1216
1217 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1218
1219         * ListView.cs: fixed ListViewItemCollection AddRange and
1220                         implemented ListViewItemCollection AddRange 2.0 support.
1221
1222 2006-12-15  Daniel Nauck  <dna@mono-project.de>
1223
1224         * ListViewGroup.cs: Add.
1225         * ListViewGroupCollection.cs: Add
1226         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
1227         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
1228                                 stub for ImageKey 2.0 support.
1229
1230 2006-12-14  Mike Kestner  <mkestner@novell.com>
1231
1232         * ListView.cs: add text padding to the autocalculation for columns
1233         of width -2.  Fixes #80207.
1234  
1235 2006-12-14  Mike Kestner  <mkestner@novell.com>
1236
1237         * ListView.cs: add some index guarding for partial row navigation 
1238         logic.  Fixes #80250.
1239
1240 2006-12-14  Mike Kestner  <mkestner@novell.com>
1241
1242         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
1243         are added or inserted to the collection.  Fixes #81099.
1244
1245 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
1246
1247         * MenuAPI.cs: Closes menu when right click out side of popup
1248         it fix problem in ContextMenu and MainMenu. Fixes #80252.
1249
1250 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1251
1252         * ListViewItem.cs: Fix dumb error.
1253
1254         * ListView.cs: Add Find and ContainsKey methods in 
1255         ListViewItemCollection, and also return true for IsReadOnly
1256         and IsFixedSize (changes for 2.0). 
1257
1258 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
1259
1260         * Control.cs: Allow Region to be set to null.
1261
1262 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1263
1264         * MdiWindowManager.cs: Remove unused (commented out) code.
1265         * Form.cs: When the MdiChild is maximized, the form needs 
1266         WM_NCMOUSELEAVE, so request it.
1267         * InternalWindowManager.cs: 
1268         - Added tooltips to control buttons.
1269         - Removed duplicated control button handling code.
1270         - Removed unused (commented out) code.
1271         
1272 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
1273
1274         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
1275         was used because we must set cursor without trigger ChangeCursor event
1276         and without change Cursor control property. Fixes #79963.
1277
1278 2006-12-12  Andreia Gaita  <avidigal@novell.com>
1279         
1280         * Control.cs: Check if Region setter value is null, and ignore
1281
1282 2006-12-12  Jackson Harper  <jackson@ximian.com>
1283
1284         * TextControl.cs: We were almost always drawing one more line then
1285         needed, since the GetLineByPixel will return the last line found
1286         at that pixel. In most cases though, we were invalidating up to
1287         the junction between two lines.
1288         - Improve debug code.
1289
1290 2006-12-12  Chris Toshok  <toshok@ximian.com>
1291
1292         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
1293         and FillReversibleRectangle.
1294
1295         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
1296         and FillReversibleRectangle.
1297
1298         * XplatUIWin32.cs: add stubs which do nothing for
1299         DrawReversibleFrame, DrawReversibleLine, and
1300         FillReversibleRectangle.
1301
1302         * XplatUIOSX.cs: add stubs which raise NIE for
1303         DrawReversibleFrame, DrawReversibleLine, and
1304         FillReversibleRectangle.
1305
1306         * XplatUIX11.cs: add working implementation for
1307         DrawReversibleFrame, DrawReversibleLine, and
1308         FillReversibleRectangle.
1309         
1310         * ControlPaint.cs: implement DrawReversibleFrame,
1311         DrawReversibleLine, and FillReversibleRectangle, by calling into
1312         the appropriate XplatUI method.
1313
1314 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1315
1316         * Form.cs: Make MdiClient have the focus even if it's
1317         not selectable, since it should receive WM_KEY* and WM_MOUSE 
1318         messages. Fixes #79907.
1319         
1320 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1321
1322         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
1323         queried after the window is created.
1324         
1325         * XplatUIX11.cs: Added SendParentNotify to implement 
1326         WM_PARENTNOTIFY logic. Fixes #79965.
1327         
1328         * Control.cs: Added MakeParam.
1329         
1330 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1331
1332         * MdiClient.cs: Resume Layout before setting window
1333         states (fixes #80201).
1334
1335 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1336
1337         * MenuAPI.cs: Deselect a menu item after performing
1338         the click (fixes #80197).
1339
1340 2006-12-11  Jackson Harper  <jackson@ximian.com>
1341
1342         * TextBoxBase.cs: We need to cap this value, since Maximum -
1343         ViewPortHeight can be less than zero.
1344         - Only do selection with the left mouse button.
1345         * TextBox.cs: Don't tell the world that we have a context menu.
1346         * Control.cs: New method so that we can control whether or not the
1347         context menu is visible outside MWF.
1348
1349 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
1350
1351         * ToolBarButton.cs: Fix text positon. 
1352
1353 2006-12-11  Miguel de Icaza  <miguel@novell.com>
1354
1355         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
1356
1357         * Control.cs (DoubleBuffered): Add implementation.
1358
1359         * Application.cs (OpenForms): Add.
1360
1361 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
1362
1363         * Form.cs: Use opacity instead of Opactiy to determine if we need
1364         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
1365
1366 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
1367
1368         * Control.cs: Fix NRE if Control.Site was set to null.
1369
1370 2006-12-11  Chris Toshok  <toshok@ximian.com>
1371
1372         * Control.cs: ControlCollection.Remove should return if the arg is
1373         null, and ControlCollection.SetChildIndex should raise a ANE.
1374
1375 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
1376
1377         * Control.cs: Verify value set for Dock property. Code formatting
1378         updates.
1379
1380 2006-12-11  Jackson Harper  <jackson@ximian.com>
1381
1382         * TextControl.cs: Draw the caret and the selection when a flag is
1383         set on the owner.
1384         * TextBoxBase.cs: We want to draw the caret and the selection for
1385         TextBox but not for TextBoxBase.
1386         - If the window is resized and scrolling is no longer needed (the
1387         whole doc is visible) set the scroll position to zero.
1388         - The default SelectWord (the one TextBox uses) should move the
1389         caret to the end of the word.
1390         - SelectAll moves the caret to the end of the selection.
1391         * TextBox.cs: We don't selectall on focus, we just do it when the
1392         control is created.
1393         
1394 2006-12-11  Mike Kestner  <mkestner@novell.com>
1395
1396         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
1397
1398 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1399
1400         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
1401         2.0 support.
1402         * ListViewItem.cs: Add Name 2.0 property.
1403
1404 2006-12-11  Andreia Gaita  <avidigal@novell.com>
1405
1406         * TabControl.cs: Set visibility on selected or default tab 
1407         when tabcontrol handle is created, so that it's contents
1408         actually show up (duh). Fixes #80193
1409         Don't redraw the control if there is no handle created, as
1410         the selected index might be completely invalid. Added some tests
1411         to check for this.
1412
1413 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
1414
1415         * ToolBar.cs: Uses maximun width and height of all buttons as 
1416         button rectangle when ButtonSize specified, it looks strange but
1417         is what happens in Win32. Fixes #80189.
1418
1419 2006-12-11  Jackson Harper  <jackson@ximian.com>
1420
1421         * TextControl.cs: Need to track undo levels ourself, since
1422         compound actions will mess them up.
1423
1424 2006-12-10  Andreia Gaita  <avidigal@novell.com>
1425
1426         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
1427         SelectedIndex value is changed (even if it's not valid).
1428         Reset SelectedIndex to 0 when the handle is created and if
1429         the current index is invalid.
1430         Fixes SelectdeIndex unit tests and #80128
1431
1432 2006-12-08  Chris Toshok  <toshok@ximian.com>
1433
1434         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
1435         calls EndEdit, it needs to be called before we set current_cell to
1436         its new value.  Otherwise, we end up committing the value in the
1437         textbox to the new cell as well.  Fixes bug #80160.
1438
1439 2006-12-08  Chris Toshok  <toshok@ximian.com>
1440
1441         * Form.cs (set_CancelButton): if the button's DialogResult is
1442         None, set it to Cancel.  Fixes bug 80180.
1443
1444 2006-12-08  Jackson Harper  <jackson@ximian.com>
1445
1446         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
1447         to watch ourselves when setting the canvas size and setting the
1448         scrollbar values.
1449
1450 2006-12-08  Chris Toshok  <toshok@ximian.com>
1451
1452         * DataGrid.cs: comment out the two MakeTransparent calls for the
1453         time being so people using trunk (and not 1.2.2) on windows can
1454         actually use the datagrid.  This deals with bug #80151.
1455
1456 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
1457
1458         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
1459         Graphics.DrawImage (image, int, int, int, int) overload instead
1460         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
1461         the dpi difference and was blurring images it drew.
1462         [Fixes bug #79960]
1463
1464 2006-12-08  Chris Toshok  <toshok@ximian.com>
1465
1466         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
1467         rowcnt is 0 (such as with an empty datasource), and make sure we
1468         initialize not_usedarea.Y to cells.Y, so we don't draw over the
1469         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
1470
1471 2006-12-08  Chris Toshok  <toshok@ximian.com>
1472
1473         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
1474         grid.
1475
1476 2006-12-08  Chris Toshok  <toshok@ximian.com>
1477
1478         [ Fixes bug #80167 ]
1479         
1480         * ThemeWin32Classic.cs: don't draw the image if the button's flat
1481         style is FlatStyle.System.
1482
1483         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
1484         ButtonBase.flat_style private, and switch uses of it to the public
1485         property.
1486         
1487 2006-12-08  Chris Toshok  <toshok@ximian.com>
1488
1489         [ Fixes bug #80121 ]
1490         
1491         * ThemeWin32Classic.cs: center the caption text in the datagrid
1492         when we draw it.
1493
1494         * DataGrid.cs: lessen the amount we add to the caption height from
1495         6 to 2.  6 was making it huge.
1496
1497 2006-12-08  Andreia Gaita  <avidigal@novell.com>
1498
1499         * UpDownBase: Handle MouseWheel call directly instead of capturing
1500         the inner textbox's OnMouseWheel. Fixes #80166
1501
1502 2006-12-08  Jackson Harper  <jackson@ximian.com>
1503
1504         * TextControl.cs: We need to invalidate the textbox when we empty
1505         it (how had this not been discovered before?)
1506
1507 2006-12-08  Jackson Harper  <jackson@ximian.com>
1508
1509         * TextBoxBase.cs: Reworked the mouse down code so I could get it
1510         to behave like MS, we now ignore the eventargs.Click and just
1511         track state ourself, which we were already doing anyways.
1512         - Constrain the double click handler to the double click size.
1513         
1514 2006-12-08  Chris Toshok  <toshok@ximian.com>
1515
1516         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
1517         direction if that scrollbar isn't shown.  fixes bug #80158.
1518
1519 2006-12-08  Andreia Gaita  <avidigal@novell.com>
1520
1521         * NumericUpDown.cs: Update value on getter. Fixes #79950
1522
1523 2006-12-08  Chris Toshok  <toshok@ximian.com>
1524
1525         * MenuItem.cs: add back in the event cloning code.  I didn't know
1526         how to do it in the face of the EventHandlerList work i'd done
1527         last week.  Fixes bug #80183.
1528
1529 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
1530
1531         * Control.cs: Add an invalidate to the BackgroundImage setter.
1532         [Fixes 80184]
1533
1534 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
1535
1536         * ToolStrip*: Add some small properties reported by MoMA, fix event
1537         firing and default properties based off of unit tests, and add some
1538         attributes based off of the class status page.
1539
1540 2006-12-07  Jackson Harper  <jackson@ximian.com>
1541
1542         * TextBoxBase.cs: Take HideSelection into account when determining
1543         whether or not to show the selection.
1544         * RichTextBox.cs: After inserting the RTF into the document move
1545         the cursor to the beginning of the document.
1546
1547 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
1548
1549         * Control.cs: Remove static ArrayList "controls" which maintained
1550         a reference to every control created.
1551         * Application.cs: Create a static FormCollection to maintain a reference
1552         to every form created.  Use it in places that formerly enumerated through
1553         the controls one looking for forms.
1554         * Form.cs: Add and remove self from above FormCollection.
1555
1556 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
1557
1558         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
1559           not libgdk (though it makes me wonder why I didn't have any
1560           problems)
1561
1562 2006-12-07  Chris Toshok  <toshok@ximian.com>
1563
1564         [ you had to know this was coming after that last commit...]
1565         
1566         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
1567         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
1568         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
1569         XCopyArea).
1570
1571 2006-12-07  Chris Toshok  <toshok@ximian.com>
1572
1573         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
1574         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
1575         all the behavior we need for double buffering.
1576
1577         * XplatUIDriver.cs: implement the 3 double buffer methods using a
1578         client side Bitmap, just like the old Control-based double buffer
1579         code did.  The methods are virtual, so each XplatUI driver
1580         subclass can replace the implementation to use a faster, platform
1581         specific approach.
1582
1583         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
1584         double buffer code, and clean things up a bit in the process.
1585
1586 2006-12-06  Chris Toshok  <toshok@ximian.com>
1587
1588         * Control.cs: reindent WndProc.
1589
1590 2006-12-06  Chris Toshok  <toshok@ximian.com>
1591
1592         [ I wanna be like BenM when I grow up ]
1593         
1594         * Hwnd.cs: create a single static Graphics object on the static
1595         Bitmap we create.  use this for our text measurements.
1596
1597         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
1598         This was causing us to allocate a backbuffer for every control,
1599         even when it wasn't flagged as double buffered.  Instead use the
1600         single graphics instance.  This might have implications for
1601         multithreaded applications.  If we run into problems we can switch
1602         to creating 1 Graphics per control, on the static Hwnd bitmap.
1603
1604         this change nets us a 7M savings in private dirty mappings when
1605         running FormsTest.exe.
1606
1607 2006-12-06  Chris Toshok  <toshok@ximian.com>
1608
1609         * ListView.cs: the BackgroundImage override is just to set
1610         attributes.  chain up to base.BackgroundImage.
1611
1612         * RichTextBox.cs: same.
1613
1614         * ToolBar.cs: same, but we need to also redraw the toolbar when it
1615         changes, so instead a handler for BackgroundImageChanged.
1616         
1617         * Control.cs: make background_image private.
1618
1619 2006-12-06  Chris Toshok  <toshok@ximian.com>
1620
1621         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
1622         sure we even need this assignment, but roll with it for now.
1623
1624         * Control.cs: make the cursor field private.
1625
1626 2006-12-06  Chris Toshok  <toshok@ximian.com>
1627
1628         * Form.cs: we don't need to explicitly set ImeMode to
1629         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
1630         behavior in the face of ImeMode.Inherit.
1631
1632         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
1633         change the ctor's assignment to use ImeMode instead of ime_mode.
1634
1635         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
1636         ImeModeInherit.  Only check for the parent's imemode (and return
1637         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
1638         This fixes the button unit test, which sets both ImeMode and
1639         DefaultImeMode to ImeMode.Disable.
1640
1641         also make the ime_mode field private.
1642
1643 2006-12-06  Chris Toshok  <toshok@ximian.com>
1644
1645         * Control.cs: make control_style private.
1646
1647         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
1648         setting the styles to true, then setting them to false instead of
1649         reverting to their previous values.
1650
1651         also, call SetStyle on the scrollbars instead of using
1652         control_style directly.
1653
1654 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
1655
1656         * FormCollection.cs: Implement. [2.0]
1657
1658 2006-12-06  Chris Toshok  <toshok@ximian.com>
1659
1660         * Control.cs: make tab_stop private.
1661
1662         * Label.cs: set TabStop, not tab_stop.  reformat some event
1663         add/remove methods to make them more compact.
1664
1665 2006-12-06  Chris Toshok  <toshok@ximian.com>
1666
1667         * RadioButton.cs: fix TabStop handling.
1668
1669 2006-12-06  Chris Toshok  <toshok@ximian.com>
1670
1671         * TextBox.cs: remove the explicit assignments to has_focus.
1672         Control does that.
1673
1674         * ButtonBase.cs: remove the assignment to has_focus.  Control will
1675         manage that.
1676         
1677 2006-12-06  Chris Toshok  <toshok@ximian.com>
1678
1679         * ButtonBase.cs: remove all uses of is_enabled from this code.
1680         it's always true when any of the code containing the checks is
1681         executed.
1682
1683 2006-12-06  Chris Toshok  <toshok@ximian.com>
1684
1685         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
1686         with different semantics (some are present in both 1.1 and 2.0
1687         profiles) so that we match MS's behavior in our unit tests.
1688
1689 2006-12-06  Jackson Harper  <jackson@ximian.com>
1690
1691         * TextControl.cs: Make this operation undoable.
1692         * TextBoxBase.cs: Factor the border width into the preferred
1693         height.
1694         - implement Modified as per the spec.
1695
1696 2006-12-06  Chris Toshok  <toshok@ximian.com>
1697
1698         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
1699
1700 2006-12-06  Chris Toshok  <toshok@ximian.com>
1701
1702         * Control.cs: make right_to_left and context_menu fields private.
1703
1704 2006-12-06  Chris Toshok  <toshok@ximian.com>
1705
1706         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
1707         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
1708         Control.child_controls private.  switch all uses over to
1709         Control.Controls.
1710
1711 2006-12-06  Chris Toshok  <toshok@ximian.com>
1712
1713         * System.Windows.Forms/GroupBox.cs,
1714         System.Windows.Forms/AccessibleObject.cs,
1715         System.Windows.Forms/ErrorProvider.cs,
1716         System.Windows.Forms/Control.cs,
1717         System.Windows.Forms/UpDownBase.cs,
1718         System.Windows.Forms/ScrollBar.cs,
1719         System.Windows.Forms/DateTimePicker.cs,
1720         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
1721         System.Windows.Forms/ToolTip.cs,
1722         System.Windows.Forms/RadioButton.cs,
1723         System.Windows.Forms/LinkLabel.cs,
1724         System.Windows.Forms/Splitter.cs,
1725         System.Windows.Forms/TextBoxBase.cs,
1726         System.Windows.Forms/ToolStripTextBox.cs,
1727         System.Windows.Forms/ContainerControl.cs,
1728         System.Windows.Forms/ThemeWin32Classic.cs,
1729         System.Windows.Forms/SizeGrip.cs,
1730         System.Windows.Forms/ToolStripDropDown.cs,
1731         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
1732         private.  switch all uses over to Control.Parent.
1733
1734 2006-12-06  Chris Toshok  <toshok@ximian.com>
1735
1736         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
1737         Control does this before calling emitting these events.
1738
1739         * TabControl.cs: same.
1740
1741         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
1742         Control.client_rect.
1743
1744         * ButtonBase.cs: use the ClientSize property instead of the
1745         client_size field.
1746
1747         * ScrollableControl.cs: same.
1748
1749         * Control.cs: another pass at making properties private.  also,
1750         move the initialization of tab_stop to the ctor.
1751
1752 2006-12-05  Andreia Gaita <avidigal@novell.com>
1753
1754         * TabControl.cs: Let the selected index be set freely if the 
1755         control handle is not yet created.
1756
1757 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1758
1759         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
1760         internal until I can rewrite DefaultLayout.
1761         * ToolStrip.cs: Fix build error and some general cleaning.
1762         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
1763         Fix build errors caused by making some of Control's fields private.
1764
1765 2006-12-05  Jackson Harper  <jackson@ximian.com>
1766
1767         * TextControl.cs: Redo Insert a little so that it use IndexOf
1768         instead of Split, this prevents it from messing up on things like
1769         \n\n\n. Also more effecient since the split array doesn't need to
1770         be created.
1771         * TextBoxBase.cs: AppendText doesnt handle multiline and non
1772         multiline text differently, this is the first of many fixes that
1773         will make multiline/non-multiline the same thing as far as the
1774         TextBoxBase is concerned.
1775         - Don't split the text and insert lines, this can lose some line
1776         endings (like is the last line a soft or hard break). Instead use
1777         the new Insert.
1778         - Fix an off by one when combining all the lines in the Text
1779         getter.
1780         - Remove separate multiline handling from the Text getter/setter.
1781
1782 2006-12-05  Chris Toshok  <toshok@ximian.com>
1783
1784         * ButtonBase.cs: a few changes:
1785
1786         - don't reinitialize internal Control fields in the ctor when they
1787         have the same values as Control sets them.
1788
1789         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
1790         this before calling those methods.
1791
1792         - we don't need to call Refresh for anything.  use Invalidate
1793         instead.
1794
1795         - OnEnabledChanged doesn't need to redraw at all - Control.cs
1796         calls Refresh in its OnEnabledChanged.
1797         
1798         - several of the events we were registered for in the ctor to
1799         redraw ourselves already include calls to Invalidate in the
1800         property setters that raise the events.  remove the extra
1801         invalidation.
1802
1803         - reformat a switch statement that was 83274658 columns wide.
1804         
1805 2006-12-05  Mike Kestner  <mkestner@novell.com>
1806
1807         * ComboBox.cs: fix a unit test regression from a TextBox
1808         SelectionLength return of -1 when there's no selection.  
1809
1810 2006-12-05  Chris Toshok  <toshok@ximian.com>
1811
1812         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
1813         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
1814         cleaning up some of the internal Control fields being used by
1815         subclasses.
1816
1817 2006-12-05  Mike Kestner  <mkestner@novell.com>
1818
1819         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
1820         listbox after AddImplicit calls since it defaults to hidden. Add a 
1821         hack to preserve requested heights across DropDownStyle changes.
1822
1823 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
1824
1825         * PropertyGrid.cs: Hide FindFirstItem method from public API.
1826
1827 2006-12-05  Chris Toshok  <toshok@ximian.com>
1828
1829         * DataGridView.cs: fix compiler warnings.
1830
1831         * PrintControllerWithStatusDialog.cs: same.
1832
1833         * ToolBar.cs: same.
1834
1835         * FolderBrowserDialog.cs: same.
1836
1837         * Splitter.cs: same.
1838
1839         * DataGridViewComboBoxCell.cs: same.
1840
1841         * XplatUIWin32.cs: same.
1842
1843         * PictureBox.cs: same.
1844
1845         * Win32DnD.cs: same.
1846
1847         * PageSetupDialog.cs: same.
1848
1849         * FileDialog.cs: same.
1850
1851         * PrintDialog.cs: same.
1852
1853         * DataGridTextBoxColumn.cs: same.
1854
1855         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
1856
1857 2006-12-05  Chris Toshok  <toshok@ximian.com>
1858
1859         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
1860         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
1861         System.ComponentModel.EventHandlerList work.
1862
1863 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
1864
1865         * DrawTreeNodeEventArgs.cs: Added.
1866
1867 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1868         
1869         * InternalWindowManager.cs: Remove an unused field.
1870         
1871 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1872
1873         * InternalWindowManager.cs:
1874         - Save the point where the title bar is clicked.
1875         
1876         * MdiWindowManager.cs:
1877         - Only allow moving of the window as long as the 
1878         clicked point on the title bar does not get out of
1879         MdiClient's rectangle. Fixes #79982.
1880         
1881         * MdiClient.cs:
1882         - Added Horizontal/VerticalScrollbarVisible.
1883         - Simplified the scrollbar sizing algorithm.
1884         - Cache the difference in scrolled value in
1885         H/VBarValueChanged and move the calculation out
1886         of the for loop.
1887
1888 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1889
1890         * Control.cs: Make the Console.WriteLine in WndProc 
1891         write more info.
1892
1893 2006-12-05  Chris Toshok  <toshok@ximian.com>
1894
1895         * ToolStripManager.cs, ToolStripButton.cs,
1896         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
1897         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
1898         ToolStripSplitButton.cs, ToolStripSeparator.cs,
1899         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
1900         ToolStripProgressBar.cs, ToolStripContainer.cs,
1901         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
1902         to using System.ComponentModel.EventHandlerList.
1903
1904 2006-12-04  Chris Toshok  <toshok@ximian.com>
1905
1906         * LinkLabel.cs: fix up compiler warnings.
1907
1908         * TableLayoutSettings.cs: same.
1909
1910         * TreeView.cs: same.
1911
1912         * ToolBar.cs: same.
1913
1914         * TabControl.cs: same.
1915
1916         * RichTextBox.cs: same.
1917
1918         * ListViewItem.cs: same.
1919
1920         * PropertyGrid.cs: same.
1921
1922         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
1923
1924         * ToolTip.cs same.
1925
1926         * TextRenderer.cs: fix up compiler warnings.
1927
1928         * Label.cs: same.
1929
1930         * Form.cs: corcompare fixes.
1931
1932         * PictureBox.cs: fix up compiler warnings.
1933
1934         * ImageListStreamer.cs: same.
1935
1936         * TrackBar.cs: corcompare fix.
1937
1938         * Control.cs: fix up compiler warnings.
1939
1940         * SplitterPanel.cs: same.
1941
1942         * NumericTextBox.cs: same.
1943
1944         * ImageList.cs: same.
1945
1946         * StatusStrip.cs: same.
1947
1948         * ProgressBar.cs: corcompare fix.
1949
1950         * ToolStripButton.cs: fix up compiler warnings.
1951
1952         * ToolStripStatusLabel.cs: same.
1953
1954         * ToolStripSplitButton.cs: same.
1955
1956         * ToolStripSeparator.cs: same.
1957
1958         * ToolStripProgressBar.cs: same.
1959
1960         * ToolStripDropDownMenu.cs: same
1961
1962         * ToolStripDropDown.cs: same.
1963
1964         * ToolStripDropDownButton.cs: same.
1965
1966         * ToolStrip.cs: same.
1967
1968         * ToolStripControlHost.cs: same.
1969
1970         * ToolStripContentPanel.cs: same.
1971
1972         * ToolStripDropDown.cs: same.
1973
1974         * ToolStripContainer.cs: same.
1975
1976         * ToolStripPanel.cs: same, and add "new" where we need it to work
1977         with the new ArrangedElementCollection.
1978
1979         * ToolStripItemCollection.cs: add "new" where we need it to work
1980         with the new ArrangedElementCollection.
1981
1982 2006-12-04  Andreia Gaita <avidigal@novell.com>
1983
1984         * TabControl.cs: Fix default tab selection to after TabControl
1985         gets focus and not before. Fixes #80128
1986
1987 2006-12-04  Chris Toshok  <toshok@ximian.com>
1988
1989         * DataGridTableStyle.cs: remove the gross calling of
1990         datagrid.Refresh from here.  It's a broken idea and it doesn't
1991         work anyway.
1992
1993         * DataGrid.cs: instead, just register/unregister from the
1994         DataGridTableStyle events in CurrentTableStyle.  we play it
1995         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
1996         even though some would most likely not require it.  Fixes bug
1997         #80115 (and one portion of #80117 as a side effect).
1998
1999 2006-12-04  Chris Toshok  <toshok@ximian.com>
2000
2001         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
2002         so the textbox (if any) goes away.  Fixes bug #80117.
2003
2004 2006-12-04  Chris Toshok  <toshok@ximian.com>
2005
2006         * DataGridColumnStyle.cs: set the column's readonly property
2007         initially based on the property descriptor's IsReadOnly.  Fixes
2008         bug #80044.
2009
2010 2006-12-04  Chris Toshok  <toshok@ximian.com>
2011
2012         * ComboBox.cs: wrap the dropdown style changing work in
2013         SuspendLayout/ResumeLayout.  Fixes bug #79968.
2014
2015 2006-12-04  Jackson Harper  <jackson@ximian.com>
2016
2017         * TextBoxBase.cs: Fix off by one, since these are one-based.
2018         * TextBox.cs: Select all the text when we get focus.  The TextBox
2019         does this but the RTB does not.
2020
2021 2006-12-04  Chris Toshok  <toshok@ximian.com>
2022
2023         * DataGridTextBoxColumn.cs: remove some spew.
2024
2025         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
2026         but some part of me is saying "it shouldn't be here.."  At any
2027         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
2028         setting the value.
2029
2030 2006-12-04  Chris Toshok  <toshok@ximian.com>
2031
2032         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
2033         to reassign the propertydescriptor.
2034
2035 2006-12-04  Jackson Harper  <jackson@ximian.com>
2036
2037         * TextBoxBase.cs:
2038         * TextControl.cs: Remove some unused variables.  Maybe this will
2039         patch things up between mike and I.
2040         - don't split lines less then one char wide, if the viewport is
2041         that small text won't be visible anyways.
2042         
2043 2006-12-04  Jackson Harper  <jackson@ximian.com>
2044
2045         * TextBoxBase.cs: Default selection length is -1, need to do some
2046         more testing on windows to see when this is used for the property.
2047         - Redid the Lines [] property to that we properly remove soft line
2048         breaks
2049         - added support for preserving carriage returns
2050         -  CanUndo is not a variable like 'is undo enabled' it just returns
2051         true if there is undo operations available.
2052         - AppendText doesn't need to grab the last tag itself anymore,
2053         this happens automatically when we move the cursor.
2054         * TextControl.cs: Add CompoundActions to the undo class. This
2055         allows combining the other operations into one big option.  ie a
2056         paste will combine { delete old, insert new, move cursor }
2057         - Add InsertString undo operation
2058         - New method for deleting multiline text
2059         - Add carriage returns to lines. So we can preserve carriage
2060         returns when text is 'roundtripped'
2061
2062 2006-12-04  Chris Toshok  <toshok@ximian.com>
2063
2064         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
2065         minimum 0.  Fixes the scrollbar exception in bug #80136.
2066
2067 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2068
2069         * MdiClient.cs: 
2070         * MdiWindowManager: Removed unused fields and methods.
2071         
2072 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2073         
2074         * StatusBar.cs: Update all panels when a AutoSize=Contents
2075         panel needs updating.
2076         
2077         * StatusBarPanel.cs: Remove twidth and only use initialize.
2078         Fixes #80031.
2079                 
2080 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2081
2082         * Form.cs: When a form's MdiParent is set add it directly
2083         on top of the z-order in stead of relying on MdiClient's
2084         ActivateChild to do it. Fixes #80135.
2085         
2086         * MdiClient.cs: 
2087         - Remove original_order, mdi_child_list is already doing
2088         the same thing.
2089         - Create mdi_child_list on construction in
2090         stead of first use (avoids a few null checks).
2091
2092         * MenuItem.cs: Use an already existing list of mdi children
2093         to get the correct order of children and remove the other
2094         redundant list.
2095
2096 2006-12-04  Chris Toshok  <toshok@ximian.com>
2097
2098         * PropertyGridView.cs: cached_splitter_location is only used in
2099         !DOUBLEBUFFER code.
2100
2101         * PropertyGrid.cs: implement the ComComponentNameChanged event
2102         using Events, hoping that would fix the warning.  Looks like a
2103         compiler bug instead (#80144).
2104
2105         * PropertyManager.cs: remove unused method.
2106
2107 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
2108
2109         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
2110         include parentesis to fix expression evaluation. Fixes #79634.
2111
2112 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2113         
2114         * MenuAPI.cs:
2115         - Changes to fix behavior in Menu control, some reported in #80097
2116         and other detected during behavior refactory like a select event
2117         problems.
2118         - Remove unneded "if's" conditions.
2119         - Created an internal to flag when popup is active in control, we need 
2120         it because in .NET you can have menu active but without popup active
2121         when you active menu using popup without visible items.
2122         - Mimic win32 behavior for Select and Popup events.  
2123         - Dont open popup menu when you dont have visible subitems.
2124         - Do nothing when click on disabled menu item.
2125         - Some small changes to follow the coding style guidelines.
2126         - Unselect menu only when another control gives focus. Fixes #80097.
2127         - Remove unused code.
2128         
2129         * MenuItem.cs: internal VisibleItems method to check if menu
2130         theres visible subitems, it will be usefull to fix some 
2131         behavior in Menu control.
2132         
2133 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2134         
2135         * Timer.cs: Tag property for 2.0 profile.
2136         
2137 2006-12-01  Chris Toshok  <toshok@ximian.com>
2138
2139         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
2140         
2141         * Win32DnD.cs: comment out some unused fields.
2142
2143         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
2144         some unused properties/methods.
2145
2146         * XplatUIX11.cs: fix MousePosition so we override the base class's
2147         property instead of conflicting with it.
2148
2149         * PictureBox.cs: comment out some unused fields
2150
2151         * OSXStructs.cs: make some struct fields public.
2152
2153         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
2154         MousePosition so we override the base class's property instead of
2155         conflicting with it.
2156
2157         * X11Dnd.cs: comment out some unused fields
2158
2159         * X11DesktopColors.cs: fix some struct field visibility to quiet
2160         the compiler.
2161
2162         * X11Dnd.cs: remove some debug code.
2163
2164         * ThemeClearlooks.cs: comment out unused field.
2165
2166         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
2167
2168         * ThemeGtk.cs: comment out some unused pinvokes.
2169
2170         * Timer.cs: remove some unused fields.
2171
2172         * ThemeClearlooks.cs: comment out unused field.
2173
2174         * UpDownBase.cs: comment out unused field.
2175
2176         * DataObject.cs: comment out unused field.
2177
2178         * DataGridBoolColumn.cs: reomve unused field.
2179
2180         * DataGrid.cs: remove unused field.
2181
2182         * Cursor.cs: remove old ToBitmap code.
2183
2184         * ControlPaint.cs: remove unused method.
2185
2186         * ScrollBar.cs: remove unused fields.
2187
2188         * ComboBox.cs: remove unused field, and chain up to
2189         AccessibleObject ctor.
2190
2191         * ListBox.cs: remove unused field.
2192
2193         * ButtonBase.cs: wrap a couple fields in NET_2_0.
2194
2195         * GridEntry.cs: remove unused fields.
2196
2197         * Binding.cs: remove unused fields.
2198
2199         * AxHost.cs: remove unused method.
2200
2201         * ContainerControl.cs: remove unused field.
2202
2203         * ScrollableControl.cs: remove unused fields.
2204
2205 2006-12-01  Chris Toshok  <toshok@ximian.com>
2206
2207         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
2208         the Where/WhereString stuff.  it's easy enough to CWL
2209         Environment.StackTrace.
2210
2211         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
2212         unused private fields.
2213
2214 2006-12-01  Jackson Harper  <jackson@ximian.com>
2215
2216         * TextControl.cs: Do not update the view while inserting multiline
2217         text. If we update the view we might wrap lines, before entering
2218         the new lines, which causes the new line insertion calculations to
2219         be totally fubared.
2220         - Remove an old TODO
2221         - Make debug output a little nicer
2222         
2223 2006-12-01  Chris Toshok  <toshok@ximian.com>
2224
2225         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
2226
2227 2006-12-01  Chris Toshok  <toshok@ximian.com>
2228
2229         [ fix the majority of the CS0108 warnings we've been suppressing ]
2230         
2231         * TreeView.cs: mark BackgroundImageChanged as 'new'.
2232
2233         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
2234         to "LayoutToolBar" to quiet mcs.
2235         
2236         * TabControl.cs: mark our ControlCollection class as 'new'.
2237
2238         * TextBoxBase.cs: mark some events as 'new'.
2239
2240         * Splitter.cs: TabStop is 'new'.
2241
2242         * ControlBindingsCollection.cs: mark a few methods as new since
2243         they change the visibility from protected to public.
2244
2245         * RadioButton.cs: DoubleClick -> base class, and remove unused
2246         HaveDoubleClick.
2247
2248         * MonthCalendar.cs: ImeMode property -> base class, and mark many
2249         events as new.
2250
2251         * NumericUpDown.cs: TextChanged -> base class.
2252
2253         * CheckedListBox.cs: mark our ObjectCollection class as new to
2254         quiet mcs.
2255
2256         * FolderBrowserDialog.cs: make HelpRequest event new and have it
2257         muck with the base class.
2258
2259         * StatusBar.cs: fix some mcs warnings about Update being the same
2260         name as a base class method.
2261
2262         * RichTextBox.cs: mark some events as new, and make them do things
2263         to the base class impl.
2264
2265         * UserControl.cs: mark TextChanged as new, and have it manipulate
2266         base.TextChanged.
2267
2268         * UpDownBase.cs: mark some things new.
2269
2270         * CheckBox.cs: mark DoubleClick "new", and add some text about
2271         what we need to look at.
2272
2273         * Panel.cs: make the events "new", and manipulate the base
2274         version.  these are just here for attributes.
2275
2276         * AccessibleObject.cs: make owner private.
2277
2278         * Control.cs: deal with AccessibleObject.owner being private.
2279         cache our own copy if we need it.
2280
2281         * Button.cs: add "new" to the DoubleClickEvent.
2282
2283         * ListBox.cs: no need to track our own has_focus here.  let
2284         Control.has_focus do it for us.  Also some other work to clear up
2285         warnings about not overriding base class methods of the same name.
2286         
2287         * ComboBox.cs: clear up some warnings about not override base
2288         class methods of the same name.
2289
2290 2006-12-01  Chris Toshok  <toshok@ximian.com>
2291
2292         * Form.cs: flag a few things as "new" to quiet some of the mcs
2293         warnings.
2294
2295         * AxHost.cs: same.
2296
2297         * PrintPreviewDialog.cs: same.
2298
2299         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
2300         now DGV isn't so horrible on the class status page.  also, move
2301         all events to using System.ComponentModel.EventHandlerList.  my
2302         wrists hurt.
2303
2304 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2305
2306         * MdiWindowManager.cs:
2307         - Set form to active mdi child if shown,
2308         and update the active mdi child to the next 
2309         remaining child in the z-order if the form is hidden.
2310
2311         * Form.cs: 
2312         - Track if the form has been visible and if its 
2313         visibility is beeing changed, so that the MdiClient
2314         can properly decide the ActiveMdiChild. The MdiClient 
2315         cannot track this since the form can change visibility 
2316         before MdiClient is created.
2317
2318         * MdiClient.cs:
2319         - Don't activate anything of the parent form is changing
2320         its visibility.
2321         - Rework ActiveMdiChild to only return visible mdi 
2322         children and take into account several other corner 
2323         cases.
2324
2325 2006-12-01  Chris Toshok  <toshok@ximian.com>
2326
2327         * IBindableComponent.cs: new 2.0 interface.
2328
2329 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
2330
2331         * DataGrid.cs: Font for caption area is bold by default.
2332
2333 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
2334
2335         * Menu.cs: Tag property for 2.0.
2336         
2337 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
2338
2339         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
2340         
2341 2006-12-01  Chris Toshok  <toshok@ximian.com>
2342
2343         * TreeView.cs: doh, the Begin* events should be
2344         TreeViewCancelEventHandler.
2345
2346 2006-12-01  Chris Toshok  <toshok@ximian.com>
2347
2348         * Form.cs: Form.ControlCollection already stores off the
2349         form_owner field.  don't access the base class's internal "owner"
2350         field.
2351
2352         * Control.cs: make all the fields in Control.ControlCollection
2353         private.  there's no need for any internal fields here.
2354
2355 2006-12-01  Chris Toshok  <toshok@ximian.com>
2356
2357         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
2358         OnHandleCreated.  Fixes bug #80109.
2359
2360 2006-12-01  Chris Toshok  <toshok@ximian.com>
2361
2362         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
2363         SplitContainer.cs, Control.cs, StatusStrip.cs,
2364         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
2365         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
2366         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
2367         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
2368         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
2369         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
2370         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
2371         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
2372         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
2373         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
2374
2375         do most of the work to convert our code over to use
2376         System.ComponentModel.Component.Events for
2377         adding/removing/dispatching events.
2378
2379
2380 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
2381
2382         * DataGridView.cs: Fix an ArgumentNullException reported 
2383         twice today in IRC.
2384
2385 2006-11-30  Mike Kestner  <mkestner@novell.com>
2386
2387         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
2388         grabbed listbox.  Fixes #80036 and #80101.
2389
2390 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
2391
2392         * Message.cs: Changed ToString() to match MS.
2393         
2394 2006-11-30  Jackson Harper  <jackson@ximian.com>
2395
2396         * TextBoxBase.cs: You can still change the selected text on a read
2397         only textbox.
2398         * TextControl.cs: Lower magic number for wrap calculations. This
2399         lets text get closer to the right (far) edge.
2400
2401 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
2402
2403         * Control.cs: Tweak 2.0 layout properties.
2404         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
2405         * TextRenderer.cs: Add a new overload.
2406         * ToolStrip*: Huge amount of changes and new features.
2407
2408 2006-11-30  Mike Kestner  <mkestner@novell.com>
2409
2410         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
2411         scroll range correct.  Fixes #79994.
2412
2413 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
2414
2415         * MdiWindowManager.cs: Update main form's text when
2416         a form is closed. (fixes #80038)
2417         
2418 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
2419
2420         * ToolBar.cs:
2421         - Fix an regression in ButtonSize.
2422         - Get ImeMode default value change to "Disable".
2423         - Get ShowTooltips default value change to true, default value is 
2424         "false" but after make a test in .NET we get "true" result as default.
2425         
2426 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
2427
2428         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
2429
2430 2006-11-29  Chris Toshok  <toshok@ximian.com>
2431
2432         * XplatUIWin32.cs (GetWindowTransparency): check return value of
2433         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
2434         SetWindowTransparency hasn't been called.
2435
2436 2006-11-29  Chris Toshok  <toshok@ximian.com>
2437
2438         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
2439         if it's supported.
2440         (set_AllowTransparency): reorder things a little so that the
2441         WS_EX_LAYERED style is removed properly.
2442
2443 2006-11-29  Chris Toshok  <toshok@ximian.com>
2444
2445         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
2446         
2447         * Form.cs: only call the XplatUI transparency method (get/set) if
2448         SupportsTransparency says it's supported. Otherwise fallback to
2449         doing nothing (in the set case) or returning the instance field we
2450         cache (in the get case).
2451
2452         * XplatUIStructs.cs: add TransparencySupport flag enum.
2453         
2454         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
2455         change to SupportsTransparency.
2456
2457         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
2458         TransparencySupport.None from SupportsTransparency.
2459
2460         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
2461         TransparencySupport.Set from SupportsTransparency.
2462
2463         * XplatUIWin32.cs: implement GetWindowTransparency calling
2464         GetLayeredWindowAttributes, and implement SupportsTransparency by
2465         checking whether or not both
2466         GetWindowTransparency/SetWindowTransparency are available
2467         entrypoints.  We need to do this since SetWindowTransparency is
2468         available as of win2k, but GetWindowTransparency requires winxp.
2469         yay win32 api.
2470
2471         * XplatUI.cs: Add GetWindowTransparency, and change
2472         SupportsTransparency to allow for either/both Get/Set.
2473
2474 2006-11-29  Chris Toshok  <toshok@ximian.com>
2475
2476         * DataGrid.cs: keep from going into an infinite loop redrawing a
2477         datagrid that has no datasource.  Fixes bug #80033.
2478
2479 2006-11-29  Chris Toshok  <toshok@ximian.com>
2480
2481         * MenuItem.cs: fix the NRE when we assign text (and therefore call
2482         Invalidate) before the mainmenu has been assigned to a control.
2483
2484 2006-11-29  Chris Toshok  <toshok@ximian.com>
2485
2486         * DataGrid.cs: detect when we should be double the double click
2487         row/column autosize stuff, although that codepath has yet to be
2488         written.  part of the work for bug #79891.
2489
2490 2006-11-29  Chris Toshok  <toshok@ximian.com>
2491
2492         * Binding.cs (SetControl): fix unit test.
2493
2494 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2495
2496         * PageSetupDialog.cs: Validate the margins and set them in
2497         PageSettings. 
2498         * NumericTextBox.cs: New class to mimic the behavior of the
2499         textboxes used in the printing dialogs.
2500
2501 2006-11-29  Andreia Gaita  <avidigal@novell.com>
2502         
2503         * Form.cs: Revert previous change (remove call UpdateBounds
2504         from form constructor), because it messes with the handle creation
2505         order, and that one needs lots and lots of love.
2506         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
2507         for valid printer and throw InvalidPrinterException if document
2508         is set but printer not valid), adding a MonoTODO. Once 
2509         handle creation is done properly, we can put this back in.
2510
2511 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2512
2513         * MenuItem.cs: Create a invalidate method for menu item, to be
2514         calling from set text, it make text changes to imadiate update
2515         on screen. Fixes #80013. 
2516         
2517 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2518
2519         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
2520         fixes bug #80070 and some other problem on toolbar buttons
2521         layout.
2522
2523 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
2524
2525         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
2526         with dotted brush.      Fixes #79564
2527         
2528 2006-11-28  Andreia Gaita  <avidigal@novell.com>
2529
2530         * Form.cs: Removed call to UpdateBounds on Form
2531         constructor, it was causing a call to CreateHandle
2532         before it was supposed to.
2533         * PrintControllerWithStatusDialog: Applied patch
2534         by Chris Toshok to hide controller when there are
2535         no printers available.
2536         PrintDialog.cs: initialize printer settings to 
2537         null - correct DefaultValues test #5
2538         * PrintPreviewControl.cs: Move PrintController
2539         initialization to GeneratePreview
2540         * PrintPreviewDialog.cs: 
2541         - Remove Preview generation     from Document_set(). It is 
2542         called on OnPaint
2543         - Throw InvalidPrinterException on CreateHandle if
2544         a Document is set but there are no printers or 
2545         printer is not valid.
2546         * ThemeWin32Classic: don't paint PrintPreviewControl
2547         if there is nothing to paint    
2548
2549 2006-11-28  Miguel de Icaza  <miguel@novell.com>
2550
2551         * Form.cs: Add another popular method.
2552
2553         * TabPage.cs: ditto.
2554
2555 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2556
2557         * MenuItem.cs: Fixed a warning.
2558         * InternalWindowManager: Fixed a warning.
2559
2560 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2561
2562         * MenuItem.cs:
2563         - When cloning a menu also clone MdiList and clone the 
2564           window menu items properly (as the forms and menuitems
2565           are kept in an internal hashtable, these need updating 
2566           as well)
2567         - Rewrote the window menu code, menu items are added in the
2568           order the forms were added to their parent, and they are
2569           updated every time the window menu is shown (before the
2570           list was only generated once, in the current order of the
2571           forms, and would never be updated). A checkmark is shown
2572           next to the item corresponding to the active mdi child.
2573
2574 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2575
2576         * XplatUIStructs.cs: 
2577         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
2578         
2579         * XplatUIWin32.cs: 
2580         - Added TME_NONCLIENT to TMEFlags.
2581         - Handles WM_NCMOUSEMOVE in GetMessage to 
2582           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
2583
2584         * MdiWindowManager:
2585         - Now merges mdi child menu to parent menu when maximized.
2586         - Recalculate NC areas of both mdi child and mdi parent. 
2587           Fixes #79757 (4).
2588           on window state and size changes.Fixes #79844 (3).
2589         - Handle WM_NCCALCSIZE to properly calculate borders.
2590
2591         * Form.cs:
2592         - Add/remove to the mdi containers list of mdi children 
2593           in the order they are added.
2594         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
2595           to the maximized mdi child.
2596         
2597         * InternalWindowManager.cs:
2598         - Only execute a click on the control buttons on the mouse up,
2599           not on the mouse down. Show the state of the button 
2600           (was only showing Normal state, never Pressed state). The
2601           pressed button now follows the mouse (if you click the Close 
2602           button and move the mouse over the Maximize button, the 
2603           Maximize button will be shown as pressed). Since Win32 does
2604           not generate WM_NCLBUTTONUP if you release the button outside
2605           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
2606           it as a mouse up.
2607         
2608         * ThemeWin32Classic.cs:
2609         - Draw a missing border around mdi child forms. Fixes #79844 (2).
2610
2611         * MdiClient.cs:
2612         - Added a list of forms which contains the order the forms are
2613           added to the mdi parent.
2614         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
2615         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
2616         - If the active form changes set the scrollbars to the top
2617           of the Z order, otherwise the form could hide them.
2618         - Scrollbars are now sized according to ClientSize, not 
2619           to Size, and they take into account the other scrollbar
2620           to determine maximum.
2621         
2622 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
2623         
2624         * XplatUI.cs:
2625         * XplatUIDriver.cs:
2626         * XplatUIX11.cs:
2627         * XplatUIWin32.cs:
2628         * XplatUIOSX.cs:
2629         - Added RequestAdditionalWM_NCMessages for windows to 
2630           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
2631           Currently only implemented in XplatUIWin32.
2632
2633 2006-11-27  Chris Toshok  <toshok@ximian.com>
2634
2635         * Hwnd.cs: only add the hwnd to the windows hash in
2636         set_WholeWindow and set_ClientWindow if whole_window/client_window
2637         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
2638
2639 2006-11-27  Mike Kestner  <mkestner@novell.com>
2640
2641         * ComboBox.cs: remove redundant OnDropDown call.  It is called
2642         from the ComboListBox.ShowWindow code. Fixes #79969.
2643
2644 2006-11-27  Chris Toshok  <toshok@ximian.com>
2645
2646         * Hwnd.cs: remove the setters for ExposePending and
2647         NCExposePending - noone uses them.
2648
2649 2006-11-27  Jackson Harper  <jackson@ximian.com>
2650
2651         * TextControl.cs: new param for ReplaceSelection which determines
2652         whether we select the new selection, or set the cursor to the end
2653         of the new selection.
2654         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
2655         pasting, select the new text.
2656         * RichTextBox.cs: Use new param for ReplaceSelection.
2657
2658 2006-11-27  Jackson Harper  <jackson@ximian.com>
2659
2660         * TextBoxBase.cs: Set the selection to the caret after the caret
2661         is moved, otherwise they get out of sync.
2662
2663 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2664
2665         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
2666         it fixes #80015
2667
2668 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
2669
2670         * ThemeWin32Classic.cs: 
2671         - Fix toolbar drop down arrow position.
2672         - Fix drop down appearance when ToolBar.Appearance is normal,
2673         it fixes #80018.
2674         
2675 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
2676
2677         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
2678         * Control.cs: Same.
2679         * UpDownBase.cs: Same.
2680         * ButtonBase.cs: Same.
2681         * ScrollBar.cs: Same.
2682         * TrackBar.cs: Same.
2683         * PictureBox.cs: Same.
2684         * UserControl.cs: Same.
2685         * Label.cs: Same.
2686         * ListControl.cs: Same.
2687         * TextBoxBase.cs: Same.
2688         * ListView.cs: Same.
2689         * RichTextBox.cs: Same.
2690         * TreeView.cs: Same.
2691
2692 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
2693
2694         * PrintDialog.cs:
2695         - Text label for where 
2696         - Text label comment was not shown
2697
2698 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
2699
2700         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
2701
2702 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2703
2704         * InternalWindowManager.cs: 
2705         - Handle WM_PARENTNOTIFY to activate the form
2706         if any child control is clicked.
2707         - The form is only sizable if not minimized.
2708
2709         * MdiWindowManager.cs:
2710         - Save the IconicBounds if the form is moved.
2711         - Rework SetWindowState, now the window bounds 
2712         are stored only if the old window state is Normal.
2713         
2714         * MdiClient.cs:
2715         - In SetWindowStates store the old window state if 
2716         the window is maximized and restore window state if
2717         the window looses focus.
2718         - Don't handle any scrollbar value changes if 
2719         initializing the scroll bars. Fixes #79771.
2720         - Reworked ArrangeIconicWindows. Current algorithm
2721         tests bounds agains all other minimized windows, if
2722         any intersections create new bounds (going left to 
2723         right, bottom to top) and then test again. When 
2724         successful the bounds are saved and never computed
2725         again. Fixes #79774.
2726
2727 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2728
2729         * InternalWindowManager.cs: Added HandleTitleBarUp.
2730
2731 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2732
2733         * NumericUpDown.cs: In .NET 1.1, user entered text is still
2734         hexadecimal in ParseUserEdit.
2735
2736         
2737 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
2738
2739         * MdiWindowManager.cs: 
2740         - Handle a click on the form's icon to show the 
2741         system menu (when maximized). Fixes #79775.
2742         - Change the existing click handler for the form's
2743         icon when not maximized to show on MouseUp.
2744         Fixes #79776.
2745
2746         * Form.cs: In OnResize only layout the mdi child's
2747         parent if it actually has a parent. Might not if
2748         the window is closing.
2749
2750
2751 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2752
2753         * MdiClient.cs: Ignore active MDI client for text of parent, if
2754         child has no text set.
2755
2756 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
2757
2758         * ToolBar.cs: Fixed ToString to match MS.
2759
2760 2006-11-22  Andreia Gaita  <avidigal@novell.com>
2761
2762         * NumericUpDown: 
2763         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
2764         update inner values on set. Fixes #79966.
2765         - Override OnLostFocus to update value on NET 2. Fixes #79950.
2766         - Fix hexadecimal parsing.
2767         
2768         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
2769         parent. Fixes #79957
2770
2771 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2772
2773         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
2774         the actual size has to be queried, since if height /
2775         width is negative Win32 changes it to 0. 
2776         Fixes #79999 on Windows.
2777         
2778         * XplatUIX11.cs: Set height / width to 0 if negative
2779         in SetWindowPos. Fixes #79999 on Linux.
2780         
2781 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2782
2783         * ThemeWin32Classic.cs: Fix text redenring when button is
2784         pressed.
2785
2786 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
2787
2788         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
2789         and later navigate by mouse. Fixes #79528.
2790
2791 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2792
2793         * ToolBar.cs: Set default value for TabStop to false in
2794         constructor, it fixes remaining behavior of bug #79863.
2795
2796 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2797
2798         * MdiWindowManager.cs:
2799         * InternalWindowManager.cs:
2800         - Moved a few methods specific to Mdi from 
2801         InternalWindowManager to MdiWindowManager.
2802         Fixes #79996.
2803         
2804 2006-11-21  Chris Toshok  <toshok@ximian.com>
2805
2806         * XplatUIOSX.cs: stub out InvalidateNC.
2807
2808         * XplatUIWin32.cs: implement InvalidateNC using the call I found
2809         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
2810
2811         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
2812
2813         * XplatUIDriver.cs: add InvalidateNC abstract method.
2814
2815         * XplatUI.cs: add InvalidateNC.
2816
2817 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
2818
2819         * ToolBar.cs: Invalidate complete button area when pressed status 
2820         was changed.
2821         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
2822         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
2823         by 1 when button is pressed.
2824
2825 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2826
2827         * ToolButton.cs: Invalidate middle of DropDown button when
2828         ToolBar theres DropDownArrows.
2829         * ThemeWin32Classic.cs: Change position of DropDown arrow and
2830         fix DropDown drawing operations.
2831
2832 2006-11-20  Chris Toshok  <toshok@ximian.com>
2833
2834         * NativeWindow.cs: fix the formatting of functions ('{' on the
2835         following line), and enable the thread exception dialog.
2836
2837         * Application.cs: remove the duplicate exception catching from
2838         here.
2839
2840 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2841
2842         * Toolbar.cs: Triggers button click event when click on icon
2843         of dropdown ToolBarButton. Fixes #79912.
2844         
2845 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2846
2847         * Theme.cs:
2848         * ThemeWin32Classic.cs:
2849         - Added a property WindowBorderFont to enable themeing
2850           of mdi child windows' Text.
2851           
2852 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2853
2854         * InternalWindowManager.cs:
2855         * Form.cs:
2856         * MdiClient.cs:
2857         * MdiWindowManager.cs: 
2858         - If mdi child is maximized, set mdi parent's
2859           text to "Parent - [Child]". Fixes #79770.
2860         - If there is any maximized mdi child windows, only the active 
2861           window (and any new windows) is maximized, the rest are normal.
2862         - On a WindowState change only save mdi child's window bounds 
2863           if the old window state was normal. Fixes #79774.
2864         - The scroll bars are now calculated on hopefully all
2865           necessary events. Fixed #79771 / #79844->6 / #79906.
2866         - MdiClient.SizeScrollBars() now takes into account docked 
2867           controls in the parent when calculating available space.
2868         - InternalWindowManager now always repaints the entire title
2869           area. Fixes #79844->1/4/5.
2870         - Added RequestNCRecalc on mdi child windowstate changes.
2871           Fixes #79772.
2872
2873 2006-11-20  Mike Kestner  <mkestner@novell.com>
2874
2875         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
2876         in the MouseUp handler of the listbox and move the return handling
2877         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
2878
2879 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
2880
2881         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
2882
2883 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2884
2885         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
2886           working in 1.2.x anymore. So, updated.
2887
2888 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
2889
2890         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
2891         NumberGroupSeparator of current culture instead of assuming en-US.
2892         Fixed bug #79967.
2893
2894 2006-11-17  Mike Kestner  <mkestner@novell.com>
2895
2896         * Control.cs: Add the concept of implicit bounds setting so that
2897         dock/undock round trips preserve explicitly set size/locations.
2898         Fixes #79313.
2899
2900 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
2901
2902         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
2903           can't handle those filters. (Fixes bug #79961)
2904
2905 2006-11-17  Chris Toshok  <toshok@ximian.com>
2906
2907         [ fixes the exit/crashes associated with #79835.  it's clearly
2908         suboptimal though, we need to figure out a better way to solve
2909         this. ]
2910         
2911         * PrintPreviewControl.cs: deal with the new invalid printer
2912         exceptions.
2913
2914         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
2915         and return false (so CommonDialog.ShowDialog doesn't actually show
2916         the form.)
2917
2918         * PrintDialog.cs: enable/disable the Ok button depending on
2919         whether or not the printer is valid.
2920
2921         * CommonDialog.cs (ShowDialog): only actually show the form if
2922         RunDialog returns true.
2923
2924 2006-11-17  Jackson Harper  <jackson@ximian.com>
2925
2926         * TextControl.cs: When soft splitting a line, mark it as a soft
2927         split line. Also carry over the current line break to the next
2928         line.
2929
2930 2006-11-17  Chris Toshok  <toshok@ximian.com>
2931
2932         * XplatUIX11.cs: when scrolling a window with an invalid area, we
2933         only want to shift the part of the invalid area that overlaps the
2934         area we're scrolling.  we also don't want to clear the invalid
2935         area unless the invalid area was entirely contained within the
2936         scrolling area.
2937
2938 2006-11-16  Chris Toshok  <toshok@ximian.com>
2939
2940         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
2941         also make sure to free the memory returned by XGetWindowProperty
2942         in GetText().
2943
2944         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
2945
2946 2006-11-16  Chris Toshok  <toshok@ximian.com>
2947
2948         * XplatUI.cs: add a new super secret way to get at the totally
2949         unsupported X11 backend.
2950
2951 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
2952
2953         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
2954
2955 2006-11-16  Jackson Harper  <jackson@ximian.com>
2956
2957         * TreeView.cs: Allow more explicit setting of top node position
2958         for scrollbars. Slower algo, but more accurate.
2959         - CollapseAll should maintain the current top node.
2960         * TextBoxBase.cs: When positioning the caret, use the line, pos
2961         method, since the x, y method does not grab the correct tag, and
2962         the caret height never gets set correctly. (Maybe I should just do
2963         away with the caret having its own height, and always use the
2964         carets current tag for height).
2965
2966 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
2967
2968         [Fixes 79778, 79923]
2969
2970         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
2971         Parent to the FosterParent instead.
2972
2973 2006-11-16  Jackson Harper  <jackson@ximian.com>
2974
2975         * TreeView.cs: Need to recalc the topnode when we expand or
2976         collapse. The scrolling methods can't handle this on their own,
2977         since they use differences between the last scroll position, and
2978         those difference get completely messed up since we are expanding
2979         nodes.  This problem should probably be fixed in the scrolling
2980         methods, so they can figure out exactly where they are, but this
2981         will slow things down a little.
2982         * ThemeWin32Classic.cs: Special case for groupboxes with empty
2983         strings, makes nunit-gui look a lot nicer.
2984
2985 2006-11-16  Chris Toshok  <toshok@ximian.com>
2986
2987         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
2988         the broken multithreaded event handling we have in here.  File
2989         this entry under "Why we should move to the new X11 backend".
2990
2991         Any thread can make it into UpdateMessageQueue, which gets events
2992         from the X socket - some of which could belong to hwnds being
2993         managed by a different thread.  We can also have multiple threads
2994         in UpdateMessageQueue at the same time, with each one reading from
2995         the X socket.  This leads to many problems, with the following
2996         solutions:
2997
2998         We can't use hwnd.Queue.Enqueue anywhere in here and must use
2999         EnqueueLocked.
3000
3001         The MotionNotify compression we do can't work across threads
3002         (without locking the entire queue, perhaps) since we call
3003         hwnd.Queue.Peek, so we just punt and don't compress motion events
3004         unless the owning thread is the one which got the X event.
3005
3006         ConfigureNotify is another fun one, since it modifies the hwnd's
3007         bounds and then enqueues the event.  We add a lock to Hwnd which
3008         is held when setting configure_pending to true (and enqueuing the
3009         event).
3010
3011         There is a race wrt the wake socket.  we need to make sure that
3012         only 1 thread is waiting on that socket, or else a thread could
3013         sleep waiting for data that never comes.  It's difficult (but not
3014         impossible) to make happen, because it seems to require something
3015         like the following:
3016
3017             1. Thread 1 polls on wake_receive
3018         
3019             2. poll returns saying there's data to be read on
3020                wake_receive.
3021         
3022             3. Thread 2 polls on wake_receive and immediately returns
3023                saying there's data to be read.
3024
3025             4. Thread 2 reads the wakeup byte from wake_receive
3026
3027             5. Thread 1 attempts to read the wakeup byte from
3028                wake_receive.
3029
3030             6. Thread 2 exits (due to a form closing, perhaps).
3031
3032             7. Thread 1 blocks forever.
3033         
3034         Fun, eh?
3035
3036         Fixing the Expose handling isn't done yet, and the races inherent
3037         in that piece of code are responsible for the drawing mistakes you
3038         see when generating expose events in a MT app (like NPlot).  This
3039         one is the likely to be the hardest to bandaid, and it doesn't
3040         appear to cause anything but drawing problems.  The other issues
3041         caused apps to exit or hang.
3042
3043         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
3044         called from a different thread than the one that should be calling
3045         these functions.
3046
3047         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
3048
3049 2006-11-15  Chris Toshok  <toshok@ximian.com>
3050
3051         * Application.cs: null out the context's MainForm when we exit
3052         RunLoop.  Fixes a newly checked in unit test as well as the last
3053         ODE from bug #79933.
3054
3055 2006-11-15  Chris Toshok  <toshok@ximian.com>
3056
3057         * Form.cs (set_Owner): allow a null value so we can clear the
3058         form's owner.
3059         (Dispose): set all our owned_form's Owner properties to null, and
3060         clear the owned_forms collection.
3061         (WM_CLOSE): clean up this a little bit.. still not right though.
3062
3063         * ApplicationContext.cs: OnMainFormClosed should only call
3064         ExitThreadCore if the main form isn't recreating.  Fixes unit
3065         test.
3066
3067 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3068
3069         [Fixes 78346]
3070
3071         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
3072
3073 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3074
3075         [Fixes 79433]
3076
3077         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
3078         keep popup window types from stealing focus from the main form
3079         on Windows.
3080
3081         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
3082
3083         * MenuAPI.cs: Set above flag to true.
3084
3085 2006-11-15  Chris Toshok  <toshok@ximian.com>
3086
3087         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
3088         the button being released is not in wParam.
3089
3090 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
3091
3092         * Form.cs: Add the released button to MouseEventArgs.Button
3093         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
3094         on Win32.
3095
3096 2006-11-15  Chris Toshok  <toshok@ximian.com>
3097
3098         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
3099         GetText().  untested because it's unused in our implementation.
3100         Control.Text always caches the text, even if
3101         ControlStyles.CacheText is not set.
3102
3103         fixes bug #79939.
3104
3105 2006-11-15  Chris Toshok  <toshok@ximian.com>
3106
3107         [ fixes #79933 ]
3108         
3109         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
3110         message.  no hiding, no disposing.
3111
3112         in the WM_CLOSE handler, hide the form if it's modal.
3113
3114 2006-11-15  Chris Toshok  <toshok@ximian.com>
3115
3116         * XplatUIX11.cs: use AddExpose instead of sending a message.
3117         fixes textbox border drawing.
3118
3119 2006-11-15  Chris Toshok  <toshok@ximian.com>
3120
3121         * PropertyGridView.cs: keep from crashing on mouse move/down when
3122         the property grid is empty.
3123
3124 2006-11-14  Jackson Harper  <jackson@ximian.com>
3125
3126         * TextControl.cs: Make PageUp and PageDown more like the MS
3127         versions.
3128         * TextBoxBase.cs: When we set the text property position the
3129         cursor at the beginning of the document.
3130
3131 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3132
3133         * Form.cs: if a mdi child's WindowState has changed
3134         before it's creation, it would display wrong control
3135         buttons.
3136         
3137 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
3138
3139         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
3140           (Fixes bug #79927)
3141
3142 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
3143
3144         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
3145         the window gets to paint its borders even if the window is
3146         getting smaller.
3147         
3148         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
3149         otherwise the old control buttons would still be painted 
3150         if the window gets bigger.
3151         
3152         * PaintEventArgs.cs: add an internal method so that the clip 
3153         rectangle can be changed.
3154         
3155 2006-11-13  Chris Toshok  <toshok@ximian.com>
3156
3157         [ fixes bug #79745 ]
3158         
3159         * NotifyIcon.cs: lots of cleanup.
3160
3161         * X11Structs.cs: add an enum for XEMBED messages.
3162
3163         * XplatUIX11.cs: reindent one of the giant switch statements, it
3164         was taking up an additional tab stop, and this file is already way
3165         too wide for my laptop's screen.
3166
3167         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
3168         we get it, resize the hwnd to the WMNormalHints max_width/height.
3169
3170 2006-11-13  Jackson Harper  <jackson@ximian.com>
3171
3172         * TextBoxBase.cs: Compute the value changes for the mouse wheel
3173         teh simple way.
3174
3175 2006-11-13  Chris Toshok  <toshok@ximian.com>
3176
3177         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
3178         #79898.  force a reference to the Region to stick around so the
3179         unmanaged object isn't collected (rendering our handle in the MSG
3180         stale).
3181
3182 2006-11-13  Chris Toshok  <toshok@ximian.com>
3183
3184         * XplatUIX11.cs: fix #79917 for window managers which support
3185
3186         using XStoreName on the raw utf8, and we need to convert to
3187         COMPOUND_TEXT if it's non-latin1.
3188
3189 2006-11-13  Chris Toshok  <toshok@ximian.com>
3190
3191         * Form.cs (set_DialogResult): we need to set closing to false if
3192         we're setting our result to None.  fixes bug #79908.
3193
3194 2006-11-13  Jackson Harper  <jackson@ximian.com>
3195
3196         * TextControl.cs: When formatting text, compute the adjusted tag
3197         lengths correctly, using FindTag for the end tag instead of trying
3198         to figure it out outselves.
3199         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
3200         the item, ItemHeight doesn't work, because trees with large
3201         imagelists use those for their height
3202         * TreeView.cs: ActualItemHeight factors in the image height
3203         - compute left edge of checkboxes correctly
3204         - when expanding/collapsing move the bottom down one pixel, so we
3205         aren't moving part of the node
3206
3207 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3208
3209         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
3210         stack in PaintEventStart so that it won't get disposed by the gc
3211         before reaching PaintEventEnd.
3212
3213 2006-11-13  Jackson Harper  <jackson@ximian.com>
3214
3215         * TextBoxBase.cs: Don't select the word if we are on a line with
3216         no text.
3217         - We don't need to position the caret on mouse up, since the mouse
3218         move handler should be doing this
3219         - When double clicking a blank line, the caret is advanced to the
3220         next line.
3221
3222 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
3223
3224         * TreeNodeCollection.cs: Avoid duplicating indexer code.
3225
3226 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
3227
3228         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
3229         Fixes part of bug #79910.
3230
3231 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
3232
3233         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
3234           (bug #79903). Some minor string updates to match ms.
3235
3236 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3237
3238         * FileDialog.cs: Don't add an extension if the filename
3239           already ends with that extension.
3240
3241 2006-11-10  Jackson Harper  <jackson@ximian.com>
3242
3243         * TreeView.cs: Use the currently highlighted node for the
3244         BeforeSelect event.
3245         * TextBoxBase.cs: There is no need to expand selection on
3246         MouseMove.
3247         - CanUndo means 'is there any undo operations', not 'is undo
3248         allowed on this textcontrol. Fixed ClearUndo unit test.
3249
3250 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
3251
3252         * Button.cs: only perform click when button is Selectable (so as 
3253         not to activate default buttons when they're disabled)
3254         
3255         * Control.cs: Rewrite of the SelectNextControl and related 
3256         methods. HandleClick now selects next control if the current one
3257         is being disabled.
3258         
3259         * Form.cs: OnActivated selects next active control only if Load 
3260         has already occurred. If Load hasn't run, there's no point in 
3261         selecting here, Load might change the state of controls.
3262         
3263         * FocusTest.cs: Tests marked as working again for these fixes
3264
3265 2006-11-10  Chris Toshok  <toshok@ximian.com>
3266
3267         * XplatUIX11.cs: a couple of fixes.
3268
3269         - use XInternAtoms with almost all the atoms we need to register,
3270         instead of many, many calls to XInternAtom.  should help a bit on
3271         startup time, at the expense of making the code look a little
3272         worse.
3273
3274         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
3275         isn't reparented (which seems to be a clue that we're running fon
3276         compiz) and they have an Owner form.  This fixes the tool windows
3277         in paint.net when running under compiz.
3278
3279         - when setting the opacity of a window, support both the case
3280         where the window has been reparented and also when it hasn't been.
3281         Since compiz/beryl doesn't seem to reparent windows, and these are
3282         the only window managers which support translucency, I'm not sure
3283         why we need the hwnd.reparented case at all.. but leave it in.
3284         now we get translucent windows in paint.net under compiz/beryl.
3285
3286 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3287
3288         * FileDialog.cs: Always return the value for FilterIndex that
3289           was set. Internally convert it to values that make sense.
3290
3291 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3292         
3293         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
3294
3295 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
3296
3297         * Toolbar.cs: Change default value of DropDownArrows to true, the 
3298         signature still using false to make it compatible with MS but the 
3299         initial value is true. Fixes #79855.
3300
3301 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
3302
3303         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
3304           only available on Linux.
3305
3306 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
3307
3308         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
3309         reduce number of calls to redraw method during toolbar creation.
3310
3311 2006-11-09  Mike Kestner  <mkestner@novell.com>
3312
3313         * ListView.cs : raise SelectedIndexChanged when an item is selected
3314         programmatically via the Item.Selected property.  Gert's nice 
3315         ListViewSelectedIndexChanged test fixture now runs clean.
3316
3317 2006-11-09  Mike Kestner  <mkestner@novell.com>
3318
3319         * ListView.cs : raise SelectedIndexChanged when a selected item is
3320         removed from the item collection using Remove or RemoveAt.
3321
3322 2006-11-09  Mike Kestner  <mkestner@novell.com>
3323
3324         * ListView.cs : raise SelectedIndexChanged once per selected item
3325         for compat with MS.  Fixes #79849+.
3326
3327 2006-11-09  Chris Toshok  <toshok@ximian.com>
3328
3329         * TabControl.cs: initialize row_count to 0, and set it to 1 when
3330         we need to (if we have any tab pages).  Fixes unit test.
3331
3332 2006-11-09  Chris Toshok  <toshok@ximian.com>
3333
3334         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
3335         width is 0, not 3.  Fixes a unit test.
3336
3337 2006-11-09  Mike Kestner  <mkestner@novell.com>
3338
3339         * ListView.cs : use Implicit scrollbars so that focus isn't 
3340         stolen from the listview when they are clicked. Fixes #79850.
3341
3342 2006-11-09  Chris Toshok  <toshok@ximian.com>
3343
3344         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
3345         have a root item.  Fixes #79879.
3346
3347 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
3348
3349         * FileDialog.cs:
3350           - Fix ToString ()
3351           - An ArgumentException is now thrown if a wrong filter
3352             is applied (matches ms). The previous filter doesn't change
3353             anymore if an exception is thrown.
3354           - Changing the FileName property also affects FileNames
3355         * ColorDialog.cs: The length of the CustomColors array is always
3356           16. It doesn't matter if we use a smaller array or null to update
3357           or change the custom colors property.
3358         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
3359           for RootFolder if we get a undefined value.
3360
3361 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3362
3363         * StatusBarPanel.cs: 
3364         - Width is set to MinWidth if Width is smaller than
3365         MinWidth. Fixes #79842.
3366         - MinWidth now always overrides Width (MSDN says MinWidth
3367         is set to Width when AutoSize = None, but they do not 
3368         behave like that).
3369         - Style has now the the correct default value.
3370         
3371 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3372  
3373         * TrackBar.cs: 
3374         - The control is completely invalidated on 
3375         Got/LostFocus to draw the focus rectangle correctly.
3376         - When AutoSize then height is always 45 (width for 
3377         vertical controls).
3378         
3379         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
3380         on the mouse when moved and it doesn't move when grabbed
3381         until the mouse moves as well. Also fixed some wrong 
3382         calculations when clicking on the thumb (control thought
3383         click was outside of thumb and didn't grab it).
3384         Fixes some of the issues in #79718.
3385
3386 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
3387
3388         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
3389
3390 2006-11-08  Chris Toshok  <toshok@ximian.com>
3391
3392         * PropertyGridView.cs: only call ToggleValue if the item is not
3393         readonly.
3394
3395 2006-11-08  Jackson Harper  <jackson@ximian.com>
3396
3397         * TextBoxBase.cs: The RichTextBox and textbox have very different
3398         word selection methods.  Implement the textbox's simple word
3399         selection here, and let the RichTextBox override and provide it's
3400         own.
3401         - Don't do extra selection on mouseup
3402         * RichTextBox.cs: Use the documents word selection algorithm, I
3403         think ideally, this function will be pulled into the
3404         RichTextBox.cs code someday.
3405
3406 2006-11-08  Chris Toshok  <toshok@ximian.com>
3407
3408         * RootGridEntry.cs: new class to represent GridItemType.Root.
3409
3410         * CategoryGridEntry.cs: reformat, and add boilerplate.
3411         
3412         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
3413         returns the UI parent anyway, and we need special handling to
3414         implement the GetTarget method in the face of it.  Also, implement
3415         Select().
3416
3417         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
3418         a root grid item, and use that instead of PropertyGrid.grid_items.
3419         Also, make use of TypeConverters (and add limitted support for
3420         ICustomTypeDescriptors) when initially populating the grid.
3421         Arrays now show up more or less properly.
3422
3423 2006-11-08  Chris Toshok  <toshok@ximian.com>
3424
3425         * Application.cs: set the modal dialog to non modal after we close
3426         it.  Fixes bug #79866.
3427
3428 2006-11-08  Jackson Harper  <jackson@ximian.com>
3429
3430         * TextControl.cs: When combining lines carry over the line end
3431         style from the end line.
3432         - Invalidate the selected area when setting it, if it is visible.
3433         * TextBoxBase.cs: Only rich text box can do full line selects.
3434         - Make sure to set the cursor position when there is a click,
3435         otherwise two clicks in separate areas could cause a large chunk
3436         to be selected.
3437
3438 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3439
3440         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
3441         Fixes #79863.
3442
3443 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3444
3445         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
3446         time. Remove tooltips when ToolButton click events.  Fixes #79856.
3447
3448 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3449
3450         * MenuAPI.cs: Ignore right click for menu actions and fixes
3451         menu border when clicked.  Fixes #79846.
3452
3453 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3454
3455         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
3456         MouseState after create wParam for message, this fixes mouse button 
3457         equal none in mouse up events.
3458         
3459 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
3460
3461         * Control.cs : Focus() now calls Select to set the Container's
3462         Active Control and to give it focus. To avoid infinite recursion
3463         (because ActiveControl also calls Focus at one point), a check 
3464         is made in Focus with the help of a new internal variable
3465         is_focusing.
3466
3467 2006-11-07  Mike Kestner  <mkestner@novell.com>
3468
3469         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
3470         if there's a selection.  Fixes #79849.
3471
3472 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
3473
3474         * PropertyGrid.cs: Avoid fixed height of help description label.
3475         Fixes part of bug #79829.
3476
3477 2006-11-07  Chris Toshok  <toshok@ximian.com>
3478
3479         * XplatUIX11.cs: fix #79790 again, by using the
3480         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
3481
3482 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3483
3484         * ToolBar.cs: Fix left click checking.
3485
3486 2006-11-07  Chris Toshok  <toshok@ximian.com>
3487
3488         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
3489
3490 2006-11-07  Chris Toshok  <toshok@ximian.com>
3491
3492         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
3493         PropertyManager unit tests.
3494
3495         * PropertyManager.cs: make property_name internal.
3496
3497 2006-11-07  Chris Toshok  <toshok@ximian.com>
3498
3499         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
3500         pass a unit test.  Also, don't set image_index to anything in
3501         response to setting the ImageList property.
3502
3503 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
3504
3505         * ToolBar.cs: Ignore click events when mouse button is not a
3506         left button, only accepts other button for dropdown menus.  
3507         Fixes #79854.
3508
3509 2006-11-07  Chris Toshok  <toshok@ximian.com>
3510
3511         * DataGrid.cs: make the back and parent row buttons a little less
3512         ugly.
3513
3514 2006-11-07  Jackson Harper  <jackson@ximian.com>
3515
3516         * TextBoxBase.cs: When converting to Text don't put line breaks in
3517         for soft line breaks.
3518         * TextControl.cs: There is an initial "fake" line in the document,
3519         this is now a soft break line, so that an extra line feed doesn't
3520         get added to the end of documents.
3521
3522 2006-11-07  Chris Toshok  <toshok@ximian.com>
3523
3524         [ fix bug #79778 ]
3525         
3526         * CurrencyManager.cs: if the list is readonly, don't bother
3527         checking if IBindingList.AllowNew is true.
3528
3529         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
3530         for non-DataRowView datasources..  or rather, make it not crash.
3531         (DataGridPaintRelationRow): make sure we limit the row painting to
3532         the area not covered by the row header, and make our cell width at
3533         least large enough to cover the relation area.  This allows grids
3534         that have relations but no rows to render correctly.
3535         (DataGridPaintRowContents): same type of changes here.
3536         (SetDataSource): move back to always calling
3537         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
3538         navigating back through relations.
3539         (HitTest): handle the case where we have no cells but have
3540         relations.  Right now we generate a hit in cell 0 of whatever the
3541         row is, not sure if this is strictly correct, but it works for our
3542         purposes.
3543         
3544         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
3545         bother doing anything.
3546
3547 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
3548
3549         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
3550         early version of StatusStrip.  Not responsible for eaten
3551         application or firstborn children.
3552
3553 2006-11-06  Chris Toshok  <toshok@ximian.com>
3554
3555         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
3556         call GetTabRect with a -1 index.  Fixes #79847.
3557
3558 2006-11-06  Jackson Harper  <jackson@ximian.com>
3559
3560         * TreeNodeCollection.cs: Update scrollbars after clearing.
3561
3562 2006-11-06  Chris Toshok  <toshok@ximian.com>
3563
3564         * NumericUpDown.cs: fix the ToString method for some unit test
3565         love.
3566
3567 2006-11-06  Chris Toshok  <toshok@ximian.com>
3568
3569         * PropertyGrid.cs:
3570         - set the initial SelectedGridItem if we can.
3571
3572         - Exclude non-mergable properties only if we're merging > 1
3573         object.  Merging 1 object isn't really merging, obviously.
3574
3575         - Handle PropertySort.NoSort just like Alphabetical, which is
3576         wrong of course, but at least gets things on the screen.
3577         
3578         * PropertyGridView.cs:
3579         - Add method "FindFirstItem" which finds the first property grid
3580         item, so we can select it by default.
3581
3582         - make use of GridEntry.CanResetValue.
3583
3584         - Don't call RedrawBelowItemOnExpansion here anymore, the
3585         individual GridEntry's will do that.
3586
3587         - Remove the ITypeDescriptorContextImpl internal class.
3588         
3589         * GridEntry.cs:
3590         - this class needs to implement ITypeDescriptorContext, as it's
3591         what MS's PropertyDescriptorGridEntry does, which means we can
3592         remove the ITypeDescriptorContextImpl internal class from
3593         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
3594
3595         - keep a reference to our PropertyGridView, and move the call to
3596         RedrawBelowItemOnExpansion here from PGV.  This means
3597         programmaticly setting Expanded actually does something visible.
3598
3599         - add a CanResetValue() function which takes into account our
3600         possibly multiple "selected_objects" in the merged case.  Shifting
3601         PropertyGridView to use this method fixes another unreported
3602         crasher found running the test for #79829.
3603
3604         - when Top or Bounds is updated, make sure the PropertyGridTextBox
3605         is updated to reflect this.
3606
3607         * CategoryGridEntry.cs: the ctor takes the PGV now.
3608         
3609 2006-11-06  Jackson Harper  <jackson@ximian.com>
3610
3611         * TextControl.cs: These are 1 based.
3612         * TextBoxBase.cs: When setting the selected text, don't change the
3613         selected text tags, this is done by ReplaceText, just position the
3614         cursor at the end of the new text.
3615
3616 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3617
3618         * ListView.cs: Allow label edit only when, when LabelEdit is
3619           set to true.
3620
3621 2006-11-06  Jackson Harper  <jackson@ximian.com>
3622
3623         * TextControl.cs: If a suitable wrapping position isn't found,
3624         just wrap right in the middle of a word.
3625
3626 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
3627
3628         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
3629           bug #79820.
3630
3631 2006-11-06  Jackson Harper  <jackson@ximian.com>
3632
3633         * TreeView.cs: Can't use the VisibleCount property when setting
3634         scrollbar heights, because this doesn't take into account whether
3635         or not the horz scrollbar just came visible.
3636
3637 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
3638
3639         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
3640         activated.  Fixes #79369, #79832.
3641
3642 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
3643
3644         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
3645           had to remove support for links that point to a directory. FileInfo
3646           returns no usefull information (means, the directory they point to)
3647           for such links. Replaced some empty string ("") with String.Empty.
3648
3649 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3650
3651         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
3652         NullReferenceException when attempting to remove node that is not in
3653         collection. Throw NullReferenceException when null is passed to 
3654         Remove. Allow first element of the collection to be removed. Fixes
3655         bug #79831.  In GetEnumerator ().Current return null if positioned 
3656         before the first element of the collection. In GetEnumerator ().Reset,
3657         position before first element of the collection.
3658
3659 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
3660
3661         * PropertyGrid.cs: To match MS, remove default title and description
3662         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
3663         buttons.
3664
3665 2006-11-04  Chris Toshok  <toshok@ximian.com>
3666
3667         * Theme.cs: add a Clamp method, just for kicks.
3668
3669         * ThemeWin32Classic.cs: clamp all color components to [0..255].
3670
3671 2006-11-04  Chris Toshok  <toshok@ximian.com>
3672
3673         * Form.cs: if the form isn't visible, Close() does nothing.
3674
3675 2006-11-03  Chris Toshok  <toshok@ximian.com>
3676
3677         * Form.cs (Close): if the form is modal, don't Dispose of it, only
3678         Hide it.
3679         (WndProc): don't Dispose after handling the WM_CLOSE message.
3680
3681         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
3682         them as such, instead of using casts from Control to Form.  Also,
3683         don't Dispose of the modal dialog when we fall out of the loop -
3684         Close() it instead.
3685
3686         fixes bug #79813.
3687
3688 2006-11-03  Chris Toshok  <toshok@ximian.com>
3689
3690         * Control.cs (Dispose): only go through the dispose thing if we're
3691         @disposing, and we haven't already been disposed.  Fixes bug
3692         #79814.
3693
3694         * Form.cs: no reason to call "base.Dispose()" here instead of
3695         "Dispose()".
3696
3697 2006-11-03  Mike Kestner  <mkestner@novell.com>
3698
3699         * ComboBox.cs : use ToString instead of casts in AddItem for
3700         sorting functionality.  Fixes #79812.
3701
3702 2006-11-03  Chris Toshok  <toshok@ximian.com>
3703
3704         * Application.cs: pave the way for actually using the thread
3705         exception dialog.  it's ifdefed out at the moment.
3706
3707 2006-11-03  Chris Toshok  <toshok@ximian.com>
3708
3709         * ThreadExceptionDialog.cs: until we get a better layout, actually
3710         hide the details textbox and label when we shouldn't see them.
3711
3712 2006-11-03  Jackson Harper  <jackson@ximian.com>
3713
3714         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
3715         multiline textboxes anymore.  This method also determines the
3716         width/height of a textboxes canvas area.
3717         - Sorta a revert of the last patch.  For multiline just position
3718         the controls, then bail.  This way the scrollbar width won't be
3719         altered.
3720
3721 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
3722
3723         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
3724         it dont need.  Fixes #79537.
3725
3726 2006-11-02  Jackson Harper  <jackson@ximian.com>
3727
3728         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
3729         send the status after firing the DndOver event.
3730
3731 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3732
3733         * TrackBar.cs: Now orientation only switches height / width if
3734         the control's handle is created (Win32 does it like this). Also 
3735         fixed a typo in ToString() for a test to pass, changed the 
3736         exception thrown in set_LargeChange and set_SmallChange to 
3737         match Win32 behaviour, and added TrackBar tests to the unit 
3738         tests.
3739
3740 2006-11-02  Chris Toshok  <toshok@ximian.com>
3741
3742         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
3743         not _NET_WM_STATE_NO_TASKBAR.
3744
3745 2006-11-02  Jackson Harper  <jackson@ximian.com>
3746
3747         * TextControl.cs: Increment count by one, since in the update view
3748         count - 1 is used.
3749
3750 2006-11-02  Jackson Harper  <jackson@ximian.com>
3751
3752         * TextBoxBase.cs: Use client rectangle not bounds for checking if
3753         the mouse is in the client rectangle (duh).
3754
3755 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3756         
3757         * TrackBar.cs: Fixed trackbar jumping around when clicking
3758         on it - the trackbar was not detecting correctly at which
3759         side of the thumb the click was done. (fixes #79718)
3760
3761 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
3762
3763         * ListBox.cs: scroll visible area when change SelectedIndex to
3764         a non visible area.  Fixes #79481.
3765
3766 2006-11-01  Jackson Harper  <jackson@ximian.com>
3767
3768         * TextControl.cs: When replacing the selection move the selection
3769         start/end/anchor to the end of the new text.
3770
3771 2006-11-01  Jackson Harper  <jackson@ximian.com>
3772
3773         * XplatUIWin32.cs: When setting the parent change the controls
3774         visibility to it's visibility flag, not to it's old parents
3775         visibility (.Visible walks the parent chain).
3776
3777 2006-11-01  Chris Toshok  <toshok@ximian.com>
3778
3779         * XplatUIX11.cs: revert the #79790 fix, as the simple.
3780         XSetTransientForHint fix breaks paint .net's tool windows.  more
3781         work needed for that one.
3782
3783 2006-11-01  Chris Toshok  <toshok@ximian.com>
3784
3785         * ScrollBar.cs: throw ArgumentException instead of Exception in
3786         LargeChange/SmallChange setters.  fixes unit tests.
3787
3788 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3789
3790         * ContainerControl.cs: reverted rev.67183 (which was itself
3791         a reversion of rev.66853... eh).
3792         
3793         * Control.cs: Fixes Reflector hang by changing Focus() call
3794         to what it was before rev.66643 (calling Select() here sets 
3795         ActiveControl, which in some situations calls back Focus and 
3796         eventually does a stack overflow). Temp fix.    
3797         Changes to GetNextControl() to not look for children to select when
3798         parent cannot be selectable (so it looks for siblings instead)  
3799         
3800 2006-10-31  Mike Kestner  <mkestner@novell.com>
3801
3802         * CheckedListBox.cs : off by one error in returned index from
3803         ObjectCollection.Add.  Fixes #79758.
3804
3805 2006-10-31  Chris Toshok  <toshok@ximian.com>
3806
3807         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
3808         calls for the textbox/spinner, to keep from recursing to the point
3809         where we crash.  Fixes #79760.
3810
3811 2006-10-31  Chris Toshok  <toshok@ximian.com>
3812
3813         * ListControl.cs (set_SelectedValue): don't throw exceptions on
3814         null/"" value, just return.  matches ms's behavior and fixes some
3815         failing tests.
3816
3817 2006-10-31  Chris Toshok  <toshok@ximian.com>
3818
3819         * Control.cs (set_Capture): make a logic a little easier to
3820         follow.
3821
3822         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
3823         if it's being destroyed.  A necessary fix surely, but a bandaid
3824         also, to fix the stuck capture problem in bug #78413.
3825
3826 2006-10-31  Chris Toshok  <toshok@ximian.com>
3827
3828         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
3829         convention of clearing hwnd.ClientRect when we set the
3830         width/height (so it'll be recalculated by Hwnd).
3831
3832 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
3833
3834         * ContainerControl.cs: reversed Contains check from
3835         ActiveControl due to hanging problems. This fix
3836         partly regresses #79667 (button does not have
3837         initial focus), so this might be a symptom for 
3838         a larger parenting problem (set_ActiveControl
3839         is being called but the child control does
3840         not have the parent set yet?)   
3841         
3842 2006-10-31  Mike Kestner  <mkestner@novell.com>
3843
3844         * MenuAPI.cs : fix keynav when menu is click activated.
3845
3846 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
3847
3848         * ToolStrip*: Version 0.2.
3849
3850         * MenuStrip.cs: Version 0.1.
3851
3852         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
3853
3854 2006-10-30  Chris Toshok  <toshok@ximian.com>
3855
3856         [ fixes the oversized notify icon issue in bug #79745 ]
3857         
3858         * NotifyIcon.cs: scale the icon down to the size we're given by
3859         the XplatUI layer (this would be faster if we did it once instead
3860         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
3861         since it's never invoked.
3862
3863         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
3864         pixels high by default, so let's hardcode our systray icon to that
3865         size.  The SYSTEM_TRAY protocol should really have a way for
3866         client apps to query for the correct icon size.. but oh well.  A
3867         couple of patches to deal with the screwy client_window ==
3868         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
3869         instance, and also make sure we don't XSelectInput twice).
3870
3871 2006-10-30  Chris Toshok  <toshok@ximian.com>
3872
3873         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
3874         recreating forms.  Control recreation is the bane of my existence.
3875         Fix it in a way that keeps everyone happy.
3876
3877 2006-10-30  Chris Toshok  <toshok@ximian.com>
3878
3879         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
3880         just non-CHILD ones.  otherwise sometimes scrollbars end up with
3881         client_windows not being resized to the proper size (ReportBuilder
3882         shows this extremely well).
3883
3884 2006-10-30  Chris Toshok  <toshok@ximian.com>
3885
3886         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
3887         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
3888         showing up in the gnome taskbar.  Fixes bug #79790.
3889
3890 2006-10-30  Chris Toshok  <toshok@ximian.com>
3891
3892         * ApplicationContext.cs: guard against a NRE.
3893
3894         * Application.cs: null out the old MainForm for the context, so we
3895         don't try to use it again once it's disposed.  Fixes bug #79783.
3896
3897 2006-10-30  Chris Toshok  <toshok@ximian.com>
3898
3899         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
3900         BindingContext, set the data source directly, otherwise do the
3901         lazy approach - the actual ListManager will be created when we get
3902         a BindingContext. Fixes bug #79700.
3903
3904 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3905
3906         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
3907           XplatUIX11.cs: Remove old 2 parameter SetVisible.
3908
3909         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
3910
3911 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
3912
3913         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
3914         of SetVisible that allows a window to be shown, but not activated.
3915         This is needed on Windows for MenuStrip, and can probably be used
3916         with MainMenu and ComboBox to fix the focus stealing issues on
3917         Windows.
3918
3919         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
3920
3921 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
3922
3923         * PictureBox.cs: Fix the output of the ToString method.
3924
3925 2006-10-29  Chris Toshok  <toshok@ximian.com>
3926
3927         * Control.cs (get_TopLevelControl): fix bug #79781.
3928
3929 2006-10-29  Chris Toshok  <toshok@ximian.com>
3930
3931         * ListControl.cs (set_DataSource): throw Exception here, not
3932         ArgumentException, to match MS behavior.
3933
3934 2006-10-29  Chris Toshok  <toshok@ximian.com>
3935
3936         * Form.cs: remove the try-catch's around calls to GetWindowState.
3937         We can just check the return value.
3938
3939         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
3940         Instead return -1.
3941
3942         * XplatUI.cs: Add note about additional return value for
3943         GetWindowState.
3944
3945 2006-10-29  Chris Toshok  <toshok@ximian.com>
3946
3947         * Control.cs (CreateHandle): when we create our handle, we also
3948         create the handles of our child controls.  Fixes one of the
3949         Control unit tests (CH11).
3950
3951 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3952
3953         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
3954
3955 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
3956
3957         * ThemeClearlooks.cs: A little speedup.
3958
3959 2006-10-27  Chris Toshok  <toshok@ximian.com>
3960
3961         * Control.cs: implement Control.FromChildHandle in a way that
3962         matches the docs (and fixes the failed test.)
3963
3964 2006-10-27  Chris Toshok  <toshok@ximian.com>
3965
3966         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
3967         comments).
3968
3969         * DataGrid.cs: implement ResetForeColor such that the tests
3970         succeed.
3971         
3972 2006-10-27  Chris Toshok  <toshok@ximian.com>
3973
3974         * ToolBarButton.cs: setting text/tooltiptext to null results in it
3975         being set to "".  Fixes bug #79759.
3976
3977 2006-10-27  Jackson Harper  <jackson@ximian.com>
3978
3979         * TextControl.cs: We need to clear the entire selection area when
3980         setting the start, otherwise multiline selections are still
3981         visible.
3982
3983 2006-10-26  Chris Toshok  <toshok@ximian.com>
3984
3985         * PropertyGridView.cs: 
3986
3987         - ifdef all the code specific to the double
3988         buffer case, and provide some alternatives in the non-doublebuffer
3989         code, which makes heavy use of XplatUI.ScrollWindow to move things
3990         around without having to invalidate (and cause flicker).  There
3991         are still some drawing problems in the non-doublebuffered case, so
3992         DOUBLEBUFFER is defined by default.
3993
3994         - Fix the way dropdowns are handled.  now we explicitly watch for
3995         the events which might cause the dropdown to close, and break out
3996         of the nested event loop there.  This gets rid of all Capture
3997         code, at the expense of the Msg special casing.  Seems to work,
3998         though, and fixes bug #79743.
3999
4000 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
4001         * Control.cs: SetIsRecreating now recreates implicitly added
4002         child controls as well. Finally fixes #79629. The flag passed to 
4003         SetIsRecreating has also been removed since it wasn't used.
4004         
4005 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4006
4007         * PageSetupDialog.cs: Clean some code, fix some bits, 
4008         add some checks, and add a printer sub-dialog.
4009
4010 2006-10-26  Chris Toshok  <toshok@ximian.com>
4011
4012         * PropertyGrid.cs: make set_SelectedObject call
4013         set_SelectedObjects, and move the duplicate logic to the
4014         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
4015
4016         * PropertyGridView.cs: hide the textbox when we get a
4017         SelectedObjectsChanged event.
4018
4019         Fixes bug #79748.
4020
4021 2006-10-26  Chris Toshok  <toshok@ximian.com>
4022
4023         * PropertyGridView.cs: deal with the type converter not supporting
4024         GetStandardValues() or GetStandardValues() returning null, which
4025         is does in the default case.  Fixes #79742.
4026
4027 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
4028
4029         * CheckedListBox.cs: nunit no longer crashes when selecting 
4030         Project/Edit menu option
4031         
4032 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
4033
4034         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
4035         is no menu selected. fixes #79739
4036
4037 2006-10-25  Chris Toshok  <toshok@ximian.com>
4038
4039         * PropertyGridView.cs: factor out the splitter invalidation code
4040         into the SplitterPercent setter, and for kicks implement the
4041         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
4042         amount in either direction.
4043
4044 2006-10-25  Chris Toshok  <toshok@ximian.com>
4045
4046         * PropertyGridView.cs: do some cleanup of the brush used to draw
4047         text - read only fields should be grayed out.  not sure how to do
4048         this with the textbox, though.  but the textbox's should also be
4049         readonly now at least.  Also, hide/show the textbox when resizing
4050         the control.
4051         
4052         * CursorConverter.cs: use System.Reflection when getting the
4053         properties of Cursors, as TypeDescriptor.GetProperties isn't
4054         returning static properties.
4055
4056 2006-10-25  Chris Toshok  <toshok@ximian.com>
4057
4058         * PropertyGridView.cs: factor out the up/down handling, and reuse
4059         it for page up/down.  also add End/Home support.
4060
4061 2006-10-25  Chris Toshok  <toshok@ximian.com>
4062
4063         * PropertyGridView.cs:
4064
4065         - ensure the selected grid item is visible in the scrolled area,
4066         fixes bug #79572.
4067
4068         - fix Keys.Down handling when you're on the last item in the
4069         propertygrid.
4070
4071 2006-10-25  Mike Kestner  <mkestner@novell.com>
4072
4073         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
4074         clicks too.  Fixes #79725.
4075
4076 2006-10-24  Chris Toshok  <toshok@ximian.com>
4077
4078         * PropertyGrid.cs: use property.Converter instead of
4079         TypeDescriptor.GetConverter(property.PropertyType), so we catch
4080         TypeConverters declared on the property as well as on the
4081         PropertyType.  Fixes bug #79678.
4082
4083 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
4084
4085         * MimeIcon.cs, Mime.cs:
4086           Fallback to the default platform handler if no shared mime info
4087           stuff exists (fixes #79693).
4088
4089 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
4090         * ContainerControl.cs: Incorrect contains check in ActiveControl 
4091         from previous fix (duh).
4092
4093 2006-10-20  Chris Toshok  <toshok@ximian.com>
4094
4095         * PropertyGridView.cs: the dropdown should be MIN(number of items
4096         in list, 15).  Fixes #79551.
4097
4098 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
4099         Fixes #79384, #79394, #79652, #79667
4100         * Application.cs: 
4101         
4102         - Modal windows are now destroyed in the proper order for windows
4103         
4104         * ContainerControl.cs:
4105         
4106         - ActiveControl setter has more conditions on when to return:
4107                 - if we're reselecting the active control, but it actually
4108                 didn't have focus (window hidden or some such), it runs
4109                 - if the active control being selected doesn't actually 
4110                 exist in the container, it returns
4111         
4112         * Form.cs
4113         
4114         - The ShowDialog now gets the current form as the owner when
4115         invoking without parameters, and correctly activates the owner 
4116         when returning
4117         
4118         * MessageBox.cs
4119         
4120         - MessageBox now catches the Escape key to exit
4121
4122 2006-10-20  Chris Toshok  <toshok@ximian.com>
4123
4124         * PropertyGridView.cs: fix a number of issues (bug #78565, and
4125         most of bug #79676):
4126
4127         - you can navigate around the property grid with the arrow keys.
4128
4129         - the dropdown is sized properly when the pg has a vertical
4130         scrollbar.
4131
4132         - fix the indentation for subentries, and properly select the
4133         entire label rect.
4134
4135         - fix the gray bar's drawing (only draw it to the last element,
4136         not for the height of the control.  Also make sure we draw that
4137         last horizontal grid line.
4138
4139         - use the same mechanism the datagrid uses wrt the editing textbox
4140         when scrolling/resizing/etc.  Namely, we hide it first, do the
4141         operation, then show it again (if it's still visible).
4142         
4143         - aggressively remove a lot of unnecessary refreshes (and also
4144         calls to Invalidate(). call more limited variants, and only redraw
4145         what we need.)
4146         
4147         * PropertyGrid.cs:
4148
4149         - when we're populating the merged collection, fill in the UI
4150         parent with either the passed in item, or the category item we
4151         create.
4152
4153         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
4154
4155         * GridItem.cs: drop some fully qualified names.
4156         
4157         * GridEntry.cs: add a "UIParent", which is basically the parent
4158         treenode.
4159
4160         * GridItemCollection.cs: add an IndexOf method.
4161
4162 2006-10-20  Mike Kestner  <mkestner@novell.com>
4163
4164         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
4165         a working win32 NC invalidation mechanism, we can't invalidate
4166         menus.  [Fixes #79705]
4167
4168 2006-10-20  Mike Kestner  <mkestner@novell.com>
4169
4170         * ListBox.cs : don't update the VScrollbar if the list is empty,
4171         just hide it.  [Fixes #79692]
4172
4173 2006-10-20  Jackson Harper  <jackson@ximian.com>
4174
4175         * RichTextBox.cs: Handle some special chars better, and don't skip
4176         the entire group when we encounter a special char that we don't
4177         handle correctly.
4178
4179 2006-10-18  Chris Toshok  <toshok@ximian.com>
4180
4181         * PropertyGridView.cs: address a number of issues from bug #79676,
4182         mostly of the cosmetic variety.
4183
4184         - The highlight rectangle for indented items not extends all the
4185         way to the left.
4186
4187         - Indented items aren't indented so much.
4188
4189         - the dropdown is properly sized width-wise if the pg has a
4190         vertical scrollbar.
4191
4192 2006-10-18  Chris Toshok  <toshok@ximian.com>
4193
4194         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
4195         systray stuff is rather convoluted to begin with.
4196
4197         systray icons are a single window for some reason (that I haven't
4198         figured out yet), and for them, client_window == whole_window.
4199         Given the way the tests are structured elsewhere to determine
4200         which paints are pending (client vs. nc), that situation will
4201         always yield PAINT, not NCPAINT.  So, if we have a pending
4202         nc_expose and no pending expose, remove the hwnd from the paint
4203         queue, and also set nc_expose_pending to false, to keep us from
4204         blocking further expose's adding the hwnd to the paint queue.
4205
4206         phew.  like i said, a rather convoluted change.  Fixes the
4207         notifyicon repaint issues in bug #79645.
4208
4209 2006-10-18  Chris Toshok  <toshok@ximian.com>
4210
4211         * Form.cs: when getting the backcolor of the form, don't get
4212         base.BackColor, as this allows parents to influence the background
4213         color.  This breaks mdi forms.  Instead, if the background_color
4214         is empty, return the default.
4215
4216 2006-10-18  Chris Toshok  <toshok@ximian.com>
4217
4218         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
4219         to being private instead of internal static.
4220
4221         * Control.cs: remove all the stupid ParentWaitingOnRecreation
4222         crap, it wasn't working for more deeply nested controls anyway,
4223         and we already have the is_recreating flag - use that instead.
4224         Before calling DestroyHandle in RecreateHandle, recurse through
4225         the control tree setting it to true.  this returns the recreate
4226         code to much of its original simplicity, while now guaranteeing we
4227         actually recreate everything we're supposed to.  This change gets
4228         fyireporting actually showing mdi children.
4229
4230 2006-10-17  Chris Toshok  <toshok@ximian.com>
4231
4232         * Form.cs: remove some debug spew, and collapse some duplicate
4233         code at the end of SetClientSizeCore.
4234
4235         * XplatUIX11.cs: 
4236         - add some more debug spew here too wrt Destroy handling.
4237         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
4238         in Control's handling of WM_DESTROY.
4239         - Remove the handling of zombie window DestroyNotifies from the
4240         event loop - we don't need it.  Now the only DestroyNotifies we
4241         actually handle are ones generated by X.
4242         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
4243         match gtk's (functioning) handling of this. This keep metacity
4244         from leaving droppings in the form of wm borders with no window
4245         contents all over the place.
4246
4247         * Control.cs:
4248         - add a bunch of debug spew wrt control recreation.
4249         - fix a bug where we weren't tracking Visible properly on
4250         recreated hwnds.
4251         - fixed the WM_PAINT double buffer handling to support re-entrant
4252         calls (yes, i know it's gross, but it's happening to us).
4253
4254 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4255         * ThemeWin32Classic.cs: changed drawing of selected days
4256         to make them look better.
4257
4258 2006-10-16  Chris Toshok  <toshok@ximian.com>
4259
4260         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
4261         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
4262
4263         * XplatUIX11.cs: move away from using hwnd.client_dc and
4264         hwnd.non_client_dc and on to a stack of dc's (and in window's
4265         case, PAINTSTRUCT's), so we can deal with nested Paint calls
4266         without puking or not disposing of Graphics objects.
4267
4268         * XplatUIOSX.cs: same.
4269
4270         * XplatUIWin32.cs: same.
4271
4272 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4273
4274         * FileDialog.cs: Don't call on_directory_changed inside
4275           OnSelectedIndexChanged (it changes the SelectedIndex too).
4276           Instead move it to OnSelectionChangeCommitted.
4277
4278 2006-10-13  Chris Toshok  <toshok@ximian.com>
4279
4280         * XplatUIX11.cs: more Destroy work.  the current code does the
4281         following things, in order:
4282
4283         1. Enumerates all handles of all controls at or below the one
4284         being destroyed, in pre-order.  As it is doing this, it marks the
4285         handles as zombie and clears all references to them.
4286         
4287         2. calls XDestroyWindow on the window passed in.
4288
4289         3. SendMessage's WM_DESTROY to all he handles in the accumulated
4290         list.
4291
4292 2006-10-13  Chris Toshok  <toshok@ximian.com>
4293
4294         * XplatUIX11.cs: set hwnd.zombie to true before calling
4295         SendMessage (WM_DESTROY).  this keeps us from marking the new
4296         window a zombie, and also keeps us from calling sendmessage at
4297         all.
4298
4299 2006-10-13  Jackson Harper  <jackson@ximian.com>
4300
4301         * TextControl.cs: Do not show the caret and selection at the same
4302         time.  Reduces ugliness by 35%.
4303
4304 2006-10-13  Chris Toshok  <toshok@ximian.com>
4305
4306         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
4307         zombie after we do the recursive call, so we actually do call
4308         SendMessage on the children controls.
4309         (GetMessage): if we find a pending paint event for a zombie hwnd,
4310         remove the hwnd from the paint queue, or else it will always be
4311         there (and we'll effectively loop infinitely)
4312
4313 2006-10-13  Mike Kestner  <mkestner@novell.com>
4314
4315         * MenuItem.cs : add Selected format under keynav too.
4316         Fixes #79528.
4317
4318 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
4319
4320         * PropertyGrid.cs: Fixed some NRE's and small difference between our
4321         implementation and that of MS.
4322
4323 2006-10-13  Chris Toshok  <toshok@ximian.com>
4324
4325         * Control.cs (OnInvalidated) only futz with the invalid_region if
4326         the control is double buffered.  this fixes the apparent hang in
4327         the ListView unit tests.  Someone needs to make the
4328         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
4329
4330 2006-10-13  Chris Toshok  <toshok@ximian.com>
4331
4332         * PropertyGridView.cs:
4333
4334         - do a little refactoring so that only one place calls
4335         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
4336         else call that.  Also make it Refresh, since there are redraw bugs
4337         otherwise (we should take a look at that...)
4338
4339         - do a little more refactoring work to share the body of code
4340         involved with the drop down.  it was duplicated in the code
4341         dealing with the listbox handling and in the code dealing with the
4342         UITypeEditors.
4343
4344         - add a Capture to the dropdown form's control once it's
4345         displayed, and add a MouseDown handler that checks to make sure
4346         the position is inside the control.  If it's not, close the
4347         dropdown.  This fixes #78190.
4348
4349         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
4350         if the value is different than the initial value.
4351         
4352 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
4353
4354         * Control.cs: see #78650
4355         - Fixed GetNextControl for several cases:
4356                 - Changed FindFlatForward to return 
4357                 correct sibling control when more than one
4358                 control has same TabIndex as the currently 
4359                 focused one.
4360                 - Changed FindFlatBackward to loop children
4361                 from last to first and apply same logic as in
4362                 FindFlatForward
4363                 - Changed FindControlForward to search for
4364                 children when control is not a container
4365                 but has children, or search for siblings if
4366                 control is a container...
4367                 - Changed FindControlBackward   to continue
4368                 searching for child controls when hitting 
4369                 Panel-like parents
4370                 
4371         - Fixed Focus method to update ActiveControl
4372         (FocusTest.FocusSetsActive failure)
4373         
4374         * TabControl.cs:
4375         - Focus rectangle now refreshes when gaining
4376         or losing focus
4377         - Removed grab for Tab key on IsInputKey that 
4378         was keeping tab navigation from working (#78650)
4379
4380 2006-10-13  Chris Toshok  <toshok@ximian.com>
4381
4382         * PropertyGridView.cs:
4383         - Rewrite SetPropertyValue to loop over SelectedGridItem's
4384         SelectedObjects.
4385
4386         - Deal with GridItem.Value == null a few places.
4387
4388         * PropertyGrid.cs: 
4389         - replace the PopulateGridItemCollection with a pair of methods
4390         which compute the intersection of all the properties in the
4391         SelectedObjects array.  Fixes #79615.
4392
4393         - Throw ArgumentException from set_SelectedObjects if there's a
4394         null in the array.
4395
4396         - Add GetTarget method which can be used to traverse up the
4397         GridItem.Parent chain.  It depends on the assumption that
4398         selected_objects for different GridEntries are always in the same
4399         order (a safe assumption).  Use this method and loop over all the
4400         selected objects in the entry when calling RemoveValueChanged and
4401         AddValueChanged.
4402         
4403         * GridEntry.cs: Make this handle multiple selected objects.
4404         .Value returns null if not all the selected objects share the same
4405         value.
4406
4407 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
4408         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
4409           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
4410           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
4411           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
4412           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
4413         add additional functionality.
4414
4415 2006-10-12  Mike Kestner  <mkestner@novell.com>
4416
4417         * ErrorProvider.cs : new ToolTipWindow ctor sig.
4418         * HelpProvider.cs : new ToolTipWindow ctor sig.
4419         * ToolTip.cs : remove ToolTip param from Window sig since it is
4420         not used.
4421         * ToolBar.cs : add tooltip support.  Fixes #79565.
4422
4423 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4424
4425         * ComboBox.cs: move the events in set_SelectedIndex to 
4426         after the call to HighlightIndex in order to avoid 
4427         possible recursion and subsequent problems with the call
4428         to HighlightIndex and include a range check in 
4429         set_HighlightIndex. Fixes #79588
4430         
4431 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4432
4433         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
4434         to ui thread's settings instead of sunday. 
4435         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
4436
4437 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
4438
4439         * DateTimePicker.cs
4440         * MonthCalendar.cs
4441         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
4442         and implement missing functionality (selecting different parts 
4443         of the date and edit them individually with the keyboard).
4444         
4445 2006-10-11  Chris Toshok  <toshok@ximian.com>
4446
4447         * Control.cs (OnInvalidated): fix NRE relating to last change.
4448
4449 2006-10-11  Chris Toshok  <toshok@ximian.com>
4450
4451         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
4452         atoms in _NET_WM_STATE here if the window is maximized.  We need
4453         to do this because we're *replacing* the existing _NET_WM_STATE
4454         property, so those atoms will be lost otherwise, and any further
4455         call to GetWindowState will return Normal for a window which is
4456         actually maximized.  Fixes #79338.
4457
4458 2006-10-11  Jackson Harper  <jackson@ximian.com>
4459
4460         * TextControl.cs: Special case for setting selection end to
4461         selection start, we basically kill the anchor.
4462         - some todo comments.
4463
4464 2006-10-11  Chris Toshok  <toshok@ximian.com>
4465
4466         * Control.cs: switch to using an "invalid_region" to track which
4467         parts of the image buffer need updating.  This is more code than
4468         the simple fix from r66532.  That version just attempted to always
4469         fill the entire buffer on redraw, which turns out to be
4470         inefficient when invalidating small rectangles.  This version
4471         simply adds the invalid rectangle to the invalid region.  When we
4472         get any WM_PAINT message we see if it can be filled using the
4473         image buffer, and if it can't (if the paint event's clip rectangle
4474         is visible in the invalid region) we first fill the image buffer.
4475         So, the image buffer is still a cache, we just fill it lazily.
4476
4477         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
4478         need it any longer.
4479
4480 2006-10-11  Chris Toshok  <toshok@ximian.com>
4481
4482         * XplatUIX11.cs (SetWindowPos): we need to update both position as
4483         well as size after calling XMoveResizeWindow.  This keeps us from
4484         ignoring future SetWindowPos calls.  Fixes the disappearing
4485         DateTimePicker in the ToolBarDockExample from bug #72499.
4486
4487 2006-10-11  Chris Toshok  <toshok@ximian.com>
4488
4489         * TextBoxBase.cs: reorder things a bit when it comes to
4490         resizing-causing-recalculation.  we were recalculating the
4491         document when our position was changed, which shouldn't happen.
4492         We only care about size changes.  Clear up some more redundant
4493         recalculation calls while I'm at it.  This makes the toolbar dock
4494         example snappy when you're just dragging toolbars around (since it
4495         causes a relayout whenever you move one.)
4496
4497 2006-10-11  Chris Toshok  <toshok@ximian.com>
4498
4499         * ToolBarButton.cs (get_Rectangle): this only returns
4500         Rectangle.Empty if Visible == false, or Parent == null.
4501         Parent.Visible doesn't matter.
4502
4503 2006-10-10  Chris Toshok  <toshok@ximian.com>
4504
4505         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
4506         by .net 1.1, so switch to an internal method instead.
4507
4508 2006-10-10  Chris Toshok  <toshok@ximian.com>
4509
4510         * Control.cs (WM_PAINT): when a control is double buffered we draw
4511         initially to the ImageBuffer and then copy from there.  But when a
4512         parent control which has child controls is double buffered, the
4513         initial drawing doesn't encompass the entire ClientRectangle of
4514         the parent control, so we end up with uninitialized bits (this is
4515         easily seen by dragging the top toolbar in
4516         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
4517         manually set the ClipRectangle of the paint_event (only the one we
4518         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
4519         of the nastiness in bug #72499.
4520
4521         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
4522         which we use in Control.cs's WM_PAINT handling.
4523
4524 2006-10-10  Jackson Harper  <jackson@ximian.com>
4525
4526         * TextBoxBase.cs: Finish off the autoscrolling stuff.
4527
4528 2006-10-10  Chris Toshok  <toshok@ximian.com>
4529
4530         * Cursor.cs: Apply a slightly different patch to the one suggested
4531         in #79609.
4532
4533 2006-10-10  Jackson Harper  <jackson@ximian.com>
4534
4535         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
4536         not the parent form.
4537         * TextControl.cs: use difference in old line count vs new count to
4538         calculate how many lines were added, this takes into account soft
4539         line breaks properly.
4540
4541 2006-10-10  Chris Toshok  <toshok@ximian.com>
4542
4543         * LinkLabel.cs: don't call MeasureCharacterRanges against a
4544         rectangle located at 0,0 and the size of the text.  Use
4545         ClientRectangle instead.  This fixes rendering of non-left aligned
4546         link labels.
4547
4548 2006-10-10  Jackson Harper  <jackson@ximian.com>
4549
4550         * TextBoxBase.cs: When we set the selection start position the
4551         caret.
4552         * TextControl.cs: Need to update the caret when we decrement it to
4553         zero.
4554         - Make sure that the selection_visible flag gets reset to false if
4555         the selection isn't visible.  Before this you could get it set to
4556         visible by changing the selection start, then changing the end to
4557         equal the start.
4558
4559 2006-10-09  Jackson Harper  <jackson@ximian.com>
4560
4561         * TreeView.cs: Don't update scrollbars when we aren't visible.
4562         * TreeNodeCollection.cs: Only need to update scrollbars if being
4563         added to an expanded visible node or the root node.
4564
4565 2006-10-09  Chris Toshok  <toshok@ximian.com>
4566
4567         * XplatUIX11.cs (SendMessage): fix NRE.
4568
4569 2006-10-09  Jackson Harper  <jackson@ximian.com>
4570
4571         * TextBoxBase.cs: Implement horizontal autoscrolling.
4572         * TextControl.cs: Add a movement types that allows moving forward
4573         and backwards without wrapping.
4574
4575 2006-10-09  Mike Kestner  <mkestner@novell.com>
4576
4577         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
4578         with focus "expansion" of labels.  Fixes #79532 and then some.
4579         * ThemeWin32Classic.cs : add LineLimit to ListView label format
4580         when wrapping.
4581
4582 2006-10-09  Jackson Harper  <jackson@ximian.com>
4583
4584         * TextBoxBase.cs: Set the default max values to MaxValue since
4585         we use the scrollbar for autoscrolling and the default value is
4586         100.  If we don't do this the caret won't keep up with typing
4587         after about 18 characters.
4588         * TextControl.cs: Make sure the selection is offset by the
4589         viewport x.  This fixes selection when using auto scrolling.
4590
4591 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
4592         
4593         * Form.cs: The active control should be selected after the 
4594         OnLoad so that any child control initialization that affects
4595         the selection is done. Fixes #79406
4596
4597 2006-10-06  Chris Toshok  <toshok@ximian.com>
4598
4599         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
4600         to have no evil effects.
4601
4602         - Stop selecting StructureNotifyMask on non-toplevel windows.
4603
4604           The only way children should be resized is by using the SWF api,
4605           and we already send WM_WINDOWPOSCHANGED messages in those cases.
4606           Toplevel windows can be interacted with via the window manager,
4607           and so we keep the input mask there.
4608
4609           The other event StructureNotifyMask gives us (that we care
4610           about) is DestroyNotify.  The code is already structured such
4611           that it assumes we won't be getting a DestroyNotify event for
4612           the window we pass to XDestroyWindow (which is what
4613           StructureNotifyMask is supposed to guarantee.)  So, that code
4614           shouldn't be affected by this either.
4615
4616         - Stop selecting VisibilityChangeMask altogether.
4617
4618           We weren't doing anything with the resulting events anyway.
4619         
4620         This vastly reduces the number of X requests and events we see
4621         when resizing/laying out a large ui.
4622
4623 2006-10-06  Chris Toshok  <toshok@ximian.com>
4624
4625         * ScrollableControl.cs (DisplayRectangle): we need to take into
4626         account the DockPadding regardless of whether or not auto_scroll
4627         == true.  rework this slightly to this effect, and fix bug #79606,
4628         and part of #72499 (you can now see the drag handles and drag
4629         toolbars around).
4630
4631 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
4632
4633         * ListViewItem.cs: Collections of selected and checked items are now
4634         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
4635         we mark the collection "dirty".
4636         * ListView.cs: Marked collections readonly. Modified UpdateSelection
4637         to only clear SelectedItems when a new item is selected and MultiSelect
4638         is enabled. CheckedItems and SelectedItems now subscribe to Changed
4639         event of ListViewItemCollection, and mark its list dirty whenever
4640         that event is fire. This allows us to return selected/checked items 
4641         in the same order as they are in the Items collection. This matches
4642         the MS behavior.
4643
4644 2006-10-06  Chris Toshok  <toshok@ximian.com>
4645
4646         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
4647         right mouse clicks.  Fixes bug #79593.
4648
4649 2006-10-06  Chris Toshok  <toshok@ximian.com>
4650
4651         * Splitter.cs: doh, fix splitters that don't want to cancel the
4652         movement when you drag them.  Also, impose the limits on the
4653         values we send to the SplitterMovingEvent.  Fixes #79598.
4654
4655 2006-10-06  Jackson Harper  <jackson@ximian.com>
4656
4657         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
4658         since we use this for auto scrolling also.
4659
4660 2006-10-05  Chris Toshok  <toshok@ximian.com>
4661
4662         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
4663         beginning to think that most datagrid column types don't need this
4664         method.  Fixes bug #79392.
4665
4666 2006-10-05  Chris Toshok  <toshok@ximian.com>
4667
4668         * DataGrid.cs: move back to a more lazy scheme for creating the
4669         CurrencyManager, so we aren't updating it every time you set
4670         either DataSource or DataMember.  Also, don't call
4671         RecreateDataGridRows if the currency manager hasn't changed.
4672
4673 2006-10-05  Chris Toshok  <toshok@ximian.com>
4674
4675         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
4676         emitted, SelectedIndex should already be updated.  Fixes bug
4677         #78929.
4678
4679 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
4680
4681         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
4682           ToolStripTextBox.cs: Initial commit.
4683         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
4684
4685 2006-10-05  Jackson Harper  <jackson@ximian.com>
4686
4687         * TabControl.cs: We need to invalidate the tab control area when
4688         new ones are added (duh).
4689
4690 2006-10-03  Chris Toshok  <toshok@ximian.com>
4691
4692         * Form.cs (ProcessDialogKey): if the focused control is in this
4693         form and is a button, call its PerformClick method here.  Fixes
4694         #79534.
4695
4696 2006-10-04  Jackson Harper  <jackson@ximian.com>
4697
4698         * TabPage.cs: Ignore setting of Visible, and add an internal
4699         method for setting the controls visibility.  TabPage's Visible
4700         property is a little strange on MS, this seems to make us
4701         compatible, and fixes cases where people set all the tab pages to
4702         visible.
4703         * TabControl.cs: Use the new internal setting on tab pages
4704         visibility.
4705
4706 2006-10-03  Mike Kestner  <mkestner@novell.com>
4707
4708         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
4709
4710 2006-10-03  Mike Kestner  <mkestner@novell.com>
4711
4712         * ListView.cs : use is_visible instead of Visible to check if 
4713         scrollbars should be placed/sized.  Also some max_wrap_width
4714         love for LargeIcon view.  [Fixes #79533]
4715
4716 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
4717
4718         * TextControl.cs :
4719           Make set_TextAlign() do actually update the align. Fixed #78403.
4720
4721 2006-10-03  Chris Toshok  <toshok@ximian.com>
4722
4723         * DataGrid.cs: fix a crash when switching datasources if the
4724         vertical scrollbar is at someplace other than Value = 0.  Also,
4725         reduce the number of recalculation passes we do in SetDataSource
4726         from 2 to 1.
4727
4728 2006-10-03  Jackson Harper  <jackson@ximian.com>
4729
4730         * TextBoxBase.cs: Move the if value the same bail check up, we
4731         don't want to empty the document if it is already empty, this
4732         seems to severly mess up the caret.  TODO: I should probably fix
4733         the empty statement to update teh caret somehow.
4734
4735 2006-10-03  Chris Toshok  <toshok@ximian.com>
4736
4737         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
4738         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
4739         reflection, an internal row type, properties on said type, etc.)
4740         will work with our datagrid.  Fixes #79531.
4741
4742 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
4743
4744         * FileDialog.cs: Don't crash if a path is not accessible
4745           (System.UnauthorizedAccessException). Fixes #79569.
4746         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
4747           a ':' too. Return unknown icon for those paths/files.
4748
4749 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
4750
4751         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
4752         GetContainerControl returns null.
4753
4754 2006-10-02  Chris Toshok  <toshok@ximian.com>
4755
4756         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
4757         call to XGetWindowAttributes instead of "handle".  fixes an X
4758         error using notifyicon after the NotifyIconWindow to Form base
4759         class switch.
4760
4761 2006-10-02  Chris Toshok  <toshok@ximian.com>
4762
4763         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
4764         server grab and looping we need to do to get down to the most
4765         deeply nested child window.
4766         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
4767         QueryPointer again after the WarpPointer so we can generate a
4768         proper (fake) MotionNotify event to be enqueued in the destination
4769         window's queue.
4770         (GetCursorPos): call QueryPointer.
4771
4772         Fixes #79556.
4773
4774 2006-10-02  Jackson Harper  <jackson@ximian.com>
4775
4776         * NotifyIcon.cs: Derive the notify icon from a form, so things
4777         like FindForm work on it.
4778         - Swallow the WM_CONTEXTMENU message, since that is generated on
4779         mouse down, and context menu is a mouse up kinda guy.  I believe
4780         the correct fix here is probably to make the notify icon entirely
4781         NC area, but this seems to work fine for anyone not manipulating
4782         WndProc.
4783
4784 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
4785
4786         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
4787           ToolStripItemCollection.cs, ToolStripLabel.cs,
4788           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
4789           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
4790           Initial implementation.
4791         * TextRenderer.cs: Provide padding to MeasureText.
4792
4793 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
4794
4795         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
4796         of ButtonBaseAccessibleObject. Fix bug #79552.
4797
4798 2006-10-02  Jackson Harper  <jackson@ximian.com>
4799
4800         * MdiWindowManager.cs: When maximizing use the containers client
4801         rect, not it's bounds, so nc area is accounted correctly.
4802         - Use the parent form's size for the menu position, since the
4803         client isn't always the full form size.
4804
4805 2006-10-01  Chris Toshok  <toshok@ximian.com>
4806
4807         * ScrollableControl.cs: make sure neither right_edge or
4808         bottom_edge are < 0, since they're used as LargeChange for the
4809         horiz/vert scrollbars respectively.  Fixes #79539.
4810
4811 2006-10-01  Chris Toshok  <toshok@ximian.com>
4812
4813         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
4814         the xplatuix11 code can cause us to destroy/recreate our handle.
4815
4816         * XplatUIX11.cs
4817         (SystrayAdd):
4818         - this code can be invoked many times for the same Hwnd.  Make
4819           sure we only destroy the client window once (the first time this
4820           method is called).  This fixes bug #79544.
4821         - Remove the call to the improperly bound XSync.  why we had two
4822           bindings to this, I will never know, but this call resulted in
4823           events being discarded from the queue(!).
4824         - correct a misunderstanding of _XEMBED_INFO - the second atom is
4825           not our current state but the state we wish to be in.  So, 0 if
4826           we don't want to be mapped.  Change it to 1.
4827         (SystrayRemove): The XEMBED spec makes mention of the fact that
4828         gtk doesn't support the reparent of client windows away from the
4829         embedder.  Looking at gtksocket-x11.c seems to agree with this.
4830         The only avenue we have for removing systray icons is to destroy
4831         them.  We don't want the handle to go away for good, though, so
4832         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
4833         #79545.
4834         
4835 2006-10-01  Chris Toshok  <toshok@ximian.com>
4836
4837         * Form.cs (WndProc): inline the native_enabled variable usage into
4838         the cases in which it's used.  Fixes #79536.
4839
4840 2006-09-29  Mike Kestner  <mkestner@novell.com>
4841
4842         * ListView.cs : toggle the selection state for ctrl clicks in 
4843         multiselect mode. [Fixes #79417]
4844
4845 2006-09-29  Mike Kestner  <mkestner@novell.com>
4846
4847         * ListView.cs : kill CanMultiSelect and refactor the selection
4848         code to support multiselection in the absence of mod keys. Steal
4849         arrow/home/end keys by overriding InternalPreProcessMessage to
4850         restore regressed keynav behavior.
4851         [Fixes #79416]
4852
4853 2006-09-29  Jackson Harper  <jackson@ximian.com>
4854
4855         * MdiClient.cs: Repaint the titlebars when the active window is
4856         changed.
4857
4858 2006-09-29  Chris Toshok  <toshok@ximian.com>
4859
4860         * Application.cs: when entering a runloop with a modal, make sure
4861         the hwnd is enabled.  Fixes #79480.
4862
4863 2006-09-29  Chris Toshok  <toshok@ximian.com>
4864
4865         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
4866         when ListManager.CanAddRows == false, bump us back one.
4867
4868         * DataGridColumnStyle.cs (ParentReadOnly): remove the
4869         listmanager.CanAddRows check.  This makes ArrayLists uneditable
4870         using a datagrid, which is not right.
4871         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
4872         is an IEditable, but call property_descriptor.SetValue regardless.
4873         fixes #79435.
4874
4875 2006-09-29  Chris Toshok  <toshok@ximian.com>
4876
4877         * DataGridBoolColumn.cs: we need to test equality in the face of
4878         possible null values (as is the case with the default NullValue).
4879         This patch keeps us from crashing in that case.
4880
4881 2006-09-29  Jackson Harper  <jackson@ximian.com>
4882
4883         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
4884         here, since it will get called for every node collection in the
4885         tree. This is now done in the treeview once the sorting is
4886         finished.
4887         * TreeView.cs: Recalculate the visible order, and update the
4888         scrollbars after sorting, set the top nope to the root so that the
4889         recalc actually works.
4890
4891 2006-09-29  Chris Toshok  <toshok@ximian.com>
4892
4893         * LinkLabel.cs: more handling of the default link collection in
4894         the face of LinkArea manipulation.  The default link collection
4895         contains 1 element (start=0,length=-1).  If the user sets LinkArea
4896         to anything and the links collection is the default, clear it.
4897         Then only add the link if its nonempty.  Fixes #79518.
4898
4899 2006-09-29  Chris Toshok  <toshok@ximian.com>
4900
4901         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
4902         piece correctly when we hit a '\n'.  Fixes #79517.
4903
4904 2006-09-29  Chris Toshok  <toshok@ximian.com>
4905
4906         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
4907         change the binding of gdk_init_check to take two IntPtr's, and
4908         pass IntPtr.Zero for both of them.  Fixes #79520.
4909
4910 2006-09-29  Mike Kestner  <mkestner@novell.com>
4911
4912         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
4913         [Fixes #78779]
4914
4915 2006-09-28  Jackson Harper  <jackson@ximian.com>
4916
4917         * XplatUIX11.cs: When translating NC messages make sure we go from
4918         whole window to screen, not client window to screen.
4919         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
4920         method doesn't exist
4921         - Skip over controls that aren't forms when arranging.
4922
4923 2006-09-28  Jackson Harper  <jackson@ximian.com>
4924
4925         * XplatUIWin32.cs: Clip the rect to the parent window.
4926         * XplatUIStructs.cs: Add clipping modes struct.
4927         * InternalWindowManager.cs: New private method that factors title
4928         bar heights in when calculating the pos of an NC mouse message.
4929         - Use SendMessage to force a paint when the form's size is changed
4930         instead of painting the decorations immediately.
4931         - Don't let the NC button click messages get to DefWndProc,
4932         because they will attempt to handle windowing themself, and this
4933         messes up z-order (it will put them in front of the scrollbars).
4934         * XplatUIX11.cs: Make sure that we don't reset window managers if
4935         we already have one (ie the window is an MDI window).
4936
4937 2006-09-28  Chris Toshok  <toshok@ximian.com>
4938
4939         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
4940         menu code really needs going over.
4941
4942 2006-09-27  Chris Toshok  <toshok@ximian.com>
4943
4944         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
4945         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
4946         window is maximizable.  So, we need to make sure that even if we
4947         clear the border/wm frame of those functions, they're still
4948         available (basically, we remove the decoration without removing
4949         the function).  Half the fix for #79338.
4950
4951 2006-09-27  Chris Toshok  <toshok@ximian.com>
4952
4953         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
4954         Fixes bug #79515.
4955
4956 2006-09-27  Chris Toshok  <toshok@ximian.com>
4957
4958         * Splitter.cs: reorder things a bit so that we don't actually
4959         draw/move the splitter until after calling OnSplitterMoving.  This
4960         lets users cancel/disallow the movement by explicitly setting
4961         event.SplitX/SplitY.  Fixes #79372.
4962
4963 2006-09-27  Jackson Harper  <jackson@ximian.com>
4964
4965         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
4966         because it is most likely on a window being destroyed, and that
4967         will give us an X11 error.
4968
4969 2006-09-27  Chris Toshok  <toshok@ximian.com>
4970
4971         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
4972         the dropdown button now toggles between showing and hiding the
4973         dropdown.  Also, get rid of dropdown_form_showing and just use
4974         dropdown_form.Visible.  We still don't do a grab, but I'll leave
4975         that part to someone who has handled Capture-fu before.
4976
4977 2006-09-27  Chris Toshok  <toshok@ximian.com>
4978
4979         * DataGrid.cs: return false if alt isn't pressed when '0' is
4980         pressed.  this keeps the '0' key from being swallowed, and fixes
4981         bug #79350.
4982
4983 2006-09-27  Chris Toshok  <toshok@ximian.com>
4984
4985         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
4986         Calling Refresh (in response to a scrollbar event) screws up the
4987         scrollbar painting.  Fixes bug #78923.
4988
4989 2006-09-27  Chris Toshok  <toshok@ximian.com>
4990
4991         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
4992         then insert into hashtable" blocks threadsafe.
4993
4994 2006-09-27  Chris Toshok  <toshok@ximian.com>
4995
4996         * MessageBox.cs (CreateParams): the styles should be |'ed with our
4997         baseclass's, since otherwise the
4998         ControlBox/MinimizeBox/MaximizeBox assignments above have no
4999         effect.  This gets the close button back in messageboxes.
5000
5001 2006-09-27  Chris Toshok  <toshok@ximian.com>
5002
5003         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
5004         flag, not just != 0.  this makes flags that are actually multiple
5005         bits (like WS_CAPTION) work.  fixes bug #79508.
5006
5007 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
5008
5009         * PageSetupDialog.cs: add support for getting and settings the 
5010         paper size, source and orientation.
5011
5012 2006-09-26  Chris Toshok  <toshok@ximian.com>
5013
5014         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
5015         and caption == "", we need to remove the resize handles as well as
5016         the title bar.
5017
5018         * Control.cs (set_Text): turns out that setting Text on a form
5019         should change the WM styles on the window, since if ControlBox ==
5020         false, the only way to get a window border is to have a non-""
5021         Text property.  check winforms/forms/text.cs for an example.  so,
5022         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
5023         update both window styles and title.  This fixes a lot of dialogs
5024         (including the preferences dialog in MonoCalendar.)
5025
5026 2006-09-26  Chris Toshok  <toshok@ximian.com>
5027
5028         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
5029         control isn't a Form), call Win32ShowWindow to hide the window,
5030         but don't update the control Visible property.  When we reparent
5031         back to a parent control, call SetVisible in order for the
5032         window's visibility to be reinstated.
5033
5034         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
5035         the FosterParent.
5036
5037         * Control.cs (ControlCollection.Remove): remove that value.Hide()
5038         call for good, since it breaks MonoCalendar (and other things I'm
5039         sure.) Also, set all_controls to null *after* the owner calls,
5040         which end up regenerating it.
5041         (ChangeParent): allow new_parent to be == null, passing
5042         IntPtr.Zero down to XplatUI.
5043
5044         this fixes #79294 the right way.
5045
5046 2006-09-26  Mike Kestner  <mkestner@novell.com>
5047
5048         * GridEntry.cs : internal SetParent method.
5049         * PropertyGrid.cs : attach to property changed on the proper
5050         target if we have a hierarchical grid with subobjects. Setup
5051         GridItem.Parent for hierarchical items.
5052         * PropertyGridView.cs : Set value on the correct target for
5053         hierarchical grids. [Fixes #78903]
5054
5055 2006-09-26  Chris Toshok  <toshok@ximian.com>
5056
5057         * Control.cs (ChildNeedsRecreating): this should return true if
5058         either we're being recreated and the child is in our list, or our
5059         parent is waiting for our recreation.
5060
5061 2006-09-26  Chris Toshok  <toshok@ximian.com>
5062
5063         * Control.cs (ControlCollection.Remove): reinstate the
5064         value.Hide() call as suggested in bug #79294.
5065
5066 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
5067
5068         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
5069         coordinates (versus a relative move).
5070
5071 2006-09-26  Chris Toshok  <toshok@ximian.com>
5072
5073         * Control.cs: rework child recreation a little bit.  It turns out
5074         that we race between the DestroyNotify the WM_DESTROY message.  If
5075         the parent gets its DestroyNotify before the child gets the
5076         WM_DESTROY message, the child ends up not recreating (since the
5077         parent finishes its recreation on DestroyNotify, and the child
5078         checks ParentIsRecreating.)
5079
5080         So, instead we store off a list of all the child controls which
5081         need to be recreated when the parent control starts to recreate
5082         itself.  Then, when child controls get their WM_DESTROY message we
5083         check to see if they're in the parent's pending recreation list,
5084         and if so, we recreate.  This removes all dependency on ordering
5085         from the code and fixes the initial MonoCalendar upgrade dialog.
5086         
5087 2006-09-26  Jackson Harper  <jackson@ximian.com>
5088
5089         * TextControl.cs: Use the Line to get the length of the line,
5090         since soft line breaks can change the end line.
5091
5092 2006-09-26  Chris Toshok  <toshok@ximian.com>
5093
5094         * Control.cs (ControlCollection.AddImplicit): don't add the
5095         control again if it's already in one of our lists.  This keeps us
5096         from adding controls over and over again for comboboxes when their
5097         handle gets recreated (as the combobox adds implicit controls in
5098         OnHandleCreated).  Fixes the X11 errors in bug #79480.
5099
5100 2006-09-26  Jackson Harper  <jackson@ximian.com>
5101
5102         * TextControl.cs: When deleting characters make sure that any
5103         orphaned zero lengthed tags get deleted.
5104         - Fix ToString for zero lengthed tags.
5105
5106 2006-09-25  Jackson Harper  <jackson@ximian.com>
5107
5108         * TextControl.cs: When getting a tag at the location there can be
5109         multiple tags at the same spot, these are 0-lengthed tags that
5110         appear when extra formatting has been stuck in a location.  We
5111         need to pull out the last of these 0 lengthed tags.
5112
5113 2006-09-25  Jackson Harper  <jackson@ximian.com>
5114
5115         * TextControl.cs: Fix print out in debug method.
5116         * TextBoxBase.cs: When text is set bail if we are setting to the
5117         previous value.
5118         
5119 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
5120
5121         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
5122           It is now possible to change the selected index in a FontXXXListBox
5123           with the up and down arrow keys from the FontXXXTextBoxes.
5124           Also, send the FontXXXTextBox mouse wheel event to the corresponding
5125           FontXXXListBoxes to match ms.
5126
5127 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
5128
5129         * SystemInformation.cs: Return a clone of the theme's MenuFont because
5130         anyone can dispose it, anytime. All other properties returns enums, 
5131         structs or basic types so they don't need such tricks.
5132
5133 2006-09-22  Jackson Harper  <jackson@ximian.com>
5134
5135         * XplatUI.cs:
5136         * XplatUIWin32.cs:
5137         * Clipboard.cs:
5138         * DataFormats.cs:
5139         * XplatUIOSX.cs:
5140         * XplatUIDriver.cs: Update interface to add a primary selection
5141         flag, so the driver can use the primary selection buffer if
5142         needed.
5143         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
5144
5145         * RichTextBox.cs: We need to supply the data object to paste now
5146         (so we can choose to supply CLIPBOARD or PRIMARY).
5147         * TextBoxBase.cs: Supply data object to paste (see above).
5148         - Middle click uses the primary selection data object.
5149         
5150 2006-09-21  Chris Toshok  <toshok@ximian.com>
5151
5152         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
5153         of SetWMStyles.  It's still a rat's nest and is largely
5154         order-dependent which I dislike immensely.  This also fixes the X
5155         button disappearing from toplevel forms.
5156
5157 2006-09-21  Mike Kestner <mkestner@novell.com>
5158
5159         * ListBox.cs: move Jordi's click/dblclick raising code to the
5160         mouse up handler.
5161
5162 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
5163
5164         * ListBox.cs: Fixes 79450
5165
5166 2006-09-21  Mike Kestner <mkestner@novell.com>
5167
5168         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
5169         to deal with people updating the TreeNodeCollection after the tree
5170         is disposed.  "Fixes" 79330.
5171
5172 2006-09-20  Jackson Harper <jackson@ximian.com>
5173
5174         * TextControl.cs: Push the cursor record onto the undo stack
5175         before the delete action. This fixes 78651.
5176
5177 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
5178
5179         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
5180         CreateParams. Fixes 79329.
5181
5182 2006-09-19  Chris Toshok  <toshok@ximian.com>
5183
5184         * XplatUIX11.cs: a couple of blanket code massage passes to clean
5185         things up a bit.  First, get rid of the NetAtoms array (and the NA
5186         enum), and just embed the atoms as static fields.  Also, add a
5187         couple of functions (StyleSet and ExStyleSet) to clean up all the
5188         bitmask testing of styles.
5189
5190         * X11Structs.cs: remove the NA enum, not needed anymore.
5191         
5192 2006-09-19  Chris Toshok  <toshok@ximian.com>
5193
5194         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
5195         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
5196         added cleanup to get MessageBox titles appearing again, which were
5197         broken by my earlier fix for caption-less/ControlBox-less windows.
5198
5199 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
5200
5201         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
5202           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
5203           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
5204           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
5205           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
5206           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
5207           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
5208           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
5209           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
5210           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
5211           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
5212             Inital import.
5213         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
5214           ToolStripButton.cs: Stubs needed for above.
5215         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
5216
5217 2006-09-15  Chris Toshok  <toshok@ximian.com>
5218
5219         * XplatUIX11.cs:
5220         - make the MessageQueues hashtable Synchronized.
5221         
5222         - SendMessage: if the Hwnd is owned by a different thread, use the
5223         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
5224         thread.  Fixes bug #79201.
5225
5226 2006-09-15  Chris Toshok  <toshok@ximian.com>
5227
5228         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
5229         ControlBox == false, we disallow maximize/minimize/close.  If the
5230         form Caption is "" we also disallow move (and get rid of the Title
5231         decoration).  Unfortunately, regardless of how things are set,
5232         we're stuck with the Title and WM menu.
5233
5234 2006-09-15  Chris Toshok  <toshok@ximian.com>
5235
5236         * Application.cs: add locking around the static message_filters
5237         ArrayList, part of #79196.
5238
5239 2006-09-15  Chris Toshok  <toshok@ximian.com>
5240
5241         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
5242         Form.ControlBox == false, the window has no titlebar nor resize
5243         handles.  fixes bug #79368.
5244
5245 2006-09-15  Chris Toshok  <toshok@ximian.com>
5246
5247         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
5248         >= 0.  Fixes bug #79370.
5249
5250 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
5251         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
5252         * Control.cs:
5253             Add properties: LayoutEngine, Margin, DefaultMargin.
5254             Add method: GetPreferredSize.
5255             Move layout logic from PerformLayout to layout engines. 
5256
5257 2006-09-13  Chris Toshok  <toshok@ximian.com>
5258
5259         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
5260         fix for #79326 broke #78718, so this change addresses that.
5261
5262         - in SendWMDestroyMessages remove the call to
5263         CleanupCachedWindows, since we might be recreating the control and
5264         need to maintain the references to right Hwnd handles.  Also, set
5265         the zombie flag to true for each of the children in the hierarchy
5266         instead of calling hwnd.Dispose.  This will cause GetMessage to
5267         ignore all events for the window except for DestroyNotify.
5268
5269         - In GetMessage, ignore messages except for DestroyNotify for
5270         zombie hwnds.
5271         
5272         * Control.cs: revert the is_recreating fix from the last
5273         ChangeLog.  It's definitely "right", but it breaks switching from
5274         an MDI form to a non-MDI form.  Will need to revisit that.
5275
5276         * Hwnd.cs: add a zombie flag, which means "the
5277         client_window/whole_window handles are invalid, but we're waiting
5278         for the DestroyNotify event to come in for them".  Set the flag to
5279         false explicitly if setting WholeWindow/ClientWindow, and also
5280         when Disposing.
5281         
5282 2006-09-13  Chris Toshok  <toshok@ximian.com>
5283
5284         * XplatUIX11.cs: rework window destruction slightly.
5285
5286         - when destroying the windows associated with a control, we don't
5287         need 2 separate XDestroyWindow calls.  Just the one for the
5288         whole_window (or for client_window if whole_window is somehow
5289         IntPtr.Zero -- can this happen?) is enough.
5290
5291         - reworked SendWMDestroyMessages slightly, so we always dispose
5292         the child control hwnd's after sending the messages.
5293         
5294         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
5295         the two places it was used (one was even using hwnd.Handle and the
5296         other hwnd.client_window.  ugh), adding another call in
5297         SendWMDestroyMessages.  We need this new call because now the
5298         DestroyNotify events in the queue will be ignored for the child
5299         controls (as their hwnd's were disposed, and the window id's
5300         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
5301
5302         - this fixes bug #79326.
5303
5304 2006-09-13  Chris Toshok  <toshok@ximian.com>
5305
5306         * Control.cs: don't always set is_recreating to false at the end
5307         of RecreateHandle, since sometimes we're not done (and won't be
5308         until WndProc handles the WM_DESTROY message).  Also, set
5309         is_recreating to false in the WM_DESTROY handling code.  Part of
5310         the fix for bug #79326.
5311
5312 2006-09-13  Miguel de Icaza  <miguel@novell.com>
5313
5314         * X11DesktopColors.cs: Start the droppage of debugging messages.
5315
5316         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
5317
5318 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
5319
5320         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
5321
5322 2006-09-12  Chris Toshok  <toshok@ximian.com>
5323
5324         * DataGrid.cs (get_ListManager): if the list_manager is null, try
5325         to create it using SetDataSource.  Fixes bug #79151.
5326
5327 2006-09-11  Chris Toshok  <toshok@ximian.com>
5328
5329         * XEventQueue.cs: add a DispatchIdle property.
5330
5331         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
5332         either the queue is null, or the queue has DispatchIdle set to
5333         true.
5334         (DoEvents): set queue.DispatchIdle to false around the
5335         peek/translate/dispatch message loop in this method.  This keeps
5336         Application.Doevents from emitting idle events.  Part of the fix
5337         for #78823.
5338
5339 2006-09-11  Chris Toshok  <toshok@ximian.com>
5340
5341         * DataGrid.cs (set_DataSource): make this work for both the
5342         winforms/datagrid test and ReportBuilder.  It seems as though when
5343         we've created a ListManager (or maybe it's if we have a
5344         BindingContext?), when we set the DataSource it clears the
5345         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
5346         #79333.
5347
5348 2006-09-11  Chris Toshok  <toshok@ximian.com>
5349
5350         * XplatUIX11.cs: deal with queue being null, which happens in all
5351         the Clipboard functions.  Fixes one of the two problems mentioned
5352         in #78612.
5353
5354 2006-09-11  Chris Toshok  <toshok@ximian.com>
5355
5356         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
5357         button on various spots (including outside the menu) works closer
5358         to MS, and doesn't crash.  Fixes #79343.
5359
5360 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
5361
5362         * ListView.cs: Do not initialize item_sorter in init. To match MS,
5363         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
5364         and the internal comparer is set. When a new ListViewItemSorter is set,
5365         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
5366         was specified. No further processing is necessary if SortOrder is set
5367         to it's current value. If Sorting is modified to None, and View is
5368         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
5369         (either custom or our internal ItemComparer) to null, on 1.0 profile
5370         only set item_sorter to null if its our internal IComparer. If Sorting
5371         is modified to Ascending or Descending, then use our internal IComparer
5372         if none is set, and if the current IComparer is our internal one then:
5373         on 2.0 profile always replace it with one for new Sorting, and on 1.0
5374         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
5375         Enum.IsDefined to verify whether a valid View value is specified in
5376         its setter. Automatically sort listview items when listview is
5377         created. In Sort, do nothing if ListView is not yet created, or if
5378         no item_sorter is set (no Sorting was set, Sorting was explicitly set
5379         to None or ListViewItemSorter was set to null). Added Sort overload
5380         taking a bool to indicate whether the ListView should be redrawn when
5381         items are sorted (we use this in ListViewItemCollection to avoid double
5382         redraws). Modified our internal IComparer to take the sort order into
5383         account. In Add and AddRange methods of ListViewItemCollection, also
5384         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
5385         view), but use overload with noredraw option to avoid double redraw.
5386         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
5387         true when View is Tile, and do the same when attempting to set View to
5388         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
5389         for selected/checked indices, as it involves overhead when sorting is
5390         done while these collections are not used all that often. Instead
5391         we'll build the indices on demand. Modified IList implementation of
5392         CheckedIndexCollection to use public methods if object is int.
5393         Modified CheckedListViewItemCollection to hide checked items if
5394         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
5395         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
5396         IList implementation in SelectedIndexCollection to use public methods
5397         if object is int. Modified SelectedListViewItemCollection to hide
5398         selected items if listview is not yet created.
5399         * ListViewItem.cs: CheckedIndices list no longer needs to be
5400         maintained separately (see ListView changes). Also clone font, fixes
5401         test failure.
5402
5403 2006-09-11  Mike Kestner  <mkestner@novell.com>
5404
5405         * ComboBox.cs: if we are updating the contents of the currently
5406         selected index, refresh the control or the textbox selection.
5407         [Fixes #79066]
5408
5409 2006-09-11  Mike Kestner  <mkestner@novell.com>
5410
5411         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
5412         the 'specified' logic has been moved there.  This seems like a bug 
5413         in Control.cs, since our current SetBoundsCore completely ignores 
5414         the specified parameter.  Peter's commit seems to indicate that is 
5415         the way the MS control implementation works.  [Fixes #79325]
5416
5417 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
5418
5419         * XplatUI.cs: Set default_class_name to be composed
5420         of current domain id. This allows MWF to be loaded in multiple
5421         domains on Win32.
5422
5423 2006-09-09  Miguel de Icaza  <miguel@novell.com>
5424
5425         * X11Keyboard.cs: If we are unable to obtain the input method, do
5426         not call CreateXic to create the input context.   Should fix
5427         #78944/79276.
5428
5429 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
5430
5431         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
5432           Simplified gnome support by adding more pinvokes to get the
5433           icon for a file or mime type.
5434
5435 2006-09-08  Jackson Harper  <jackson@ximian.com>
5436
5437         * MenuAPI.cs: Deslect popup context menu items before closing the
5438         window, so that you don't see the previously selected item
5439         selected when you reopen the menu.
5440         * TextControl.cs: Update the cursor position even if we don't have
5441         focus.  This fixes typing in things like the ComboBox.  I'm not
5442         totally sure we should always set the visibility if we don't have
5443         focus, but couldn't find any corner cases where the cursor showed
5444         up when it shouldn't.
5445
5446 2006-09-08  Chris Toshok  <toshok@ximian.com>
5447
5448         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
5449         our arrays are length 256.  & 0xff before indexing.  Fixes the
5450         crash in bug #78077.
5451         
5452 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5453
5454         * ThemeWin32Classic.cs: 
5455         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
5456         is true. Handle that check box too.
5457
5458 2006-09-07  Chris Toshok  <toshok@ximian.com>
5459
5460         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
5461         79244.
5462
5463 2006-09-07  Chris Toshok  <toshok@ximian.com>
5464
5465         * Control.cs: in set_BackColor only do the work if
5466         background_color != value.
5467
5468         * XplatUIX11.cs: move the clearing of invalid areas (both client
5469         and nc) to the same block of code where we set (nc_)expose_pending
5470         to false.  That is, move it from PaintEventEnd to PaintEventStart,
5471         so things that cause invalidates from within OnPaint will trigger
5472         another call to OnPaint.  Fixes bug #79262.
5473
5474 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
5475
5476         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
5477         * FileDialog.cs: Fix typo
5478
5479 2006-09-07  Jackson Harper  <jackson@ximian.com>
5480
5481         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
5482         for tab pages if they have any.
5483
5484 2006-09-06  Mike Kestner  <mkestner@novell.com>
5485
5486         * Splitter.cs: use the "current" rect when finishing drag handle
5487         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
5488
5489 2006-09-06  Mike Kestner  <mkestner@novell.com>
5490
5491         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
5492         support offset splitters. [Fixes #79298]
5493
5494 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
5495
5496         * Mime.cs: Fixed a bug that could override the global mime type
5497           result.
5498
5499 2006-09-05  Jackson Harper  <jackson@ximian.com>
5500
5501         * TabControl.cs: Better calculation method for setting the slider
5502         pos. Prevents crashes on really wide tabs.
5503         - Draw Image on tab pages if an image list is used.
5504
5505 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5506
5507         * MonthCalendar.cs: When Font changes, the Size should be
5508         updated to fit the new font's space requirements.
5509
5510 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
5511
5512         * ListBox.cs: If the items are cleared with Items.Clear set
5513           top_index to 0.
5514
5515 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5516
5517         * MonthCalendar.cs: Handle arrow keys as input keys. Also
5518         fire DateChanged event instead of DateSelected event when
5519         the date was changed by keyboard interaction.
5520
5521 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5522
5523         * DateTimePicker.cs: Handle DateChanged for the associated
5524         month_calendar control, and set month_calendar.Font from 
5525         OnFontChanged method, as well as resize the height of the
5526         control when needed. Make PreferredHeight proportional.
5527
5528 2006-09-01  Chris Toshok  <toshok@ximian.com>
5529
5530         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
5531         properties.
5532
5533         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
5534
5535 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
5536
5537         * FileDialog.cs: Set ClientSize instead of window size, to allow space
5538           for decorations (Fixes #79219)
5539
5540 2006-09-01  Mike Kestner  <mkestner@novell.com>
5541
5542         * ComboBox.cs: first stab at sorting plus some selection handling
5543         fixes to bring us more in line with MS behavior.  Also switches back
5544         to index based selection.  Alternative patches for index-based 
5545         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
5546         and latency@gmx.de on bug 78848.  I assume they were similar to this
5547         code I've had simmering in my tree forever.
5548         [Fixes #78848]
5549
5550 2006-09-01  Chris Toshok  <toshok@ximian.com>
5551
5552         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
5553         when setting list position guard against ending up with a -1 index
5554         (the other part of the fix for #78812).  Should probably make sure
5555         we don't need the analogous fix in the ItemDeleted case.
5556
5557         * DataGrid.cs:
5558         - in SetDataSource, work around the fact that the way
5559         OnBindingContextChanged is invoked will cause us to re-enter this
5560         method.  I'll remove the hack once I investigate
5561         OnBindingContextChanged.
5562
5563         - fix the logic in set_DataSource and set_DataMember (basically
5564         what to do if the other of the two is null.)
5565         
5566         - in OnListManagerItemChanged, we need to take into account the
5567         edit row when deciding whether or not to call RecreateDataGridRows
5568         (part of the fix for #78812).
5569
5570 2006-09-01  Jackson Harper  <jackson@ximian.com>
5571
5572         * Splitter.cs: Don't do anything if there is no control to affect
5573         (prevents us from crashing in weird tet cases).
5574         * TreeView.cs: Bounding box for the mouse movement reverting
5575         focus/selection back to previously selected node.  This matches
5576         MS, and makes the tree a lot more useable.
5577         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
5578         use clipping so they are not drawn.  This fixes when the control
5579         is set to have a transparent background, or if it was over an
5580         image.
5581
5582 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
5583
5584         * MimeIcon.cs: Improved handling for reading default icons when
5585           using gnome (2.16 made it necessary). Check and read svg icons
5586           first, then 48x48 and then 32x32 icons.
5587
5588 2006-08-31  Chris Toshok  <toshok@ximian.com>
5589
5590         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
5591         visible.
5592
5593         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
5594         ProcessKeyPreview.  Fixes part of #77806.
5595
5596         * DataGrid.cs: big patch.
5597
5598         - revert the queueing up of DataSource/DataMember if inside
5599         BeginInit/EndInit calls.  That's not the way the datagrid achieves
5600         its delayed databinding.  Instead, call SetDataSource in
5601         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
5602         #78811.
5603
5604         - Also, it wasn't mentioned in #78811, but the test case exhibits
5605         behavior that was lacking in our datagrid implementation - Columns
5606         that have mapping names that don't exist in the datasource's
5607         properties aren't shown.  Yuck.  To fix this I added the bound
5608         field to the column style, and basically any calculation to figure
5609         out anything about columns uses a loop to find the bound columns.
5610         still need to investigate if I can cache an array of the bound
5611         columns or if the indices must be the same.
5612
5613         - When setting CurrentCell, we no longer abort if the cell being
5614         edited was in the add row.  This fixes the other part of #77806.
5615
5616         - The new code also fixes #78807.
5617         
5618         * ThemeWin32Classic.cs: perpetrate the same disgusting
5619         column.bound field hack, and only render bound fields.
5620
5621 2006-08-31  Chris Toshok  <toshok@ximian.com>
5622
5623         * DataGridColumnStyle.cs: add bound field.  this field is true if
5624         the datasource has a property corresponding to the mapping name.
5625
5626         * DataGridTableStyle.cs: set the bound field on the column styles
5627         depending on whether or not we have a column for that property.
5628
5629 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
5630
5631         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
5632           splitter control (fixes #79228)
5633
5634 2006-08-31  Chris Toshok  <toshok@ximian.com>
5635
5636         * DataGridColumnStyle.cs: we need to delay the assignment of
5637         property descriptor until the last possible moment due to the lazy
5638         databinding stuff in the datagrid.  Also, fix the exceptions
5639         thrown by CheckValidDataSource to match MS.
5640
5641 2006-08-31  Jackson Harper  <jackson@ximian.com>
5642
5643         * Form.cs: When activated select the active control, if there is
5644         no active control, we select the first control.
5645         * XplatUIX11.cs: If there is no focus control when we get a
5646         FocusIn event, find the toplevel form and activate it.  This
5647         occurs when you popup a window, it becomes the focus window, then
5648         you close that window, giving focus back to the main window.
5649
5650 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5651
5652         * MonthCalendar.cs: 
5653         * ThemeWin32Classic.cs: Cache Font in bold style, as well
5654         as StringFormat with Center alignments in MonthCalendar,
5655         instead of creating new ones when drawing the control. 
5656         Also, draw the month name in bold style.
5657
5658 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
5659
5660         * Control.cs:
5661           - PerformLayout(): It would seem MS performs the fill even if the 
5662             control is not visible (part of #79218 fix)
5663           - ResetBackColor(): Use the setter to reset the color, to allow
5664             overriders to catch the change.
5665         * Form.cs:
5666           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
5667           - CreateHandle(): dito (part of $79218 fix)
5668           - Don't set an icon if we have a dialog
5669         * ScrollableControl.cs:
5670           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
5671           - ScrollIntoView(): No need to scroll if control is already visible
5672             (resolves fixme and fixes #79218)
5673
5674 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5675
5676         * MonthCalendar.cs: Change proportions in SingleMonthSize
5677         to match the aspect of the original control.
5678
5679 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
5680
5681         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
5682           get updated when they get maximized.
5683
5684 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
5685
5686         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
5687
5688 2006-08-29  Chris Toshok  <toshok@ximian.com>
5689
5690         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
5691
5692 2006-08-29  Jackson Harper  <jackson@ximian.com>
5693
5694         * TreeView.cs: Need to track selected node and highlighted node,
5695         they aren't always the same thing, when the mouse is down on a
5696         node it is hilighted, but not selected yet.
5697         - Do the HideSelection stuff right
5698         - Need to focus on rbutton mouse down. And redraw selection when
5699         right click is mouse upped.
5700
5701 2006-08-29  Mike Kestner  <mkestner@novell.com>
5702
5703         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
5704         when SubItems.Count < Columns.Count.  [Fixes #79167]
5705
5706 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
5707
5708         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
5709
5710 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
5711
5712         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
5713           from X. Only send based on ConfigureNotify if we don't have the
5714           correct location in hwnd (if the window manager moved us)
5715
5716 2006-08-28  Mike Kestner  <mkestner@novell.com>
5717
5718         * ListView.cs: remove a TODO. 
5719         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
5720         [Fixes ListView part of #79166]
5721
5722 2006-08-28  Mike Kestner  <mkestner@novell.com>
5723
5724         * ListView.cs: move wheel handler to parent since it is focused
5725         instead of the item_control now.  [Fixes #79177]
5726
5727 2006-08-28  Mike Kestner  <mkestner@novell.com>
5728
5729         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
5730         when the control is focused. [Fixes #79171]
5731
5732 2006-08-28  Mike Kestner  <mkestner@novell.com>
5733
5734         * ListView.cs: size the item and header controls for empty and
5735         unscrollable views.
5736         * ThemeWin32Classic.cs: draw disabled backgrounds.
5737         [Fixes #79187]
5738
5739 2006-08-28  Chris Toshok  <toshok@ximian.com>
5740
5741         * Form.cs: remove unused "active_form" static field.
5742
5743         * Hwnd.cs: lock around accesses to static windows collection.
5744
5745         * Application.cs: lock threads in Exit ().
5746
5747 2006-08-28  Chris Toshok  <toshok@ximian.com>
5748
5749         * NativeWindow.cs: lock around accesses to window_collection.
5750         
5751 2006-08-28  Chris Toshok  <toshok@ximian.com>
5752
5753         * Control.cs: err, fix this the right way, by locking on controls
5754         when using it.  not by making it synchronized.
5755
5756 2006-08-28  Chris Toshok  <toshok@ximian.com>
5757
5758         * Control.cs: make the static "controls" field synchronized, as it
5759         gets updated from multiple threads.
5760
5761 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5762
5763         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
5764           Prevent other threads from exiting when calling thread sets quit state.
5765         * XEventQueue.cs: Added PostQuitState property
5766
5767 2006-08-27  Chris Toshok  <toshok@ximian.com>
5768
5769         * AsyncMethodData.cs: add a slot for the window handle.
5770
5771         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
5772         window (the destination control's window, not the foster window).
5773
5774         * Control.cs (BeginInvokeInternal): store the window's handle in
5775         the AsyncMethodData.
5776         
5777
5778 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
5779
5780         * XplatUIX11.cs:
5781           - PostQuitMessage: Removed resetting S.D display handle, we might have
5782             another loop started after calling PostQuitMessage (Fixes #79119)
5783           - Created destructor to reset S.D handle
5784
5785 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
5786
5787         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
5788
5789 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5790
5791         * TextControl.cs (Insert): Update the caret position even if we don't
5792           have a handle yet, just don't call the driver in that case.
5793         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
5794           to the end of the new selection text (Fixes #79184)
5795
5796 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5797
5798         * Form.cs (Activate): Only activate if the handle is created)
5799         * Control.c:
5800           - Mark window as invisible when it's disposed
5801           - Check if window handle is created when setting window visible, 
5802             instead of relying just on the is_created variable
5803           - Check if object is disposed when creating the control (Fixes #79155)
5804
5805 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5806
5807         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
5808           when allowing layout again. Otherwise we re-generate the anchoring 
5809           distance to the border again and actually alter what the user wanted
5810           This is ugly, it'd be better if we used DisplayRectangle instead of
5811           ClientRectangle for Control.UpdateDistances, but that causes us to
5812           have other problems (initial anchoring positons would be wrong)
5813           (Fixes #78835)
5814
5815 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5816
5817         * Control.cs:
5818           - The size and location setters shouldn't go directly to 
5819             SetBoundsCore, but to SetBounds, which triggers layout on the
5820             parent, then calls SetBoundsCore. (Related to fix for #78835)
5821           - SetBounds: Moved actual location update code into this function
5822             from SetBoundsCore, to match MS. Added call to PerformLayout if
5823             we have a parent (to trigger resizing of anchored parents if the 
5824             child size has changed (see testcase for #78835) 
5825         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
5826           new control code
5827         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
5828
5829 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5830
5831         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
5832           System.Drawing when a toplevel window gets closed; there might
5833           be other toplevel windows belonging to the same app (Fixes #78052)
5834
5835 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
5836
5837         * FileDialog.cs: After reading FileDialog settings from mwf_config
5838           use Desktop prefix only if a real folder doesn't exist anymore.
5839         * FontDialog.cs: Added char sets.
5840           It is now possible to select the font, size or style with the
5841           textboxes.
5842
5843 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
5844
5845         * PrintPreviewDialog.cs: Use assembly name constants.
5846
5847 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5848
5849         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
5850           scrollbar from whacking it's buttons)
5851
5852 2006-08-24  Chris Toshok  <toshok@ximian.com>
5853
5854         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
5855         in this patch (aggregating setting Left/Top/Width/Height to
5856         setting Bounds on the scrollbars), but the crux of the fix is in
5857         Recalculate, where we scroll by the remaining scroll_position if
5858         we're hiding a scrollbar.  The 2*$5 reward in the comment is
5859         serious.
5860
5861 2006-08-24  Jackson Harper  <jackson@ximian.com>
5862
5863         * MdiClient.cs:
5864         * MdiWindowManager.cs: If the form is made a non-mdi window we
5865         need to remove the form closed event so that closing forms works
5866         correctly.
5867
5868 2006-08-24  Jackson Harper  <jackson@ximian.com>
5869
5870         * Control.cs: Make IsRecreating internal so that the driver can
5871         check it
5872         - Temporarily remove the Hide when controls are removed, its
5873         making a whole bunch of things not work because visibility isn't
5874         getting reset elsewhere correctly
5875         * Form.cs: Need to do a full handle recreation when the mdi parent
5876         is set.
5877         * XplatUIX11.cs: If we are recreating handles don't dispose the
5878         HWNDs.  What was happening is the handles were being recreated in
5879         SendWMDestroyMessages, but then flow continued on in that method
5880         and destroyed the new handles.
5881
5882 2006-08-23  Jackson Harper  <jackson@ximian.com>
5883
5884         * Form.cs: MdiClient is always at the back of the bus
5885         * Control.cs: When the order of items in the collection is changed
5886         we need to reset the all_controls array
5887         - do the same sorta setup thats done when adding a control when a
5888         control is set on the collection.
5889
5890 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
5891
5892         * TextBoxBase.cs (get_Text): Return an empty array if our document
5893           is empty (fixes #79052)
5894
5895 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5896
5897         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
5898           on WM_SYSCHAR messages (fixes #79053)
5899
5900 2006-08-23  Chris Toshok  <toshok@ximian.com>
5901
5902         * DataGrid.cs: fix flickering when scrolling vertically.
5903
5904 2006-08-23  Chris Toshok  <toshok@ximian.com>
5905
5906         * DataGrid.cs (EndEdit): only invalidate the row header when we
5907         need to.
5908
5909 2006-08-23  Chris Toshok  <toshok@ximian.com>
5910
5911         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
5912         methods.  fixes the flicker when scrolling around.
5913
5914 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5915
5916         * FileDialog.cs: Making sure the control is created before we get a 
5917           chance to use it with BeginInvoke (Fixes #79096)
5918
5919 2006-08-23  Chris Toshok  <toshok@ximian.com>
5920
5921         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
5922         width to use when painting the rows.
5923
5924 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
5925
5926         * TextBoxBase.cs:
5927           - Throw ArgumentException if a negative value is passed to SelectionLength
5928           - Update the selection end if start is moved. end needs to be always
5929             after start. (Fixes #79095)
5930           - Track selection length; MS keeps the selection length even if start
5931             is changed; reset on all other operations affection selection
5932
5933 2006-08-22  Jackson Harper  <jackson@ximian.com>
5934
5935         * TreeView.cs: Make sure both scrollbars get displayed and sized
5936         correctly when the other bar is visible.
5937         - Use the original clip rectangle for checking if the area between
5938         the two scrollbars is visible, not the viewport adjusted clipping
5939         rectangle.
5940
5941 2006-08-22  Jackson Harper  <jackson@ximian.com>
5942
5943         * Binding.cs: We don't use IsBinding because it requires the
5944         control to be created, which really shouldn't be necessary just to
5945         set a property on the control.
5946
5947 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5948
5949         * ComboBox.cs: Some CB.ObjectCollection methods must throw
5950         ArgumentNullReferenceException when the argument is null.
5951
5952 2006-08-21  Jackson Harper  <jackson@ximian.com>
5953
5954         * Timer.cs: Track the thread that the timer is started in (NOT
5955         CREATED), this way messages for it will only be triggered on its
5956         queue.
5957         * XEventQueue.cs: Track the timers here, this makes timers per
5958         thread, like MS.
5959         * XplatUIX11.cs: The timers are moved to the XEventQueue.
5960
5961 2006-08-19  Chris Toshok  <toshok@ximian.com>
5962
5963         * XplatUIX11.cs: after further communication with pdb, we get the
5964         best of both worlds.  SetZOrder working for un-Mapped windows, and
5965         no X errors for un-mapped windows.
5966
5967 2006-08-19  Chris Toshok  <toshok@ximian.com>
5968
5969         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
5970         as it was causing pdn toolbars to not have the correct stacking.
5971
5972 2006-08-18  Mike Kestner  <mkestner@novell.com> 
5973
5974         * ListView.cs : guard against negative ClientArea.Width in scrollbar
5975         calculation.  Not sure why control should ever be setting a negative
5976         width though.  Fixes #78931.
5977
5978 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5979
5980         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
5981         null items in ObjectCollection class.
5982         * ListBox.cs.: Likewise.
5983
5984 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
5985
5986         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
5987           as the base method in ThemeWin32Classic should work fine.
5988           Fixed bug #78607.
5989
5990 2006-08-18  Jackson Harper  <jackson@ximian.com>
5991
5992         * Binding.cs: When validating if the value entered doesn't convert
5993         properly reset to the old value.
5994         * RadioButton.cs: Don't fire click when we get focus.
5995
5996 2006-08-18  Jackson Harper  <jackson@ximian.com>
5997
5998         * FileDialog.cs: Paint the selection on the directory combobox the
5999         same way as on MS. 
6000
6001 2006-08-17  Jackson Harper  <jackson@ximian.com>
6002
6003         * ErrorProvider.cs: Don't allow the error control to be selected.
6004         * Control.cs: Don't send the SetFocus messages, the control
6005         activation will do this, and if we do it blindly here validation
6006         does not work.
6007
6008 2006-08-17  Jackson Harper  <jackson@ximian.com>
6009
6010         * Control.cs:
6011         * ContainerControl.cs: Make validation events fire in the correct
6012         order.  TODO: For some reason the first validation event is not
6013         getting fired.
6014
6015 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6016
6017         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
6018
6019 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6020
6021         * ComboBox.cs : implement scroll wheel support for popped-down
6022         state. Fixes #78945. 
6023
6024 2006-08-17  Jackson Harper  <jackson@ximian.com>
6025
6026         * TreeView.cs: Specify treeview actions (old patch that didn't get
6027         committed for some reason).
6028         - Don't let the mouse wheel scroll us too far.  Just want to make
6029         the bottom node visible, not scroll it all the ways to the top.
6030
6031 2006-08-17  Jackson Harper  <jackson@ximian.com>
6032
6033         * XplatUIX11.cs: Mouse wheel events go to the focused window.
6034
6035 2006-08-17  Mike Kestner  <mkestner@novell.com> 
6036
6037         * ComboBox.cs : don't do mouseover selection in simple mode.
6038
6039 2006-08-16  Jackson Harper  <jackson@ximian.com>
6040
6041         * Form.cs: Fire the closing events for all the mdi child windows
6042         when a window is closed.  If the cancel args are set to true, the
6043         main window still gets the event fired, but it doesn't not close.
6044         * MdiWindowManager.cs: Do this closing cleanup in a Closed
6045         handler, instead of when the button is clicked, so cancelling the
6046         close works correctly.
6047         * ComboBox.cs: Send the mouse down to the scrollbar.
6048
6049 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6050
6051         * ListBox.cs: When passing 'null' to SelectedItem,
6052         set SelectedIndex to -1, to unselect items. This is the
6053         observed behaviour in .Net.
6054
6055 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
6056
6057         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
6058           MS flags saying there won't be any. (fixes #78800)
6059         * Control.cs (HandleClick): Made virtual
6060
6061 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
6062
6063         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
6064           cultures. Fixed bug #78399.
6065
6066 2006-08-16  Jackson Harper  <jackson@ximian.com>
6067
6068         * Form.cs: Use the MdiClients MdiChildren property to access
6069         MdiChildren instead of creating the array from the child controls.
6070         * MdiClient.cs: Maintain a separate array of the mdi children, so
6071         that insertion order is maintained when the Z-order is changed.
6072
6073 2006-08-16  Mike Kestner  <mkestner@novell.com> 
6074
6075         * ListView.cs : add an ItemComparer and default to it for sorting.
6076         Fixes #79076, but sorting needs a complete overhaul to be compat with
6077         MS.
6078
6079 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6080
6081         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
6082
6083 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6084
6085         * Hwnd.cs (Mapped): Properly traverse the tree
6086
6087 2006-08-15  Chris Toshok  <toshok@ximian.com>
6088
6089         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
6090         pass manager.Current.GetType() to ParseData.  It has to be the
6091         property type.  So, hold off doing the ParseData until we're in
6092         SetPropertyValue where we know the type.  This fixes the crash in
6093         #78821 but the textbox is still empty.
6094
6095 2006-08-15  Chris Toshok  <toshok@ximian.com>
6096
6097         * DataGrid.cs:
6098         - when we're scrolling, only call Edit() again if the
6099         current cell is still unobscured. Fixes bug #78927.
6100         - when handling mousedown on a cell, ensure the cell is visible
6101         before calling Edit.
6102         - remove the properties from DataGridRow, and remove the
6103         DataGridParentRow class altogether.
6104         
6105
6106 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6107
6108         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
6109           fire OnTextChanged by ourselves. There's no point calling base,
6110           we don't set the base value anywhere else. Fixes #78773.
6111
6112 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6113
6114         * ListBox.cs: Call CollectionChanged when modifying
6115         an item from Items indexer, to update the actual items
6116         in the list box.
6117
6118 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6119
6120         * PrintDialog.cs: Small fixes for focus and a pair of checks,
6121         to match .Net behaviour.
6122
6123 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6124
6125         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
6126
6127 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
6128
6129         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
6130
6131 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
6132
6133         * MessageBox.cs: Prevent potential NRE exception.
6134         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
6135
6136 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6137
6138         * MessageBox.cs: Calculate the owner of a messagebox, also make
6139           it topmost. Fixes #78753
6140
6141 2006-08-14  Chris Toshok  <toshok@ximian.com>
6142
6143         * XplatUIX11.cs: A couple of fixes so that metacity will let us
6144         programmatically move windows.  first, set the PPosition hint as
6145         well as the USPosition hint.  Second include some code from pdb
6146         that sets the window type to NORMAL when we set the transient for
6147         hint.  This is because, in the absence of a window type, metacity
6148         thinks any window with TransientFor set is a dialog, and refuses
6149         to let us move it programmatically.  fascists.
6150
6151 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
6152
6153         * XplatUIX11.cs: When setting normal hints, take into consideration
6154           an different hints previously set so we don't delete them (fixes #78866)
6155
6156 2006-08-12  Chris Toshok  <toshok@ximian.com>
6157
6158         * ToolBarButton.cs: make Layout return a boolean, if something to
6159         do with the button's layout changed.
6160
6161         * ToolBar.cs:
6162         - add another parameter to Redraw, @force, which all existing
6163           calls set to true.
6164         - make the Layout function return a boolean which is true if the
6165           layout has actually changed.  Redraw now uses this (and @force)
6166           to determine when to invalidate.  At present the only place
6167           where @force can be false is the call from OnResize, when
6168           background_image == null.  So, resizing a toolbar when the
6169           layout doesn't change results in no drawing.
6170
6171 2006-08-12  Chris Toshok  <toshok@ximian.com>
6172
6173         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
6174         the VScrollBar and HScrollbar reversed.  oops.
6175
6176         * DataGrid.cs: fix the logic that assigns sizes to the implicit
6177         scrollbars.  we were assigning them twice (once in
6178         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
6179         therefore causing two scrollbar resizes (and redraws?) to happen
6180         per grid resize.
6181
6182 2006-08-12  Chris Toshok  <toshok@ximian.com>
6183
6184         * ToolBarButton.cs: redraw the entire button if the theme tells us
6185         to.
6186
6187         * Theme.cs: add ToolBarInvalidateEntireButton.
6188
6189         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
6190         buttons, just the border.
6191
6192         * ThemeNice.cs: redraw the entire toolbar button since we need to
6193         draw the highlight image.
6194
6195         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
6196         we need to redraw the entire button (not just the border).
6197
6198 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6199
6200         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
6201           for vertical bars. Fixes the mismatches shown by #78513
6202
6203 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
6204
6205         * FileDialog.cs: If a saved/remembered path doesn't exist
6206           anymore, fall back to "Desktop".
6207
6208 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
6209
6210         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
6211           parent. It's apparently legal to not have one
6212         * XplatUIX11.cs:
6213           - SetZOrder: Don't try to set Z-Order on an unmapped window
6214           - CreateWindow: 0,0 are legal coordinates for a window. don't move
6215             it unless the coordinates are negative
6216
6217 2006-08-10  Mike Kestner  <mkestner@novell.com>
6218
6219         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
6220         when setting to null per msdn docs.  Fixes #78854.
6221
6222 2006-08-10  Chris Toshok  <toshok@ximian.com>
6223
6224         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
6225         flickering by setting a clip rectangle on the Graphics when we
6226         need to redraw just a particular menuitem.  Also, rename "OnClick"
6227         to "OnMouseDown" to reflect what it actually is.
6228         
6229         * Form.cs: track the OnMouseDown change.
6230
6231 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
6232
6233         * CommonDialog.cs: Properly inherit the CreateParams from the form
6234           and only change what we need. Fixes #78865
6235
6236 2006-08-10  Chris Toshok  <toshok@ximian.com>
6237
6238         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
6239         flickering in flat mode (and most of the flickering in general) by
6240         only invalidating the button border (and not the entire rectangle)
6241         when the state changes.  A couple of cases still flicker:
6242         ToggleButtons, and the dropdown arrow case when the user mouse
6243         ups.
6244
6245 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
6246
6247         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
6248           for german keyboards. Numlock state shouldn't affect the behaviour
6249           of the Del key. Fixes bug #78291.
6250
6251 2006-08-10  Chris Toshok  <toshok@ximian.com>
6252
6253         * ListControl.cs: remove the items.Clear line from BindDataItems,
6254         as this is the first thing done by both subclasses in their
6255         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
6256         passed -1, refresh the list.  This gets databinding working when
6257         the datasource is set on the list before the datasource is
6258         populated (as in wf-apps/ReportBuilder.)
6259
6260         * ComboBox.cs: remove the argument to BindDataItems.  This call
6261         should really go away, and be initiated by the ListControl code.
6262
6263         * ListBox.cs: same.
6264
6265 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6266
6267         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
6268           if no data is in the document when the control is displayed
6269
6270 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
6271
6272         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
6273           yes (fixes #78806)
6274         * TextControl.cs: 
6275           - PositionCaret: Allow positioning of caret but don't call methods 
6276             requiring a handle if the window isn't created yet
6277           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
6278           - owner_HandleCreated: Don't position the caret, just update it's 
6279             location. User might have already set a different position
6280
6281 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
6282
6283         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
6284           windows. Screws up the returned coordinates for child windows. 
6285           Fixes #78825. I'm hoping this doesn't break something, since the
6286           code was explicitly put in 8 months ago, but no bug was attached.
6287           Menus still seem to work properly.
6288
6289 2006-08-08  Chris Toshok  <toshok@ximian.com>
6290
6291         * DataGrid.cs: make BeginInit/EndInit actually do what they're
6292         supposed to do - delay data binding until the EndInit call.  Also,
6293         make the table style collection's CollectionChangeAction.Refresh
6294         work properly.
6295
6296         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
6297         (with action = Refresh) when a consituent table's MappingName is
6298         changed.
6299
6300 2006-08-08  Chris Toshok  <toshok@ximian.com>
6301
6302         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
6303         Invalidate, since changing the text can change the size of the all
6304         toolbar buttons.
6305
6306 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6307
6308         * Form.cs (AddOwnedForm): Still need to add the form to our listif
6309           we don't have it yet
6310
6311 2006-08-08  Chris Toshok  <toshok@ximian.com>
6312
6313         * PrintControllerWithStatusDialog.cs: don't .Close() the status
6314         dialog, as this causes X errors later on, since we actually
6315         destroy the window.  Instead, .Hide() it.
6316
6317 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
6318
6319         * ComboBox.cs: Added focus reflection for popup window
6320         * XplatUIX11.cs: 
6321           - Removed transient setting for non-app windows for now, not sure it
6322             was needed
6323           - Fixed logic checking if we have captions when deciding 
6324             override_redirect, WS_CAPTION is two bits and a 0 check was not
6325             sufficient
6326           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
6327             complicated
6328         * Form.cs: 
6329           - AddOwnedForm: Don't just add the form to the list, call the property
6330             to ensure the driver is informed about the ownership as well
6331           - CreateHandle: Set the TopMost status in the driver if we have an owner
6332         * XplatUI.cs: Fixed debug statement
6333
6334 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
6335         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
6336           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
6337           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
6338           TrackBarRenderer.cs: Make constructor private.
6339         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
6340         * ProfessionalColorTable.cs: Make properties virtual.
6341
6342 2006-08-06  Duncan Mak  <duncan@novell.com>
6343
6344         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
6345         is not changing.
6346
6347 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6348         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
6349           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
6350           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
6351           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
6352           Initial import of new 2.0 classes.
6353
6354 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6355         * Application.cs: Add 2.0 VisualStyles properties.
6356
6357 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
6358         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
6359           XplatUIX11.cs: Create property to allow access to existing private
6360           variable "themes_enabled"
6361
6362 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6363
6364         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
6365         file size, as otherwise our class libraries fail using windows. Fixes
6366         bug #78759.
6367
6368 2006-08-04  Jackson Harper  <jackson@ximian.com>
6369
6370         * Form.cs:
6371         * XplatUIX11.cs: Move the toolwindow window manager creation into
6372         the X11 driver, this way on win32 we can let windows create/handle
6373         the toolwindows.
6374
6375 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6376
6377         * PrintDialog.cs: Remove some redundant checks, add some others,
6378         clean some code, and move the focus to the text boxes when the
6379         values are incorrect.
6380
6381 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
6382
6383         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
6384
6385 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
6386
6387         * NumericUpDown.cs: Setting the Minimum and Maximum is now
6388           handled correctly. Fixes bug #79001.
6389
6390 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6391
6392         * PrintDialog.cs: The "Copies" numeric up down must have
6393         set the Minimum property to 1; only if the value is bigger
6394         than 1, activate "Collate" check box. This is the behaviour of .Net.
6395         Also modify the Document elements only if it is not null.
6396
6397 2006-08-03  Jackson Harper  <jackson@ximian.com>
6398
6399         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
6400         length. (We have a larger array then actual node count).
6401                 
6402 2006-08-03  Jackson Harper  <jackson@ximian.com>
6403
6404         * ComboBox.cs: Don't show selection by default.
6405         - The SelectAll isn't needed here, since the focus code should do
6406         that
6407         - DDL style lists to manual selection drawing, so when they
6408         get/lose focus they have to invalidate.
6409
6410 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
6411
6412         * TextBoxBase.cs: Don't always show all selections by default.
6413
6414 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
6415         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
6416           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
6417           Fixed various typos.
6418
6419 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
6420
6421         * Control.cs: Removing the controls in a ControlCollection with
6422           Clear now hides the controls as expected. Fixes bug #78804. 
6423
6424 2006-08-03  Jackson Harper  <jackson@ximian.com>
6425
6426         * Control.cs: Revert previous focus patch, it breaks reflector.
6427
6428 2006-08-03  Jackson Harper  <jackson@ximian.com>
6429
6430         * ComboBox.cs: Cleanup selection and focus with the combobox.
6431         This also eliminates some duplicated keyboard code, since now
6432         everything is handled by the main class.
6433         - Make list selection work on mouse up instead of down, to match
6434         MS.
6435
6436 2006-08-02  Jackson Harper  <jackson@ximian.com>
6437
6438         * Control.cs: Setting focus needs to go through the whole
6439         selection mechanism.
6440
6441 2006-08-02  Chris Toshok  <toshok@ximian.com>
6442
6443         * PrintPreviewDialog.cs: change MinimumSize to use
6444         base.MinimumSize so it works.
6445
6446 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
6447
6448         * TextControl.cs:
6449           - UpdateCaret: Added sanity check in case caret isn't defined yet
6450           - Line.Delete: Now updating selection and caret markers if we're
6451             transfering a node (Properly fixes #78323)
6452           - SetSelectionEnd: Added sanity check
6453         * TextBoxBase.cs: Removed broken attempt to fix #78323
6454
6455 2006-08-01  Chris Toshok  <toshok@ximian.com>
6456
6457         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
6458         Close() call is handled in Form, not here.
6459
6460 2006-08-01  Chris Toshok  <toshok@ximian.com>
6461
6462         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
6463         layout/rendering.
6464
6465         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
6466         for sizes < 100% zoom.  The code now aggressively attempts to keep
6467         from calling document.Print (), and tries not to use the scaling
6468         g.DrawImage whenever possible (it still does if you scale to >
6469         100%, since usually that involves huge images).
6470
6471         * PrintPreviewControl.cs: hook up the close button.
6472
6473 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
6474         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
6475           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
6476           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
6477           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
6478           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
6479           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
6480           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
6481           Removed [Serializable] for 2.0 Event Handlers.
6482
6483 2006-07-31  Jackson Harper  <jackson@ximian.com>
6484
6485         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
6486         * TextControl.cs: Uncomment out the body of this method.
6487
6488 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
6489
6490         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
6491           standard cursors.
6492
6493 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6494
6495         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
6496           that embed TextBox and need selections visible even if textbox is not
6497           focused to enforce that behaviour.
6498         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
6499           selection drawing
6500
6501 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6502
6503         * TextControl.cs:
6504           - Added new SetSelectionStart/SetSelectionEnd overloads
6505           - Fixed viewport width assignment to be accurate
6506           - Adjusted alignment line shift calculations to allow cursor on right
6507             aligned lines to be always visible at the right border (like MS)
6508         * TextBoxBase.cs:
6509           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
6510           - TextBoxBase_SizeChanged: recalculating canvas on size changes
6511           - CalculateScrollBars: Use ViewPort size instead of window size, to
6512             properly consider space occupied by the border and scrollbars 
6513             (Fixes #78661)
6514           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
6515             calculations; no longer leaves artifacts
6516           - CaretMoved: Adjusted window scrolling to match MS and fixed several
6517             calculation bugs (Still missing right/center align calculations)
6518
6519 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
6520
6521         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
6522           use of both scroll rect and clip rect, as they do the same.
6523
6524 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
6525
6526         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
6527           in the event handler (fixes #78912)
6528
6529 2006-07-31  Chris Toshok  <toshok@ximian.com>
6530
6531         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
6532         grid.ListManager.Count, since grid.ListManager might be null.
6533         This of course begs the question "why are we drawing rows for a
6534         grid with no list manager (and therefor no rows)?"  Fixes the
6535         crash in bug #78929.
6536
6537 2006-07-31  Chris Toshok  <toshok@ximian.com>
6538
6539         * RelatedPropertyManager.cs: Don't always chain up to the parent
6540         ctor.  instead, call SetDataSource if the parent's position is !=
6541         -1.  Fixes the crash in #78822.
6542
6543 2006-07-31  Chris Toshok  <toshok@ximian.com>
6544
6545         * DataGrid.cs (get_ListManager): use field instead of property
6546         accessors for datasource and datamember.
6547         (RowsCount): make internal again.
6548         (OnMouseDown): end edits before resizing columns/rows.
6549         (OnMouseUp): restart edits after resizing columns/rows.
6550
6551 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
6552
6553         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
6554           This fixes the situation where the last set cursor is displayed
6555           whenever the mouse is over scrollbars.
6556
6557 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6558
6559         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
6560         Document properties, as well as initial values.
6561
6562 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
6563
6564         * XplatUIWin32.cs (SetBorderStyle): Setting both border
6565           and ClientEdge results in a 3-pixel border, which is
6566           wrong.
6567
6568 2006-07-28  Jackson Harper  <jackson@ximian.com>
6569
6570         * TreeNodeCollection.cs: Fix the clear method.
6571         - Fix the Shrink also
6572
6573 2006-07-27  Jackson Harper  <jackson@ximian.com>
6574
6575         * TreeView.cs: Make sure the visible order is computed when we
6576         attempt to size the scrollbars (for trees that mess with the
6577         scrolling when they shouldn't.
6578         - Make sure to give the scrollbars valid values.
6579
6580 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6581
6582         * XplatUIX11.cs: Move motion compression code to where it
6583           has less performance impact
6584
6585 2006-07-26  Jackson Harper  <jackson@ximian.com>
6586
6587         * UpDownBase.cs: When the control is selected make the child
6588         controls non selectable, so that a click on them won't do a
6589         focus/unfocus cycle.
6590         - Don't give focus to the text box when the spinner is selected.
6591         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
6592
6593 2006-07-26  Chris Toshok  <toshok@ximian.com>
6594
6595         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
6596         satisfied with this solution.  If the bitmaps are small, we should
6597         just cache them in the PrintPreviewDialog and draw them here.
6598         Also, the layout is broken for the 2-up and 3-up cases.
6599
6600         * Theme.cs: add PrintPReviewControlPaint.
6601
6602         * PrintPreviewDialog.cs: first pass implementation.
6603
6604         * PrintPreviewControl.cs: first pass implementation.  No
6605         scrollbars yet.
6606
6607         * PrintDialog.cs: only validate fields if that particular portion
6608         of the UI is enabled.  Also, set the document's controller to a
6609         PrintControllerWithStatusDialog wrapping the document's print
6610         controller.
6611
6612         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
6613         bring up a SaveFileDialog (i hope we don't want to match the
6614         behavior of the crappy windows file entry) and set the
6615         PrinterSettings.PrintFileName accordingly.
6616
6617 2006-07-26  Jackson Harper  <jackson@ximian.com>
6618
6619         * ContainerControl.cs: Add a field that disables auto selecting
6620         the next control in a container when the container is activated.
6621         * UpDownBase.cs: Don't select the text box when the up down is
6622         selected.
6623
6624 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
6625
6626         * XEventQueue.cs: Added methods for peeking (used for compression
6627           of successive events)
6628         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
6629           mouse move events (fixes #78732)
6630
6631 2006-07-25  Jackson Harper  <jackson@ximian.com>
6632
6633         * UpDownBase.cs: Use an internal class for the textbox so that we
6634         can control focus.  the updown control should always have focus,
6635         if either the text area or the buttons are clicked.
6636         - Send the key messages to the textbox, since it never actually
6637         has focus
6638         - Activate and decativate the textbox caret.
6639
6640 2006-07-24  Jackson Harper  <jackson@ximian.com>
6641
6642         * Control.cs: Use the directed select when selecting a control,
6643         this way the container controls override will get called and the
6644         whole ActiveControl chain will get triggered.  TODO: probably need
6645         to make sure this gets done everywhere instead of the old
6646         Select(Control).
6647         * ContainerControl.cs: Implement the directed Select method to
6648         find and activate the correct child control.    
6649         
6650 2006-07-22  Mike Kestner  <mkestner@novell.com>
6651
6652         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
6653         menu handling code so that clicks without a grab work too.
6654         [Fixes #78914]
6655
6656 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
6657
6658         * FileDialog.cs: Enable the BackButton when dirstack has one element.
6659           Added some small optimizations.
6660
6661 2006-07-21  Matt Hargett  <matt@use.net>
6662
6663         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
6664
6665 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
6666
6667         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
6668           tests pass and match MS in some strange border cases.
6669
6670 2006-07-21  Chris Toshok  <toshok@ximian.com>
6671
6672         * ThemeWin32Classic.cs: handle drawing of the relation links and
6673         parent row buttons.
6674
6675         * Theme.cs: change args to DataGridPaintParentRow.
6676
6677         * DataGrid.cs: Don't use controls for the relation links and
6678         parent buttons, so we have to handle all their interactions in
6679         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
6680         when we're navigating through child tables, so we can reinstate
6681         selection, expanded state, current cell, etc.
6682
6683 2006-07-20  Chris Toshok  <toshok@ximian.com>
6684
6685         * ToolBar.cs: When we redraw a button, for whatever reason,
6686         there's no reason to redraw the entire toolbar.  Also, don't call
6687         Control.Refresh from within Redraw, as it's much heavier than
6688         Invalidate (which is really what we want).
6689
6690 2006-07-20  Chris Toshok  <toshok@ximian.com>
6691
6692         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
6693         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
6694         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
6695         traces from within a debug IBindingList datasource
6696         (in mono/winforms/datagrid) for *days*, I've finally gotten things
6697         to work in a similar fashion.
6698
6699 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6700
6701         * ListBox.cs: Don't call Sort () when setting 
6702         the Sorted property to false (avoid an unnecessary sort).
6703
6704 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6705
6706         * ListControl.cs: DataSource should throw an ArgumentException
6707         instead of a normal exception when the argument is not of the 
6708         correct type.
6709
6710 2006-07-20  Mike Kestner  <mkestner@novell.com>
6711
6712         * Control.cs: add InternalPreProcessMessage to allow us to steal
6713         key events before MWF gets its paws on them.  Adapted from a
6714         suggestion by eno.
6715         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
6716         up/down/left/right navigation. Override the new internal control
6717         method to steal the events since they never make it to WndProc.
6718         * ToolBarButton.cs: don't worry about pushed when setting hilight
6719         since the drawing code prefers pushed to hilight. Invalidate on 
6720         Hilight changes. Fixes #78547 and #78525.
6721
6722 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6723
6724         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
6725           the canvas size. Fixes #78868
6726
6727 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
6728
6729         * Splitter.cs: Track requested split position until first layout
6730           is performed. Fixes #78871
6731
6732 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
6733
6734         * Application.cs: Removed code that forces 1.x for the version
6735           number if the version started with 0. Not sure why that code was
6736           there and I couldn't find any bugs that indicated we needed it.
6737           Fixes #78869
6738
6739 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
6740
6741         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
6742           ResetDefaults(), just write some output to the console until it's
6743           implemented. Fixes bug #78907 for now. Eliminated two warnings.
6744
6745 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
6746
6747         * PropertyGridView.cs: set StartPosition of drop down forms
6748         so they appear in correct initial spot.  Fixes #78190.
6749
6750 2006-07-19  Mike Kestner  <mkestner@novell.com>
6751
6752         * ThemeWin32Classic.cs: use parent background color when drawing
6753         flat toolbars.  Restructure the conditionals to make sure non-flat
6754         non-Divider toolbars are filled too.  Fixes #78837.
6755
6756 2006-07-19  Mike Kestner  <mkestner@novell.com>
6757
6758         * ListBox.cs: Sort on collection changes even if the handle
6759         isn't created yet.  Fixes #78813.
6760
6761 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6762
6763         * ListControl.cs: DisplayMember should never be null,
6764         and now we assign String.Empty when null is passed to it (this
6765         is the .Net way).
6766
6767 2006-07-17  Mike Kestner  <mkestner@novell.com>
6768
6769         * ListViewItem.cs: restructure Font and subitem Font handling 
6770         to hold a specific font and refer back to owner on null.
6771         Fixes #78761.
6772
6773 2006-07-17  Mike Kestner  <mkestner@novell.com>
6774
6775         * ToolBar.cs: bandaid for side-effect of previous patch which was
6776         discarding explicit heights for non-AutoSize toolbars.  Need to
6777         extend my format tester to deal with AutoSize=false. Fixes #78864.
6778
6779 2006-07-15  Jackson Harper  <jackson@ximian.com>
6780
6781         * LabelEditTextBox.cs:
6782         * TreeView.cs: Use a new LabelEdit class for node editing, this
6783         class automatically 'closes' itself when it gets the enter key or
6784         loses focus.
6785         - Use the client rectangle when setting the trees scrollbars, so
6786         border style is taken into account.
6787         
6788 2006-07-14  Jackson Harper  <jackson@ximian.com>
6789
6790         * TreeNode.cs:
6791         * TreeView.cs: Make the editing work similar to MSs, firing the
6792         events correctly and ending edits correctly.
6793
6794 2006-07-14  Mike Kestner  <mkestner@novell.com>
6795
6796         * ToolBarButton.cs:
6797         * ToolBar.cs: layout restructuring and redraw enhancements to support
6798         formatting changes gracefully, like setting TextAlign, ImageList, 
6799         ButtonSize, and Appearance.  Handles explicit button sizing quirks
6800         of the MS controls.  Things like flat toolbars ignoring button size
6801         but becoming constant sized at the largest button's size.  Normal
6802         toolbars with an image set cannot be shrunk smaller than the image,
6803         but text can be clipped/ignored.
6804         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
6805         is zero.  Seems like DrawString should be smart enough to not put
6806         anything on screen though. Also trim labels and ellipsize at the char
6807         boundary, not word.
6808         Fixes #78711 and #78483.
6809
6810 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6811
6812         * FolderBrowserDialog.cs: Disable "New Folder" button and
6813           "New Folder" contextmenu menuitem if a folder like "My Computer"
6814           is selected.
6815
6816 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6817
6818         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
6819         * FolderBrowserDialog.cs:
6820           - Use MWFConfig to store and read size and position settings
6821           - Added code to create a new folder (button or context menu).
6822             Use TreeView labeledit to change the name of the new folder.
6823
6824 2006-07-14  Jackson Harper  <jackson@ximian.com>
6825
6826         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
6827         when the tree is scrolled we end editing.
6828
6829 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
6830
6831         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
6832           Down arrows
6833
6834 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
6835
6836         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
6837         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
6838         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
6839         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
6840         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
6841         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
6842         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
6843         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
6844         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
6845         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
6846         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
6847         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
6848         ListViewItemSelectionChangedEventHandler.cs,
6849         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
6850         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
6851         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
6852         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
6853         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
6854         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
6855         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
6856         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
6857         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
6858         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
6859         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
6860         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
6861         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
6862         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
6863         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
6864         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
6865         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
6866         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
6867         WebBrowserNavigatingEventHandler.cs, 
6868         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
6869
6870 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
6871
6872         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
6873         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
6874         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
6875         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
6876         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
6877         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
6878         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
6879         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
6880         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
6881         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
6882         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
6883         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
6884         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
6885         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
6886         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
6887         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
6888         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
6889         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
6890         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
6891         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
6892         ListViewItemStates.cs, MaskFormat.cs: Added
6893
6894 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
6895
6896         * PropertyGridView.cs: Fix keyboard navigation of drop down.
6897         Patch from eno for bug 78558.
6898         
6899 2006-07-13  Jackson Harper  <jackson@ximian.com>
6900
6901         * TreeView.cs: When an edit is finished make sure that the
6902         selected node is visible.
6903         - When setting the top/bottom use the scrollbars is_visible, so
6904         everything will be set correctly even if the tree isn't visible
6905         yet.
6906
6907 2006-07-13  Jackson Harper  <jackson@ximian.com>
6908
6909         * ComboBox.cs: Revert the item->index part of my previous patch.
6910         * TreeView.cs: Use LostFocus instead of Leave for detecting when
6911         the edit box has lost focus (duh).
6912         - Just make the edit box not visible when we get return, that will
6913         take the focus, which will call EndEdit
6914         * TreeNode.cs When we start editing, notify the treeview.
6915
6916 2006-07-12  Jackson Harper  <jackson@ximian.com>
6917
6918         * ComboBox.cs: Clear out old items before setting the item list.
6919         This prevents databound controls from having their items added
6920         twice.
6921         - Switch the combobox to use indices whereever possible instead of
6922         using Item's.  This allows usto navigate through lists that have
6923         more then one item with the same string value (ie a, b, b, a).
6924         - Scroll the listboxes scrollbar when a non visible item is
6925         highlighted
6926         - Allow keypress to cycle through all the possible values. For
6927         example if you have b1, b2, b3 and hold down the B key all the
6928         values will be cycled through.
6929         
6930 2006-07-12  Jackson Harper  <jackson@ximian.com>
6931
6932         * TextBoxBase.cs:
6933         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
6934         this using the internal methods.
6935         * Control.cs: Add OnGotFocusInternal.  A new method that allows
6936         controls to "override" OnGotFocus and change focus behavior if
6937         needed.
6938         - Same thing for LostFocus
6939         * ComboBox.cs: Pass off focus to the text control properly.
6940
6941 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
6942
6943         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
6944         * FolderBrowserDialog.cs: Almost a complete rewrite.
6945           - Better support for Environment.Specialfolders
6946           - Added support for MWFVFS
6947           - Made setting SelectedPath work
6948
6949 2006-07-12  Jackson Harper  <jackson@ximian.com>
6950
6951         * Control.cs: Optimze getting all the controls.
6952
6953 2006-07-11  Jackson Harper  <jackson@ximian.com>
6954
6955         * ContainerControl.cs: Override SETFOCUS in the container control,
6956         so that it is not selected on mouse click.
6957
6958 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
6959
6960         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
6961           Hopefully we will have a better way once all of focus is complete.
6962
6963 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
6964
6965         * ThemeWin32Classic.cs: Commented out some debug code and fixed
6966           a compile error with csc.
6967
6968 2006-07-11  Jackson Harper  <jackson@ximian.com>
6969
6970         * Control.cs: When hiding a control only select the next control
6971         if the current control was focused.
6972         - Don't handle enter/leave when setting/killing focus, this is
6973         done by the container control.
6974         - Remove is_selected, it's not needed anymore.
6975         - Add utility methods for selecting a child control, and for
6976         firing the Enter/Leave events.
6977         * ContainerControl.cs: When a control is activated fire the
6978         enter/leave events.
6979         - Don't wrap when processing the tab key, so that focus can be
6980         moved outside of the container.
6981         - Use the correct active control
6982
6983 2006-07-11  Jackson Harper  <jackson@ximian.com>
6984
6985         * ComboBox.cs: Remove some debug code that was blinding me.
6986         * UpDownBase.cs: These controls actually aren't implicit, they are
6987         visible to the user.
6988
6989 2006-07-10  Chris Toshok  <toshok@ximian.com>
6990
6991         * DataGrid.cs: move back to the is_adding boolean field.  god i
6992         hate this is_editing/is_adding/is_changing stuff.
6993
6994 2006-07-10  Chris Toshok  <toshok@ximian.com>
6995
6996         * DataGridTableStyle.cs: just check if the property type is bool.
6997         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
6998         Don't use CanRenderType.
6999
7000         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
7001         if our text == NullText.  Remove CanRenderType.
7002
7003         * DataGridBoolColumn.cs: nuke CanRenderType.
7004
7005         * DataGrid.cs: reenable some code to end the current edit inside
7006         of set_CurrentCell.  This fixes the other 1.1.16 regression.
7007         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
7008         Also, remove the visible_row_count arg from CalcRowHeaders, since
7009         we don't need to worry about the actual height of the area.
7010
7011 2006-07-10  Chris Toshok  <toshok@ximian.com>
7012
7013         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
7014         mode, just return.
7015
7016         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
7017         the real sense of the IsInEditOrNavigateMode property (true =
7018         navigate, false = edit).  Also, update OnKeyPress to reflect this.
7019
7020         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
7021         column style exists, we still need to set its property descriptor
7022         to match up with our list manager.
7023
7024 2006-07-10  Chris Toshok  <toshok@ximian.com>
7025
7026         * ThemeWin32Classic.cs: implement the new row/header painting
7027         approach.  The parent row painting will likely go away and
7028         replaced with label controls, but the rest seems to work ok (and
7029         efficiently).
7030
7031         * Theme.cs: change the way we draw datagrid rows.  we don't draw
7032         the row headers as a block now.  Instead we draw them in the
7033         normal draw-row loop.  Add some calls for drawing parent rows and
7034         relation rows.
7035
7036         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
7037         a default table style.  Set the defaults from ThemeEngine.Current,
7038         not SystemColors.  Fix lots of misc issues with property setters.
7039
7040         * DataGrid.cs: move loads of style information out of this class
7041         as it's being duplicated with DataGridTableStyle.  keep track of a
7042         special DataGridTableStyle for the properties we used to mirror
7043         here.  Switch all the style properties to access this table style
7044         instead of instance fields of this class.  Also add a internal
7045         class to represent parent rows (more needs to be stored here, like
7046         the selection state from the parent table, as well as the
7047         expansion state.)  Also, for datasources with relations, do the
7048         right thing for collapse/expand, and add support for the
7049         navigation/parent row buttons.
7050
7051         Lastly, fix the crash in the 1.1.16 build.
7052
7053         * GridTableStylesCollection.cs: make the explicit interface
7054         implementations call the class's methods as opposed to duplicating
7055         them.
7056
7057         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
7058         0 so the text doesn't jump around when we move the cursor.
7059
7060 2006-07-10  Jackson Harper  <jackson@ximian.com>
7061
7062         * TextBoxBase.cs:
7063         * ListBox.cs: Match MS's ToString (this makes debugging focus
7064         stuff infinitely easier).
7065
7066 2006-07-10  Jackson Harper  <jackson@ximian.com>
7067
7068         * Control.cs (SelectNextControl): When checking the control's
7069         parent use this instead of ctrl.parent so that null can be passed
7070         to SelectNextControl. (I have unit tests for this).
7071         - Remove unused var.
7072
7073 2006-07-10  Chris Toshok  <toshok@ximian.com>
7074
7075         * CurrencyManager.cs: correct one regression, the removal of the
7076         finalType field.  Also, add a MonoTODO on CanAddRows, implement
7077         Refresh() correctly, and fix some event emission in
7078         ListChangedHandler.
7079
7080 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
7081
7082         * FileDialog.cs: Don't use brackets for new folders if they exist
7083           under *nix. Instead use -(number of existing folders +1).
7084
7085 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
7086
7087         * FileDialog.cs:
7088           - Fixed really nasty bug #78771
7089           - Don't block the whole GUI when reading directories with a lot of
7090             entries. Use an other thread instead and call BeginInvoke to
7091             update the ListView in MWFFileView
7092
7093 2006-07-07  Chris Toshok  <toshok@ximian.com>
7094
7095         * Control.cs (Dispose): release any Capture when disposing.
7096
7097 2006-07-07  Chris Toshok  <toshok@ximian.com>
7098
7099         * LinkLabel.cs (Select): if we chain up to the parent, set
7100         focused_index to -1 so we'll search for the first available link
7101         the next time the user tabs into us.  Also, if the direction is
7102         backward and focused_index == -1, start the search from the last
7103         element.
7104
7105 2006-07-07  Chris Toshok  <toshok@ximian.com>
7106
7107         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
7108         is beyond the end of the text, don't do anything.
7109         (CreateLinkPieces): set our ControlStyles.Selectable based on
7110         whether or not we have any links.
7111         (Link.Invalidate): use a loop instead of foreach.
7112         (Link.set_Start): null out owner.sorted_links so it'll be
7113         recreated by CreateLinkPieces.
7114
7115 2006-07-06  Chris Toshok  <toshok@ximian.com>
7116
7117         * LinkLabel.cs: revert the SetStyle change.
7118
7119 2006-07-06  Chris Toshok  <toshok@ximian.com>
7120
7121         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
7122         (OnEnableChanged): s/Refresh/Invalidate
7123         (OnGotFocus): if we have a focused index already, refocus it (so
7124         if we mouse out/in to the window it'll focus the right link).
7125         (OnKeyDown): move the tab handling out of here.
7126         (OnLostFocus): don't set focused_index to -1, so we can refocus it
7127         when we lose focus.
7128         (OnMouseDown): don't Capture here - Control handles it.  Also,
7129         focus the active link.
7130         (OnMouseUp): don't deal with Capture.
7131         (OnPaintBackgroundInternal): remove.
7132         (OnTextAlignChanged): CreateLinkPieces before calling the
7133         superclass's method.
7134         (OnTextChanged): call CreateLinkPieces before calling superclass's
7135         method.
7136         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
7137         move around.
7138         (Select): implement this, moving the selection between different
7139         links, and call parent.SelectNextControl if we don't have another
7140         link to focus in the given direction.
7141         (CreateLinkPieces): call Invalidate instead of Refresh.
7142         
7143 2006-07-06  Chris Toshok  <toshok@ximian.com>
7144
7145         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
7146         new LinkLabel internals.
7147
7148         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
7149         over pieces looking for active/focused/etc links.  also, deal with
7150         runs of text (and links) with embedded \n's in them, and use
7151         MeasureCharacterRanges instead of MeasureString to figure out the
7152         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
7153         two-step.
7154
7155 2006-07-04  Jackson Harper  <jackson@ximian.com>
7156
7157         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
7158         XKB or key auto repeat, do it manually.  Without key auto repeat,
7159         when a key is held down we get key press, key release, key press,
7160         key release, ... with auto repeat we get key press, key press, key
7161         press ..., and then a release when the key is actually released.
7162
7163 2006-07-03  Jackson Harper  <jackson@ximian.com>
7164
7165         * TabControl.cs:
7166         * ThemeWin32Classic.cs: Tabs do not obey normal background color
7167         rules, they are always control color regardless of the background
7168         color.
7169
7170 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
7171
7172         * FileDialog.cs: Added internal class MWFConfig.
7173           Removed Registry support and replaced it with support for the new
7174           MWFConfig class. See MWFConfig comments for more information.
7175
7176 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
7177
7178         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
7179           rectangle. Added some patches from eno from bug #78490 and fixed
7180           the arrow position for small up and down CPDrawScrollButtons.
7181
7182 2006-06-30  Jackson Harper  <jackson@ximian.com>
7183
7184         * InternalWindowManager.cs: Remove some debug code.
7185         * Form.cs: When an MdiParent is set to null, the window is
7186         "detatched" and becomes a normal window.
7187         * MdiClient.cs: Don't bring the new child form to the front until
7188         it is activated (setting it as active does this), this makes the
7189         previously active forms titlebar get redrawn as inactive.
7190
7191 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
7192
7193         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
7194           with later controls
7195
7196 2006-06-29  Mike Kestner  <mkestner@novell.com>
7197
7198         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
7199         arrow in keynav state.  Fixes #78682.
7200
7201 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7202
7203         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
7204           order (fixes #78393)
7205
7206 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
7207
7208         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
7209           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
7210           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
7211           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
7212           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
7213           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
7214           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
7215           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
7216           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
7217           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
7218           enumerations (FlagsAttribute, SerializableAttribute, added/removed
7219           values)
7220
7221 2006-06-28  Mike Kestner  <mkestner@novell.com>
7222
7223         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
7224
7225 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
7226
7227         * PropertyGrid.cs,
7228           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
7229           item lines from other area (It also makes BackColor consistent and
7230           compatible with .NET). Fixed bug #78564.
7231
7232 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
7233
7234         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
7235         Patch from Eno for #78555.
7236
7237 2006-06-27  Chris Toshok  <toshok@ximian.com>
7238
7239         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
7240
7241         * DataGridColumnStyle.cs: same.
7242
7243         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
7244         
7245         * DataGridDrawingLogic.cs: nuke.
7246
7247 2006-06-27  Chris Toshok  <toshok@ximian.com>
7248
7249         * DataGridTableStyle.cs: clean up the constructors, and build the
7250         list of child relations for this table.  I have no idea if this is
7251         where we should be doing it (it probably isn't), but since we're
7252         already iterating over the properties..
7253
7254         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
7255         struct and array for keeping track of row information, similar to
7256         what's shown in a hack on
7257         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
7258
7259         * Theme.cs: be consistent about the naming of DataGrid methods,
7260         prefering ColumnWidths and RowHeights over columnsWidths and
7261         RowsHeights.
7262
7263         * ThemeWin32Classic.cs: same, and also add support for variable
7264         sized rows (and the +/- expansion icons for related rows).
7265
7266 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7267
7268         * TextBoxBase.cs: Applied Eno's patch from #78660
7269
7270 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7271
7272         * Form.cs (ScaleCore): We don't want to scale our form if it's
7273           state is minimized or maximized, but we still need to scale our
7274           child windows. Also, added try/finally block to ensure layout
7275           gets reset (Fixes #78697)
7276
7277 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
7278
7279         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
7280
7281 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
7282
7283         * Form.cs: Fixed c+p error and added check to resize form if minimum
7284           size is bigger than current size (Fixes #78709)
7285
7286 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
7287
7288         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
7289
7290 2006-06-26  Mike Kestner  <mkestner@novell.com>
7291
7292         * ComboBox.cs: only do Keypress handling in the combo when there  
7293         are items in the collection. Fixes #78710.
7294
7295 2006-06-26  Chris Toshok  <toshok@ximian.com>
7296
7297         * Binding.cs: make this work bi-directionally.  also, clear up
7298         other mixups between Push/Pull Data (e.g. we're supposed to pull
7299         data when validating).
7300
7301         * BindingManagerBase.cs: trim some fully qualified collection
7302         types.
7303
7304         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
7305
7306 2006-06-23  Chris Toshok  <toshok@ximian.com>
7307
7308         * PropertyManager.cs: It appears (according to the unit tests)
7309         that PropertyManager doesn't use
7310         PropertyDescriptor.AddValueChanged to track propery value changes
7311         in its datasource, but uses the same scheme as Binding, where it
7312         looks for a <Property>Changed event and binds to it.
7313
7314         Also, according to the docs, IsSuspended always returns false for
7315         a property manager with a non-null datasource.
7316
7317 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
7318
7319         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
7320           need to update the actual DialogResult. (Fixes #78613)
7321
7322 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
7323
7324         * Form.cs (ShowDialog): Release any captures before running the
7325           new message pump (fixes #78680)
7326
7327 2006-06-22  Mike Kestner  <mkestner@novell.com>
7328
7329         * ListView.cs: Layout column widths properly in details mode even 
7330         if HeaderStyle.None is set.  Fixes #78691.
7331
7332 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
7333
7334         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
7335
7336 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
7337
7338         * Control.cs (ContainsFocus): Using new driver method to get focused
7339           window, instead of trying to use internal tracking var, which can
7340           recursion issues (Fixes #78685)
7341         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
7342           XplatUIWin32.cs: Added GetFocus method to return focused window
7343
7344 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7345
7346         * ColorDialog.cs: when the mouse button is pressed inside the color
7347         matrix, don't let the cursor move out of it until the button is
7348         released, which is the behavior on windows. Changed 'colours' by
7349         'colors' to use the same word consistently.
7350
7351 2006-06-21  Chris Toshok  <toshok@ximian.com>
7352
7353         * DataGrid.cs: add in some basic navigation stuff (navigating to a
7354         child relation and back, using a stack).  Also, remove
7355         GetDataSource and the code that calls it - it's not needed.  Also,
7356         track CurrencyManager.ListName's removal.
7357
7358 2006-06-21  Chris Toshok  <toshok@ximian.com>
7359
7360         * CurrencyManager.cs: push some of the original type checking from
7361         BindingContext.CreateBindingManager to here, and remove some of
7362         the finalType stuff.  Need more tests to make sure I've got the
7363         ListName part right, and we might need more in SetDataSource.
7364
7365         * PropertyManager.cs: add a ctor that takes just the datasource,
7366         and no property name.  Make SetDataSource work with a null
7367         property_name, and make Current return the data_source if the
7368         property descriptor is null.  this makes 'string foo = "hi";
7369         BindingContext[foo].Current' return "hi" as it should.
7370
7371         * RelatedCurrencyManager.cs: make this code more generic - there's
7372         no reason the parent manager has to be CurrencyManager, and
7373         there's no reason to pass the DataRelation.  It suffices to use a
7374         BindingManagerBase and PropetyDescriptor.
7375
7376         * RelatedPropertyManager.cs: make a similar change here.
7377         
7378         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
7379         flower I knew it could be.
7380
7381 2006-06-20  Chris Toshok  <toshok@ximian.com>
7382
7383         * PropertyManager.cs: the PropertyChangedHandler is invoked when
7384         data in the source has changed and we need to update the control,
7385         so s/PullData/PushData.
7386
7387         * CurrencyManager.cs: Refresh is meant to update the control from
7388         data in the datasource.  So, s/PullData/PushData.
7389
7390         * BindingContext.cs: add more ugliness (we weren't handling the
7391         case where data_source = DataTable and data_member = column_name).
7392
7393         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
7394         from the perspective of the datasource.  PullData pulls from the
7395         control, PushData pushes to the control.
7396
7397 2006-06-20  Chris Toshok  <toshok@ximian.com>
7398
7399         * BindingContext.cs: rewrite the CreateBindingManager code to
7400         handle navigation paths more or less properly.  This could
7401         definitely stand some more work, in particular to push the
7402         recursion up to the toplevel.  But that relies on fixes in other
7403         places (System.Data comes to mind).
7404
7405         Also, move to a flat hashtable (and encode the twolevel nature of
7406         the dictionary into the hash key).  This lets us implement the
7407         IEnumerable.GetEnumerator method.
7408
7409         * RelatedCurrencyManager.cs: new class.  Update our view based on
7410         our relation and our parent CurrencyManager's position.
7411
7412         * CurrencyManager.cs: split out some logic from the ctor into
7413         SetView, so it can be called from the new RelatedCurrencyManager
7414         subclass.
7415
7416         * RelatedPropertyManager.cs: new class.  Update our datasource
7417         based on the position of our parent CurrencyManager.
7418
7419         * PropertyManager.cs: split out some logic from the ctor into
7420         SetDataSource, so it can be called from the new RelatedDataSource
7421         subclass.  Also, make the Current getter return the value
7422         of the PropertyDescriptor, not the data_source.
7423
7424         * Binding.cs: no need to duplicate the string splitting code here.
7425
7426 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
7427
7428         * Control.cs:
7429           - set_Enabled: OnEnabledChanged is not called if the inherited state 
7430             of the control is not altered, even though  we might be changing the
7431             internal state of the control (#78458)
7432           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
7433             OnEnabledChanged, to allow easy altering of any child window state
7434           - OnEnabledChanged: Added code to enable/disable driver window state
7435           - OnParentEnabledChanged: Instead of firing the event, call 
7436             OnEnabledChanged, which will fire the event and also a) set driver
7437             window state and pass the enabled state to any grandchildren (#78458)
7438
7439 2006-06-19  Jackson Harper  <jackson@ximian.com>
7440
7441         * InternalWindowManager.cs: We don't set the cursor explicitly
7442         thats done via the response to NCHITTESTs.
7443         - Don't need to adjust for titlebar heights anymore, the
7444         coordinates are coming in the correct coordinates now (see peters
7445         last patch).
7446
7447
7448 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
7449
7450         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
7451           being translated relative to whole window, instead of client window.
7452           That caused broken offsets on mouseclick (and caused gas for our
7453           InternalWindowManager)
7454
7455 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
7456
7457         * TextControl.cs:
7458           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
7459           - Undo(): Added replay of cursor move on DeleteChars action; added
7460             calling Undo() again if a recorded cursor move is invalid (to
7461             ensure that some action is performed on Undo)
7462         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
7463
7464 2006-06-16  Jackson Harper  <jackson@ximian.com>
7465
7466         * MdiClient.cs: Instead of just sizing maximized windows when
7467         there is a resize we also have to adjust the Y of minimized
7468         windows, so they stay pinned to the bottom of the mdi container.
7469         - Eliminate separate tracking of the active control, we can just
7470         get this from the controls collection.
7471         - Paint the decorations for the newly activated titlebar so we get
7472         a pretty blue bar.
7473         * InternalWindowManager.cs:
7474         * ThemeWin32Classic.cs: Minimized windows get all three buttons
7475         even if they are a tool window.
7476         
7477 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
7478
7479         * TextControl.cs (Undo): Handle non-existent cursor locations in the
7480           undo buffer, these can happen when text was deleted and the cursor
7481           was recorded first. Since we will also have a recorded cursor
7482           after the delete this is not an issue. (Fixes #78651)
7483
7484 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
7485
7486         * AccessibleObject.cs: Remove dependence on Control.is_selected;
7487           instead properly track control states internally (allows us to
7488           remove is_selected from Control)
7489
7490 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7491
7492         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
7493         whose width is not a multiple of 8.
7494
7495 2006-06-13  Jackson Harper  <jackson@ximian.com>
7496
7497         * MdiClient.cs:  Only maximize the next child if the current one
7498         is maximized.
7499
7500 2006-06-13  Chris Toshok  <toshok@ximian.com>
7501
7502         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
7503         modified.  Also, guard against grid or grid_drawing being null in
7504         Invalidate.
7505
7506         * DataGrid.cs: Reformat tons of getters/setters.  In the
7507         DataMember setter, just call SetNewDataSource instead of
7508         duplicating some of its functionality.  In SetNewDataSource, don't
7509         check ListManager for null, since the property getter creates the
7510         object if needed.
7511
7512         * DataGridTableStyle.cs: don't set TableStyle or call
7513         SetDataGridInternal on the column here, it's done in
7514         GridColumnStylesCollection.Add.
7515
7516         * GridColumnStylesCollection.cs: fix all the explicit interface
7517         implementations to just call our methods.  Nuke AddInternal() and
7518         move the body of it to Add().  Also, add a call to
7519         column.SetDataGridInternal to Add().
7520
7521         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
7522         base()+duplicate code.  Also, use the Format property instead of
7523         format to generate an Invalidate ala MS.  Lastly, create the
7524         textbox here, unconditionally.
7525         (set_Format): call Invalidate.
7526         (get_TextBox): no need to call EnsureTextBox.
7527         (Commit): remove the message box.
7528         (Edit) remove the call to EnsureTextBox.
7529         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
7530         (EnterNullValue): no need to check textbox for null.
7531         (HideEditBox): no need to check textbox for null.
7532         (SetDataGridInColumn): add the textbox to the grid's controls.
7533         (EnsureTextBox): nuke.
7534         
7535 2006-06-13  Jackson Harper  <jackson@ximian.com>
7536
7537         * MdiWindowManager.cs: Hook up to the maximized menus paint event
7538         and redraw the buttons when needed. Unhook when the window is
7539         unmaximized.
7540         * MainMenu.cs: Add an internal Paint event, the mdi window manager
7541         needs this so that it can redraw its buttons when the menu is
7542         repainted.
7543         * InternalWindowManager.cs:
7544         * Form.cs: The method order has changed for DrawMaximizedButtons,
7545         so that it can be a PaintEventHandler.
7546         
7547 2006-06-13  Jackson Harper  <jackson@ximian.com>
7548
7549         * MdiClient.cs: When we close a maximized mdi window, the next mdi
7550         window is activated and maximized, even if it wasn't before.
7551         - When  a new window is activated repaint the decorations of the
7552         old one, so that it no longer has the Active "look" (the blue
7553         titlebar).
7554         * InternalWindowManager.cs: Open up CreateButtons to base classes
7555         so they can recreate the buttons on state changes.
7556         - If a window is maximized give it all three buttons
7557         * MdiWindowManager.cs: Create the titlebar buttons when the state
7558         is changed, this is needed because a toolwindow will not have all
7559         three buttons until it is maximized.
7560
7561 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
7562
7563         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
7564           Fixed bug #78609.
7565
7566 2006-06-12  Jackson Harper  <jackson@ximian.com>
7567
7568         * KeysConverter.cs: Make sure we handle the Ctrl special case
7569         if its the only key.
7570         
7571 2006-06-12  Jackson Harper  <jackson@ximian.com>
7572
7573         * Theme.cs: Add a method to get the size of a managed window
7574         toolbar button.
7575         * InternalWindowManager.cs: Remove the ButtonSize property, this
7576         should be retrieved from the theme.
7577         * MdiWindowManager.cs: Get the button size from the theme
7578         * ThemeWin32Classic.cs: Make the method to get the managed window
7579         titlebar button size public.
7580         - Handle the different button sizes of maximized toolwindows
7581         (should match any maximized window).
7582         - Get the titlebar height from the theme, not the WM (which gets
7583         it from the theme).
7584
7585 2006-06-12  Jackson Harper  <jackson@ximian.com>
7586
7587         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
7588         event down to the mdi window manager.
7589         - Expose some extra stuff to base classes
7590         - Make sure to end the Capture on an NC Mouse up, so that we can
7591         get double clicks properly, and the sizing doens't stick.
7592         - When doing PointToClient contain it in the workable desktop
7593         area, this prevents windows from changing size when the cursor is
7594         pulled outside of the working area while sizing.
7595         * MdiWindowManager.cs: When we get a double click maximize the
7596         window.
7597         - Reset the cursor after handling mode changes.
7598
7599 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
7600
7601         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
7602           current desktop, instead of just assuming a 0, 0 origin. This
7603           is needed for our internal window manager, to know the top
7604           margin of the desktop
7605
7606 2006-06-12  Chris Toshok  <toshok@ximian.com>
7607
7608         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
7609         we need this to get rid of the selected background in the bool
7610         column.
7611         (CancelEditing): move the ConcedeFocus call to above the Abort
7612         call.  Also, set is_changing to false and invalidate the row
7613         header if we were changing before.
7614         (ProcessKeyPreviewInternal): remove, since noone outside this
7615         class calls it anymore.  Roll the code into ProcessKeyPreview.
7616         (EndEdit): remove the internal version.
7617         (InvalidateCurrentRowHeader): make private.
7618
7619         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
7620         Keys.Escape handling (and with it the last call to
7621         DataGrid.EndEdit from outside the class.)
7622
7623
7624 2006-06-12  Chris Toshok  <toshok@ximian.com>
7625
7626         * DataGridTextBox.cs (.ctor): isedit defaults to false.
7627         (OnKeyPress): set isedit to true.
7628         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
7629         already handled by the grid.
7630
7631         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
7632         right.  ugh.
7633         (set_DataSource): SetDataSource always returns true, so stop
7634         putting it in an if statement.
7635         (EndEdit): get rid of some {}'s
7636         (ProcessGridKey): return true in case Keys.Escape.
7637         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
7638         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
7639         PositionChanged, stopped connecting to CurrentChanged.
7640         (GetDataSource): simplify this a bunch.
7641         (SetDataSource): change return type from bool to void.
7642         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
7643         to this, and make sure we don't set ListManager.Position inside
7644         set_CurrentCell.
7645         (OnListManagerItemChanged): if we're passed an actual index,
7646         redraw that row.
7647
7648         * CurrencyManager.cs (set_Position): don't call PullData here.
7649
7650 2006-06-09  Jackson Harper  <jackson@ximian.com>
7651
7652         * TreeNode.cs:  Recalculate the visible order before doing the
7653         Expand/Collapse Below calls, because those calls generate an
7654         expose.
7655         - Reduce calls to the TreeView property, which is mildly expensive
7656         by using a local var.
7657         * Form.cs: Layout the MDI child windows when creating the parent
7658         form.
7659         - Don't use the internal constructor anymore
7660         * MdiClient.cs: use the parent form width/height (if available)
7661         when laying out the child windows, we do this because the
7662         mdiclient isn't docked yet when the initial layout is done.
7663         - Don't need an internal constructor anymore.
7664
7665 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7666
7667         * FileDialog.cs: handle access errors when trying to create a folder
7668         or changing to a directory. No need to initialize out parameters.
7669
7670 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7671
7672         * FileDialog.cs: Append a number when creating a new folder if the
7673           folder already exists (use parenthesis instead of square brackets)
7674
7675 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7676
7677         * FileDialog.cs:
7678           - Disabled registry support for windows and added better registry
7679             error checking for other systems (need to investigate why it
7680             works perfectly on my system)
7681           - If a folder already exist show an error MessageBox instead of
7682             trying to create an indexed name.
7683           - Fixed a non intentional typo.
7684
7685 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7686
7687         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
7688
7689 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7690
7691         * FileDialog.cs: When creating a new folder don't crash if the
7692           folder already exists.
7693
7694 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7695
7696         * FileDialog.cs: Allmost a complete rewrite.
7697           - added a "virtual" file system that handles the differences
7698             between unix and windows file systems (especially the directory
7699             structure). Moved most of the directory and file handling code
7700             into the vfs.
7701             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
7702             UnixFileSystem and FSEntry.
7703           - Recently used folder/directory, size, location and used file names
7704             (file name ComboBox) are now stored in the registry and get read
7705             before the dialog shows up (fixes part 6 of bug #78446).
7706           - Creation of new folders/directories is now possible (context menu
7707             or ToolBar). Added TextEntryDialog for this that fills in the gap
7708             until ListView.LabelEdit works.
7709           - Fixed cursor handling (bug #78527) and focus handling for
7710             PopupButtonPanel
7711           - Various "Search in" ComboBox enhancements. The content of the
7712             dropdown listbox now almost matches ms.
7713           - Changed the behaviour when the user switches to SpecialFolder
7714             Recent to show the ListView in View.Details.
7715           - Beside using the ToolBar to change the View property of the
7716             file ListView it is now possible to use the context menu too.
7717
7718 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
7719
7720         * ComboBox.cs: Don't create a new ObjectCollection when an item
7721           gets inserted. Just insert the item in the existing object_items
7722           ArrayList.
7723
7724 2006-06-08  Jackson Harper  <jackson@ximian.com>
7725
7726         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
7727         that the treeview and root node checks are done also, this fixes a
7728         regression i caused in the unit tests.
7729
7730 2006-06-07  Wade Berrier <wberrier@novell.com> 
7731
7732         * RichTextBox.cs: More ISO8859-1 -> unicode
7733
7734 2006-06-07  Mike Kestner  <mkestner@novell.com>
7735
7736         * ComboBox.cs : use items to hold highlight/selection so that
7737         collection insertions don't require synchronization.
7738
7739 2006-06-07  Jackson Harper  <jackson@ximian.com>
7740
7741         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
7742         routine.  We now always keep the sized edge at the cursor instead
7743         of computing movement and adjusting rects.  There is one buglet
7744         with this method though when the cursor is moved over area that
7745         the window can not expand too (such as the toolbars on the desktop).
7746
7747 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7748
7749         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
7750         here. Fixes crash on startup in AlbumSurfer.
7751
7752 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
7753
7754         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
7755           values
7756
7757 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7758
7759         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
7760         statement to avoid calling XNextEvent which will block if another thread
7761         took the event that we were expecting. Fixes bug #78605.
7762
7763 2006-06-07  Mike Kestner  <mkestner@novell.com>
7764
7765         * ListView.cs : isolated checkbox clicking from the selection logic.
7766         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
7767
7768 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
7769
7770         * Form.cs: Check that the value passed to Form.DialogResult
7771         is a valid enum value.
7772
7773 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7774
7775         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
7776         Computer'. Clicking it in the network view goes to 'My Computer'.
7777         Added CIFS filesystem type. Display the mount point of filesystems.
7778         Avoid duplicate mount points (happens for me with CIFS);
7779
7780 2006-06-06  Jackson Harper  <jackson@ximian.com>
7781
7782         * InternalWindowManager.cs: Draw the maximized windows buttons
7783         when resizing.
7784
7785 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7786
7787         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
7788         all other dialogs. Fixes bug #78585.
7789
7790 2006-06-06  Mike Kestner  <mkestner@novell.com>
7791
7792         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
7793         Only invalidate checkbox on checkstate changes to avoid flicker.
7794         * ListBox.cs : avoid unselect/select when clicking selected item.
7795         avoid reselection flicker for already multiselected items.
7796         Fixes #78382.
7797
7798 2006-06-06  Jackson Harper  <jackson@ximian.com>
7799
7800         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
7801         the parent form so that the menu is removed if needed.
7802
7803 2006-06-06  Mike Kestner  <mkestner@novell.com>
7804
7805         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
7806         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
7807
7808 2006-06-06  Mike Kestner  <mkestner@novell.com>
7809
7810         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
7811
7812
7813 2006-06-06  Jackson Harper  <jackson@ximian.com>
7814
7815         * Control.cs: Use the property (instead of the field) to get the
7816         default cursor so it is instantiated correctly.
7817         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
7818         resizes so we need to manually repaint the window decorations here.
7819         - Set the titlebar button locations as soon as they are created,
7820         otherwise they are not set correctly on win32.
7821         
7822 2006-06-06  Chris Toshok  <toshok@ximian.com>
7823
7824         * CurrencyManager.cs (set_Position): call PullData before
7825         OnCurrentChanged.
7826         (AddNew): after calling IBindingList.AddNew, update our
7827         listposition, and call OnCurrentChanged/OnPositionChanged (without
7828         calling PullData).
7829         (OnCurrentChanged): remove the call to PullData from here.
7830         (OnItemChanged): remove the call to PushData from here.
7831         (OnPositionChanged): change the test from == null to != null to
7832         match the other methods.
7833         (ListChangedHandler): the grossest part of the patch.  Implement
7834         this such that it passes the unit tests in CurrencyManagerTest and
7835         the output more or less matches that of MS's implementation.
7836  
7837 2006-06-06  Mike Kestner  <mkestner@novell.com>
7838
7839         * ListView.cs : only update check state on single click.
7840         * ThemeWin32Classic.cs : fix focus drawing for details view without
7841         fullrowselect.  Fixes #78454.
7842         * XplatUIX11.cs : fix for double click emission.
7843
7844 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
7845
7846         * PropertyGridView.cs : Applied Atsushi's patch to fix
7847         font dialog bug  (#78197).
7848
7849 2006-06-05  Jackson Harper  <jackson@ximian.com>
7850
7851         * TreeNode.cs: Compute the next node for expanding/collapsing
7852         correctly. We now factor in nodes without a NextNode
7853         correctly. (Fixes somes cases in nunit-gui).
7854         * InternalWindowManager.cs: Set the bounds when updating the
7855         virtual position of a tool window.
7856         
7857 2006-06-05  Chris Toshok  <toshok@ximian.com>
7858
7859         * DataGrid.cs: rename cached_currencymgr to list_manager.
7860         (set_CurrentCell): move SetCurrentCell code here, and clean it up
7861         some.
7862         (CurrentRow, CurrentColumn): single accessors so we can make the
7863         cursor movement code a lot easier to understand.
7864         (CurrentRowIndex): implement this in terms of CurrentRow.
7865         (BeginEdit): clean this up a bit.
7866         (CancelEditing): sort out the is_editing/is_changing/is_adding
7867         stuff a little.
7868         (EndEdit): minor changes.
7869         (OnKeyDown): add a comment about a (most likely) unnecessary
7870         check.
7871         (OnMouseDown): cancel editing when we click on a row header.  And
7872         use the CurrentRow setter, not CurrentCell.
7873         (ProcessDialogKey): directly call ProcessGridKey.
7874         (UpdateSelectionAfterCursorMove): factor out this common block of
7875         code (it's used everywhere that we move the cursor by updating row
7876         or column).
7877         (ProcessGridKey): pretty substantial overhaul.  Use the
7878         CurrentRow/CurrentColumn properties to make the code a lot more
7879         readable.  Only use the CurrentCell property when we have to
7880         modify both row and column at once.  Tab behavior is still broken,
7881         and Delete is untested.
7882         (Select): if we have no selected rows, set selection_start to
7883         @row.
7884         (EditCurrentCell): rename EditCell this.  It was only ever invoked
7885         with CurrentCell as the arg, so drop the arg and rename it.
7886
7887         * DataGridColumnStyle.cs: clean up the constructors a little, and
7888         drop CommonConstructor().
7889
7890         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
7891         actually get notified when the user hits it.
7892         (ProcessKeyMessage): *substantially* simplify this method.
7893         There's no reason (that I can see) for the textbox to be making
7894         calls into the datagrid at all.  Remove all of them but the ones
7895         for Enter handling.  those will take some more work.
7896
7897         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
7898         calling HideEditBox.
7899         (HideEditBox): if we have an active textbox, render it invisible
7900         without causing a re-layout of the datagrid.
7901
7902 2006-06-05  Mike Kestner  <mkestner@novell.com>
7903
7904         * ListView.cs : fix NRE crasher when focuseditem is cleared by
7905         collection changes by resetting it to Items[0].  Fixes #78587.
7906
7907 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7908
7909         * MessageBox.cs: if the height of the text is larger than the icon_size,
7910         use that. Fixes bug #78575.
7911
7912 2006-06-05  Jackson Harper  <jackson@ximian.com>
7913
7914         * TreeView.cs: Fix line drawing when scrolling.  To do this each
7915         node is basically responsible for drawing its entire horizontal
7916         area.  When drawing a node it draws its parent node lines if
7917         needed.
7918         - Adjust the clip area to the viewport rectangle
7919         - Fix Left/Right key handling to match MS. (It expand/collapses
7920         and moves to parents/first child but does not move selection to
7921         sibling nodes).
7922         - Fix SetTop to work with new bound calculation code
7923         - When scrollbars are no longer needed we need to reset scrolling
7924         vars and recalculate the visible order so the redraw is correct
7925         * TreeNode.cs: We can't expand/collapse nodes with no children.
7926
7927 2006-06-03  John Luke  <john.luke@gmail.com> 
7928
7929         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
7930         so the colors work without dev packages
7931         
7932 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
7933
7934         * Control.cs 
7935           - Select: Implemented to just use activate. Seems to match MS 
7936             behaviour closest. Documented to only do actual control walking 
7937             based on it's parameters if in a container control so I moved 
7938             the code there.
7939           - Removed selection check logic from our internal Select() method
7940         * ContainerControl.cs:
7941           - Select: Moved selection logic from Control here, since MS documents
7942             that containers obey the bool arguments. No longer calling base
7943
7944 2006-06-02  Jackson Harper  <jackson@ximian.com>
7945
7946         * TreeView.cs: If the selected node isn't changed when we get
7947         focus update the previously selected node so that we see the
7948         selection box.
7949
7950 2006-06-02  Mike Kestner  <mkestner@novell.com>
7951
7952         * ComboBox.cs: restructure grab and general mouse event handling.
7953         Make the composite control raise mouse events like it was a single
7954         control for leaves/enters/motion/up/down events.  fix dropdown list
7955         coordinate mangling and refactor it into the scrollbar subclass to
7956         reduce code duplication.  Fixes #78282 #78361 and #78457.
7957
7958 2006-06-02  Mike Kestner  <mkestner@novell.com>
7959
7960         * ScrollBar.cs: remove Capture setting/clearing, as it happens
7961         automatically in the Control.WndProc.
7962
7963 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7964
7965         * FileDialog.cs: fix crash when running SharpChess, which sets the
7966         FilterIndex to 2 with only one Filter.
7967
7968 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7969
7970         * ToolBar.cs: add SizeSpecified property.
7971         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
7972         try to figure out our real size, otherwise fallback to what the
7973         container says.
7974
7975 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
7976
7977         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
7978         * Control.cs (WndProc): MS always calls the DefWndProc to pass
7979           up the event
7980
7981 2006-06-01  Mike Kestner  <mkestner@novell.com>
7982
7983         * ListView.cs: revamp the focus management in ListView.  It still
7984         causes churn of LostFocus/GotFocus emissions on clicks, but it's
7985         better than not handling focus at all.  Will revisit when pdb feels
7986         the general focus handling is solid.  Fixes #78526.
7987
7988 2006-06-01  Jackson Harper  <jackson@ximian.com>
7989
7990         * TreeView.cs: Set the default border style in the constructor.
7991         - Move painting to use OnPaintInternal instead of capturing
7992         WM_PAINT, this is the correct way of doing things
7993         - UpdateBelow shouldn't invalidate the scrollbar area
7994         - Cap the top on update below in case the node was above the top
7995         of the viewport rectangle.
7996         - ExpandBelow and Collapse below need to obey Begin/End Update.
7997         * TreeNode.cs: Make is_expanded internal so the treenode
7998         collection can change it without firing the whole event chain.
7999         * TreeNodeCollection.cs: When clearing all the child nodes make
8000         sure to recalc the visible order.
8001         - Improve algo for remove the top node
8002
8003 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
8004
8005         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
8006           SendMessage directly calling window procedures, which in turn might
8007           call SetFocus()
8008
8009 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
8010
8011         * Control.cs: Don't handle WM_SETFOCUS if the same window already
8012           has focus (works around X11 sending a FocusIn after our SetFocus)
8013         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
8014
8015 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
8016
8017         * Mime.cs: Fix for the NET_2_0 build.
8018           NameValueCollection needs StringComparer now.
8019
8020 2006-05-31  Chris Toshok  <toshok@ximian.com>
8021
8022         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
8023         return (via an out parameter) the starting X of the column.
8024         (UpdateVisibleColumn): track change to FromPixelToColumn.
8025         (HitTest): add a ColumnResize case here.
8026         (DrawResizeLine): new function, probably poorly named.
8027
8028         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
8029         only need to keep one reference.
8030         (set_ListManager): same.
8031         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
8032         Also, add support for HitTestType.ColumnResize.
8033         (OnMouseMove): add column resize behavior here, and change the
8034         cursor to the correct one as we move around the datagrid.
8035         (OnMouseUp): terminate the column resize if we're resizing.
8036         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
8037         for the current cell.
8038         (ConnectListManagerEvents): use cached_currencymgr.
8039         (DisconnectListManagerEvents): fill this in, using
8040         cached_currencymgr.
8041         (SetCurrentCell): remove cached_currencymgr_events handling.
8042         (SetDataMember): only call DisconnectListManagerEvents if
8043         cached_currencymgr is != null.
8044         (SetDataSource): same.
8045         (OnListManagerCurrentChanged): cached_currencymgr_events ->
8046         cached_currencymgr.
8047
8048 2006-05-31  Jackson Harper  <jackson@ximian.com>
8049
8050         * BindingManagerBase.cs: Remove somedebug code that creeped into
8051         SVN.
8052         * TreeNode.cs: We get the indent level dynamically right now, so
8053         don't track it as a member.
8054         * TreeNodeCollection.cs: Make sure all nodes added to the list
8055         have parents, treeviews/topnodes setup properly.
8056         - Don't attempt to track indent level.
8057
8058 2006-05-30  Jackson Harper  <jackson@ximian.com>
8059
8060         * BindingContext.cs: Create the currency manager tables here.
8061         This allows us to more easily create null tables (when bad data
8062         members are used), and more easily create related currency
8063         managers.
8064         * CurrencyManager.cs: All the table creation stuff is done by the
8065         binding context now.
8066         - Current should throw an exception if listposition is -1.
8067         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
8068         been bound yet.
8069
8070 2006-05-30  Mike Kestner  <mkestner@novell.com>
8071
8072         * ListView.cs: allow reexpansion of zero-width column headers.
8073         Fixes #78528.
8074
8075 2006-05-28  Chris Toshok  <toshok@ximian.com>
8076
8077         * CurrencyManager.cs (get_Current): after the late binding
8078         listposition = -1 fix, we need to guard against it here and return
8079         null, otherwise we raise an exception (which is swallowed
8080         elsewhere, and breaks datagrid databinding.)
8081
8082 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
8083
8084         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
8085           than WM_SYSKEY, don't throw if get something unexpected (#78507)
8086
8087 2006-05-26  Jackson Harper  <jackson@ximian.com>
8088
8089         * ControlPaint.cs:
8090         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
8091         values, it's faster and it's all we care about (we don't care if
8092         the names aren't equal).
8093         * KeyboardLayouts.cs: Eliminate some dead code.
8094         - Lazy init things
8095         * X11Keyboard.cs: Lazy init keyboard detection.
8096         - Cleanup access modifiers a little.
8097
8098 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
8099
8100         * XplatUIX11.cs: Once again, attempting to get layout just right.
8101
8102 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
8103
8104         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
8105           the sizes of each link section, that will result in sizes that
8106           match DrawString's layout (Fixes #78391)
8107
8108 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
8109
8110         * FileDialog.cs: If AddExtension property is true autocomplete the
8111           extensions in SaveFileDialog correctly. Fixes bug #78453.
8112           Set MyNetwork and MyComputer to "C:\" for windows. This should
8113           fix part 8 of bug #78446 for now.
8114
8115 2006-05-26  Chris Toshok  <toshok@ximian.com>
8116
8117         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
8118         invalidate the current row header if we need to, but presumably
8119         we'll invalidate the row corrsponding to the bounds or
8120         editingControl.
8121         (GridHScrolled): switch back to this method, as it's part of the
8122         public api.  *sigh*.
8123         (GridVScrolled): same.
8124         (OnMouseWheel): hack up something that more or less works.  Call
8125         GridHScrolled/GridVScrolled directly, instead of duplicating much
8126         of their code here.
8127         (EnsureCellVisibility): reinstate a bunch of this code, since we
8128         can't just set the scrollbar Value and expect to do all the work
8129         in the ValueChanged handler.  Also, Call Update() after scrolling
8130         in one direction so the other XplatX11.ScrollWindow call has the
8131         proper stuff in the proper places.
8132         (EditCell): set is_editing to true before calling .Edit.
8133
8134         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
8135         don't bother comparing first.
8136         (OnKeyPress): call grid.ColumnStartedEditing before calling
8137         base.OnKeyPress.  this will set is_changing and invalidate the row
8138         header if necessary.
8139         (ProcessKeyMessage): for WM_CHAR messages, call
8140         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
8141         and WM_KEYDOWN.
8142         
8143         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
8144         it's done in the DataGrid.
8145         (NextState): call grid.ColumnStartedEditing, which takes care of
8146         invalidating the row header (and setting is_changing).
8147
8148         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
8149         here.  it's done in the DataGrid.
8150
8151 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8152
8153         * Control.cs: allow changing the cursor when the mouse position is
8154         out of bounds but Capture is set.
8155         * LinkLabel.cs: handle the case when the mouse button is pressed on the
8156         linklabel but released somewhere else.
8157
8158 2006-05-25  Jackson Harper  <jackson@ximian.com>
8159
8160         * TreeView.cs: When we get focus if there is no selected node make
8161         it the top node
8162         - Remove some uneeded setup code from Draw.
8163         * TreeNodeCollection.cs: If the tree doesn't have a top node when
8164         a new node is inserted make the new node the top.
8165         * XplatUIX11.cs:
8166         * Timer.cs: Use Utc time so that no local time zone stuff needs to
8167         be used (should be faster).
8168         
8169 2006-05-25  Chris Toshok  <toshok@ximian.com>
8170
8171         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
8172         problem with the last commit.
8173
8174 2006-05-25  Chris Toshok  <toshok@ximian.com>
8175
8176         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
8177         need the invalidate call here, while scrolling right-to-left via
8178         the left arrow key (i.e. moving the editing cell while scrolling).
8179
8180         * DataGrid.cs (.ctor): remove the initialization of
8181         ctrl_pressed/shift_pressed.  We no longer track them using key
8182         up/down handlers, but by using Control.ModifierKeys.  Also, switch
8183         to using ValueChanged handlers on the scrollbars instead of
8184         Scrolled event handlers.  This simplifies a bunch of the scrolling
8185         code.
8186         (GridHValueChanged): rename from GridHScrolled, and change it to
8187         work with the new event args.
8188         (GridVValueChanged): same.
8189         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
8190         (OnMouseWheel): actually scroll the datagrid.  Don't change the
8191         selected cell.
8192         (ProcessGridKey): correct all the keyboard navigation stuff I
8193         could find.  Ctrl up/down/left/right/home/end work now.
8194         (EnsureCellVisibility): correct method name spelling.  Also,
8195         simplify this a touch by not explicitly calling the
8196         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
8197         scrollbar value.
8198         (OnKeyUpDG): no need for this method now.
8199         
8200 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8201
8202         * LinkLabel.cs: display the OverrideCursor when hovering the label.
8203         Fixes bug #78392.
8204
8205 2006-05-25  Chris Toshok  <toshok@ximian.com>
8206
8207         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
8208         r61019.
8209
8210 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8211
8212         * Application.cs: Moved setting of is_modal and closing to before
8213           we create the control, to allow the event handlers called as a
8214           result of creation affect closing. Also removed Gonzalo's previous
8215           change to setting DialogResult, the behaviour has been moved to 
8216           Form.ShowDialog()
8217         * Form.cs: 
8218           - ShowDialog(): Removed explicit creation of the form, let RunLoop
8219             handle it instead
8220           - ShowDialog(): If no dialog result is set, we need to return Cancel
8221           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
8222             the close is cancelled
8223
8224 2006-05-25  Jackson Harper  <jackson@ximian.com>
8225
8226         * StatusBar.cs: We only need to update the sizes of the other
8227         panels when we have auto size contents.  Also we are only updating
8228         the contents of the panel, not the borders, so compensate for the
8229         border width (TODO: get this width from the theme somehow).
8230         * TreeView.cs: Scrollable is true by default
8231         - Use invalidate instead of refresh where needed
8232         - Factor the scrollable value into scrollbar updating
8233         - Update the scrollbars if the Scrollable property is altered
8234         - Update the selected node if its ImageIndex is changed
8235         - Handle null nodes in UpdateNode (mainly so we don't have to
8236         check if selected is null when updating it
8237         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
8238         are factored into the visible count
8239         - Use VisibleCount for clarity in the code
8240         - When the font is changed we need to recurse through all the
8241         nodes and invalidate their sizes
8242         
8243 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8244
8245         * Application.cs: set the DialogResult to fixed when the main form is
8246         hidden or destroyed while being modal.
8247
8248 2006-05-25  Miguel de Icaza  <miguel@novell.com>
8249
8250         * Theme.cs: Use Tangoified messagebox icons. 
8251
8252         (GetSizedResourceImage): Also cope with width = 0 and do not
8253         trigger a warning in that case (0 means "give me your icon from
8254         the resouce, no special size needed).
8255
8256 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
8257
8258         * Application.cs: Leave runloop if the the main modal form is 
8259           hidden (fixes #78484)
8260
8261 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
8262
8263         * BindingContext.cs : reject null datasource in Contains() and
8264           Item[].
8265         * CurrencyManager.cs : check data_member validity when data_source
8266           is dataset. When it is late binding, the initial position is -1.
8267
8268 2006-05-24  Jackson Harper  <jackson@ximian.com>
8269
8270         * TreeNodeCollection.cs: Dont't recalculate the visible order on
8271         inserted nodes that aren't visible.  This changes the
8272         max_visible_order which confuses scrollbar settings.
8273         - Use the enumerator to get the prev node instead of duplicating
8274         code.
8275         * TreeView.cs: Use new method for setting scrollbar values
8276         - Don't set the bounds every time the scrollbar is updated
8277         - When updating below the root node use an invalidate instead of a
8278         refresh to prevent the child controls (scrollbars) from being
8279         refreshed. (UpdateBelow still needs to be reworked anyways).
8280         - Reenable SetBottom now that visible orders are set correctly,
8281         added some debug code incase we ever get bad values there again.
8282         - Set the scrollbar max to 2 less then the max value, this
8283         compensates for the max value being one above the node count, and
8284         for scrollbars adding one extra "notch".
8285         - When drawing image nodes if there is an imagelist we draw the
8286         first image in the list if the supplied image index is out of the
8287         image list's bounds.
8288         
8289 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8290
8291         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
8292           we receive a size change from the WM (Fixes #78503)
8293
8294 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
8295
8296         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
8297           rectangle (Fixes #78501)
8298
8299 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
8300
8301         * ButtonBase.cs: 
8302           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
8303             as a bitfield.
8304           - Fixed MouseMove to no longer switch pressed state unless the left
8305             mouse button is pressed. Atsushi provided the original patch (#78485)
8306           
8307 2006-05-24  Jackson Harper  <jackson@ximian.com>
8308
8309         * ScrollBar.cs: New internal methods that allow us to change a
8310         couple values on the scrollbar (the most common case is maximum
8311         and large change) without getting multiple invalidates.
8312
8313 2006-05-24  Chris Toshok  <toshok@ximian.com>
8314
8315         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
8316         (Edit): save off the original state in oldState, and set
8317         grid.is_editing to true.
8318         (OnKeyDown): abort editing if escape is pressed.  also, call
8319         NextState if space is pressed.
8320         (OnMouseDown): call NextState.
8321         (NextState): factor out shared code from OnKeyDown and OnMouseDown
8322         here.  Also, only invalidate the row header once (on the initial
8323         is_changing switch) to save on redraws.
8324
8325 2006-05-24  Chris Toshok  <toshok@ximian.com>
8326
8327         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
8328         if the value in the cell is different than it was before.  This
8329         keeps us from triggering a layout when we move around a datarid
8330         with a highlighted cell.
8331         (Edit): suspend layout when creating/positining the text box, and
8332         resume passing false so we don't ever actually re-layout.
8333         (ReleaseHostedControl): same.
8334         (EnsureTextBox): reformat slightly, and set WordWrap to false.
8335
8336         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
8337         control-key sequences should go to the datagrid - remove that
8338         lock.  Also, modify the conditions under which we move between
8339         cells when moving the cursor within a cell, and remove the "this"
8340         and "base" from field accesses.  We weren't even consistent, given
8341         they all were in the base class.
8342
8343 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
8344
8345         * Binding.cs : (.ctor)
8346           An obvious NRE fix for BindingTest.CtorNullTest().
8347
8348 2006-05-23  Chris Toshok  <toshok@ximian.com>
8349
8350         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
8351         them between lines.  This fixes some quirks editing cells in the
8352         datagrid.
8353
8354 2006-05-23  Jackson Harper  <jackson@ximian.com>
8355
8356         * TreeView.cs: Use begin/end update when doing expand/collapse all
8357         so that we don't get flicker on the scrollbar.
8358
8359 2006-05-23  Jackson Harper  <jackson@ximian.com>
8360
8361         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
8362         treenode calculations to be independant of the painting code. To
8363         do this nodes track a visible order which is calculated by the
8364         treeview.
8365         - Call new methods for expanding/collapsing nodes.  These methods
8366         use scrollwindow so we don't have to update everything below the
8367         node.
8368         * TreeView.cs: Refactored drawing and scrolling code.  We don't
8369         need to update nodes when drawing anymore or calculate scrollbar
8370         stuff.
8371         - Added new methods for expanding/collapsing nodes. These methods
8372         use ScrollWindow so as to not have to redraw all the nodes below.
8373         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
8374         we add/remove nodes or sort.
8375         - Handle removing the selected and the top node properly.
8376
8377 2006-05-23  Chris Toshok  <toshok@ximian.com>
8378
8379         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
8380         maybe this should actually happen in the datagrid code?
8381         (EndEdit): no need to invalidate anything, given that
8382         ReleaseHostedControl causes the datagrid to relayout, which
8383         invalidates everything anyway.
8384
8385         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
8386         in SetCurrentCell).
8387         (set_SelectionBackColor): call InvalidateSelection instead of
8388         Refresh.
8389         (set_SelectionForeColor): same.
8390         (BeginEdit): Flesh this out a bit.
8391         (CancelEditing): only do any of this if we're editing/adding.
8392         (EndEdit): same.
8393         (OnMouseDown): there's no need to cancel editing here, it's done
8394         in SetCurrentCell.
8395         (SetCurrentCell): only invalidate the current row header if it's a
8396         different row than the new one.
8397         (ShiftSelection): fix this to work like MS does.
8398         (ResetSelection): factor out the invalidation of selected_rows to
8399         InvalidateSelection.
8400         (SetDataSource): cancel any editing that's going on.
8401
8402         * DataGridColumnStyle.cs
8403         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
8404         call the non-interface version.
8405
8406         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
8407         header rectangle with the clip rectangle so we don't redraw the
8408         entire header for just a small area.  Gets rid of the last flicker
8409         when horizontally scrolling.
8410         (DataGridPaintRow): same.
8411
8412 2006-05-23  Mike Kestner  <mkestner@novell.com>
8413
8414         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
8415         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
8416         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
8417         Critical bug report.
8418
8419 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
8420
8421         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
8422           and this fixes #78493
8423
8424 2006-05-23  Miguel de Icaza  <miguel@novell.com>
8425
8426         * Theme.cs (GetSizedResourceImage): Scale images if the proper
8427         size is not found.  
8428         
8429         * FileDialog.cs: Do not change the background for the side bar as
8430         it wont work nicely with the theme, and also reduces the artifacts
8431         in rendering the icons (which I want to fix too).
8432
8433         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
8434         resources, not resgen resources. 
8435
8436         (PlatformDefaultHandler): Pull images using the new API.
8437
8438 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
8439
8440         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
8441           a reference to the hwnd and will not remove it unless there are
8442           no pending exposures (fixes #78341)
8443         * XplatUI.cs: Improved debug
8444
8445 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
8446
8447         * MenuAPI.cs : don't handle OnClick event when it was not the left
8448           button. Fixed bug #78487.
8449
8450 2006-05-23  Mike Kestner  <mkestner@novell.com>
8451
8452         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
8453         prefer submenus to the top menu for item lookup, to avoid popping down
8454         top-row items.
8455
8456 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
8457
8458         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
8459           Graphics.FillRectangle as the visual results are really bad (even
8460           on win). We now draw perfect arrows (and perfect shadows when the
8461           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
8462           Pen.DashPattern to draw the dots of each line.
8463
8464 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
8465
8466         * FileDialog.cs: Update the filename combobox when navigating through
8467           the ListView with the cursor keys. Fixes part 7 of bug #78446.
8468
8469 2006-05-22  Mike Kestner  <mkestner@novell.com>
8470
8471         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
8472         Fixes #78463.
8473
8474 2006-05-22  Mike Kestner  <mkestner@novell.com>
8475
8476         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
8477         requests. Fix a misspelled parameter and a copy paste exception error
8478         in Select.
8479
8480 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
8481
8482         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
8483           to get the same width/height (5/13) on X11 as the default font has on
8484           win32. This means that our DefaultFont emSize is smaller than the 
8485           the MS SWF equivalent (even thought the width/height stays the same)
8486
8487 2006-05-20  Jackson Harper  <jackson@ximian.com>
8488
8489         * MdiClient.cs:
8490         * MdiWindowManager.cs:
8491         * InternalWindowManager.cs: Make sure to use the border width from
8492         the theme.
8493
8494 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
8495
8496         * PrintDialog.cs: Implements printer details
8497
8498 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
8499
8500         * FileDialog.cs: Added focus handling for PopupButtonPanel.
8501           Fixes part 1 and 2 of bug #78446
8502
8503 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
8504
8505         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
8506           instead of sticking to the first ever calculated value
8507
8508 2006-05-19  Mike Kestner  <mkestner@novell.com>
8509
8510         * ComboBox.cs: fix mouse motion selection to use MousePosition and
8511         PointToClient, since Capture is set. Fixes #78344.
8512
8513 2006-05-19  Mike Kestner  <mkestner@novell.com>
8514
8515         * ListView.cs: match MS behavior in Details view where items are not
8516         drawn if Columns.Count == 0. 
8517         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
8518         Use a separate pen to draw the check, since changing the width affects
8519         the box as well.  Fixes #78454.
8520
8521 2006-05-18  Miguel de Icaza  <miguel@novell.com>
8522
8523         * ListView.cs: ArgumentOutOfRangeException, single versions of the
8524         exception should throw the name of the invalid argument.
8525
8526         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
8527         there are no files listed. 
8528
8529 2006-05-18  Jackson Harper  <jackson@ximian.com>
8530
8531         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
8532         up.
8533
8534 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
8535
8536         * Control.cs: Brought back our old UpdateZOrder method as a private
8537           function and switched our calls from UpdateZOrder to the new one.
8538           This fixes the Paint.Net canvas disappearing bug.
8539
8540 2006-05-18  Jackson Harper  <jackson@ximian.com>
8541
8542         * Theme.cs:
8543         * ThemeWin32Classic.cs:
8544         * InternalWindowManager.cs: Move the drawing into the theme,
8545         expose everything the theme should need from the window manager.
8546
8547 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8548
8549         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
8550           from the call to NativeWindow to avoid walking up the parent chain
8551           further than needed (speeds up setting cursors and avoids setting
8552           the wrong cursor if a parent has another cursor defined)
8553         * Cursor.cs: When loading an icon as cursor, MS uses the center of
8554           the icon as hotspot, not what's contained as hotspot in the icon
8555           file. This fixes the perceived drawing offset seen with Paint.Net
8556         
8557 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
8558
8559         * XplatUIX11.cs: 
8560           - Store the calculated rectangle in Hwnd object and use it when 
8561             setting the client size
8562           - Force Toolwindows to always be type Dock, to ensure they're on top
8563
8564 2006-05-18  Mike Kestner  <mkestner@novell.com>
8565
8566         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
8567         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
8568         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
8569         Substantial refactoring to remove confusing nested classes. Coding
8570         standard and Get+Set->property refactorings.  Shift to index based
8571         highlighting in ComboListBox instead of constantly using IndexOf and
8572         Items[]. Add invalidations on resize for DropDownList to fix ugliness
8573         in FileDialog growth.  Draw borders manually since Simple mode needs
8574         to look like two independent controls.  Make listbox border
8575         conditional to DropDownStyle.  Improved OwnerDraw support.
8576
8577 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
8578
8579         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
8580         Don't set the disposed graphics to null, so we can throw the "right"
8581         exception if the graphics is reused later (added a flag to avoid 
8582         double disposing). Some behaviours are different under 2.0 and are
8583         filled under bug #78448.
8584
8585 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
8586
8587         * Control.cs: When double-buffering is enabled, we need to reset
8588           our graphics context between paint calls. Otherwise, any 
8589           transformations and other alterations on the context will 
8590           become cumulative (#77734)
8591
8592 2006-05-18  Mike Kestner  <mkestner@novell.com>
8593
8594         * ListView.cs: do focused item selection like MS on clicks. 
8595         Rework focus handling for ItemControl so LostFocus invalidates as
8596         well.
8597         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
8598         the ListView ItemControl has focus.
8599
8600 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
8601
8602         * XplatUIX11.cs: If client_window ends up being width or height zero
8603           due to border settings, move it off window inside whole_window (#78433)
8604
8605 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8606
8607         * Mime.cs: Shrink the mime file cache correctly.
8608
8609 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
8610
8611         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
8612
8613 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8614
8615         * XplatUIX11.cs (AddExpose): More sanity checks
8616
8617 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8618
8619         * XplatUIX11.cs:
8620           - AddExpose: Don't add expose ranges outside the size of our
8621             window
8622           - Cast opacity values to Int32 to avoid crashes with certain
8623             values
8624           - Added disabled code paths that protect against illegal cross-
8625             thread painting (Developers.exe)
8626
8627 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8628
8629         * ProgressBar.cs: Invalidate the control when it's resized
8630           since block size is based on control size. (#78388)
8631
8632 2006-05-16  Miguel de Icaza  <miguel@novell.com>
8633
8634         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
8635         of setting the incoming argument to the "reset" value, we set the
8636         this.datamember to string.empty (before we were invalidating the
8637         incoming data).   
8638
8639         Fixes 78420
8640
8641 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8642
8643         * Form.cs: Only apply transparency settings after the form
8644           is created. (Fixes #77800)
8645
8646 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
8647
8648         * ApplicationContext.cs: Grab the HandleDestroyed event so
8649           we know when to fire OnMainFormClosed 
8650
8651 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8652
8653         * Application.cs: Introduced sub-class to allow tracking of
8654           threads and centralized triggering of the event mess for
8655           ThreadExit, AppExit, etc..  (#76156)
8656
8657 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
8658
8659         * MimeIcon.cs:
8660           - Do not return a null icon index value for a mime subclass.
8661             Instead try the main mime type class too.
8662           - Seems that some newer distributions don't have a link to some
8663             gnome default icons anymore. So check the default gnome dir too.
8664           
8665
8666 2006-05-16  Jackson Harper  <jackson@ximian.com>
8667
8668         * MdiClient.cs: Don't paint the parent background image if we have
8669         our own background image.
8670
8671 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
8672
8673         * Control.cs:
8674           - PerformLayout: Do not shrink space filled by DockStyle.Fill
8675             controls, all filled controls are supposed to overlap (#78080)
8676           - UpdateZOrder is supposed to update the control's z-order in the
8677             parent's z-order chain. Fixed to behave like that
8678           - BringToFront: Removed obsolete code
8679           - SendToBack: Simplyfied
8680           - SetChildIndex: Trigger layout calculations when Z-order changes
8681             since layout is done by z-order
8682
8683 2006-05-16  Chris Toshok  <toshok@ximian.com>
8684
8685         [ fixes bug #78410 ]
8686         * DataGrid.cs (set_AlternatingBackColor): use
8687         grid_drawing.InvalidateCells instead of Refresh().
8688         (set_BackColor): call grid_drawing.InvalidateCells.
8689         (set_BackgroundColor): use Invalidate instead of Refresh.
8690
8691         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
8692         invalidate the cell area.
8693
8694 2006-05-15  Chris Toshok  <toshok@ximian.com>
8695
8696         [ fixes bug #78011 ]
8697         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
8698         on to DataGridPaintRow.
8699         (DataGridPaintRow): take a clip argument, and only draw the cells
8700         which intersect it.  same with the not_usedarea.
8701
8702         * Theme.cs (DataGridPaintRow) add @clip parameter.
8703
8704         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
8705         XplatUI.ScrollWindow.
8706         (ScrollToRow): same.
8707
8708         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
8709         with last column which was causing a gray swath to appear with the
8710         XplatUI.ScrollWindow code.
8711
8712 2006-05-15  Chris Toshok  <toshok@ximian.com>
8713
8714         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
8715         use XplatUI.ScrollWindow.
8716         (VerticalScrollEvent): use XplatUI.ScrollWindow.
8717
8718 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
8719
8720         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
8721
8722 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8723
8724         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
8725           file since there are no equivalent X11 cursors
8726
8727 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8728
8729         * MonthCalendar.cs : DateTimePicker should reflect selected date
8730           on mouse*up*, not mouse*down*. Fixed originally reported part of
8731           bug #76474.
8732
8733 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
8734
8735         * TabControl.cs : When argument index is equal or more than tab
8736           count, just ignore. Fixed bug #78395.
8737
8738 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
8739
8740         * Control.cs: Dispose all child controls when control is diposed (#78394)
8741
8742 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8743
8744         * ColorDialog.cs: Finally it is possible to select the color with
8745           the text boxes
8746
8747 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8748
8749         * PrintDialog.cs: Fix typo
8750
8751 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
8752
8753         * PrintDialog.cs: PrintDialog is not resizable
8754         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
8755           color. Made some ToolBar drawing methods protected virtual.
8756
8757 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
8758
8759         * PrintDialog.cs: Implementation of the PrintDialog
8760
8761 2006-05-12  Chris Toshok  <toshok@ximian.com>
8762
8763         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
8764         thumb, instead use MoveThumb.  This has the side effect of making
8765         most of the other thumb moving machinery use MoveThumb as well.
8766         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
8767         need to actually invalidate the rectangle where the new thumb will
8768         go.
8769         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
8770         We force an Update() after, so it's not as fast as it could be,
8771         but at least there's zero flicker and no droppings.
8772         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
8773         (UpdateThumbPos): add another argument (dirty), which says whether
8774         or not to calculate/add dirty regions which we later invalidate.
8775         For cases where we know we're going to use MoveThumb, we pass
8776         false for this.  Otherwise, pass true.
8777
8778 2006-05-12  Jackson Harper  <jackson@ximian.com>
8779
8780         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
8781         the status bar.
8782         
8783 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
8784
8785         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
8786           and GetClipRegion methods and UserClipWontExposeParent property.
8787         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
8788           overriding UserClipWontExposeParent property, setting to false, since
8789           Win32 handles the required expose messages to draw our clipped parent
8790           areas internally
8791         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
8792           PaintEventStart to set the user clip region if set.
8793         * Control.cs: 
8794           - Now internally tracking the Region for the control since we need to
8795             store it if the handle is not yet created and only set it when it
8796             becomes created. Before setting the region forced handle creation
8797           - Added code to draw the parents underneath a user-clipped region
8798         * Hwnd.cs: Added UserClip property
8799
8800 2006-05-12  Chris Toshok  <toshok@ximian.com>
8801
8802         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
8803         (set_Maximum): same.
8804         (set_Minimum): same.
8805         (set_SmallChange): same.
8806         (OnMouseUpSB): remove the call to refresh when releasing the
8807         thumb.  We shouldn't need it.
8808         
8809 2006-05-12  Miguel de Icaza  <miguel@novell.com>
8810
8811         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
8812         AutoSize set to None, we do not need to relayout everything, we
8813         just need to invalidate the current region.
8814
8815         (Draw): Do not draw the entire ClientArea, just redraw the
8816         clip area being passed.
8817
8818         * MdiClient.cs: Make MdiClient constructor with the Form argument
8819         internal. 
8820
8821 2006-05-12  Jackson Harper  <jackson@ximian.com>
8822
8823         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
8824         parents background image,  but strangely not their own.
8825         - (DrawStatusBarPanel): Take into account horizontal alignment
8826         when drawing the strings and icons.
8827
8828 2006-05-12  Mike Kestner  <mkestner@novell.com>
8829
8830         * ListBox.cs: avoid invalidations for focus when the collection is
8831         empty. 
8832
8833 2006-05-12  Chris Toshok  <toshok@ximian.com>
8834
8835         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
8836         invalidate the entire thumb area.  Call InvalidateDirty which
8837         limits the redraw to the thumb itself and surrounding pixels.
8838
8839         * XplatUIX11.cs (ScrollWindow): optimize copying.
8840         
8841 2006-05-12  Chris Toshok  <toshok@ximian.com>
8842
8843         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
8844         Figure out the positioning/layout in a single pass instead of
8845         multiple recursive invocations.  Speeds up the initial display of
8846         the data grid.  Also, make many things private that were
8847         originally public but unused outside this class.
8848
8849 2006-05-11  Jackson Harper  <jackson@ximian.com>
8850
8851         * MdiClient.cs: Improved layout code.
8852
8853 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
8854
8855         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
8856           not SelectedObject.
8857
8858 2006-05-11  Chris Toshok  <toshok@ximian.com>
8859
8860         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
8861         union of that will always be {0,0,width,height}.
8862
8863 2006-05-11  Jackson Harper  <jackson@ximian.com>
8864
8865         * Form.cs: Match MS's DefaultSize for forms (they must have
8866         changed the size in sp2).
8867
8868 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8869
8870         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
8871
8872 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
8873
8874         * TextControl.cs : Fixed bug #78109. This incorrect position
8875           comparison caused crash on automatic line split.
8876         * TextBoxBase.cs : reduce duplicate code.
8877
8878 2006-05-10  Jackson Harper  <jackson@ximian.com>
8879
8880         * MdiClient.cs: Active form is only sent to the back when using
8881         the Next form functionality, when a form is clicked the current
8882         active shouldn't be sent to the back.
8883         - Layout the mdi windows when the container is first made visible.
8884         * Form.cs: Give the MdiClient a ref to the containing form when we
8885         create it.
8886         
8887 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8888
8889         * LinkLabel.cs : link_font could be uninitialized, so populate one
8890           before actual use. Fixed bug #78340.
8891
8892 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
8893
8894         * XplatUIX11.cs : clipboard format native value is IntPtr.
8895           Fixed bug #78283.
8896
8897 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8898
8899         * Control.cs: 
8900           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
8901             which is passed up the parent chain by DefWndProc
8902           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
8903             to DefWndProc (#77956)
8904         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
8905
8906 2006-05-10  Jackson Harper  <jackson@ximian.com>
8907
8908         * MdiClient.cs: We need to remove the controls from the mdi
8909         collection, when we close the window.
8910         * MdiWindowManager.cs: Special handling of closing mdi windows.
8911         * InternalWindowManager.cs: Make the close method virtual so the
8912         mdi window manager can handle it specially.
8913
8914 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
8915
8916         * DataGrid.cs:
8917           - Recalculate grid when the data source has changed
8918           - Matches styles provided by user from all data sources types
8919         * DataGridTableStyle.cs: For columns that provided by the user set the
8920         with the preferred value is there was unassigned.
8921         * CurrencyManager.cs: throw OnItemChanged event
8922
8923 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
8924
8925         * PictureBox.cs: Don't animate until handle is created. Start animation
8926           when handle is created.
8927
8928 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8929
8930         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
8931           current codebase.
8932         * XEventQueue.cs: We don't need to provide the extra info
8933
8934 2006-05-10  Jackson Harper  <jackson@ximian.com>
8935
8936         * MdiClient.cs: If the mdi clients parent form has a background
8937         image set, we draw that background image for the mdi area's
8938         background.
8939
8940 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
8941
8942         * TextBoxBase.cs: Set IBeam cursor (#78347)
8943
8944 2006-05-10  Mike Kestner  <mkestner@novell.com>
8945
8946         * ToolBar.cs: fix some text padding issues with ButtonSize
8947         calculation. Update the default size to match MS documentation.
8948         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
8949         button size. Fixes #78296.
8950
8951 2006-05-10  Mike Kestner  <mkestner@novell.com>
8952
8953         * ListBox.cs: use is_visible for scrollbar positioning in case the
8954         control isn't on screen yet.  Fix off by one with Right vs Width
8955         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
8956         
8957 2006-05-10  Jackson Harper  <jackson@ximian.com>
8958
8959         * X11Dnd.cs: Drop to a control with another control on top of it.
8960         * ToolBar.cs: Work on a copy of the buttons list, so that it can
8961         be modified in click handlers. TODO: Look for similar problems in
8962         other controls.
8963
8964 2006-05-09  Jackson Harper  <jackson@ximian.com>
8965
8966         * Form.cs: Window managers need the old window state when setting
8967         window state now.
8968         * InternalWindowManager.cs: Allow the base mdi window manager to
8969         handle more of the MDI only stuff (like maximize buttons).
8970         * MdiWindowManager.cs: Fix some snafus in changing the window
8971         state.  Add all the menu functionality, for both popup and
8972         maximized menus.
8973         * MdiClient.cs: When a new form is selected the currently
8974         activated form is sent to the back, this matches MS.
8975         - Implement a new method to activate the next mdi child window.
8976
8977 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
8978
8979         * Control.cs: 
8980           - Added new InternalCapture method to allow controls to prevent
8981             the capture behaviour on the click handlers
8982           - Switched to use InternalCapture
8983         * ComboBox.cs:
8984           - Using InternalCapture to prevent mouse captures from being released
8985             on mouse button release (Fixes #78100)
8986         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
8987           returns Form borders if a caption is present. (Fixes #78310)
8988
8989 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
8990
8991         * TreeNode.cs: Changed serialization .ctor to not require every field
8992           to be present. (#78265)
8993         * OwnerDrawPropertyBag.cs: Added serialization .ctor
8994
8995 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
8996
8997         * MimeIcon.cs: for is faster than foreach for strings.
8998
8999 2006-05-05  Mike Kestner  <mkestner@novell.com>
9000
9001         * CheckedListBox.cs: update check handling code to not use selected.
9002         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
9003         behavior for visual feedback, motion response, shift/ctrl handling,
9004         and properly deal with all 4 selection modes. Updates to bounds
9005         handling logic.  Add scroll wheel support. [Fixes #77842]
9006
9007 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
9008
9009         * ListView.cs:
9010           - Moved adding of Implicit controls into .ctor. That way, subsequent
9011             creation of the controls will not cause them to think they are 
9012             toplevel windows (fixes #78200 header problem)
9013           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
9014           - Switched visibility setting of header control to use internal field
9015             to avoid triggering handle creation
9016           - Now checking if handle is created before causing a refresh when items
9017             are added (This makes us now match handle creation time with MS)
9018         * Splitter.cs: Removed loading of private splitter cursor, switched to
9019           Cursors version now that that is loading the right ones
9020         * Cursors.cs: Load proper splitter cursors from resources
9021         * Cursor.cs: Added second method of loading resource cursors for the 
9022           VS.Net users amongst us
9023
9024 2006-05-05  Mike Kestner  <mkestner@novell.com>
9025
9026         * ListView.cs: give header_control a minimum size based on the
9027         ListView size.
9028
9029 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
9030
9031         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
9032           window seems to do that with metacity, so set that type. (#78120)
9033
9034 2006-05-05  Mike Kestner  <mkestner@novell.com>
9035
9036         * ListViewItem.cs: fix Details mode checkbox layout bug.
9037         * ThemeWin32Classic.cs: draw a ListView column header for unused space
9038         at the end of the header, if it exists. [Fixes for #78200]
9039
9040 2006-05-04  Jackson Harper  <jackson@ximian.com>
9041
9042         * MdiClient.cs: Add a helper property to get the container form.
9043         * MdiWindowManager.cs: We have to make sure to use the menu origin
9044         when drawing the icons and buttons, this fixes maximized window
9045         icons/buttons on win32.
9046         * InternalWindowManager.cs: Reset the restore captions when a
9047         window goes from Maximized to Minimized and vice versa. Move the
9048         DrawMaximizedButtons into the MdiWindowManager source, tool
9049         windows can't be maximized. NOTE: This could use a little
9050         refactoring if time ever permits.
9051         
9052 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
9053
9054         * TextBox.cs: Add MWFCategoryAttributes
9055         * TextBoxBase.cs: Add MWFCategoryAttributes
9056         * Form.cs: Add MWFCategoryAttributes
9057
9058 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
9059
9060         * Control.cs: Add MWFCategoryAttributes
9061         * ScrollableControl.cs: Add MWFCategoryAttributes
9062
9063 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
9064
9065         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
9066           Divider is true. Fix a little glitch in PropertyToolBar
9067           drawing code
9068
9069 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
9070
9071         * Control.cs:
9072           - Dispose: Call base.Dispose, this causes the disposed event
9073             to be fired (and probably other, more important stuff)
9074           - SetVisibleCore: Set is_visible to true after creating the
9075             window so that the window still gets created invisible (if
9076             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
9077             to generate a WM_ACTIVE message
9078         * Form.cs: Call Dispose when we want to destroy the window, instead of
9079           just destroying the handle (Dispose will do that for us)
9080         * XplatUIX11.cs:
9081           - RootWindow also needs a queue, so we can properly process the
9082             property change events from RootWindow (like Activate)
9083           - Generatic synthetic WM_ACTIVE message when the active window is
9084             being destroyed
9085
9086 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
9087
9088         * LinkLabel.cs: Trigger a recalc of our label dimensions when
9089           bounds are changed
9090
9091 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
9092
9093         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
9094           for determining width and height (image might not be assigned if
9095           we're drawing an imagelist)
9096
9097 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
9098
9099         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
9100         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
9101           height from system
9102         * Theme.cs: No longer returns hardcoded menu height, instead calls
9103           new driver method
9104         * Form.cs (OnLoad): Scaling happens before triggering Load events 
9105           on MS (# 78257)
9106
9107 2006-05-01  Mike Kestner  <mkestner@novell.com>
9108
9109         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
9110
9111 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
9112
9113         * TextBoxBase.cs: Removed Fixme
9114         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
9115
9116 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
9117
9118         * XplatUIX11.cs:
9119           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
9120             the rectangle relative to the parent, considering borders. We
9121             don't really want that.
9122           - ScrollWindow: Fixed warning to be more understandable
9123         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
9124           scrollbars and scroll only the visible area
9125         * RichTextBox.cs: Removed debug output
9126
9127 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9128
9129         * NumericUpDown.cs (Text): Just use base
9130         * UpDownBase.cs: Ensure txtView is created before using it
9131
9132 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9133
9134         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
9135           casting to IntPtr to avoid 64bit overflow errors
9136
9137 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9138
9139         * Control.cs:
9140           - AllowDrop: Don't force handle creation.
9141           - CreateHandle: Added call to tell driver if we're allowed to drop
9142
9143 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9144
9145         * FileDialog.cs: Remember the last directory not only for the
9146           current instance but also for new FileDialog instances.
9147
9148 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
9149         
9150         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
9151           broke sending async messages
9152
9153 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
9154
9155         * XplatUIX11.cs:
9156           - ScrollWindow: Fixed method. We finally generate expose events again
9157             for scrolled areas. This was causing 'garbage' when scrolling
9158             textbox and other controls that used ScrollWindow
9159           - Switched from using the regular queue for paint events to the MS 
9160             model of 'generating' paint events when the queue is empty.
9161             We use the new XQueueEvent.Paint subclass to store which windows
9162             need painting.
9163           - AddExpose now takes the x/y/width/height of the exposed area
9164             and inserts the window into the paint queue if not already there
9165           - InvalidateWholeWindow: Switched to use new AddExpose method
9166           - UpdateMessageQueue: Added which queue to monitor for paint events
9167           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
9168             the unlikely case nothing above handles it. We reset the expose
9169             pending states to get them off the queue.
9170           - GetMessage: Now pulls a paint event if no other events are in the
9171             queue
9172           - Invalidate: Switched to new AddExpose method
9173           - PeekMessage: Updated to understand pending paint events
9174           - UpdateWindow: Fixed logic bug. We were only updating if the window
9175             didn't need updating. Also switched to sending WM_PAINT directly,
9176             like MS does.
9177         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
9178           and random access Remove(). The random access is needed to handle
9179           UpdateWindow() where a WM_PAINT is sent directly without accessing
9180           the queue.
9181         * ScrollBar.cs: Added Update() calls to cause immediate updates to
9182           allow for better feedback when scrolling. Scrollbars are small and
9183           the immediate update should make it 'feel' more responsive without
9184           slowing things down. ScrollBar still needs it's invaliate logic
9185           updated to not always invalidate the whole bar on certain changes.
9186
9187 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9188
9189         * Control.cs:
9190         (BackColor): if the control does not support a transparent background,
9191         return the default backcolor when the parent backcolor is transparent.
9192
9193 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
9194
9195         * Application.cs: Updated to new StartLoop/GetMessage API
9196         * RichTextBox.cs: Provide some output on RTF parsing errors
9197         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
9198           new queue_id argument to GetMessage and PeekMessage to allow faster
9199           handling of per-thread queues in drivers.
9200         * Hwnd.cs: Added Queue tracking and property
9201         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
9202         * XEventQueue.cs: Added thread trackingA
9203         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
9204         * XplatUIX11.cs:
9205           - Implemented new per-thread queue
9206           - GetMessage: Fixed return/break behaviour on several cases. We were
9207             returning stale messages in some cases, instead of just processing
9208             the next message
9209
9210 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9211
9212         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
9213
9214 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
9215
9216         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
9217           fixed off-by-one comparisons between Width/Height and Right/Bottom.
9218
9219 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
9220
9221         * PropertyGridView.cs: Fix drop down width.
9222
9223 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9224
9225         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
9226           a mess in DrawToolBar, so I removed one of them.
9227
9228 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
9229
9230         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
9231           needed (clip). Otherwise we get artifacts.
9232
9233 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9234
9235         * FixedSizeTextBox.cs: Added constructor to allow specifying which
9236           dimension is fixed
9237         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
9238           and switched FixedSizeTextBox to only be fixed vertical (#78116)
9239         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
9240           if it matches the scale base font (avoids unneeded scaling)
9241
9242 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9243
9244         * X11DesktopColors.cs: One gtk_init_check should be enough
9245
9246 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
9247
9248         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
9249           match MS behaviour
9250
9251 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
9252
9253         * TextBoxBase.cs: 
9254           - Generate OnTextChanged for Backspace even if we're only deleting
9255             the current selection
9256           - When setting the Text property, only select all text if the
9257             control does not have focus when it is being set. Otherwise
9258             just place the cursor at the beginning of the control
9259
9260 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
9261
9262         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
9263           Added a little helper to draw PropertyGrid ToolBar with a different
9264           border and a different BackColor.
9265         * PropertyGrid.cs: Some background parts didn't get painted with the
9266           correct background color. Added a class that helps us to draw the
9267           correct border for PropertyGridView and a class that helps us to
9268           draw ToolBars with a different backcolor
9269         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
9270
9271 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
9272
9273         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
9274         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
9275
9276 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9277
9278         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
9279           into the palette entries. Also, since we're working on a copy
9280           we needed to copy the palette back onto the bitmap.
9281         * Cursor.cs: Same fix as XplatUIWin32.cs.
9282
9283 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
9284
9285         * ImageListStreamer.cs: Need to read the var (or we're off)
9286
9287 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
9288
9289         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
9290           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
9291           TextBoxBase.cs: Unused var fixes
9292         * AxHost.cs: Small 2.0 fix
9293         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
9294           as it seems that is what at least Metacity expects. This will make
9295           icons show up on 64bit platforms. We still have some 64bit size
9296           issues, though, since the startup app window size still won't match.
9297
9298 2006-04-25  Mike Kestner  <mkestner@novell.com>
9299
9300         * *.cs: cleanup newly reported exception var unused warnings.
9301
9302 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9303
9304         * ThemeWin32Classic.cs: Button image alignment now matches exactly
9305           ms
9306
9307 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9308
9309         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
9310           image. The image position is always the same, no matter if the
9311           button is pressed or not.
9312
9313 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
9314
9315         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
9316           selection and set the correct filename for SaveFileDialog.
9317           Patch by Emery Conrad.
9318
9319 2006-04-24  Mike Kestner  <mkestner@novell.com>
9320
9321         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
9322         check for item.X outside the ClientRect instead of item.Y. Fixes
9323         #78151.
9324
9325 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9326
9327         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
9328         trust that value blindly and do some sanity check. Fixes bug #77814.
9329
9330 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9331
9332         * ImageListStreamer.cs: save the mask as a 1bpp image.
9333
9334 2006-04-21  Mike Kestner  <mkestner@novell.com>
9335
9336         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
9337         pass Checked and Indeterminate to the Theme Engine. Improve
9338         encapsulation with ListBox.
9339         * ListBox.cs: Keep a StringFormat instead of calculating it every item
9340         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
9341         nested types.  Move all CheckState functionality to CheckedListBox.
9342         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
9343         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
9344         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
9345         single base list. Fix scrollbar sizing and placement to mirror MS.
9346         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
9347         used.
9348         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
9349         for CheckedListBox by using new DrawItemState info.  Center the
9350         checkboxes on the items. Use new StringFormat property.
9351
9352 2006-04-18  Jackson Harper  <jackson@ximian.com>
9353
9354         * Form.cs: MdiChildren don't do default locations the same way as
9355         regular forms.  This prevents a crash when trying to position the
9356         mdi windows.
9357
9358 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
9359
9360         * PropertyGridTextBox.cs: Formatting, copyright
9361         * PropertiesTab.cs: Formatting
9362         * PropertyGrid.cs: Formatting
9363         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
9364           click toggling of values
9365           
9366 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
9367
9368         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
9369         * Control.cs (.ctor): verify_thread_handle is static, don't reset
9370           every time a control is created
9371         * Application.cs: Removed obsolete EnableRTLMirroring method
9372
9373 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
9374
9375         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
9376         SelectedIndex to -1. Fixes bug #78121.
9377
9378 2006-04-17  Jackson Harper  <jackson@ximian.com>
9379
9380         * Binding.cs: Handle null values for Current and BindingContext.
9381         This occurs when binding is a little delayed.
9382         * CurrencyManager.cs: return null for Current when there are no
9383         items in the list.
9384         - Hookup to the listchanged event on the DataView and update
9385         bindings when the list is changed.  This fixes late binding of
9386         controls.
9387
9388 2006-04-17  Jackson Harper  <jackson@ximian.com>
9389
9390         * X11Dnd.cs:
9391         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
9392         Ringenbach.
9393
9394 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
9395
9396         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
9397           place
9398         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
9399           with the correct ButtonState
9400
9401 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
9402
9403         * XplatUIX11.cs: Improved distinguishing between window types to
9404           tell the WM a type closer to what the app wants (Fixes #78107)
9405
9406 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
9407
9408         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
9409           GrabHandle
9410
9411 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
9412
9413         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
9414           drawing code to reflect the size grip changes
9415
9416 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9417
9418         * ImageListStreamer.cs: fix handling of the mask that follows the main
9419         bitmap when deserializing and serialize it properly. The generated mask
9420         should better be a 1bpp image, but I'll do that later.
9421
9422 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
9423
9424         * FileDialog.cs: Show something in the DirComboBox on *nix if the
9425           path doesn't fit into some of our Current.Places
9426
9427 2006-04-13  Jackson Harper  <jackson@ximian.com>
9428
9429         * ComboBox.cs: Use borders instead of drawing our own decorations,
9430         try to obey correct rules for heights.
9431         * Theme.cs:
9432         * ThemeNice.cs:
9433         * ThemeClearLooks.cs:
9434         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
9435         this is now handled by borders.
9436         - Remove unused DrawListBoxDecorationSize method.
9437         
9438 2006-04-13  Mike Kestner  <mkestner@novell.com>
9439
9440         * MenuAPI.cs: null guarding for the disbled click check fixes crash
9441         reported by Alex.
9442
9443 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
9444
9445         * ThemeWin32Classic.cs: 
9446           - Fixed CPDrawStringDisabled
9447           - Corrected drawing of disabled menu items
9448           - Fixed drawing of disabled radio buttons (bug #78095)
9449           - Draw check in a disabled CheckBox with color ControlDark 
9450
9451 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9452
9453         * Form.cs: Use the provided width when calculating the menu size;
9454           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
9455           and ClientSize.Width won't be updated yet
9456         * Application.cs: Use Visible instead of Show() to make form visible,
9457           this way we create the handle later and menusize is considered
9458
9459 2006-04-12  Mike Kestner  <mkestner@novell.com>
9460
9461         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
9462         reporting.
9463
9464 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9465
9466         * TextBox.cs: Implemented context menu
9467
9468 2006-04-12  Mike Kestner  <mkestner@novell.com>
9469
9470         * ListView.cs: implement box selection. fixes #77838.
9471         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
9472
9473 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
9474
9475         * XplatUIX11.cs: Added setting of window type when transient window
9476           is created (metacity would move it otherwise)
9477         * X11Structs.cs: Added WINDOW_TYPE atoms
9478         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
9479           background (the control is Opaque but still wants transparent
9480           backgrounds)
9481
9482 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9483
9484         * Control.cs: Added OnPaintBackgroundInternal to allow controls
9485           that set Opaque but don't mean it (like all ButtonBase-derived
9486           controls) to still draw their background
9487         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
9488           the background
9489
9490 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
9491
9492         * Control.cs (PaintControlBackground): Set the graphics object
9493           on our PaintEvent to null to prevent it from being disposed
9494           when the PaintEvent gets disposed
9495
9496 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
9497
9498         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
9499         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
9500
9501 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
9502
9503         * Control.cs: 
9504           - Added transparency check to BackColor property. Transparent
9505             backgrounds are only allowed if the control styles permit it
9506           - Added recursive painting of parent control background and
9507             foreground if a control with a transparent backcolor is drawn
9508             (Thanks to Tim Ringenback for providing his 'hack' as a base
9509              for this patch) Fixes #77985 and #78026.
9510           - Added Opaque style check before calling OnPaintBackground, no
9511             need to draw the background if the control is opaque
9512           - Removed ControlAccessibleObject owner variable (inherited from
9513             base, no need to define again)
9514           - Added some documentation links explaining the drawing events
9515             and styles
9516
9517 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
9518
9519         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
9520           that the affected control is the located at the left border of our
9521           parent (Fixes #77936)
9522
9523 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9524
9525         * TextBoxBase.cs: When rendering disabled or readonly controls,
9526           draw the background with 'Control' instead of 'Window' color as
9527           long as the user hasn't specifically set a color
9528
9529 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
9530
9531         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
9532           since that won't be updated if the user types text (only if it's
9533           programatically set)
9534
9535 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9536
9537         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
9538           layout changes do to app-triggered resizes will have the proper
9539           display rectangle for layout
9540
9541 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
9542
9543         * ThemeWin32Classic.cs:
9544           - Make use of the SystemBrushes and SystemPens wherever possible
9545           - Corrected some highlight colors
9546           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
9547             drawing
9548         * Theme.cs: Added Empty field to CPColor struct
9549
9550 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
9551
9552         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
9553           is displayed when calculating the display rectangle. Thanks to Mike
9554           for teaching me the err of my ways.
9555
9556 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
9557
9558         * ScrollableControl.cs:
9559           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
9560             (instead of 0,0) and we now return the real width/height instead of
9561             just the clientrectangle, adjusted for padding. The rectangle is
9562             now cached and created by the new CalculateDisplayRectangle method.
9563           - Created new CalculateDisplayRectange method, which basically does
9564             what get_DisplayRectangle() did originally, but now using the 
9565             right edge instead of DisplayRectangle to determine the size of
9566             our scrollbars
9567           - get_Canvas(): Fixed it to properly calculate canvas for 
9568             right/bottom controls which seem to be placed to the right/bottom
9569             of any controls that have a fixed location
9570           - Removed TODO that's taken care of
9571           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
9572             and SetDisplayRectLocation according to new MSDN2 docs
9573           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
9574             event when that is called, this is added for compatibility
9575           - ScrollControlIntoView(): Implemented.
9576           - Switched scrollbars to be implicit, they shouldn't be selectable
9577         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
9578           call it when the active control is set/changed
9579         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
9580         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
9581           implicit_control variable (used for native Win32 message generation)
9582         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
9583           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
9584         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
9585         * XplatUIStructs.cs: Added ScrollBarCommands enum
9586
9587 2006-04-10  Jackson Harper  <jackson@ximian.com>
9588
9589         * ButtonBase.cs:
9590         * CheckedListBox.cs:
9591         * ComboBox.cs:
9592         * DataGrid.cs:
9593         * DataGridView.cs:
9594         * Form.cs:
9595         * GroupBox.cs:
9596         * ListBox.cs:
9597         * PrintPreviewControl.cs:
9598         * ProgressBar.cs:
9599         * PropertyGrid.cs:
9600         * Splitter.cs:
9601         * StatusBar.cs:
9602         * TrackBar.cs:
9603         * UpDownBase.cs: Fixup base event overrides.
9604         
9605 2006-04-06  Mike Kestner  <mkestner@novell.com>
9606
9607         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
9608         all user-initiated value changes to min <= value <= max-thumbsz+1.
9609         (set_Value): check for vert/horiz when calculating new thumb position.
9610         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
9611         like MS does.
9612         (OnMouseMoveSB): refactor the thumb dragging code and refine
9613         invalidation logic to reduce flicker.
9614         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
9615         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
9616         (UpdateThumbPosition): small code readability cleanup
9617
9618 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
9619
9620         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
9621           different
9622
9623 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9624
9625         * ThemeNice.cs: Use a better graphics effect when a button is pressed
9626
9627 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
9628
9629         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
9630         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
9631           This dramatically reduces the number of Pen.Dispose calls. 
9632           Where possible call ResPool methods only once instead of calling it
9633           over and over again (for example for the same color).
9634
9635 2006-04-06  Mike Kestner  <mkestner@novell.com>
9636
9637         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
9638         Also remove an unused private field on the collection. Fixes #77972.
9639
9640 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9641
9642         * ThemeNice.cs: Added ToolBar drawing code
9643
9644 2006-04-06  Mike Kestner  <mkestner@novell.com>
9645
9646         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
9647         I'm assuming that means we need to look up the toplevel for the
9648         provided control. Fixes the crash trace in #77911 but exposes another
9649         crash in some strange reflection usage in NDocGui.
9650
9651 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
9652
9653         * ThemeNice.cs: Gave it a little silver touch and added Images
9654           method
9655         * FontDialog.cs: FontDialog is not resizable
9656         * FileDialg.cs: Added SizeGripStyle.Show
9657
9658 2006-04-05  Jackson Harper  <jackson@ximian.com>
9659
9660         * KeyboardLayouts.cs: Remove warning.
9661
9662 2006-04-05  Jackson Harper  <jackson@ximian.com>
9663
9664         * Control.cs: Enable OnPaintInternal so we can use it for drawing
9665         all of our controls instead of Paint +=.
9666         * ListBox.cs:
9667         * ListView.cs:
9668         * MenuAPI.cs:
9669         * MessageBox.cs:
9670         * NotifyIcon.cs:
9671         * ProgressBar.cs:
9672         * ScrollBar.cs:
9673         * Splitter.cs:
9674         * StatusBar.cs:
9675         * TabControl.cs:
9676         * TextBoxBase.cs:
9677         * ToolBar.cs:
9678         * TrackBar.cs:
9679         * UpDownBase.cs:
9680         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
9681         use OnPaintInternal. Remove Width/Height and Visible checks in
9682         paint handler, this is done at a higher level now.
9683         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
9684         * PaintEventArgs.cs: Add a handled flag so controls that don't
9685         want anymore painting after OnPaintInternal can make sure OnPaint
9686         isn't called.
9687
9688 2006-04-05  Mike Kestner  <mkestner@novell.com>
9689
9690         * Form.cs: fix the menu WndProc hacks to respect the native enabled
9691         state of the form, so that we don't process events when Modal dialogs
9692         are up. Fixes #77922.
9693
9694 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
9695
9696         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
9697           checking is done.
9698
9699 2006-04-05  Mike Kestner  <mkestner@novell.com>
9700
9701         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
9702
9703 2006-04-05  Mike Kestner  <mkestner@novell.com>
9704
9705         * ListView.cs (HeaderMouseMove): null guarding for the over column
9706         when setting up the drag_to_index.  Fixes #78015.
9707
9708 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
9709
9710         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
9711           in the taskbar. Transient windows seem to accomplish that.
9712
9713 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
9714
9715         * Form.cs:
9716           - Re-enabled CreateParams.X/Y code for FormStartPosition
9717           - Added code for manual placement when creating the Control
9718           - Incomplete patch to treat MDI forms differently when
9719             setting the ClientSizeCore. (Still need to figure out handling
9720             x/y coords there)
9721         * XplatUIX11.cs:
9722           - When we're explicitly setting the X/Y position of a non-Child
9723             window, let the WM know. Metacity really wants this.
9724
9725 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9726
9727         * ThemeNice.cs: Added CPDrawButton
9728
9729 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9730
9731         * ThemeNice.cs: Changed the color for focused buttons and activated
9732           the arrows for small scroll buttons.
9733
9734 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
9735
9736         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
9737           anymore. Changed some method modifiers to protected (virtual)
9738         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
9739           changes
9740         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
9741           Updated drawing of menus, buttons and progressbars; added
9742           CPDrawBorder3D 
9743
9744 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
9745
9746         * ImageListStreamer.cs: implemented serialization/deserialization
9747         of the images.
9748
9749 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
9750
9751         * ThemeWin32Classic.cs:
9752           - Removed all the DrawFrameControl stuff; CPDrawButton,
9753             CPDrawCheckBox and CPDrawRadioButton are now handled directly
9754             inside the methods
9755           - Updated and corrected the drawing code of CPDrawButton,
9756             CPDrawCheckBox and CPDrawRadioButton to better match ms
9757           - Updated theme checkbox and radiobutton code to use the CP*
9758             methods
9759
9760 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9761
9762         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
9763           bug is fixed
9764
9765 2006-03-31  Jackson Harper  <jackson@ximian.com>
9766
9767         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
9768         sometimes.
9769         * UpDownBase.cs: Don't CreateGraphics manually, use a
9770         Refresh. Ideally we would invalidate the correct areas here.
9771
9772 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
9773
9774         * XplatUIX11.cs: 
9775           - We now track the mapping state of windows. If a window (or 
9776             one of it's parents) is not mapped we no longer permit
9777             WM_PAINT messages to be generated since we'd otherwise get 
9778             lots of BadMatch X errors. Jackson did all the work figuring
9779             out the problem.
9780           - Destroying the caret if the window it's contained in is 
9781             destroyed. Can't use regular DestroyCaret method since it
9782             might fall into a drawing function (trying to remove the
9783             caret) and with that generate new BadMatch errors. Again,
9784             Jackson tracked this down.
9785           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
9786             make sure we send the messages to all windows. (The old code
9787             would send the WM_DESTROY to the window, and then all child
9788             windows would be 'gone' because the WM_DESTROY handle lookup
9789             would no longer find the destroyed window)
9790         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
9791         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
9792
9793 2006-03-31  Jackson Harper  <jackson@ximian.com>
9794
9795         * ScrollableControl.cs: Dont recalc if we are not visible.
9796
9797 2006-03-31  Mike Kestner  <mkestner@novell.com>
9798
9799         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
9800         the visibility branch.
9801
9802 2006-03-31  Jackson Harper  <jackson@ximian.com>
9803
9804         * ScrollBar.cs: Cap values when incrementing/decrementing.
9805
9806 2006-03-31  Mike Kestner  <mkestner@novell.com>
9807
9808         * MenuAPI.cs: setup menu.tracker for popup/context menus.
9809         * ToolTip.cs: guard against timer expirations with no active control.
9810         Not sure why it happened.
9811
9812 2006-03-31  Mike Kestner  <mkestner@novell.com>
9813
9814         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
9815         text.
9816         * ToolTip.cs: Position the tooltip based on where the cursor is at
9817         popup time, not at MouseEnter time.  Add a Down state so that we don't
9818         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
9819         positioning offset. Lookup DisplaySize at positioning time, since it
9820         can theoretically change during invocation.
9821         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
9822         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
9823
9824 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9825
9826         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
9827           Fixes behaviour when the Text property of the box is String.Empty
9828
9829 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
9830
9831         * XplatUIX11.cs: Only send mouseleave for our client windows, not
9832           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
9833           a window)
9834
9835 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9836
9837         * FileDialog.cs: Visual enhancement for the popup buttons in 
9838           PopupButtonPanel
9839
9840 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
9841
9842         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
9843           code
9844
9845 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
9846
9847         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
9848           highlighted menu items to match ms
9849
9850 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
9851
9852         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
9853
9854 2006-03-30  Mike Kestner  <mkestner@novell.com>
9855
9856         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
9857         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
9858         go active to account for HotLight to Selected transition.
9859         * MenuItem.cs: add internal Selected prop. Fill out the Status
9860         property by calculating it from item info. Add HotLight,
9861         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
9862
9863 2006-03-30  Mike Kestner  <mkestner@novell.com>
9864
9865         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
9866
9867 2006-03-29  Jackson Harper  <jackson@ximian.com>
9868
9869         * Form.cs: Implement TODO.
9870
9871 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
9872
9873         * PrintPreviewDialog.cs: Implemented missing methods and events; still
9874           missing proper dialog setup in the constructor
9875
9876 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
9877
9878         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
9879         * Control.cs:
9880           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
9881           - Fixed ResetBindings and removed TODO
9882           - Added check for cross-thread calls to get_Handle()
9883           - Added Marshaller attribute for set_Font to satisfy class status
9884         * FontDialog.cs: Removed TODOs that seemed implemented
9885         * UpDownBase.cs: Removed unneeded TODO and Fixme
9886         * MessageBox.cs: Implemented support for Default button and removed TODO
9887         * FileDialog.cs: Removed obsolete TODO
9888         * DomainUpDown.cs: Removed obsolete TODO
9889         * ButtonBase.cs: Removed obsolete TODO
9890         * XplatUIWin32.cs: Removed obsolete TODO
9891         * Form.cs:
9892           - Removed obsolete TODO
9893           - Calling CheckAcceptButton when the acceptbutton is changed to allow
9894             internal status updates
9895           - Making sure the active control is selected when the control is created
9896         * CurrencyManager.cs: Removed obsolete TODO
9897
9898 2006-03-29  Mike Kestner  <mkestner@novell.com>
9899
9900         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
9901         of PrintPreviewDialog and RichTextBox.
9902
9903 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9904
9905         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
9906           DarkDark, Light and LightLight colors for a specific color
9907         * ThemeWin32Classic.cs:
9908           - Use Button drawing code to draw RadioButtons and CheckBoxes with
9909             Appearance = Button 
9910           - Make use of the new ResPool helper CPColor
9911           - Draw ProgressBar and StatusBar with correct 3D borders
9912
9913 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
9914
9915         * ColorDialog.cs: Return selected color. Fixes bug #77940.
9916
9917 2006-03-28  Mike Kestner  <mkestner@novell.com>
9918
9919         * ListView.cs: fix Icon layout to plan for scrollbar widths when
9920         calculating col/row counts.
9921
9922 2006-03-28  Mike Kestner  <mkestner@novell.com>
9923
9924         * ColumnHeader.cs:
9925         * ListView.cs:
9926         * ListViewItem.cs:
9927         * Menu.cs: 
9928         switch to explicit interface method implementation for some methods
9929         corcompare identifies as inconsistent with MS.
9930
9931 2006-03-28  Mike Kestner  <mkestner@novell.com>
9932
9933         * MainMenu.cs: 
9934         * Menu.cs:
9935         add a few missing methods from the class status output.
9936
9937 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
9938
9939         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
9940           correct.
9941
9942 2006-03-28  Mike Kestner  <mkestner@novell.com>
9943
9944         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
9945
9946 2006-03-27  Mike Kestner  <mkestner@novell.com>
9947
9948         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
9949         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
9950
9951 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
9952
9953         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
9954
9955 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9956
9957         * ThemeWin32Classic.cs:
9958           - GroupBox: Inserted a little gap between the text and the lines
9959             on the right side
9960           - Made the code in CPDrawBorder3D more readable
9961           - Corrected the drawing location of the up and down arrows in 
9962             CPDrawScrollButton
9963
9964 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9965
9966         * ControlPaint.cs: Corrected line widths in DrawBorder for
9967           ButtonBorderStyle Inset and Outset
9968
9969 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9970
9971         * ThemeWin32Classic.cs:
9972           - Rewrote the totally broken CPDrawBorder3D method. That was
9973             one of the main problems for the terrific ThemeWin32Classic
9974             look
9975           - Updated and corrected Button drawing
9976           - Correct the dimensions of the SizeGrip to match ms ones
9977           - Removed a small drawing glitch in DrawComboBoxEditDecorations
9978         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
9979           Border3DStyle.Sunken to match ms.
9980
9981 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
9982
9983         * ThemeWin32Classic.cs: First small part of the "de-uglify
9984           ThemeWin32Classic" effort, SizeGrip
9985
9986 2006-03-24  Jackson Harper  <jackson@ximian.com>
9987
9988         * XplatUIX11.cs: Give a max idle time of one second, this matches
9989         MS and forces an Idle event every second when there are no other
9990         events in the queue.
9991
9992 2006-03-24  Mike Kestner  <mkestner@novell.com>
9993
9994         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
9995         * ListView.Item.cs: fix layout issues with null image lists and images
9996         smaller than checkbox size.
9997         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
9998         mode like MS does.  It's weird, but consistent.  ;-)
9999         Fixes #77890.
10000
10001 2006-03-24  Mike Kestner  <mkestner@novell.com>
10002
10003         * ListView.cs: Scroll wheel support for the item control.  Fixes
10004         #77839.
10005
10006 2006-03-23  Jackson Harper  <jackson@ximian.com>
10007
10008         * ScrollableControl.cs: Special case negative sized areas, not
10009         zero.
10010         * MonthCalendar.cs: Save the rect of the clicked date so we can
10011         use it for invalidation.
10012         - Try to cut down on the number of invalidates
10013         - Invalidate the rect the mouse is over and was over when moving
10014         the mouse, so we get the focus box following the cursor.
10015
10016 2006-03-23  Mike Kestner  <mkestner@novell.com>
10017
10018         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
10019         focus rectangle drawing. Fixes #77835.
10020
10021 2006-03-23  Mike Kestner  <mkestner@novell.com>
10022
10023         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
10024         the if and else if and reverting back to the original == check on the
10025         None conditional.
10026
10027 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
10028
10029         * FontDialog.cs: Update the example panel if the selected index of
10030           the fontListBox changes.
10031
10032 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
10033
10034         * FileDialog.cs: Make FileDialog remember which directory it was in
10035           last in the same execution.
10036
10037 2006-03-22  Mike Kestner  <mkestner@novell.com>
10038
10039         * FileDialog.cs: make the DropDownMenu on the toolbar display
10040         RadioChecks since they are mutually exclusive and that's what MS does.
10041
10042 2006-03-22  Mike Kestner  <mkestner@novell.com>
10043
10044         * Theme.cs: add Color param to CPDrawMenuGlyph.
10045         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
10046         checks and radio marks and arrows are visible on highlighted items.
10047         * ControlPaint.cs: update to use new Theme signature.
10048
10049 2006-03-22  Mike Kestner  <mkestner@novell.com>
10050
10051         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
10052         is active. Fixes #77870.
10053
10054 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
10055
10056         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
10057           to be focused/selected after startup
10058
10059 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
10060
10061         * ColorDialog.cs: 
10062           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
10063             CustomColors and ShowHelp properties
10064           - Some internal rewrites to get better results when using the
10065             ColorMatrix
10066
10067 2006-03-22  Mike Kestner  <mkestner@novell.com>
10068
10069         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
10070         HoverSelection.  Fixes #77836.
10071
10072 2006-03-22  Mike Kestner  <mkestner@novell.com>
10073
10074         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
10075         ToggleButtons.  (De)Sensitize the Back button around a stack count of
10076         1, not 0.  Update ButtonSize based on a pixel count of the win32
10077         control.  Adjust the toolbar size/location for new button size.
10078
10079 2006-03-22  Jackson Harper  <jackson@ximian.com>
10080
10081         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
10082         true.
10083         * ScrollBar.cs: When doing increments and decrements we need to
10084         set the Value property so that ValueChanged gets raised. A
10085         possible optimization here would be to make an internal SetValue
10086         that doesn't invalidate immediately.
10087         * ToolTip.cs: Tooltips get added to their container (when
10088         supplied) so they get disposed when the container is disposed.
10089         - Don't create tooltips for String.Empty. This prevents all these
10090         little 2-3 pixel windows from showing up when running nunit-gui
10091         and driving me mad.
10092         * Form.cs: Don't set topmost when setting the owner if the handles
10093         haven't been created yet.  The topmost set will happen when the
10094         handles are created.
10095
10096 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
10097
10098         * XplatUIX11.cs:
10099           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
10100           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
10101             visible (to allow them to recalculate their sizes)
10102
10103 2006-03-21  Mike Kestner  <mkestner@novell.com>
10104
10105         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
10106         methods. Removed a ton of redundant code.  Still not really happy with
10107         the border rendering, but I think that's mainly because of the
10108         ControlDarkDark being black instead of a dark grey. Depending on how 
10109         close we want to be, we might want to revisit those color choices.
10110         Among the new features added during the refactor were DropDownArrow
10111         pressed rendering, Disabled image rendering.  Proper flat appearance
10112         boundary rendering.  Removed the Divider and Wrapping dividers since I
10113         can't figure out any combination of themes and conditions to make the
10114         MS control draw a horizontal line on a toolbar despite what the
10115         Divider property docs indicate.
10116         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
10117         conditions and incorrect layout.  Updated to coding standard.
10118         * ToolBarButton.cs: refactored layout and positioning code from
10119         ToolBar to here.  Invalidate wherever possible instead of forcing
10120         redraws of the whole toolbar. 
10121         (Known remaining issues: explicit ButtonSize smaller than provided
10122         images.)
10123
10124 2006-03-21  Mike Kestner  <mkestner@novell.com>
10125
10126         * ContextMenu.cs (Show): use the position parameter instead of just
10127         showing at the MousePosition.
10128
10129 2006-03-21  Jackson Harper  <jackson@ximian.com>
10130
10131         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
10132         control handle this.
10133         * TreeNodeCollection.cs: If we are clearing the root node we need
10134         to reset top_node so calcs can still happen.
10135         * ThemeWin32Classic.cs: This is a Flags so we need to check
10136         properly.
10137         
10138 2006-03-21  Jackson Harper  <jackson@ximian.com>
10139
10140         * DataGrid.cs: Create columns when the binding context has been
10141         changed.
10142         * X11Structs.cs: Keysyms are uints.
10143         - Add size to fix build.
10144
10145 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
10146
10147         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10148           XplatUIOSX.cs: 
10149           - Added ResetMouseHover method to allow controls to retrigger
10150             hovering if they need it more than once
10151           - Implemented MouseHoverTime and MouseHoverSize properties
10152         * Timer.cs: Start() must reset the interval
10153         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
10154           properties
10155
10156 2006-03-21  Jackson Harper  <jackson@ximian.com>
10157
10158         * X11Keyboard.cs: improved layout detection. Move the nonchar
10159         tables into this file.
10160         * KeyboardLayouts.cs: Move the tables into resource files.
10161
10162 2006-03-21  Mike Kestner  <mkestner@novell.com>
10163
10164         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
10165
10166 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
10167
10168         * Mime.cs: Various speed optimizations. Looking up mime types
10169           is now 2 times faster than before
10170
10171 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
10172
10173         * CreateParams.cs: Added internal menu field
10174         * Control.cs: 
10175           - Switched call order for UpdateBounds; now we always call
10176             the one that also takes ClientSize, and we're calculating the 
10177             client size via driver method in the others. The previous
10178             method of tracking client size by difference wasn't working
10179             for forms where even the starting client size wouldn't match
10180             the overall form size (due to borders) (Part of fix for #77729)
10181           - CreateParams(): Do not use parent.Handle unless the handle is
10182             already created. Causes havoc with Nexxia and throws off our
10183             creation of controls
10184         * XplatUIX11.cs:
10185           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
10186           - Switched handling of ConfigureNotify over to new PerformNCCalc 
10187             method (consolidates code)
10188           - Changed RequestNCRecalc to use new PerformNCCalc method
10189           - Added calls to RequestNCRecalc when menus and borders are changed
10190             to allow app to set NC size. (Part of fix for #77729) This matches
10191             when MS send a WM_NCRECALC on Win32 windows.
10192           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
10193             (Part of fix for #77729). This matches what MS does, they also
10194             send that message when the form is made visible.
10195           - XException.GetMessage: Improved usability of X errors by including
10196             a translation of the window into Hwnd and Control class
10197           - Improved debug info for window creation, reparenting and destruction
10198           - Created helper method WindowIsMapped() [Currently not used]
10199         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
10200         * Form.cs:
10201           - CreateParams: Now setting our menu on the new internal menu field
10202           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
10203             avoid calculating the same property twice
10204         * Hwnd.cs:
10205           - Improved usability of ToString() for debugging purposes
10206           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
10207             determine the height of the menu, instead of just the font. This
10208             required to also create a graphics context and to keep a bmp 
10209             around (for performance reasons)
10210
10211 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
10212
10213         * MenuAPI.cs: Added OnMouseUp method
10214         * Form.cs:
10215           - Now remembering the requested client size, avoids size errors
10216           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
10217             instead of base if the menu is active. This is required due to
10218             control now capturing and releasing on down/up and it would
10219             prematurely release our menu capture
10220
10221 2006-03-17  Jackson Harper  <jackson@ximian.com>
10222
10223         * KeyboardLayouts.cs: Add the czech layouts.
10224
10225 2006-03-16  Jackson Harper  <jackson@ximian.com>
10226
10227         * Control.cs: Use the viewport space when sizing not the controls
10228         client size, so things like ScrollableControl that effect the
10229         viewport size (when scrollbars are added) are computed correctly.
10230         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
10231         of ManagerEntrys.
10232         - Handle creating BindingManagers for null data sources.
10233         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
10234         source, otherwise when rows are added they are added to the 'fake'
10235         datasource and we will crash when trying to set the position in
10236         those rows.
10237         - Use Implicit scrollbars on the datagrid so they arent
10238         selectable.
10239         
10240 2006-03-16  Jackson Harper  <jackson@ximian.com>
10241
10242         * Binding.cs:
10243         * InternalWindowManager.cs:
10244         * MdiWindowManager.cs:
10245         * X11Keyboard.cs: I really want Mike to love me again (fix
10246         compiler warnings).
10247
10248 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
10249
10250         * DataGrid.cs:
10251           - OnMouseDown: Switch to editing mode when clicking on the cell
10252                          even if we're clicking on the cell that's currently 
10253                          selected
10254           - ProcessGridKey: Left/Right now wrap like MS.Net does
10255           - ProcessGridKey: Tab now knows to add a new row when tab is
10256                             pressed in the cell of the last column of the 
10257                             last row
10258           - ProcessGridKey: Enter now adds another row  if pressed in the last
10259                             row and selectes the new row, same column cell
10260           - ProcessGridKey: Home/End navigate columns, not rows, like 
10261                             originally implemented
10262           - Broke ProcessKeyPreview code out into an extra Internal method
10263             so it can be called from the edit code
10264         * DataGridTextBox.cs (ProcessKeyMessage):
10265           - Switched to accept Tab keypresses
10266           - Added F2 handling to allow jumping to the end of the edited cell
10267           - Added logic to allow moving caret left/right inside edited cell
10268             and making the edited cell jump when the caret hits cell borders
10269           - Tab and Enter are now passed to the datagrid after being handled
10270         * TextBoxBase.cs:
10271           - Removed capture code now that Control handles it
10272           - set_SelectionStart now ensures caret is visible
10273
10274 2006-03-16  Jackson Harper  <jackson@ximian.com>
10275
10276         * TrackBar.cs: Debackwards the increment/decrement for handling
10277         mouse clicks on the bar with vertical trackbars.
10278         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
10279         bottom to match MS.
10280
10281 2006-03-16  Mike Kestner  <mkestner@novell.com>
10282
10283         * ListView.cs: make shift/ctrl keyboard and mouse selection 
10284         consistent with the MS control. Fix a bug in
10285         SelectedListViewItemCollection.Clear that was pissing me off for the
10286         better part of a day because the collection was being altered
10287         underneath us as we walked the list.
10288
10289 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
10290
10291         * Control.cs: Not sure how we could miss this so long, but it seems
10292           that MS.Net has Capture set all the way from before calling 
10293           OnMouseDown through sending the mouse events until after
10294           OnMouseUp. This will fix DataGrid's selection being set to end
10295           at the location of the MouseUp.
10296
10297 2006-03-15  Jackson Harper  <jackson@ximian.com>
10298
10299         * BindingContext.cs: Check the binding after its added so that it
10300           can initialize the binding managers and hookup to events.
10301         * Binding.cs: Data members seem to sometimes include rows/cols in
10302           the format Row.Column we now take this into account.
10303           - Hookup to the position changed event so we can update the
10304           control when the position has changed in the data set.
10305         * CurrencyManager.cs: Take into account the row/col naming
10306           convention when creating dataset tables.
10307         * BindingContext.cs: Using a newer better way of storing
10308           datasource/datamember pairs.  Hopefully this better matches MS for
10309           looking up binding managers.
10310
10311
10312 2006-03-15  Jackson Harper  <jackson@ximian.com>
10313
10314         * BindingContext.cs: The currency manager needs the data member
10315         name, if the member is a data set we use the name to find the
10316         correct table.
10317         * CurrencyManager.cs: When creating the list prefer an IList over
10318         an IListSource.
10319         - Attempt to create a DataTable from a DataSet (TODO: might need
10320         some better error checking here, although MS doesn't seem to have much)
10321         - If we have a DataTable create a view and use it as our list.
10322
10323 2006-03-15  Mike Kestner  <mkestner@novell.com>
10324
10325         * ListView.cs: keep a matrix of the icon mode layout to facilitate
10326         keyboard navigation. Support Up/Down/Left/Right selection correctly
10327         for all 4 View modes.
10328         * ListViewItem.cs: add internal row/col fields for icon layouts.
10329
10330 2006-03-15  Jackson Harper  <jackson@ximian.com>
10331
10332         * TabControl.cs: Redraw the tabs when we resize so their newly
10333         calculated sizes are drawn on screen.
10334         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
10335         composite characters.
10336         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
10337         - filter events so that composite characters can be created
10338         patches by peter
10339         * X11Structs.cs: Add XIMProperties enum.
10340
10341 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
10342
10343         * Control.cs (BringToFront, SendToBack): Don't use window or handle
10344           unless it's created
10345
10346 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
10347
10348         * Control.cs (PerformLayout): We don't need to consider visiblity
10349           for anchoring, only for docking. This fixes 'whacky' alignment
10350           in listbox and other controls that use implicit scrollbars after
10351           the previous PerformLayout patch
10352         * ListBox.cs: Switched to use implicit scrollbars
10353           
10354 2006-03-14  Mike Kestner  <mkestner@novell.com>
10355
10356         * ToolBar.cs: 
10357         * VScrollBar.cs:
10358         - chain up the "new event" overrides to base and use
10359         OnEvent to raise them.  Part of fix for bug #76509.
10360
10361 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
10362
10363         * FileDialog.cs: Do not select an item in the parent directory
10364           on backspace
10365
10366 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
10367
10368         * Control.cs (PerformLayout): It would seem that we considered
10369           invisible windows for our layout. Not quite the right thing
10370           to do. Now we don't any longer, thereby fixing bug #76889.
10371
10372 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
10373
10374         * Control.cs (CanFocus): I goofed. A control can have focus 
10375           even though it's not selectable. Made it match MS docs.
10376
10377 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10378
10379         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
10380           center by default (fixes #76895)
10381         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
10382           all uses of Border3DSides.All with the explicit ORd together
10383           Left|Right|Top|Bottom because I assume that nobody was aware 
10384           that All also implies a center fill. Most places I checked had
10385           a fill right above.
10386         * ProgressBarStyle.cs: Added
10387
10388 2006-03-13  Mike Kestner  <mkestner@novell.com>
10389
10390         * ListView.cs: fix breakage in drag shadow header positioning 
10391         from Peter's csc compilation fix.
10392
10393 2006-03-13  Mike Kestner  <mkestner@novell.com>
10394
10395         * ListView.cs: fix NRE produced by backspacing twice in a focused
10396         FileDialog.
10397
10398 2006-03-13  Mike Kestner  <mkestner@novell.com>
10399
10400         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
10401
10402 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10403
10404         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
10405           be changed
10406         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
10407           the allowed size before making programmatic size changes
10408
10409 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
10410
10411         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
10412           set, metacity is broken and will still use the emty sizes in 
10413           the struct. (Fix for #77089)
10414
10415 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
10416
10417         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
10418           WindowExStyles and marked both enums as Flags
10419         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
10420           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
10421           to match WindowStyles split
10422         * XplatUIX11.cs:
10423           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
10424           - Updated to match WindowStyles split
10425         * XplatUIWin32.cs:
10426           - Fixed FosterParent creation, was using ExStyle on the Style field
10427             (This should help with Popup focus issues)
10428           - Updated to match WindowStyles split
10429
10430 2006-03-13  Jackson Harper  <jackson@ximian.com>
10431
10432         * MdiWindowManager.cs: Use the system menu height. Fixes some
10433         strange sizing issues.
10434
10435 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
10436
10437         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
10438         * TextBoxBase.cs:
10439           - Scroll to caret after inserting text (#77672)
10440           - Make scroll range one pixel higher, fixes off-by-one error (and
10441             makes underlines visible on the last line)
10442
10443 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
10444
10445         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
10446           the keyboard state from being stuck with keys in 'pressed' state when
10447           focus is switched away via keyboard
10448         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
10449           reset the keyboard if no X11 KeyUp events are expected to come
10450         * X11Structs.cs: Switched type of Visible to bool to match driver
10451
10452 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
10453
10454         * TextControl.cs:
10455           - Switched caret to be just 1 pixel wide, matches MS and looks less
10456             clunky
10457           - Moved caret display 1 pixel down from the top of the control
10458             to improve view
10459           - InsertCharAtCharet: Update the selection start if moving the caret
10460             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
10461           - No longer always creating the caret when the caret methods are
10462             called. Only the actual ShowCaret/HideCaret will do that now
10463           - Only setting caret visible if the owner control has focus
10464           - UpdateView: Added invalidation-shortcut logic for center and right 
10465             aligned text. Previously we'd update all according to the left
10466             logic which caused drawing errors. Also fixed height of invalidated
10467             areas, now properly invalidating the whole area (was off-by-one)
10468           - owner_HandleCreated: Always generate the document when the
10469             handle is created; this ensures that 
10470         * TextBoxBase.cs:
10471           - Fixed situation where caret would disappear under the right
10472             window border, also improved scrolling behaviour on left-
10473             aligned textboxes
10474           - Fixed right-aligned textboxes to have a border to the
10475             right instead of the caret being under the right border
10476         * XplatUIX11.cs:
10477           - Switched from 'nested' to simple visible/not visible tracking 
10478             for caret (part of fix for #77671)
10479           - No longer passing through translated FocusIn/FocusOut messages
10480             since we were notifying too often and the wrong windows. Instead
10481             we just notify our focussed window of receiving or loosing focus
10482         * XplatUIWin32.cs: Switched from 'nested' show/hide 
10483           counting for caret to simple visible yes/no behaviour (part of 
10484           fix for #77671)
10485
10486 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
10487
10488         * Mime.cs: Remove debug code...
10489
10490 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
10491
10492         * MimeGenerated.cs: Removed
10493         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
10494           and subclasses) from /usr/(local/)share/mime and
10495           $HOME/.local/share/mime.
10496
10497 2006-03-10  Jackson Harper  <jackson@ximian.com>
10498
10499         * MdiWindowManager.cs: Recalc the NC area when a window is
10500         maximized/restored so that the menu area is drawn on forms that
10501         don't have a menu.
10502
10503 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10504
10505         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
10506           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
10507           us to force a WM_NCCALCRESIZE message being sent. This is needed
10508           for MDI maximizing.
10509
10510 2006-03-10  Jackson Harper  <jackson@ximian.com>
10511
10512         * Form.cs: We need to use the ActiveMenu when calculating menu
10513         height.
10514         - Fix nullref when the window manager hasn't been created yet.
10515         * Control.cs: Fix nullref when we try to bring a control to the
10516         front that has no parent.
10517         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
10518         height.
10519         - Add a dummy item to the maximized menu so it always has the
10520         correct height. Otherwise when there are no menus we don't get our
10521         icon and buttons.
10522         
10523
10524 2006-03-10  Jackson Harper  <jackson@ximian.com>
10525
10526         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
10527         stuff.
10528         * Form.cs: Make the window_state internal so the window managers
10529         can track it.
10530         - When an MDI child is maximized let its window manager create the
10531         main menu (so it can add its icon).
10532         - Notify the window managers of state changes
10533         - Let the window manager paint its buttons and handle button
10534         clicks on the menu when it is maximized.
10535         * InternalWindowManager.cs: Move the prev_bounds into the mdi
10536         window manager, since tool windows don't use it, only mdi windows.
10537         - Tell the main form that we don't want it to handle NCPAINT
10538         itself to avoid extra painting.
10539         - Handle clicks on a maximized windows menu.
10540         - Handle window state changes
10541         - Handle minimize/maximize clicks correctly by setting the window state.
10542         * MdiWindowManager.cs: Add an icon menu that (the menu you get
10543         when clicking on the forms icon).
10544         - New method to create a forms maximized menu. This is its normal
10545         menu + an icon.
10546         - Handle window state changes.
10547         - Handle sizing of maximized windows.  Maximized windows are just
10548         drawn bigger then the parent visible area. All controls are still
10549         there, they are just outside the visible area (this matches windows).
10550         * MdiClient.cs: No scrollbars when a child window is maximized.
10551         - Let the children windows figure out how big they should be when
10552         sizing maximized windows.
10553         - Implement a version of ArrangeIconicWindows somewhat similar to
10554         Windows version.  There are some little differences, but I don't
10555         think any app will rely on the layout of minimized mdi windows.
10556
10557 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10558
10559         * Padding.cs: Several fixes to allow compiling with csc 2.0
10560
10561 2006-03-09  Jackson Harper  <jackson@ximian.com>
10562
10563         * Menu.cs:
10564         * MenuItem.cs: Cheap hack so we can add items to the list without
10565         the events being raised.  This allows adding mdi items during
10566         drawing. TODO: Should probably find a better time to add the items.
10567
10568 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10569
10570         * ThemeWin32Classic.cs:
10571           - CheckBox_DrawText: Added logic to not wrap if not enough space
10572             is available (Fix for bug #77727)
10573           - RadioButton_DrawText: Added logic not to wrap if not enough
10574             space is available (Fix for bug #77727). Also removed some
10575             duplicate code, DrawString always drawing the regular text
10576             before hitting the if statement.
10577
10578 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
10579
10580         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
10581
10582 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
10583
10584         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
10585         * ContainerControl.cs: Partial implementation of some 2.0 scaling
10586           methods. Moved the new 2.0 properties into alphabetical order with
10587           other properties and added MonoTODO tags
10588
10589 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10590
10591         * AutoScaleMode.cs: Added. Fix build.
10592
10593 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10594
10595         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
10596           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
10597           and was requiring premature handle creation for calls from above
10598         * Form.cs, Control.cs: Removed handle arguments from calls to
10599           CalculateClientRect()
10600
10601 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10602
10603         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
10604           drag_column.column_rect is MarshalByRef and can't be used that way
10605
10606 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10607
10608         * AxHost.cs: Added deserialization constructor for 
10609           AxHost+State (fixes 77743)
10610
10611 2006-03-09  Mike Kestner  <mkestner@novell.com>
10612
10613         * ListView.cs: 
10614         - Added column drag reordering for details view.
10615         - fixed behavior when mouse is dragged off column and
10616         AllowColumnReorder is false.
10617         * ColumnHeader.cs: clone the format too in Clone.
10618         * Theme.cs: add DrawListViewHeaderDragDetails method.
10619         * ThemeWin32Classic.cs:
10620         - impl new method for drawing drag column shadows and targets.
10621         - support column offset for details mode in DrawListViewItem.
10622
10623 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10624
10625         * TextControl.cs: Reset the char_count when the document is cleared
10626           (Fixes bug reported on mono-winforms mailing list)
10627
10628 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
10629
10630         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
10631           of calling base we simply process the key ourselves, since both
10632           DefWindowProc and the handled method would set m.Result. 
10633           (Fixes #77732)
10634
10635 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
10636
10637         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
10638           method also moves the window; instead implemented a copy of
10639           Control.ScaleCore (Part of fix for #77456)
10640         * TextBoxBase.cs: 
10641           - Created new CreateGraphicsInternal method to allow providing
10642             a graphics context when no handle is created without triggering
10643             handle creation. (Part of fix for #77456)
10644           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10645         * TextControl.cs: 
10646           - Switched Constructor to require TextBoxBase instead of Control (to
10647             allow uncast access to CreateGraphicsInternal)
10648           - Safeguarded use of owner.Handle property. No longer accessing it
10649             unless the handle is already created.
10650           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
10651           - Now triggering a recalc when owning control becomes visible
10652         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
10653           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
10654           premature handle creation (Part of fix for #77456)
10655         * Control.cs:
10656           - We now only destroy our double-buffering buffers when the
10657             control is resized or disposed, but not when visibility
10658             changes. (The code even re-created them twice every time)
10659           - Now requiring a redraw of the buffer on visibility changes
10660             (fixes bug 77654 part 2)
10661           - Not passing OnParentVisibleChanged up unless the control
10662             is visible
10663           - CanFocus: Fixed to match MS documentation
10664           - Focus: Fixed to return actual focus state and to check if
10665             setting focus is legal before setting it
10666
10667 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
10668
10669         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
10670           when to draw focus rectangle by looking at parent focus and
10671           selected state instead. This fixes TabPages on Linux sometimes
10672           having none or multiple focus rectangles.
10673         * XplatUIX11.cs (SetFocus): 
10674           - Don't set the focus if the same window already has focus
10675           - Use SendMessage instead of PostMessage (like it's Win32
10676             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
10677             to match MS behaviour
10678         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
10679           are not selectable.
10680
10681 2006-03-07  Jackson Harper  <jackson@ximian.com>
10682
10683         * PictureBox.cs: Revert line I accidently committed last week.
10684
10685 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
10686
10687         * Control.cs: 
10688           - Added new IsRecreating and ParentIsRecreating properties to
10689             allow testing if RecreateHandle has been called on ourselves
10690             or one of our parents
10691           - WndProc(WM_DESTROY): If our control handle is being recreated
10692             we immediately need to create the handle when receiving the
10693             destroy, that way our child windows find a valid parent handle
10694             when they themselves are being recreated upon WM_DESTROY receipt
10695             (fix for bug #77654 part 1)
10696         * XplatUIX11.cs:
10697           - DestroyWindow: WM_DESTROY must be sent to our own window before
10698             notifying any child windows. MS documents that child windows
10699             are still valid when WM_DESTROY is received. (Control now relies on
10700             this behaviour)
10701           - Added some fine-grain debug options
10702
10703 2006-03-06  Jackson Harper  <jackson@ximian.com>
10704
10705         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
10706         box and base calculations off this.
10707         * MdiChildContext.cs:
10708         * MdiWindowManager.cs: Don't need to ensure scrollbars here
10709         anymore.
10710         
10711 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
10712
10713         * Splitter.cs: In situations where the affected control is added
10714           to the parent's control list after the splitter, we would not
10715           populate affected. Now we try populating it on mousedown, if
10716           it's not already set, and force it to be re-set whenever our
10717           parent changes.
10718
10719 2006-03-03  Matt Hargett  <matt@use.net>
10720
10721         * Control.cs: implement Control.Padding
10722         * Padding.cs: -Padding.All returns -1 when constructing with the
10723         implicit default ctor
10724         -Padding.ToString() matches MS.NET
10725         * ContainerControl.cs: implement
10726         ContainerControl.AutoScaleDimensions
10727         * ListControl.cs: implement ListControl.FormattingEnabled
10728         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
10729         * ButtonBase.cs:
10730         * TabPage.cs: Implement UseVisualStyleBackColor.
10731         * PictureBox.cs: Implement PictureBox.InitialImage.
10732
10733 2006-03-03  Mike Kestner  <mkestner@novell.com>
10734
10735         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
10736         event declarations to proxy to base event.
10737         * ListViewItem.cs: update to use ItemControl.
10738         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
10739         * ThemeWin32Classic.cs: update to new ListView theme API and fix
10740         column header label rendering for 0 width columns.
10741
10742 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
10743
10744         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
10745           that causes the control to be created. Fixes #77476.
10746
10747 2006-03-02  Jackson Harper  <jackson@ximian.com>
10748
10749         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
10750         expose_pending.
10751
10752 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
10753
10754         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
10755           passed in for the EventArgs (fixes #77690)
10756
10757 2006-03-01  Jackson Harper  <jackson@ximian.com>
10758
10759         * ScrollBar.cs: Refresh afterbeing resized.
10760
10761 2006-02-28  Mike Kestner  <mkestner@novell.com>
10762
10763         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
10764         Clean up a tracker compile warning.
10765         * MenuItem.cs: add internal PerformPopup method.
10766         [Fixes #77457]
10767
10768 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10769
10770         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
10771           implicit expose) when the text is set to null
10772
10773 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
10774
10775         * RichTextBox.cs (FlushText): When newline is true, we always
10776           need to split the line, even if no text is on it and we may
10777           never eat newlines. (Fixes #77669)
10778
10779 2006-02-28  Mike Kestner  <mkestner@novell.com>
10780
10781         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
10782         and set Selected instead.
10783         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
10784         collections.
10785
10786 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
10787
10788         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
10789
10790 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
10791
10792         * FontDialog.cs:
10793           - Got rid of the panel. All controls are now directly added to
10794             the dialog form
10795           - It is now possible to set a font with the Font property
10796           - MinSize and MaxSize property do now what they should
10797           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
10798           - Searching and selecting a font with the font textbox works now,
10799             the same applies to the style and size textbox
10800           - Draw the correct 3D border in the example panel
10801           - Fixed a little mem leak (unused fonts didn't get disposed)
10802           - Many other internal updates/rewrites...
10803           - Fix typo
10804
10805 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10806
10807         * TextControl.cs: 
10808           - InsertRTFFromStream: Added 'number of characters inserted' argument
10809           - set_SelectedRTF: Now using the number of characters to calculate
10810             the new location for the selection and cursor (x/y cannot be used
10811             due to potentially already wrapped text)
10812
10813 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
10814
10815         * TextControl.cs: Added property and implemented means to allow 
10816           disabling recalculation of a document (can be used to speed up
10817           multiple inserts and is needed to make RTF inserts predictable, see
10818           bug #77659)
10819         * RichTextBox.cs: Using the new NoRecalc property of Document to
10820           keep x/y insert locations predictable. Also makes it faster inserting
10821           large chunks of RTF
10822
10823 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
10824
10825         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
10826           it's easier for a child control to handle the other messages without
10827           having to duplicate the special functionality
10828         * TextBoxBase.cs
10829           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
10830             code to handle processing the key ourselves, in order to get 
10831             access to the result of KeyEventArgs.Handled. We now only call 
10832             ProcessKey if they key hasn't been handled already. Fixes #77526.
10833           - set_Text: If null or empty string is given, just clear the 
10834             document. Fixes part of #77526
10835
10836 2006-02-27  Jackson Harper  <jackson@ximian.com>
10837
10838         * SizeGrip.cs: Paint the background color before painting the grip
10839         so things look right.
10840         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
10841
10842 2006-02-27  Mike Kestner  <mkestner@novell.com>
10843
10844         * ListView.cs:
10845           - Restructure layout and invalidation model to remove a ton of
10846           flicker from the control and speed up performance in general.
10847           - Add manual column resize, flickers like crazy, but I already have
10848           some ideas on how I'll fix that. (#76822)
10849           - Merge the three Icon-based views into a single layout method.
10850           - Move item selection interaction logic from the item since 
10851           interaction with the collections is more appropriate to the view.
10852           - Deselection on non-item clicks.
10853         * ListViewItem.cs:
10854           - Encapsulate most of the layout. Add some internal props to trigger
10855           layout.  Move to a model where Items invalidate themselves instead
10856           of just invalidating the whole control every time something changes.
10857           - Invalidate on Text/Caption changes.
10858           - switch to an offset based layout model to avoid having to absolute
10859           position every element on item moves.
10860           - correct checkbox layout to conform to MS layout.
10861         * ThemeWin32Classic.cs:
10862           - refactor some column header drawing code.
10863           - fix string justification for column headers (#76821)
10864           - make SmallIcon labels top justified for compat with MS impl.
10865         * ThemeClearlooks.cs:
10866           - adjust to new ListViewItem internal checkbox bounds api.
10867
10868 2006-02-27  Jackson Harper  <jackson@ximian.com>
10869
10870         * Control.cs:  Change where implicit controls fall in the zorder.
10871         They are now on top of all children.
10872         - Synced AddImplicit code with Add
10873         - Removed unused enumerator.
10874         * SizeGrip.cs: Remove the TODO as its been TODONE.
10875
10876 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
10877
10878         * TextControl.cs(Insert): Combine the last lines unless the insertion
10879           string ends with \n\n, otherwise we leave one line too many (Fixes
10880           something I noticed with the testapp for #77526; the bug itself was
10881           already fixed in the previous checkin)
10882
10883 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
10884
10885         * RichTextBox.cs:
10886           - SelectionColor and SelectionFont methods no longer set absolute
10887             styles. Instead, the keep font or color respectively (This 
10888             resolves a long-standing FIXME in the code)
10889           - When flushing RTF text, the insert code now considers text trailing
10890             behind the insertion point (Fixes the bug where when replacing
10891             the selected text via SelectedRTF the remainder of the line behind 
10892             the selection would stay on the first insertion line)
10893         * TextBoxBase.cs:
10894           - AppendText now updates the selection points after inserting text
10895           - AppendText now ensures that the last tag (sometimes 0-length) of
10896             the document is used for the style information (Fixes part of 
10897             bug #77220)
10898         * TextControl.cs:
10899           - Created new FontDefiniton class to allow describing partial style
10900             changes
10901           - StreamLine() now takes a lines argument, to allow it to decide
10902             whether an encountered zero-length tag is the last in the document
10903             (which must be kept to not loose the font/color contained in it,
10904             for later appends)
10905           - Created Combine() and Split() methods for Marker structs, to 
10906             support marker updates due to reformatted documents (soft line
10907             wraps)
10908           - Implemented Document.CaretTag setter
10909           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
10910             of the last line (Not the cause, but also exposed by bug #77220)
10911           - Added LineTag argument to InsertString method, to allow callers
10912             to force a certain tag to be used (required to force use of the
10913             trailing zero-length tag of a document)
10914           - Now updating markers in Combine(), to avoid stale tag markers
10915           - Added some method descriptions to aid maintenance
10916           - Implemented new FormatText concept, allowing additive/subtractive
10917             formatting by only specifying the components that are to be 
10918             changed. This was needed for resolving the RTB.SelectedColor/
10919             RTB.SelectedFont fixmes
10920           - Added Break() support method to allow breaking up linetags (used
10921             for partial formatting)
10922           - Added GenerateTextFormat() method. It is used for partial 
10923             formatting and allows to generate a full font/color from given
10924             attributes and an existing tag.
10925
10926 2006-02-26  Jackson Harper  <jackson@ximian.com>
10927
10928         * XplatUIX11.cs:  Use the correct caption height.
10929         - Translate hittest coordinates to screen coords to match MS.
10930         * XplatUIWin32.cs: When we create MDI windows we need to reset
10931         some of the style flags, so we get a nice blank window, and can
10932         draw all the decorations ourselves.
10933         - Set a clipping rectangle on the non client paint event, the
10934         window manager drawing code needs one.
10935         * Form.cs: The window manager needs to know when the window state
10936         has been updated.
10937         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
10938         don't need to factor in border and title sizes in these
10939         methods. TODO: Remove the args and fix the call points.
10940         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
10941         properly.
10942         - Let the driver set the cursors.
10943         - Improve active window handling
10944         - Correct sizes for title bars and buttons.
10945         - Match MS drawing better
10946         * MdiWindowManager.cs: We don't need to handle border style
10947         updates specially anymore.
10948         - Check for scrollbars when windows are done moving
10949         - Handle Active properly.
10950         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
10951         correctly. I am spewing the exception though, so we don't hide the
10952         bugs.
10953         
10954 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
10955
10956         * DataGridViewRowPostPaintEventArgs.cs,
10957           DataGridViewCellPaintingEventArgs.cs,
10958           DataGridViewRowCollection.cs,
10959           DataGridViewRowPrePaintEventArgs.cs,
10960           DataGridViewCell.cs: Clear a few warnings and implement a few
10961           exceptions that should be thrown.
10962
10963 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10964
10965         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
10966           'inheriting' our parent's (non-default) cursor. (Part of
10967            the fix for #77479)
10968
10969 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
10970
10971         * XplatUIX11.cs: Fixed cast to make csc happy
10972
10973 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
10974
10975         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
10976           it's for the client area (part of fix for #77479 and needed
10977           for MDI window cursor handling)
10978         * XplatUIX11.cs
10979           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
10980             the appropriate default cursors and also passing the message
10981             up the parent chain 
10982           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
10983             for non-client areas
10984
10985 2006-02-15  Jackson Harper  <jackson@ximian.com>
10986
10987         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
10988         is a real MDI window
10989
10990 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
10991
10992         * X11DesktopColors.cs: Instead of checking the desktop session
10993           string for "KDE" check if it starts with "KDE"
10994
10995 2006-02-10  Jackson Harper  <jackson@ximian.com>
10996
10997         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
10998         systems).
10999
11000 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
11001
11002         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
11003           errors
11004         * ColorDialog.cs:
11005           - Got rid of the panel. All controls are now directly added to
11006             the dialog form
11007           - Changed to mono coding style
11008
11009 2006-02-10  Jackson Harper  <jackson@ximian.com>
11010
11011         * InternalWindowManager.cs: We don't need the set visibility to
11012         false hack anymore now that peter has written beautiful shutdown
11013         code.
11014
11015 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
11016
11017         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
11018           where already explicitly destroyed
11019
11020 2006-02-10  Jackson Harper  <jackson@ximian.com>
11021
11022         * MdiClient.cs: Handle the case where windows are too high or to
11023         the left and we need scrollbars.
11024
11025 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
11026
11027         * MimeIcon.cs: Added some icons
11028         * FileDialog.cs:
11029           - Fixed bug #77477
11030           - Got rid of the panel. All controls are now directly added to
11031             the dialog form
11032           - Changed to mono coding style
11033           - On Linux "My Computer" and "My Network" will now show some
11034             more usefull information. A new class, MasterMount, gathers
11035             this information from /proc/mount. Updated MWFFileView to make
11036             use of this information
11037           - Fixed a bug that caused FileDialog to crash when
11038             ".recently_used" file had a zero size
11039           - FilterIndex does now what it should
11040           - Some Refactoring
11041         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
11042             FileDialog changes
11043
11044 2006-02-09  Jackson Harper  <jackson@ximian.com>
11045
11046         * ComboBox.cs: Don't touch if null.
11047
11048 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
11049
11050         * Cursor.cs: 64bit safeness fix
11051         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
11052
11053 2006-02-09  Jackson Harper  <jackson@ximian.com>
11054
11055         * Form.cs: If a form is made into an MDI form update the styles so
11056         all the props can get set correctly.
11057         - Kill the mdi_container when we dont need it anymore.
11058         * InternalWindowManager.cs: Add missing NOT
11059
11060 2006-02-08  Jackson Harper  <jackson@ximian.com>
11061
11062         * InternalWindowManager.cs: Respek clipping when drawing MDi
11063         decorations.
11064
11065 2006-02-08  Jackson Harper  <jackson@ximian.com>
11066
11067         * Hwnd.cs: Add bits to track non client expose events.
11068         * XplatUIX11.cs: Track non client expose events on the hwnd. This
11069         gives us a proper invalid rect and will allow for some nice
11070         optimizations with NC client drawing
11071         - MDI windows are children windows, so move their style handling
11072         into the child window block.
11073         * InternalWindowManager.cs: Remove a state reset that was
11074         getting invoked at the wrong time. Fixes managed windows getting
11075         into a 'stuck' captured state.
11076
11077 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
11078
11079         * TextControl.cs (Document.ctor): Now initializing 
11080           selection_anchor. Fixes #77493
11081
11082 2006-02-07  Jackson Harper  <jackson@ximian.com>
11083
11084         * TrackBar.cs: The increment/decrements were backwards.
11085
11086 2006-02-07  Mike Kestner  <mkestner@novell.com>
11087
11088         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
11089         to the instance itself.
11090
11091 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
11092
11093         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
11094           on ulongs and pointers, the size differs between 32bit and 64bit
11095           systems. 
11096
11097 2006-02-07  Mike Kestner  <mkestner@novell.com>
11098
11099         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
11100         for 64 bit platforms to work around a metacity bug. 
11101
11102 2006-02-07  Jackson Harper  <jackson@ximian.com>
11103
11104         * TrackBar.cs: Process the input keys we need, and hookup to
11105         KeyDown instead of using WndProc, so we get key messages.
11106
11107 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
11108
11109         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
11110           machine we're on. 
11111         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
11112           we need to translate the XdndVersion atoms array before sending it
11113
11114 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
11115
11116         * XplatUIX11.cs: 
11117           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
11118             number of bits for the property, not the number of bytes. The
11119             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
11120             but would not crash since it specified 8 bits instead of 4 bits)
11121           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
11122             defined as XID -> long in the C headers)
11123           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
11124             references since those are now IntPtr to begin with
11125           - Switched all Atom.XXX 'int' casts to IntPtr casts
11126           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
11127           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
11128           - Added XChangeActivePointerGrab DllImport (for X11DnD)
11129         * X11Structs.cs:
11130           - Changed 'int' type for Atoms in XEvent structures to IntPtr
11131           - Changed atom in HoverStruct to be IntPtr
11132         * X11DnD.cs:
11133           - Removed local DllImports, switched code to use those from XplatUIX11
11134           - Removed/fixed casts related to the switch of Atom to be a IntPtr
11135
11136 2006-02-06  Mike Kestner  <mkestner@novell.com>
11137
11138         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
11139         method signatures in the import region.  There may still be some
11140         lingering struct marshaling issues, as I didn't drill down into those.
11141         Yet.
11142
11143 2006-02-06  Jackson Harper  <jackson@ximian.com>
11144
11145         * ComboBox.cs: Dont manually set the top_item, this is computed
11146         when the scrollbar position is set.
11147
11148 2006-02-06  Mike Kestner  <mkestner@novell.com>
11149
11150         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
11151         startup crashes on amd64.  There's other fixes needed.  All pinvoke
11152         usage of Atom needs to be mapped to IntPtr for example.  And there are
11153         likely other int/long issues to be addressed.
11154
11155 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
11156
11157         * FileDialog.cs: One more...
11158
11159 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11160
11161         * FileDialog.cs: Next try
11162
11163 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11164
11165         * FileDialog.cs: First part of fix for #77464
11166
11167 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
11168
11169         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
11170           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
11171           AcceptButton border drawing.
11172
11173 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
11174
11175         * Form.cs: Moved positioning of form after auto scaling is applied,
11176           otherwise it would possibly use wrong form size.
11177
11178 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
11179
11180         * Control.cs (RecreateHandle): No need to re-create any child
11181           controls, the child windows will get destroyed automatically by
11182           the windowing system or driver, and re-created when the handle
11183           is being accessed the first time. Fixes #77456
11184         * Form.cs: No longer setting the form to closing if the handle is 
11185           being recreated. This seems like the right thing to do, don't
11186           have a bug or testcase for this, though.
11187
11188 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11189
11190         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
11191           controls to avoid unwanted side effects
11192
11193 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
11194
11195         * Control.cs: 
11196           - ScaleCore needs to scale the bounds, not the ClientSize of the 
11197             control. Fixes #77416.
11198           - DefaultSize is 0,0 for control
11199         * TextBoxBase.cs: 
11200           - DefaultSize is 100, 20
11201           - SetBoundsCore: Now enforcing the height, no matter if the provided
11202             height is more or less than the preferred one, as long as AutoSize
11203             is on
11204         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
11205
11206 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
11207
11208         * Control.cs:
11209           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
11210             call unless both performLayout is true *and* we have a pending
11211             layout change
11212           - ResumeLayout: MS does not completely nest Suspend and Resume,
11213             they bottom out at 0, fixed our code to match that.
11214           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
11215             SetBoundsCore, we were updating even when we shouldn't. This fixes
11216             swf-anchors mis-anchoring when resizing the app fast and lots.
11217           - UpdateDistances: Now only setting the left and top distance if 
11218             we have a parent and are not suspended, this is based on
11219             a suggestion by Don Edvaldson in bug #77355.
11220           - OnVisibleChanged: Fixed logic when to create the control. We may
11221             not create the control if we have no parent or if it's not visible;
11222             switched to using Visible property instead of is_visible field 
11223             since the property also considers parent states. This fixes a bug
11224             when starting Paint.Net
11225
11226 2006-02-02  Jackson Harper  <jackson@ximian.com>
11227
11228         * Form.cs: If the forms handle hasn't been created yet don't call
11229         into xplatui to make it top most, just set the topmost flag on the
11230         form in CreateParams
11231         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
11232
11233 2006-02-01  Jackson Harper  <jackson@ximian.com>
11234
11235         * ScrollableControl.cs: Refactored the Recalculate method a
11236         little, this wasn't handling all the variants of bottom and right
11237         bars needed to be added and added/removed based on their
11238         counterparts being added/removed (which changes the drawable
11239         size). Also we special case client widths and heights of 0 and
11240         don't add the scrollbar for those.
11241
11242 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
11243
11244         * XplatUIX11.cs: 
11245           - Added method to get AbsoluteGeometry(); currently unused, but might
11246             be used in the future, if we try again to figure out toplevel
11247             coordinates with some more crappy window managers
11248           - Added FrameExtents() method to retrieve the WM set decoration size
11249           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
11250             to deal with at least KDE, FVWM and metacity (Fixes #77092)
11251         * Hwnd.cs: 
11252           - Added whacky_wm tracking var for metacity
11253           - Added logic to have default menu height if the actual menu height
11254             has not yet been calculated (part of fix for #77426)
11255         * Form.cs: Keep track whether client size has been set and re-set 
11256           it if a menu is added/removed afterwards (Fixes #77426)
11257
11258 2006-01-31  Jackson Harper  <jackson@ximian.com>
11259
11260         * Control.cs: When a new Site is set on the component attempt to
11261         pull the AmbientProperties from it.
11262
11263 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
11264
11265         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
11266           in the background of the owning form. Fixes #77332
11267
11268 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11269
11270         * MimeIcon.cs: Fix for #77409
11271
11272 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
11273
11274         * XplatUIX11GTK.cs: Initial import
11275
11276 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
11277
11278         * FixedSizeTextBox: fixes class signature
11279
11280 2006-01-30  Jackson Harper  <jackson@ximian.com>
11281
11282         * FixedSizeTextBox.cs: New internal class that represents a
11283         textBox that will not be scaled.
11284         * TreeView.cs:
11285         * ComboBox.cs:
11286         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
11287         standard TextBox.
11288                 
11289 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
11290
11291         * XplatUIX11.cs: Retrieve default screen number instead of
11292           assuming 0. Attempted fix for #77318
11293
11294 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
11295
11296         * XplatUIWin32.cs: 
11297           - GetWindowPos: When a window is parented by FosterParent, use 
11298             the desktop instead of FosterParent as the base to get coordinates
11299           - CreateWindow: Don't make FosterParent the parent window for Popups
11300             if we don't want a taskbar entry, Popups automatically don't get one
11301         * Hwnd.cs: Need to call remove to actually remove the key from the
11302           hash table
11303
11304 2006-01-30  Mike Kestner  <mkestner@novell.com>
11305
11306         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
11307
11308 2006-01-30  Jackson Harper  <jackson@ximian.com>
11309
11310         * TreeView.cs:
11311         * TreeNode.cs: Raise events no matter how the treenode is
11312         checked. Patch by Don Edvalson.
11313
11314 2006-01-30  Jackson Harper  <jackson@ximian.com>
11315
11316         * TreeNode.cs: Signature fix.
11317
11318 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
11319
11320         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
11321
11322 2006-01-20  Mike Kestner  <mkestner@novell.com>
11323
11324         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
11325         event forwarding when menus are active.
11326         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
11327         Most of the patch is pdb's with a little rework.
11328
11329 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
11330
11331         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
11332           Removed GetMenuDC and ReleaseMenuDC methods; replaced
11333           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
11334         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
11335         * InternalWindowManager.cs: Added use of PaintEventStart/End to
11336           handling of WM_NCPAINT message, now passing the PaintEventArgs to
11337           the PaintWindowDecorations method
11338         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
11339         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
11340         * MenuAPI.cs: Made tracker window invisible
11341         * XplatUIWin32.cs:
11342           - Removed GetMenuDC and ReleaseMenuDC methods
11343           - Implemented the client=false path for PaintEventStart and
11344             PaintEventEnd
11345
11346 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
11347
11348         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
11349         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
11350           styles
11351         * Form.cs: 
11352           - MaximizeBox, MinimizeBox: Recreate the handle when setting
11353             the style
11354           - CreateParams: Reworked the styles to match MS look'n'feel,
11355             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
11356             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
11357
11358 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
11359
11360         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
11361           window is not mapped, since otherwise every form that's being 
11362           created is considered minimized, which is wrong.
11363         * Form.cs: Catching the exception and returning our internal value
11364           instead
11365
11366 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
11367
11368         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
11369           SetWindowMinMax() to have means to tell the driver about the minimum,
11370           maximum and maximized state window sizes. (Part of the fix for #76485)
11371         * Form.cs:
11372           - Implemented tracking of minimum and maximum window size, now calling
11373             new SetWindowMinMax() driver method to tell the driver (Part of the
11374             fix for #76485)
11375           - Finished handling of WM_GETMINMAXINFO method, now setting all values
11376             (Completes fix for #76485)
11377           - Calling new SetWindowMinMax driver method when the handle for a 
11378             form is created, to make sure the driver knows about it even if
11379             the values have been set before the window was created
11380           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
11381             to avoid messing up our anchoring calculations (partial fix
11382             for #77355)
11383         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
11384         * XplatUIX11.cs:
11385           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
11386           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
11387             (and presumably other freedesktop.org compliant WMs). Left the
11388             assumption unmapped=minimized, needed for SetVisible to work.
11389           - Now setting the window state when creating windows
11390           - Fixed SetVisible to consider/set the window state when mapping
11391             a Form. We cannot set the state before it's mapped, and we cannot
11392             use Form.WindowState once it's mapped (since it would ask the
11393             driver and get 'normal'. Therefore, we grab the state before
11394             mapping, map, and then set state.
11395           - Implmemented SetWindowMinMax method; Metacity does not seem to
11396             honor the ZoomHints, though.
11397         * XplatUIWin32.cs:
11398           - Removed MINMAXINFO (moved to XplatUIStructs)
11399           - Added SetWindowMinMax stub (on Win32 the only way to set that
11400             information is in response to the WM_GETMINMAXINFO message, which
11401             is handled in Form.cs)
11402           - Added logic to SetVisible to set the proper window state when a 
11403             form is made visible (fixes #75720)
11404
11405 2006-01-26  Jackson Harper  <jackson@ximian.com>
11406
11407         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
11408         same way we handle them with Invoke.
11409
11410 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
11411
11412         * Form.cs:
11413           - Added tracking of window state so CreateParams can return
11414             the appropriate style
11415           - Moved setting of WS_CAPTION style in CreateParams to allow
11416             styles without caption
11417         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
11418           control if the TextBox property is accessed. Fixes #77345
11419         * Control.cs:
11420           - get_Created: now uses is_disposed and is_created to determine
11421             return value (suggested by Jackson)
11422           - CreateHandle: No longer exits if the handle is being recreated
11423           - RecreateHandle: If the handle is not yet created call the 
11424             appropriate method to create either control or handle. If the
11425             control is already created CreateHandle will simply exit instead
11426             of just creating the handle
11427         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
11428           now SendMessage WM_DESTROY directly to the control when DestroyWindow
11429           is called.
11430         * XplatUIX11.cs: 
11431           - When DestroyWindow is called, instead of waiting for the 
11432             DestroyNotification from X11, we directly post it to the WndProc
11433             and immediately dispose the hwnd object.
11434             Same applies to DestroyChildWindows, and this obsoletes the
11435             expose_pending tracking. Contrary to Win32 behaviour we destroy our
11436             child windows before our own, to avoid X11 errors.
11437           - Removed the direct sending of WM_PAINT on UpdateWindow
11438         * XplatUIWin32.cs:
11439           - Reworked DoEvents and GetMessage to allow access to internal queue
11440             even when trying non-blocking access to the queue.  Fixes #77335. 
11441             Based on a patch suggestion by Don Edvalson. The new private
11442             GetMessage can now also be used as a backend for a PeekMessage
11443             frontend version.
11444         * XplatUI.cs: Improved debug output for CreateWindow
11445
11446 2006-01-25  Jackson Harper  <jackson@ximian.com>
11447
11448         * Help.cs: Allow param to be null. Patch by Don Edvalson.
11449
11450 2006-01-24  Jackson Harper  <jackson@ximian.com>
11451
11452         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
11453         when we have a MaxDropItems lower then the selected index.
11454
11455 2006-01-24  Jackson Harper  <jackson@ximian.com>
11456
11457         * Control.cs: Don't allow selection of non visible controls, allow
11458         selection of controls without parents.
11459
11460 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
11461
11462         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
11463         * DataGridDrawingLogic.cs: Add editing row only when is necessary
11464
11465 2006-01-23  Jackson Harper  <jackson@ximian.com>
11466
11467         * UpDownBase.cs: Make the textbox handle all the selection and
11468         tabbing. This fixes tabing to updown controls.
11469
11470 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
11471
11472         * TextBoxBase.cs: fixes exception thown the object was null
11473
11474 2006-01-23  Jackson Harper  <jackson@ximian.com>
11475
11476         * ButtonBase.cs: Just use the base CreateParams. They set
11477         visibility and enabled correctly.
11478         * ComboBox.cs:
11479         * TrackBar.cs:
11480         * MonthCalendar.cs: Lets let the base set as much of the
11481         createparams as possible so we don't have duplicate code all over
11482         the place.
11483
11484 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
11485
11486         * ThemeGtk.cs: Added TrackBar and some experimental code to
11487           get double buffering back
11488
11489 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
11490
11491         * DataGrid.cs: Allows row number set internally higher than the last
11492         when creating a new row. Restores the editing functionality.
11493
11494 2006-01-20  Mike Kestner  <mkestner@novell.com>
11495
11496         * MimeIcon.cs: delay Image creation until the icons are accessed
11497         instead of creating 190 scaled images on GnomeHandler startup.
11498
11499 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
11500
11501         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
11502           first call base before processing the event. Fixes #77279
11503
11504 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
11505
11506         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
11507           that the stride for the GDI bitmap would match the stride of
11508           a DIB or a Cursor.
11509
11510 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
11511
11512         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
11513
11514 2006-01-19  Jackson Harper  <jackson@ximian.com>
11515
11516         * ComboBox.cs: Hookup the text controls keydown event so we get
11517         those when the text control has the focus.
11518
11519 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
11520
11521         * Label.cs: Now using the base events instead of defining new ones;
11522           this allows us to just call the base properties without having to
11523           duplicate all base property logic 
11524
11525 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
11526
11527         * Label.cs: A label by default is not a tabstop (Fixes one of our
11528           failing nunit tests)
11529
11530 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
11531
11532         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
11533         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
11534
11535 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
11536
11537         * Cursor.cs: Reimplemented creating cursor bitmaps without using
11538           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
11539           This fixes #77218
11540         * XplatUIWin32.cs: 
11541           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
11542             constructor creates images that can't be saved. Part of the fix
11543             for #76103
11544           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
11545           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
11546             bug fix for handling window state in forms properly)
11547
11548 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11549
11550         * ThemeGtk.cs: Simplify ScrollBar drawing
11551
11552 2006-01-18  Jackson Harper  <jackson@ximian.com>
11553
11554         * Splitter.cs: Set the default dock style for the splitter control
11555         in the constructor.
11556
11557 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11558
11559         * ThemeGtk.cs: Corrected StateType and ShadowType for
11560           gtk_paint_box
11561
11562 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11563
11564         * Control.cs: Make use of Theme.DoubleBufferingSupported
11565         * ThemeGtk.cs:
11566           - Added drawing for flat style buttons
11567           - Added ScrollBar drawing
11568
11569 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
11570
11571         * ThemeClearlooks.cs: Removed some unneeded code.
11572         * ThemeGtk.cs: First part of ThemeGtk enhancements.
11573
11574 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11575
11576         * LinkLabel.cs: We need to update the hover drawing when
11577           leaving the control as well.
11578
11579 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
11580
11581         * DataGrid.cs: Clicking on non empty areas in the columns
11582            area was giving an exception
11583
11584 2006-01-17  Jackson Harper  <jackson@ximian.com>
11585
11586         * ThemeWin32Classic.cs:
11587         * ListView.cs: Do not draw/clip the headers when the header style
11588         is None.
11589
11590 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11591
11592         * DataGrid.cs: Fixes 77260
11593         
11594 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
11595
11596         * DataGrid.cs: Clicking on a column on a empty grid was giving
11597           an exception
11598
11599 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
11600
11601         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
11602           or any keypress will crash the grid.
11603
11604 2006-01-17  Mike Kestner  <mkestner@novell.com>
11605
11606         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
11607         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
11608         invisible/previously-visible items.
11609         [Fixes #76909]
11610
11611 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
11612
11613         * ThemeClearlooks.cs:
11614         - Added CL_Draw_Button method; now other theme controls that are 
11615           not derived from button or do not have a button can draw buttons
11616           too
11617         - Updated ComboBox drawing
11618         - Beautified RadioButton drawing
11619         - Corrected drawing of bottom and left tabs
11620         - Beautified DateTimePicker and MonthCalendar
11621         - Added CPDrawButton and CPDrawRadioButton
11622
11623 2006-01-16  Jackson Harper  <jackson@ximian.com>
11624
11625         * ComboBox.cs: Set the initial value of the scrollbar to the
11626         current index. Reduce the numbers of refreshs and IndexOfs called.
11627
11628 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
11629
11630         * FileDialog.cs: When the file listview is focused hitting the
11631           backspace key moves the fileview to the parent directory
11632
11633 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11634
11635         * Form.cs: 
11636           - Added RecreateHandle call when changing taskbar visibility to 
11637             trigger reparenting in Win32 driver (Fixes #75719)
11638           - If a window has minimize or maximize buttons, it cannot have
11639             a help button
11640         * XplatUIWin32.cs:
11641           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
11642             the toplevel form with FosterParent (A toolwindow not on the
11643             taskbar) (Fixes #75719)
11644           - Made FosterParent a toolwindow
11645
11646 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11647
11648         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
11649
11650 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11651
11652         * ToolTip.cs: If SetToolTip is called from a control and the mouse
11653           is currently over that control, make sure that tooltip_window.Text
11654           gets updated
11655
11656 2006-01-13  Mike Kestner  <mkestner@novell.com>
11657
11658         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
11659
11660 2006-01-13  Jackson Harper  <jackson@ximian.com>
11661
11662         * TreeView.cs: On MS GetNodeAt never actually factors in the X
11663         value passed.  Also redraw the selected node when we recieve
11664         focus, so tabbing between trees works correctly.
11665
11666 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
11667
11668         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
11669           ~/.gconf/%gconf-tree.xml, so use
11670           .gconf/desktop/gnome/interface/%gconf.xml
11671
11672 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11673
11674         * TextControl.cs: Draw text in gray if control is disabled
11675
11676 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
11677
11678         * TreeView.cs: Draw the focus rectangle outside the highlight, to
11679           make sure it's always visible. Fixes #76680.
11680
11681 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
11682
11683         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
11684
11685 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
11686
11687         * PageSetupDialog.cs: Added.
11688         * PrintDialog.cs: Attributes.
11689         * PrintPreviewControl.cs: Updates.
11690         * PrintPreviewDialog.cs: Updates.
11691         
11692 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11693
11694         * Control.cs: Undid my selection check fix, since it's not needed
11695         * TextBoxBase.cs:
11696           - Now considering the presence of hscroll/vscroll when sizing
11697             vscroll/hscroll respectively. Fixed bug #77077
11698           - Added Left/Up/Down/Right to IsInputKey list to prevent
11699             ContainerControl from stealing them. This fixes what I broke
11700             with my last checkin.
11701
11702 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
11703
11704         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
11705           I finally understand how the property can be set without a setter :-)
11706
11707 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11708
11709         * Application.cs:
11710           - Switched RunLoop to use static Message.Create to create a 
11711             Message object
11712           - Added PreProcessMessage call in runloop for keyboard events; this
11713             is part of the fix for #77219, I overlooked this originally in the
11714             MSDN doc for PreProcessMessage
11715         * Control.cs:
11716           - Removed call to PreProcessMessage from handling of keyboard 
11717             messages; it's supposed to be done in the message pump
11718           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
11719             per MSDN documentation.
11720           - IsInputChar: All chars are input chars by default; removed the 
11721             parent calling chain, MS does not document that
11722           - PreProcessMessage: If IsInputChar is true, we want to return false
11723             to allow dispatching of the message
11724           - When selecting the next control, now also check that we're not
11725             selecting ourselves again and therefore return a false positive.
11726         * TextBoxBase.cs:
11727           - Tried to match return values for IsInputKey and ProcessDialogKey
11728             to what MS returns; moved processing of our special keys outside
11729             ProcessDialogKey since MS does not seem to return true on those.
11730           - Moved code that previously was in ProcessDialogKey into new private
11731             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
11732           - Reworked handling of WM_CHAR to not have to duplicate code from
11733             Control.cs anymore, instead we simply call down to base.
11734            
11735 2006-01-12  Jackson Harper  <jackson@ximian.com>
11736
11737         * ComboBox.cs: We always need to refresh the text area when
11738         EndUpdate is called. Fixes the combobox in the file dialog.
11739         * Control.cs: Don't create the creator_thread until the controls
11740         handle is created.  Also in InvokeRequired we check if the
11741         creator_thread is null. This gives the effect of InvokeRequired
11742         returning true if the controls handle is not created yet, and
11743         matches MS.
11744
11745 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11746
11747         * XplatUI.cs:
11748           - Added StartLoop() driver method. This is used to allow drivers to
11749             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
11750             loop for a particular thread
11751           - Added EndLoop() driver method. This is called once the message
11752             pump for the thread is shut down
11753           - Added SupportsTransparency method to allow the driver to indicate
11754             opacity support for windows
11755         * Form.cs:
11756           - Removed TODO attribute, completed AllowTransparency property
11757           - Added documented logic to Opacity
11758         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
11759           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
11760           versions of CompatibleTextRendering
11761         * X11Structs.cs: Added opacity atom to our atom enumeration
11762         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
11763           of a form might be set before it's reparented by the WM, and we need
11764           the opacity value without calling up to Form)
11765         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
11766           SupportsTransparency() driver methods
11767         * Application.cs: Now calling StartLoop and EndLoop driver methods
11768         * XplatUIX11.cs:
11769           - Added opacity atom registration
11770           - Added StartLoop()/EndLoop() methods. They're empty right now but
11771             will need to get implemented when we switch to a per-thread queue
11772           - Implemented SupportsTransparency() method
11773           - Implemented SetWindowTransparency() method
11774           - Added support for setting the opacity value when a window is
11775             reparented (since the opacity needs to be set on the WM frame)
11776         * XplatUIOSX.cs, XplatUIWin32.cs:
11777           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
11778
11779 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11780
11781         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
11782
11783 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
11784
11785         * FileDialog.cs: Added ToolTip for MWFFileView
11786         * MimeIcon.cs: Rewrote GnomeHandler.
11787           - Get currently used gnome icon theme from
11788             ($HOME)/.gconf/%gconf-tree.xml
11789           - Make use of inherited icon themes
11790           - Support SVG icon themes like Tango via librsvg
11791
11792 2006-01-12  Miguel de Icaza  <miguel@novell.com>
11793
11794         Revert's Jackson's revert which broke 2.0 builds.   Fix both
11795         builds. 
11796         
11797         * Application.cs: Move the use_compatible_text_rendering outside
11798         the NET_2_0 define.  If we ever need to use the
11799         use_compatible_text_rendering on the individual controls they will
11800         access the variable from the common shared code paths.
11801
11802 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
11803
11804         * XplatUI.cs:
11805           - Added more granular debug options
11806           - Added method to print both window text and id
11807           - Switched debug output to use new Window() debug method
11808           - Added IsEnabled() driver method
11809           - Added EnableWindow() driver method
11810         * Form.cs:
11811           - Removed end_modal; no longer needed, new loop handles termination
11812             via 'closing' variable
11813           - If form is modal, setting DialogResult will now initiate loop
11814             termination via 'closing' variable
11815           - Added support for is_enabled/WS_DISABLED to CreateParams
11816           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
11817             does all the work
11818           - Removed code that's now in RunLoop from ShowDialog()
11819           - Added various documented sanity checks to ShowDialog()
11820           - Added handling of WM_DESTROY message; we set 'closing' on getting
11821             the message to indicate the message pump to terminate
11822           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
11823             send by the Application.ExitThread method. (We send the message
11824             to destroy the window after all other events have been
11825             processed through the queue, instead of destroying the handle 
11826             directly)
11827           - Moved code from Close() method to WM_CLOSE handler; added logic
11828             to only send close-related events if the form is not displayed
11829             modal
11830         * Splitter.cs (..ctor): Fixed typo in resource name
11831         * Control.cs:
11832           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
11833             brush now
11834           - set_Cursor: Now only setting calling into XplatUI if the handle for
11835             the control is already created; this avoids implict handle creation
11836             or crashes if it's not created
11837           - set_Enabled: Now setting the enabled state via the new driver method
11838             instead of just tracking it
11839           - CreateParams: Added logic to set WS_DISABLED based on enabled state
11840           - CreateControl: Reordered event firing and method calls to more
11841             closely fire events in the order MS does. Now setting the
11842             enabled state in the driver when creating the control.
11843           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
11844             match MS order
11845         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
11846           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
11847         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
11848         * Hwnd.cs:
11849           - Added tracking of window enabled state (get_Enabled/set_Enabled)
11850           - Added EnabledHwnd property to easily allow a driver to find the
11851             handle of the first enabled window in the parent chain (this is
11852             used by drivers to pass up input events of disabled windows)
11853         * XplatUIDriver.cs: Added IsEnabled() method
11854         * Application.cs:
11855           - Removed crude and obsolete exiting tracking variable
11856           - Removed internal ModalRun(); replaced by RunLoop()
11857           - Implemented private CloseForms() method to allow closing all 
11858             windows owned by a particular (or all) threads
11859           - Exit() now properly closes all windows without forcing the message
11860             pump to quit
11861           - Removed obsolete InternalExit() method
11862           - Changed Run() methods to use new RunLoop() message pump
11863           - Implemented new RunLoop() method for both modal and non-modal forms
11864         * CommonDialog.cs:
11865           - get_CreateParams: Added setting of WS_DISABLED
11866           - Simplified ShowDialog(); now all the work is done in RunLoop(),
11867             invoked via Form.ShowDialog()
11868         * NativeWindow.cs: We don't remove the window from the collection when
11869           the handle is destroyed; there might still be messages for it in the
11870           queue (mainly the resulting WM_DESTROY); instead it will be removed
11871           when Control calls InvalidateHandle in the WM_DESTROY handler
11872         * XplatUIX11.cs:
11873           - CreateWindow: Added logic to handle the WS_DISABLED window style
11874           - EnableWindow: Implemented based on Hwnd.Enabled
11875           - GetMessage: Reset PostQuitState so the method can be called again
11876           - Implemented support for disabled windows (passing messages to the
11877             first enabled parent) in handling all input messages
11878           - Added optimizations for handling Expose events
11879           - Implemeted new driver method IsEnabled()
11880           - Now always resetting paint pending tracking vars when we start paint
11881           - Re-implemented UpdateWindow via just sending a WM_PAINT message
11882         * XplatUIOSX.cs: Added IsEnabled method stub
11883         * XplatUIWin32.cs: Implemented new IsEnabled() method
11884
11885 2006-01-11  Jackson Harper  <jackson@ximian.com>
11886
11887         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11888         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
11889         variables a little.
11890         * ColorDialog.cs: Clear out the old form before adding the new
11891         panel.  
11892
11893 2006-01-11  Jackson Harper  <jackson@ximian.com>
11894
11895         * X11Dnd.cs: Make sure to add all the text formats when adding
11896         strings to the data object.
11897         * TreeNodeCollection.cs: When adding to a sorted tree we need to
11898         do some redrawing too.  Also change the UpdateNode to an
11899         UpdateBelow so the newly added node gets painted.
11900         
11901 2006-01-11  Miguel de Icaza  <miguel@novell.com>
11902
11903         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
11904         LinkLabel.cs, PropertyGrid.cs: Implement the
11905         UseCompatibleTextRendering property for 2.x
11906
11907         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
11908
11909 2006-01-11  Jackson Harper  <jackson@ximian.com>
11910
11911         * TreeView.cs: Use the property for setting the selected node so
11912         the correct events get raised.
11913         * TreeNode.cs: Update the tree when the fore/back colours of a
11914         node are set.
11915
11916 2006-01-10  Jackson Harper  <jackson@ximian.com>
11917
11918         * TreeView.cs: Allow setting SelectedNode to null.
11919
11920 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11921
11922         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
11923
11924 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11925
11926         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
11927
11928 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11929
11930         * PrintDialog.cs: Added attributes and set default property values.
11931
11932 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11933
11934         * PrintControllerWithStatusDialog.cs: 
11935         Added PrintControllerWithStatusDialog.
11936
11937 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11938
11939         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
11940         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
11941
11942 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
11943
11944         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
11945
11946 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
11947
11948         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
11949         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
11950
11951 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11952
11953         * MimeIcon.cs: Added internal class SVGUtil.
11954
11955 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
11956
11957         * FileDialog.cs: Don't crash if there are two files with the
11958           same name but different locations.
11959
11960 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
11961
11962         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
11963         dates across multiple month grids. Used to not highlight entire 
11964         month, but does now.
11965         
11966 2006-01-06  Jackson Harper  <jackson@ximian.com>
11967
11968         * MonthCalendar.cs: Removed DoEvents call to prevent a running
11969         message loop. Change timer intervals to numbers that seem more
11970         natural.
11971
11972 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
11973
11974         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
11975           object for location info since screen object is now implemented.
11976
11977 2006-01-05  Jackson Harper  <jackson@ximian.com>
11978
11979         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
11980         * AsyncMethodResult.cs: We no longer use a WeakReference for the
11981         AsyncMethodResult, this is because we ALWAYS want the
11982         ManualResetEvent to get set.
11983         * Control.cs: When disposing use an async invoke to call shutdown
11984         code, so that thigns don't block on the finalizer thread.  Also
11985         check if we even have a message loop before trying to send
11986         messages, if we don't then don't bother sending messages.
11987         - No more weak references for async methods
11988         * XplatUIDriver.cs: No more weak references for async methods.
11989
11990 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
11991
11992         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
11993           returns two FontFamily with the same name
11994
11995 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
11996
11997         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
11998           drawing disabled text. Instead using the ColorGrayText color
11999
12000 2006-01-04  Jackson Harper  <jackson@ximian.com>
12001
12002         * TreeNode.cs: redraw the node when its image index is changed.
12003
12004 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
12005
12006         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
12007           time I checked there are no others like it.
12008
12009 2006-01-04  Jackson Harper  <jackson@ximian.com>
12010
12011         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
12012         this gives the behavoir I was looking for.
12013         * Control.cs: Special case Invoking EventHandlers, this matches MS
12014         and fixes part of bug #76326.
12015
12016 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12017
12018         * ThemeClearlooks.cs, FileDialog.cs:
12019           - Reflect the latest Theme class changes
12020           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
12021             with DateTime
12022             
12023 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
12024
12025         * Theme.cs: Cache UI resource images and resize them if needed
12026
12027 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
12028
12029         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
12030           is called. This fixes the crash in Nexxia when setting the font
12031           attributes in the chat. [However, RTF needs a look-over to make sure
12032           that all SelectionXXX methods handle the special case that selection
12033           is empty and therefore the change must be applied to all text starting
12034           at the cursor/selection start]
12035
12036 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
12037
12038         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12039           XplatUIOSX.cs: Added SendMessage and PostMessage methods
12040         * X11Keyboard.cs: Switched to new way of calling PostMessage
12041
12042 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
12043
12044         * Theme.cs: Added theme interface for images to allow the theme to
12045           control what images are used for things like FileDialog, MessageBox
12046           icons, etc.
12047         * MessageBox.cs: Now uses the new Theme icon/image interfaces
12048
12049 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
12050
12051         * FileDialog.cs:
12052           - Removed some dead code
12053           - Opening a recently used file does work now
12054           - Small UI enhancements
12055           - Refactoring
12056
12057 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
12058
12059         * FileDialog.cs: Forgot too add __MonoCS__
12060
12061 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
12062
12063         * FileDialog.cs: We are able to read recently used files now let's
12064           go on and write them.
12065
12066 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
12067
12068         * FileDialog.cs: Breathe some life into "last open"/"recently used"
12069           button
12070         * MimeIcon.cs: Do a check for the top level media type also
12071
12072 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
12073
12074         * ThemeClearlooks.cs:
12075           - Added CPDrawStringDisabled
12076           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
12077             some chars if the text doesn't fit into text_rect
12078           - DrawListViewItem: If View = View.LargeIcon center the image;
12079             rewrote the drawing of ListViewItem.Text if View = 
12080             View.LargeIcon
12081
12082 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
12083
12084         * MimeIcon.cs: Use default KDE icon theme if there is no
12085           "48x48" directory for the current icon theme, fixes #77114
12086         * Mime.cs: Disable not working and actually not used code. 
12087         * ThemeWin32Classic.cs:
12088           - Replace "new SolidBrush" in GetControlBackBrush and
12089             GetControlForeBrush with ResPool.GetSolidBrush
12090           - Changed DrawListViewItem from private to protected virtual
12091         * FileDialog.cs:
12092           - Added form.MaximizeBox = true
12093           - Don't throw an exception if there is a broken symbolic link
12094
12095 2005-12-23  Jackson Harper  <jackson@ximian.com>
12096
12097         * TabControl.cs: Give the panels focus, keyboard navigation is
12098         fixed so this works correctly now.
12099         - We need these key events also.
12100         * ToolBar.cs: Remove some of the poor mans double buffering.
12101         
12102 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
12103
12104         * ComboBox.cs: The internal TextBox now returns the focus.
12105
12106 2005-12-23  Jackson Harper  <jackson@ximian.com>
12107
12108         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
12109
12110 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12111
12112         * Control.cs: Removed debug code
12113         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
12114           implicit children
12115
12116 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
12117
12118         * Control.cs: When creating the control, update the Z-order after
12119           all it's children are created, too. (Fixes nexxia not showing
12120           picturebox bug)
12121
12122 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
12123
12124         * Control.cs: Do not update the anchoring distances if layout is
12125           suspended, instead do it once layout is resumed
12126
12127 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
12128
12129         * Control.cs: 
12130           - After many hours of debugging, for both Jackson and
12131             myself, it turns out that it helps to set the parent of a control
12132             if you want to actually see it onscreen. In the spirit of that
12133             discovery, we're now setting the parent of the control and
12134             it's children when the control's handle is created. This fix
12135             will make Lutz Roeder's Reflector run happily. 
12136           - now just creating the handle instead of the whole control when
12137             getting a graphics context for the control.
12138
12139 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12140
12141         * ScrollableControl.cs: When calculating the canvas, don't consider
12142           the scrollbar widths. Instead, predict if horizontal scrollbar
12143           will affect canvas when deciding on vertical display and vice versa.
12144
12145 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
12146
12147         * RichTextBox.cs: Set default RTF font for documents that don't
12148           have a font table (Fixes #77076)
12149
12150 2005-12-22  Jackson Harper  <jackson@ximian.com>
12151
12152         * TextBoxBase.cs: It's difficult to do, but you can have an empty
12153         clipboard. This prevents a NullRef in that case.
12154         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
12155         clipboard. PRIMARY is for the currently selected text only. (We
12156         should implement PRIMARY at some point.
12157
12158 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12159
12160         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
12161           a Unicode function with a structure that was defined in Ansi way.
12162           This fixes #76942.
12163
12164 2005-12-21  Jackson Harper  <jackson@ximian.com>
12165
12166         * StatusBar.cs: Statusbar handles its fore/back colours on it's
12167         on. Because thats how it rolls. (and this avoids it using ambient
12168         colours).
12169         * ThemeWin32Classic.cs: Use the proper back color for filling.
12170         * Menu.cs: Use the system menu bar color for drawing menu
12171         bars. Using the window back color will bring ambient colours into
12172         the picture.
12173
12174 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
12175
12176         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
12177           Bitmaps were created and not disposed.
12178
12179 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12180
12181         * Control.cs (CreateControl): Don't do anything if the control is
12182           already created, otherwise we'd fire the OnCreated event more than
12183           once
12184
12185 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12186
12187         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
12188           will always match. Instead return -1. Fixes #76464.
12189
12190 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
12191
12192         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
12193           neither the beginning nor the end of the line (Fixes bug #76479)
12194
12195 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
12196
12197         * Control.cs:
12198           - ControlNativeWindow.ControlFromHandle(): Now handling situation
12199             where handle is invalid
12200           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
12201             instead of slower linear search
12202         * NativeWindow.cs: Don't remove the window from the hashtable until
12203           after the driver has destroyed it (since the driver might use
12204           Control.FromHandle to lookup the control object
12205         * Hwnd.cs: Added DestroyPending property to track if a window is 
12206           already destroyed as far as the driver is concerned and only hasn't
12207           yet notified the control
12208         * XplatUIX11.cs:
12209           - Activate(): Check if the window is still valid before using the 
12210             handle
12211           - Implemented DestroyChildWindow() method to mark child windows as
12212             destroyed when a window is destroyed. This prevents situations 
12213             where we might call an X method based on queued events for a
12214             window that already has been destroyed but we haven't yet pulled
12215             the destroy method from the queue.
12216           - Added a call to the new DestroyChildWindow() method to the drivers
12217             DestroyWindow code. Also now marking the destroyed window itself
12218             as pending
12219
12220 2005-12-20  Jackson Harper  <jackson@ximian.com>
12221
12222         * StatusBar.cs:
12223         * StatusBarPanel.cs: Don't calculate panel sizes on draw
12224         anymore. Just do them when needed, also track the rects of panels
12225         so that we can optimize refreshing more in the future.
12226
12227 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
12228
12229         * ColorDialog.cs: Fixed focus drawing in small color controls
12230
12231 2005-12-19  Jackson Harper  <jackson@ximian.com>
12232
12233         * InternalWindowManager.cs:
12234         * MdiWindowManager.cs: Cleanup some coordinate system changes so
12235         moving windows works properly.
12236
12237 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
12238
12239         * Control.cs: 
12240           - Removed call to InitLayout() from SetBoundsCore(); doc says
12241             it's only called when a control is added to a container
12242           - Split InitLayout logic, moved to separate UpdateDistances() method
12243             since we need to perform those calculations more often than just
12244             when adding the control to a container. (Needed to fix #77022)
12245           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
12246           - Reduced the OnBindingContextChanged events count, don't send them
12247             unless the control is created, we still aren't totally matching
12248             MS, but I can't quite figure out some of their rules
12249
12250 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12251
12252         * ThemeClearlooks.cs: Corrected distance between ProgressBar
12253           stripes
12254
12255 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12256
12257         * ThemeClearlooks.cs:
12258           - Updated ProgressBar drawing
12259           - Corrected drawing of ScrollBars and scroll buttons
12260           - Some temporary fixes for minor pixel artefacts
12261
12262 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
12263
12264         * Control.cs:
12265           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
12266             cause events to be sent in the same order as MS does.
12267           - Added ChangeParent() method to trigger various OnXXXChanged events
12268             that need to be fired when a parent changes (This is a reworking
12269             of the patch from r54254, with the X11 errors fixed)
12270           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
12271             since on MS we get OnLayoutChanged events when calling Clear()
12272           - Changed Enabled property to consider parent state as well, if a
12273             parent is not enabled, the control will not be either
12274           - Changed Parent property to simply call Controls.Add() since that
12275             now does all the work required, this way we avoid code duplication
12276           - Threw in a few OnBindingsContextChanged calls to try and match
12277             when MS sends them. We seem to send a few too many, though.
12278           - Added call to CreateControl when adding the control to a parent.
12279             We were never calling CreateControl. Still needs some work, in
12280             some places we treat HandleCreated and ControlCreated as equal, 
12281             which is wrong
12282           - Removed obsolete commented out code from UpdateZOrder()
12283
12284 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
12285
12286         * ThemeClearlooks.cs: Updated TrackBar drawing.
12287
12288 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12289
12290         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
12291
12292 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
12293
12294         * FileDialog.cs: Add the Help button and the open readonly
12295           checkbox only if needed
12296
12297 2005-12-16  Jackson Harper  <jackson@ximian.com>
12298
12299         * Control.cs: Make sure we have an active menu before trying to
12300         process commands on it. Prevents menu-less forms from crashing
12301         when Alt is pressed.
12302         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
12303         Dieter Bremes.
12304         * RichTextBox.cs: Expand statement to help out gmcs and fix the
12305         2.0 build.
12306
12307 2005-12-16  Jackson Harper  <jackson@ximian.com>
12308
12309         * InternalWindowManager.cs: Don't translate tool windows screen
12310         coordinates. This fixes windows 'bouncing' around when being moved.
12311
12312 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12313
12314         * TextBoxBase.cs:
12315           - MaxLength now treats 2^31-1 equal to unlimited length (this is
12316             not quite MS compatible, MS uses that number only for single line
12317             and 2^32-1 for multi-line, but I figure it won't hurt keeping
12318             the limit at 2GB)
12319           - Now enforcing the MaxLength limit when entering characters
12320           - Added argument to internal Paste() method to track if it's called
12321             from programatically or via keyboard, since keyboard driven pastes
12322             need to enforce max-length
12323           - Added logic to Paste to only paste as many chars as MaxLength 
12324             allows
12325         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
12326         * TextControl.cs:
12327           - Added Length property to return number of characters in document
12328           - Added private CharCount property which only tracks actual chars
12329             in the document (no linefeeds) and fires event when CharCount
12330             changes
12331           - Added tracking of character count to all methods that alter it
12332           - Added LengthChanged event to allow applications to subscribe
12333             to any changes to the document
12334
12335 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
12336
12337         * TextBox.cs: 
12338           - Removed local password_char field (moved to TextBoxBase)
12339           - Now setting the document's password var when password is
12340             set
12341         * TextBoxBase.cs:
12342           - Added password_char field (needed here so MultiLine can
12343             access it)
12344           - Added logic to MultiLine property setter to set the document's
12345             variable when password display is allowed
12346           - Removed debug code and made some debug code conditional
12347         * TextControl.cs:
12348           - Added RecalculatePasswordLine() method to handle special password
12349             char only lines
12350           - Added PasswordChar property, also added related tracking vars
12351           - Draw() method now uses local text var for grabbing text to draw,
12352             this var is set to line.text unless we're doing password display,
12353             then it is set to the pre-generated all-password-chars line
12354           - Added calling RecalculatePasswordLine() method for password lines
12355
12356 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
12357
12358         * Hwnd.cs: 
12359           - Added Reparented property to allow tracking of Window Manager
12360             reparenting actions (which affect X/Y calculations of toplevel 
12361             windows)
12362           - Made ToString() print window handles in hex
12363         * XplatUIX11.cs:
12364           - AddConfigureNotify(): Now uses reparented state off Hwnd to
12365             determine if X/Y needs offsetting
12366           - AddConfigureNotify(): Fixed offset calculations
12367           - Now adds ReparentNotify messages into the queue
12368           - Now processes ReparentNotify messages and causes a 
12369             WM_WINDOWPOSCHANGED message to be sent upstream if a window
12370             is reparented (as most likely it's X/Y coordinates are changed
12371             due to that)
12372
12373 2005-12-14  Jackson Harper  <jackson@ximian.com>
12374
12375         * XplatUIX11.cs: Tool windows still need to respek focus.
12376
12377 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
12378
12379         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
12380           have a working release
12381
12382 2005-12-13  Jackson Harper  <jackson@ximian.com>
12383
12384         * Form.cs: Update styles after setting the border style regardless
12385         of whether or not the window is using a window manager.
12386
12387 2005-12-13  Jackson Harper  <jackson@ximian.com>
12388
12389         * Form.cs: We now hook into an internal window manager instead of just an
12390         MDI subsystem, this is so we can have properly behaving tool windows.
12391         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
12392         * InternalWindowManager.cs: New internal class that acts as a
12393         window manager for tool windows and as a base for mdi windows.
12394         * MdiWindowManager.cs: New class that acts as a window manager for
12395         mdi windows.
12396
12397 2005-12-12  Jackson Harper  <jackson@ximian.com>
12398
12399         * Control.cs: Updates so we match behavoir for for implicit
12400         controls. Fixes explosions in MDI.
12401
12402 2005-12-12  Jackson Harper  <jackson@ximian.com>
12403
12404         * Control.cs: Implement Invalidate (Region).
12405
12406 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
12407
12408         * Control.cs: 
12409           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
12410             the same events as MS does. MS fires events for each property 
12411             except, for unknown reasons, Cursor, when the control is reparented. 
12412             I can't seem to totally match add/remove since MS also fires some 
12413             VisibleChanged events, which makes no sense. Consolidated the
12414             parenting code into a separate method so it can be called from
12415             both Add and Remove. set_Parent no longer needs any special logic
12416             as it calls the parent's add method which implicitly fires
12417             all events
12418           - Removed some obsolete code and debug output
12419           - Enabled state is inherited from parents, if this is enabled
12420
12421 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
12422
12423         * Form.cs: Removed commented out code
12424
12425 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
12426
12427         * Control.cs:
12428           - Added internal version of Invoke, with additional argument 
12429             indicating if we're calling it from a Dispose() handler. That
12430             way we can avoid BeginInvoke throwing an exception if we're
12431             calling for an already destroyed window.
12432           - Added a dispose argument to BeginInvokeInternal, and made the
12433             check if a valid window handle chain exists conditional on
12434             it not being a dispose call
12435           - Removed code in DestroyHandle to destroy our children. Since we
12436             now handle the WM_DESTROY message we will catch all our children
12437             being destroyed.
12438           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
12439         * Form.cs:
12440           - Added a field to track the application context of the form.
12441           - No need to set closing variable as response to WM_CLOSE, instead
12442             we destroy the window. We also call PostQuitMessage if the form
12443             has an application context (which makes it the main app form,
12444             which, when closed terminates the app)
12445         * XplatUI.cs:
12446           - Dropped Exit() method, it's naming was confusing
12447           - Added PostQuitMessage() which causes GetMessage to return false
12448             once the message queue is empty
12449         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
12450           PostQuitMessage()
12451         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
12452           no longer a valid XplatUI method, but left it in since it's used
12453           internally. Added empty PostQuitMessage() method.
12454         * MenuAPI.cs: Replaced call to Exit() with call to
12455           PostQuitMessage, even though this is probably no longer needed.
12456         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
12457         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
12458         * Application.cs:
12459           - Replaced call to XplatUI.Exit() with PostQuitMessage()
12460           - Removed old debug code that would call XplatUI for exception
12461             display, enabled standard exception handling (Still not enabled
12462             though, until NativeWindow's ExternalExceptionHandler define
12463             is removed
12464         * NativeWindow.cs:
12465           - Added internal method to allow control to update NativeWindow
12466             after a window has been destroyed
12467           - Added handling of already destroyed windows when calling i
12468             DestroyWindow
12469           - Added removal of handle from list on ReleaseHandle
12470         * XplatUIX11.cs:
12471           - Dropped GetMessageResult var and related code
12472           - Added PostQuitState to field to track if PostQuitMessage has been
12473             called
12474           - Dropped Exit() method
12475           - Added PostQuitMessage() method
12476           - GetMessage now will return false if PostQuitState is set and no
12477             more messages are in the queue.
12478           - Expose handler will no longer generate WM_PAINT messages if we are
12479             in PostQuitState since it's very likely any windows have already
12480             been destroyed, and since Hwnd won't get updated until we have
12481             processed the DestroyNotify we'd be causing X errors.
12482         
12483 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12484
12485         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
12486           Thanks to Mike for pointing out the err of my ways.
12487
12488 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12489
12490         * Control.cs(PreProcessMessage): Moved menu handling back, but
12491           after all other key handling, to match MS (who handles Menu in
12492           DefWndProc)
12493         * Menu.cs (WndProc): Removed my brainfart
12494
12495 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12496
12497         * Control.cs(PreProcessMessage): Removed special menu handling 
12498         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
12499
12500 2005-12-07  Mike Kestner  <mkestner@novell.com>
12501
12502         * Control.cs : special case SYSKEYUP so that we can adjust keynav
12503         state according in tracker.
12504         * Menu.cs : promote tracker field to base class and provide a tracker
12505         lookup capability.  Add/Remove shortcuts dynamically if the top menu
12506         has a tracker. Unparent items that are removed from the collection.
12507         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
12508         * Theme*.cs: add always_show_hotkeys field to support configurability
12509         of mnemonic display.  win32 doesn't show mnemonics until Alt is
12510         pressed.
12511
12512 2005-12-07  Jackson Harper  <jackson@ximian.com>
12513
12514         * MdiChildContext.cs: Use Control.ResetCursor.
12515         * Control.cs: ResetCursor needs to set the property so that the
12516         correct XplatUI call gets made.
12517
12518 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12519
12520         * Control.cs: More fixes to make our key events match MS. We
12521           were not setting the modifier state on KeyData, and we were
12522           not generating any events when Alt was pressed with a key
12523           since handling of WM_SYSxxx was missing for the OnKey methods.
12524
12525 2005-12-07  Jackson Harper  <jackson@ximian.com>
12526
12527         * MdiChildContext.cs: reenable the sizing code.
12528         - When the mouse leaves a window reset its cursor.
12529
12530 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
12531
12532         * ThemeClearlooks.cs: Reflect latest Hwnd changes
12533
12534 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
12535
12536         * Hwnd.cs: Now using the theme 3d bordersize to calculate
12537           widths of Fixed3D borders
12538
12539 2005-12-07  Jackson Harper  <jackson@ximian.com>
12540
12541         * MdiClient.cs: Fix warnings. Earn Mike's love.
12542
12543 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
12544
12545         * ThemeClearlooks.cs:
12546           - Adjusted mouse over button color
12547           - Added first parts of CheckBox drawing
12548           - Added correct color for selected text background
12549           - Fixed ComboBox drawing
12550           - Added CPDrawBorder3D and CPDrawBorder
12551
12552 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
12553
12554         * XplatUIX11.cs: Added call to XBell for AudibleAlert
12555
12556 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
12557
12558         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
12559           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
12560           alert users via sound. We could add an enum arg with different
12561           types of alerts in the future
12562
12563 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
12564
12565         * Control.cs: Fix behaviour problems pointed out by Mike
12566
12567 2005-12-05  Mike Kestner  <mkestner@novell.com>
12568
12569         * StatusBarPanel.cs: add Invalidate method and hook it into all the
12570         prop setters.  Calls parent.Refresh for now, but could be maybe be
12571         optimized with an internal method on StatusBar at some point.
12572         [Fixes #76513]
12573
12574 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
12575
12576         * RichTextBox.cs: Implemented get_SelectionColor
12577
12578 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
12579
12580         * ThemeClearlooks.cs:
12581           - Removed dead code
12582           - Draw black button border only if button is Form.AcceptButton
12583           - Draw correct button color for pressed RadioButton if the mouse 
12584             has entered the button
12585           - Updated ProgressBar drawing!
12586           - Updated CPDrawSizeGrip drawing
12587           - Updated StatusBarPanel drawing
12588
12589 2005-12-05  Mike Kestner  <mkestner@novell.com>
12590
12591         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
12592         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
12593
12594 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
12595
12596         * ThemeClearlooks.cs: Initial check-in, activate with
12597           export MONO_THEME=clearlooks
12598         * ThemeEngine.cs: Added ThemeClearlooks
12599
12600 2005-12-03  Mike Kestner  <mkestner@novell.com>
12601
12602         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
12603         [Fixes #76897]
12604
12605 2005-12-02  Jackson Harper  <jackson@ximian.com>
12606
12607         * Form.cs: If the child form has no menu the default main menu is
12608         used as the active menu.
12609
12610 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
12611
12612         * ListBox.cs: Check if any items exist before trying to resolve 
12613           coordinates into items
12614
12615 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12616
12617         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
12618           as the second color for the background hatch
12619
12620 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
12621
12622         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
12623         * RichTextBox.cs: FormatText position arguments are 1-based, now making
12624           sure that what we pass to FormatText is always 1-based. Fixes #76885
12625
12626 2005-11-29  Miguel de Icaza  <miguel@novell.com>
12627
12628         * NumericUpDown.cs (EndInit): When we are done initializing,
12629         reflect any updates on the UI.
12630
12631 2005-12-02  Jackson Harper  <jackson@ximian.com>
12632
12633         * ImplicitHScrollBar.cs:
12634         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
12635         their container controls.
12636         * TreeView.cs: Use the new implicit scrollbars.
12637
12638 2005-12-02  Jackson Harper  <jackson@ximian.com>
12639
12640         * TreeView.cs: Make top_node internal so the TreeNodeCollections
12641         can play with it.
12642         * TreeNodeCollection.cs: If we remove the topnode we need to
12643         update topnode to the next node in line.
12644         - When clearing nodes go through the same process as removing
12645         them, so they get depareneted and checked if they are top node.
12646
12647 2005-12-01  Jackson Harper  <jackson@ximian.com>
12648
12649         * TreeView.cs: When imagelists are used the image area is
12650         selectable as well as the text.
12651         - If there are no selected nodes select the first one.
12652         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
12653         so don't do it more then we need to.
12654
12655 2005-12-01  Jackson Harper  <jackson@ximian.com>
12656
12657         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
12658         that arrows can be scaled.
12659
12660 2005-12-01  Jackson Harper  <jackson@ximian.com>
12661
12662         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
12663         fail. Patch by Dieter Bremes
12664
12665 2005-11-30  Jackson Harper  <jackson@ximian.com>
12666
12667         * Form.cs: Property is 2.0 only
12668         * PrintDialog.cs: Signature fix.
12669
12670 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12671
12672         * TextControl.cs: 
12673           - No longer artificially moves text 2 pixels down (now that we have
12674             borders this is no longer needed)
12675           - Added calcs for left, hanging and right indent
12676
12677 2005-11-23  Mike Kestner  <mkestner@novell.com>
12678
12679         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
12680
12681 2005-11-30  Jackson Harper  <jackson@ximian.com>
12682
12683         * MdiChildContext.cs: Set the cloned menus forms, as these don't
12684         get cloned as part of CloneMenu ().
12685         * Menu.cs: Make sure the parent of the items get set correctly
12686         when they are added.  And the owners are notified of the changes.
12687         * Form.cs: Create an ActiveMenu property, so that when MDI is used
12688         we can change the menu being displayed/handled by the form without
12689         changing the menu assosciated with the form.
12690         - Don't let Mdi children draw/handle menus.
12691         
12692 2005-11-30  Jackson Harper  <jackson@ximian.com>
12693
12694         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
12695         a MenuChanged event. Just to make the API a little more
12696         consistent.
12697         * MainMenu.cs:
12698         * MenuItem.cs: Use the new OnMenuChanged
12699         * MdiChildContext.cs: Handle menu merging.
12700         * Form.cs: Implement MergedMenu.
12701         
12702 2005-11-30  Jackson Harper  <jackson@ximian.com>
12703
12704         * Menu.cs: We were misusing Add. Add goes behind the specified
12705         index according to the docs, and does not replace the specified
12706         index. So I added an Insert method.
12707
12708 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
12709
12710         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
12711           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
12712           is for Jackson
12713         * RichTextBox.cs: Added calls to base for DnD events
12714
12715 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
12716
12717         * TextControl.cs:
12718           - Fixed drag-selection related crash; style fixes
12719           - Implemented undo class
12720             o Implemented method to capture document state for specified
12721               range in document tree
12722             o Implemented method to restore captured document state
12723             o Implemented cursor tracking
12724             o Implemented basic undo stack
12725           - Added undo cursor tracking to methods altering cursor location
12726           - Added undo tracking to selection deletion (still missing
12727             other text-altering hookups)
12728         * RichTextBox.cs:
12729           - Added SelectionLength property
12730           - Implemented CanPaste()
12731           - Implemented Paste()
12732           - Added missing protected methods
12733           - Fixed RTF->Document conversion; now uses font index 0 and color 
12734             index 0 as the default font for the parsed text
12735           - Fixed RTF<->Document font size translation
12736           - Fixed RTF generation, now properly handles cross-tag boundaries
12737             for single line selection
12738           - No longer always appends blank line to generated RTF
12739           - Removed TODOs
12740           - Added missing attributes
12741           - Hooked up undo-related methods
12742         * TextBoxBase.cs:
12743           - Implemented Copy()
12744           - Implemented Paste()
12745           - Implemented Cut()
12746           - Fixed caret mis-behaviour on backspace across line-boundaries
12747
12748 2005-11-29  Jackson Harper  <jackson@ximian.com>
12749
12750         * MdiClient.cs: Add a method for activating mdi children. Very
12751         basic right now. I imagine someday it might need more girth.
12752         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
12753         children windows names are added to the menu item.
12754         * ThemeWin32Classic.cs: Draw the arrow if the item is an
12755         mdilist. This happens regardless of whether or not there are any
12756         mdi windows to see in the list, and according to my tests happens
12757         before the items are even added. Also happens if there isn't even
12758         an mdi client to get windows from.
12759
12760 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
12761
12762         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
12763         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
12764
12765 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
12766
12767         * DataGridTableStyle.cs:
12768           - Create always the styles for the missing columns even if they are
12769             provided by the user (not default table style)
12770         * DataGrid.cs:
12771           - Fixes bug 76770
12772           - Fixes SetDataBinding (always re-attach source)
12773           - Fixes SetNewDataSource (only clear styles if they are not for 
12774             this source)
12775          -  Expands OnTableStylesCollectionChanged to handle style refresh 
12776             and remove properly
12777
12778 2005-11-29  Jackson Harper  <jackson@ximian.com>
12779
12780         * FileDialog.cs: Implement missing bits, remove some dead
12781         code.
12782         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
12783         creation of the panel so that the options set on the dialog are
12784         seen when the panel is created.
12785         * TreeView.cs: raise a click when items are clicked.
12786         
12787 2005-11-29  Jackson Harper  <jackson@ximian.com>
12788
12789         * MdiClient.cs: Pass some signature methods through to base.
12790
12791 2005-11-28  Jackson Harper  <jackson@ximian.com>
12792
12793         * ListView.cs: Raise the click event when items are clicked.
12794
12795 2005-11-28  Jackson Harper  <jackson@ximian.com>
12796
12797         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
12798         a nullref.
12799
12800 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
12801
12802         * ThemeNice.cs: - Removed 1 pixel bitmaps
12803           - Use SmoothingMode.AntiAlias where it makes sense
12804             (ScrollButton arrow for example)
12805           - Enhanced Button focus drawing
12806           - Fixed ComboBox drawing (no artefacts anymore, focus
12807             rectangle is back again, reduced size of ComboButton, etc.)
12808           - Fixed RadioButton focus drawing for Appearence.Button
12809           - Slight ScrollButton redesign
12810           - Some LinearGradientBrush size fixes
12811           - GroupBoxes have now rounded edges
12812           - Fixed StatusBar drawing
12813
12814 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
12815
12816         * ThemeNice.cs: - Remove dead code
12817           - use correct background colors for menus, etc.
12818           - Fake pixel drawing with 1 pixel bitmaps
12819
12820 2005-11-24  Jackson Harper  <jackson@ximian.com>
12821
12822         * MdiClient.cs: Size the scrollbars when resizing the window.
12823         - Resize the maximized windows when the client is resized
12824         * Form.cs: Make the child context available
12825         
12826 2005-11-23  Jackson Harper  <jackson@ximian.com>
12827
12828         * MdiChildContext.cs: Don't size windows if they are maximized.
12829
12830 2005-11-23  Mike Kestner  <mkestner@novell.com>
12831
12832         * ContextMenu.cs: use MenuTracker.
12833         * Control.cs: remove menu handle usage.
12834         * Form.cs: remove menu handle usage.
12835         * Hwnd.cs: remove menu handle usage.
12836         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
12837         motion and clicks to the new Tracker handlers.
12838         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
12839         and handle usage.
12840         * MenuAPI.cs: refactored to combine popup and menubar event handling.
12841         Killed the MENU and MENUITEM data types and associated collections
12842         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
12843         MenuTracker class that exposes the leftovers from the old MenuAPI
12844         static methods. Restructured Capture handling so that only one grab is
12845         done for the entire menu hierarchy instead of handing off grabs to
12846         submenus. Tracker now has an invisible control to Capture when active.
12847         * MenuItem.cs: add sizing accessors, kill Create
12848         and handle usage.
12849         * Theme.cs: remove menu handle and MENU(ITEM) usage.
12850         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
12851         MENU(ITEM). remove menu handle usage, use Menu directly.
12852         * XplatUIDriver.cs: remove menu handle usage.
12853         * XplatUIOSX.cs: remove menu handle usage.
12854         * XplatUIWin32.cs: remove menu handle usage.
12855         * XplatUIX11.cs: remove menu handle usage.
12856
12857 2005-11-22  Jackson Harper  <jackson@ximian.com>
12858
12859         * Hwnd.cs: Don't compute the menu size for
12860         DefaultClientRectangle.
12861         - Reenable menu sizes being computed for GetClienRectangle.
12862         * Form.cs: Remove comment of trechery
12863         
12864 2005-11-22  Jackson Harper  <jackson@ximian.com>
12865
12866         * Hwnd.cs: The adjustments for the menu bar are made when it is
12867         attached to the form.
12868
12869 2005-11-19  Jackson Harper  <jackson@ximian.com>
12870
12871         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
12872         (just like on windows).
12873
12874 2005-11-19  Jackson Harper  <jackson@ximian.com>
12875
12876         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
12877         use real buttons anymore because they are in non client area. The
12878         one TODO here is that I need to somehow invalidate a section of
12879         the non client area.
12880
12881 2005-11-18  Jackson Harper  <jackson@ximian.com>
12882
12883         * Control.cs: Put the enum check back in now that MDI doesnt have
12884         to use this to set border styles.
12885         * Form.cs: Only set mdi child windows borders if the handle has
12886         been created.
12887         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
12888         this directly on to the driver.
12889         - Get the move start position before adjusting for the titlebar
12890         height, this fixes the windows "skipping" when they are first
12891         moved.
12892
12893 2005-11-18  Jackson Harper  <jackson@ximian.com>
12894
12895         * XplatUIX11.cs: Just compute the mdi borders separately as they
12896         don't totally match up with normal form borders.
12897
12898 2005-11-18  Jackson Harper  <jackson@ximian.com>
12899
12900         * Control.cs: Set WS_ styles for borders, so that the driver does
12901         not have to retrieve the control instance to figure out what kind
12902         of borders it should have.
12903         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
12904         driver can know its an mdi child easily.
12905         * XplatUIX11.cs: Get the border styles and whether the window is
12906         MDI from the Styles and ExStyles params instead of having to get a
12907         control. This prevents a chicken and egg problem.       
12908
12909 2005-11-18  Jackson Harper  <jackson@ximian.com>
12910
12911         * MdiClient.cs: Fix typo so scrollbars show up correctly.
12912
12913 2005-11-18  Jackson Harper  <jackson@ximian.com>
12914
12915         * MdiClient.cs: Calculate when to add and remove scrollbars
12916         correctly.
12917         * MdiChildContext.cs: Adjust the y position to take the titlebar
12918         into account.
12919         - No height for FormBorderStyle.None
12920
12921 2005-11-18  Jackson Harper  <jackson@ximian.com>
12922
12923         * Control.cs: Allow non enum values to be used for
12924         InternalBorderStyle.  MDI does this to set a special border style.
12925         - New utility methods for converting points to/from client coords
12926         - Add the newly created control to the Controls collection before
12927         updating its style. This way UpdateStyle can walk the control
12928         heirarchy to find the control if needed.
12929         so I don't need to create a new Point object all the time.
12930         * Form.cs: Let MDI windows handle their border styles.
12931         - Set styles on MDI windows so the correct title style is derived.
12932         * MdiChildContext.cs: Move all the painting and window handling
12933         into the non client area.
12934         - Use correct sizing and put correct buttons on frames based on
12935         the FormBorderStyle.
12936         - Notify the mdi client about scrolling
12937         - Need to handle the buttons ourselves now, because they are all
12938         in non client areas and we can't add controls there.
12939         * MdiClient.cs: Halfway to scrolling, this implementation is
12940         somewhat broken though, we need to check to make sure other
12941         windows aren't causing scrolling before removing the bars. Also
12942         the bars need to be drawn on top, maybe I can switch implicit
12943         controls to be on top.
12944         * Hwnd.cs: caption_height and tool_caption_height are now
12945         properties of an hwnd, this way they can be set by the driver
12946         based on the type of window they are.  In X11 the window manager
12947         handles the decorations so caption_height is zero unless its an
12948         MDI window.
12949         - Add 3 pixel borders for MDI windows (0xFFFF).
12950         - Get rid of some code duplication, have DefaultClientRectanle
12951         just call GetClientRectangle.
12952         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
12953         Hwnd now.
12954         - Set border styles differently for mdi windows.
12955         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
12956         Hwnd now.
12957         
12958 2005-11-15  Mike Kestner  <mkestner@novell.com>
12959
12960         * Menu.cs: when adding an item to the collection, if item is already 
12961         parented, remove it from the parent.
12962
12963 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
12964
12965         * X11DesktopColors.cs: Added KDE support
12966
12967 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
12968
12969         * XplatUIWin32.cs: 
12970           - Clipboard methods now can translate Rtf format
12971           - No longer removes clipboard contents whenever a new format is added
12972             to allow placing multiple formats on the clipboard
12973         * Clipboard.cs: Clipboard now supports getting a IDataObject and
12974           will place all formats contained in it onto the clipboard. Also
12975           now cleans the clipboard before placing a new object onto it
12976         * RichTextBox.cs:
12977           - Implemented set_Rtf
12978           - Implemented set_SelectedRtf
12979           - Created InsertRTFFromStream() method to allow single code base
12980             for all properties and methods that insert RTF into document
12981           - Removed debug output
12982         * TextControl.cs:
12983           - Fixed Delete(int) to fix up line numbers
12984           - Fixed ReplaceSelection to combine start and end line
12985           - Fixed serious DeleteChars bug that would leave the document tree
12986             broken
12987           - Improved DumpTree with several logic checks to detect broken
12988             document trees
12989           - Removed debug lines
12990           - Fixed Caret.WordForward/WordBack moving code, now always also 
12991             updates caret.tag (fixes crash when word-selecting across tag
12992             boundaries via keyboard)
12993           - Added Insert() method for inserting multiline text into documents
12994           - Fixed DeleteChars() calculation errors that would cause a broken
12995             tag chain with multiple tag lines
12996           - DeleteChars() no longer crashes on multi-tag lines if not all tags
12997           - Split() no longer moves caret if split is at caret location
12998           - ReplaceSelection() now updates the cursor and re-displays it
12999           - ReplaceSelection() now uses new Insert() method to avoid code
13000             duplication
13001           - FormatText() can now handle formatting partial lines
13002         * TextBoxBase.cs:
13003           - Append now uses new TextControl.Insert() method (this avoids 
13004             duplicate code)
13005           - Implemented Ctrl-X (Cut) (
13006           - Implemented Ctrl-C (Copy)
13007           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
13008             regeneration when pasting text; roundtripping Copy&Paste within
13009             edit control still fails due to some calculation bugs in GenerateRTF)
13010           - The Delete key will now remove the current selection if it is visible
13011         * TextBox.cs: Removed debug lines
13012         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
13013           driver to be initialized and can't therefore be done via a static ctor)
13014
13015 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
13016
13017         * TextControl.cs: Added backend code for finding char arrays and strings
13018         * TextBoxBase.cs:
13019           - Added mouse wheel scroll support
13020           - Added support for VScroll and HScroll events
13021         * RichTextBox.cs:
13022           - Implemented all seven Find() variants
13023           - Implemented GetCharFromPosition()
13024           - Implemented GetCharIndexFromPosition()
13025           - Implemented GetLineFromIndex()
13026           - Implemented GetPositionFromCharIndex();
13027           - Implemented SaveFile for PlainText and UnicodeText
13028           - Fixed set_Font, now setting a new font applies that font to
13029             the whole document
13030           - Implemented generic Document to RTF converter
13031           - Implemented SaveFile for RichText format (still missing unicode
13032             conversion for non-ansi chars)
13033           - Implemented get_Rtf
13034           - Implemented get_SelectedRtf
13035
13036 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
13037
13038         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
13039           to allow any captures to be released before triggering OnClick. This
13040           way a click handler may capture the mouse without interference.
13041         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
13042           This way we send them even though X may not allow a grab (if the window
13043           isn't visible, for example)
13044
13045 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
13046
13047         * DataGridViewRowEventArgs.cs: DataGridView implementation
13048         * DataGridViewElement.cs: DataGridView implementation
13049         * DataGridViewComboBoxCell.cs: DataGridView implementation
13050         * DataGridViewDataErrorContexts.cs: DataGridView implementation
13051         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
13052         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
13053         * ImageLayout.cs: DataGridView implementation
13054         * DataGridViewComboBoxColumn.cs: DataGridView implementation
13055         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
13056         * DataGridViewSelectionMode.cs: DataGridView implementation
13057         * IDataGridViewEditingControl.cs: DataGridView implementation
13058         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
13059         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
13060         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
13061         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
13062         * DataGridViewColumnSortMode.cs: DataGridView implementation
13063         * DataGridView.cs: DataGridView implementation
13064         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
13065         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
13066         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
13067         * Padding.cs: DataGridView implementation
13068         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
13069         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
13070         * DataGridViewRowEventHandler.cs: DataGridView implementation
13071         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
13072         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
13073         * DataGridViewButtonCell.cs: DataGridView implementation
13074         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
13075         * DataGridViewEditMode.cs: DataGridView implementation
13076         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
13077         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
13078         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
13079         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
13080         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
13081         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
13082         * DataGridViewCellEventHandler.cs: DataGridView implementation
13083         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
13084         * DataGridViewCellStyleConverter.cs: DataGridView implementation
13085         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
13086         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
13087         * DataGridViewColumnEventArgs.cs: DataGridView implementation
13088         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
13089         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
13090         * QuestionEventArgs.cs: DataGridView implementation
13091         * IDataGridViewEditingCell.cs: DataGridView implementation
13092         * DataGridViewTriState.cs: DataGridView implementation
13093         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
13094         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
13095         * DataGridViewColumnCollection.cs: DataGridView implementation
13096         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
13097         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
13098         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
13099         * DataGridViewColumn.cs: DataGridView implementation
13100         * DataGridViewCellBorderStyle.cs: DataGridView implementation
13101         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
13102         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
13103         * DataGridViewRow.cs: DataGridView implementation
13104         * DataGridViewImageCellLayout.cs: DataGridView implementation
13105         * DataGridViewImageCell.cs: DataGridView implementation
13106         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
13107         * DataGridViewCheckBoxCell.cs: DataGridView implementation
13108         * DataGridViewHeaderCell.cs: DataGridView implementation
13109         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
13110         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
13111         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
13112         * DataGridViewTextBoxColumn.cs: DataGridView implementation
13113         * QuestionEventHandler.cs: DataGridView implementation
13114         * DataGridViewCellStyleScopes.cs: DataGridView implementation
13115         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
13116         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
13117         * DataGridViewCell.cs: DataGridView implementation
13118         * DataGridViewCellEventArgs.cs: DataGridView implementation
13119         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
13120         * DataGridViewCellStyle.cs: DataGridView implementation
13121         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
13122         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
13123         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
13124         * TextFormatFlags.cs: DataGridView implementation
13125         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
13126         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
13127         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
13128         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
13129         * DataGridViewButtonColumn.cs: DataGridView implementation
13130         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
13131         * HandledMouseEventArgs.cs: DataGridView implementation
13132         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
13133         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
13134         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
13135         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
13136         * DataGridViewRowCollection.cs: DataGridView implementation
13137         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
13138         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
13139         * DataGridViewHitTestType.cs: DataGridView implementation
13140         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
13141         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
13142         * DataGridViewColumnEventHandler.cs: DataGridView implementation
13143         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
13144         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
13145         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
13146         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
13147         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
13148         * DataGridViewContentAlignment.cs: DataGridView implementation
13149         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
13150         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
13151         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
13152         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
13153         * DataGridViewPaintParts.cs: DataGridView implementation
13154         * DataGridViewCellCollection.cs: DataGridView implementation
13155         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
13156         * DataGridViewImageColumn.cs: DataGridView implementation
13157         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
13158         * DataGridViewElementStates.cs: DataGridView implementation
13159         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
13160         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
13161         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
13162         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
13163         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
13164         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
13165         * DataGridViewRowHeaderCell.cs: DataGridView implementation
13166         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
13167         * DataGridViewTextBoxCell.cs: DataGridView implementation
13168         * DataGridViewBand.cs: DataGridView implementation
13169         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
13170         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
13171         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
13172         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
13173         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
13174         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
13175         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
13176         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
13177         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
13178         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
13179         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
13180
13181 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
13182
13183         * ThemeWin32Classic.cs: 
13184           - Draw the outside focus rectangle around buttons
13185           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
13186             doesn't use end caps for every dash of a line anymore. This
13187             workaround ignores the forecolor.
13188
13189 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
13190
13191         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
13192           endian safe.
13193
13194 2005-11-07  Jackson Harper  <jackson@ximian.com>
13195
13196         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
13197
13198 2005-11-07  Jackson Harper  <jackson@ximian.com>
13199
13200         * ScrollableControl.cs: Calculate the maximum and change vars
13201         (more) correctly so that scrollbars appear as a sensible size.
13202
13203 2005-11-04  Jackson Harper  <jackson@ximian.com>
13204
13205         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
13206         collection.
13207         * TreeView.cs: When the tree is sorted null out the top_node so
13208         that it is recalculated.
13209         - Use dotted lines instead of dashed lines to match MS better.
13210
13211 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
13212
13213         * ListView.cs: 
13214           - Implements key search for items. Useful when browsing files with FileDialog
13215           - When changing view mode or when clear the items reset scrollbar positions
13216
13217 2005-11-04  Jackson Harper  <jackson@ximian.com>
13218
13219         * CurrencyManager.cs: Implement the MetaDataChanged event, the
13220         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
13221         as to what the method may do as there is no real way of creating a
13222         derived CurrencyManager and calling the method. 
13223
13224 2005-11-03  Jackson Harper  <jackson@ximian.com>
13225
13226         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
13227         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
13228         method which seems to just be used internally to refresh the tabs.
13229
13230 2005-11-03  Jackson Harper  <jackson@ximian.com>
13231
13232         * TabControl.cs: Implement the remove method. Fix some broken
13233         comments.
13234
13235 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13236
13237         * DateTimePicker.cs:
13238           - Added missing DateTimePickerAccessibleObject class
13239           - Added missing events
13240           - Added OnFontChanged method
13241         * Form.cs: Added missing attributes
13242         * TreeView.cs: Added missing attributes
13243
13244 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
13245
13246         * GridItemCollection.cs: Fix signatures
13247
13248 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13249
13250         * XplatUI.cs: Updated build rev/date
13251         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
13252           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
13253         * Application.cs: Trigger context-specific ExitThread events
13254
13255 2005-11-03  Jackson Harper  <jackson@ximian.com>
13256
13257         * Menu.cs:
13258         * MainMenu.cs:
13259         * GridTableStylesCollection.cs:
13260         * Timer.cs:
13261         * TabPage.cs:
13262         * HelpProvider.cs:
13263         * StatusBar.cs:
13264         * MonthCalendar.cs: Signature fixes
13265
13266 2005-11-03  Jackson Harper  <jackson@ximian.com>
13267
13268         * TreeNodeCollection.cs: Remove should not be virtual.
13269         * TreeView.cs: Implement the last of the missing methods.
13270
13271 2005-11-03  Jackson Harper  <jackson@ximian.com>
13272
13273         * TreeNodeConverter.cs: Implement to get off my class-status back.
13274
13275 2005-11-03  Jackson Harper  <jackson@ximian.com>
13276
13277         * TreeView.cs: Hookup the bits for drag and drop.
13278         * TreeNode.cs: Don't cache the tree_view or index anymore, now
13279         that nodes can be moved from tree to tree easily this just causes
13280         all sorts of problems.
13281         * TreeNodeCollection: Don't need to give treenodes an index and
13282         treeview anymore when they are added, these are computed on the
13283         fly. Also make sure to remove a node before its added.
13284
13285 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
13286
13287         * TextControl.cs:
13288           - Added CaretSelection enum
13289           - Added comparison methods to Marker struct, makes selection code
13290             more readable
13291           - Added SelectionStart and SelectionEnd as 'moveable' location for
13292             the CaretDirection enum and handler
13293           - Added selection_prev variable to track optimized invalidation for
13294             word and line selection
13295           - Added SelectionVisible property (returns true if there is a valid 
13296             selection)
13297           - Switched CaretHasFocus to only display the caret if there is no
13298             visible selection
13299           - Avoiding StringBuilder.ToString to retrieve a single char, instead
13300             using the direct character index; should be much faster
13301           - Added various conditional debug statements
13302           - Fixed invalidation calculation for selection ranges
13303           - Added ExpandSelection() method to support word and line selection
13304           - Switched SetSelectionToCaret to use new Marker compare overloads
13305           - Added central IsWordSeparator() method to determine word 
13306             separators/whitespace and FindWordSeparator() to streamline common
13307             usage of IsWordSeparator()
13308         * TextBoxBase.cs:
13309           - Removed unneeded grabbed variable, it was just mirroring
13310             Control.Capture
13311           - No longer firing OnTextChanged event when Text setter is called,
13312             since the base will fire the event for us
13313           - Added handling of Ctrl-Up/Down selection
13314           - Added handling of Shift-Cursorkey selection
13315           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
13316             words
13317           - Added handling of Shift and Ctrl-Shift-Home/End selection
13318           - Removed some debug output
13319           - Added handling for single/double/tripple-click to place caret/
13320             select word/select line respectively (Fixes bug #76031)
13321           - Added support for drag expansion of word/line selection
13322         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
13323           current selection
13324
13325 2005-11-02  Jackson Harper  <jackson@ximian.com>
13326
13327         * X11Dnd.cs: If the drag is going to and from a MWF window just
13328         copy the data instead of sending it out through the X Selection
13329         mechanism.
13330
13331 2005-11-02  Jackson Harper  <jackson@ximian.com>
13332
13333         * X11Dnd.cs:
13334         * XplatUIX11.cs: When in a drag we don't want motion notify
13335         messages to get passed on to the other controls. This prevents
13336         mouse move messages from showing up in the drag source.
13337
13338 2005-11-02  Jackson Harper  <jackson@ximian.com>
13339
13340         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
13341         the correct button is release to end a drag.
13342         * XplatUIX11.cs: Make the button state internal so the drag system
13343         can access it.  Dragging needs to know about all button releases,
13344         not just left button.
13345
13346 2005-11-02  Miguel de Icaza  <miguel@novell.com>
13347
13348         * Form.cs (Icon): If the icon is null, reset the icon to the
13349         default value. 
13350
13351         * Cursor.cs: When writing the AND-mask bitmap do not include the
13352         number of colors, but hardcode those to two (black and white),
13353         fixes the loading of color cursors (Paint Dot Net).
13354
13355         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
13356         turn off autoscaling.
13357
13358         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
13359
13360 2005-11-02  Jackson Harper  <jackson@ximian.com>
13361
13362         * X11Dnd.cs: Make sure to send a status message if the pointer
13363         enters a control that can not accept a drop, otherwise the cursor
13364         isn't updated correctly. Also tried to compress the lines of code
13365         a bit.
13366
13367 2005-11-02  Jackson Harper  <jackson@ximian.com>
13368
13369         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
13370         set actions correctly.  This isn't perfect as XDND and win32 have
13371         some differences on how you allow actions. I'll clear this up by
13372         adding a path for drag from MWF to MWF windows.
13373         * XplatUIX11.cs: Hook into the dnd system.
13374
13375 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
13376
13377         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
13378         previously shown but they are no longer need it. Very obvious when 
13379         browsing files with FileDialog.
13380
13381 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
13382
13383         * Control.cs: We always need to call OnPaintBackground. We pretty much
13384           ignore AllPaintingInWmPaint and always do the painting there, whether 
13385           it's set or not, since we always ignore the WM_ERASEBKGND message 
13386           (which we don't generate on X11). This fixes #76616.
13387         * Panel.cs: Removed unneeded background painting. This happens properly
13388           in Control.cs already
13389
13390 2005-10-31  Mike Kestner  <mkestner@novell.com>
13391
13392         * Menu.cs: Add items to collection before setting their index.
13393         * MenuItem.cs : add range checking with ArgumentException like MS.
13394         [Fixes #76510]
13395
13396 2005-10-31  Jackson Harper  <jackson@ximian.com>
13397
13398         * ListBox.cs: Invalidate if the area is visible at all not just
13399         contained in the visible rect. Fixes unselection of semi visible
13400         items.
13401
13402 2005-10-31  Jackson Harper  <jackson@ximian.com>
13403
13404         * Control.cs: Consistently name the dnd methods. Make them
13405         internal so we can override them to match some MS behavoir
13406         internally.
13407         * Win32DnD.cs: Use the new consistent names.
13408
13409 2005-10-31  Jackson Harper  <jackson@ximian.com>
13410
13411         * TreeView.cs: Don't draw the selected node when we lose focus.
13412
13413 2005-10-31  Jackson Harper  <jackson@ximian.com>
13414
13415         * X11Dnd.cs: We still need to reset the state even though a full
13416         reset isn't being done, otherwise status's still get sent all over
13417         the place.
13418
13419 2005-10-31  Jackson Harper  <jackson@ximian.com>
13420
13421         * Control.cs: Make the dnd_aware flag internal so the dnd
13422         subsystem can check it. Catch exceptions thrown in dnd handlers to
13423         match MS behavoir.
13424         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
13425         * X11Dnd.cs: Handle null data in the converters. Set the XDND
13426         version when sending a XdndEnter. Use the control/hwnd dnd_aware
13427         flags to reduce the number of dnd enters/status's sent.
13428
13429 2005-10-31  Jackson Harper  <jackson@ximian.com>
13430
13431         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
13432
13433 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
13434
13435         * PictureBox.cs: Fixes 76512
13436
13437 2005-10-28  Jackson Harper  <jackson@ximian.com>
13438
13439         * X11Dnd.cs: Early implementation to support winforms being a drag
13440         source for data on X11. Also restructured the converters so they
13441         can go both ways now.
13442         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
13443         
13444 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
13445
13446         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
13447           clipboard requests
13448
13449 2005-10-27  Jackson Harper  <jackson@ximian.com>
13450
13451         * TreeNode.cs: Implement serialization so my DnD examples will work.
13452
13453 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
13454
13455         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
13456           TreeView.cs: Don't dispose objects that are not owned.
13457           
13458 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
13459
13460         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
13461           should retrieve the current cursor and report that, but XplatUI
13462           doesn't (yet) have an interface for that (and I'm not sure I even
13463           can, on X11)
13464         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
13465           until any message loop processing is done (and the WM_SETCURSOR
13466           replaces the cursor to the proper one)
13467         * XplatUIX11.cs: 
13468           - Fixed override behaviour, we can't set the cursor globally on X11, 
13469             just for our windows.
13470           - Invalidating the System.Drawing X11 display handle when we are
13471             shutting down
13472         * Control.cs: Fix to make csc happy
13473
13474 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
13475
13476         * TextBoxBase.cs: 
13477           - get_Text: Add last line (without trailing newline) to returned
13478             value (Fixes 76212)
13479           - get_TextLength: Count last line in returned length
13480           - ToString: Call Text property instead of duplicating code
13481
13482 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
13483
13484         * ImageList.cs: Dispose ImageAttributes objects.
13485
13486 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
13487
13488         * ImageList.cs: Use attribute constructors with less arguments where
13489           possible.
13490
13491 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
13492
13493         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
13494           Use typeof instead of strings when assembly is referenced. Added
13495           some more comments.
13496
13497 2005-10-21  Jackson Harper  <jackson@ximian.com>
13498
13499         * ListView.cs: Raise a double click event. Also tried to somewhat
13500         fix when the selectedindexchanged event is raised. Its still
13501         broken though.
13502
13503 2005-10-21  Jackson Harper  <jackson@ximian.com>
13504
13505         * TreeView.cs: New method to invalidate the plus minus area of a
13506         node without invalidating the whole node (maybe this can be used
13507         in some more places).
13508         * TreeNodeCollection.cs: When adding to an empty node we need to
13509         invalidate its plus minus area so the little block shows up.
13510         
13511 2005-10-21  Jackson Harper  <jackson@ximian.com>
13512
13513         * TreeView.cs: Make sure that when we invalidate a node the bounds
13514         are big enough to cover the selected box and the focus
13515         rectangle. Use a different colour for the lines connecting nodes
13516         so they show up with all themes.
13517
13518 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
13519
13520         * NativeWindow.cs: Don't call anything that could call into the driver,
13521           we might be on a different thread.
13522
13523 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
13524
13525         * Control.cs(Dispose): Since Dispose might run on a different thread,
13526           make sure that we call methods that could call into the driver via
13527           invoke, to avoid thread issues
13528
13529 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
13530
13531         * XplatUI.cs: Removed finalizer
13532         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
13533           not allowing to be called on the finalizer thread.
13534
13535 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
13536
13537         * ImageList.cs:
13538           - Reverted r51889 and r51891.
13539           - Added ImageListItem class that stores unmodified image items and image
13540             properties required to create list images until handle is created.
13541           - Added AddItem and moved image creation logic to AddItemInternal.
13542           - Added CreateHandle method that creates images based on unmodified items.
13543           - Added DestroyHandle that changes state to store unmodified items.
13544           - Add and AddStrip methods no more create handle.
13545           - ReduceColorDepth has no return value.
13546           - Dispose destroys handle.
13547           - Modified other methods to reflect the above changes.
13548           - Implemented key support.
13549           - Added profile 2.0 members and attributes.
13550           - Added private Reset and ShouldSerialize methods that provide the same
13551             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
13552             them as they are private.
13553           - Added some more comments about implementation details.
13554
13555 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13556
13557         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
13558
13559 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13560
13561         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
13562
13563 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
13564
13565         * DataGridDrawingLogic.cs: Fixes column hit calcultation
13566         * DataGridColumnStyle.cs: Remove debug message
13567
13568 2005-10-20  Jackson Harper  <jackson@ximian.com>
13569
13570         * TreeView.cs: We can always get input keys regardless of whether
13571         or not editing is enabled. They are used for navigation.
13572
13573 2005-10-20  Jackson Harper  <jackson@ximian.com>
13574
13575         * TreeNode.cs: Use the viewport rect for determining if a node
13576         needs to be moved for visibility. Don't use Begin/End edit. This
13577         calls a full refresh when its done.
13578         * TreeView.cs: New SetBottom works correctly.  Make the viewport
13579         rect property internal so the treenodes can see it. When clicking
13580         on a node we need to ensure that its visible because it might just
13581         be partly visible when clicked.
13582
13583 2005-10-20  Jackson Harper  <jackson@ximian.com>
13584
13585         * TreeNodeCollection.cs: Remove debug code.
13586
13587 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13588
13589         * Datagrid.cs: Implements column sorting in Datagrid
13590         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
13591
13592 2005-10-20  Jackson Harper  <jackson@ximian.com>
13593
13594         * TreeNodeCollection.cs: Remove items properly. Update the correct
13595         area after removing them.
13596
13597 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
13598
13599         * Datagrid.cs: Should not call base.OnPaintBackground
13600
13601 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13602
13603         * XplatUIX11.cs (GetMessage):
13604           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
13605             window instead of client window
13606           - Now properly calculates NC_xBUTTONUP message coordinates
13607           - ScreenToMenu now properly calculates it's coordinates of whole 
13608             window, since menus are in the whole window, not in the client
13609             window
13610           - Added WholeToScreen coordinate translation method
13611
13612 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
13613
13614         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
13615           want to return a message, loop back to the beginning of the function
13616           and grab the next real message to process instead.
13617
13618 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
13619
13620         * Splitter.cs: Properly set limits if no filler control is used
13621
13622 2005-10-19  Jackson Harper  <jackson@ximian.com>
13623
13624         * ColorDialog.cs: Don't show the help button if it is not enabled
13625         instead of disabling it (this is what MS does). Don't create the
13626         panel until the dialog is run, otherwise the vars (such as
13627         ShowHelp) are not set yet.
13628
13629 2005-10-19  Jackson Harper  <jackson@ximian.com>
13630
13631         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
13632         are reduced when adding nodes.
13633         * TreeNode.cs:
13634         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
13635         tree.
13636         
13637 2005-10-19  Jackson Harper  <jackson@ximian.com>
13638
13639         * FolderBrowserDialog.cs: End editing our treeview so the window
13640         actually gets refreshed.
13641
13642 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13643
13644         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
13645           Obsoleted handling of WM_ERASEBKGND, now always draws our background
13646           inside of WM_PAINT
13647
13648 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13649
13650         * MenuAPI.cs: Returns after Hidding window
13651         * XplatUIX11.cs: Added TODO found while debugging menu issues
13652
13653 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
13654
13655         * XplatUIX11.cs: Do not re-map the whole window when it's size
13656           becomes non-zero unless it's supposed to be actually visible
13657
13658 2005-10-18  Jackson Harper  <jackson@ximian.com>
13659
13660         * TreeView.cs: We don't need to keep a count anymore.
13661         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
13662         use the Grow method.
13663
13664 2005-10-18  Jackson Harper  <jackson@ximian.com>
13665
13666         * TreeNodeCollection.cs: Insert is not supported on arrays, so
13667         implement it manually here.
13668
13669 2005-10-18  Jackson Harper  <jackson@ximian.com>
13670
13671         * ImageList.cs: Dont kill the list when the colour depth is
13672         changed, just change the colour depth of all the images.
13673         - Same goes for setting the image size. Just resize them all
13674         instead of killing the list softly.
13675
13676 2005-10-18  Jackson Harper  <jackson@ximian.com>
13677
13678         * Control.cs: Don't invalidate empty rectangles.
13679
13680 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13681
13682         * ListViewItem.cs:
13683           - Adds checked item to the Checked/Item lists (where empty before)
13684           - Do not add items to the Selected lists if they are already present
13685         * ListView.cs:
13686           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
13687           - When deleting items make sure that we delete them for the Selected
13688           and Checked list also.
13689
13690 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
13691
13692         * Label.cs: Dispose objects no longer used
13693         * ThemeWin32Classic.cs: Dispose objects no longer used
13694
13695 2005-10-18  Jackson Harper  <jackson@ximian.com>
13696
13697         * TabControl.cs: Don't refresh the whole control when the tabs are
13698         scrolled, we just need to refresh the tab area.
13699
13700 2005-10-17  Jackson Harper  <jackson@ximian.com>
13701
13702         * XplatUIX11.cs: Compress code a little bit. Only calculate the
13703         after handle when we need it.
13704
13705 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13706
13707         * Control.cs: When the parent size changes, recalculate anchor 
13708           positions. Partial fix for #76462
13709
13710 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
13711
13712         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
13713           drawn. Fixes #76462
13714
13715 2005-10-17  Jackson Harper  <jackson@ximian.com>
13716
13717         * MonthCalendar.cs: Don't create the numeric up down until our
13718         handle is created. Otherwise our handle is created in the
13719         constructor and we don't know if we are a WS_CHILD or WS_POPUP
13720         yet.
13721
13722 2005-10-17  Jackson Harper  <jackson@ximian.com>
13723
13724         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
13725         correctly.
13726
13727 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13728         * TreeNode.cs : small logical fix (was using local var instead of field)
13729         
13730 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13731
13732         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
13733
13734 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
13735
13736         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
13737
13738 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
13739
13740         * Control.cs: 
13741           - Re-implemented anchoring code. My first version was really broken.
13742             This fixes bug #76033. Unlike the previous implementation we will
13743             no longer have round errors since all numbers are calculated from
13744             scratch every time. Removed various anchor-related obsolete vars.
13745           - InitLayout no longer causes layout event firing and layout to be 
13746             performed
13747
13748 2005-10-16  Jackson Harper  <jackson@ximian.com>
13749
13750         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
13751         which was broken).
13752
13753 2005-10-16  Jackson Harper  <jackson@ximian.com>
13754
13755         * TabControl.cs: Remove debug code.
13756
13757 2005-10-16  Jackson Harper  <jackson@ximian.com>
13758
13759         * XEventQueue.cs: Increase the default queue size (very simple
13760         apps needed to grow the queue).
13761         * Hwnd.cs: No finalizer so we don't need to suppress
13762         finalization. Compute the invalid area manually so a new rectangle
13763         does not newto be created.
13764         * ScrollableControl.cs: Don't set any params (otherwise visibility
13765         isn't set correctly).
13766         * MdiChildContext.cs: New constructor takes the mdi parent so it
13767         doesn't have to be computed and avoids a crash on windows. Draw
13768         the window icon properly, and allow the text to be seen.
13769         * Form.cs: Use new MdiChildContext constructor. Make sure the
13770         child context isn't null in wndproc.
13771         * TabControl.cs: Don't set focus, this is muddling keyboard
13772         behavoir. Expand the tab rows when a window size increase will
13773         allow extra tabs to be seen. Don't allow tabs smaller than the
13774         width of a window to be scrolled out of view.
13775         * TreeNode.cs:
13776         * TreeView.cs: Use measure string to calculate a nodes width, the
13777         width is cached and only updated when the text or the font is
13778         changed. Don't check for expand/collapse clicks on the first level
13779         nodes if root lines are disabled.
13780         
13781 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
13782
13783         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
13784
13785 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13786
13787         * DataGridBoolColumn.cs: fixes warning
13788
13789 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
13790
13791         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
13792         to match more to match more precisely the MS Net behavior
13793
13794 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13795
13796         * Hwnd.cs: Added field to track if window is mapped
13797         * XplatUIX11.cs: 
13798           - Unmap windows if they become 0-size, re-map when 
13799             they are >0 again; fixes #76035
13800           - Re-set our error handler after initializing X11Desktop
13801             to override any error handlers Gtk or whatever was called
13802             may have set.
13803
13804 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
13805
13806         * CheckedListBox.cs: Removed unused vars
13807         * ListView.cs: Fixed signatures
13808         * RichTextBox.cs: Removed unused vars
13809         * TextBoxBase.cs: Removed unused vars
13810         * XplatUIWin32.cs: Removed unused vars
13811         * XplatUIX11.cs: Removed unused vars
13812         * XplatUI.cs: Updated version and date to latest published
13813
13814 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13815
13816         * Cursor.cs: Added private .ctor to work around a bug in
13817           resourceset (Thanks to Geoff Norton for the help on this)
13818         * SplitterEventArgs.cs: Made fields accessible so we don't
13819           waste boatloads of objects and can reuse the same one
13820           in Splitter
13821         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
13822           any captions and borders when generating screen coordinates
13823         * Splitter.cs: Reimplemented control, now fully complete, uses
13824           rubberband drawing, supports and obeys all properties, has
13825           proper cursors
13826
13827 2005-10-13  Miguel de Icaza  <miguel@novell.com>
13828
13829         * Form.cs (Form): Setup default values for autoscale and
13830         autoscale_base_size;  Make these instance variables, not static
13831         variables. 
13832
13833         (OnLoad): on the first load, adjust the size of the form.
13834
13835 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
13836
13837         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
13838           width argument to DrawReversibleRectangle()
13839         * XplatUIWin32.cs, XplatUIX11.cs: 
13840           - Implemented width for DrawReversibleRectangle()
13841           - Added logic to DrawReversibleRectangle that recognizes a zero
13842             width or height and only draws a line in that situation
13843         
13844 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
13845
13846         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
13847         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
13848         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
13849           method (it uses our FosterParent window to get a graphics context)
13850
13851 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
13852
13853         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
13854           and SetWindowBackground methods
13855         * Control.cs:
13856           - Setting proper ControlStyles
13857           - We no longer call XplatUI.SetWindowBackground and XplatUI.
13858             EraseWindowBackground, instead we draw the window background
13859             ourselves in PaintControlBackground. This behaviour is
13860             required to match MS, where, when OnPaintBackground is not
13861             called, the background is not drawn.
13862           - Removed unneeded Refresh() in set_Text
13863         * Hwnd.cs: Dropped the ErasePending support. No longer needed
13864         * XplatUIX11.cs:
13865           - Created DeriveStyles method to translate from CreateParams to
13866             FormBorderStyle and TitleStyle, also handles BorderStyle (which
13867             matches FormBorderStyle enum values)
13868           - Consolidated SetHwndStyles and CalculateWindowRect border/title
13869             style calculations into single DeriveStyles method
13870           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
13871             from redrawing the whole window on any resize or expose.
13872           - Fixed CreateWindow usage of SetWindowValuemask. Before not
13873             all styles were applied to our whole/client window appropriately
13874           - Removed EraseWindowBackground() and SetWindowBackground() methods
13875           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
13876             no longer clear/redraw the background through X
13877           - Removed handling of erase_pending bit, we have no use for it (or
13878             so it seems)
13879         * XplatUIOSX.cs:
13880           - Removed generation and handling of WM_ERASEBKGND message
13881           - Removed EraseWindowBackground() and SetWindowBackground() methods
13882           - Removed handling of hwnd.ErasePending flag
13883         * XplatUIWin32.cs:
13884           - Removed EraseWindowBackground() and SetWindowBackground() methods
13885           - We no longer call EraseWindowBackground on PaintEventStart, we 
13886             ignore the fErase flag, erasing is handled in Control in the
13887             background handler
13888         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
13889           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
13890           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
13891           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
13892           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
13893           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
13894           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
13895
13896 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
13897
13898         * PropertyGrids.cs: Get sub properties
13899         * PropertyGridView.cs: Fix drawing code
13900
13901 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13902
13903         * ListBox.cs: Fixes 76383
13904
13905 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13906
13907         * DataGridTextBoxColumn.cs: Sets location and size before attachment
13908         * ThemeWin32Classic.cs: Fixes border drawing and calculations
13909         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
13910
13911
13912 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13913
13914         * ComboBox.cs: Fixes border drawing
13915
13916 2005-10-10  Miguel de Icaza  <miguel@novell.com>
13917
13918         * MimeIcon.cs: Ignore errors if the file can not be read.
13919
13920 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
13921
13922         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
13923          - Fixed border calculations
13924          - Fixed horizontal scrolling in single column listboxes
13925          - Fixed drawing issues
13926
13927 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
13928
13929         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
13930           FormBorderStyle enum
13931         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
13932           code to determine FormBorderStyles from CreateParams
13933         * Form.cs:
13934           - Fixed bug where we'd set the wrong window styles if we were
13935             not creating an MDI window
13936           - Added call to XplatUI.SetBorderStyle when form borders are set
13937         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
13938         * Hwnd.cs:
13939           - Removed obsolete edge style
13940           - Switched from BorderStyle to FormBorderStyle
13941         
13942 2005-10-10  Jackson Harper  <jackson@ximian.com>
13943
13944         * Form.cs: Use the property to get the window handle instead of
13945         accessing it directly. Prevents a null reference exception.
13946
13947 2005-10-10  Jackson Harper  <jackson@ximian.com>
13948
13949         * TreeView.cs: Don't adjust the rect given to DrawString now that
13950         our libgdiplus draws correctly.
13951
13952 2005-10-08  Jackson Harper  <jackson@ximian.com>
13953
13954         * TreeView.cs: Don't try to find the clicked on node if there are
13955         no nodes in the tree.
13956
13957 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13958
13959         * RichTextBox.cs:
13960
13961           restore
13962
13963 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
13964
13965         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
13966           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
13967           ErrorProvider.cs:
13968           Use ResPool for brushes and dispose System.Drawing objects that
13969           are not used anymore.
13970
13971 2005-10-07  Jackson Harper  <jackson@ximian.com>
13972
13973         * MdiChildContext.cs: Use the new borders instead of drawing them
13974         ourselves.
13975
13976 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13977
13978         * Calling UpdateBounds after changing the window's BorderStyle 
13979         since the style can change the ClientSize
13980
13981 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13982
13983         * Control.cs: Made PaintControlBackground virtual
13984         * Panel.cs: Overriding PaintControlBackground instead of using paint
13985           event; paint event method was interfering with 'real' users of the
13986           event.
13987
13988 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
13989
13990         * ThemeWin32Classic.cs: remove border drawing since it is handled
13991         by the base control class now and was causing double border drawing.
13992
13993 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13994
13995         * Panel.cs: Redraw our background on paint. Not a pretty solution,
13996           but it does seem to match MS behaviour. This fixes bug #75324
13997
13998 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
13999
14000         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
14001           somewhat hackish looking
14002
14003 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14004
14005         * TextBoxBase.cs:
14006           - We now accept Enter even if AcceptEnter is false, if the containing
14007             form does not have an AcceptButton configured (fixes bug #76355)
14008           - Calculations are now fixed to no longer use Width/Height, but
14009             ClientSize.Width/Height, since we now support borders (this was
14010             a result of fixing borders and therefore bug #76166)
14011           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
14012             true (fixes bug #76354)
14013         
14014 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14015
14016         * Control.cs: 
14017           - Defaulting BorderStyle and setting it in XplatUI when our window 
14018             is created
14019           - Added enum check to InternalBorderStyle setter
14020         * XplatUIX11.cs: 
14021           - Added drawing of window borders
14022           - Now properly calculates WM decorations offset for toplevel 
14023             windows (fixes bug #74763)
14024         * XplatUIWin32.cs: 
14025           - Implemented BorderStyles for windows (we're letting win32 draw 
14026             the border for us)
14027           - Fixed the signature for SetWindowLong
14028         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
14029           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
14030           setting borders
14031         * UpDownBase.cs: Remove drawing of borders, this is handled by
14032           the driver, outside the client area
14033         * ListView.cs: Removed bogus border calculations. The control should
14034           be oblivious to borders, since those are not part of the client
14035           area. 
14036         * X11DesktopColors.cs: Commented out (currently) unneeded variables
14037         * ThemeWin32Classic.cs: Removed border calculations from ListView 
14038           drawing code
14039
14040 2005-10-06  Jackson Harper  <jackson@ximian.com>
14041
14042         * MdiChildContext.cs: Clear out the old virtual position remove
14043         all the unneeded calls to CreateGraphics.
14044
14045 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14046
14047         * TextControl.cs: Use proper color for highlighted text; fixes #76350
14048
14049 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
14050
14051         * Form.cs: 
14052           - Added loading and setting of our new default icon
14053           - Only set icon if window is already created
14054
14055 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
14056
14057         * Label.cs:
14058           - Do not explicitly set the foreground and background colors, to
14059             allow inheriting from parents (fixes #76302)
14060           - Use Control's InternalBorderStyle property to deal with borders
14061
14062 2005-10-06  Jackson Harper  <jackson@ximian.com>
14063
14064         * MdiChildContext.cs: Use the new xplatui function to draw a
14065         reversible rect.
14066
14067 2005-10-06  Jackson Harper  <jackson@ximian.com>
14068
14069         * Form.cs: Add the parent before creating the child context cause
14070         we need the parent when setting up the child.
14071
14072 2005-10-06  Jackson Harper  <jackson@ximian.com>
14073
14074         * FolderBrowserDialog.cs: redo the tree population code so a
14075         second thread isn't used. Should be a lot faster and more stable
14076         now.
14077
14078 2005-10-05  Jackson Harper  <jackson@ximian.com>
14079
14080         * TreeView.cs: There are no expand/collapse boxes if the node has
14081         no children.
14082
14083 2005-10-05  Jackson Harper  <jackson@ximian.com>
14084
14085         * X11DesktopColors.cs: Get menu colours for the gtk theme.
14086
14087 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
14088
14089         * FileDialog.cs: Fix InitialDirectory
14090
14091 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
14092
14093         * ComboBox.cs:
14094                 - Fixes changing between styles
14095                 - Fixes simple mode
14096                 - Fixes last item crashing when navigating with keyboard
14097
14098 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
14099
14100         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
14101
14102 2005-10-05  Jackson Harper  <jackson@ximian.com>
14103
14104         * TreeView.cs: If updating the root node do a full refresh.
14105         * TreeNode.cs: The root node should be expanded by default. Also
14106         added a utility prop to tell if we are the root node.
14107         * TreeNodeCollection.cs: Only refresh if the node we are being
14108         added to is expanded. Also added a comment on a potential
14109         optimization.
14110         
14111 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
14112
14113         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
14114           in dispose method. Fixes #76330
14115
14116 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
14117
14118         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
14119
14120                 - Implements vertical and horizontal scrolling using XplatUI
14121                 - Fixes keyboard navagation
14122                 - Fixes EnsureVisible
14123                 - Drawing fixes
14124                 - Handles and draws focus properly
14125
14126
14127 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
14128
14129         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
14130           Create handle. NET_2_0: Destroy handle when value is null.
14131
14132 2005-10-03  Jackson Harper  <jackson@ximian.com>
14133
14134         * ScrollBar.cs: My last scrollbar patch was broken. This is a
14135         revert and a new patch to prevent the thumb from refreshing so
14136         much.
14137
14138 2005-10-02  Jackson Harper  <jackson@ximian.com>
14139
14140         * ScrollBar.cs: Don't update position if it hasn't actually
14141         changed. This occurs when you hold down the increment/decrement
14142         buttons and the thumb gets to the max/min.
14143
14144 2005-10-01  Jackson Harper  <jackson@ximian.com>
14145
14146         * Form.cs:
14147         * MdiChildContext.cs:
14148         * MdiClient.cs: Implement ActiveMdiChild in Form.
14149
14150 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
14151
14152         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
14153
14154 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
14155
14156         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
14157           be found
14158
14159 2005-09-30  Jackson Harper  <jackson@ximian.com>
14160
14161         * ListBox.cs: Don't do a full refresh unless some data has
14162         actually changed.
14163
14164 2005-09-30  Jackson Harper  <jackson@ximian.com>
14165
14166         * TreeView.cs: Make sure that the checkboxes size is factored in
14167         even when not visible.
14168
14169 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14170
14171         * FileDialog.cs: Fix Jordi's build break
14172
14173 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14174
14175         * FileDialog.cs: 
14176                 - Use standard the Windows colours for the combobox as espected
14177                 - Dispose objects that use resouces when no longer need them
14178
14179 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
14180
14181         * X11DesktopColors.cs: Initial incomplete implementation
14182         * XplatUIX11.cs: Added call to initialize X11DesktopColors
14183
14184 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
14185
14186         * Theme.cs: 
14187           - Switched Theme color names to match the names defined in 
14188             System.Drawing.KnownColors. Life's hard enough, no need to make 
14189             it harder.
14190           - Added setters to all theme color properties so themes can set
14191             their color schemes. The setters also propagate the color changes
14192             to System.Drawing.KnownColors via reflection
14193         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
14194           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
14195           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
14196           use the new, more logical theme color names
14197         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
14198           post-NT colors
14199         * ThemeWin32Classic.cs:
14200           - Removed code to set the old classic Windows colors. Instead it
14201             now relies on the colors returned by System.Drawing.KnownColors
14202             which will be either modern static colors (Unix) or colors
14203             read from the user's configuration (Win32)
14204           - Updated to use the new, more logical theme color names
14205           - Switched DataGrid drawing code to use only Theme colors instead of
14206             a mix of System.Drawing.KnownColors and Theme colors
14207           - DrawFrameControl(): Removed code that fills the button area, the
14208             fill would overwrite any previous fill done by a control. This
14209             fixes bug #75338 
14210           - Added DrawReversibleRectangle() stub
14211         * ScrollableControl.cs: Set visible state to false when scrollbars
14212           are removed (pdn fix)
14213         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
14214           DrawReversibleRectangle() method to allow drawing primitive 
14215           'rubber bands'
14216         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
14217
14218 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14219
14220         * ImageList.cs: Add(Icon): Create handle.
14221
14222 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
14223
14224         * ListView.cs:
14225         * ThemeWin32Classic.cs:
14226                 - Fixes detail mode
14227                 - Sets clippings
14228                 - Issues with drawing
14229
14230 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14231
14232         * ImageList.cs: Moved RecreateHandle back to ImageList as event
14233           source has to be the ImageList.
14234
14235 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14236
14237         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
14238
14239 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14240
14241         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
14242
14243 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14244
14245         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
14246
14247 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
14248         * GridItem.cs: Fixed TODOs
14249         * GridItemCollection.cs: Added ICollection interface
14250
14251 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
14252
14253         * ImageList.cs: Resize icons when needed.
14254
14255 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
14256
14257         * ListViewItem.cs
14258                 - Fixes GetBounds and returns on screen rects
14259         * ListView.cs:
14260                 - Fixes vertical and horzintal scrolling of items
14261         * ThemeWin32Classic.cs:
14262                 - Fixes drawing
14263                 
14264 2005-09-29  Raja R Harinath  <harinath@gmail.com>
14265
14266         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
14267
14268 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
14269
14270         * ImageList.cs: Added comments about handle creation. Moved Handle,
14271           HandleCreated and OnRecreateHandle implementations to ImageCollection.
14272           Handle is created in Add methods.
14273
14274 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14275          
14276         * DataGridDrawingLogic.cs: 
14277                 - Takes rows into account on Colum calculations
14278                 - Returns the column when clickig
14279         * DataGrid.cs:
14280                 - Fixes default HitTestInfo values
14281                 - Fixes HitTestInfo.ToString
14282                 - Fixes ResetBackColor          
14283         
14284 2005-09-28  Jackson Harper  <jackson@ximian.com>
14285
14286         * MdiChildContext.cs: Obey rules for fixed sized windows (no
14287         sizing or cursor changes). Also added some temp code to draw the
14288         titlebars text (Makes dev a little easier).
14289
14290 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14291
14292         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
14293
14294 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
14295          
14296         * ListBox.cs: Fixes bug 76253
14297
14298 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
14299
14300         * ImageList.cs: Added comments about the current implementation. Added
14301           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
14302           Format32bppArgb to preserve transparency and can use Graphics.FromImage
14303           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
14304           with Bitmap.LockBits for better performance. Revised the whole file to
14305           match MS.NET behaviour and provide better performance. Non-public
14306           interface members are calling public members even when they throw
14307           NotSupportedException for better maintainability. Moved ColorDepth,
14308           ImageSize, ImageStream and TransparentColor implementations to
14309           ImageCollection for better performance as these properties are not used
14310           by ImageList.
14311         * ImageListStreamer.cs: Added a new internal constructor that takes an
14312           ImageList.ImageCollection and serializes Images based on
14313           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
14314           match ImageList property name.
14315
14316 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
14317
14318         * ListBox.cs: Fixes IndexFromPoint for last item
14319
14320 2005-09-27  Jackson Harper  <jackson@ximian.com>
14321
14322         * Form.cs: Set the position of new mdi children correctly.
14323
14324 2005-09-27  Jackson Harper  <jackson@ximian.com>
14325
14326         * MdiClient.cs: New mdi children need to be added to the back of
14327         the controls collection so the zorder is set correctly. Also add a
14328         count of all the child windows that have been created.
14329
14330 2005-09-27  Jackson Harper  <jackson@ximian.com>
14331
14332         * Form.cs (CreateParams): Setup MDI forms correctly.
14333
14334 2005-09-27  Jackson Harper  <jackson@ximian.com>
14335
14336         * MdiChildContext.cs:
14337         * MonthCalendar.cs:
14338         * UpDownBase.cs:
14339         * ListBox.cs:
14340         * ListView.cs:
14341         * TextBoxBase.cs:
14342         * TreeView.cs:
14343         * ScrollableControl.cs:
14344         * ComboBox.cs: Add implicit controls using the new implict control
14345         functionality in ControlCollection. Also try to block multiple
14346         control add in a suspend/resume layout to save some cycles.
14347         
14348 2005-09-27  Jackson Harper  <jackson@ximian.com>
14349
14350         * Control.cs: Add functionality to the controls collection to add
14351         'implicit controls' these are controls that are created by the
14352         containing control but should not be exposed to the user. Such as
14353         scrollbars in the treeview.
14354         * Form.cs: The list var of the ControlsCollection is no longer
14355         available because of the potential of implicit controls getting
14356         ignored by someone accessing the list directly.
14357
14358 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
14359
14360         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
14361           loose it's parent. (Fixed bug introduced in r49103 when we added
14362           setting the child parent to null on Remove)
14363
14364 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
14365
14366         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
14367         * Splitter.cs: Added missing attributes for BorderStyle property.
14368         * TextBoxBase.cs: Marked Calculate* methods internal.
14369         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
14370         MS.NET.
14371
14372 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
14373          
14374         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
14375
14376 2005-09-25  Jackson Harper  <jackson@ximian.com>
14377
14378         * TreeView.cs: Update the node bounds correctly regardless of
14379         whether the node is visible.
14380
14381 2005-09-25  Jackson Harper  <jackson@ximian.com>
14382
14383         * ImageList.cs: Don't dispose the image after it is added to the
14384         image list. Only reformat images that need to be resized.
14385
14386 2005-09-25  Jackson Harper  <jackson@ximian.com>
14387
14388         * ImageList.cs: Don't set the format when changing the image.
14389
14390 2005-09-25  Jackson Harper  <jackson@ximian.com>
14391
14392         * TreeView.cs: We can't just assume the node has a font. Use the
14393         treeviews font if no node font is available.
14394
14395 2005-09-25  Jackson Harper  <jackson@ximian.com>
14396
14397         * TreeView.cs: Allow the scrollbars to be reset with negative
14398         values.
14399         - Don't add scrollbars to negative sized windows.
14400
14401 2005-09-23  Jackson Harper  <jackson@ximian.com>
14402
14403         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
14404         old Mono.Posix. Also remove some stray code that shouldn't have
14405         been committed.
14406
14407 2005-09-23  Jackson Harper  <jackson@ximian.com>
14408
14409         * TreeView.cs: Attempt at proper sizing of the horizontal
14410         scrollbar. Also don't resize the scrollbars unless they are
14411         visible.
14412
14413 2005-09-23  Jackson Harper  <jackson@ximian.com>
14414
14415         * TreeView.cs: We don't need to expand the invalid area when the
14416         selection changes, as this is all drawn in the node's bounding
14417         box. The area needs to be expanded (previous typo was contracting
14418         it) when the focus rect moves.
14419
14420 2005-09-23  Jackson Harper  <jackson@ximian.com>
14421
14422         * TreeView.cs: Display the selection box under the correct
14423         circumstances. We were rendering white text with no selection box
14424         before.
14425
14426 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
14427
14428         * TextControl.cs(Split): Now updates selection start/end if it points 
14429           into a line that's being split. Fixes a FIXME and bug #75258
14430
14431 2005-09-23  Jackson Harper  <jackson@ximian.com>
14432
14433         * Binding.cs:
14434         * ListControl.cs: Don't use the path when retrieving binding
14435         managers from the binding context. My bat sense tells me that the
14436         path is only used on insertion.
14437
14438 2005-09-22  Jackson Harper  <jackson@ximian.com>
14439
14440         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
14441
14442 2005-09-22  Jackson Harper  <jackson@ximian.com>
14443
14444         * Splitter.cs: There are special cursors used for splitting.
14445         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
14446
14447 2005-09-22  Jackson Harper  <jackson@ximian.com>
14448
14449         * Splitter.cs: Change the cursor appropriately when the splitter
14450         is moused over, so the user actually knows there is a splitter
14451         there.
14452
14453 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14454
14455        * Label.cs : Fix ToString method to give same output as MS.NET
14456
14457 2005-09-22  Jackson Harper  <jackson@ximian.com>
14458
14459         * TreeView.cs: Create the scrollbars when the handle is created
14460         and add them right away, just make them invisble. Also account for
14461         the window being shrunk vertically to the point that the vert
14462         scrollbar needs to be added.
14463         - Remove some 0.5 adjustments to get around anti aliasing issues.
14464         
14465 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
14466          
14467         * MainMenu.cs: Fixes default value
14468         * MenuItem.cs: Fixes default value
14469
14470 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
14471
14472         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
14473
14474 2005-09-21  Jackson Harper  <jackson@ximian.com>
14475
14476         * Control.cs: Don't try to set the border style on the window if
14477         it hasn't been created. When the window is created the border
14478         style will be used.
14479
14480 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
14481
14482         * Control.cs (Update): Don't call XplatUI if we don't have a
14483           window handle yet
14484
14485 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
14486
14487         * ContainerControl.cs: Instead of throwing an exception, print
14488           a one-time warning about Validate not being implemented
14489         * XplatUIWin32.cs: Removed debug output
14490
14491 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
14492
14493         * Control.cs: Only set XplatUI background if we expect the windowing
14494           system to handle the background. This stops controls that draw their
14495           own background from flickering
14496
14497         * XplatUIX11.cs: Support custom visuals and colormaps for window 
14498           creation. This allows, amongst other things, using MWF X11 windows 
14499           with OpenGL.
14500
14501 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
14502
14503         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
14504           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
14505           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
14506           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
14507           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
14508           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
14509           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
14510           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
14511           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
14512           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
14513           GridColumnStylesCollection.cs, 
14514           IDataGridColumnStyleEditingNotificationService.cs,
14515           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
14516           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
14517           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
14518           TreeNodeCollection.cs, AmbientProperties.cs, 
14519           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
14520           DataObject.cs, ErrorProvider.cs, Splitter.cs,
14521           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
14522           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
14523           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
14524           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
14525           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
14526           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
14527           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
14528           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
14529           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
14530           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
14531           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
14532           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
14533           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
14534           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
14535           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
14536           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
14537           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
14538           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
14539           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
14540           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
14541           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
14542           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
14543           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
14544           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
14545           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
14546           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
14547           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
14548           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
14549           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
14550           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
14551           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
14552           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
14553           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
14554           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
14555           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
14556
14557 2005-09-21  Jackson Harper  <jackson@ximian.com>
14558
14559         * TreeNode.cs: Call Before/After Expand not Collapse when
14560         expanding.
14561
14562 2005-09-20  Jackson Harper  <jackson@ximian.com>
14563         
14564         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
14565
14566 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14567          
14568         * ListViewItem.cs:
14569                 - Fixes bug 76120
14570                 - Fixes proper storing of subitems
14571                 - Fixes not updated items
14572
14573 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
14574
14575         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
14576           things if our window handle isn't created yet. Also disabled 
14577           debug for TextBoxBase
14578
14579 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
14580
14581         * MenuAPI.cs: Remove filtering of events to allow menu usage
14582
14583 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14584
14585         * Cursor.cs: Allow null to be passed to Cursor.Current.
14586
14587 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
14588
14589         * ThemeWin32Classic.cs:
14590           - Change some private methods/fields to protected virtual so that 
14591             they can be accessed and overriden in derived classes
14592           - First refactoring of some methods. Derived themes now don't 
14593             need to duplicate the complete code from ThemeWin32Classic
14594         * ThemeNice.cs:
14595           - Added nice StatusBar
14596           - Derive from ThemeWin32Classic and not Theme
14597           - Removed duplicate ThemeWin32Classic code
14598
14599 2005-09-20  Miguel de Icaza  <miguel@novell.com>
14600
14601         * Control.cs (ControlCollection.Add): If the value null is passed
14602         the control is ignored. 
14603
14604         Optimize this loop.
14605
14606 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
14607
14608         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
14609           PostQuitMessage state.
14610         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
14611
14612 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
14613
14614         * Application.cs: Our constructor will never get called, move 
14615           initialization to fields; fixes bug #75933
14616
14617 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
14618
14619         * FileDialog.cs :
14620                 - Allow files to be selected properly using file name
14621                 combo box.
14622                 - Add ability to change diretory (absolute / relative)
14623                 using file name combo box.
14624
14625 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
14626          
14627         * ListBox.cs: 
14628                 - Fixes Multicolumn listboxes item wrong calculations
14629                 - Allows to click when only one item is in the listbox
14630                 - Fixes crash when no items using keyboard navigation
14631
14632 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
14633
14634         * ComboBox.cs: Reverted almost everything from the latest patch which
14635           broke ComboBox
14636
14637 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
14638         
14639         * ToolTip.cs:
14640                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
14641         * ComboBox.cs:
14642                 - When DropDownStyle is Simple, it does not show scrollbar 
14643                 to the last item of the list.
14644                 - When DropDownStyle is Simple, it crashed when the list was 
14645                 scrolled down with the down cursor key.
14646                 - Fixed a bug that when DropDownStyle is DropDownList, the 
14647                 selected item was not shown.
14648                 - The position of the selected item was not preserved when 
14649                 the next dropdown happened.
14650         * ThemeWin32Classic.cs:
14651                 - Items were wrapped at the right end.
14652         * CheckedListBox.cs:
14653                 - Fixed Add method
14654         * ListBox.cs:
14655                 - Items should be fully shown.
14656                 - When resizing and vertical scrollbar disappeared, the item 
14657                 of index 0 should be on the top of the list.
14658                 - GetItemRectangle should consider the size of ver. scrollbar
14659         * StatusBar.cs:
14660                 - SizingGrip area should not be allocated when it is not 
14661                 displayed.
14662                 - Now it reflects MinWidth of the containing panel and 
14663                 fixed a crash that happens when its width becomes so small.
14664
14665 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14666
14667         * CheckedListBox.cs: Fixes bug 76028
14668         * ListBox.cs: Fixes bug 76028
14669
14670 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
14671
14672         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
14673         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
14674
14675 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
14676
14677         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
14678
14679 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14680
14681         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
14682
14683 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
14684
14685         * IRootGridEntry.cs: Added
14686         * PropertyGridCommands.cs: Added
14687         * PropertiesTab.cs: Added missing methods and property
14688         * PropertyGridView.cs: Made class internal
14689         * PropertyGridTextBox.cs: Made class internal
14690
14691 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14692
14693         * MimeIcon.cs: Try to check some other environment variables
14694           if "DESKTOP_SESSION" returns "default"
14695
14696 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14697
14698         * ThemeNice.cs: Corrected background colors (e.g. menus)
14699         * ColorDialog.cs: Use correct background colors for controls
14700
14701 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
14702
14703         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
14704
14705 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
14706
14707         * RichTextBox.cs: Added initial implementation
14708         * lang.cs: Removed. Was accidentally checked in long time ago
14709         * TODO: Removed. Contents were obsolete
14710
14711 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14712                                                                                 
14713         * PropertiesTab.cs : Added
14714
14715 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
14716                                                                                 
14717         * PropertyGrid.cs : Update
14718         * PropertyGridView.cs : Update
14719         * System.Windows.Forms.resx : Added images and strings
14720
14721 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
14722
14723         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
14724  
14725 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
14726
14727         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
14728           a busy loop right after the Ungrab the X11 display is otherwise 
14729           blocked
14730
14731 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
14732
14733         * ThemeWin32Classic.cs: Optimise the use of clipping
14734
14735 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
14736
14737         * DataGrid.cs: fixes recursion bug
14738
14739 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
14740
14741         * ThemeNice.cs: 
14742           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
14743           - Cleanup
14744
14745 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
14746
14747         * ThemeNice.cs: Draw nice ProgressBars
14748
14749 2005-09-01  Miguel de Icaza  <miguel@novell.com>
14750
14751         * VScrollBar.cs: Another buglet found by Aaron's tool. 
14752
14753         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
14754         bug finder.
14755
14756 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
14757
14758         * ThemeNice.cs:
14759           - Added nicer menu drawing
14760           - Updated DrawTab
14761           - some refactoring
14762
14763 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14764
14765         * CreateParams.cs (ToString): Made output match MS
14766         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
14767             handle is already created (to avoid forcing window creation)
14768         * XplatUIX11.cs: Set window text to caption after creating window,
14769           in case Text was set before window was created
14770         * Form.cs: Use this.Text instead of a static string as caption
14771
14772 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14773
14774         * NotifyIcon.cs: Don't set the window to visible; this screws
14775           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
14776           OnPaint without a bitmap)
14777         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
14778           happen very often anyway; we could add the check to the WM_PAINT 
14779           event generation code
14780
14781 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
14782
14783         * NotifyIcon.cs: Fill the icon area with a background color, to 
14784           avoid 'residue' when transparent icons are drawn
14785         * XplatUIX11.cs:
14786           - Handle whole_window == client_window when destroying windows
14787           - SystrayAdd(): Set client_window to whole_window value to
14788             get mouse and other events passed to NotifyIcon
14789
14790 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
14791
14792         * Form.cs: Set proper default for Opacity property
14793         * NotifyIcon.cs:
14794           - ShowSystray(): Don't bother creating telling the OS
14795             about the systray item if no icon is provided
14796           - Now handles WM_NCPAINT message to deal with whole/client window
14797             split
14798           - Create window as visible to not get caught by Expose optimization
14799         * Hwnd.cs: Removed debug message
14800         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
14801           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
14802             PaintEventStart/End to use new client argument
14803         * TextBoxBase.cs:
14804           - Commented out debug messages
14805           - Switched PaintEventStart/End to use new client argument
14806         * XplatUI.cs: Added client window bool to PaintEventStart()/
14807           PaintEventEnd() calls, to support drawing in non-client areas
14808         * XplatUIDriver.cs: 
14809           - Added client window bool to PaintEventStart()/PaintEventEnd() 
14810             calls, to support drawing in non-client areas
14811           - Added conditional compile to allow using MWF BeginInvoke 
14812             on MS runtime
14813         * XplatUIX11.cs:
14814           - Added some conditional debug output
14815           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
14816             whole/client window split
14817           - Implemented handling of client argument to PaintEventStart()/End()
14818         * Control.cs:
14819           - Throw exception if BeginInvoke() is called and the window handle
14820             or one of the window's parent handles is not created
14821           - Added conditional compile to allow using MWF BeginInvoke on
14822             MS runtime
14823           - get_Parent(): Only sets parent if handle is created. This avoids
14824             forcing window handle creation when parent is set.
14825           - Now fires Layout and Parent changed events in proper order
14826           - Switched to use Handle instead of window.Handle for Z-Order setting,
14827             the get_Parent() patch above causes us to possibly get null for 'window'
14828           - Implemented handling of client argument to PaintEventStart()/End()
14829           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
14830             default handling)
14831           - Now sends a Refresh() to all child windows when Refresh() is called
14832
14833 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
14834
14835         * Form.cs: Added (non-functional) Opacity property
14836         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
14837
14838 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
14839         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
14840           use export MONO_THEME=nice to activate it.
14841           Currently supported controls:
14842           - Button
14843           - ComboBox
14844           - ScrollBar
14845           - TabControl (TabAlignment.Top only, other will follow)
14846         * ThemeEngine.cs: Add theme nice
14847         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
14848           if enabled
14849
14850 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
14851
14852         * Splitter.cs: Resize docked control and its neighbor.
14853
14854 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14855         -- Making Windows with Menus layout correctly --
14856         * Form.cs : The first leg of the fix
14857                 Menu setter - adjust Client Size as needed to make space for the menu
14858                 SetClientSizeCore - doesn't call base version to be able to pass the 
14859                         menu handle to XplatUI.CalculateWindowRect
14860         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
14861         * XplatUIX11.cs: The critical second leg of the fix
14862                 GetWindowPos needs to use a recalculated client_rect
14863                 so that resizing the window doesn't break layout of child controls. 
14864                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
14865                 Lots of \t\n killed
14866
14867 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
14868
14869         * Label.cs: Now properly recalculates width and height on Font and Text
14870           changes if AutoSize is set
14871
14872 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
14873         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
14874
14875 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
14876
14877         * ImageList.cs: Makes ToString method compatible with MS
14878
14879 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
14880
14881         * MenuAPI.cs: fixes bug 75716
14882
14883 2005-08-11 Umadevi S <sumadevi@novell.com>
14884         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
14885
14886 2005-08-11 Umadevi S <sumadevi@novell.com>
14887         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
14888
14889 2005-08-10  Umadevi S <sumadevi@novell.com>
14890         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
14891
14892 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
14893
14894         * Menu.cs: fixes bug 75700
14895         * MenuAPI.cs: fixes navigation issues
14896
14897 2005-08-09  Umadevi S <sumadevi@novell.com>
14898         * CheckedListBox.cs - simple fix for GetItemChecked.
14899
14900 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
14901
14902         * ComboBox.cs: Serveral fixes
14903         * ListBox.cs: Serveral fixes
14904
14905 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14906
14907         * ComboBox.cs: Fixes FindString methods and GetItemHeight
14908         * ListBox.cs: Fixes FindString methods
14909
14910 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
14911
14912         * DataGrid.cs: fixes bugs exposed by new tests
14913
14914 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
14915
14916         * Mime.cs: Compile Mono assembly references only if compiling
14917           with Mono (Allows to build with VS.Net again)
14918
14919 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
14920
14921         * Control.cs (PaintControlBackground): Draw background image
14922         corrrectly.
14923         (CheckForIllegalCrossThreadCalls): Stubbed.
14924         
14925         * Form.cs (OnCreateControl): Center when should be centered.
14926         
14927         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
14928
14929 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
14930
14931         * Binding.cs: Binding to properties should be case unsensitive
14932
14933 2005-07-18 vlindos@nucleusys.com
14934
14935         * DataGrid.cs: fixes setmember order
14936
14937 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
14938
14939         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
14940         * FileDialog.cs: FileDialog is now resizable and uses the new
14941           MimeIconEngine
14942
14943 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
14944
14945         * DataGridTextBoxColumn.cs: default value
14946         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
14947         * GridTableStylesCollection.cs: fixes checking MappingName
14948         * DataGridDrawingLogic.cs: fixes drawing logic issues
14949         * DataSourceHelper.cs: rewritten to make compatible with more data sources
14950         * DataGrid.cs: fixes    
14951
14952 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
14953
14954         * MimeGenerated.cs: Use case sensitive comparer for
14955           NameValueCollections
14956
14957 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
14958
14959         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
14960         * ThemeWin32Classic.cs: bug fixes, code refactoring
14961         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
14962         * DataGrid.cs: bug fixes, code refactoring
14963         * DataGridTextBox.cs: bug fixes, code refactoring
14964         * DataGridColumnStyle.cs:  bug fixes, code refactoring
14965         * Theme.cs:  bug fixes, code refactoring
14966
14967 2005-07-01  Peter Bartok  <pbartok@novell.com> 
14968
14969         * TextControl.cs: Quick fix for the reported crash on ColorDialog
14970           and other text box usage
14971
14972 2005-07-01  Jackson Harper  <jackson@ximian.com>
14973
14974         * TabControl.cs: Make sure the bottom of the tab covers the pages
14975         border.
14976
14977 2005-06-30  Peter Bartok  <pbartok@novell.com> 
14978
14979         * Form.cs (ShowDialog): Assign owner of the dialog
14980         * TextBoxBase.cs: Always refresh caret size when deleting, caret
14981           might have been moved to a tag with different height
14982
14983 2005-06-30  Jackson Harper  <jackson@ximian.com>
14984
14985         * Form.cs: Don't create an infinite loop when setting focus
14986         * MenuItem.cs: Don't dirty the parents if we don't have any
14987
14988 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
14989
14990         * LibSupport.cs: Rename
14991
14992 2005-06-29  Peter Bartok  <pbartok@novell.com>
14993
14994         * TextBoxBase.cs: Re-align caret after deleting a character
14995         * TextControl.cs:
14996           - DeleteChars(): Ensure that tag covers the provided position
14997           - StreamLine(): Drop reference for dropped tag
14998
14999 2005-06-29  Peter Bartok  <pbartok@novell.com> 
15000
15001         * TextControl.cs: 
15002           - Selections now work properly, anchoring at the initial location
15003             and properly extending in either direction (SetSelectionToCaret(),
15004             SetSelectionStart() and SetSelectionEnd())
15005           - No longer redraws the whole control on selection change, now
15006             calculates delta between previous and new selection and only
15007             invalidates/redraws that area
15008           - Fixed FindPos() math off-by-one errors
15009           - Changed DeleteChars() to verify the provided tag covers the
15010             provided position, selections may have a tag that doesn't cover
15011             the position if the selection is at a tag border
15012           - Fixed off-by-one errors in DeleteChars()
15013           - Added missing streamlining check in DeleteChars() to remove
15014             zero-length tags
15015           - Implemented Invalidate() method, now properly calculates exposures
15016             between two given lines/positions
15017           - Implemented SetSelection()
15018           - Obsoleted and removed FixupSelection()
15019           - Improved RecalculateDocument() logic, removing code duplication
15020
15021 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15022
15023         * LibSupport.cs: changes to match different input/output arguments.
15024
15025 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15026
15027         * LibSupport.cs: added libsupport.so init routine.
15028
15029 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
15030         
15031         * ControlBindingsCollection.cs
15032                 - Throws an exception on null datasource when adding
15033                 - Checks for duplicated bindings when adding
15034
15035 2005-06-28  Jackson Harper  <jackson@ximian.com>
15036
15037         * TreeView.cs (OnKeyDown): Support left and right properly
15038         (navigates as well as expanding and collapsing.
15039         - Add support for Multiply, this expands all the selected nodes
15040         children.
15041         - Fix some tabbing.
15042
15043 2005-06-28  Jackson Harper  <jackson@ximian.com>
15044
15045         * TreeView.cs: Implement keyboard navigation, currently supports,
15046         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
15047         support for toggling checkboxes with the space bar.
15048
15049 2005-06-28  Jackson Harper  <jackson@ximian.com>
15050
15051         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
15052         tree.
15053
15054 2005-06-28  Jackson Harper  <jackson@ximian.com>
15055
15056         * TreeView.cs: Add missing event.
15057
15058 2005-06-27  Peter Bartok  <pbartok@novell.com> 
15059
15060         * TextControl.cs:
15061           - Made line ending size configurable (now allows for counting 
15062             lineendings as \n or \r\n)
15063           - Added margin to viewport to keep caret visible on right side
15064           - Fixed translation routines for line/pos to documentpos to consider
15065             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
15066           - Fixed some line-endings to be unix style
15067           - Fixed Document.FormatText to perform it's calculations 1-based
15068           - Added descriptions for a few methods that might otherwise get 
15069             used wrong
15070           - Added NOTE section with some basic conventions to remember at 
15071             the top of the file
15072           - Major fixup for RichTextBox selection drawing:
15073             * Fixed crashes when multiple tags on a single line were selected
15074             * fixed selection box drawing not overlaying text
15075             * fixed bogus offset calculation for tags not starting at index 1
15076             * Switched behaviour from using multiple Substrings of a 
15077               StringBuilder.ToString() to using multiple 
15078               StringBuilder.ToString(start, length) statements, hoping this is
15079               faster (kept original version commented out in the code, in case
15080               original version was faster)
15081         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
15082           alignment != Left
15083         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
15084           call it as well
15085
15086 2005-06-27  Jackson Harper  <jackson@ximian.com>
15087
15088         * TabControl.cs: Move to the left and right with the arrow
15089         keys. These keys don't cycle beyond first and last like
15090         tab. Refresh all the tabs when scrolling them to the left or
15091         right.
15092
15093 2005-06-27  Jackson Harper  <jackson@ximian.com>
15094
15095         * TabControl.cs:
15096           - ToString: Added method
15097           - CreateParams: Remove TODO and comment
15098           - OnKeyDown: Cycle through bounds properly.
15099           - SelectedIndex: Scroll to the right or left if we need to
15100           display the newly selected tab.
15101
15102 2005-06-23  Jackson Harper  <jackson@ximian.com>
15103
15104         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
15105         set.
15106
15107 2005-06-23  Jackson Harper  <jackson@ximian.com>
15108
15109         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
15110         CTRL-SHIFT-TAB, and HOME, END are there any others?
15111
15112 2005-06-23  Jackson Harper  <jackson@ximian.com>
15113
15114         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
15115
15116 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15117         
15118         * DataGridTextBoxColumn.cs: fixes and enhancements
15119         * ThemeWin32Classic.cs: fixes and enhancements
15120         * DataGridBoolColumn.cs:  fixes and enhancements
15121         * DataGridDrawingLogic.cs:  fixes and enhancements
15122         * CurrencyManager.cs: fixes and enhancements
15123         * DataGrid.cs: fixes and enhancements
15124         * DataGridColumnStyle.cs:  fixes and enhancements
15125
15126 2005-06-22  Jackson Harper  <jackson@ximian.com>
15127
15128         * TabControl.cs: Add some missing methods that just call into the
15129         base. Make the TabPageCollection's IList interface behave in the
15130         same manner as the MS implementation.
15131
15132 2005-06-22  Peter Bartok  <pbartok@novell.com> 
15133
15134         * TextControl.cs: Added sanity check
15135         * TextBoxBase.cs: 
15136           - Fixed wrapping behaviour, don't set wrap on single line controls
15137             (this fixes the breakage of colordialog introduced in an earlier
15138              checkin)
15139           - Added rudimentary support for autoscrolling right-aligned controls
15140             (still needs fixing, also, center alignment scroll is missing)
15141
15142 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
15143         
15144         * ScrollBar.cs: Fixes thumbpos on Maximum values
15145
15146 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
15147         
15148         * PropertyGridView.cs: Pass context information to UITypeEditors 
15149
15150 2005-06-21  Peter Bartok  <pbartok@novell.com> 
15151
15152         * TextBoxBase.cs:
15153           - Now calling PositionCaret with absolute space coordinates
15154           - Enabled vertical scrolling
15155           - Better tracking of scrollbar changes, tied into WidthChange
15156             event
15157           - Improved cursor tracking
15158           - Removed debug output
15159         * TextControl.cs:
15160           - PositionCaret coordinates are now works in absolute space, not 
15161             the canvas
15162           - Improved tracking of document size
15163           - Added events for width and height changes
15164
15165 2005-06-21  Peter Bartok  <pbartok@novell.com>
15166
15167         * Form.cs: Set focus to active control when form is activated
15168         * TextControl.cs: 
15169           - Added word-wrap functionality to RecalculateLine() 
15170           - Added some short function descriptions for VS.Net to aid in
15171             writing dependent controls
15172           - Added Caret property, returning the current coords of the caret
15173           - Added ViewPortWidth and ViewPortHeight properties
15174           - Added Wrap property
15175           - Added CaretMoved event
15176           - Removed some old debug code
15177           - Split() can now create soft splits
15178           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
15179           - Added method to format existing text
15180           - Fixed size/alignment calculations to use viewport
15181           - RecalculateDocument now can handle changing line-numbers while
15182             calculating lines
15183
15184         * TextBox.cs:
15185           - Added some wrap logic, we don't wrap if alignment is not left
15186           - Added casts for scrollbar var, base class switched types to
15187             also support RichTextBoxA
15188           - Implemented handling of scrollbar visibility flags
15189
15190         * TextBoxBase.cs:
15191           - Switched scrollbars type to RichTextBoxScrollBars to support
15192             RichTextBox
15193           - Added tracking of canvas width/height
15194           - Switched scrollbars to be not selectable (to keep focus on text)
15195           - Added central CalculateDocument() method to handle all redraw
15196             requirements
15197           - Added ReadOnly support
15198           - Added WordWrap support
15199           - Fixed handling of Enter key (we now treat it as a DialogKey)
15200           - Fixed caret positioning when h or v scroll is not zero
15201           - Fixed placing/generation of vertical scrollbar
15202           - Added CalculateScrollBars() method to allow updating scrollbar
15203             limits and visibility
15204           - Fixed handling of horizontal scroll
15205           - Added handling of vertical scroll
15206           - Implemented auto-'jump' when caret moves to close to a left or
15207             right border and there is text to be scrolled into view (currently
15208             there's the potential for a stack overflow, until a bug in
15209             scrollbar is fixed)
15210
15211 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
15212         
15213         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
15214
15215 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
15216
15217         * Mime.cs:
15218         - added inodes.
15219         - return application/x-zerosize for files with size zero
15220           (if no extension pattern matches).
15221         - check matches collection for strings too.
15222         - return only the first mime type if the name value
15223           collection has more than one mime type.
15224
15225 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
15226         
15227         * PropertyGrid.cs: Cleaned up some TODOs
15228         * PropertyGridView.cs: Added support for UITypeEditors
15229
15230 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15231         
15232         * DataGrid.cs: clears cached value
15233
15234 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
15235
15236         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
15237         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
15238         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
15239         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
15240         
15241 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
15242
15243         * ThemeWin32Classic.cs: fixes colour
15244
15245 2005-06-15  Peter Bartok  <pbartok@novell.com>
15246
15247         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
15248         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
15249         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
15250         * Control.cs: Added some MWFCategory and MWFDescription attributes
15251         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
15252
15253 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
15254
15255         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
15256         usage
15257
15258 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
15259
15260         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
15261         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
15262         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
15263         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
15264         * DataGrid.cs: default datagrid settings for Default Styles, fixes
15265         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
15266
15267 2005-06-13  Jackson Harper  <jackson@ximian.com>
15268
15269         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
15270         isn't printed when the user enables dropping. (X11 does accept
15271         drops).
15272         
15273 2005-06-13  Jackson Harper  <jackson@ximian.com>
15274
15275         * TreeView.cs: Remove some TODOS.
15276
15277 2005-06-13  Jackson Harper  <jackson@ximian.com>
15278
15279         * Form.cs: Hook into the mdi framework.
15280         * MdiClient.cs: Use the base control collections add method so
15281         parents get setup correctly. Set the default back colour and dock
15282         style.
15283         * MdiChildContext.cs: New class, this bad actor handles an
15284         instance of an MDI window. Right now there is only basic
15285         support. You can drag, close, and resize windows. Minimize and
15286         Maximize are partially implemented.
15287
15288 2005-06-13  Jackson Harper  <jackson@ximian.com>
15289
15290         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
15291         freaky when both vals are negative. NOTE: There are probably other
15292         places in XplatUIX11 that this needs to be done.
15293
15294 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
15295
15296         * DataGrid.cs: implement missing methods, move KeyboardNavigation
15297         * DataGridColumnStyle.cs: fixes signature
15298
15299 2005-06-12  Jackson Harper  <jackson@ximian.com>
15300
15301         * XplatUIX11.cs: Use sizing cursors similar to the ones on
15302         windows.
15303
15304 2005-06-11  Jackson Harper  <jackson@ximian.com>
15305
15306         * StatusBarPanel.cs: Signature cleanups. Implement
15307         BeginInit/EndInit.
15308
15309 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
15310
15311         * DataGridTextBoxColumn.cs: Honors aligment
15312         * GridColumnStylesCollection.cs: Contains is case unsensitive
15313         * GridTableStylesCollection.cs: several fixes
15314         * DataGridTableStyle.cs: default column creation
15315         * DataGridDrawingLogic.cs: fixes
15316         * CurrencyManager.cs: ListName property
15317         * DataGrid.cs: multiple styles support
15318         * DataGridColumnStyle.cs: fixes
15319         
15320
15321 2005-06-10  Peter Bartok  <pbartok@novell.com>
15322
15323         * Control.cs(Select): Moved SetFocus call to avoid potential
15324           loops if controls change the active control when getting focus
15325         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
15326           the up/down buttons
15327
15328 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
15329
15330         * ImageListConverter.cs: Implemented
15331
15332 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
15333
15334         * MonthCalendar.cs: Wired in NumericUpDown control for year
15335
15336 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
15337
15338         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
15339           DoubleClick events, since they are not meant to be fired.
15340
15341 2005-06-09  Peter Bartok  <pbartok@novell.com>
15342
15343         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
15344           Jonathan's standalone controls into MWF, implemented missing
15345           events, attributes and methods; added xxxAccessible classes
15346         * AccessibleObject.cs: Made fields internal so other classes
15347           can change them if needed
15348
15349 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
15350
15351         * UpDownBase.cs: Complete implementation
15352         * NumericUpDown.cs: Complete implementation
15353         * DomainUpDown.cs: Complete implementation
15354
15355 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
15356
15357         * DataGridTextBoxColumn.cs: drawing fixes
15358         * DataGridCell.cs: fixes ToString method to match MSNet
15359         * DataGridTableStyle.cs: fixes
15360         * DataGridBoolColumn.cs: fixes, drawing
15361         * DataGridDrawingLogic.cs: fixes, new methods
15362         * DataGridTextBox.cs: Keyboard and fixes
15363         * DataGrid.cs:
15364                 - Keyboard navigation
15365                 - Scrolling fixes
15366                 - Row selection (single, multiple, deletion, etc)
15367                 - Lots of fixes
15368         
15369 2005-06-07  Jackson Harper  <jackson@ximian.com>
15370
15371         * ThemeWin32Classic.cs: Clear the background area when drawing
15372         buttons.
15373
15374 2005-06-06  Peter Bartok  <pbartok@novell.com>
15375
15376         * ImageListStreamer.cs: Fixed signature for GetData
15377         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
15378         * ComboBox.cs:
15379           - Added missing ChildAccessibleObject class
15380           - Added missing OnXXXFocus overrides, switched to using those
15381             instead of the event handler
15382         * Control.cs:
15383           - Added Parent property for ControlAccessibleObject
15384           - Fixed signatures
15385           - Fixed attributes
15386           - Added ResetBindings()
15387         * ListBindingConverter.cs: Implemented some methods
15388         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
15389         * ImageList.cs: Implemented basic handle scheme, removed TODOs
15390         * ContainerControl.cs: Fixed signature, now subscribing to the
15391           ControlRemoved event instead of overriding the handler, LAMESPEC
15392         * CurrencyManager.cs: Added missing attribute
15393         * MonthCalendar.cs: Added missing properties
15394
15395 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
15396
15397         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
15398         
15399 2005-06-06  Gaurav Vaish and Ankit Jain
15400
15401         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
15402         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
15403         
15404 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
15405
15406         * Control.cs: fixes CreateParams Width / Height.
15407
15408 2005-06-05  Peter Bartok  <pbartok@novell.com>
15409
15410         * Win32DnD.cs: Removed compilation warnings
15411
15412 2005-06-05  Peter Bartok  <pbartok@novell.com>
15413
15414         * Control.cs (CreateParams): Since we don't know if one of the
15415           properties we use is overridden, lets make sure if we fail accessing
15416           we continue with a backup plan
15417
15418 2005-06-05  Peter Bartok  <pbartok@novell.com>
15419
15420         * Win32DnD.cs:
15421           - Removed debug output
15422           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
15423             struct
15424           - Plugged resource leak
15425         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
15426           MS size
15427
15428 2005-06-05  Peter Bartok  <pbartok@novell.com>
15429
15430         * XplatUIWin32.cs: Removed DnD code
15431         * Win32DnD.cs: Implemented drop source and drop target functionality
15432
15433 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15434
15435         * UpDownBase.cs: remove duplicate addition of event, enable some code
15436         that was commented out.
15437         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
15438         Validate input when a key is pressed. It works fine now for every
15439         combination of Hexadecimal. Only missing some drawing love when sharing
15440         space with other controls.
15441
15442 2005-06-04  Peter Bartok  <pbartok@novell.com>
15443
15444         * Control.cs:
15445           - We need to pass a window for DragDrop, so enable callback events
15446           - Added DnD callback events when being a DragSource
15447         * XplatUI.cs (StartDrag): Added window handle argument
15448         * XplatUIDriver.cs (StartDrag): Added window handle argument
15449         * QueryContinueDragEventArgs: Made fields internally accessible so
15450           drivers can set them
15451         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
15452           can set them
15453
15454 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
15455
15456         * DataGridTextBoxColumn.cs: column text editing
15457         * DataGridTableStyle.cs: Respect columns styles created by the user
15458         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
15459         * DataGridBoolColumn.cs: bool column editing
15460         * DataGrid.cs: fixes to scrolling, properties, etc
15461         * DataGridTextBox.cs: handle keyboard
15462         * DataGridColumnStyle.cs: fixes
15463
15464 2005-06-02  Jackson Harper  <jackson@ximian.com>
15465
15466         * ImageListStreamer.cs: Somewhat broken implementation of
15467         GetObjectData. The RLE needs some work to match MS properly.
15468
15469 2005-06-02  Jackson Harper  <jackson@ximian.com>
15470
15471         * X11Dnd.cs: Attempting to keep at least one file in MWF
15472         monostyled.
15473
15474 2005-06-02  Peter Bartok  <pbartok@novell.com>
15475
15476         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
15477           that way
15478
15479 2005-06-02  Peter Bartok  <pbartok@novell.com>
15480
15481         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
15482         * XplatUI.cs: Added DoDragDrop() method
15483         * XplatUIDriver.cs: Added DoDragDrop() method
15484
15485 2005-06-02  Jackson Harper  <jackson@ximian.com>
15486
15487         * Splitter.cs: Implement BorderStyle.
15488
15489 2005-06-02  Jackson Harper  <jackson@ximian.com>
15490
15491         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
15492         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
15493         X11 using XDND.
15494
15495 2005-06-02  Peter Bartok  <pbartok@novell.com>
15496
15497         * DataObject.cs:
15498           - Added Data setter
15499           - Fixed broken insertion code for SetData, now also
15500             overwrites any existing entry of the same format name
15501         * Hwnd.cs: Added list of pointers that automatically gets
15502           freed when the window is disposed
15503         * XplatUI.cs: Call driver initialization method when loading
15504           a driver
15505         * Control.cs:
15506           - OnDragLeave takes EventArgs, not DragEventArgs
15507           - Added setting of WS_EX_ACCEPTFILES style when dropping is
15508             supported
15509           - Forces style update when drop state changes
15510         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
15511           not perfect since we cannot (yet) call the IDataObject.GetData()
15512           method, we keep getting 0x80004005 error, dunno why)
15513
15514 2005-06-02  Peter Bartok  <pbartok@novell.com>
15515
15516         * DragEventArgs.cs: Make fields internal so we can cache the
15517           object and re-set the fields from XplatUI
15518
15519 2005-06-02  Jackson Harper  <jackson@ximian.com>
15520
15521         * Control.cs: Add some internal methods so the DnD subsystem can
15522         raise DnD events. Also call into the driver when AllowDrop is set.
15523         * XplatUI.cs:
15524         * XplatUIDriver.cs: New method for setting whether or not a window
15525         is allowed to accept drag and drop messages.
15526                 
15527 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
15528         
15529         * ScrollBar.cs: Make sure that values sent in Scroll events
15530         are always between Maximum and Minimum.
15531
15532 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
15533
15534         * Menu.cs: Call MenuChanged when menuitem visibility has been
15535         changed.
15536         * MenuItem.cs: Rebuild menu when item is (not) visible.
15537         * MainMenu.cs: MainMenu has special MenuChanged.
15538         * Theme.cs: Caption and FrameBorderSize are not fixed.
15539         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
15540         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
15541         * XplatUIX11.cs,
15542         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
15543         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
15544
15545 2005-05-30  Jackson Harper  <jackson@ximian.com>
15546
15547         * DataFormat.cs: We can't statically initialize this stuff because
15548         it calls into the xplatui and could create a loop. So we lazy init
15549         it.
15550
15551 2005-05-28  Jackson Harper  <jackson@ximian.com>
15552
15553         * Control.cs: Proper implementation of Product(Name/Version).
15554
15555 2005-05-27  Jackson Harper  <jackson@ximian.com>
15556
15557         * DataObject.cs: Dont crash if no data is found.
15558
15559 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
15560         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
15561                 as per status page, guessing it should be set to true
15562
15563 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
15564
15565         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
15566         * DataGridTableStyle.cs: set proper formatting text, def header text
15567         * ThemeWin32Classic.cs: new themable paramaters
15568         * DataGridBoolColumn.cs: paint check box, get data, fixes
15569         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
15570         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
15571         * DataGridColumnStyle.cs: fixes
15572         * Theme.cs: new themable paramaters
15573                 
15574 2005-05-26  Peter Bartok  <pbartok@novell.com>
15575
15576         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
15577
15578 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15579         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
15580
15581 2005-05-24  Peter Bartok  <pbartok@novell.com>
15582
15583         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
15584           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
15585           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
15586           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
15587           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
15588           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
15589           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
15590           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
15591           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
15592           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
15593           missing attributes, etc
15594         * DataGridPreferredColumnWidthTypeConverter.cs: Added
15595
15596 2005-05-24  Peter Bartok  <pbartok@novell.com>
15597
15598         * Help.cs: Added, implemented trivial functions, throws up MessageBox
15599           when user tries to get help
15600         * DataObject.cs, DataFormats.cs, LinkArea.cs,
15601           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
15602           to suppress warnings
15603         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
15604           avoid unreachable code warning
15605
15606 2005-05-20  Peter Bartok  <pbartok@novell.com>
15607
15608         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
15609
15610 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15611
15612         * DataGridTextBoxColumn.cs: Basic painting methods
15613         * DataGridTableStyle.cs: Set table style in the column
15614         * ThemeWin32Classic.cs: Use Theme for colors
15615         * DataGridDrawingLogic.cs: Implement more drawing
15616         * DataGrid.cs: drawing, theming, enhacements, fixes
15617         * DataGridColumnStyle.cs: fixes, drawing
15618         * Theme.cs: theming for Datagrid
15619
15620 2005-05-20  Peter Bartok  <pbartok@novell.com>
15621
15622         * Cursor.cs: Implemented GetObjectData() method
15623
15624 2005-05-20  Peter Bartok  <pbartok@novell.com>
15625
15626         * Cursors.cs: Added setting of cursor name
15627         * Cursor.cs:
15628           - Implemented constructors
15629           - Implemented Draw and DrawStretched
15630           - Implemented Current property
15631           - Implemented == and != operators
15632           - Implemented Dispose()
15633           - Implemented ToString
15634           - Added missing attributes
15635         * XplatUIX11.cs:
15636           - Added missing reset for OverrideCursor when DoEvents is called
15637           - Fixed creation of cursor, logic was wrong
15638         * XplatUIWin32.cs:
15639           - Added missing reset for OverrideCursor when DoEvents is called
15640           - Fixed creation of cursor, bit arrays were swapped
15641         * Clipboard.cs: Removed obsolete MonoTODO attribute
15642
15643 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15644
15645         * ComboBox.cs: fixes OnSelectedItemChanged
15646         * ControlBindingsCollection.cs: fixes item range check
15647
15648 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
15649
15650         * UpDownBase.cs:
15651                 - Calc preferred height properly
15652                 - Implement missing properties
15653                 
15654         * NumericUpDown.cs: Implement missing events
15655
15656 2005-05-19  Jackson Harper  <jackson@ximian.com>
15657
15658         * TabControl.cs: New method that resizes the tab pages before
15659         redrawing them. This as needed as the control is double buffered
15660         and sizing will not be recalculated unless ResizeTabPages is
15661         called.
15662         * TabPage.cs: Set base.Text instead of Text in the constructor so
15663         that UpdateOwner does not get called. Use the new Redraw method of
15664         TabControl instead of Refresh so the sizing is recalculated.
15665         * ThemeWin32Classic.cs: Draw the text for button tabs.
15666
15667 2005-05-19  Jackson Harper  <jackson@ximian.com>
15668
15669         * Control.cs: Paint control background images. Fix typo where
15670         PaintControlBackground was not getting called correctly.
15671
15672 2005-05-19  Peter Bartok  <pbartok@novell.com>
15673
15674         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
15675           I can investigate, apparently I broke FileDialog
15676
15677 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
15678
15679         * AxHost.cs: Some simple properties.
15680         * Control.cs: window must be accessible after ctor.
15681         * Form.cs: Added TransparencyKey property.
15682         * TextBoxBase.cs: Implemented Clear. Text property can be null.
15683         * XplatUIWin32.cs: SetBorderStyle implemented.
15684
15685 2005-05-18  Peter Bartok  <pbartok@novell.com>
15686
15687         * DataObject.cs: Entries are not global but particular to the
15688           DataObject, now it behaves that way
15689         * XplatUIWin32.cs: Implemented Clipboard methods
15690         * Clipboard.cs: Implemented
15691         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
15692         * XplatUIOSX.cs: Updated to final clipboard prototypes
15693         * XplatUIX11.cs: Implemented Clipboard methods
15694         * XplatUIDriver.cs: Updated to final clipboard prototypes
15695         * XplatUIStructs.cs:
15696           - Added BITMAPINFOHEADER struct
15697           - Added ClipboardFormats enum
15698         * X11Structs.cs:
15699           - Added ClipboardStruct
15700           - Added Atom enum items for clipboard types
15701           - Fixed atom types for Selection event structures
15702         * DataFormats.cs:
15703           - Added internal properties and methods for drivers to enumerate
15704             all known formats
15705           - Switched initialization method to allow drivers to assign their
15706             own IDs even for the MS predefined clipboard IDs
15707         * XplatUI.cs: Updated to final clipboard interface
15708
15709 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15710         * PropertyGridView.cs: Fixed compiler warnings.
15711
15712 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
15713         * PropertyGrid.cs: Added some event calls
15714         * PropertyGridView.cs: Change drawing code to use double buffering
15715         * PropertyGridTextBox.cs: Changed Text property name
15716         * GridItem.cs: Added Bounds property.
15717         * GridEntry.cs: Added Bounds property.
15718
15719 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
15720
15721         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
15722         since GetType() may not return the correct type if the object is
15723         a remoting proxy.
15724
15725 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
15726
15727         * TreeNodeCollection.cs: fixes get/set item ranges
15728         
15729 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15730
15731         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
15732                 
15733 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
15734
15735         * ComboBox.cs: Fix item range comparation
15736         * ListView.cs: Fix item range comparation
15737
15738 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15739
15740         * FontDialog.cs:
15741           - Clear example panel when OnPaint is called
15742           - Better solution for displaying the example panel text
15743           - Select default indexes in the ListBoxes
15744
15745 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15746
15747         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
15748
15749 2005-05-11  Peter Bartok  <pbartok@novell.com>
15750
15751         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
15752         * SelectionRangeConverter.cs: Implemented
15753         * PropertyGrid.cs: Fixed attribute value
15754         * Control.cs:
15755           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
15756           - Added Sebastien Pouliot's CAS Stack Propagation fixes
15757         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
15758           that's common to all drivers. First methods to go there are
15759           Sebastien Pouliot's CAS Stack Propagation helper methods
15760         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
15761           Sebastien Pouliot for CAS Stack Propagation
15762
15763 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
15764
15765         * OSXStructs.cs:
15766           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
15767
15768 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
15769
15770         * DataGridTextBoxColumn.cs: fixed some members
15771         * GridColumnStylesCollection.cs: indexed column is case insensitive
15772         * DataGridTableStyle.cs: fixes
15773         * ThemeWin32Classic.cs: add new theme parameter
15774         * Theme.cs: add new theme parameter
15775         * DataGridDrawingLogic.cs: Datagrid's drawing logic
15776         * DataGrid.cs: fixes, new internal properties, etc.
15777         * DataGridColumnStyle.cs: allows to set grid value
15778         *
15779
15780 2005-05-10  Peter Bartok  <pbartok@novell.com>
15781
15782         * AccessibleObject.cs:
15783           - Removed MonoTODO attribute on help, method is correct
15784           - Fixed Bounds property
15785         * AxHost.cs: Moved MonoTODO
15786         * ButtonBase.cs: Now setting AccessibleObject properties
15787         * RadioButton.cs: Setting proper AccessibleObject role
15788         * CheckBox.cs: Setting proper AccessibleObject role
15789         * ControlBindingsCollection.cs: Added properties, methods and attributes
15790         * DataFormats.cs: Fixed awkward internal API, and changed to enable
15791           userdefined DataFormats.Format items as well
15792         * ListControl.cs: Removed data_member from the public eye
15793         * OpenFileDialog.cs:
15794           - Made class sealed
15795           - Added missing attributes
15796         * SaveFileDialog.cs: Added missing attributes
15797         * ImageListStreamer.cs: Fixed code that caused warnings
15798         * LinkLabel.cs: Removed unreachable code
15799         * TreeView.cs: Fixed code that caused warnings
15800         * PropertyGridView.cs: Fixed code that caused warnings
15801         * GridColumnStylesCollection.cs: Added missing attributes
15802         * GridTableStylesCollection: Added missing attribute
15803         * PropertyManager: Added .ctor
15804         * SecurityIDType: Added
15805         * DataObject.cs: Implemented class
15806         * LinkArea.cs: Added missing attribute
15807
15808 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
15809
15810         * RadioButton.cs: call base method to allow to fire OnClick event
15811         * UpDownBase.cs: OnMouseUp call base method
15812         * CheckedListBox.cs: call base method before returning
15813         * TrackBar.cs: call base method before returning
15814         
15815
15816 2005-05-10  Peter Bartok  <pbartok@novell.com>
15817
15818         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
15819           for messages
15820
15821 2005-05-10  Peter Bartok  <pbartok@novell.com>
15822
15823         * DataFormats.cs: Implemented
15824         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
15825           XplatUIX11.cs: Added Clipboard APIs
15826         * XplatUIWin32.cs: Implemented Clipboard APIs
15827         * FolderBrowserDialog.cs: Added missing event, attributes
15828
15829 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
15830
15831         * CheckBox.cs: call base method to allow to fire OnClick event
15832
15833 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
15834
15835         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
15836
15837 2005-05-06  Peter Bartok  <pbartok@novell.com>
15838
15839         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
15840         * Screen.cs: Implemented
15841         * HelpNavigator.cs: Added
15842         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
15843           property
15844         * HelpProvider.cs: Implemented all we can do until we have a CHM
15845           help library (which means that "What's This" does work now)
15846
15847 2005-05-06  Jackson Harper  <jackson@ximian.com>
15848
15849         * XplatUIX11.cs: Fix waking up the main loop.
15850                 
15851 2005-05-05  Peter Bartok  <pbartok@novell.com>
15852
15853         * XplatUI.cs: Updated revision
15854         * Form.cs: Removed enless loop
15855         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
15856         * Label.cs (OnPaint): Added call to base.OnPaint()
15857         * ToolTip.cs: Made ToolTipWindow reusable for other controls
15858         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
15859         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
15860         * AxHost.cs: Added
15861         * ButtonBase.cs: Moved base.OnPaint() call to end of method
15862         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
15863           to ToolTip.ToolTipWindow for drawing and size methods; this allows
15864           reuse of ToolTipWindow by other controls
15865         * SizeGrip.cs: Moved base.OnPaint() call to end of method
15866         * XplatUIX11.cs: Now clipping drawing area (experimental)
15867         * PictureBox.cs: Moved base.OnPaint() call to end of method
15868         * Theme.cs: Fixed ToolTip abstracts to match new format
15869         * ErrorProvider.cs: Implemented
15870
15871 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
15872
15873         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
15874         * LinkLabel.cs:
15875                 - Adds cursors
15876                 - Handles focus
15877                 - Implements LinkBehavior
15878                 - Fixes many issues
15879
15880 2005-05-03  Jackson Harper  <jackson@ximian.com>
15881
15882         * ListView.cs: Calculate the scrollbar positioning on resize and
15883         paint, so they get put in the correct place.
15884
15885 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
15886
15887         * ColorDialogs.cs: The small color panels are now handled by
15888           SmallColorControl. This fixes drawing of the focus rectangle
15889           and adds a 3D border.
15890
15891 2005-05-03  Peter Bartok  <pbartok@novell.com>
15892
15893         * Control.cs: Modified version of Jonathan Chamber's fix for
15894           double-buffering
15895
15896 2005-05-03  Jackson Harper  <jackson@ximian.com>
15897
15898         * ListView.cs: Remove redraw variable. Control now handles whether
15899         or not a redraw needs to be done, and will only raise the paint
15900         event if redrawing is needed.
15901
15902 2005-05-03  Jackson Harper  <jackson@ximian.com>
15903
15904         * Splitter.cs: No decorations for the splitter form. Cache the
15905         hatch brush.
15906
15907 2005-05-03  Jackson Harper  <jackson@ximian.com>
15908
15909         * TreeView.cs: Use dashed lines to connect nodes. Use the
15910         ControlPaint method for drawing the focus rect instead of doing
15911         that in treeview.
15912
15913 2005-05-02  Peter Bartok  <pbartok@novell.com>
15914
15915         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
15916
15917 2005-04-29  Jackson Harper  <jackson@ximian.com>
15918
15919         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
15920         entire image buffer. Just clear the clipping rectangle.
15921
15922 2005-04-29  Jackson Harper  <jackson@ximian.com>
15923
15924         * ThemeWin32Classic.cs: Don't draw list view items that are
15925         outside the clipping rectangle.
15926
15927 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
15928
15929         * ListBox.cs: added horizontal item scroll
15930
15931 2005-04-29  Jackson Harper  <jackson@ximian.com>
15932
15933         * ThemeWin32Classic.cs: Remove some old debug code that was
15934         causing flicker with the new double buffering code.
15935
15936 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
15937
15938         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
15939         behave like combobox and comboboxlist (still not sure if this is
15940         correct though).
15941
15942 2005-04-28  Jackson Harper  <jackson@ximian.com>
15943
15944         * ThemeWin32Classic.cs: Don't fill the middle of progress
15945         bars. This fills areas outside of the clip bounds that don't need
15946         to be filled.
15947
15948 2005-04-28  Jackson Harper  <jackson@ximian.com>
15949
15950         * Control.cs: Don't expose functionality to touch the image buffers.
15951         * ProgressBar.cs:
15952         * ListView.cs: We do not need to (and no longer can) manipulate
15953         the image buffers directly. All of this is handled by Control.
15954
15955 2005-04-28  Peter Bartok  <pbartok@novell.com>
15956
15957         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
15958           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
15959           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
15960
15961 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15962
15963         * Combobox:
15964                 - Adjust control's height for non-simple comboboxes (bug fix)
15965                 - Remove dead code
15966         * MenuAPI.cs: remove unused var
15967         * ScrollBar.cs: remove unsed var
15968                  
15969         * ListBox.cs: unselect items when clearing
15970
15971 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
15972
15973         * ListControl.cs: honors OnPositionChanged and default Selected Item
15974         * ListBox.cs: unselect items when clearing
15975
15976 2005-04-27  Jackson Harper  <jackson@ximian.com>
15977
15978         * X11Keyboard.cs: Initialize a default keyboard and give a warning
15979         if a "correct" keyboard is not found. This will make us not crash,
15980         but might give some users bad keyboard layouts...seems to be the
15981         same thing rewind does.
15982
15983 2005-04-27  Jackson Harper  <jackson@ximian.com>
15984
15985         * BindingManagerBase.cs: Attach the current/position changed
15986         handlers to their respective events.
15987
15988 2005-04-27  Jackson Harper  <jackson@ximian.com>
15989
15990         * Control.cs: Make sure that the first WM_PAINT does a full draw,
15991         not just a blit.
15992         * ThemeWin32Classic.cs: Don't fill the background for picture
15993         boxes. This could overright user drawing.
15994         * ComboBox.cs: Just fill the clipping rect not the entire client
15995         rect when drawing the background. This prevents pieces of the
15996         image buffer from getting overwritten and is theoretically faster.
15997
15998 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
15999
16000         * ComboBox.cs: Databinding support fixes, fire missing events
16001         * ListControl.cs: implement missing methods and properties, fixes
16002         * ThemeWin32Classic.cs: Databiding support on Drawing
16003         * CheckedListBox.cs: Databinding support fixes, fire missing events
16004         * ListBox.cs: Databinding support fixes, fire missing events
16005         
16006 2005-04-25  Peter Bartok  <pbartok@novell.com>
16007
16008         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
16009
16010 2005-04-25  Jackson Harper  <jackson@ximian.com>
16011
16012         * TreeView.cs: Use the horizontal scrollbars height not width when
16013         determining how much of the client area is available.
16014
16015 2005-04-25  Jackson Harper  <jackson@ximian.com>
16016
16017         * Control.cs: Double buffering is handled differently now. As per
16018         the spec, the extra buffer is created in the WM_PAINT message and
16019         passed down to the control's drawing code.
16020         * GroupBox.cs:
16021         * Label.cs:
16022         * CheckBox.cs:
16023         * ProgressBar.cs:
16024         * RadioButton.cs:
16025         * ColorDialog.cs:
16026         * ComboBox.cs:
16027         * PropertyGridView.cs:
16028         * UpDownBase.cs:
16029         * MessageBox.cs:
16030         * MenuAPI.cs:
16031         * ListView.cs:
16032         * ButtonBase.cs:
16033         * SizeGrip.cs:
16034         * ScrollBar.cs:
16035         * ListBox.cs:
16036         * TrackBar.cs:
16037         * ToolBar.cs:
16038         * PictureBox.cs:
16039         * DateTimePicker.cs:
16040         * StatusBar.cs:
16041         * TreeView.cs: Update to new double buffering system.
16042         * MonthCalendar.cs: Uncomment block, as Capture is now
16043         working. Update to new double buffering
16044         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
16045         * PaintEventArgs.cs: New internal method allows us to set the
16046         graphics object. This is used for double buffering.
16047         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
16048         rectangle. The internal paint_area var has been removed from
16049         StatusBar. The clipping rect should be used instead.
16050         * Theme.cs: Give the PictureBox drawing method a clipping rect.
16051         * TabPage.cs: The RefreshTabs method was removed, so just call the
16052         tab controls Refresh method now.
16053         * TabControl.cs: Update to new double buffering. Make sure the
16054         handle is created before sizing the tab pages, otherwise we will
16055         get stuck in a loop.
16056
16057 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
16058
16059         * LinkLabel.cs: Fix typo, bug #74719; patch
16060           from Borja Sanchez Zamorano
16061
16062 2005-04-22  Jackson Harper  <jackson@ximian.com>
16063
16064         * TreeNode.cs: Implement Handle stuff.
16065         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
16066
16067 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
16068
16069         * DataGridTextBoxColumn.cs: call base constructors, fixes
16070         * GridColumnStylesCollection.cs: missing events, methods, and functionality
16071         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
16072         * DataGridTableStyle.cs: implements create default column styles
16073         * DataGridBoolColumn.cs: which types can handle
16074         * DataGrid.cs: missing methods, fixes, new functionality
16075         * DataGridColumnStyle.cs: fixes
16076
16077 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
16078         * FolderBrowserDialog.cs:
16079         - Use a thread to fill the TreeView
16080         - Adjusted some sizes
16081
16082 2005-04-19  Peter Bartok  <pbartok@novell.com>
16083
16084         * LinkLabel.cs: (Re-)create the pieces when setting the Text
16085           property. Fixes #74360.
16086
16087 2005-04-19  Jackson Harper  <jackson@ximian.com>
16088
16089         * XEventQueue.cs: Lock when getting the lockqueue size.
16090         * PictureBox.cs: Call base OnPaint
16091         
16092 2005-04-19  Peter Bartok  <pbartok@novell.com>
16093
16094         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
16095           messages were no longer being processed (this broke BeginInvoke)
16096
16097           
16098 2005-04-18  Jackson Harper  <jackson@ximian.com>
16099
16100         * TreeView.cs: buglet that caused node images to get drawn
16101         regardless of whether or not they were in the clipping rectangle.
16102
16103 2005-04-18  Jackson Harper  <jackson@ximian.com>
16104
16105         * CurrencyManager.cs: There are four rules for GetItemProperties:
16106         - If the type is an array use the element type of the array
16107         - If the type is a typed list, use the type
16108         - If the list contains an Item property that is not an object, use
16109         that property
16110         - use the first element of the list if there are any elements in
16111         the list.
16112         
16113 2005-04-17  Jackson Harper  <jackson@ximian.oom>
16114
16115         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
16116         click. This handles offsets for scrolling properly and reduces
16117         memory. Also fixed GetNode to not offset now that TopNode works
16118         properly.
16119         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
16120         
16121 2005-04-17  Jackson Harper  <jackson@ximian.com>
16122
16123         * CursorConverter.cs: Initial implementation.
16124
16125 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16126
16127         * ListControl.cs: work towards complex data binding support on ListControl
16128         * CurrencyManager.cs: work towards complex data binding support on ListControl
16129         * ListBox.cs: work towards complex data binding support on ListControl
16130
16131
16132 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
16133
16134         * GridTableStylesCollection.cs: fixes name and constructor
16135         * DataGridTableStyle.cs: fixes
16136         * DataGridBoolColumn.cs: fixes names and constructors
16137         * DataGrid.cs: define methods and properties. Some init implementations
16138         * DataGridCell.cs: define methods and properties. Some init implementations
16139         * GridTablesFactory.cs: Define methods and properties
16140
16141 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
16142
16143         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
16144         graphics port changes.  We still want the coordinates in global screen
16145         coordinates.
16146
16147 2005-04-14  Jackson Harper  <jackson@ximian.com>
16148
16149         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
16150         check plus minus or checkbox clicks unless those features are enabled.
16151
16152 2005-04-14  Jackson Harper  <jackson@ximian.com>
16153
16154         * TreeView.cs: Add methods for setting the top and bottom visible
16155         nodes. TreeNode::EnsureVisible uses these methods.
16156         * TreeNode.cs: Implement EnsureVisible
16157
16158 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
16159
16160         * Form.cs: Pospone menu assignation if the window has not been created yet
16161         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
16162         size and position
16163
16164 2005-04-12  Jackson Harper  <jackson@ximian.com>
16165
16166         * TreeView.cs: Set the TopNode properly when scrolling
16167         occurs. This has the added benifit of reducing the amount of
16168         walking that needs to be done when drawing. Also removed an old
16169         misleading TODO.
16170         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
16171         
16172 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
16173
16174         * Timer.cs: fixes interval setting when the timer is already enabled
16175         
16176 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
16177
16178         * FolderBrowserDialog.cs: First approach
16179
16180 2005-04-09  Peter Bartok  <pbartok@novell.com>
16181
16182         * FolderBrowserDialog: Added
16183
16184 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
16185
16186         * LinkLabel.cs: move drawing code into the theme
16187         * ThemeWin32Classic.cs: drawing code and painting background bugfix
16188         * Theme.cs: define DrawLinkLabel method
16189
16190 2005-04-05  Jackson Harper  <jackson@ximian.com>
16191
16192         * BindingContext.cs: Use weak references so these bad actors don't
16193         stay alive longer then they need to.
16194
16195 2005-04-05  Jackson Harper  <jackson@ximian.com>
16196
16197         * ListControl.cs: Basic implementation of complex databinding.
16198         * ComboBox.cs:
16199         * ListBox.cs: Add calls to ListControl databinding methods.
16200
16201 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
16202
16203         * FileDialog.cs:
16204           - Don't change PopupButtonState to Normal when the
16205             PopupButton gets pressed several times.
16206           - Renamed ButtonPanel to PopupButtonPanel
16207
16208 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
16209
16210         * ColorDialog.cs: Use cached objects instead of creating them
16211         * LinkLabel.cs: Use cached objects instead of creating them
16212         * Splitter.cs: Use cached objects instead of creating them
16213         * FontDialog.cs: Use cached objects instead of creating them
16214         * PropertyGridView.cs: Use cached objects instead of creating them
16215         * MessageBox.cs: Use cached objects instead of creating them
16216         * FileDialog.cs: Use cached objects instead of creating them
16217         * ThemeWin32Classic.cs: Use cached objects instead of creating them
16218         * TreeView.cs: Use cached objects instead of creating them
16219         
16220 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
16221
16222         * Control.cs: use Equals to compare the font since no == op
16223         * ScrollBar.cs: use Equals to compare the font since no == op
16224
16225 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
16226
16227         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
16228
16229 2005-04-01  Jackson Harper  <jackson@ximian.com>
16230
16231         * Binding.cs: Implement IsBinding.
16232         * BindingManagerBase.cs:
16233         * PropertyManager.cs:
16234         * CurrencyManager.cs: Add IsSuspended property.
16235
16236 2005-04-01  Jackson Harper  <jackson@ximian.com>
16237
16238         * Binding.cs: Had some IsAssignableFrom calls backwards.
16239
16240 2005-04-01  Jackson Harper  <jackson@ximian.com>
16241
16242         * Binding.cs: Handle null data members when pulling data.
16243         * PropertyManager.cs: Handle the data member being a property that
16244         does not exist.
16245
16246 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16247
16248         * DataGridTextBoxColumn.cs: fixes signature
16249         * DataGrid.cs: calls right constructor
16250
16251 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
16252
16253         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
16254         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
16255         * GridTableStylesCollection.cs: implements GridTableStylesCollection
16256         * DataGridTableStyle.cs: implements DataGridTableStyle
16257         * DataGridBoolColumn.cs: implements DataGridBoolColumn
16258         * DataGridTextBox.cs: implements DataGridTextBox
16259         * DataGridColumnStyle.cs: implements DataGridColumnStyle
16260
16261 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
16262
16263         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
16264
16265 2005-03-29  Peter Bartok  <pbartok@novell.com>
16266
16267         * Application.cs:
16268           - Properly implemented CompanyName property
16269           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
16270             returns a path that includes CompanyName, ProductName and
16271             Version (fixes bug #70330)
16272
16273 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
16274
16275         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
16276           fixes bug #72588.
16277
16278 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16279
16280         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
16281         
16282           - Added ReadOnly CheckBox
16283           - Further refactoring: moved some code from Open-/SaveFileDialog
16284             to FileDialog
16285
16286 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
16287
16288         * OpenFileDialog.cs: Fixed CheckFileExists
16289         * FileDialog.cs:
16290           Moved FileView and DirComboBox outside FileDialog class.
16291           They can now be used outside FileDialog
16292
16293 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16294
16295         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
16296         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
16297
16298 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
16299
16300         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16301           - Added missing CreatePrompt property in SaveDialog
16302           - Overall SaveDialog handling should be better now
16303           - Added non standard ShowHiddenFiles property
16304           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
16305           - Added InitialDirectory and RestoreDirectory support
16306
16307 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
16308
16309         * FileDialog.cs: Made dirComboBox usable
16310
16311 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
16312
16313         * FileDialog.cs: Added Filter support (case sensitiv)
16314
16315 2005-03-24  Jackson Harper  <jackson@ximian.com>
16316
16317         * TabControl.cs: Need a couple more pixels for the lines.
16318
16319 2005-03-23  Jackson Harper  <jackson@ximian.com>
16320
16321         * TabControl.cs: Give the tab page focus when it is selected.
16322
16323 2005-03-23  Jackson Harper  <jackson@ximian.com>
16324
16325         * TabControl.cs: Account for the drawing of tabs borders when
16326         invalidating. If the slider was clicked dont do click detection on
16327         the tabs.
16328
16329 2005-03-23  Jackson Harper  <jackson@ximian.com>
16330
16331         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
16332
16333 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
16334
16335         * CategoryGridEntry.cs: Added
16336         * GridItem.cs: Added helper properties
16337         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
16338         * GridEntry.cs: Updated code for collection
16339         * PropertyGrid.cs: Cleaned up some formatting
16340         * PropertyGridView.cs: Added drop down functionality for enums.
16341         * GridItemCollection.cs: Added enumerator logic
16342         * PropertyGridEntry.cs: Added
16343
16344 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
16345
16346         * FileDialog.cs:
16347           - Removed unnecessary commented code
16348           - Fixed handling for entering the filename manually in the combobox
16349
16350 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
16351
16352         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
16353
16354 2005-03-18  Peter Bartok  <pbartok@novell.com>
16355
16356         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
16357           them being touching the border
16358
16359 2005-03-18  Peter Bartok  <pbartok@novell.com>
16360
16361         * TextControl.cs: Quick hack to center text better
16362
16363 2005-03-18  Peter Bartok  <pbartok@novell.com>
16364
16365         * ControlPaint.cs:
16366           - Don't throw NotImplemented exceptions, just print a notice once
16367             instead (requested by Miguel). This makes running existing SWF
16368             apps a bit easier
16369         * Control.cs:
16370           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
16371           - Added context menu trigger on right click
16372         * Panel.cs: Trigger invalidate on resize
16373         * StatusBar.cs:
16374           - Removed old double-buffer drawing
16375           - Added ResizeRedraw style to force proper update of statusbar
16376         * ListView.cs:
16377           - Removed debug output
16378         * ThemeWin32Classic.cs:
16379           - Fixed drawing of status bar, now draws Text property if there
16380             are no defined panels
16381
16382 2005-03-18  Jackson Harper  <jackson@ximian.com>
16383
16384         * ImageList.cs: When the image stream is set pull all the images
16385         from it.
16386         * ImageListStreamer.cs: Implement reading image list streams.
16387
16388 2005-03-18  Peter Bartok  <pbartok@novell.com>
16389
16390         * ThemeWin32Classic.cs (DrawPictureBox):
16391           - Fixed calculations for centered drawing
16392           - Fixed drawing for normal mode, not scaling the image on normal
16393
16394 2005-03-18  Peter Bartok  <pbartok@novell.com>
16395
16396         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
16397           textbox
16398         * FileDialog.cs:
16399           - Made Open/Save button the accept button for FileDialog
16400           - Tied the cancel button to the IButtonControl cancel button
16401           - Save/Open now properly builds the pathname
16402           - Now handles user-entered text
16403           - Preventing crash on right-click if no item is selected
16404           - Fixed Text property, now uses contents of textbox
16405           - Fixed SelectedText property, now just returns the text part that
16406             is selected in the text box
16407
16408 2005-03-18  Jackson Harper  <jackson@ximian.com>
16409
16410         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
16411         rect, make sure to de-adjust the interior rect after drawing the
16412         tab text.
16413
16414 2005-03-18  Peter Bartok  <pbartok@novell.com>
16415
16416         * MenuAPI.cs: Remove menu *before* executing selected action to
16417           prevent the menu from 'hanging around'
16418           
16419 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
16420
16421         * XplatUIOSX.cs: Implemented WorkingArea property
16422
16423 2005-03-17  Peter Bartok  <pbartok@novell.com>
16424
16425         * XplatUIX11.cs: Fixed menu coord calculations
16426         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
16427           for calculating offsets
16428
16429 2005-03-17  Peter Bartok  <pbartok@novell.com>
16430
16431         * Hwnd.cs: Do not consider menu presence for default client
16432           rectangle location/size
16433         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
16434           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
16435           translation functions
16436         * FileDialog.cs: Fixed (what I presume is a) typo
16437
16438 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
16439
16440         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
16441           X access (avoids X-Async errors)
16442
16443 2005-03-16  Jackson Harper  <jackson@ximian.com>
16444
16445         * TabControl.cs: Raise the SelectedIndexChanged event.
16446
16447 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
16448
16449         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
16450           - Removed vertical ToolBar and replaced it with a custom panel
16451             (desktop and home button already work)
16452           - Added Help button (some controls get resized or relocated then)
16453           - Draw correct text depending on Open or Save.
16454           - Fixed some typos...
16455
16456 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
16457
16458         * ScrollBar.cs:
16459           - Only change Maximum and Minimum when need it (bug fix)
16460
16461 2005-03-15  Peter Bartok  <pbartok@novell.com>
16462
16463         * Form.cs: Use Handle for icon, to trigger creation if
16464           the window does not yet exist
16465         * Control.cs:
16466           - CanSelect: Slight performance improvement
16467           - Focus(): Preventing possible recursion
16468           - Invalidate(): Removed ControlStyle based clear flag setting
16469           - WM_PAINT: fixed logic for calling OnPaintBackground
16470           - WM_ERASEBKGND: Fixed logic, added call to new driver method
16471             EraseWindowBackground if the control doesn't paint background
16472         * XplatUIWin32.cs:
16473           - Moved EraseWindowBackground() method to internal methods
16474           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
16475             is sent via SendMessage on BeginPaint call on Win32
16476         * XplatUIX11.cs:
16477           - Added EraseWindowBackground() method
16478           - No longer sends WM_ERASEBKGND on .Expose, but on call to
16479             PaintEventStart, which more closely matches Win32 behaviour
16480           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
16481           - Fixed SetFocus() to properly deal with client and whole windows
16482         * Hwnd.cs: Added ErasePending property
16483         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
16484         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
16485
16486 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
16487
16488         * XplatUIOSX.cs:
16489           - Fix hard loop when timers exist.
16490           - Fix bugs with middle and right click for 3 button mice.
16491
16492 2005-03-11  Peter Bartok  <pbartok@novell.com>
16493
16494         * XplatUIX11.cs:
16495           - get_WorkingArea: Need to call X directly, GetWindowPos only
16496             returns cached data now
16497           - Added sanity check to GetWindowPos hwnd usage
16498
16499 2005-03-11  Jackson Harper  <jackson@ximian.com>
16500
16501         * BindingManagerBase.cs: This method isn't used anymore as
16502         PullData now updates the data in the control.
16503
16504 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
16505
16506         * Form.cs: fixes menu drawing on X11
16507         * MenuAPI.cs:  fixes menu drawing on X11
16508
16509 2005-03-11  Peter Bartok  <pbartok@novell.com>
16510
16511         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
16512           from Jonathan Gilbert; should fix bug #73606
16513         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
16514           in Screen coordinates. Thanks, Jordi.
16515         * Form.cs: Added missing attribute
16516
16517 2005-03-11  Peter Bartok  <pbartok@novell.com>
16518
16519         * Form.cs:
16520           - Rudimentary Mdi support
16521           - Removed outdated FormParent code
16522           - Implemented lots of missing properties and methods, still missing
16523             transparency support
16524           - Added missing attributes
16525           - Implemented support for MaximumBounds
16526           - Added firing of various events
16527         * XplatUI.cs: Added SetIcon() method
16528         * XplatUIDriver.cs: Added SetIcon() abstract
16529         * XplatUIOSX.cs: Stubbed out SetIcon() method
16530         * XplatUIX11.cs:
16531           - Implemented SetIcon() support
16532           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
16533           - Switched to unix line endings
16534         * XplatUIWin32.cs:
16535           - Made POINT internal so for can access it as part of MINMAX
16536           - Implemented SetIcon() support
16537           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
16538             native Mdi support again, might have to go managed)
16539         * Control.cs: Now fires the StyleChanged event
16540         * MdiClient.cs: Added; still mostly empty
16541
16542 2005-03-10  Peter Bartok  <pbartok@novell.com>
16543
16544         * SaveFileDialog.cs: Added emtpy file
16545
16546 2005-03-08  Peter Bartok  <pbartok@novell.com>
16547
16548         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
16549           in turn triggers OnCreateContro) when creating a handle for the
16550           first time.
16551         * TextControl.cs: Fixed endless loop in certain cases when
16552           replacing the current selection
16553
16554 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
16555
16556         * ScrollBar.cs:
16557           - Honors NewValue changes in Scroll events allowing apps to change it
16558           - Adds First and Last Scroll events
16559           - Fixes Thumb events
16560
16561 2005-03-07  Peter Bartok  <pbartok@novell.com>
16562
16563         * Hwnd.cs: Added DefaultClientRectangle property
16564         * XplatUI.cs: Now using the X11 driver Where() method, which provides
16565           more detailed debug information
16566         * XplatUIX11.cs:
16567           - Fixed size-change feedback loop, where we would pull an old size
16568             off the queue and mistakenly change our window's size to an
16569             earlier value
16570           - Now compressing ConfigureNotify events, to reduce looping and
16571             redraw issues
16572         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
16573           is called
16574
16575 2005-03-07  Jackson Harper  <jackson@ximian.com>
16576
16577         * Binding.cs: Push data pushes from data -> property. Check if the
16578         property is readonly when attempting to set it.
16579
16580 2005-03-07  Jackson Harper  <jackson@ximian.com>
16581
16582         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
16583         instead of IsSubclassOf. Pulling data now sets the value on the
16584         control.
16585         * PropertyManager.cs:
16586         * CurrencyManager.cs: Just need to pull data when updating now,
16587         because PullData will set the value on the control.
16588
16589 2005-03-04  Jackson Harper  <jackson@ximian.com>
16590
16591         * Binding.cs: Implement data type parsing and converting on pulled
16592         data. TODO: Are there more ways the data can be converted?
16593
16594 2005-03-04  Jackson Harper  <jackson@ximian.com>
16595
16596         * Binding.cs: Support <Property>IsNull checks. Also bind to the
16597         controls Validating method so we can repull the data when the
16598         control loses focus.
16599
16600 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
16601
16602         * ColumnHeader.cs:
16603           - Fixes null string format
16604           
16605         * ListView.cs:
16606           - Adds enum type checks
16607           - Fixes redrawing and recalc need after changing some properties
16608           - Fixes on focus_item set after the event
16609           - Fixes adding columns after the control has been created
16610           
16611         * ThemeWin32Classic.cs:
16612           - Fixes CheckBox focus rectangle
16613           - Fixes ColumnHeader drawing
16614
16615
16616 2005-03-03  Jackson Harper  <jackson@ximian.com>
16617
16618         * Binding.cs: Bind to <Property>Changed events so we can detect
16619         when properties are changed and update the data.
16620
16621 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
16622
16623         * ImageList.cs:
16624           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
16625           - Fixes ImageList constructor with ImageList container
16626           - Fixes image scaling (wrong parameters at DrawImage)
16627
16628 2005-02-02  Jackson Harper  <jackson@ximian.com>
16629
16630         * Binding.cs: Make property searches case-insensitive. Eliminate
16631         some duplicated code.
16632
16633 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
16634
16635         * ComboBox.cs:
16636                 - Handle focus event
16637                 - Fix scrollbar events
16638                 - Discard highlighted item if remove it
16639                 - Fixes SelectedItem with strings
16640
16641 2005-03-01  Peter Bartok  <pbartok@novell.com>
16642
16643         * Control.cs:
16644           - Fixed Visible property, now follows (once again) parent chain
16645             to return false if any control in the chain is visible=false
16646           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
16647           - Fixed several places where is_visible instead of Visible was used
16648           - Implemented FIXME related to focus selection when setting focused
16649             control to be invisible
16650
16651         * XplatUIWin32.cs: Now using proper method to find out if window is
16652           visible. Thanks to Jordi for pointing it out
16653
16654 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
16655
16656         * ComboBox.cs: show/hide scrollbar instead of creating it
16657
16658 2005-02-27  Jackson Harper  <jackson@ximian.com>
16659
16660         * CurrencyManager.cs: Add PositionChanged stuff.
16661
16662 2005-02-27  Peter Bartok  <pbartok@novell.com>
16663
16664         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
16665         * XplatUIOSX.cs: Added GetMenuOrigin() stub
16666         * XplatUIWin32.cs: Implemented GetMenuOrigin()
16667         * XplatUIX11.cs:
16668           - Implemented GetMenuDC()
16669           - Implemented GetMenuOrigin()
16670           - Implemented ReleaseMenuDC()
16671           - Implemented generation of WM_NCPAINT message
16672           - Implemented generation and handling of WM_NCCALCSIZE message
16673         * Form.cs: Added debug helper message for Jordi's menu work
16674         * Hwnd.cs:
16675           - Modified ClientRect property; added setter, fixed getter to handle
16676             setting of ClientRect
16677           - Added MenuOrigin property
16678
16679 2005-02-26  Peter Bartok  <pbartok@novell.com>
16680
16681         * XplatUIX11.cs:
16682           - Destroys the caret if a window that's being destroyed contains it
16683           - Ignores expose events coming from the X11 queue for windows that
16684             already are destroyed
16685           - Now uses the proper variable for handling DestroyNotify, before we
16686             marked the wrong window as destroyed
16687           - Improved/added some debug output
16688
16689 2005-02-26  Peter Bartok  <pbartok@novell.com>
16690
16691         * X11Keyboard.cs: Fixes to work on 64bit systems
16692
16693 2005-02-26  Peter Bartok  <pbartok@novell.com>
16694
16695         * Control.cs:
16696           - Now calling OnHandleDestroyed from DestroyHandle()
16697             instead of Dispose()
16698           - Removed bogus call to controls.Remove() from DestroyHandle()
16699
16700 2005-02-26  Peter Bartok  <pbartok@novell.com>
16701
16702         * Control.cs: Properly destroy child windows when our handle is
16703           destroyed
16704
16705 2005-02-25  Peter Bartok  <pbartok@novell.com>
16706
16707         * XplatUI.cs:
16708           - Added 'DriverDebug' define to allow tracing XplatUI API calls
16709           - Alphabetized Static Methods and Subclasses
16710
16711         * XplatUIX11.cs:
16712           - Added XException class to allow custom handling of X11 exceptions
16713           - Created custom X11 error handler, tied into XException class
16714           - Added support for MONO_XEXCEPTIONS env var to allow the user
16715             to either throw an exception on X errors or continue running
16716             after displaying the error
16717           - Added handling of DestroyNotify message
16718           - Added handler for CreateNotify message (still disabled)
16719           - Improved (tried to at least) Where method to provide file and lineno
16720         * X11Structs.cs:
16721           - Added XErrorHandler delegate
16722           - Added XRequest enumeration (to suppor translation of errors)
16723
16724 2005-02-25  Jackson Harper  <jackson@ximian.com>
16725
16726         * PropertyManager.cs: Implement editing features
16727         * CurrencyManager.cs:
16728         * Binding.cs: First attempt at UpdateIsBinding
16729         * BindingManagerBase.cs: Call UpdateIsBinding before
16730         pushing/pulling data.
16731
16732 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
16733
16734         * MenuAPI.cs: Respect disabled items
16735         * ThemeWin32Classic.cs
16736                 - Caches ImageAttributes creation for DrawImageDisabled
16737                 - Fixes vertical menu line drawing
16738                 - Draws disabled arrows in disable menu items
16739
16740 2005-02-24  Peter Bartok  <pbartok@novell.com>
16741
16742         * Hwnd.cs:
16743           - Added UserData property to allow associating arbitrary objects
16744             with the handle
16745           - Fixed leak; now removing Hwnd references from static windows array
16746         * XplatUIWin32.cs:
16747           - Fixed Graphics leak in PaintEventEnd
16748           - Removed usage of HandleData, switched over to Hwnd class
16749         * HandleData.cs: Removed, obsoleted by Hwnd.cs
16750
16751 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16752
16753         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
16754         * ScrollBar.cs: Fixes bug
16755         * TrackBar.cs: removes death code, clipping, mimize refreshes,
16756          keyboard navigation enhancements
16757
16758 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
16759
16760         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
16761         * GroupBox.cs: Add control styles
16762         * Label.cs: Add control styles
16763         * UpDownBase.cs: Add control styles
16764         * ListBox.cs: Add control styles
16765         * XplatUIWin32.cs: Fixes wrong parameter order
16766
16767
16768 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
16769
16770         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
16771
16772 2005-02-23  Jackson Harper  <jackson@ximian.com>
16773
16774         * PropertyManager.cs: Implement property binding. This doesn't
16775         seem to work yet though as (I think) there are some bugs in
16776         System.ComponentModel.PropertyDescriptor.
16777         * BindingContext.cs: Use new PropertyManager constructor.
16778
16779 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
16780
16781         * ProgressBar.cs: use clip region in ProgressBar
16782         * ThemeWin32Classic.cs: use clip region in ProgressBar
16783
16784 2004-02-22  Jackson Harper  <jackson@ximian.com>
16785
16786         * BindingsCollection.cs: Remove some debug code.
16787
16788 2005-02-22  Jackson Harper  <jackson@ximian.com>
16789
16790         * BindingContext.cs:
16791         * ControlBindingsCollection.cs:
16792         * CurrencyManager.cs:
16793         * Binding.cs:
16794         * BindingManagerBase.cs: Initial implementation
16795         * BindingsCollection.cs: Add an internal contains method that the
16796         BindingManagerBase uses to ensure bindings aren't added twice to
16797         the collection.
16798         * PropertyManager.cs: Stubbed out.
16799         * Control.cs:
16800         * ContainerControl.cs: Hook up databinding
16801         
16802 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
16803
16804         * XplatUIOSX.cs:
16805           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
16806           Fixed Invalidate/Update chain.
16807           Fixed tons of other minor bugs (this is almost a complete rewrite).
16808
16809 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
16810
16811         * ComboBox.cs: do subcontrol creation when the control is created
16812
16813 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16814
16815         * Label.cs: fixes image drawing (image and imagelist)
16816         * ThemeWin32Classic.cs: cache brushes
16817         
16818 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16819
16820         * Form.cs: Move menu drawing code to Theme class
16821         * ComboBox.cs: Move ComboBox drawing code to Theme class
16822         * MenuItem.cs: Move menu drawing code to Theme class
16823         * MenuAPI.cs: Move menu drawing code to Theme class
16824         * ThemeWin32Classic.cs: New methods
16825         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
16826         * ListBox.cs: Move Listbox drawing code to Theme class
16827         * Theme.cs: New methods
16828
16829 2005-02-20  Peter Bartok  <pbartok@novell.com>
16830
16831         * Control.cs:
16832           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
16833             only process mnemonics on those)
16834           - Fixed event sequence for key handling; first calling
16835             ProcessKeyEventArgs now
16836         * TextBoxBase.cs:
16837           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
16838             for processing non-character keys
16839           - Fixed WM_CHAR to generate proper event sequence before processing
16840         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
16841           generation
16842
16843 2005-02-19  Peter Bartok  <pbartok@novell.com>
16844
16845         * UserControl.cs: Added TextChanged event; added attributes
16846         * SizeGrip.cs: Implemented resizing and optional display of grip
16847         * Form.cs: Fixed attribute
16848         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
16849           Changed meaning of ScrollWindow bool argument; instead of the
16850           clear attribute (which will be true usually anyway), it gives the
16851           option of moving child controls as well.
16852         * XplatUIX11.cs:
16853           - Changed to match new ScrollWindow argument
16854           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
16855             now handles the implicit parent window a WM puts around us
16856         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
16857           to work)
16858         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
16859         * TreeView.cs: Adjusted to new ScrollWindow arguments
16860
16861 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
16862
16863         * Form.cs: Menu integration with non-client area
16864         * MenuItem.cs: Menu integration with non-client area
16865         * MenuAPI.cs: Menu integration with non-client area
16866
16867 2005-02-18  Peter Bartok  <pbartok@novell.com>
16868
16869         * MethodInvoker.cs: Added
16870         * MdiLayout.cs: Added
16871         * SendKeys.cs: Started implementation
16872         * ErrorIconAlignment.cs: Added
16873
16874 2005-02-18  Peter Bartok  <pbartok@novell.com>
16875
16876         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
16877         * Form.cs: Added handling for Menu-related Non-client messages
16878
16879 2005-02-17  Peter Bartok  <pbartok@novell.com>
16880
16881         * UpDownBase.cs: Fixed typo, compilation errors
16882         * DomainUpDown.cs: Fixed attribute value
16883
16884 2005-02-16  Miguel de Icaza  <miguel@novell.com>
16885
16886         * UpDownBase.cs: Attach entry events.
16887         Propagate events.
16888         Add ForeColor property, Focused, InterceptArrowKeys (interception
16889         does not work yet).
16890
16891 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
16892
16893         * Form.cs:
16894                 - Redraw non client are on Setmenu
16895                 - Calc proper menu starting point
16896
16897 2005-02-17  Peter Bartok  <pbartok@novell.com>
16898
16899         * Application.cs: Fixed message_filter check
16900
16901 2005-02-17  Peter Bartok  <pbartok@novell.com>
16902
16903         * Application.cs: Now calls registered message filters
16904         * DockStyle.cs: Fixed attribute
16905         * Form.cs: Fixed attribute
16906         * Menu.cs: Fixed attribute
16907         * ToolTip.cs: Fixed attribute
16908         * TreeNode.cs: Added missing attributes and arranged in regions
16909         * PropertyGrid.cs: Fixed signatures
16910         * TreeNodeCollection.cs: Added attributes
16911         * Splitter.cs: Added missing attributes; arranged into regions
16912         * TabPage.cs: Added missing attributes; arranged into regions
16913         * TextBoxBase.cs: Added missing attributes
16914         * TextBox.cs: Added missing attributes
16915         * ArrangeDirection.cs: Added missing attributes
16916         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
16917         * ToolBarButton.cs: Fixed attributes
16918         * AnchorStyles.cs: Fixed attribute
16919         * TrackBar.cs: Fixed attributes
16920         * TabControl.cs: Added missing attributes and arranged into regions
16921         * ToolBar.cs: Fixed attribute
16922         * StatusBar.cs: Fixed signature, organized into regions and added
16923           attributes
16924         * StatusBarPanel.cs: Fixed attributes
16925         * ContentsResizedEventArgs.cs: Implemented
16926         * ContentsResizedEventHandler.cs: Implemented
16927         * DateBoldEventArgs.cs: Implemented
16928         * DateBoldEventHandler.cs: Implemented
16929         * UpDownEventArgs.cs: Implemented
16930         * UpDownEventHandler.cs: Implemented
16931         
16932 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
16933
16934         * Form.cs: first Menu NC refactoring
16935         * MenuAPI.cs: first Menu NC refactoring
16936         
16937 2005-02-16  Peter Bartok  <pbartok@novell.com>
16938
16939         * ImeMode.cs: Added missing attributes
16940         * Menu.cs: Fixed attribute
16941         * GroupBox.cs: Fixed attribute
16942         * Label.cs: Fixed attribute
16943         * ColorDialog.cs (RunDialog): Removed TODO attribute
16944         * ComboBox.cs: Fixed attributes
16945         * ListControl.cs: Added missing attributes
16946         * PropertyGrid.cs: Fixed attributes
16947         * Control.cs: Fixed attributes
16948         * ListViewItem.cs: Added TypeConverter attribute
16949         * NotifyIcon.cs: Fixed attributes
16950         * ListView.cs: Fixed attributes
16951         * ButtonBase.cs: Fixed attribute
16952         * ImageList.cs: Added missing attributes
16953         * ContainerControl.cs: Fixed signature
16954         * CheckedListBox.cs: Fixed attribute; added missing attributes
16955         * Panel.cs: Fixed attributes
16956         * PropertyTabChangedEventArgs.cs: Added missing attribute
16957         * PropertyValueChangedEventArgs.cs: Added missing attribute
16958         * Binding.cs: Fixed attribute
16959         * ListViewItemConverter: Implemented ListViewSubItemConverter class
16960         * ListBox.cs: Fixed attribute; added missing attributes;
16961         * ScrollableControl.cs: Added missing attributes
16962         * PictureBox.cs: Added missing attributes; implemented missing property
16963         * DateTimePicker.cs: Added missing attributes
16964         * Theme.cs (ToolWindowCaptionHeight): Fixed type
16965         * MonthCalendar.cs: Fixed attributes
16966         * StatusBarPanel.cs: Added missing attributes
16967         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
16968
16969 2005-02-16  Peter Bartok  <pbartok@novell.com>
16970
16971         * TextBoxBase.cs: The previous method to enforce height yet remember
16972           the requested high was less than ideal, this is an attempt to do
16973           it better.
16974         * Control.cs: Added comment about possible problem
16975         * Copyright: Updated format
16976         * GridItemType.cs: Fixed swapped values
16977
16978 2005-02-15  Jackson Harper  <jackson@ximian.com>
16979
16980         * BaseCollection.cs: Use property so we never access an
16981         uninitialized list. Also initialize the list in the property.
16982
16983 2005-02-15  Peter Bartok  <pbartok@novell.com>
16984
16985         * GroupBox.cs (ProcessMnemonic): Implemented
16986         * Label.cs (ProcessMnemonic): Implemented
16987         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
16988           hotkeys
16989
16990 2005-02-15  Peter Bartok  <pbartok@novell.com>
16991
16992         * RadioButton.cs (ProcessMnemonic): Implemented
16993         * CheckBox.cs (ProcessMnemonic): Implemented
16994         * Control.cs:
16995           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
16996             handling
16997           - Added internal method to allow calling ProcessMnemonic from other
16998             controls
16999         * ContainerControl.cs:
17000           - Started support for handling validation chain handling
17001           - Implemented ProcessMnemonic support
17002           - Added Select() call to Active, to make sure the active control
17003             receives focus
17004         * Form.cs: Setting toplevel flag for Forms (this was lost in the
17005           FormParent rewrite)
17006         * ThemeWin32Classic.cs:
17007           - DrawCheckBox(): Fixed stringformat to show hotkeys
17008           - DrawRadioButton(): Fixed stringformat to show hotkeys
17009         * CommonDialog.cs: Removed WndProc override, not needed
17010
17011 2005-02-14  Peter Bartok  <pbartok@novell.com>
17012
17013         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
17014           missed those in the rewrite
17015
17016 2005-02-14  Miguel de Icaza  <miguel@novell.com>
17017
17018         * NumericUpDown.cs (Increment, ToString): Add.
17019         (DecimalPlaces): implement.
17020         
17021         Add attributes.
17022         
17023         * UpDownBase.cs: Add the designer attributes.
17024
17025 2005-02-13  Peter Bartok  <pbartok@novell.com>
17026
17027         * Panel.cs: Removed border_style, now in Control
17028         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
17029           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
17030
17031 2005-02-13  Peter Bartok  <pbartok@novell.com>
17032
17033         * MouseButtons.cs: Added missing attributes
17034         * XplatUIStructs.cs: Added enumeration for title styles
17035         * LeftRightAlignment.cs: Added missing attributes
17036         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
17037           it compatible with Graphics.FromHwnd()
17038         * SelectedGridItemChangedEventArgs.cs: Fixed property type
17039         * Keys.cs: Added missing attributes
17040         * SelectionRange.cs: Added missing attributes
17041         * SelectionRangeConverter.cs: Added
17042         * XplatUI.cs:
17043           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
17044             ReleaseMenuDC methods
17045           - Renamed ReleaseWindow to UngrabWindow
17046           - Added proper startup notice to allow version identification
17047         * Form.cs:
17048           - Added missing attributes
17049           - Removed FormParent concept
17050         * Label.cs: Removed border_style field, now in Control
17051         * RadioButton.cs: Now properly selects RadioButton when focus is
17052           received
17053         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
17054         * Control.cs:
17055           - Added missing attributes
17056           - Added borderstyle handling
17057           - Removed FormParent concept support
17058           - Fixed calls to XplatUI to match changed APIs
17059           - Fixed bug that would case us to use disposed Graphics objects
17060           - Removed unneeded internal methods
17061           - PerformLayout(): Fixed to handle DockStyle.Fill properly
17062           - SelectNextControl(): Fixed to properly check common parents
17063         * TextBoxBase.cs: Removed border_style field (now in Control)
17064         * MessageBox.cs:
17065           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
17066             fixed calculations for form size
17067           - Added support for localized strings and icons
17068           - Improved form size calculations, added border
17069         * ListView.cs: Removed border_style field (now in Control)
17070         * X11Structs.cs: Moved several structs from X11 driver here
17071         * X11Keyboard.cs: Changed debug message
17072         * Application.cs: Removed FormParent concept support
17073         * CommonDialog.cs:
17074           - Resetting end_modal flag
17075           - Removed FormParent concept support
17076         * NativeWindow.cs: Removed FormParent concept support
17077         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
17078           Client area and Non-Client whole window to allow support for WM_NC
17079           messages
17080         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
17081           prevent using it until it supports Hwnd as per Geoff Norton's request
17082         * ToolBar.cs: Fixed drawing, was not doing proper drawing
17083         * PictureBox.cs: Removed border_style field, now in Control
17084         * XplatUIWin32.cs: Added new driver methods
17085
17086 2005-02-12  Peter Bartok  <pbartok@novell.com>
17087
17088         * OpacityConverter.cs: Implemented
17089         * Hwnd.cs: Internal class to support drivers that need to emulate
17090           client area/non-client area window behaviour
17091
17092 2005-02-11  Peter Bartok  <pbartok@novell.com>
17093
17094         * KeysConverter.cs: Implemented
17095
17096 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
17097
17098         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
17099         * LinkLabel: Added missing attributes
17100         * MainMenu.cs: fixes ToString
17101         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
17102         * ListBox.cs: fixes event position
17103         * TrackBar.cs: adds missing attributes and events
17104         
17105 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
17106
17107         * MenuItem.cs: Use SystemInformation and bug fixes
17108         * MenuAPI.cs: Use SystemInformation and bug fixes
17109
17110 2005-02-09  Jackson Harper  <jackson@ximian.com>
17111
17112         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
17113         their keystate otherwise things like VK_MENU get stuck "on".
17114
17115 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
17116
17117         * ListBox.cs: Fixes AddRange bug
17118         
17119 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
17120
17121         * ProgressBar.cs
17122                 - Add missing attributes
17123                 - Add missing method
17124                 
17125         * CheckedListBox.cs: Added missing attributes
17126                 - Add missing attributes
17127                 - Remove extra method
17128         
17129         * ComboBox.cs: Added missing attributes
17130         * VScrollBar.cs: Added missing attributes
17131         * ScrollBar.cs:  Added missing attributes
17132         * ListBox.cs: Fixes signature, add missing consts
17133         * LinkArea.cs:   Added missing attributes
17134         
17135
17136 2005-02-08  Peter Bartok  <pbartok@novell.com>
17137
17138         * Menu.cs: Added missing attributes
17139         * MainMenu.cs: Added missing attributes
17140         * GroupBox.cs: Added missing attributes
17141         * Label.cs: Added missing attributes
17142         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
17143         * ColorDialog.cs:
17144           - Added Instance and Options properties
17145           - Added missing attributes
17146         * Cursor.cs: Made Serializable
17147         * NotifyIcon: Added missing attributes
17148         * MenuItem.cs: Added missing attributes
17149         * TextBoxBase.cs: Implemented AppendText() and Select() methods
17150         * Panel.cs: Added Missing attributes
17151         * MonthCalendar.cs: Fixed CreateParams
17152
17153 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17154         
17155         * LinkLabel.cs:
17156                 - Fixes signature
17157                 - Fixes issues with links
17158                 - Adds the class attributes
17159
17160 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
17161         
17162         * ComboBox.cs:
17163                 - Fixes button when no items available in dropdown
17164                 - Fixes repainting problems
17165                 - Adds the class attributes
17166                 
17167 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17168
17169         * XplatUIOSX.cs: Detect the menu bar and title bar height from
17170         the current theme.  Cache these on startup.
17171
17172 2005-02-07  Jackson Harper  <jackson@ximian.com>
17173
17174         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
17175         the scrollbar buttons when they are depressed.
17176
17177 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17178
17179         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
17180         Get the display size from the main displayid.  We currently dont
17181         support multiple display configurations.
17182
17183 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
17184
17185         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
17186
17187 2005-02-07  Miguel de Icaza  <miguel@novell.com>
17188
17189         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
17190
17191 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
17192
17193         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
17194
17195 2005-02-04  Jackson Harper  <jackson@ximian.com>
17196
17197         * ThemeWin32Classic.cs: Respect the clipping rect when
17198         drawing. Only fill the intersection of clips and rects so there
17199         isn't a lot of large fills.
17200         * ScrollBar.cs: Pass the correct clipping rect to the theme
17201         engine. Remove some debug code.
17202
17203 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
17204         
17205         * DateTimePicker.cs:
17206                 - Fixed crash on DateTime.Parse, use Constructor instead
17207
17208 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17209         
17210         * MenuItem.cs:
17211         * MenuAPI.cs:
17212                 - Owner draw support (MeasureItem and DrawItem)
17213
17214 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
17215         
17216         *  Menu.cs:
17217                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
17218                 - Fixes MenuItems.Add range
17219         * MenuItem.cs:
17220                 - MergeMenu and Clone and CloneMenu functions
17221
17222 2005-02-03  Jackson Harper  <jackson@ximian.com>
17223
17224         * ScrollBar.cs: Make abstract
17225         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
17226         is abstract.
17227
17228 2005-02-03  Jackson Harper  <jackson@ximian.com>
17229
17230         * ScrollBar.cs: First part of my scrollbar fixups. This removes
17231         all the unneeded refreshes and uses invalidates with properly
17232         computed rects.
17233
17234 2005-02-03  Peter Bartok  <pbartok@novell.com>
17235
17236         * ComponentModel.cs: Added
17237         * IDataGridEditingService.cs: Added
17238         * Timer.cs: Added missing attributes
17239         * ToolTip.cs: Added missing attributes
17240
17241 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
17242
17243         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
17244
17245 2005-02-03  Peter Bartok  <pbartok@novell.com>
17246
17247         * ListBox.cs: Added missing attributes
17248
17249 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
17250         
17251         * ListBox.cs:
17252                 - Fixes font height after font change
17253                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
17254                 
17255 2005-02-02  Peter Bartok  <pbartok@novell.com>
17256
17257         * HandleData.cs: Introduced static methods to allow class
17258           to be more self-contained and track it's own HandleData objects
17259         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
17260           HandleData to use new static methods
17261
17262 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
17263
17264         * Combobox.cs:
17265                 - Fixes default size and PreferredHeight
17266                 - Missing events
17267                 - ObjectCollection.Insert implementation
17268                 
17269         * ListControl.cs
17270                 - Fixes signature
17271         * ListBox.cs:
17272                 - Several fixes
17273                 - ObjectCollection.Insert implementation
17274                 - No selection after clean
17275                 - Small fixes
17276
17277 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17278
17279         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
17280
17281 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
17282
17283         * Combobox.cs:
17284                 - Caches ItemHeight calculation for OwnerDrawVariable
17285                 - Handles dropdown properly
17286                 - Fixes several minor bugs
17287
17288 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17289
17290         * ListBox.cs:
17291                 - Fixes 71946 and 71950
17292                 - Fixes changing Multicolumn on the fly
17293                 - Fixes keyboard navigation on Multicolumn listboxes
17294
17295 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17296         
17297         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
17298         crash reporter log.
17299
17300 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17301
17302         * XplatUIOSX.cs: Allow applications to actually exit.
17303
17304 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
17305
17306         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
17307         their parent at creation time rather than lazily later.  Fixes a major
17308         regression we were experiencing.
17309
17310 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
17311
17312         * ThemeWin32Classic.cs: more date time picker painting fixes
17313         * DateTimePicker.cs: more monthcalendar drop down fixes
17314         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
17315
17316 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
17317
17318         * ScrollBar.cs:
17319                 - When moving the thumb going outside the control should stop the moving
17320                 - Adds the firing of missing events
17321                 - Fixes no button show if Size is not specified
17322                 - End / Home keys for keyboard navigation
17323
17324 2005-01-30  Peter Bartok  <pbartok@novell.com>
17325
17326         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
17327           sanity check to prevent theoretical loop
17328         * XplatUIWin32.cs (SetVisible): Removed debug output
17329         * XplatUIX11.cs (SystrayChange): Added sanity check
17330         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
17331         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
17332           behaviour, valid until the X11 client window rewrite is done
17333         * TextBox.cs (ctor): Setting proper default foreground and background
17334           colors
17335
17336 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
17337
17338         * Theme: Added DrawDateTimePicker to interface
17339         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
17340         * DateTimePicker.cs: Created (still needs keys and painting code)
17341         * DateTimePickerFormat.cs: added
17342         * MonthCalendar.cs: fixed CreateParams for popup window mode
17343           
17344 2005-01-29  Peter Bartok  <pbartok@novell.com>
17345
17346         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
17347           this should also the calculations for ligher/darker
17348         * Theme.cs: Fixed defaults for ScrollBar widths/heights
17349
17350 2005-01-29  Peter Bartok  <pbartok@novell.com>
17351
17352         * ArrangeDirection.cs: Added
17353         * ArrangeStartingPositon.cs: Added
17354         * SystemInformation.cs: Implemented
17355         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17356           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
17357           used by SystemInformation class
17358         * X11Strucs.cs: Added XSizeHints structure
17359         * MenuAPI.cs:
17360           - Fixed CreateParams to make sure the menu window is always visible
17361           - TrackPopupMenu: Added check to make sure we don't draw the
17362             menu offscreen
17363
17364 2005-01-29  Peter Bartok  <pbartok@novell.com>
17365
17366         * HandleData.cs: Added method for altering invalid area
17367         * TextBoxBase.cs: Implemented TextLength
17368
17369 2005-01-28  Peter Bartok  <pbartok@novell.com>
17370
17371         * XplatUIX11.cs: Improvement over last patch, not sending
17372           the WM_PAINT directly anymore, instead we scroll any pending
17373           exposed areas and let the system pick out the WM_PAINT later
17374
17375 2005-01-28  Peter Bartok  <pbartok@novell.com>
17376
17377         * SWF.csproj: Deleted, no longer used. Instead,
17378           Managed.Windows.Forms/SWF.csproj should be used
17379         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
17380           directly, to avoid a potential race condition with the next
17381           scroll
17382
17383 2005-01-28  Peter Bartok  <pbartok@novell.com>
17384
17385         * XplatUI.cs: Made class internal
17386
17387 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
17388
17389         * CheckedListBox.cs:
17390                 - Draw focus
17391                 - Fixed Drawing
17392                 - Missing methods and events
17393
17394 2005-01-27  Peter Bartok  <pbartok@novell.com>
17395
17396         * Application.cs (Run): Don't use form if we don't have one
17397
17398 2005-01-27  Peter Bartok  <pbartok@novell.com>
17399
17400         * TextBoxBase.cs (get_Lines): Fixed index off by one error
17401
17402 2005-01-27  Peter Bartok  <pbartok@novell.com>
17403
17404         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
17405         * GridItem.cs: Added; Patch by Jonathan S. Chambers
17406         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
17407         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
17408         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
17409         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
17410         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17411         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
17412         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17413         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17414         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
17415         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
17416
17417 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
17418
17419         * Combobox.cs:
17420                 - Draw focus on Simple Combobox
17421                 - Fixes drawing issues
17422                 - fixes 71834
17423
17424 2005-01-27  Peter Bartok  <pbartok@novell.com>
17425
17426         * Form.cs:
17427           - Place window in default location, instead of hardcoded 0/0
17428           - Send initial LocationChanged event
17429         * Control.cs:
17430           - UpdateBounds after creation to find out where the WM placed us
17431           - Make sure that if the ParentForm changes location the Form
17432             is notified
17433         * XplatUIX11.cs: XGetGeometry will not return the coords relative
17434             to the root, but to whatever the WM placed around us.
17435             Translate to root coordinates before returning toplevel
17436             coordinates
17437         * XplatUIWin32.cs: Removed debug output
17438         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
17439           flag to GetWindowPos, to allow translation of coordinates on X11
17440
17441 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
17442
17443         * ListBox.cs: connect LostFocus Event
17444
17445 2005-01-27  Peter Bartok  <pbartok@novell.com>
17446
17447         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17448           XplatUIX11.cs: Extended the Systray API
17449         * Form.cs: Removed debug output
17450         * Application.cs: Fixed focus assignment, always need to call
17451           XplatUI.Activate() since Form.Activate() has rules that may
17452           prevent activation
17453         * NotifyIcon.cs: Should be complete now
17454         * ToolTip.cs: Worked around possible timer bug
17455
17456 2005-01-27  Jackson Harper  <jackson@ximian.com>
17457
17458         * TabControl.cs:
17459         - Only invalidate the effected tabs when the
17460         selected index changes. This reduces drawing and gets rid of some
17461         flicker.
17462         - Only refresh if the tabs need to be shifted, otherwise only
17463         invalidate the slider button.
17464         - On windows the tabs are not filled to right if the slider is
17465         visible.
17466         
17467 2005-01-27  Jackson Harper  <jackson@ximian.com>
17468
17469         * TabControl.cs: Only refresh on mouseup if we are showing the
17470         slider. Also only invalidate the button whose state has changed.
17471
17472 2005-01-26  Peter Bartok  <pbartok@novell.com>
17473
17474         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
17475         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
17476           and SystrayRemove() methods
17477         * XplatUIOSX.cs: Stubbed Systray methods
17478         * XplatUIX11.cs:
17479           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
17480             methods
17481           - Fixed broken XChangeProperty calls (marshalling messed up things)
17482         * X11Structs.cs: Added enums and structs required for Size hinting
17483         * NotifyIcon.cs: Added & implemented
17484
17485 2005-01-26  Jackson Harper  <jackson@ximian.com>
17486
17487         * TabControl.cs: Space vertically layed out tabs properly.
17488
17489 2005-01-26  Peter Bartok  <pbartok@novell.com>
17490
17491         * Form.cs (CreateClientParams): Always set the location to 0,0
17492           since we're a child window.
17493
17494         * Control.cs (SetVisibleCore): Always explicitly setting the location
17495           of a toplevel window, apparently X11 doesn't like to move windows
17496           while they're not mapped.
17497
17498 2005-01-26  Jackson Harper  <jackson@ximian.com>
17499
17500         * TabControl.cs: Implement FillToRight size mode with vertically
17501         rendered tabs.
17502
17503 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
17504
17505         * ControlPaint.cs, ThemeWin32Classic.cs
17506                 - Fixes DrawFocusRectangle
17507
17508 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
17509
17510         * MenuAPI.cs:
17511                 - MenuBar tracking only starts when item is first clicked
17512                 - Fixes menu hidding for multiple subitems
17513                 - Unselect item in MenuBar when item Executed
17514                 - Fixes bug 71495
17515
17516 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
17517
17518         * ListControl.cs:
17519                 - IsInputKey for ListBox
17520         * ListBox.cs:
17521                 - Focus item
17522                 - Shift and Control item selection
17523                 - Implement SelectionMode.MultiExtended
17524                 - Fixes RightToLeft
17525         * ComboBox.cs:
17526                 - IsInputKey implemented
17527                 - Do not generate OnTextChangedEdit on internal txt changes
17528                 
17529 2005-01-23  Peter Bartok  <pbartok@novell.com>
17530
17531         * AccessibleObject.cs: Partially implemented Select()
17532         * MonthCalendar.cs: Added missing attributes and events
17533         * Form.cs: Fixed CreateParams behaviour, now controls derived from
17534           form can properly override CreateParams.
17535         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
17536           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
17537           Control performs Invalidate & Update
17538         * NativeWindow (CreateHandle): Added special handling for Form
17539           and Form.FormParent classes to allow overriding of From.CreateParams
17540         * Control.cs:
17541           - ControlNativeWindow: Renamed 'control' variable to more intuitive
17542             name 'owner'
17543           - ControlNativeWindow: Added Owner property
17544           - Removed usage of Refresh() on property changes, changed into
17545             Invalidate(), we need to wait until the queue is processed for
17546             updates, direct calls might cause problems if not all vars for
17547             Paint are initialized
17548           - Added call to UpdateStyles() when creating the window, to set any
17549             styles that CreateWindow might have ignored.
17550           - Added support for Form CreateParent overrides to UpdateStyles()
17551         * MessageBox.cs: Removed no longer needed FormParent override stuff,
17552           CreateParams are now properly overridable
17553         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
17554           CreateParams are now properly overridable
17555
17556 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
17557
17558         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
17559         OnTextBoxChanged.
17560
17561         Capture LostFocus and OnTextBoxChanged.  The later introduces a
17562         recursive invocation that I have not figured out yet.
17563
17564         Reset the timer when not using (it was accumulating).
17565
17566
17567         (OnTextBoxChanged): Set UserEdit to true here to track whether the
17568         user has made changes that require validation.
17569
17570         Reset changing to avoid loops.
17571
17572 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
17573
17574         * NumericUpDown.cs: Display value at startup.
17575
17576         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
17577         ValidateEditText.
17578
17579         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
17580         filled in.  Added some basic parsing of text.
17581
17582         Still missing the OnXXX method overrides, and figuring out the
17583         events that must be emitted.
17584
17585         * UpDownBase.cs: Handle UserEdit on the Text property.
17586         
17587 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
17588
17589         * ComboBox.cs:
17590           - Fixes IntegralHeight
17591           - ToString method
17592
17593 2005-01-21  Jackson Harper  <jackson@ximian.com>
17594
17595         * TabControl.cs: Set the SelectedIndex property when SelectedTab
17596         is set so that the page visibility is updated and the tabs are
17597         sized correctly.
17598
17599 2005-01-21  Jackson Harper  <jackson@ximian.com>
17600
17601         * TabControl.cs: Use cliping rectangle for blitting. Give the
17602         theme the clipping rect so we can do clipping while
17603         drawing. Remove some debug code.
17604
17605 2005-01-21  Jackson Harper  <jackson@ximian.com>
17606
17607         * TabPage.cs: Add a new method so tab pages can force the tab
17608         control to recalculate the tab page sizes.
17609         * TabControl.cs: UpdateOwner needs to make the tab control recalc
17610         sizes.
17611
17612 2005-01-20  Jackson Harper  <jackson@ximian.com>
17613
17614         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
17615
17616 2005-01-20  Jackson Harper  <jackson@ximian.com>
17617
17618         * TreeView.cs: Set the bounds for nodes properly. They were
17619         getting screwed up when checkboxes were not enabled, but images
17620         were.
17621
17622 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
17623
17624         * ListBox.cs:
17625                 - Owner draw support
17626                 - Fixes
17627                 
17628 2005-01-20  Jackson Harper  <jackson@ximian.com>
17629
17630         * XplatUIStructs.cs: More misc keys
17631         * X11Keyboard.cs: Ignore some control keys.
17632
17633 2005-01-20  Jackson Harper  <jackson@ximian.com>
17634
17635         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
17636         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
17637
17638 2005-01-19  Peter Bartok  <pbartok@novell.com>
17639
17640         * Control.cs: Un-selecting the control when it is loosing focus
17641
17642 2005-01-19  Jackson Harper  <jackson@ximian.com>
17643
17644         * TreeView.cs: Hook up to the text controls leave event so we can
17645         end editing when the users clicks outside the text box.
17646         
17647 2005-01-19  Jackson Harper  <jackson@ximian.com>
17648
17649         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
17650         get set in the conversion array.
17651
17652 2005-01-19  Peter Bartok  <pbartok@novell.com>
17653
17654         * Application.cs (ModalRun): Added a call to CreateControl to ensure
17655           focus is properly set
17656         * Button.cs:
17657           - Added missing attributes
17658           - removed styles, those are already set in the base class
17659         * ButtonBase.cs:
17660           - Added missing attributes
17661           - Added clip window styles
17662         * CheckBox.cs: Added missing attributes
17663         * CommonDialog.cs:
17664           - FormParentWindow.CreateParams: Added required clip styles
17665         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
17666           also filters modifier keys
17667         * MessageBox.cs:
17668           - Added assignment of Accept and Cancel button to enable Enter
17669             and Esc keys in MessageBox dialogs
17670           - FormParentWindow.CreateParams: Added required clip styles
17671         * RadioButton.cs: Added missing attributes
17672         * TextControl.cs: No longer draws selection if control does not
17673           have focus
17674         * TextBoxBase.cs:
17675           - Now draws simple rectangle around test area to make it obvious
17676             there's a control. This is a hack until we properly support borders
17677           - A few simple fixes to support selections better, now erases selected
17678             text when typing, and resets selection when using movement keys
17679
17680 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
17681
17682         * UpDownBase.cs: Added some new properties.
17683
17684         * DomainUpDown.cs: Implement a lot to get my test working.
17685
17686 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17687
17688         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
17689
17690 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17691
17692         * OSXStructs (WindowAttributes): Fixed csc complaints
17693
17694 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17695
17696         * XplayUIOSX.cs:
17697           OSXStructs.cs: Initial refactor to move enums and consts into
17698           OSXStructs and use them in the driver for greater readability.
17699
17700 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
17701
17702         * XplatUIOSX.cs: Initial support for Standard Cursors.
17703         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
17704
17705 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
17706
17707         * ComboBox.cs: ability to change style when the ctrl is already
17708         created, missing methods and events, bug fixes, signature fixes
17709
17710 2005-01-19  Peter Bartok  <pbartok@novell.com>
17711
17712         * Cursors.cs (ctor): Added ctor to fix signature
17713
17714 2005-01-18  Peter Bartok  <pbartok@novell.com>
17715
17716         * Button.cs: Implemented DoubleClick event
17717         * ButtonBase.cs:
17718           - Fixed keyboard handling to behave like MS, where the press of
17719             Spacebar is equivalent to a mousedown, and the key release is
17720             equivalent to mouseup. Now a spacebar push will give the same
17721             visual feedback like a mouse click.
17722           - Added missing attributes
17723           - Added ImeModeChanged event
17724           - Added support for generating DoubleClick event for derived classes
17725         * CheckBox.cs:
17726           - Implemented DoubleClick event
17727           - Added missing attributes
17728         * CommonDialog.cs: Added missing attribute
17729         * ContextMenu.cs: Added missing attributes
17730         * RadioButton.cs:
17731           - AutoChecked buttons do not allow to be unselected when clicked
17732             (otherwise we might end up with no selected buttons in a group)
17733           - Added missing attributes
17734           - Implemented DoubleClickEvent
17735         * ThreadExceptionDialog.cs: Enabled TextBox code
17736
17737 2005-01-18  Peter Bartok  <pbartok@novell.com>
17738
17739         * Form.cs: Removed debug output
17740         * Button.cs: Added support for DoubleClick method
17741
17742 2005-01-18  Peter Bartok  <pbartok@novell.com>
17743
17744         * Form.cs:
17745           - Added method to parent window that allows triggering size
17746             calculations when a menu is added/removed
17747           - set_Menu: Cleaned up mess from early days of Form and Control,
17748             now properly triggers a recalc when a menu is added/removed
17749           - Added case to select form itself as focused form if no child
17750             controls exist
17751           - Added PerformLayout call when showing dialog, to ensure properly
17752             placed controls
17753         * Control.cs:
17754           - Select(): Made internal so Form can access it
17755           - Focus(): Only call Xplat layer if required (avoids loop), and sets
17756             status
17757         * Application.cs (Run): Removed hack and calls PerformLayout instead
17758           to trigger calculation when Form becomes visible
17759
17760 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
17761
17762         * ComboBox.cs: fixes for ownerdraw
17763
17764 2005-01-18  Peter Bartok  <pbartok@novell.com>
17765
17766         * TextControl.cs:
17767           - Sentinel is no longer static, each Document gets it's own, this
17768             avoids locking or alternatively overwrite problems when more
17769             than one text control is used simultaneously.
17770           - Switched to use Hilight and HilightText brushes for text selection
17771
17772         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
17773
17774 2005-01-18  Peter Bartok  <pbartok@novell.com>
17775
17776         * Control.cs:
17777           - Hooked up the following events:
17778                 o ControlAdded
17779                 o ControlRemoved
17780                 o HandleDestroyed
17781                 o ImeModeChanged
17782                 o ParentChanged
17783                 o TabStopChanged
17784                 o Invalidated
17785                 o SystemColorsChanged
17786                 o ParentFontChanged
17787                 o Move
17788           - Removed debug output
17789           - Added a call to the current theme's ResetDefaults when a color change
17790             is detected
17791         * Form.cs: Now setting the proper ImeMode
17792         * Theme.cs: Defined a method to force recreation of cached resources
17793           and rereading of system defaults (ResetDefaults())
17794         * ThemeWin32Classic.cs: Added ResetDefaults() stub
17795
17796 2005-01-17  Peter Bartok  <pbartok@novell.com>
17797
17798         * Control.cs: Added missing attributes
17799
17800 2005-01-17  Jackson Harper  <jackson@ximian.com>
17801
17802         * TreeNode.cs: Implement editing. Add missing properties selected
17803         and visible.
17804         * TreeView.cs: Implement node editing. Also some fixes to use
17805         Invalidate (invalid area) instead of Refresh when selecting.
17806
17807 2005-01-17  Peter Bartok  <pbartok@novell.com>
17808
17809         * Control.cs:
17810           - Implemented InvokeGotFocus() method
17811           - Implemented InvokeLostFocus() method
17812           - Implemented InvokePaint() method
17813           - Implemented InvokePaintBackground() method
17814           - Implemented InvokeClick() method
17815           - Implemented FindForm() method
17816           - Implemented RectangleToClient() method
17817           - Implemented ClientToRectangle() method
17818           - Implemented ResetBackColor() method
17819           - Implemented ResetCursor() method
17820           - Implemented ResetFont() method
17821           - Implemented ResteForeColor() method
17822           - Implemented ResetImeMode() method
17823           - Implemented ResetLeftToRight() method
17824           - Implemented ResetText() method
17825           - Implemented Scale() methods
17826           - Implemented ScaleCore() method
17827           - Implemented Update() method
17828           - Removed unused variables
17829           - Stubbed AccessibilityNotifyClients and
17830             ControlAccessibleObject.NotifyClients() methods (dunno what to do
17831             with those yet)
17832           - Now setting proper default for RightToLeft property
17833           - Fixed bug in SetClientSizeCore that would cause windows to get
17834             really big
17835           - Now sending Click/DoubleClick events
17836           - Now selecting controls when left mouse button is clicked on
17837             selectable control
17838         * AccessibleEvents.cs: Added
17839         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
17840         * XplatUIOSX.cs: Stubbed UpdateWindow() method
17841         * XplatUIWin32.cs: Implemented UpdateWindow() method
17842         * XplatUIX11.cs: Implemented UpdateWindow() method
17843         * Form.cs: Removed stray semicolon causing CS0162 warning
17844         * ThemeWin32Classic.cs: Fixed unused variable warnings
17845         * ScrollableControl.cs: Now calls base method for ScaleCore
17846         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
17847           style to avoid interference with internal click handler (which is
17848           different than standard Control click handling)
17849         * RadioButton.cs:
17850           - Now unchecks all sibling radio buttons when control is
17851             selected (Fixes #68756)
17852           - Removed internal tabstop variable, using the one inherited from
17853             Control
17854
17855 2005-01-17  Jackson Harper  <jackson@ximian.com>
17856
17857         * NavigateEventArgs.cs: Fix base type.
17858         * LinkLabel.cs: Sig fix
17859         
17860 2005-01-17  Jackson Harper  <jackson@ximian.com>
17861
17862         * TreeView.cs: Only invalidate the effected nodes bounds when
17863         selecting nodes.
17864
17865 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17866
17867         * XplatUIWin32.cs: fixes Win32 marshaling
17868         * XplatUIX11.cs: fixes method signature
17869
17870 2005-01-17  Peter Bartok  <pbartok@novell.com>
17871
17872         * XplatUIX11.cs: Clean up resources when we no longer need them
17873
17874 2005-01-17  Peter Bartok  <pbartok@novell.com>
17875
17876         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
17877           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
17878           and DestroyCursor() methods.
17879         * Cursor.cs: Partially implemented, now supports standard cursors;
17880           still contains some debug code
17881         * Cursors.cs: Implemented class
17882         * Control.cs:
17883           - WndProc(): Added handling of WM_SETCURSOR message, setting the
17884             appropriate cursor
17885           - Implemented Cursor property
17886           - Replaced break; with return; more straightforwar and possibly
17887             faster
17888           - Now properly setting the result for WM_HELP
17889         * X11Structs.cs: Added CursorFontShape enum
17890         * XplatUIStructs.cs:
17891           - Added StdCursor enum (to support DefineStdCursor() method)
17892           - Added HitTest enum (to support sending WM_SETCURSOR message)
17893         * XplatUIX11.cs:
17894           - Now sends the WM_SETCURSOR message
17895           - Implemented new cursor methods
17896         * XplatUIOSX.cs: Stubbed new cursor methods
17897         * XplatUIWin32.cs:
17898           - Implemented new cursor methods
17899           - Added GetSystemMetrics function and associated enumeration
17900
17901 2005-01-15  Peter Bartok  <pbartok@novell.com>
17902
17903         * Control.cs:
17904           - WndProc(): Now handles EnableNotifyMessage
17905           - SelectNextControl(): Fixed bug where if no child or sibling
17906             controls exist we looped endlessly
17907
17908 2005-01-14  Jackson Harper  <jackson@ximian.com>
17909
17910         * TreeView.cs: Recalculate the tab pages when a new one is added
17911         so that the proper bounding rects are created.
17912
17913 2005-01-14  Jackson Harper  <jackson@ximian.com>
17914
17915         * TreeView.cs: Draw a gray box instead of a grip in the lower
17916         right hand corner when there are both horizontal and vertical
17917         scroll bars.
17918
17919 2005-01-14  Jackson Harper  <jackson@ximian.com>
17920
17921         * Control.cs: When erasing backgrounds use FromHwnd instead of
17922         FromHdc when there is a NULL wparam. This occurs on the X driver.
17923         * XplatUIX11.cs: Set the wparam to NULL.
17924
17925 2005-01-13  Jackson Harper  <jackson@ximian.com>
17926
17927         * PictureBox.cs: Implement missing methods (except ToString, need
17928         to test that on windows) and events. When visibility is changed we
17929         need to redraw the image because the buffers are killed. When size
17930         is changed refresh if the sizemode needs it.
17931
17932 2005-01-13  Peter Bartok  <pbartok@novell.com>
17933
17934         * Control.cs (SelectNextControl): Was using wrong method to select
17935           a control
17936
17937 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17938
17939         * ComboBox.cs: fixes dropstyle
17940
17941 2005-01-13  Peter Bartok  <pbartok@novell.com>
17942
17943         * Form.cs:
17944           - Implemented Select() override
17945           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
17946           - Now sets keyboard focus on startup
17947         * Control.cs (SelectNextControl): Now properly handles directed=true
17948         * TextBoxBase.cs:
17949           - WndProc: Now passes tab key on to base if AcceptTabChar=false
17950           - Added (really bad) focus rectangle (mostly for testing)
17951         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
17952           to enforce redraw on focus changes
17953         * ContainerControl.cs:
17954           - Fixed detection of Shift-Tab key presses
17955           - Fixed traversal with arrow keys
17956         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
17957           gonna keep this or if it's complete yet
17958         
17959 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
17960
17961         * ComboBox.cs: missing properties, fixes
17962
17963 2005-01-13  Peter Bartok  <pbartok@novell.com>
17964
17965         * Panel.cs (ctor): Setting Selectable window style to off
17966         * Splitter.cs (ctor): Setting Selectable window style to off
17967         * GroupBox.cs (ctor): Setting Selectable window style to off
17968         * Label.cs (ctor): Setting Selectable window style to off
17969
17970 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
17971
17972         * UpDownBase.cs (InitTimer): If the timer has been already
17973         created, enable it.
17974
17975         Use a TextBox instead of a Label.
17976
17977 2005-01-12  Jackson Harper  <jackson@ximian.com>
17978
17979         * TreeView.cs: Refresh the tree after sorting the nodes. Always
17980         draw the connecting node lines (when ShowLines is true).
17981         * TreeNode.cs: The nodes index can now be updated. This is used
17982         when a node collection is sorted.
17983         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
17984         insert or an existing unsorted node collection can be sorted.
17985         
17986 2005-01-12  Peter Bartok  <pbartok@novell.com>
17987
17988         * ContainerControl.cs: Implemented ProcessDialogKeys()
17989
17990 2005-01-12  Peter Bartok  <pbartok@novell.com>
17991
17992         * Control.cs:
17993           - Implemented SelectNextControl() method
17994           - Several focus related bug fixes
17995           - Fixed Docking calculations to match MS documentation and
17996             behaviour
17997
17998 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
17999
18000         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
18001         bug fixes
18002
18003 2005-01-12  Peter Bartok  <pbartok@novell.com>
18004
18005         * Control.cs:
18006           - Fixed broken Contains() method
18007           - Implemented GetNextControl() method. Finally. This is the pre-
18008             requisite for focus handling.
18009
18010 2005-01-12  Peter Bartok  <pbartok@novell.com>
18011
18012         * OSXStrucs.cs: Added
18013
18014 2005-01-12  Peter Bartok  <pbartok@novell.com>
18015
18016         * XplatUIWin32.cs:
18017           - Removed PeekMessageFlags
18018           - Implemented SetWindowStyle() method
18019         * XplatUIStructs.cs: Added PeekMessageFlags
18020         * X11Structs: Added missing border_width field to XWindowChanges struct
18021         * XplatUIX11.cs:
18022           - PeekMessage: Now throws exception if flags which are not yet
18023             supported are passed
18024           - Implemented SetWindowStyle() method
18025           - Fixed SetZOrder to handle AfterHwnd properly
18026         * XplatUI.cs: Added SetWindowStyle() method
18027         * XplatUIDriver.cs: Added SetWindowStyle() abstract
18028         * Control.cs:
18029           - Implemented UpdateStyles() method
18030           - Implemented UpdateZOrder() method
18031         * XplatUIOSX.cs: Added SetWindowStyle() stub
18032
18033 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
18034
18035         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
18036         button mouse).
18037
18038
18039 2005-01-11  Jackson Harper  <jackson@ximian.com>
18040
18041         * TreeView.cs: Still need to draw lines to siblings even if out of
18042         the current node is out of the clip.
18043
18044 2005-01-11  Jackson Harper  <jackson@ximian.com>
18045
18046         * TreeView.cs: When setting the hbar/vbar/grip position use
18047         SetBounds so that perform layout is only called once. Also suspend
18048         and resume layout so layout is only done once for all controls.
18049         - Removed some debug fluff
18050         * SizeGrip.cs: Call base implmentation in overriding methods.
18051         - When visibility is changed the drawing buffers are killed so we
18052         need to redraw.
18053
18054 2005-01-11  Jackson Harper  <jackson@ximian.com>
18055
18056         * TreeView.cs: Calculate the open node count while drawing. This
18057         saves us an entire tree traversal for every paint operation. Use
18058         a member var for the open node count so less vars are passed around.
18059
18060 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
18061
18062         * MonthCalendar.cs:
18063         - fixed selection to use mousemove, not mouse polling on timer
18064         * ThemeWin32Classic.cs
18065         - removed redundant unused variable "no_more_content"
18066         
18067 2005-01-11  Peter Bartok  <pbartok@novell.com>
18068
18069         * XplatUIX11.cs (DoEvents): Needs to return when no more events
18070           are pending, so it now calls PeekMessage instead of GetMessage;
18071           implemented a incomplete version of PeekMessage
18072         
18073 2005-01-11  Peter Bartok  <pbartok@novell.com>
18074
18075         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
18076           I18n issues
18077         * TextBoxBase.cs: Added sending of TextChanged event
18078
18079 2005-01-10  Jackson Harper  <jackson@ximian.com>
18080
18081         * TreeView.cs: Try not to draw outside the clipping rectangle on
18082         each node element.
18083
18084 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
18085
18086         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
18087
18088 2005-01-10  Jackson Harper  <jackson@ximian.com>
18089
18090         * TreeView.cs:
18091         - Implement fast scrolling. Now only the newly
18092         exposed nodes are drawn and the old image is moved using the
18093         XplatUI::ScrollWindow method.
18094         - Factor in height of nodes when calculating whether or not the
18095         node is in the clipping rect.
18096
18097 2005-01-10  Jackson Harper  <jackson@ximian.com>
18098
18099         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
18100
18101 2005-01-10  Peter Bartok  <pbartok@novell.com>
18102
18103         * Application.cs: Added temporary hack to resolve all our resize
18104           required issues on startup. This will get fixed properly at
18105           some point in the future
18106
18107 2005-01-10  Jackson Harper  <jackson@ximian.com>
18108
18109         * SizeGrip.cs: New internal class that is used as a sizing
18110         grip control...hence the name.
18111
18112 2005-01-10  Peter Bartok  <pbartok@novell.com>
18113
18114         * Control.cs: Implemented proper TabIndex handling, now assigning
18115           a tabindex when a control is added to a container
18116         * GroupBox.cs (ctor): Now sets the Container style bit, required
18117           for Control.GetNextControl()
18118
18119 2005-01-09  Jackson Harper  <jackson@ximian.com>
18120
18121         * TextBoxBase.cs: Clear window when scrolling (fixes build).
18122
18123 2005-01-09  Peter Bartok <pbartok@novell.com>
18124
18125         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
18126           XplatUIX11.cs: Added ability to control ScrollWindow expose and
18127           an overload for ScrollWindow to allow only scrolling a rectangle
18128
18129 2005-01-09  Peter Bartok <pbartok@novell.com>
18130
18131         * Form.cs:
18132           - Implemented SetDesktopBounds method
18133           - Implemented SetDesktopLocation method
18134
18135 2005-01-08  Jackson Harper  <jackson@ximian.com>
18136
18137         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
18138         the node count has changed, this removes to VScroll::Refresh calls
18139         when drawing.
18140
18141 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
18142
18143         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
18144
18145 2005-01-07  Jackson Harper  <jackson@ximian.com>
18146
18147         * TreeNode.cs: Just update the single node when it is
18148         checked. Don't refresh after toggling, the Expand/Collapse already
18149         handles this.
18150         * TreeView.cs: Respect clipping a little more when drawing. Try
18151         not to redraw things that don't need to be redrawn. Just hide the
18152         scrollbars when they are no longer needed instead of removing
18153         them, so they don't have to be created again and again.
18154         
18155 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
18156
18157         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
18158         coordinates to window space to place the caret properly, FIXED.
18159         Implement GetWindowState & SetWindowState
18160
18161 2005-01-06  Peter Bartok <pbartok@novell.com>
18162
18163         * Form.cs:
18164           - Implemented ClientSize property
18165           - Implemented DesktopBounds property
18166           - Implemented DesktopLocation property
18167           - Implemented IsRestrictedWindow property
18168           - Implemented Size property
18169           - Implemented TopLevel property
18170           - Implemented FormWindowState property
18171         * Control.cs:
18172           - Implemented GetTopLevel() method
18173           - Implemented SetTopLevel() method
18174         * X11Structs.cs (Atom):
18175           - Added AnyPropertyType definition
18176           - Added MapState definiton and updated XWindowAttribute struct
18177         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
18178         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
18179         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
18180         * XplatUIWin32.cs:
18181           - Implemented GetWindowState() and SetWindowState() methods
18182           - Fixed Win32GetWindowLong return type
18183         * XplatUIX11.cs:
18184           - Introduced central function for sending NET_WM messages
18185           - Implemented GetWindowState() and SetWindowState() methods
18186         * TextBoxBase.cs (set_Lines):
18187           - Now uses Foreground color for text added via Text property (Duh!)
18188           - Added code to remember programmatically requested size (fixes
18189             behaviour when Multiline is set after Size)
18190           - Added AutoSize logic
18191
18192 2005-01-06  Jackson Harper  <jackson@ximian.com>
18193
18194         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
18195
18196 2005-01-06  Jackson Harper  <jackson@ximian.com>
18197
18198         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
18199         set to less then 0.
18200
18201 2005-01-06  Jackson Harper  <jackson@ximian.com>
18202
18203         * ScrollableControl.cs: Lazy init the scrollbars.
18204         
18205 2005-01-06  Jackson Harper  <jackson@ximian.com>
18206
18207         * Theme.cs: Speed up getting pens and solid brushes, by using
18208         their ARGB as a hash instead of tostring and not calling Contains.
18209
18210 2005-01-06  Peter Bartok <pbartok@novell.com>
18211
18212         * Form.cs:
18213           - Implemented OnActivated and OnDeactivate event trigger
18214           - Implemented Activate() method
18215           - Fixed ShowDialog() to activate the form that was active before
18216             the dialog was shown
18217         * XplatUIX11.cs:
18218           - Added global active_window var that tracks the currently active
18219             X11 window
18220           - Now always grabs Property changes from the root window to always
18221             catch changes on the active window property
18222           - Added code to PropertyNotify handler to send Active/Inactive
18223             messages when state changes. This puts X11 and Win32 en par on
18224             WM_ACTIVATE notifications (except for double notifications when
18225             the user clicks away from our modal window to another one of our
18226             windows)
18227
18228 2005-01-05  Jackson Harper  <jackson@ximian.com>
18229
18230         * ImageList.cs: Implment ctor
18231
18232 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18233
18234         * XplatUIOSX.cs: Implement Activate/SetTopmost
18235
18236 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18237
18238         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
18239
18240 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
18241
18242         * XplatUIOSX.cs: Implement GetActive/SetFocus.
18243
18244 2005-01-05  Peter Bartok <pbartok@novell.com>
18245
18246         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
18247           XplatUIOSX.cs: Added GetActive method to return the currently
18248           active window for the application (or null, if none is active)
18249         * Form.cs:
18250           - Implemented ActiveForm
18251           - Commented out owner assignment for modal dialogs (causes problems
18252             on Win32, since the owner will be disabled)
18253           - Reworked some Active/Focus handling (still incomplete)
18254         * CommonDialog.cs: Commented out owner assignment for modal dialogs
18255           (causes problems on Win32, since the owner will be disabled)
18256         * IWin32Window: Added ComVisible attribute
18257
18258 2005-01-05  Peter Bartok <pbartok@novell.com>
18259
18260         * ToolTip.cs (WndProc): Enable setting focus now that we have the
18261           required XplatUI functions.
18262
18263 2005-01-05  Peter Bartok <pbartok@novell.com>
18264
18265         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
18266           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
18267           to implement focus and activation handling; still incomplete and
18268           with debug output
18269
18270 2005-01-04  Peter Bartok <pbartok@novell.com>
18271
18272         * TextBoxBase.cs: Changed access level for Document property to
18273           match switch to internal for TextControl
18274
18275 2005-01-04  Peter Bartok <pbartok@novell.com>
18276
18277         * AccessibleObject: Added ComVisible attribute
18278
18279 2005-01-04  Jackson Harper  <jackson@ximian.com>
18280
18281         * X11Keyboard.cs: Remove unneeded var.
18282
18283 2005-01-04  Jackson Harper  <jackson@ximian.com>
18284
18285         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
18286         but PAINT.
18287         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
18288         ClientMessage. This makes apps exit cleanly (more often).
18289         
18290 2005-01-04  Jackson Harper  <jackson@ximian.com>
18291
18292         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
18293         handling focus, return correct colors and fonts,
18294         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
18295         handle selection, horizontal scrolling, and mouse interaction.
18296
18297 2005-01-04  Peter Bartok <pbartok@novell.com>
18298
18299         * ICommandExecutor.cs: Added
18300         * IDataGridColumnStyleEditingNotificationService.cs: Added
18301         * IFeatureSupport.cs: Added
18302         * IFileReaderService.cs: Added
18303         * IDataObject.cs: Added ComVisible attribute
18304         * AmbientProperties.cs: Added
18305         * BaseCollection.cs: Added missing attributes
18306         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
18307         * BaseCollection.cs: Added missing attributes
18308         * Binding.cs: Added TypeConverter attribute
18309         * BindingContext.cs: Added DefaultEvent attribute
18310         * BindingsCollection.cs: Added DefaultEvent attribute
18311         * Button.cs: Added DefaultValue attribute
18312         * DragEventArgs.cs: Added ComVisible attribute
18313         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
18314         * KeyEventArgs.cs: Added ComVisible attribute
18315         * KeyPressEventArgs.cs: Added ComVisible attribute
18316         * MouseEventArgs.cs: Added ComVisible attribute
18317         * NavigateEventArgs.cs: Added
18318         * NavigateEventHandler.cs: Added
18319         * FeatureSupport.cs: Added
18320         * OSFeature.cs: Added
18321         * Theme.cs: Added abstract Version property to support OSFeature
18322         * ThemeWin32Classic.cs: Added Version property to
18323           support OSFeature.Themes
18324         * ProgressBar.cs: Removed OnPaintBackground override, not required since
18325           the proper styles to avoid background drawing are set, also doesn't
18326           match MS signature
18327         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
18328         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
18329         * ScrollEventArgs.cs: Added ComVisible attribute
18330         * SplitterEventArgs.cs: Added ComVisible attribute
18331         * AccessibleSelection.cs: Added Flags attribute
18332         * Appearance.cs: Added ComVisible attribute
18333         * Border3DSide.cs: Added ComVisible attribute
18334         * Border3DStyle.cs: Added ComVisible attribute
18335         * BorderStyle.cs: Added ComVisible attribute
18336         * DragAction.cs: Added ComVisible attribute
18337         * ErrorBlinkStyle.cs: Added
18338         * ScrollEventType.cs: Added ComVisible attribute
18339         * AnchorStyles.cs: Added Editor attribute
18340         * DockStyle.cs: Added Editor attribute
18341         * HorizontalAlignment.cs: Added ComVisible attribute
18342         * HelpEventArgs.cs: Added ComVisible attribute
18343         * PaintEventArgs.cs: Added IDisposable
18344
18345 2005-01-04  Peter Bartok <pbartok@novell.com>
18346
18347         * TextControl.cs: Switched Line, LineTag and Document classes to
18348           internal
18349
18350 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
18351
18352         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
18353         Simple mode, fixes, IntegralHeight, etc.
18354
18355 2005-01-04  Peter Bartok <pbartok@novell.com>
18356
18357         * TextBoxBase.cs: Using proper font variable now
18358
18359 2005-01-04  Peter Bartok <pbartok@novell.com>
18360
18361         * Form.cs (ShowDialog): Set parent to owner, if provided
18362         * GroupBox.cs: Removed unused vars
18363         * TextControl.cs:
18364           - Added GetHashCode() for Document and LineTag classes
18365           - Removed unused variables
18366           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
18367             to allow translation between continuous char position and line/pos
18368         * CheckBox.cs: Removed vars that are provided by base class
18369         * RadioButton.cs: Removed vars that are provided by base class, added
18370           new keyword where required
18371         * LinkLabel.cs: Added new keyword where required
18372         * Control.cs (WndProc): Removed unused variable
18373         * TextBoxBase.cs:
18374           - Finished SelectionLength property
18375           - Implemented SelectionStart property
18376           - Implemented Text property
18377           - Removed unused vars
18378         * MessageBox.cs: Added new keyword where required
18379         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
18380           WndProc signature
18381         * MenuAPI.cs: Added new keyword where required
18382         * ButtonBase.cs: Removed vars that are provided by base class, added
18383           new keyword where required
18384         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
18385           argument to double, to allow compiling with csc 2.0 (Atsushi ran
18386           into this)
18387         * Application.cs (Run): Now triggers the ThreadExit event
18388         * CommonDialog.cs: Added new keyword where required; now properly sets
18389           parent (owner) for dialog
18390         * XplatUIX11.cs: Commented out unused vars
18391         * StatusBar.cs: Fixed signature for Text property
18392         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
18393
18394 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
18395
18396         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
18397         TrackBar.cs, MonthCalendar.cs: remove unused vars
18398
18399 2005-01-03  Jackson Harper  <jackson@ximian.com>
18400
18401         * ThemeWin32Classic.cs:
18402         * X11Keyboard.cs: Remove unused vars.
18403
18404 2005-01-03  Peter Bartok  <pbartok@novell.com>
18405
18406         * TextBox.cs:
18407           - set_Text: Tied into TextControl
18408           - set_TextAlignment: Tied into TextControl
18409         * TextControl.cs:
18410           - Added alignment properties and implemented alignment handling
18411             and drawing (still has a bug, not generating proper expose events)
18412           - Added new Line() constructor to allow passing the line alignment
18413           - Fixed selection setting, properly handling end<start now
18414           - Added aligment considerations to RecalculateDocument()
18415         * TextBoxBase.cs:
18416           - Now properly enforces control height for single line controls
18417           - Added support for CharacterCasing
18418           - Added IsInputKey override
18419           - Fixed Keys.Enter logic
18420           - Added SetBoundsCore override
18421           - Fixed mouse selection handling
18422
18423 2005-01-03  Jackson Harper  <jackson@ximian.com>
18424
18425         * TreeView.cs:
18426           - Collapse and uncheck all nodes when CheckBoxes is disabled.
18427           - Checkboxes are always aligned to the bottom of the node,
18428           regardless of item height.
18429           - Use the node bounds to draw the text so we can center it when
18430           the item height is greater then the font height.
18431           - Node::Bounds are only the text part of the node.
18432         * TreeNode.cs: New method to combine collapsing and unchecking all
18433           nodes recursively.
18434
18435 2005-01-02  Jackson Harper  <jackson@ximian.com>
18436
18437         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
18438         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
18439         tree when a check is changed. TODO: Only refresh the checked node.
18440
18441 2004-12-30  Jackson Harper  <jackson@ximian.com>
18442
18443         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
18444         * TreeNode.cs: When collapsing make sure to never collapse the
18445         root node.
18446
18447 2004-12-29  Jackson Harper  <jackson@ximian.com>
18448
18449         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
18450         
18451 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
18452
18453         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
18454
18455 2004-12-28  Peter Bartok  <pbartok@novell.com>
18456
18457         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
18458           not yet assigned
18459
18460 2004-12-28  Peter Bartok  <pbartok@novell.com>
18461
18462         * Control.cs (WndProc): Added WM_HELP handler, now generates
18463           HelpRequested event
18464         * Form.cs: Added HelpButton property and required support code
18465         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
18466
18467 2004-12-28  Peter Bartok  <pbartok@novell.com>
18468
18469         * CommonDialog.cs:
18470           - Made DialogForm.owner variable internal
18471           - Added check to ensure owner form is set before setting
18472             owner properties in CreateParams
18473
18474 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
18475
18476         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
18477           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
18478           GetCursorPos.  Fix major visibility issues.  Rework the windowing
18479           system to support borderless/titleless windows (implements menus).
18480           Fix GetWindowPos.  Implement initial background color support for
18481           views.
18482
18483 2004-12-28  Peter Bartok  <pbartok@novell.com>
18484
18485         * Form.cs (get_CreateParams): Make sure we have an owner before using
18486           the owner variable. Implement proper default if no owner exists
18487
18488 2004-12-28  Peter Bartok  <pbartok@novell.com>
18489
18490         * In preparation for making Managed.Windows.Forms the default build target
18491           for System.Windows.Forms, the following stubbed files were added.
18492           Dialogs are currently being implemented by contributors and are only
18493           short-term place holders.
18494         * ColorDialog.cs: Initial check-in (minmal stub)
18495         * DataGrid.cs: Initial check-in (minimal stub)
18496         * DataGridLineStyle.cs: Initial check-in (minimal stub)
18497         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
18498         * DataGridTableStyle.cs: Initial check-in (minimal stub)
18499         * FontDialog.cs: Initial check-in (minimal stub)
18500         * FileDialog.cs: Initial check-in (minimal stub)
18501         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
18502         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
18503         * OpenFileDialog: Initial check-in (minimal stub)
18504         * IComponentEditorPageSite.cs: Initial check-in
18505         * Splitter.cs: Initial check-in (for Jackson)
18506         * SplitterEventArgs.cs: Initial check-in (for Jackson)
18507         * SplitterEventHandler.cs: Initial check-in (for Jackson)
18508         * TextBox.cs: Initial check-in; still needs some wiring to
18509           TextControl backend
18510         * Form.cs: Implemented ControlBox property
18511         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
18512         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
18513         * TextControl.cs: Added selection functionality; added todo header
18514         * TextBoxBase.cs:
18515           - Implemented Lines property
18516           - Implemented TextHeight property
18517           - Implemented SelectedText property
18518           - Implemented SelectionLength property
18519           - Implemented SelectAll method
18520           - Implemented ToString method
18521           - Removed and cleaned up some debug code
18522           - Implemented (still buggy) mouse text selection
18523
18524 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
18525
18526         * ComboBox.cs: Complete DropDownList implementation, fixes.
18527
18528 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
18529
18530         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
18531         * ComboBoxStyle.cs: ComboBoxStyle enum
18532         * ComboBox.cs: Initial work on ComboBox control
18533
18534 2004-12-21  Peter Bartok  <pbartok@novell.com>
18535
18536         * Control.cs (ctor, CreateParams): Moved setting of is_visible
18537           forward so that anything that creates a window gets the default,
18538           also no longer uses Visible property in CreateParams to avoid
18539           walking up the parent chain and possibly get the wrong visible
18540           status. Fixed IsVisible to no longer walk up to the parent.
18541
18542 2004-12-21  Peter Bartok  <pbartok@novell.com>
18543
18544         * Form.cs (ShowDialog): Unset modality for the proper window
18545  
18546 2004-12-20  Peter Bartok  <pbartok@novell.com>
18547
18548         * CommonDialog.cs: Initial check-in
18549
18550 2004-12-20  Peter Bartok  <pbartok@novell.com>
18551
18552         * Control.cs (Visible): Now uses the parent window instead of the
18553           client area window for the property
18554
18555         * Form.cs
18556           - ShowDialog(): Now uses the proper window for modality
18557           - The default visibility state for the form parent is now false. This
18558             will prevent the user from seeing all the changes to the form and
18559             its controls before the application hits Application.Run()
18560           - Removed some stale commented out code
18561
18562         * NativeWindow.cs:
18563           - Added FindWindow() method to have a method to check for existence
18564             of a window handle
18565           - Added ability to override default exception handling (for example
18566             when debugging with VS.Net; to do this the ExternalExceptionHandler
18567             define must be set
18568           - Removed some useless debug output
18569
18570         * XplatUIX11.cs:
18571           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
18572             not working as expected
18573           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
18574             property to allow switching back to the modal window if focus is
18575             given to another one of our windows (Application Modal)
18576           - Now only sets override_redirect if we create a window
18577             without WS_CAPTION
18578           - Moved EventMask selection before mapping of newly created window
18579             so we can catch the map event as well
18580           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
18581           - Added various Atom related DllImports
18582           - Implemented Exit() method
18583           - .ctor() : No longer shows window if WS_VISIBLE is not defined
18584             in the CreateParams
18585
18586         * MessageBox.cs: Now properly deals with the FormParent window by
18587           providing an override the FormParent CreateParams property to
18588           set as POPUP instead of OVERLAPPED window.
18589
18590 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18591
18592         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
18593         Minor code cleanup.
18594
18595 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
18596         
18597         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
18598
18599 2004-12-18  Peter Bartok  <pbartok@novell.com>
18600
18601         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
18602           implementing SetModal() method
18603
18604 2004-12-18  Peter Bartok  <pbartok@novell.com>
18605
18606         * X11Structs.cs (XGCValues): Fixed type of function element
18607         * XplatUI.cs: Added ScrollWindow() method
18608         * XplatUIDriver.cs: Added ScrollWindow() abstract
18609         * XplatUIWin32.cs: Implemented ScrollWindow() method
18610         * XplatUIX11.cs: Implemented ScrollWindow() method
18611         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
18612
18613 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18614
18615         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
18616         Some more keyboard support (INCOMPLETE)
18617
18618 2004-12-17  Peter Bartok  <pbartok@novell.com>
18619
18620         * TextControl.cs:
18621         - Added color attribute to line tags.
18622         - Added color argument to all functions dealing with tags
18623         - Added color argument support to various functions
18624         - Fixed miss-calculation of baseline/shift in certain circumstances
18625
18626         * TextBoxBase.cs: Added new color option to test code
18627
18628 2004-12-17  Jackson Harper  <jackson@ximian.com>
18629
18630         * TreeNode.cs:
18631         * MonthCalendar.cs: Signature fixes
18632
18633 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18634
18635         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
18636         keyboard event moved it.  Create a new graphics context for each paint resolves this
18637
18638 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
18639
18640         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
18641         Make caret exist and go blink blink.  Initial keyboard support.
18642         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
18643         works.
18644
18645 2004-12-17  Jackson Harper  <jackson@ximian.com>
18646
18647         * XplatUIStructs.cs: Updated set of virtual keycodes.
18648         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
18649
18650 2004-12-17  Jackson Harper  <jackson@ximian.com>
18651
18652         * XplatUIX11.cs: Prune old keyboard code.
18653
18654 2004-12-17  Jackson Harper  <jackson@ximian.com>
18655
18656         * XplatUIX11.cs: When generating mouse wparams get the modifier
18657         keys from the ModifierKeys property.
18658
18659 2004-12-17  Jackson Harper  <jackson@ximian.com>
18660
18661         * X11Keyboard.cs: Send up/down input when generating
18662         messages. Remove some unused vars.
18663
18664 2004-12-17  Jackson Harper  <jackson@ximian.com>
18665
18666         * TabControl.cs:
18667         * TreeView.cs: get rid of warnings.
18668
18669 2004-12-17  Jackson Harper  <jackson@ximian.com>
18670
18671         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
18672
18673 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
18674
18675         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
18676           CheckedListBox.cs: Implementation
18677
18678 2004-12-17  Peter Bartok  <pbartok@novell.com>
18679
18680         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
18681
18682 2004-12-16  Peter Bartok  <pbartok@novell.com>
18683
18684         * TextControl.cs:
18685           - InsertCharAtCaret(): Fixed start pos fixup
18686           - CaretLine_get: No longer derives the line from the tag, the tag
18687             could be stale if lines in the document have been added or deleted
18688           - RebalanceAfterDelete(): Fixed bug in balancing code
18689           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
18690           - Line.Streamline(): Now can also elminate leading empty tags
18691           - DumpTree(): Added a few more tests and prevented exception on
18692             uninitialized data
18693           - Added Debug section for Combining lines
18694           - Delete(): Now copies all remaining properties of a line
18695           
18696         * TextBoxBase.cs:
18697           - Left mousebutton now sets the caret (and middle button still acts
18698             as formatting tester, which must go away soon)
18699           - Added Debug section for Deleting/Combining lines
18700           - Fixed calculations for UpdateView after Combining lines
18701
18702 2004-12-16  Peter Bartok  <pbartok@novell.com>
18703
18704         * TextControl.cs: Now properly aligns text on a baseline, using the
18705           new XplatUI.GetFontMetrics() method. Simplified several calculations
18706         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
18707           defined
18708
18709 2004-12-16  Peter Bartok  <pbartok@novell.com>
18710
18711         * XplatUI.cs: Added GetFontMetrics() method
18712         * XplatUIDriver.cs: Added GetFontMetrics() abstract
18713         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
18714           into libgdiplus, our private GetFontMetrics function
18715         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
18716         * XplatUIWin32.cs: Implemented GetFontMetrics() method
18717
18718 2004-12-16  Jackson Harper  <jackson@ximain.com>
18719
18720         * XplatUIStruct.cs: Add enum for dead keys
18721         * X11Keyboard.cs: Map and unmap dead keys.
18722
18723 2004-12-16  Jackson Harper  <jackson@ximian.com>
18724
18725         * X11Keyboard.cs: Detect and use the num lock mask.
18726
18727 2004-12-16  Peter Bartok  <pbartok@novell.com>
18728
18729         * Control.cs (CreateGraphics): Added check to make sure the
18730           handle of the window exists before calling Graphics.FromHwnd()
18731
18732 2004-12-16  Peter Bartok  <pbartok@novell.com>
18733
18734         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
18735           contains a lot of code that's not supposed to be there for the
18736           real thing, but required for developing/testing the textbox
18737           backend.
18738
18739 2004-12-16  Peter Bartok  <pbartok@novell.com>
18740
18741         * TextControl.cs:
18742         - Fixed Streamline method
18743         - Added FindTag method to Line
18744         - Added DumpTree method for debugging
18745         - Added DecrementLines() method for deleting lines
18746         - Fixed UpdateView to update the cursor to end-of-line on single-line
18747           updates
18748         - Added PositionCaret() method
18749         - Fixed MoveCaret(LineDown) to move into the last line, too
18750         - Added InsertChar overload
18751         - Fixed InsertChar tag offset calculations
18752         - Added DeleteChar() method
18753         - Added Combine() method for folding lines
18754         - Fixed Delete() method, no longer allocates wasted Line object and
18755           now copies all properties when swapping nodes
18756         - Delete() method now updates document line counter
18757
18758 2004-12-15  Jackson Harper  <jackson@ximian.com>
18759
18760         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
18761         * X11Keyboard.cs: Expose the currently selected modifier keys
18762         through a property.
18763
18764 2004-12-15  Peter Bartok  <pbartok@novell.com>
18765
18766         * TextControl.cs: Initial check-in. Still incomplete
18767
18768 2004-12-15  Jackson Harper  <jackson@ximian.com>
18769
18770         * TreeNode.cs:
18771         * TreeView.cs: Fix build on csc (second time today ;-))
18772
18773 2004-12-15  Jackson Harper  <jackson@ximian.com>
18774
18775         * TreeView.cs: Store the treenodes plus/minus box bounds when it
18776         is calculated and use this for click testing.
18777         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
18778
18779 2004-12-15  Jackson Harper  <jackson@ximian.com>
18780
18781         * TreeView.cs: Pass the nodes image index to the image list when
18782         drawing that image.
18783
18784 2004-12-15  Jackson Harper  <jackson@ximian.com>
18785
18786         * X11Keyboard.cs: Set messages hwnd.
18787         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
18788         post_message calls.
18789
18790 2004-12-15  Jackson Harper  <jackson@ximian.com>
18791
18792         * X11Keyboard.cs: Fix to compile with csc.
18793         
18794 2004-12-15  Jackson Harper  <jackson@ximian.com>
18795
18796         * X11Structs.cs: Add key mask values
18797         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
18798         * X11Keyboard.cs: New file - Extrapolates and interpolates key
18799         down/up foo into WM_CHAR foo
18800         * KeyboardLayouts.cs: Common keyboard layouts
18801         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
18802         post messages into the main queue.
18803
18804 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
18805
18806         * Button.cs: implement ProcessMnemonic
18807         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
18808           brushes everytime
18809         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
18810         * ButtonBase.cs: Show HotkeyPrefix (not the &)
18811
18812 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
18813         
18814         * MonthCalendar.cs: Implemented click-hold for next/previous month
18815           and date selection
18816           
18817 2004-12-11  Peter Bartok  <pbartok@novell.com>
18818
18819         * X11Structs.cs:
18820           - Added XKeyboardState (moved from XplatUIX11.cs)
18821           - Added XCreateGC related enums and structures
18822           - Added GXFunction for XSetFunction
18823
18824         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
18825
18826         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
18827           CaretVisible() calls
18828
18829         * ToolTip.cs: Added code to prevent stealing focus from app windows
18830
18831         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
18832           DestroyCaret, SetCaretPos and CaretVisible)
18833
18834         * XplatUIX11.cs:
18835           - Added implementation for caret functions
18836           - Moved hover variables into a struct, to make it a bit easier
18837             on the eyes and to debug
18838           - Removed XKeyboardState (moved to XplatUIX11.cs)
18839           - Moved Keyboard properties into the properties region
18840
18841         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
18842           call to get a graphics context for our control
18843
18844         * XplatUIOSX.cs: Added empty overrides for the new caret functions
18845
18846         * TreeView.cs: Fixed bug. No matter what color was set it would always
18847           return SystemColors.Window
18848
18849         * XplatUIWin32.cs: Implemented caret overrides
18850
18851 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
18852
18853         * ListBox.cs: fire events, implement missing methods and properties,
18854         sorting.
18855
18856 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
18857
18858         * MonthCalendar.cs: invalidation bug fixing
18859         * ThemeWin32Classic.cs: paint fixing
18860
18861 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
18862
18863         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
18864         prepare the CGContextRef there now.
18865
18866 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
18867
18868         * MonthCalendar.cs:
18869           - optimisationL only invalidate areas that have changed
18870         * ThemeWin32Classic.cs:
18871           - only paint parts that intersect with clip_area
18872
18873 2004-12-09  Peter Bartok  <pbartok@novell.com>
18874
18875         * Application.cs: Undid changes from r37004 which cause problems
18876         on X11
18877
18878 2004-12-09  Ravindra  <rkumar@novell.com>
18879
18880         * ToolBar.cs: Added support for displaying ContextMenu
18881         attached to a button on ToolBar.
18882         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
18883         property.
18884
18885 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18886
18887         * Label.cs: autosize works in text change and removes unnecessary
18888         invalidate
18889
18890 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
18891
18892         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
18893         remove warnings
18894
18895 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
18896
18897         * XplatUIOSX.cs: Added mouse move/click/grab support
18898         Remove some debugging WriteLines not needed anymore.
18899         Add window resizing/positioning.
18900         Fix visibility on reparenting.
18901
18902 2004-12-08  Peter Bartok  <pbartok@novell.com>
18903
18904         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
18905
18906 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
18907
18908         * XplatUIOSX.cs: Initial checkin
18909         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
18910
18911 2004-12-03  Ravindra <rkumar@novell.com>
18912
18913         * ListView.cs: Added some keybindings and fixed scrolling.
18914         ScrollBars listen to ValueChanged event instead of Scroll
18915         Event. This would let us take care of all changes being
18916         done in the scrollbars' values programmatically or manually.
18917         * ListView.cs (CanMultiselect): Added a check for shift key.
18918         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
18919         * ListViewItem.cs (Clone): Fixed. We need to make a copy
18920         of ListViewSubItemCollection as well.
18921
18922 2004-12-06  Peter Bartok <pbartok@novell.com>
18923
18924         * Control.cs (Parent): Added check and exception to prevent
18925         circular parenting
18926
18927 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
18928
18929         * ListBox.cs: implemented clipping, selection single and multiple,
18930         bug fixing
18931
18932 2004-12-03  Ravindra <rkumar@novell.com>
18933
18934         * ListView.cs (ListView_KeyDown):
18935         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
18936         when CTRL key is pressed.
18937         * ListViewItem.cs (Selected): Fixed setting the property.
18938
18939 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18940
18941         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
18942
18943         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
18944         MinimizeBox, ShowInTaskbar, TopMost properties.
18945
18946         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
18947         will be implemented).
18948
18949 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
18950
18951         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
18952
18953         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
18954         tests.
18955         
18956         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
18957         
18958         * TreeView.cs: BackColor is Colors.Window.
18959
18960 2004-12-01  Jackson Harper  <jackson@ximian.com>
18961
18962         * TreeView.cs: When resizing the tree if the user is making it
18963         smaller we don't get expose events, so we need to handle adding
18964         the horizontal scrollbar in the size changed handler as well as
18965         the expose handler.
18966
18967 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
18968
18969         * DrawItemState.cs: fixes wrong enum values
18970
18971 2004-12-01  Jackson Harper  <jackson@ximian.com>
18972
18973         * TreeView.cs: Resize the hbar as well as the vbar on resize.
18974
18975 2004-12-01  Jackson Harper  <jackson@ximian.com>
18976
18977         * NodeLabelEditEventArgs.cs:
18978         * NodeLabelEditEventHandler.cs:
18979         * OpenTreeNodeEnumerator.cs:
18980         * TreeNode.cs:
18981         * TreeNodeCollection.cs:
18982         * TreeView.cs:
18983         * TreeViewAction.cs:
18984         * TreeViewCancelEventArgs.cs:
18985         * TreeViewCancelEventHandler.cs:
18986         * TreeViewEventArgs.cs:
18987         * TreeViewEventHandler.cs: Initial implementation.
18988
18989 2004-12-01  Ravindra <rkumar@novell.com>
18990
18991         * ListView.cs (CalculateListView): Fixed scrolling related
18992         calculations. Also, removed some debug statements from other
18993         places.
18994         * ListViewItem.cs: Changed access to 'selected' instance variable
18995         from private to internal.
18996         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
18997
18998 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
18999
19000         * ThemeWin32Classic.cs: remove cache of brush and pens for
19001         specific controls and use the global system, fixes scrollbutton
19002         bugs (for small sizes, disabled, etc)
19003         
19004         * ScrollBar.cs: does not show the thumb for very small controls
19005         (as MS) and allow smaller buttons that the regular size
19006
19007 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
19008
19009         * UpDownBase.cs: Add abstract methods for the interface.
19010         Add new virtual methods (need to be hooked up to TextEntry when it
19011         exists).
19012         Add override methods for most features.
19013         Computes the size, forces the height of the text entry.
19014
19015         * NumericUpDown.cs: Put here the current testing code.
19016
19017         * Set eol-style property on all files that do not have mixed line
19018         endings, to minimize the future problems.  There are still a few
19019         files with mixed endings, and someone should choose whether they
19020         want to move it or not.
19021
19022 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
19023
19024         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
19025         System.Colors
19026         
19027 2004-11-30  Ravindra <rkumar@novell.com>
19028
19029         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
19030         drawing and replaced use of SystemColors by theme colors.
19031         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
19032         * ListView.cs (ListViewItemCollection.Add): Throw exception when
19033         same ListViewItem is being added more than once.
19034
19035 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
19036
19037         * MonthCalendar.cs:
19038           - ControlStyles love to make the control not flicker
19039           
19040 2004-11-30  Peter Bartok  <pbartok@novell.com>
19041
19042         * CharacterCasing.cs: Added
19043
19044 2004-11-29  Peter Bartok  <pbartok@novell.com>
19045
19046         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
19047           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
19048           I am removing these files as they conflict with already completed
19049           work. While it is fantastic to get contributions to MWF, I
19050           respectfully ask that everyone please coordinate their contributions
19051           through mono-winforms-list or #mono-winforms at this time. We're
19052           explicitly avoiding stubbing and don't want controls that don't have
19053           their basic functionality implemented in svn. Please also see
19054           http://www.mono-project.com/contributing/winforms.html
19055
19056
19057 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
19058
19059         * Application.cs (ModalRun): Don't hang after exit.
19060
19061         * Theme.cs: New TreeViewDefaultSize property.
19062
19063         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
19064         with less hardcoded SystemColors constant.
19065         Implemented TreeViewDefaultSize.
19066
19067         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
19068         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
19069
19070
19071 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
19072
19073         * MonthCalendar.cs:
19074           - Fix NextMonthDate and PrevMonthDate click moving calendar
19075
19076 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
19077
19078         * MonthCalendar.cs:
19079           - Fix usage of ScrollChange Property when scrolling months
19080
19081 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
19082
19083         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
19084          - Fixes menu destroying
19085          - Support adding and removing items on already created menus
19086
19087 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
19088
19089         * MonthCalendar.cs:
19090           - Re-worked all bolded dates handling to match win32
19091         * ThemeWin32Classic.cs:
19092           - Fixed rendering with bolded dates
19093
19094 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
19095
19096         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
19097         - Horizontal scroolbar
19098         - Multicolumn
19099         - Fixes
19100
19101
19102 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
19103
19104         * MonthCalendar.cs:
19105           - Fix Usage of MaxSelectionCount from SelectionRange
19106           - Fixed Shift + Cursor Selection
19107           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
19108           - Fixed normal cursor selection to be compat with win32
19109           - Fixed Shift + Mouse Click selection
19110
19111 2004-11-24  Peter Bartok <pbartok@novell.com>
19112
19113         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
19114         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
19115         * XplatUIX11.cs:
19116           - CreatedKeyBoardMsg now updates keystate with Alt key
19117           - Added workaround for timer crash to CheckTimers, Jackson will
19118             develop a proper fix and check in later
19119           - Implemented DispatchMessage
19120           - Removed calling the native window proc from GetMessage (call
19121             now moved to DispatchMessage)
19122
19123         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
19124           the keydata (Fixes bug #69831)
19125
19126         * XplatUIWin32.cs:
19127           - (DispatchMessage): Switched to return IntPtr
19128           - Added DllImport for SetFocus
19129
19130 2004-11-24  Ravindra <rkumar@novell.com>
19131
19132         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
19133         background drawing.
19134         * ListViewItem.cs: Fixed various properties, calculations
19135         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
19136         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
19137         and some internal properties. Fixed MouseDown handler and Paint
19138         method.
19139
19140 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19141
19142         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
19143
19144 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19145
19146         * ContainerControl.cs: correct accidental check in of local changes
19147
19148 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
19149
19150         * ThemeWin32Classic.cs:
19151                 - Fixed Drawing Last month in grid (sometimes not showing)
19152         * MonthCalendar.cs:
19153                 - Fixed title width calculation bug (makeing title small)
19154
19155 2004-11-23  Peter Bartok <pbartok@novell.com>
19156
19157         * XplatUIX11.cs:
19158           - Added generation of WM_MOUSEHOVER event
19159           - Added missing assignment of async_method atom
19160           - Fixed WM_ERASEBKGND; now only redraws the exposed area
19161
19162 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19163
19164         * ThemeWin32Classic.cs:
19165                 - Fixed Drawing of today circle when showtodaycircle not set
19166                 - fixed drawing of first and last month in the grid (gay dates)
19167         * MonthCalendar.cs:
19168                 - Fixed Drawing of today circle
19169                 - Fixed drawing of grady dates
19170                 - Fixed HitTest for today link when ShowToday set to false
19171                 - Fixed DefaultSize to obey ShowToday
19172
19173 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
19174
19175         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
19176         * System.Windows.Forms/Theme.cs
19177         * MonthCalendar.cs: added for MonthCalendar
19178         * SelectionRange.cs: added for MonthCalendar
19179         * Day.cs: added for MonthCalendar: added for MonthCalendar
19180         * DateRangeEventArgs.cs: added for MonthCalendar
19181         * DateRangeEventHandler.cs: added for MonthCalendar
19182
19183 2004-11-22  Ravindra <rkumar@novell.com>
19184
19185         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
19186         property.
19187
19188 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
19189
19190         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
19191         event handler.
19192         
19193         * NumericUpDown.cs: Added new implementation.
19194         * UpDownBase.cs: Added new implementation.
19195
19196         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
19197         implementations.
19198         
19199         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
19200         implementations.
19201
19202         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
19203         methods.
19204
19205 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
19206
19207         * Timer.cs  (Dispose): Should call the base dispose when
19208         overriding.
19209
19210 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19211
19212         * ScrollBar.cs: updates thumb position when max, min or increment
19213         is changed
19214
19215 2004-11-21  Ravindra <rkumar@novell.com>
19216
19217         * ListView.cs: Implemented item selection, activation and
19218         column header style. Fixed properties to do a redraw, if
19219         required. Added support for MouseHover, DoubleClick, KeyDown
19220         and KeyUp event handling and some minor fixes.
19221         * ListViewItem.cs: Fixed constructor.
19222         * ThemeWin32Classic.cs: Improved drawing for ListView.
19223
19224 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
19225
19226         * ThemeWin32Classic.cs: initial listbox drawing code
19227         * DrawMode.cs: new enumerator
19228         * ListControl.cs: stubbed class
19229         * ListBox.cs: initial implementation
19230         * Theme.cs: new methods definitions
19231         * SelectionMode.cs: new enumerator
19232
19233 2004-11-17  Peter Bartok  <pbartok@novell.com>
19234
19235         * XplatUIWin32.cs: Added double-click events to the class style
19236         * Control.cs (WndProc):
19237           - Added handling of click-count to MouseDown/ MouseUp events.
19238           - Added handling of middle and right mouse buttons
19239           - Removed old debug code
19240
19241 2004-11-17  Jackson Harper  <jackson@ximian.com>
19242
19243         * XplatUIX11.cs: Use the new Mono.Unix namespace.
19244
19245 2004-11-17  Ravindra <rkumar@novell.com>
19246
19247         * ListView.cs: Added event handling for MouseMove/Up/Down.
19248         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
19249         * ThemeWin32Classic.cs: We need to clear the graphics context and
19250         draw column header in a proper state.
19251
19252
19253 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
19254
19255         *  Menu.cs: fixes signature
19256
19257 2004-11-16  Peter Bartok  <pbartok@novell.com>
19258
19259         * XplatUIX11.cs (GetMessage): Implemented generation of
19260           double click mouse messages
19261
19262 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
19263
19264         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
19265         not by menu
19266
19267 2004-11-11  Peter Bartok  <pbartok@novell.com>
19268
19269         * HandleData.cs: Added Visible property
19270         * XplatUIX11.cs (IsVisible): Now uses Visible property from
19271           HandleData
19272         * XplatUIX11.cs: Removed old debug leftovers
19273         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
19274         * Control.cs (WndProc): Removed old debug leftovers,
19275           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
19276           needed WM_SIZE handling
19277
19278 2004-11-11  Jackson Harper  <jackson@ximian.com>
19279
19280         * OwnerDrawPropertyBag.cs:
19281         * TreeViewImageIndexConverter.cs: Initial implementation
19282
19283 2004-11-10  Jackson Harper  <jackson@ximian.com>
19284
19285         * ThemeWin32Classic.cs:
19286         * TabControl.cs: instead of moving tabs by the slider pos just
19287         start drawing at the tab that is offset by the slider. This way
19288         scrolling always moves by exactly one tab.
19289
19290 2004-11-10  Jackson Harper  <jackson@ximian.com>
19291
19292         * TabControl.cs: You can only scroll left when the slider has
19293         already ben moved right.
19294         
19295 2004-11-10  Jackson Harper  <jackson@ximian.com>
19296
19297         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
19298         the clip area.
19299         
19300 2004-11-10  Jackson Harper  <jackson@ximian.com>
19301
19302         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
19303         clip area.
19304         
19305 2004-11-09  Jackson Harper  <jackson@ximian.com>
19306
19307         * TabControl.cs (CalcXPos): New helper method so we can determine
19308         the proper place to start drawing vertical tabs.
19309         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
19310         
19311 2004-11-09  Jackson Harper  <jackson@ximian.com>
19312
19313         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
19314         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
19315         and Bottom, left and right are illegal values for this and
19316         multiline is enabled when the alignment is set to left or right.
19317         (DrawTab): Each alignment block should draw the text itself now
19318         because Left requires special love. Also add rendering for Left
19319         aligned tabs.
19320         
19321 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
19322
19323         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
19324         does not destroy the windows, removes debugging messages
19325
19326 2004-11-09  jba  <jba-mono@optusnet.com.au>
19327
19328         * ThemeWin32Classic.cs
19329         (DrawButtonBase): Fix verticle text rect clipping in windows
19330         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
19331         rendering and incorrect text rect clipping
19332         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
19333         rendering and incorrect text rect clipping
19334         
19335 2004-11-08  Jackson Harper  <jackson@ximian.com>
19336
19337         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
19338         bottom when they are bottom aligned so the bottoms of the tabs get
19339         displayed.
19340         * TabControl.cs (DropRow): Move rows up instead of down when the
19341         tab control is bottom aligned.
19342
19343 2004-11-08 13:59  pbartok
19344
19345         * XplatUIX11.cs:
19346           - Added handling for various window styles
19347           - Added handling for popup windows
19348           - Added SetTopmost handling
19349
19350 2004-11-08 13:55  pbartok
19351
19352         * XplatUIWin32.cs:
19353           - Added argument to SetTopmost method
19354           - Fixed broken ClientToScreen function
19355
19356 2004-11-08 13:53  pbartok
19357
19358         * XplatUIStructs.cs:
19359           - Added missing WS_EX styles
19360
19361 2004-11-08 13:53  pbartok
19362
19363         * XplatUI.cs, XplatUIDriver.cs:
19364           - Added argument to SetTopmost
19365
19366 2004-11-08 13:52  pbartok
19367
19368         * X11Structs.cs:
19369           - Added XSetWindowAttributes structure
19370           - Improved XWindowAttributes structure
19371           - Added SetWindowValuemask enum
19372           - Added window creation arguments enum
19373           - Added gravity enum
19374           - Added Motif hints structure
19375           - Added various Motif flags and enums
19376           - Added PropertyMode enum for property functions
19377
19378 2004-11-08 13:50  pbartok
19379
19380         * Form.cs:
19381           - Fixed arguments for updated SetTopmost method
19382
19383 2004-11-08 13:49  pbartok
19384
19385         * ToolTip.cs:
19386           - Fixed arguments for updated SetTopmost function
19387           - Fixed usage of PointToClient
19388
19389 2004-11-08 13:44  pbartok
19390
19391         * MenuAPI.cs:
19392           - Added Clipping of children and siblings
19393
19394 2004-11-08 13:41  pbartok
19395
19396         * MainMenu.cs:
19397           - Removed SetMenuBarWindow call. We do this in Form.cs
19398
19399 2004-11-08 13:40  jackson
19400
19401         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
19402           scrolling jimmi in the correct location with bottom aligned tabs
19403
19404 2004-11-08 13:36  pbartok
19405
19406         * ContainerControl.cs:
19407           - Implemented BindingContext
19408           - Implemented ParentForm
19409
19410 2004-11-08 12:46  jackson
19411
19412         * TabControl.cs: Put bottom rendered tabs in the right location
19413
19414 2004-11-08 07:15  jordi
19415
19416         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
19417           removes dead code
19418
19419 2004-11-05 17:30  jackson
19420
19421         * TabControl.cs: When selected tabs are expanded make sure they
19422           don't go beyond the edges of the tab control
19423
19424 2004-11-05 14:57  jackson
19425
19426         * TabControl.cs: Reset show_slider so if the control is resized to
19427           a size where it is no longer needed it's not displayed anymore
19428
19429 2004-11-05 13:16  jackson
19430
19431         * TabControl.cs: Make tab pages non visible when added to the
19432           control
19433
19434 2004-11-05 12:42  jackson
19435
19436         * TabControl.cs: Implement SizeMode.FillToRight
19437
19438 2004-11-05 12:16  jackson
19439
19440         * Control.cs: Do not call CreateHandle if the handle is already
19441           created
19442
19443 2004-11-05 11:46  jackson
19444
19445         * TabControl.cs: Remove superflous call to CalcTabRows
19446
19447 2004-11-05 09:07  jackson
19448
19449         * XplatUIX11.cs: Update for Mono.Posix changes
19450
19451 2004-11-05 07:00  ravindra
19452
19453         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
19454           scrolling.
19455
19456 2004-11-04 22:47  jba
19457
19458         * ThemeWin32Classic.cs:
19459           - Fix Button rendering for FlatStyle = Flat or Popup
19460           - Fix RadioButton and CheckBox rendering when Appearance = Button
19461             (normal and flatstyle).
19462           - Correct outer rectangle color when drawing focus rectangle
19463           - Adjust button bounds to be 1 px smaller when focused
19464           - Make button not draw sunken 3d border when pushed (windows compat)
19465           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
19466           - Offset the text in RadioButton and Checkbox when being rendered as
19467           a button.
19468           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
19469           radiobuttons
19470           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
19471           - Fixed disabled text rendering for normally rendered radiobuttons
19472
19473 2004-11-04 10:26  jackson
19474
19475         * TabControl.cs: Recalculate tab rows when resizing
19476
19477 2004-11-04 07:47  jordi
19478
19479         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
19480           collection completion, drawing issues, missing features
19481
19482 2004-11-04 05:03  ravindra
19483
19484         * ScrollBar.cs:
19485                 - We need to recalculate the Thumb area when
19486                 LargeChange/maximum/minimum values are changed.
19487           - We set the 'pos' in UpdatePos() method to minimum, if it's less
19488                 than minimum. This is required to handle the case if large_change is
19489                 more than max, and use LargeChange property instead of large_change
19490                 variable.
19491           - We return max+1 when large_change is more than max, like MS does.
19492
19493 2004-11-04 04:29  ravindra
19494
19495         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
19496                 - Changed default value signatures (prefixed all with ListView).
19497                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
19498                 ListView.
19499           - Fixed calculations for ListViewItem and implemented Clone()
19500           method.
19501
19502 2004-11-04 04:26  ravindra
19503
19504         * Theme.cs, ThemeWin32Classic.cs:
19505                 - Changed default ListView values signatures (prefixed all with
19506                 ListView).
19507           - Fixed default size values for VScrollBar and HScrollBar.
19508                 - Fixed DrawListViewItem method.
19509
19510 2004-11-04 04:05  ravindra
19511
19512         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
19513
19514 2004-11-04 04:04  ravindra
19515
19516         * ImageList.cs: Implemented the missing overload for Draw method.
19517
19518 2004-11-03 19:29  jackson
19519
19520         * TabControl.cs: Handle dropping rows on selection properly
19521
19522 2004-11-03 11:59  jackson
19523
19524         * TabControl.cs: remove debug code
19525
19526 2004-11-03 11:52  jackson
19527
19528         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
19529           the scrolly widgerywoo
19530
19531 2004-11-02 13:52  jackson
19532
19533         * TabControl.cs: Resize the tab pages and tabs when the tab control
19534           is resized
19535
19536 2004-11-02 13:40  jackson
19537
19538         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
19539           selected tab to the bottom
19540
19541 2004-11-02 13:39  jackson
19542
19543         * TabPage.cs: Store the tab pages row
19544
19545 2004-11-02 12:33  jordi
19546
19547         * MenuItem.cs: fixes handle creation
19548
19549 2004-11-02 11:42  jackson
19550
19551         * TabControl.cs: signature fix
19552
19553 2004-11-02 08:56  jackson
19554
19555         * TabControl.cs: Calculate whether the tab is on an edge properly.
19556           Remove top secret debugging code
19557
19558 2004-11-01 19:57  jackson
19559
19560         * TabControl.cs: Add click handling, and proper sizing
19561
19562 2004-11-01 19:47  jackson
19563
19564         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
19565           tab controls
19566
19567 2004-11-01 19:39  jackson
19568
19569         * TabPage.cs: add internal property to store the bounds of a tab
19570           page
19571
19572 2004-10-30 04:23  ravindra
19573
19574         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
19575           values.
19576
19577 2004-10-30 04:21  ravindra
19578
19579         * ListView.cs, ListViewItem.cs: Added support for scrolling and
19580           fixed calculations.
19581
19582 2004-10-30 03:06  pbartok
19583
19584         * XplatUIX11.cs:
19585           - Removed extension of DllImported libs
19586
19587 2004-10-29 09:55  jordi
19588
19589         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
19590           navigation, itemcollection completion, menu fixes
19591
19592 2004-10-27 22:58  pbartok
19593
19594         * XplatUIX11.cs:
19595           - Now throws a nice error message when no X display could be opened
19596
19597 2004-10-26 13:51  jordi
19598
19599         * ListView.cs: removes warning
19600
19601 2004-10-26 03:55  ravindra
19602
19603         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
19604           ThemeWin32Classic.cs: Some formatting for my last checkins.
19605
19606 2004-10-26 03:36  ravindra
19607
19608         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
19609           control and default values.
19610
19611 2004-10-26 03:35  ravindra
19612
19613         * Theme.cs: Added some default values for ListView control.
19614
19615 2004-10-26 03:33  ravindra
19616
19617         * ToolBar.cs: ToolBar should use the user specified button size, if
19618           there is any. Added a size_specified flag for the same.
19619
19620 2004-10-26 03:33  ravindra
19621
19622         * ColumnHeader.cs: Added some internal members and calculations for
19623           ColumnHeader.
19624
19625 2004-10-26 03:32  ravindra
19626
19627         * ListViewItem.cs: Calculations for ListViewItem.
19628
19629 2004-10-26 03:31  ravindra
19630
19631         * ListView.cs: Added some internal members and calculations for
19632           ListView.
19633
19634 2004-10-22 13:31  jordi
19635
19636         * MenuAPI.cs: speedup menus drawing
19637
19638 2004-10-22 13:16  jackson
19639
19640         * XplatUIX11.cs: Make sure to update exposed regions when adding an
19641           expose event
19642
19643 2004-10-22 11:49  jackson
19644
19645         * Control.cs: oops
19646
19647 2004-10-22 11:41  jackson
19648
19649         * Control.cs: Check to see if the window should have its background
19650           repainted by X when drawing.
19651
19652 2004-10-22 11:31  jackson
19653
19654         * XplatUIX11.cs: When invalidating areas only use XClearArea if
19655           clear is true, this way we do not get flicker from X repainting the
19656           background
19657
19658 2004-10-22 11:28  jackson
19659
19660         * XEventQueue.cs: Queue properly
19661
19662 2004-10-21 09:38  jackson
19663
19664         * XEventQueue.cs: Fix access modifier
19665
19666 2004-10-21 09:36  jackson
19667
19668         * XEventQueue.cs: Don't loose messages
19669
19670 2004-10-21 09:22  jackson
19671
19672         * XEventQueue.cs: Don't loose messages
19673
19674 2004-10-20 04:15  jordi
19675
19676         * BootMode.cs: enum need it by SystemInfo
19677
19678 2004-10-19 21:58  pbartok
19679
19680         * XplatUIWin32.cs:
19681           - Small sanity check
19682
19683 2004-10-19 21:56  pbartok
19684
19685         * Form.cs:
19686           - Added private FormParentWindow class which acts as the container
19687             for our form and as the non-client area where menus are drawn
19688           - Added/Moved required tie-ins to Jordi's menus
19689           - Fixed/Implemented the FormStartPosition functionality
19690
19691 2004-10-19 21:52  pbartok
19692
19693         * Control.cs:
19694           - Removed unneeded locals
19695           - Added code to all size and location properties to understand and
19696             deal with the parent container of Form
19697
19698 2004-10-19 21:33  pbartok
19699
19700         * Application.cs:
19701           - Fixed to deal with new Form subclasses for menus
19702
19703 2004-10-19 17:48  jackson
19704
19705         * XEventQueue.cs: commit correct version of file
19706
19707 2004-10-19 16:50  jackson
19708
19709         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
19710
19711 2004-10-19 16:15  jordi
19712
19713         * MenuAPI.cs: MenuBarCalcSize returns the height
19714
19715 2004-10-19 08:31  pbartok
19716
19717         * Control.cs:
19718           - Added missing call to PreProcessMessage before calling OnXXXKey
19719           methods
19720
19721 2004-10-19 00:04  ravindra
19722
19723         * ToolTip.cs: Fixed constructor.
19724
19725 2004-10-18 09:31  jordi
19726
19727         * MenuAPI.cs: menuitems in menubars do not have shortcuts
19728
19729 2004-10-18 09:26  jordi
19730
19731         * MenuItem.cs: fixes MenuItem class signature
19732
19733 2004-10-18 08:56  jordi
19734
19735         * MenuAPI.cs: prevents windows from showing in the taskbar
19736
19737 2004-10-18 00:28  ravindra
19738
19739         * ToolTip.cs: Suppressed a warning message.
19740
19741 2004-10-18 00:27  ravindra
19742
19743         * Control.cs: Default value of visible property must be true.
19744
19745 2004-10-17 23:19  pbartok
19746
19747         * ToolTip.cs:
19748           - Complete implementation
19749
19750 2004-10-17 23:19  pbartok
19751
19752         * XplatUIX11.cs:
19753           - Added EnableWindow method
19754           - Added SetModal stub
19755           - Added generation of WM_ACTIVATE message (still needs testing)
19756           - Added SetTopMost stub
19757           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
19758
19759 2004-10-17 23:17  pbartok
19760
19761         * XplatUIWin32.cs:
19762           - Removed VirtualKeys to XplatUIStructs
19763           - Implemented SetTopMost method
19764           - Implemented EnableWindow method
19765           - Bugfix in ScreenToClient()
19766           - Bugfixes in ClientToScreen()
19767
19768 2004-10-17 22:51  pbartok
19769
19770         * XplatUIStructs.cs:
19771           - Added WS_EX styles to WindowStyles enumeration
19772
19773 2004-10-17 22:50  pbartok
19774
19775         * XplatUI.cs, XplatUIDriver.cs:
19776           - Added method for enabling/disabling windows
19777           - Added method for setting window modality
19778           - Added method for setting topmost window
19779
19780 2004-10-17 22:49  pbartok
19781
19782         * ThemeWin32Classic.cs:
19783           - Added ToolTip drawing code
19784
19785 2004-10-17 22:49  pbartok
19786
19787         * Theme.cs:
19788           - Added ToolTip abstracts
19789
19790 2004-10-17 22:47  pbartok
19791
19792         * Form.cs:
19793           - Fixed Form.ControlCollection to handle owner relations
19794           - Added Owner/OwnedForms handling
19795           - Implemented Z-Ordering for owned forms
19796           - Removed unneeded private overload of ShowDialog
19797           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
19798             so I hope)
19799           - Fixed Close(), had wrong default
19800           - Added firing of OnLoad event
19801           - Added some commented out debug code for Ownership handling
19802
19803 2004-10-17 22:16  pbartok
19804
19805         * Control.cs:
19806           - Fixed/implemented flat list of controls
19807
19808 2004-10-17 22:14  pbartok
19809
19810         * Application.cs:
19811           - Added code to simulate modal dialogs on Win32
19812
19813 2004-10-17 16:11  jordi
19814
19815         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
19816           mouse event
19817
19818 2004-10-17 13:39  jordi
19819
19820         * MenuAPI.cs: menu drawing fixes
19821
19822 2004-10-15 09:10  ravindra
19823
19824         * StructFormat.cs: General Enum.
19825
19826 2004-10-15 09:09  ravindra
19827
19828         * SizeGripStyle.cs: Enum for Form.
19829
19830 2004-10-15 09:08  ravindra
19831
19832         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
19833           in Theme for ListView.
19834
19835 2004-10-15 09:06  ravindra
19836
19837         * ColumnHeader.cs: Flushing some formatting changes.
19838
19839 2004-10-15 09:05  ravindra
19840
19841         * ListViewItem.cs: Implemented GetBounds method and fixed coding
19842           style.
19843
19844 2004-10-15 09:03  ravindra
19845
19846         * ListView.cs: Implemented Paint method and fixed coding style.
19847
19848 2004-10-15 07:34  jordi
19849
19850         * MenuAPI.cs: fix for X11
19851
19852 2004-10-15 07:32  ravindra
19853
19854         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
19855                 - Renamed Paint() method to Draw() for clarity. Also, moved
19856                 DrawImage() to OnPaint().
19857
19858 2004-10-15 07:25  ravindra
19859
19860         * CheckBox.cs, RadioButton.cs:
19861                 - Removed Redraw (), we get it from ButtonBase.
19862                 - Implemented Paint (), to do class specific painting.
19863
19864 2004-10-15 07:16  ravindra
19865
19866         * ButtonBase.cs:
19867                 - Redraw () is not virtual now.
19868                 - Added an internal virtual method Paint (), so that
19869                 derived classes can do their painting on their own.
19870                 - Modified OnPaint () to call Paint ().
19871
19872 2004-10-15 06:43  jordi
19873
19874         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
19875           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
19876
19877 2004-10-15 00:30  ravindra
19878
19879         * MessageBox.cs:
19880                 - MessageBox on windows does not have min/max buttons.
19881                 This change in CreateParams fixes this on Windows. We
19882                 still need to implement this windowstyle behavior in
19883                 our X11 driver.
19884
19885 2004-10-14 05:14  ravindra
19886
19887         * ToolBar.cs:
19888                 - Changed Redraw () to do a Refresh () always.
19889                 - Fixed the MouseMove event handling when mouse is pressed,
19890                 ie drag event handling.
19891                 - Replaced the usage of ToolBarButton.Pressed property to
19892                 ToolBarButton.pressed internal variable.
19893
19894 2004-10-14 05:10  ravindra
19895
19896         * ToolBarButton.cs:
19897                 - Added an internal member 'inside' to handle mouse move
19898                 with mouse pressed ie mouse drag event.
19899                 - Changed 'Pressed' property to return true only when
19900                 'inside' and 'pressed' are both true.
19901                 - Some coding style love.
19902
19903 2004-10-14 00:17  ravindra
19904
19905         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
19906           public method.
19907
19908 2004-10-14 00:15  ravindra
19909
19910         * ButtonBase.cs: Redraw () related improvements.
19911
19912 2004-10-14 00:14  ravindra
19913
19914         * MessageBox.cs: Moved InitFormSize () out of Paint method and
19915           removed unnecessary calls to Button.Show () method.
19916
19917 2004-10-13 17:50  pbartok
19918
19919         * XplatUIX11.cs:
19920           - Formatting fix
19921           - Removed destroying of window until we solve the problem of X
19922             destroying the window before us on shutdown
19923
19924 2004-10-13 16:32  pbartok
19925
19926         * ButtonBase.cs:
19927           - Now Redraws on MouseUp for FlatStyle Flat and Popup
19928
19929 2004-10-13 14:18  pbartok
19930
19931         * XplatUIX11.cs:
19932           - Added code to destroy the X window
19933
19934 2004-10-13 14:18  pbartok
19935
19936         * XplatUIWin32.cs:
19937           - Added code to destroy a window
19938
19939 2004-10-13 14:12  pbartok
19940
19941         * ButtonBase.cs:
19942           - Added the Redraw on Resize that got dropped in the last rev
19943
19944 2004-10-13 09:06  pbartok
19945
19946         * ThemeWin32Classic.cs:
19947           - Path from John BouAntoun:
19948             * Fix check rendering (centre correctly for normal style, offset
19949               correctly for FlatStyle).
19950             * Fix border color usage (use backcolor) for FlatStyle.Popup
19951             * Use checkbox.Capture instead of checkbox.is_pressed when
19952               rendering flatstyle states.
19953
19954 2004-10-12 21:48  pbartok
19955
19956         * ThemeWin32Classic.cs:
19957           - Removed all occurences of SystemColors and replaced them with the
19958             matching theme color
19959
19960 2004-10-12 21:41  pbartok
19961
19962         * ThemeWin32Classic.cs:
19963           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
19964             him using the function for flatstyle drawing
19965           - Changed functions to use the new version of CPDrawBorder3D
19966
19967 2004-10-12 21:15  pbartok
19968
19969         * ControlPaint.cs:
19970           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
19971             match MS documentation. They need to return defined colors if the
19972             passed color matches the configured control color. Thanks to John
19973             BouAntoun for pointing this out.
19974
19975 2004-10-12 20:57  pbartok
19976
19977         * Control.cs:
19978           - Fix from John BouAntoun: Raise ForeColorChanged event when text
19979             color is changed
19980
19981 2004-10-12 20:46  pbartok
19982
19983         * CheckBox.cs:
19984           - Fix from John BouAntoun: Now properly sets the Appearance property
19985
19986 2004-10-12 20:45  pbartok
19987
19988         * ThemeWin32Classic.cs:
19989           - Fixes from John BouAntoun: now handles forecolors and backcolors
19990             for flatstyle rendered controls much better; It also fixes normal
19991             checkbox rendering when pushed or disabled.
19992
19993 2004-10-08 02:50  jordi
19994
19995         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
19996           work
19997
19998 2004-10-07 08:56  jordi
19999
20000         * ThemeWin32Classic.cs: Removes deletion of cached brushes
20001
20002 2004-10-06 03:59  jordi
20003
20004         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
20005           XplatUIWin32.cs: removes warnings from compilation
20006
20007 2004-10-05 12:23  jackson
20008
20009         * RadioButton.cs: Fix ctor
20010
20011 2004-10-05 11:10  pbartok
20012
20013         * MessageBox.cs:
20014           - Partial implementation by Benjamin Dasnois
20015
20016 2004-10-05 10:15  jackson
20017
20018         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
20019           by John BouAntoun
20020
20021 2004-10-05 03:07  ravindra
20022
20023         * ToolBar.cs:
20024                 - Removed a private method, Draw ().
20025                 - Fixed the ButtonDropDown event handling.
20026                 - Fixed MouseMove event handling.
20027
20028 2004-10-05 03:04  ravindra
20029
20030         * ThemeWin32Classic.cs:
20031                 - Added DrawListView method and ListViewDefaultSize property.
20032                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
20033                 - Changed DOS style CRLF to Unix format (dos2unix).
20034
20035 2004-10-05 03:03  ravindra
20036
20037         * Theme.cs:
20038                 - Added DrawListView method and ListViewDefaultSize property.
20039
20040 2004-10-05 02:42  ravindra
20041
20042         * ToolBarButton.cs: Added an internal member dd_pressed to handle
20043           clicks on DropDown arrow.
20044
20045 2004-10-04 22:56  jackson
20046
20047         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
20048           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
20049           Control handle the buffers, derived classes should not have to
20050           CreateBuffers themselves.
20051
20052 2004-10-04 21:20  jackson
20053
20054         * StatusBar.cs: The control handles resizing the buffers now.
20055
20056 2004-10-04 21:18  jackson
20057
20058         * Control.cs: When resizing the buffers should be invalidated. This
20059           should be handled in Control not in derived classes.
20060
20061 2004-10-04 14:45  jackson
20062
20063         * TabPage.cs: oops
20064
20065 2004-10-04 02:14  pbartok
20066
20067         * LeftRightAlignment.cs:
20068           - Initial check-in
20069
20070 2004-10-04 01:09  jordi
20071
20072         * ThemeWin32Classic.cs: fixes right button position causing right
20073           button not showing on horizontal scrollbars
20074
20075 2004-10-02 13:12  pbartok
20076
20077         * XplatUIX11.cs:
20078           - Simplified the Invalidate method by using an X call instead of
20079             generating the expose ourselves
20080           - Added an expose when the window background is changed
20081           - Implemented ClientToScreen method
20082
20083 2004-10-02 13:08  pbartok
20084
20085         * XplatUIWin32.cs:
20086           - Added Win32EnableWindow method (test for implementing modal
20087           dialogs)
20088           - Added ClientToScreen method and imports
20089
20090 2004-10-02 13:07  pbartok
20091
20092         * XplatUI.cs, XplatUIDriver.cs:
20093           - Added ClientToScreen coordinate translation method
20094
20095 2004-10-02 13:06  pbartok
20096
20097         * KeyPressEventArgs.cs:
20098           - Fixed access level for constructor
20099
20100 2004-10-02 13:06  pbartok
20101
20102         * NativeWindow.cs:
20103           - Changed access level for the window_collection hash table
20104
20105 2004-10-02 13:05  pbartok
20106
20107         * Form.cs:
20108           - Added KeyPreview property
20109           - Added Menu property (still incomplete, pending Jordi's menu work)
20110           - Implemented ProcessCmdKey
20111           - Implemented ProcessDialogKey
20112           - Implemented ProcessKeyPreview
20113
20114 2004-10-02 13:02  pbartok
20115
20116         * Control.cs:
20117           - Added private method to get the Control object from the window
20118           handle
20119           - Implemented ContextMenu property
20120           - Implemented PointToScreen
20121           - Implemented PreProcessMessage
20122           - Implemented IsInputChar
20123           - Implemented IsInputKey
20124           - Implemented ProcessCmdKey
20125           - Completed ProcessKeyEventArgs
20126           - Fixed message loop to call the proper chain of functions on key
20127           events
20128           - Implemented ProcessDialogChar
20129           - Implemented ProcessDialogKey
20130           - Implemented ProcessKeyMessage
20131           - Implemented ProcessKeyPreview
20132           - Added RaiseDragEvent stub (MS internal method)
20133           - Added RaiseKeyEvent stub (MS internal method)
20134           - Added RaiseMouseEvent stub (MS Internal method)
20135           - Added RaisePaintEvent stub (MS Internal method)
20136           - Added ResetMouseEventArgs stub (MS Internal method)
20137           - Implemented RtlTranslateAlignment
20138           - Implemented RtlTranslateContent
20139           - Implemented RtlTranslateHorizontal
20140           - Implemented RtlTranslateLeftRight
20141           - Added generation of KeyPress event
20142
20143 2004-10-02 05:57  ravindra
20144
20145         * ListViewItem.cs: Added attributes.
20146
20147 2004-10-02 05:32  ravindra
20148
20149         * ListView.cs: Added attributes.
20150
20151 2004-10-01 11:53  jackson
20152
20153         * Form.cs: Implement the Close method so work on MessageBox can
20154           continue.
20155
20156 2004-09-30 14:06  pbartok
20157
20158         * XplatUIX11.cs:
20159           - Bug fixes
20160
20161 2004-09-30 11:34  jackson
20162
20163         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
20164
20165 2004-09-30 07:26  ravindra
20166
20167         * ListViewItemConverter.cs: Converter for ListViewItem.
20168
20169 2004-09-30 07:26  ravindra
20170
20171         * SortOrder.cs: Enum for ListView control.
20172
20173 2004-09-30 07:25  ravindra
20174
20175         * ColumnHeader.cs: Supporting class for ListView control.
20176
20177 2004-09-30 07:24  ravindra
20178
20179         * ListView.cs, ListViewItem.cs: Initial implementation.
20180
20181 2004-09-30 07:20  ravindra
20182
20183         * ItemActivation.cs: Enum for ListView Control.
20184
20185 2004-09-29 20:29  pbartok
20186
20187         * XplatUIX11.cs:
20188           - Added lookup of pixel value for background color; tries to get a
20189             color 'close' to the requested color, it avoids having to create a
20190             colormap.  Depending on the display this could mean the used color
20191             is slightly off the desired color. Might have to change it to a more
20192             resource intensive colormap approach, but it will work as a
20193           workaround to avoid red screens.
20194
20195 2004-09-29 14:27  jackson
20196
20197         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
20198
20199 2004-09-28 12:44  pbartok
20200
20201         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
20202           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
20203           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
20204           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
20205           TrackBar.cs, VScrollBar.cs:
20206           - Streamlined Theme interfaces:
20207             * Each DrawXXX method for a control now is passed the object for
20208               the control to be drawn in order to allow accessing any state the
20209               theme might require
20210
20211             * ControlPaint methods for the theme now have a CP prefix to avoid
20212               name clashes with the Draw methods for controls
20213
20214             * Every control now retrieves it's DefaultSize from the current
20215             theme
20216
20217 2004-09-28 12:17  jackson
20218
20219         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
20220           drawing
20221
20222 2004-09-24 14:57  jackson
20223
20224         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
20225           Gives us a nice little performance boost.
20226
20227 2004-09-24 12:02  jackson
20228
20229         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
20230           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
20231           Control and supporting classes. Initial checkin
20232
20233 2004-09-23 13:08  jackson
20234
20235         * Form.cs: Temp build fixage
20236
20237 2004-09-23 01:39  ravindra
20238
20239         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
20240           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
20241           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
20242           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
20243           EventHandlers needed by ListView Control.
20244
20245 2004-09-22 14:12  pbartok
20246
20247         * ScrollableControl.cs:
20248           - Implemented DockPadding property
20249           - Implemented AutoScroll property
20250           - Implemented AutoScrollMargin property
20251           - Implemented AutoScrollMinSize property
20252           - Implemented AutoScrollPosition property
20253           - Implemented DisplayRectangle property (still incomplete)
20254           - Implemented CreateParams property
20255           - Implemented HScroll property
20256           - Implemented VScroll property
20257           - Implemented OnVisibleChanged property
20258
20259 2004-09-22 14:09  pbartok
20260
20261         * Form.cs:
20262           - Added Form.ControllCollection class
20263           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
20264             RemoveOwnedForm (still incomplete, missing on-top and common
20265             minimize/maximize behaviour)
20266           - Added StartPosition property (still incomplete, does not use when
20267             creating the form)
20268           - Added ShowDialog() methods (still incomplete, missing forcing the
20269             dialog modal)
20270
20271 2004-09-22 14:05  pbartok
20272
20273         * Application.cs:
20274           - Added message loop for modal dialogs
20275
20276 2004-09-22 14:02  pbartok
20277
20278         * GroupBox.cs:
20279           - Fixed wrong types for events
20280
20281 2004-09-22 14:00  pbartok
20282
20283         * Shortcut.cs, FormWindowState.cs:
20284           - Fixed wrong values
20285
20286 2004-09-22 12:01  jackson
20287
20288         * Control.cs: Text is never null
20289
20290 2004-09-20 22:14  pbartok
20291
20292         * XplatUIWin32.cs:
20293           - Fixed accessibility level for Idle handler
20294
20295 2004-09-20 18:54  jackson
20296
20297         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20298           XplatUIX11.cs: New message loop that uses poll so we don't get a
20299           busy loop
20300
20301 2004-09-17 10:43  pbartok
20302
20303         * ScrollBar.cs:
20304           - Fixed behaviour of arrow buttons. Now properly behaves like
20305             Buttons (and like Microsoft's scrollbar arrow buttons)
20306
20307 2004-09-17 10:14  pbartok
20308
20309         * ScrollBar.cs:
20310           - Added missing release of keyboard/mouse capture
20311
20312 2004-09-17 06:18  jordi
20313
20314         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
20315           Theme.cs: Very early menu support
20316
20317 2004-09-16 17:45  pbartok
20318
20319         * XplatUIWin32.cs:
20320           - Fixed sending a window to the front
20321           - Added overload for SetWindowPos to avoid casting
20322
20323 2004-09-16 17:44  pbartok
20324
20325         * Control.cs:
20326           - Added SendToBack and BringToFront methods
20327
20328 2004-09-16 07:00  ravindra
20329
20330         * Copyright: Added Novell URL.
20331
20332 2004-09-16 07:00  ravindra
20333
20334         * ToolBar.cs: Invalidate should be done before redrawing.
20335
20336 2004-09-15 21:19  ravindra
20337
20338         * ColumnHeaderStyle.cs: Enum for ListView Control.
20339
20340 2004-09-15 21:18  ravindra
20341
20342         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
20343           ListView Control.
20344
20345 2004-09-13 18:26  jackson
20346
20347         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
20348           properly
20349
20350 2004-09-13 18:13  jackson
20351
20352         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
20353           a second thread and post messages into the main threads message
20354           queue. This makes timing much more consistent. Both win2K and XP
20355           have a minimum timer value of 15 milliseconds, so we now do this
20356           too.
20357
20358 2004-09-13 15:18  pbartok
20359
20360         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20361           XplatUIX11.cs:
20362           - Added Z-Ordering methods
20363
20364 2004-09-13 10:56  pbartok
20365
20366         * Form.cs:
20367           - Fixed #region names
20368           - Moved properties and methods into their proper #regions
20369
20370 2004-09-13 10:51  pbartok
20371
20372         * Form.cs:
20373           - Added Accept and CancelButton properties
20374           - Added ProcessDialogKey() method
20375
20376 2004-09-13 08:18  pbartok
20377
20378         * IWindowTarget.cs:
20379           - Initial check-in
20380
20381 2004-09-10 21:50  pbartok
20382
20383         * Control.cs:
20384           - Added DoDragDrop() [incomplete]
20385           - Properly implemented 'Visible' handling
20386           - Added SetVisibleCore()
20387           - Implemented FindChildAtPoint()
20388           - Implemented GetContainerControl()
20389           - Implemented Hide()
20390
20391 2004-09-10 19:28  pbartok
20392
20393         * Control.cs:
20394           - Moved methods into their appropriate #regions
20395           - Reordered methods within regions alphabetically
20396
20397 2004-09-10 18:57  pbartok
20398
20399         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20400           - Added method to retrieve text from window
20401
20402 2004-09-10 18:56  pbartok
20403
20404         * Control.cs:
20405           - Moved some internal functions into the internal region
20406           - Implemented FontHeight
20407           - Implemented RenderRightToLeft
20408           - Implemented ResizeRedraw
20409           - Implemented ShowFocusCues
20410           - Implemented ShowKeyboardCues
20411           - Implemented FromChildHandle
20412           - Implemented FromHandle
20413           - Implemented IsMnemonic
20414           - Implemented ReflectMessage
20415           - All public and protected Static Methods are now complete
20416
20417 2004-09-10 16:54  pbartok
20418
20419         * Control.cs:
20420           - Implemented remaining missing public instance properties
20421           - Alphabetized some out of order properties
20422
20423 2004-09-10 05:51  ravindra
20424
20425         * PictureBox.cs: Added a check for null image.
20426
20427 2004-09-10 00:59  jordi
20428
20429         * GroupBox.cs: remove cvs tag
20430
20431 2004-09-09 05:25  ravindra
20432
20433         * ToolBar.cs: Make redraw accessible from ToolBarButton.
20434
20435 2004-09-09 05:23  ravindra
20436
20437         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
20438           parent redraw.
20439
20440 2004-09-09 02:28  pbartok
20441
20442         * ThemeWin32Classic.cs:
20443           - Improve disabled string look
20444
20445 2004-09-09 01:15  jordi
20446
20447         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
20448           args and handler
20449
20450 2004-09-08 23:56  ravindra
20451
20452         * ItemBoundsPortion.cs: It's enum, not a class!
20453
20454 2004-09-08 23:47  ravindra
20455
20456         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
20457           Enums for Form.
20458
20459 2004-09-08 21:13  ravindra
20460
20461         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
20462           ListView control.
20463
20464 2004-09-08 21:03  ravindra
20465
20466         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
20467           avoid crash.
20468
20469 2004-09-08 21:01  ravindra
20470
20471         * ScrollableControl.cs: Removed unreachable code.
20472
20473 2004-09-08 06:45  jordi
20474
20475         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
20476
20477 2004-09-08 01:00  jackson
20478
20479         * XplatUIX11.cs: Only run the timers when updating the message
20480           queue. This effectively gives X messages a higher priority then
20481           timer messages. Timers still need love though
20482
20483 2004-09-07 14:01  jackson
20484
20485         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
20486           this for us and the handle is no longer valid.
20487
20488 2004-09-07 13:59  jackson
20489
20490         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
20491           loop that manages to not crash. TODO: Add poll and cleanup timers
20492
20493 2004-09-07 11:12  jordi
20494
20495         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
20496
20497 2004-09-07 03:40  jordi
20498
20499         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
20500           fixes, methods, multiple links
20501
20502 2004-09-06 06:55  jordi
20503
20504         * Control.cs: Caches ClientRectangle rectangle value
20505
20506 2004-09-05 02:03  jordi
20507
20508         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
20509           certain situations
20510
20511 2004-09-04 11:10  jordi
20512
20513         * Label.cs: Refresh when font changed
20514
20515 2004-09-02 16:24  pbartok
20516
20517         * Control.cs:
20518           - Added sanity check to creation of double buffer bitmap
20519
20520 2004-09-02 16:24  pbartok
20521
20522         * ButtonBase.cs:
20523           - Fixed selection of text color
20524           - Fixed handling of resize event; now properly recreates double
20525             buffering bitmap
20526           - Added missing assignment of TextAlignment
20527           - Added proper default for TextAlignment
20528
20529 2004-09-02 14:26  pbartok
20530
20531         * RadioButton.cs:
20532           - Added missing RadioButton.RadioButtonAccessibleObject class
20533
20534 2004-09-02 14:26  pbartok
20535
20536         * Control.cs:
20537           - Added missing Control.ControlAccessibleObject class
20538           - Started to implement Select()ion mechanisms, still very incomplete
20539
20540 2004-09-02 14:25  pbartok
20541
20542         * AccessibleObject.cs:
20543           - Added missing methods
20544
20545 2004-09-02 14:23  pbartok
20546
20547         * AccessibleNavigation.cs, AccessibleSelection.cs:
20548           - Initial check-in
20549
20550 2004-09-02 10:32  jordi
20551
20552         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
20553           pool for pens, brushes, and hatchbruses
20554
20555 2004-09-01 15:30  jackson
20556
20557         * StatusBar.cs: Fix typo
20558
20559 2004-09-01 14:44  pbartok
20560
20561         * RadioButton.cs:
20562           - Fixed state
20563
20564 2004-09-01 14:39  pbartok
20565
20566         * Button.cs, RadioButton.cs:
20567           - Functional initial check-in
20568
20569 2004-09-01 14:01  pbartok
20570
20571         * CheckBox.cs:
20572           - Added missing default
20573           - Added missing region mark
20574
20575 2004-09-01 09:10  jordi
20576
20577         * Label.cs: fixes method signatures, new methods, events, fixes
20578           autosize
20579
20580 2004-09-01 07:19  jordi
20581
20582         * Control.cs: Init string variables with an empty object
20583
20584 2004-09-01 04:20  jordi
20585
20586         * Control.cs: fires OnFontChanged event
20587
20588 2004-08-31 20:07  pbartok
20589
20590         * ButtonBase.cs:
20591           - Enabled display of strings
20592
20593 2004-08-31 20:05  pbartok
20594
20595         * Form.cs:
20596           - Added (partial) implementation of DialogResult; rest needs to be
20597             implemented when the modal loop code is done
20598
20599 2004-08-31 19:55  pbartok
20600
20601         * CheckBox.cs:
20602           - Fixed to match the removal of the needs_redraw concept
20603
20604 2004-08-31 19:55  pbartok
20605
20606         * ButtonBase.cs:
20607           - Removed the rather odd split between 'needs redraw' and redrawing
20608           - Now handles the events that require regeneration (ambient
20609             properties and size)
20610
20611 2004-08-31 19:41  pbartok
20612
20613         * Control.cs:
20614           - Added firing of BackColorChanged event
20615           - Added TopLevelControl property
20616           - Fixed handling of WM_ERASEBKGRND message
20617
20618 2004-08-31 12:49  pbartok
20619
20620         * ButtonBase.cs:
20621           - Removed debug
20622           - Minor fixes
20623
20624 2004-08-31 12:48  pbartok
20625
20626         * CheckBox.cs:
20627           - Finished (famous last words)
20628
20629 2004-08-31 04:35  jordi
20630
20631         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
20632           scrolling bugs, adds new methods
20633
20634 2004-08-30 14:42  pbartok
20635
20636         * CheckBox.cs:
20637           - Implemented CheckBox drawing code
20638
20639 2004-08-30 14:42  pbartok
20640
20641         * ButtonBase.cs:
20642           - Made Redraw() and CheckRedraw() virtual
20643           - Improved mouse up/down/move logic to properly track buttons
20644
20645 2004-08-30 09:44  pbartok
20646
20647         * CheckBox.cs:
20648           - Updated to fix broken build. Not complete yet.
20649
20650 2004-08-30 09:28  pbartok
20651
20652         * CheckState.cs:
20653           - Initial checkin
20654
20655 2004-08-30 09:17  pbartok
20656
20657         * Appearance.cs:
20658           - Initial check-in
20659
20660 2004-08-27 16:12  ravindra
20661
20662         * ToolBarButton.cs: Added TypeConverter attribute.
20663
20664 2004-08-27 16:07  ravindra
20665
20666         * ImageIndexConverter.cs: Implemented.
20667
20668 2004-08-27 14:17  pbartok
20669
20670         * Control.cs:
20671           - Removed unneeded stack vars
20672           - First attempt to fix sizing issues when layout is suspended
20673
20674 2004-08-25 15:35  jordi
20675
20676         * ScrollBar.cs: more fixes to scrollbar
20677
20678 2004-08-25 14:04  ravindra
20679
20680         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
20681           Added the missing divider code and grip for ToolBar Control.
20682
20683 2004-08-25 13:20  pbartok
20684
20685         * Control.cs:
20686           - Control now properly passes the ambient background color to child
20687             controls
20688
20689 2004-08-25 13:20  jordi
20690
20691         * ScrollBar.cs: small bug fix regarding bar position
20692
20693 2004-08-25 12:33  pbartok
20694
20695         * Timer.cs:
20696           - Now only calls SetTimer or KillTimer if the enabled state has
20697           changed
20698
20699 2004-08-25 12:33  pbartok
20700
20701         * XplatUIWin32.cs:
20702           - Fixed timer handling, now seems to work
20703           - Improved error message for window creation
20704
20705 2004-08-25 12:32  pbartok
20706
20707         * Control.cs:
20708           - Fixed generation of MouseUp message
20709
20710 2004-08-25 12:29  jordi
20711
20712         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
20713           and fixes for progressbar
20714
20715 2004-08-24 18:43  ravindra
20716
20717         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
20718           in ToolBar control.
20719
20720 2004-08-24 17:15  pbartok
20721
20722         * Panel.cs:
20723           - Added #region
20724           - Added missing events
20725           - Alphabetized
20726
20727 2004-08-24 17:14  pbartok
20728
20729         * StatusBar.cs, PictureBox.cs:
20730           - Now uses Control's CreateParams
20731
20732 2004-08-24 16:36  pbartok
20733
20734         * XplatUIX11.cs:
20735           - Fixed background color handling
20736           - Fixed sending of enter/leave events on a grab
20737
20738 2004-08-24 16:35  pbartok
20739
20740         * X11Structs.cs:
20741           - Refined definitions for CrossingEvent
20742
20743 2004-08-24 12:37  jordi
20744
20745         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
20746           formmating, methods signature, and adds missing events
20747
20748 2004-08-24 12:24  jordi
20749
20750         * Control.cs: fire OnEnabledChanged event
20751
20752 2004-08-24 11:17  pbartok
20753
20754         * XplatUIWin32.cs:
20755           - Implemented SetTimer() and KillTimer()
20756
20757 2004-08-24 11:16  pbartok
20758
20759         * XplatUIX11.cs:
20760           - Now uses Remove instead of Add to kill the timer
20761
20762 2004-08-24 10:16  jackson
20763
20764         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
20765           picture boxes in the theme now. Draw picture box borders and obey
20766           sizing modes
20767
20768 2004-08-24 05:49  jackson
20769
20770         * Timer.cs: Remove top secret debugging code
20771
20772 2004-08-24 05:34  jackson
20773
20774         * PictureBox.cs: Temp hack to make picture boxes draw their full
20775           image
20776
20777 2004-08-24 05:29  jackson
20778
20779         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20780           XplatUIX11.cs: Move timers to the driver level. On X they are
20781           queued by the driver and checked on idle.
20782
20783 2004-08-24 01:07  jackson
20784
20785         * XplatUIX11.cs: Use a queue for async messages instead of passing
20786           them as ClientMessages since that was totally broken. Also simply
20787           check for events and return an idle message if none are found. This
20788           gives us an idle handler, and prevents deadlocking when no messages
20789           are in the queue.
20790
20791 2004-08-23 18:19  ravindra
20792
20793         * XplatUIWin32.cs: Removed the unwanted destructor.
20794
20795 2004-08-23 17:27  pbartok
20796
20797         * ButtonBase.cs:
20798           - Finishing touches. Works now, just needs some optimizations.
20799
20800 2004-08-23 16:53  jordi
20801
20802         * ScrollBar.cs: small fix
20803
20804 2004-08-23 16:45  pbartok
20805
20806         * Application.cs:
20807           - Removed debug output
20808           - Simplifications
20809
20810 2004-08-23 16:43  jordi
20811
20812         * ScrollBar.cs: [no log message]
20813
20814 2004-08-23 16:10  pbartok
20815
20816         * Form.cs:
20817           - Fixed handling of WM_CLOSE message
20818           - Removed debug output
20819
20820 2004-08-23 16:09  pbartok
20821
20822         * Application.cs:
20823           - Added handling of Idle event
20824           - Added handling of form closing
20825           - Fixed reporting of MessageLoop property
20826           - Removed some unneeded code, should provide a bit of a speedup
20827
20828 2004-08-23 15:22  pbartok
20829
20830         * Control.cs:
20831           - Added InitLayout() method
20832           - Added code to properly perform layout when Anchor or Dock property
20833             is changed
20834           - Changed 'interpretation' of ResumeLayout. MS seems to have a
20835             LAMESPEC, tried to do it in a way that makes sense
20836
20837 2004-08-23 14:10  jordi
20838
20839         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
20840           properties and methods
20841
20842 2004-08-23 13:55  pbartok
20843
20844         * Control.cs:
20845           - Properly fixed Jordi's last fix
20846           - Now uses Cursor's Position property instead of calling XplatUI
20847           directly
20848
20849 2004-08-23 13:44  jordi
20850
20851         * PaintEventHandler.cs: Adding missing attribute
20852
20853 2004-08-23 13:39  pbartok
20854
20855         * Cursor.cs:
20856           - Implemented Position property
20857
20858 2004-08-23 13:39  pbartok
20859
20860         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20861           - Added method to move mouse cursor
20862
20863 2004-08-23 13:39  pbartok
20864
20865         * XplatUIX11.cs:
20866           - Fixed setting of background color
20867           - Added method to move mouse cursor
20868
20869 2004-08-23 13:16  jordi
20870
20871         * Control.cs: avoids null exception
20872
20873 2004-08-22 17:46  jackson
20874
20875         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
20876           PictureBox
20877
20878 2004-08-22 17:40  jackson
20879
20880         * XplatUIX11.cs: Add some missing locks
20881
20882 2004-08-22 15:10  pbartok
20883
20884         * Control.cs, Form.cs:
20885           - Removed OverlappedWindow style from Control, instead it's default
20886             now is child
20887           - Made form windows OverlappedWindow by default
20888
20889 2004-08-22 13:34  jackson
20890
20891         * ScrollBar.cs: Update the position through the Value property so
20892           the OnValueChanged event is raised.
20893
20894 2004-08-22 12:04  pbartok
20895
20896         * SWF.csproj:
20897           - Added Cursor.cs and UserControl.cs
20898
20899 2004-08-22 12:03  pbartok
20900
20901         * Cursor.cs:
20902           - Started implementation, not usable yet
20903
20904 2004-08-22 12:00  pbartok
20905
20906         * UserControl.cs:
20907           - Implemented UserControl (complete)
20908
20909 2004-08-21 19:20  ravindra
20910
20911         * ToolBar.cs: Correcting the formatting mess of VS.NET.
20912
20913 2004-08-21 18:49  ravindra
20914
20915         * ToolBar.cs: Probably this completes the missing attributes in
20916           toolbar control.
20917
20918 2004-08-21 18:03  ravindra
20919
20920         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
20921           Fixed toolbar control signatures.
20922
20923 2004-08-21 16:32  pbartok
20924
20925         * LinkLabel.cs:
20926           - Signature Fixes
20927
20928 2004-08-21 16:30  pbartok
20929
20930         * Label.cs:
20931           - Signature fixes
20932
20933 2004-08-21 16:19  pbartok
20934
20935         * Control.cs, Label.cs:
20936           - Signature fixes
20937
20938 2004-08-21 15:57  pbartok
20939
20940         * ButtonBase.cs:
20941           - Added loads of debug output for development
20942           - Fixed typo in method name
20943
20944 2004-08-21 15:52  pbartok
20945
20946         * ToolBarButtonClickEventArgs.cs:
20947           - Added missing base class
20948
20949 2004-08-21 14:53  pbartok
20950
20951         * Control.cs:
20952           - Updated to match new GrabWindow signature
20953
20954 2004-08-21 14:51  pbartok
20955
20956         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20957           - Added method to get default display size
20958
20959 2004-08-21 14:23  pbartok
20960
20961         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20962           - Added method to query current grab state
20963           - Added argument to allow confining a grab to a window
20964
20965 2004-08-21 14:22  pbartok
20966
20967         * Keys.cs:
20968           - Added [Flags] attribute so that modifiers can be used in bitwise
20969           ops
20970
20971 2004-08-21 14:21  pbartok
20972
20973         * TrackBar.cs, ScrollBar.cs:
20974           - Replaced direct XplatUI calls with their Control counterpart
20975
20976 2004-08-21 13:32  pbartok
20977
20978         * Control.cs:
20979           - Implemented Created property
20980
20981 2004-08-21 13:28  pbartok
20982
20983         * Control.cs:
20984           - Implemented ContainsFocus
20985
20986 2004-08-21 13:26  pbartok
20987
20988         * Control.cs:
20989           - Implemented CausesValidation
20990
20991 2004-08-21 13:21  pbartok
20992
20993         * Control.cs:
20994           - Implemented CanFocus
20995           - Implemented CanSelect
20996           - Implemented Capture
20997
20998 2004-08-21 12:35  pbartok
20999
21000         * XplatUIWin32.cs:
21001           - Fixed bug with Async message handling
21002           - Implemented getting the ModifierKeys
21003
21004 2004-08-21 12:32  jackson
21005
21006         * AsyncMethodResult.cs: Make sure we have the mutex before we
21007           release it. Fixes BeginInvoke on windows
21008
21009 2004-08-21 11:31  pbartok
21010
21011         * XplatUIWin32.cs, XplatUIX11.cs:
21012           - Drivers now return proper mouse state
21013
21014 2004-08-21 10:54  jackson
21015
21016         * Control.cs: Implement EndInvoke
21017
21018 2004-08-21 10:48  jackson
21019
21020         * Timer.cs: Remove unneeded finalizer
21021
21022 2004-08-20 19:52  ravindra
21023
21024         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
21025           in mouse event handling in the ToolBar control.
21026
21027 2004-08-20 19:50  ravindra
21028
21029         * ImageList.cs: Changed draw method to use the arguments passed in
21030           to draw the image.
21031
21032 2004-08-20 18:58  pbartok
21033
21034         * XplatUIStructs.cs:
21035           - Added private message for async communication
21036
21037 2004-08-20 17:38  ravindra
21038
21039         * Control.cs: Made RightToLeft property virtual and removed a
21040           Console.WriteLine.
21041
21042 2004-08-20 14:39  jordi
21043
21044         * ThemeGtk.cs: use style_attach
21045
21046 2004-08-20 14:39  pbartok
21047
21048         * XplatUIWin32.cs:
21049           - Added jackson's Async code from X11 to Win32
21050
21051 2004-08-20 14:09  pbartok
21052
21053         * SWF.csproj:
21054           - Added all new files
21055
21056 2004-08-20 14:09  pbartok
21057
21058         * Control.cs:
21059           - Added call to set window background color
21060
21061 2004-08-20 14:03  pbartok
21062
21063         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21064           - Added method for setting the window background
21065
21066 2004-08-20 14:02  pbartok
21067
21068         * XplatUIWin32.cs:
21069           - Added method for setting the background color
21070           - Added handling for erasing the window background
21071
21072 2004-08-20 13:45  jordi
21073
21074         * TrackBar.cs: fixes timer, new properties and methods
21075
21076 2004-08-20 13:34  jackson
21077
21078         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
21079           correct thread
21080
21081 2004-08-20 13:22  jackson
21082
21083         * Timer.cs: Timer Tick events are now handed through Controls Async
21084           mechanism so the callbacks are executed in the same thread as X
21085
21086 2004-08-20 13:19  jackson
21087
21088         * XplatUIDriver.cs: Expose functionality to send async messages
21089           through the driver
21090
21091 2004-08-20 13:18  jackson
21092
21093         * Control.cs: Implement Begininvoke
21094
21095 2004-08-20 13:14  jackson
21096
21097         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
21098           messages through the driver
21099
21100 2004-08-20 13:12  jackson
21101
21102         * XplatUIX11.cs: Lock before all X operations. Also added Async
21103           method functionality through XSendEvent
21104
21105 2004-08-20 13:11  jackson
21106
21107         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
21108           This will screw up on 64 bit systems)
21109
21110 2004-08-20 13:10  jackson
21111
21112         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
21113           Async messages through X/Win32
21114
21115 2004-08-19 19:39  pbartok
21116
21117         * XplatUIX11.cs:
21118           - Updated code to match new HandleData.DeviceContext type
21119
21120 2004-08-19 19:38  pbartok
21121
21122         * HandleData.cs:
21123           - Made DeviceContext a generic object to allow usage from various
21124           drivers
21125           - Added support for queueing Windows messages
21126
21127 2004-08-19 19:37  pbartok
21128
21129         * XplatUIWin32.cs:
21130           - Added generation of MouseEnter, MouseLeave and MouseHover events
21131           - Added cleanup on EndPaint
21132
21133 2004-08-19 19:17  pbartok
21134
21135         * Control.cs:
21136           - Added handling of WM_MOUSEHOVER
21137           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
21138           code
21139
21140 2004-08-19 18:55  jordi
21141
21142         * ThemeGtk.cs: fixes button order
21143
21144 2004-08-19 18:12  jordi
21145
21146         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
21147
21148 2004-08-19 17:09  pbartok
21149
21150         * Control.cs:
21151           - Added Right property
21152           - Added RightToLeft property
21153
21154 2004-08-19 16:27  jordi
21155
21156         * ThemeGtk.cs: experimental GTK theme support
21157
21158 2004-08-19 16:26  jordi
21159
21160         * ITheme.cs, Theme.cs: move themes from an interface to a class
21161
21162 2004-08-19 16:25  jordi
21163
21164         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
21165           theme enhancaments
21166
21167 2004-08-19 16:04  pbartok
21168
21169         * XplatUIX11.cs:
21170           - Added colormap basics
21171           - Added a way to re-initialize with a different display handle
21172           - Fixed setting of the window background color
21173           - Added various X11 imports related to colors and colormaps
21174
21175 2004-08-19 15:51  pbartok
21176
21177         * X11Structs.cs:
21178           - Removed packing hints (Paolo suggested this a while back)
21179           - fixed colormap type
21180           - Added default Atom types
21181           - Added Screen and color structs and enums
21182
21183 2004-08-19 15:39  pbartok
21184
21185         * ImageList.cs:
21186           - Added missing Draw() method
21187           - Added missing RecreateHandle event
21188
21189 2004-08-19 15:30  pbartok
21190
21191         * Form.cs:
21192           - Added handling of WM_CLOSE
21193
21194 2004-08-18 13:16  jordi
21195
21196         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
21197           a table
21198
21199 2004-08-18 09:56  jordi
21200
21201         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
21202
21203 2004-08-17 15:31  ravindra
21204
21205         * SWF.csproj: Updated project.
21206
21207 2004-08-17 15:25  pbartok
21208
21209         * Control.cs:
21210           - Drawing improvement; don't call UpdateBounds if we are not visible
21211             (or have been minimized)
21212
21213 2004-08-17 15:24  pbartok
21214
21215         * XplatUIWin32.cs:
21216           - Finished IsVisible
21217           - Added Win32GetWindowPlacement
21218
21219 2004-08-17 15:08  jackson
21220
21221         * Panel.cs: Initial checkin of the Panel
21222
21223 2004-08-17 14:25  pbartok
21224
21225         * Control.cs:
21226           - Fixed broken handling of default window sizes
21227
21228 2004-08-17 13:29  jackson
21229
21230         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
21231           has a large startup time.
21232
21233 2004-08-17 10:25  jackson
21234
21235         * HandleData.cs: union areas properly
21236
21237 2004-08-17 10:12  jackson
21238
21239         * HandleData.cs: union areas properly
21240
21241 2004-08-16 20:00  ravindra
21242
21243         * ToolBar.cs, ToolBarButton.cs: Added attributes.
21244
21245 2004-08-16 18:48  ravindra
21246
21247         * ToolBar.cs: Added attributes.
21248
21249 2004-08-16 17:17  ravindra
21250
21251         * SWF.csproj: Updated project.
21252
21253 2004-08-16 17:16  jackson
21254
21255         * XplatUIX11.cs: Check for more expose events before sending a
21256           WM_PAINT so they can all be grouped together. This makes dragging a
21257           window across another window redraw in a sane way.
21258
21259 2004-08-16 15:47  pbartok
21260
21261         * Control.cs:
21262           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
21263             support OnMouseEnter/Leave()
21264           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
21265             exposure handling
21266
21267 2004-08-16 15:46  pbartok
21268
21269         * XplatUIStructs.cs, XplatUIX11.cs:
21270           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
21271           OnMouseEnter/Leave()
21272
21273 2004-08-16 15:34  jackson
21274
21275         * XplatUIX11.cs: Group multiple expose events in HandleData, make
21276           sure messages get the message field set to WM_NULL if they are not
21277           handled.
21278
21279 2004-08-16 15:24  jackson
21280
21281         * HandleData.cs: HandleData is used for storing message information
21282           for window handles
21283
21284 2004-08-15 17:23  ravindra
21285
21286         * ColorDepth.cs: Added attribute.
21287
21288 2004-08-15 17:23  ravindra
21289
21290         * SWF.csproj: Updated project for ToolBar Control.
21291
21292 2004-08-15 17:20  ravindra
21293
21294         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
21295           control and also dos2unix format.
21296
21297 2004-08-15 17:13  ravindra
21298
21299         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
21300           ToolBarButtonClickEventArgs.cs,
21301           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
21302           ToolBarTextAlign.cs: First Implementation of ToolBar control.
21303
21304 2004-08-15 15:31  pbartok
21305
21306         * ButtonBase.cs:
21307           - First (mostly) working version
21308
21309 2004-08-13 16:15  pbartok
21310
21311         * Control.cs:
21312           - Fixed Anchor default
21313
21314 2004-08-13 15:43  pbartok
21315
21316         * Control.cs:
21317           - Changed GetCursorPos signature
21318
21319 2004-08-13 15:42  pbartok
21320
21321         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
21322           - Changed signature for GetCursorPos
21323
21324 2004-08-13 15:25  pbartok
21325
21326         * XplatUIX11.cs:
21327           - Cleanup
21328           - Fixed resizing/exposure handling
21329
21330 2004-08-13 15:22  jordi
21331
21332         * ThemeWin32Classic.cs: removes redundant code and fixes issues
21333           with tickposition
21334
21335 2004-08-13 14:55  jordi
21336
21337         * TrackBar.cs: change from wndproc to events
21338
21339 2004-08-13 13:00  jordi
21340
21341         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21342           XplatUIX11.cs: implements PointToClient (ScreenToClient)
21343
21344 2004-08-13 12:53  pbartok
21345
21346         * XplatUIWin32.cs:
21347           - Changed GetWindowPos to also provide client area size
21348           - Fixed broken prototypes for several win32 functions
21349
21350 2004-08-13 12:53  pbartok
21351
21352         * XplatUI.cs, XplatUIDriver.cs:
21353           - Changed GetWindowPos to also provide client area size
21354
21355 2004-08-13 12:52  pbartok
21356
21357         * XplatUIX11.cs:
21358           - Added generation of WM_POSCHANGED
21359           - Changed GetWindowPos to also provide client area size
21360
21361 2004-08-13 12:52  pbartok
21362
21363         * Control.cs:
21364           - Added Dispose() and destructor
21365           - Fixed resizing and bounds calculation
21366           - Fixed Layout
21367           - Added memory savings for invisible windows
21368
21369 2004-08-13 12:46  jordi
21370
21371         * TrackBar.cs: adds timer and grap window
21372
21373 2004-08-13 10:25  jackson
21374
21375         * Timer.cs: SWF Timer
21376
21377 2004-08-12 16:59  pbartok
21378
21379         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21380           - Implemented method to get current mouse position
21381
21382 2004-08-12 14:29  jordi
21383
21384         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
21385           enhancement, fix mouse problems, highli thumb, etc
21386
21387 2004-08-12 13:31  pbartok
21388
21389         * Control.cs:
21390           - Fixed Anchoring bugs
21391
21392 2004-08-12 13:01  jackson
21393
21394         * StatusBar.cs: Don't forget things
21395
21396 2004-08-12 12:54  jackson
21397
21398         * ThemeWin32Classic.cs: Handle owner draw status bars
21399
21400 2004-08-12 12:54  jackson
21401
21402         * StatusBar.cs: Implement missing properties, events, and methods.
21403           Handle mouse clicking
21404
21405 2004-08-12 10:19  jackson
21406
21407         * StatusBarPanelClickEventArgs.cs,
21408           StatusBarPanelClickEventHandler.cs: Classes for handling status
21409           bar panel click events
21410
21411 2004-08-12 10:10  jackson
21412
21413         * Control.cs: Add missing properties
21414
21415 2004-08-12 09:46  pbartok
21416
21417         * BindingsManagerBase.cs:
21418           - Name changed to BindingManagerBase.cs
21419
21420 2004-08-12 09:25  jordi
21421
21422         * ScrollableControl.cs: calls ctrlbase instead of exeception
21423
21424 2004-08-11 16:28  pbartok
21425
21426         * InputLanguageChangingEventArgs.cs:
21427           - Never check in before compiling. Fixes the last check-in
21428
21429 2004-08-11 16:26  pbartok
21430
21431         * InputLanguageChangingEventArgs.cs:
21432           - More signature fixes
21433
21434 2004-08-11 16:20  pbartok
21435
21436         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
21437           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
21438           ImageListStreamer.cs, InputLanguage.cs,
21439           InputLanguageChangedEventArgs.cs,
21440           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
21441           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
21442           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
21443           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21444           - Signature fixes
21445
21446 2004-08-11 16:16  pbartok
21447
21448         * Application.cs:
21449           - Fixed Signature
21450           - Added .Net 1.1 method
21451
21452 2004-08-11 15:25  pbartok
21453
21454         * SWF.csproj:
21455           - Fixed BindingManagerBase.cs filename
21456
21457 2004-08-11 15:22  pbartok
21458
21459         * BindingManagerBase.cs:
21460           - Was checked in with wrong filename
21461
21462 2004-08-11 14:50  pbartok
21463
21464         * SWF.csproj:
21465           - Updated
21466
21467 2004-08-11 13:41  jordi
21468
21469         * XplatUIWin32.cs: Fixes ClientRect
21470
21471 2004-08-11 13:19  pbartok
21472
21473         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21474           XplatUIX11.cs:
21475           - We had SetWindowPos and MoveWindow to set window positions and
21476             size, removed MoveWindow. We have GetWindowPos, so it made sense to
21477             keep SetWindowPos as matching counterpart
21478           - Added some X11 sanity checking
21479
21480 2004-08-11 12:59  pbartok
21481
21482         * Control.cs:
21483           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
21484             (It seems that SetBounds is just a front for SetBoundsCore and
21485              SetBoundsCore updates the underlying window system and
21486              UpdateBounds is responsible for updating the variables associated
21487              with the Control and sending the events)
21488           - Major cleanup of Size handling; we now have two sizes, client_size
21489             and bounds. Bounds defines the window with decorations, client_size
21490             without them.
21491
21492 2004-08-11 12:55  pbartok
21493
21494         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21495           - Added method to calculate difference between decorated window and
21496             raw client area
21497
21498 2004-08-11 12:54  pbartok
21499
21500         * Label.cs:
21501           - Forcing redraw on resize
21502
21503 2004-08-11 11:43  pbartok
21504
21505         * ImageList.cs:
21506           - Removed disposing of the actual images when the list is disposed
21507
21508 2004-08-11 09:13  pbartok
21509
21510         * Control.cs:
21511           - Now properly reparents windows
21512
21513 2004-08-11 08:37  pbartok
21514
21515         * Control.cs:
21516           - Duh!
21517
21518 2004-08-11 07:47  pbartok
21519
21520         * Control.cs:
21521           - Rewrote the collection stuff. Might not be as fast now, not
21522             keeping the number of children around and accessible directly, but
21523             it's more straightforward
21524
21525 2004-08-11 07:44  pbartok
21526
21527         * AccessibleObject.cs:
21528           - Fixed to match ControlCollection rewrite
21529
21530 2004-08-11 07:43  pbartok
21531
21532         * ImageList.cs:
21533           - Added missing creation of the collection list
21534
21535 2004-08-10 20:08  jackson
21536
21537         * StatusBar.cs: Get the paint message from WndProc
21538
21539 2004-08-10 19:31  jackson
21540
21541         * ThemeWin32Classic.cs: Create Brushes as little as possible
21542
21543 2004-08-10 19:20  jackson
21544
21545         * UICues.cs: Add Flags attribute
21546
21547 2004-08-10 19:19  jackson
21548
21549         * StatusBarPanel.cs: Signature cleanup
21550
21551 2004-08-10 19:10  jackson
21552
21553         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
21554           Initial implementation of status bar item drawing
21555
21556 2004-08-10 17:27  jordi
21557
21558         * TrackBar.cs: add missing methods, properties, and restructure to
21559           hide extra ones
21560
21561 2004-08-10 16:24  jackson
21562
21563         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
21564           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
21565           attribute
21566
21567 2004-08-10 13:21  jordi
21568
21569         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
21570           enhancements and standarize on win colors defaults
21571
21572 2004-08-10 12:52  jackson
21573
21574         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
21575           ThemeWin32Classic.cs: Implement DrawItem functionality
21576
21577 2004-08-10 12:47  jordi
21578
21579         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
21580
21581 2004-08-10 12:32  jordi
21582
21583         * Control.cs: throw ontextchange event
21584
21585 2004-08-10 11:43  pbartok
21586
21587         * Control.cs:
21588           - Added more to the still unfinished Dock/Anchor layout code
21589
21590 2004-08-10 11:39  pbartok
21591
21592         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
21593           - Added GetWindowPos method
21594
21595 2004-08-10 11:36  pbartok
21596
21597         * XplatUIWin32.cs:
21598           - Implemented several methods
21599
21600 2004-08-10 09:47  jackson
21601
21602         * TrackBar.cs: Allow control to handle buffering
21603
21604 2004-08-10 09:41  jackson
21605
21606         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
21607
21608 2004-08-10 09:24  jackson
21609
21610         * Label.cs, LinkLabel.cs: Let Control handle buffering.
21611
21612 2004-08-10 09:09  jackson
21613
21614         * StatusBar.cs: Let Control handle all the buffering.
21615
21616 2004-08-10 09:08  jackson
21617
21618         * Control.cs: Control will now handle the buffering code, so each
21619           control does not have to implement this.
21620
21621 2004-08-10 08:34  jackson
21622
21623         * XplatUIDriver.cs: Use default colors from the theme
21624
21625 2004-08-09 17:12  pbartok
21626
21627         * ImageList.cs:
21628           - Fixed several bugs Ravindra pointed out
21629
21630 2004-08-09 16:11  pbartok
21631
21632         * Control.cs:
21633           - Added incomplete dock layout code
21634           - Added support for mouse wheel
21635
21636 2004-08-09 16:09  pbartok
21637
21638         * XplatUIX11.cs:
21639           - Added handling for middle and right mousebutton
21640           - Added handling for mouse wheel
21641           - Added handling for key state and mouse state and position
21642           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
21643           messages
21644
21645 2004-08-09 15:40  jackson
21646
21647         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
21648           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
21649           checkin
21650
21651 2004-08-09 15:37  jackson
21652
21653         * StatusBar.cs: Initial implementation of StatusBar
21654
21655 2004-08-09 15:36  jackson
21656
21657         * ITheme.cs: Add support for drawing status bar and getting status
21658           bar item sizes
21659
21660 2004-08-09 15:35  pbartok
21661
21662         * MouseButtons.cs:
21663           - Fixed values
21664
21665 2004-08-09 15:34  jackson
21666
21667         * ThemeWin32Classic.cs: Add support for drawing status bar and get
21668           status bar item sizes
21669
21670 2004-08-09 15:21  jackson
21671
21672         * ThemeWin32Classic.cs: Use known colors for default control
21673           colours
21674
21675 2004-08-09 15:12  jackson
21676
21677         * ThemeWin32Classic.cs: Make the default font static, it is static
21678           in control so this doesn't change functionality and creating fonts
21679           is sloooooow.
21680
21681 2004-08-09 14:56  pbartok
21682
21683         * X11Structs.cs:
21684           - Added GrabMode enum
21685
21686 2004-08-09 14:55  pbartok
21687
21688         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21689           - Removed Run method, was only required for initial development
21690
21691 2004-08-09 14:51  pbartok
21692
21693         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
21694           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
21695           capture
21696
21697 2004-08-09 13:48  pbartok
21698
21699         * XplatUIX11.cs:
21700           - Fixed default sizing for child windows
21701
21702 2004-08-09 12:56  pbartok
21703
21704         * XplatUIX11.cs:
21705           - Added generation of WM_DESTROY message
21706           - Added handling of window manager induced shutdown
21707
21708 2004-08-09 11:31  jackson
21709
21710         * ThemeWin32Classic.cs: New names for control properties
21711
21712 2004-08-09 11:25  jackson
21713
21714         * Control.cs: Use new color names
21715
21716 2004-08-09 11:02  jackson
21717
21718         * XplatUI.cs: Get default window properties from the theme
21719
21720 2004-08-09 11:01  jackson
21721
21722         * ITheme.cs: The theme engine now controls default window
21723           properties
21724
21725 2004-08-09 11:00  jackson
21726
21727         * ThemeWin32Classic.cs: Add default window color properties
21728
21729 2004-08-09 10:17  jackson
21730
21731         * ThemeWin32Classic.cs: Use correct default back color
21732
21733 2004-08-09 10:05  jackson
21734
21735         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
21736           the theme now.
21737
21738 2004-08-09 09:56  jackson
21739
21740         * XplatUI.cs: Remove defaults, these are handled by the theme now.
21741
21742 2004-08-09 09:54  jackson
21743
21744         * Control.cs: Get default properties from the theme.
21745
21746 2004-08-09 09:53  jackson
21747
21748         * ITheme.cs: Themes now handle default control properties
21749
21750 2004-08-09 09:53  jackson
21751
21752         * ThemeWin32Classic.cs: Themes now handle default control
21753           properties so coloring will be consistent
21754
21755 2004-08-08 16:54  jordi
21756
21757         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
21758
21759 2004-08-08 15:08  jordi
21760
21761         * XplatUIX11.cs: fixes keyboard crash
21762
21763 2004-08-08 13:47  jordi
21764
21765         * Label.cs: add cvs header info
21766
21767 2004-08-08 12:09  jackson
21768
21769         * ThemeWin32Classic.cs: Add pen_buttonface
21770
21771 2004-08-08 11:52  jordi
21772
21773         * Label.cs, LinkLabel.cs: [no log message]
21774
21775 2004-08-08 11:34  jordi
21776
21777         * ThemeWin32Classic.cs: Use Windows Standard Colours
21778
21779 2004-08-07 17:32  jordi
21780
21781         * TrackBar.cs: throw exceptions of invalid enums values
21782
21783 2004-08-07 17:31  jordi
21784
21785         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
21786           draw method name
21787
21788 2004-08-07 16:56  jackson
21789
21790         * HorizontalAlignment.cs: Initial checkin
21791
21792 2004-08-07 13:16  jordi
21793
21794         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
21795           methods
21796
21797 2004-08-07 13:05  jordi
21798
21799         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
21800           GetSysColor defines
21801
21802 2004-08-06 18:01  pbartok
21803
21804         * ThemeWin32Classic.cs:
21805           - Fixed some rounding issues with float/int
21806
21807 2004-08-06 18:00  jackson
21808
21809         * DockStyle.cs, AnchorStyles.cs:
21810
21811                   Add flags and serializable attributes.
21812
21813 2004-08-06 17:46  pbartok
21814
21815         * XplatUIX11.cs:
21816           - Implemented GetParent
21817
21818 2004-08-06 17:18  pbartok
21819
21820         * TrackBar.cs:
21821           - Fixed some rounding issues with float/int
21822
21823 2004-08-06 17:17  pbartok
21824
21825         * X11Structs.cs, XplatUIX11.cs:
21826           - Fixed Refresh and Invalidate
21827
21828 2004-08-06 15:30  pbartok
21829
21830         * Control.cs, X11Structs.cs, XplatUIX11.cs:
21831           - Fixed recursive loop when resizing
21832           - Improved/fixed redrawing on expose messages
21833
21834 2004-08-06 09:53  jordi
21835
21836         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
21837           keyboard navigation
21838
21839 2004-08-06 08:02  pbartok
21840
21841         * X11Structs.cs, XplatUIX11.cs:
21842           - Fixed reparenting
21843           - Fixed window border creation
21844
21845 2004-08-05 15:38  pbartok
21846
21847         * XplatUIX11.cs:
21848           - Attempted fix for reparenting problems
21849
21850 2004-08-04 15:14  pbartok
21851
21852         * Control.cs:
21853           - Fixed Invalidation bug (calculated wrong client area)
21854           - Added ClientSize setter
21855
21856 2004-08-04 15:13  pbartok
21857
21858         * Form.cs:
21859           - Added AutoScale properties
21860
21861 2004-08-04 15:13  pbartok
21862
21863         * SWF.csproj:
21864           - Added latest files
21865
21866 2004-08-04 14:11  pbartok
21867
21868         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
21869           XplatUIX11.cs:
21870           - Added Invalidate handling
21871
21872 2004-08-03 17:09  jordi
21873
21874         * XplatUIDriver.cs: fixes spelling mistake
21875
21876 2004-07-27 09:53  jordi
21877
21878         * TrackBar.cs: fixes trackbar events, def classname, methods
21879           signature
21880
21881 2004-07-27 09:29  jordi
21882
21883         * ScrollBar.cs: fixes scrollbar events
21884
21885 2004-07-27 04:38  jordi
21886
21887         * Control.cs: changes to be able to run winforms samples
21888
21889 2004-07-26 11:42  jordi
21890
21891         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
21892           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
21893
21894 2004-07-26 05:41  jordi
21895
21896         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
21897           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
21898           implementation
21899
21900 2004-07-22 09:22  jordi
21901
21902         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
21903           check link overlapping, implement events, and fixes
21904
21905 2004-07-21 10:28  jordi
21906
21907         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
21908
21909 2004-07-21 10:19  jordi
21910
21911         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
21912           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
21913           LinkLabelLinkClickedEventArgs.cs,
21914           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
21915           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
21916           implementation
21917
21918 2004-07-19 13:09  jordi
21919
21920         * Control.cs, Label.cs: label control re-written: added missing
21921           functionlity, events, and properties
21922
21923 2004-07-19 10:49  jordi
21924
21925         * Control.cs: fixes SetBounds logic
21926
21927 2004-07-19 01:29  jordi
21928
21929         * Control.cs: Call RefreshWindow only if the window has created
21930
21931 2004-07-15 14:05  pbartok
21932
21933         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
21934           - Implemented ImageList and ImageList.ImageCollection classes
21935           - Added ColorDepth enumeration
21936           - Updated SWF VS.Net project
21937
21938 2004-07-15 11:06  jordi
21939
21940         * XplatUIStructs.cs: added MsgButons enum
21941
21942 2004-07-15 11:03  jordi
21943
21944         * Control.cs: added basic mouse handeling events
21945
21946 2004-07-15 03:38  jordi
21947
21948         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
21949           Vertical TrackBar control implementation
21950
21951 2004-07-13 09:33  jordi
21952
21953         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
21954
21955 2004-07-13 09:31  jordi
21956
21957         * Control.cs, Form.cs: commit: new properties and fixes form size
21958           problems
21959
21960 2004-07-09 14:13  miguel
21961
21962         * ProgressBar.cs: Spelling
21963
21964 2004-07-09 11:25  pbartok
21965
21966         * ProgressBar.cs:
21967           - Removed usage of Rectangle for drawing. Miguel pointed out it's
21968           faster
21969
21970 2004-07-09 11:17  miguel
21971
21972         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
21973
21974                 * ProgressBar.cs: Fixed spelling for `block'
21975
21976                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
21977                 style guidelines.
21978
21979                 Avoid using the += on rect.X, that exposed a bug in the compiler.
21980
21981 2004-07-08 23:21  pbartok
21982
21983         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
21984           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
21985           BaseCollection.cs, Binding.cs, BindingContext.cs,
21986           BindingMemberInfo.cs, BindingsCollection.cs,
21987           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
21988           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
21989           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
21990           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
21991           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
21992           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
21993           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
21994           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
21995           FrameStyle.cs, GiveFeedbackEventArgs.cs,
21996           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
21997           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
21998           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
21999           InputLanguageChangedEventArgs.cs,
22000           InputLanguageChangedEventHandler.cs,
22001           InputLanguageChangingEventArgs.cs,
22002           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
22003           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
22004           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
22005           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
22006           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
22007           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
22008           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
22009           QueryAccessibilityHelpEventArgs.cs,
22010           QueryAccessibilityHelpEventHandler.cs,
22011           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
22012           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
22013           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
22014           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
22015           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
22016           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
22017           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
22018           XplatUIX11.cs, lang.cs:
22019           - Initial check-in
22020