2006-12-16 Daniel Nauck <dna@mono-project.de>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-12-16  Daniel Nauck  <dna@mono-project.de>
2
3         * ListViewGroup.cs: fixed DefaultValueAttribute value
4
5 2006-12-16  Daniel Nauck  <dna@mono-project.de>
6
7         * AutoCompleteStringCollection.cs: add new AutoCompleteStringCollection 2.0 class
8
9 2006-12-15  Miguel de Icaza  <miguel@novell.com>
10
11         * Button.cs, ComboBox.cs, ScrollBar.cs, UserControl.cs,
12         TextBoxBase.cs, ListView.cs, ContainerControl.cs,
13         ScrollableControl.cs: Add a handful of methods that are
14         overwritten in 2.0 
15
16 2006-12-15  Chris Toshok  <toshok@ximian.com>
17
18         * XplatUIWin32.cs: initial implementation of the Reversible
19         drawing functions.  there are some problems.  DrawReversibleFrame
20         doesn't seem to work at all for Dashed FrameStyle, and in the
21         Thick case there are drawing errors at the corners (we probably
22         need to bind Rectangle instead of doing moveto/lineto's.)
23
24 2006-12-16  Andreia Gaita  <avidigal@novell.com>
25         
26         * SendKeys.cs: Implemented. SendKeys uses a new method in XPlatUI, SendInput, 
27         to send blocks of key messages. Send accumulates keys to send with Flush, 
28         while SendWait sends all keys immediately.
29                 
30         * XplaUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs, 
31         XplatUIX11.cs,  XplatUIX11-new.cs:
32         - Define SendInput and stubs for OSX and X11, implements Win32 with a call
33         to Win32 SendInput.
34         - Added INPUT support structures to XplatUIWin32 for Win32SendInput
35         
36         Tests:  It seems ms.net is hooking the keyboard to implement this, so doing unit
37         testing for ms.net on this class is very tricky, as the tests run too fast 
38         to allow the hook to release, essentially freezing the keyboard and the 
39         test. So, barring a win32 miracle, they'll be commited in the ms-notworking     
40         category :p
41
42 2006-12-16  Daniel Nauck  <dna@mono-project.de>
43
44         * Padding.cs: fixed serialization compability to MS ("_var" field names),
45                         added missing attributes.
46  
47 2006-12-15  Daniel Nauck  <dna@mono-project.de>
48
49         * ListViewGroup.cs: Added missing attributes.
50         * ListViewGroupCollection.cs: Added missing attributes.
51
52 2006-12-15  Daniel Nauck  <dna@mono-project.de>
53
54         * ListViewItem.cs: fixed ListViewSubItem text property.
55
56 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
57         
58         * Control.cs: Added missing 2.0 attributes
59         
60 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
61         
62         * MdiClient.cs: Added missing 2.0 attribute.
63         * MonthCalendar.cs: Added some missing 2.0 attributes 
64         and properties.
65         
66 2006-12-15  Daniel Nauck  <dna@mono-project.de>
67
68         * ListView.cs: implemented ListViewItemCollection Add 2.0 support.
69
70 2006-12-15  Jonathan Pobst  <monkey@jpobst.com>
71
72         * MainMenu.cs: Add the new 2.0 constructor to help out people
73         using the MainMenu in VS2005.
74
75 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
76         
77         * MdiChildContext.cs: Removed it, no longer used.
78         * MdiClient.cs: Added missing 2.0 attributes.
79         
80 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
81         
82         * InternalWindowManager.cs: Fix a NullRef with previous 
83         changes for toolwindows.
84         
85 2006-12-15  Rolf Bjarne Kvinge  <RKvinge@novell.com>
86
87         * Control.cs: 
88         - Added AfterTopMostControl to allow for certain controls 
89         to always stay on top when normal controls are brought to 
90         front.
91         
92         * XplatUIWin32.cs: 
93         - (DrawInversibleRectangle): Get window rectangle from Win32 
94         in stead of from control, since Win32 doesn't calculate
95         screen coords correctly from control's Location if it 
96         have docked siblings.
97         
98         * MdiWindowManager.cs:
99         - Correct the control menu popup location when clicked on
100         the maximized form icon. (fixes #80223.1)
101         - Don't show moving rectangle if mouse hasn't moved from
102         the original clicked point.
103         - Removed FormGotFocus handler (not used).
104         - Calculate the control buttons location from the main
105         window's size and not client size (fixes #79770).
106         - Form is now closed when the form icon is double-clicked
107         (fixes #79775). 
108         - Correct NCCalcSize numbers a little bit (fixes #80223.2)
109         
110         * InternalWindowManager.cs:
111         - Moved some MDI-only methods to MdiWindowManager.
112         - Removed unused properties and methods.
113         - Unified method naming for methods handling wm messages.
114         - Moved all message handling to seperate methods for
115         each message.
116         
117         * ThemeWin32Classic.cs:
118         - DrawManagedWindowDecorations now draws the title bar 
119         with a gradient brush.
120         - Add a CPDrawButtonInternal that allows us to specify
121         light, normal and dark colors for the buttons (control 
122         buttons for MDI children were drawn with the same light
123         color as the background, therefore loosing the 3D effect).
124         
125         * SizeGrip.cs:
126         - Add a CapturedControl property that is used to 
127         determine the control to resize (defaults to parent). 
128         Needed for MdiClient, since its SizeGrip's parent is
129         MdiClient, but the control to resize is the main form.
130         
131         * MdiClient.cs:
132         - Set SizeGrip's CapturedControl to the main form in order
133         to resize the main form and not the MdiClient.
134         - Override AfterTopMostControl to leave the scrollbars 
135         always on top.
136
137 2006-12-15  Daniel Nauck  <dna@mono-project.de>
138
139         * ListView.cs: fixed ListViewItemCollection AddRange and
140                         implemented ListViewItemCollection AddRange 2.0 support.
141
142 2006-12-15  Daniel Nauck  <dna@mono-project.de>
143
144         * ListViewGroup.cs: Add.
145         * ListViewGroupCollection.cs: Add
146         * ListView.cs: Add ListViewGroup (Group) and ShowGroups 2.0 support.
147         * ListViewItem.cs: Add ListViewgroup (Group), ListViewGroups constructors and
148                                 stub for ImageKey 2.0 support.
149
150 2006-12-14  Mike Kestner  <mkestner@novell.com>
151
152         * ListView.cs: add text padding to the autocalculation for columns
153         of width -2.  Fixes #80207.
154  
155 2006-12-14  Mike Kestner  <mkestner@novell.com>
156
157         * ListView.cs: add some index guarding for partial row navigation 
158         logic.  Fixes #80250.
159
160 2006-12-14  Mike Kestner  <mkestner@novell.com>
161
162         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
163         are added or inserted to the collection.  Fixes #81099.
164
165 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
166
167         * MenuAPI.cs: Closes menu when right click out side of popup
168         it fix problem in ContextMenu and MainMenu. Fixes #80252.
169
170 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
171
172         * ListViewItem.cs: Fix dumb error.
173
174         * ListView.cs: Add Find and ContainsKey methods in 
175         ListViewItemCollection, and also return true for IsReadOnly
176         and IsFixedSize (changes for 2.0). 
177
178 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
179
180         * Control.cs: Allow Region to be set to null.
181
182 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
183
184         * MdiWindowManager.cs: Remove unused (commented out) code.
185         * Form.cs: When the MdiChild is maximized, the form needs 
186         WM_NCMOUSELEAVE, so request it.
187         * InternalWindowManager.cs: 
188         - Added tooltips to control buttons.
189         - Removed duplicated control button handling code.
190         - Removed unused (commented out) code.
191         
192 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
193
194         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
195         was used because we must set cursor without trigger ChangeCursor event
196         and without change Cursor control property. Fixes #79963.
197
198 2006-12-12  Andreia Gaita  <avidigal@novell.com>
199         
200         * Control.cs: Check if Region setter value is null, and ignore
201
202 2006-12-12  Jackson Harper  <jackson@ximian.com>
203
204         * TextControl.cs: We were almost always drawing one more line then
205         needed, since the GetLineByPixel will return the last line found
206         at that pixel. In most cases though, we were invalidating up to
207         the junction between two lines.
208         - Improve debug code.
209
210 2006-12-12  Chris Toshok  <toshok@ximian.com>
211
212         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
213         and FillReversibleRectangle.
214
215         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
216         and FillReversibleRectangle.
217
218         * XplatUIWin32.cs: add stubs which do nothing for
219         DrawReversibleFrame, DrawReversibleLine, and
220         FillReversibleRectangle.
221
222         * XplatUIOSX.cs: add stubs which raise NIE for
223         DrawReversibleFrame, DrawReversibleLine, and
224         FillReversibleRectangle.
225
226         * XplatUIX11.cs: add working implementation for
227         DrawReversibleFrame, DrawReversibleLine, and
228         FillReversibleRectangle.
229         
230         * ControlPaint.cs: implement DrawReversibleFrame,
231         DrawReversibleLine, and FillReversibleRectangle, by calling into
232         the appropriate XplatUI method.
233
234 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
235
236         * Form.cs: Make MdiClient have the focus even if it's
237         not selectable, since it should receive WM_KEY* and WM_MOUSE 
238         messages. Fixes #79907.
239         
240 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
241
242         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
243         queried after the window is created.
244         
245         * XplatUIX11.cs: Added SendParentNotify to implement 
246         WM_PARENTNOTIFY logic. Fixes #79965.
247         
248         * Control.cs: Added MakeParam.
249         
250 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
251
252         * MdiClient.cs: Resume Layout before setting window
253         states (fixes #80201).
254
255 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
256
257         * MenuAPI.cs: Deselect a menu item after performing
258         the click (fixes #80197).
259
260 2006-12-11  Jackson Harper  <jackson@ximian.com>
261
262         * TextBoxBase.cs: We need to cap this value, since Maximum -
263         ViewPortHeight can be less than zero.
264         - Only do selection with the left mouse button.
265         * TextBox.cs: Don't tell the world that we have a context menu.
266         * Control.cs: New method so that we can control whether or not the
267         context menu is visible outside MWF.
268
269 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
270
271         * ToolBarButton.cs: Fix text positon. 
272
273 2006-12-11  Miguel de Icaza  <miguel@novell.com>
274
275         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
276
277         * Control.cs (DoubleBuffered): Add implementation.
278
279         * Application.cs (OpenForms): Add.
280
281 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
282
283         * Form.cs: Use opacity instead of Opactiy to determine if we need
284         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
285
286 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
287
288         * Control.cs: Fix NRE if Control.Site was set to null.
289
290 2006-12-11  Chris Toshok  <toshok@ximian.com>
291
292         * Control.cs: ControlCollection.Remove should return if the arg is
293         null, and ControlCollection.SetChildIndex should raise a ANE.
294
295 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
296
297         * Control.cs: Verify value set for Dock property. Code formatting
298         updates.
299
300 2006-12-11  Jackson Harper  <jackson@ximian.com>
301
302         * TextControl.cs: Draw the caret and the selection when a flag is
303         set on the owner.
304         * TextBoxBase.cs: We want to draw the caret and the selection for
305         TextBox but not for TextBoxBase.
306         - If the window is resized and scrolling is no longer needed (the
307         whole doc is visible) set the scroll position to zero.
308         - The default SelectWord (the one TextBox uses) should move the
309         caret to the end of the word.
310         - SelectAll moves the caret to the end of the selection.
311         * TextBox.cs: We don't selectall on focus, we just do it when the
312         control is created.
313         
314 2006-12-11  Mike Kestner  <mkestner@novell.com>
315
316         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
317
318 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
319
320         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
321         2.0 support.
322         * ListViewItem.cs: Add Name 2.0 property.
323
324 2006-12-11  Andreia Gaita  <avidigal@novell.com>
325
326         * TabControl.cs: Set visibility on selected or default tab 
327         when tabcontrol handle is created, so that it's contents
328         actually show up (duh). Fixes #80193
329         Don't redraw the control if there is no handle created, as
330         the selected index might be completely invalid. Added some tests
331         to check for this.
332
333 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
334
335         * ToolBar.cs: Uses maximun width and height of all buttons as 
336         button rectangle when ButtonSize specified, it looks strange but
337         is what happens in Win32. Fixes #80189.
338
339 2006-12-11  Jackson Harper  <jackson@ximian.com>
340
341         * TextControl.cs: Need to track undo levels ourself, since
342         compound actions will mess them up.
343
344 2006-12-10  Andreia Gaita  <avidigal@novell.com>
345
346         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
347         SelectedIndex value is changed (even if it's not valid).
348         Reset SelectedIndex to 0 when the handle is created and if
349         the current index is invalid.
350         Fixes SelectdeIndex unit tests and #80128
351
352 2006-12-08  Chris Toshok  <toshok@ximian.com>
353
354         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
355         calls EndEdit, it needs to be called before we set current_cell to
356         its new value.  Otherwise, we end up committing the value in the
357         textbox to the new cell as well.  Fixes bug #80160.
358
359 2006-12-08  Chris Toshok  <toshok@ximian.com>
360
361         * Form.cs (set_CancelButton): if the button's DialogResult is
362         None, set it to Cancel.  Fixes bug 80180.
363
364 2006-12-08  Jackson Harper  <jackson@ximian.com>
365
366         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
367         to watch ourselves when setting the canvas size and setting the
368         scrollbar values.
369
370 2006-12-08  Chris Toshok  <toshok@ximian.com>
371
372         * DataGrid.cs: comment out the two MakeTransparent calls for the
373         time being so people using trunk (and not 1.2.2) on windows can
374         actually use the datagrid.  This deals with bug #80151.
375
376 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
377
378         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
379         Graphics.DrawImage (image, int, int, int, int) overload instead
380         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
381         the dpi difference and was blurring images it drew.
382         [Fixes bug #79960]
383
384 2006-12-08  Chris Toshok  <toshok@ximian.com>
385
386         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
387         rowcnt is 0 (such as with an empty datasource), and make sure we
388         initialize not_usedarea.Y to cells.Y, so we don't draw over the
389         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
390
391 2006-12-08  Chris Toshok  <toshok@ximian.com>
392
393         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
394         grid.
395
396 2006-12-08  Chris Toshok  <toshok@ximian.com>
397
398         [ Fixes bug #80167 ]
399         
400         * ThemeWin32Classic.cs: don't draw the image if the button's flat
401         style is FlatStyle.System.
402
403         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
404         ButtonBase.flat_style private, and switch uses of it to the public
405         property.
406         
407 2006-12-08  Chris Toshok  <toshok@ximian.com>
408
409         [ Fixes bug #80121 ]
410         
411         * ThemeWin32Classic.cs: center the caption text in the datagrid
412         when we draw it.
413
414         * DataGrid.cs: lessen the amount we add to the caption height from
415         6 to 2.  6 was making it huge.
416
417 2006-12-08  Andreia Gaita  <avidigal@novell.com>
418
419         * UpDownBase: Handle MouseWheel call directly instead of capturing
420         the inner textbox's OnMouseWheel. Fixes #80166
421
422 2006-12-08  Jackson Harper  <jackson@ximian.com>
423
424         * TextControl.cs: We need to invalidate the textbox when we empty
425         it (how had this not been discovered before?)
426
427 2006-12-08  Jackson Harper  <jackson@ximian.com>
428
429         * TextBoxBase.cs: Reworked the mouse down code so I could get it
430         to behave like MS, we now ignore the eventargs.Click and just
431         track state ourself, which we were already doing anyways.
432         - Constrain the double click handler to the double click size.
433         
434 2006-12-08  Chris Toshok  <toshok@ximian.com>
435
436         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
437         direction if that scrollbar isn't shown.  fixes bug #80158.
438
439 2006-12-08  Andreia Gaita  <avidigal@novell.com>
440
441         * NumericUpDown.cs: Update value on getter. Fixes #79950
442
443 2006-12-08  Chris Toshok  <toshok@ximian.com>
444
445         * MenuItem.cs: add back in the event cloning code.  I didn't know
446         how to do it in the face of the EventHandlerList work i'd done
447         last week.  Fixes bug #80183.
448
449 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
450
451         * Control.cs: Add an invalidate to the BackgroundImage setter.
452         [Fixes 80184]
453
454 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
455
456         * ToolStrip*: Add some small properties reported by MoMA, fix event
457         firing and default properties based off of unit tests, and add some
458         attributes based off of the class status page.
459
460 2006-12-07  Jackson Harper  <jackson@ximian.com>
461
462         * TextBoxBase.cs: Take HideSelection into account when determining
463         whether or not to show the selection.
464         * RichTextBox.cs: After inserting the RTF into the document move
465         the cursor to the beginning of the document.
466
467 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
468
469         * Control.cs: Remove static ArrayList "controls" which maintained
470         a reference to every control created.
471         * Application.cs: Create a static FormCollection to maintain a reference
472         to every form created.  Use it in places that formerly enumerated through
473         the controls one looking for forms.
474         * Form.cs: Add and remove self from above FormCollection.
475
476 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
477
478         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
479           not libgdk (though it makes me wonder why I didn't have any
480           problems)
481
482 2006-12-07  Chris Toshok  <toshok@ximian.com>
483
484         [ you had to know this was coming after that last commit...]
485         
486         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
487         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
488         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
489         XCopyArea).
490
491 2006-12-07  Chris Toshok  <toshok@ximian.com>
492
493         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
494         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
495         all the behavior we need for double buffering.
496
497         * XplatUIDriver.cs: implement the 3 double buffer methods using a
498         client side Bitmap, just like the old Control-based double buffer
499         code did.  The methods are virtual, so each XplatUI driver
500         subclass can replace the implementation to use a faster, platform
501         specific approach.
502
503         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
504         double buffer code, and clean things up a bit in the process.
505
506 2006-12-06  Chris Toshok  <toshok@ximian.com>
507
508         * Control.cs: reindent WndProc.
509
510 2006-12-06  Chris Toshok  <toshok@ximian.com>
511
512         [ I wanna be like BenM when I grow up ]
513         
514         * Hwnd.cs: create a single static Graphics object on the static
515         Bitmap we create.  use this for our text measurements.
516
517         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
518         This was causing us to allocate a backbuffer for every control,
519         even when it wasn't flagged as double buffered.  Instead use the
520         single graphics instance.  This might have implications for
521         multithreaded applications.  If we run into problems we can switch
522         to creating 1 Graphics per control, on the static Hwnd bitmap.
523
524         this change nets us a 7M savings in private dirty mappings when
525         running FormsTest.exe.
526
527 2006-12-06  Chris Toshok  <toshok@ximian.com>
528
529         * ListView.cs: the BackgroundImage override is just to set
530         attributes.  chain up to base.BackgroundImage.
531
532         * RichTextBox.cs: same.
533
534         * ToolBar.cs: same, but we need to also redraw the toolbar when it
535         changes, so instead a handler for BackgroundImageChanged.
536         
537         * Control.cs: make background_image private.
538
539 2006-12-06  Chris Toshok  <toshok@ximian.com>
540
541         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
542         sure we even need this assignment, but roll with it for now.
543
544         * Control.cs: make the cursor field private.
545
546 2006-12-06  Chris Toshok  <toshok@ximian.com>
547
548         * Form.cs: we don't need to explicitly set ImeMode to
549         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
550         behavior in the face of ImeMode.Inherit.
551
552         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
553         change the ctor's assignment to use ImeMode instead of ime_mode.
554
555         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
556         ImeModeInherit.  Only check for the parent's imemode (and return
557         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
558         This fixes the button unit test, which sets both ImeMode and
559         DefaultImeMode to ImeMode.Disable.
560
561         also make the ime_mode field private.
562
563 2006-12-06  Chris Toshok  <toshok@ximian.com>
564
565         * Control.cs: make control_style private.
566
567         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
568         setting the styles to true, then setting them to false instead of
569         reverting to their previous values.
570
571         also, call SetStyle on the scrollbars instead of using
572         control_style directly.
573
574 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
575
576         * FormCollection.cs: Implement. [2.0]
577
578 2006-12-06  Chris Toshok  <toshok@ximian.com>
579
580         * Control.cs: make tab_stop private.
581
582         * Label.cs: set TabStop, not tab_stop.  reformat some event
583         add/remove methods to make them more compact.
584
585 2006-12-06  Chris Toshok  <toshok@ximian.com>
586
587         * RadioButton.cs: fix TabStop handling.
588
589 2006-12-06  Chris Toshok  <toshok@ximian.com>
590
591         * TextBox.cs: remove the explicit assignments to has_focus.
592         Control does that.
593
594         * ButtonBase.cs: remove the assignment to has_focus.  Control will
595         manage that.
596         
597 2006-12-06  Chris Toshok  <toshok@ximian.com>
598
599         * ButtonBase.cs: remove all uses of is_enabled from this code.
600         it's always true when any of the code containing the checks is
601         executed.
602
603 2006-12-06  Chris Toshok  <toshok@ximian.com>
604
605         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
606         with different semantics (some are present in both 1.1 and 2.0
607         profiles) so that we match MS's behavior in our unit tests.
608
609 2006-12-06  Jackson Harper  <jackson@ximian.com>
610
611         * TextControl.cs: Make this operation undoable.
612         * TextBoxBase.cs: Factor the border width into the preferred
613         height.
614         - implement Modified as per the spec.
615
616 2006-12-06  Chris Toshok  <toshok@ximian.com>
617
618         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
619
620 2006-12-06  Chris Toshok  <toshok@ximian.com>
621
622         * Control.cs: make right_to_left and context_menu fields private.
623
624 2006-12-06  Chris Toshok  <toshok@ximian.com>
625
626         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
627         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
628         Control.child_controls private.  switch all uses over to
629         Control.Controls.
630
631 2006-12-06  Chris Toshok  <toshok@ximian.com>
632
633         * System.Windows.Forms/GroupBox.cs,
634         System.Windows.Forms/AccessibleObject.cs,
635         System.Windows.Forms/ErrorProvider.cs,
636         System.Windows.Forms/Control.cs,
637         System.Windows.Forms/UpDownBase.cs,
638         System.Windows.Forms/ScrollBar.cs,
639         System.Windows.Forms/DateTimePicker.cs,
640         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
641         System.Windows.Forms/ToolTip.cs,
642         System.Windows.Forms/RadioButton.cs,
643         System.Windows.Forms/LinkLabel.cs,
644         System.Windows.Forms/Splitter.cs,
645         System.Windows.Forms/TextBoxBase.cs,
646         System.Windows.Forms/ToolStripTextBox.cs,
647         System.Windows.Forms/ContainerControl.cs,
648         System.Windows.Forms/ThemeWin32Classic.cs,
649         System.Windows.Forms/SizeGrip.cs,
650         System.Windows.Forms/ToolStripDropDown.cs,
651         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
652         private.  switch all uses over to Control.Parent.
653
654 2006-12-06  Chris Toshok  <toshok@ximian.com>
655
656         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
657         Control does this before calling emitting these events.
658
659         * TabControl.cs: same.
660
661         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
662         Control.client_rect.
663
664         * ButtonBase.cs: use the ClientSize property instead of the
665         client_size field.
666
667         * ScrollableControl.cs: same.
668
669         * Control.cs: another pass at making properties private.  also,
670         move the initialization of tab_stop to the ctor.
671
672 2006-12-05  Andreia Gaita <avidigal@novell.com>
673
674         * TabControl.cs: Let the selected index be set freely if the 
675         control handle is not yet created.
676
677 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
678
679         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
680         internal until I can rewrite DefaultLayout.
681         * ToolStrip.cs: Fix build error and some general cleaning.
682         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
683         Fix build errors caused by making some of Control's fields private.
684
685 2006-12-05  Jackson Harper  <jackson@ximian.com>
686
687         * TextControl.cs: Redo Insert a little so that it use IndexOf
688         instead of Split, this prevents it from messing up on things like
689         \n\n\n. Also more effecient since the split array doesn't need to
690         be created.
691         * TextBoxBase.cs: AppendText doesnt handle multiline and non
692         multiline text differently, this is the first of many fixes that
693         will make multiline/non-multiline the same thing as far as the
694         TextBoxBase is concerned.
695         - Don't split the text and insert lines, this can lose some line
696         endings (like is the last line a soft or hard break). Instead use
697         the new Insert.
698         - Fix an off by one when combining all the lines in the Text
699         getter.
700         - Remove separate multiline handling from the Text getter/setter.
701
702 2006-12-05  Chris Toshok  <toshok@ximian.com>
703
704         * ButtonBase.cs: a few changes:
705
706         - don't reinitialize internal Control fields in the ctor when they
707         have the same values as Control sets them.
708
709         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
710         this before calling those methods.
711
712         - we don't need to call Refresh for anything.  use Invalidate
713         instead.
714
715         - OnEnabledChanged doesn't need to redraw at all - Control.cs
716         calls Refresh in its OnEnabledChanged.
717         
718         - several of the events we were registered for in the ctor to
719         redraw ourselves already include calls to Invalidate in the
720         property setters that raise the events.  remove the extra
721         invalidation.
722
723         - reformat a switch statement that was 83274658 columns wide.
724         
725 2006-12-05  Mike Kestner  <mkestner@novell.com>
726
727         * ComboBox.cs: fix a unit test regression from a TextBox
728         SelectionLength return of -1 when there's no selection.  
729
730 2006-12-05  Chris Toshok  <toshok@ximian.com>
731
732         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
733         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
734         cleaning up some of the internal Control fields being used by
735         subclasses.
736
737 2006-12-05  Mike Kestner  <mkestner@novell.com>
738
739         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
740         listbox after AddImplicit calls since it defaults to hidden. Add a 
741         hack to preserve requested heights across DropDownStyle changes.
742
743 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
744
745         * PropertyGrid.cs: Hide FindFirstItem method from public API.
746
747 2006-12-05  Chris Toshok  <toshok@ximian.com>
748
749         * DataGridView.cs: fix compiler warnings.
750
751         * PrintControllerWithStatusDialog.cs: same.
752
753         * ToolBar.cs: same.
754
755         * FolderBrowserDialog.cs: same.
756
757         * Splitter.cs: same.
758
759         * DataGridViewComboBoxCell.cs: same.
760
761         * XplatUIWin32.cs: same.
762
763         * PictureBox.cs: same.
764
765         * Win32DnD.cs: same.
766
767         * PageSetupDialog.cs: same.
768
769         * FileDialog.cs: same.
770
771         * PrintDialog.cs: same.
772
773         * DataGridTextBoxColumn.cs: same.
774
775         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
776
777 2006-12-05  Chris Toshok  <toshok@ximian.com>
778
779         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
780         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
781         System.ComponentModel.EventHandlerList work.
782
783 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
784
785         * DrawTreeNodeEventArgs.cs: Added.
786
787 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
788         
789         * InternalWindowManager.cs: Remove an unused field.
790         
791 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
792
793         * InternalWindowManager.cs:
794         - Save the point where the title bar is clicked.
795         
796         * MdiWindowManager.cs:
797         - Only allow moving of the window as long as the 
798         clicked point on the title bar does not get out of
799         MdiClient's rectangle. Fixes #79982.
800         
801         * MdiClient.cs:
802         - Added Horizontal/VerticalScrollbarVisible.
803         - Simplified the scrollbar sizing algorithm.
804         - Cache the difference in scrolled value in
805         H/VBarValueChanged and move the calculation out
806         of the for loop.
807
808 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
809
810         * Control.cs: Make the Console.WriteLine in WndProc 
811         write more info.
812
813 2006-12-05  Chris Toshok  <toshok@ximian.com>
814
815         * ToolStripManager.cs, ToolStripButton.cs,
816         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
817         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
818         ToolStripSplitButton.cs, ToolStripSeparator.cs,
819         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
820         ToolStripProgressBar.cs, ToolStripContainer.cs,
821         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
822         to using System.ComponentModel.EventHandlerList.
823
824 2006-12-04  Chris Toshok  <toshok@ximian.com>
825
826         * LinkLabel.cs: fix up compiler warnings.
827
828         * TableLayoutSettings.cs: same.
829
830         * TreeView.cs: same.
831
832         * ToolBar.cs: same.
833
834         * TabControl.cs: same.
835
836         * RichTextBox.cs: same.
837
838         * ListViewItem.cs: same.
839
840         * PropertyGrid.cs: same.
841
842         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
843
844         * ToolTip.cs same.
845
846         * TextRenderer.cs: fix up compiler warnings.
847
848         * Label.cs: same.
849
850         * Form.cs: corcompare fixes.
851
852         * PictureBox.cs: fix up compiler warnings.
853
854         * ImageListStreamer.cs: same.
855
856         * TrackBar.cs: corcompare fix.
857
858         * Control.cs: fix up compiler warnings.
859
860         * SplitterPanel.cs: same.
861
862         * NumericTextBox.cs: same.
863
864         * ImageList.cs: same.
865
866         * StatusStrip.cs: same.
867
868         * ProgressBar.cs: corcompare fix.
869
870         * ToolStripButton.cs: fix up compiler warnings.
871
872         * ToolStripStatusLabel.cs: same.
873
874         * ToolStripSplitButton.cs: same.
875
876         * ToolStripSeparator.cs: same.
877
878         * ToolStripProgressBar.cs: same.
879
880         * ToolStripDropDownMenu.cs: same
881
882         * ToolStripDropDown.cs: same.
883
884         * ToolStripDropDownButton.cs: same.
885
886         * ToolStrip.cs: same.
887
888         * ToolStripControlHost.cs: same.
889
890         * ToolStripContentPanel.cs: same.
891
892         * ToolStripDropDown.cs: same.
893
894         * ToolStripContainer.cs: same.
895
896         * ToolStripPanel.cs: same, and add "new" where we need it to work
897         with the new ArrangedElementCollection.
898
899         * ToolStripItemCollection.cs: add "new" where we need it to work
900         with the new ArrangedElementCollection.
901
902 2006-12-04  Andreia Gaita <avidigal@novell.com>
903
904         * TabControl.cs: Fix default tab selection to after TabControl
905         gets focus and not before. Fixes #80128
906
907 2006-12-04  Chris Toshok  <toshok@ximian.com>
908
909         * DataGridTableStyle.cs: remove the gross calling of
910         datagrid.Refresh from here.  It's a broken idea and it doesn't
911         work anyway.
912
913         * DataGrid.cs: instead, just register/unregister from the
914         DataGridTableStyle events in CurrentTableStyle.  we play it
915         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
916         even though some would most likely not require it.  Fixes bug
917         #80115 (and one portion of #80117 as a side effect).
918
919 2006-12-04  Chris Toshok  <toshok@ximian.com>
920
921         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
922         so the textbox (if any) goes away.  Fixes bug #80117.
923
924 2006-12-04  Chris Toshok  <toshok@ximian.com>
925
926         * DataGridColumnStyle.cs: set the column's readonly property
927         initially based on the property descriptor's IsReadOnly.  Fixes
928         bug #80044.
929
930 2006-12-04  Chris Toshok  <toshok@ximian.com>
931
932         * ComboBox.cs: wrap the dropdown style changing work in
933         SuspendLayout/ResumeLayout.  Fixes bug #79968.
934
935 2006-12-04  Jackson Harper  <jackson@ximian.com>
936
937         * TextBoxBase.cs: Fix off by one, since these are one-based.
938         * TextBox.cs: Select all the text when we get focus.  The TextBox
939         does this but the RTB does not.
940
941 2006-12-04  Chris Toshok  <toshok@ximian.com>
942
943         * DataGridTextBoxColumn.cs: remove some spew.
944
945         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
946         but some part of me is saying "it shouldn't be here.."  At any
947         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
948         setting the value.
949
950 2006-12-04  Chris Toshok  <toshok@ximian.com>
951
952         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
953         to reassign the propertydescriptor.
954
955 2006-12-04  Jackson Harper  <jackson@ximian.com>
956
957         * TextBoxBase.cs:
958         * TextControl.cs: Remove some unused variables.  Maybe this will
959         patch things up between mike and I.
960         - don't split lines less then one char wide, if the viewport is
961         that small text won't be visible anyways.
962         
963 2006-12-04  Jackson Harper  <jackson@ximian.com>
964
965         * TextBoxBase.cs: Default selection length is -1, need to do some
966         more testing on windows to see when this is used for the property.
967         - Redid the Lines [] property to that we properly remove soft line
968         breaks
969         - added support for preserving carriage returns
970         -  CanUndo is not a variable like 'is undo enabled' it just returns
971         true if there is undo operations available.
972         - AppendText doesn't need to grab the last tag itself anymore,
973         this happens automatically when we move the cursor.
974         * TextControl.cs: Add CompoundActions to the undo class. This
975         allows combining the other operations into one big option.  ie a
976         paste will combine { delete old, insert new, move cursor }
977         - Add InsertString undo operation
978         - New method for deleting multiline text
979         - Add carriage returns to lines. So we can preserve carriage
980         returns when text is 'roundtripped'
981
982 2006-12-04  Chris Toshok  <toshok@ximian.com>
983
984         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
985         minimum 0.  Fixes the scrollbar exception in bug #80136.
986
987 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
988
989         * MdiClient.cs: 
990         * MdiWindowManager: Removed unused fields and methods.
991         
992 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
993         
994         * StatusBar.cs: Update all panels when a AutoSize=Contents
995         panel needs updating.
996         
997         * StatusBarPanel.cs: Remove twidth and only use initialize.
998         Fixes #80031.
999                 
1000 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1001
1002         * Form.cs: When a form's MdiParent is set add it directly
1003         on top of the z-order in stead of relying on MdiClient's
1004         ActivateChild to do it. Fixes #80135.
1005         
1006         * MdiClient.cs: 
1007         - Remove original_order, mdi_child_list is already doing
1008         the same thing.
1009         - Create mdi_child_list on construction in
1010         stead of first use (avoids a few null checks).
1011
1012         * MenuItem.cs: Use an already existing list of mdi children
1013         to get the correct order of children and remove the other
1014         redundant list.
1015
1016 2006-12-04  Chris Toshok  <toshok@ximian.com>
1017
1018         * PropertyGridView.cs: cached_splitter_location is only used in
1019         !DOUBLEBUFFER code.
1020
1021         * PropertyGrid.cs: implement the ComComponentNameChanged event
1022         using Events, hoping that would fix the warning.  Looks like a
1023         compiler bug instead (#80144).
1024
1025         * PropertyManager.cs: remove unused method.
1026
1027 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
1028
1029         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
1030         include parentesis to fix expression evaluation. Fixes #79634.
1031
1032 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
1033         
1034         * MenuAPI.cs:
1035         - Changes to fix behavior in Menu control, some reported in #80097
1036         and other detected during behavior refactory like a select event
1037         problems.
1038         - Remove unneded "if's" conditions.
1039         - Created an internal to flag when popup is active in control, we need 
1040         it because in .NET you can have menu active but without popup active
1041         when you active menu using popup without visible items.
1042         - Mimic win32 behavior for Select and Popup events.  
1043         - Dont open popup menu when you dont have visible subitems.
1044         - Do nothing when click on disabled menu item.
1045         - Some small changes to follow the coding style guidelines.
1046         - Unselect menu only when another control gives focus. Fixes #80097.
1047         - Remove unused code.
1048         
1049         * MenuItem.cs: internal VisibleItems method to check if menu
1050         theres visible subitems, it will be usefull to fix some 
1051         behavior in Menu control.
1052         
1053 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1054         
1055         * Timer.cs: Tag property for 2.0 profile.
1056         
1057 2006-12-01  Chris Toshok  <toshok@ximian.com>
1058
1059         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
1060         
1061         * Win32DnD.cs: comment out some unused fields.
1062
1063         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
1064         some unused properties/methods.
1065
1066         * XplatUIX11.cs: fix MousePosition so we override the base class's
1067         property instead of conflicting with it.
1068
1069         * PictureBox.cs: comment out some unused fields
1070
1071         * OSXStructs.cs: make some struct fields public.
1072
1073         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
1074         MousePosition so we override the base class's property instead of
1075         conflicting with it.
1076
1077         * X11Dnd.cs: comment out some unused fields
1078
1079         * X11DesktopColors.cs: fix some struct field visibility to quiet
1080         the compiler.
1081
1082         * X11Dnd.cs: remove some debug code.
1083
1084         * ThemeClearlooks.cs: comment out unused field.
1085
1086         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
1087
1088         * ThemeGtk.cs: comment out some unused pinvokes.
1089
1090         * Timer.cs: remove some unused fields.
1091
1092         * ThemeClearlooks.cs: comment out unused field.
1093
1094         * UpDownBase.cs: comment out unused field.
1095
1096         * DataObject.cs: comment out unused field.
1097
1098         * DataGridBoolColumn.cs: reomve unused field.
1099
1100         * DataGrid.cs: remove unused field.
1101
1102         * Cursor.cs: remove old ToBitmap code.
1103
1104         * ControlPaint.cs: remove unused method.
1105
1106         * ScrollBar.cs: remove unused fields.
1107
1108         * ComboBox.cs: remove unused field, and chain up to
1109         AccessibleObject ctor.
1110
1111         * ListBox.cs: remove unused field.
1112
1113         * ButtonBase.cs: wrap a couple fields in NET_2_0.
1114
1115         * GridEntry.cs: remove unused fields.
1116
1117         * Binding.cs: remove unused fields.
1118
1119         * AxHost.cs: remove unused method.
1120
1121         * ContainerControl.cs: remove unused field.
1122
1123         * ScrollableControl.cs: remove unused fields.
1124
1125 2006-12-01  Chris Toshok  <toshok@ximian.com>
1126
1127         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
1128         the Where/WhereString stuff.  it's easy enough to CWL
1129         Environment.StackTrace.
1130
1131         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
1132         unused private fields.
1133
1134 2006-12-01  Jackson Harper  <jackson@ximian.com>
1135
1136         * TextControl.cs: Do not update the view while inserting multiline
1137         text. If we update the view we might wrap lines, before entering
1138         the new lines, which causes the new line insertion calculations to
1139         be totally fubared.
1140         - Remove an old TODO
1141         - Make debug output a little nicer
1142         
1143 2006-12-01  Chris Toshok  <toshok@ximian.com>
1144
1145         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
1146
1147 2006-12-01  Chris Toshok  <toshok@ximian.com>
1148
1149         [ fix the majority of the CS0108 warnings we've been suppressing ]
1150         
1151         * TreeView.cs: mark BackgroundImageChanged as 'new'.
1152
1153         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
1154         to "LayoutToolBar" to quiet mcs.
1155         
1156         * TabControl.cs: mark our ControlCollection class as 'new'.
1157
1158         * TextBoxBase.cs: mark some events as 'new'.
1159
1160         * Splitter.cs: TabStop is 'new'.
1161
1162         * ControlBindingsCollection.cs: mark a few methods as new since
1163         they change the visibility from protected to public.
1164
1165         * RadioButton.cs: DoubleClick -> base class, and remove unused
1166         HaveDoubleClick.
1167
1168         * MonthCalendar.cs: ImeMode property -> base class, and mark many
1169         events as new.
1170
1171         * NumericUpDown.cs: TextChanged -> base class.
1172
1173         * CheckedListBox.cs: mark our ObjectCollection class as new to
1174         quiet mcs.
1175
1176         * FolderBrowserDialog.cs: make HelpRequest event new and have it
1177         muck with the base class.
1178
1179         * StatusBar.cs: fix some mcs warnings about Update being the same
1180         name as a base class method.
1181
1182         * RichTextBox.cs: mark some events as new, and make them do things
1183         to the base class impl.
1184
1185         * UserControl.cs: mark TextChanged as new, and have it manipulate
1186         base.TextChanged.
1187
1188         * UpDownBase.cs: mark some things new.
1189
1190         * CheckBox.cs: mark DoubleClick "new", and add some text about
1191         what we need to look at.
1192
1193         * Panel.cs: make the events "new", and manipulate the base
1194         version.  these are just here for attributes.
1195
1196         * AccessibleObject.cs: make owner private.
1197
1198         * Control.cs: deal with AccessibleObject.owner being private.
1199         cache our own copy if we need it.
1200
1201         * Button.cs: add "new" to the DoubleClickEvent.
1202
1203         * ListBox.cs: no need to track our own has_focus here.  let
1204         Control.has_focus do it for us.  Also some other work to clear up
1205         warnings about not overriding base class methods of the same name.
1206         
1207         * ComboBox.cs: clear up some warnings about not override base
1208         class methods of the same name.
1209
1210 2006-12-01  Chris Toshok  <toshok@ximian.com>
1211
1212         * Form.cs: flag a few things as "new" to quiet some of the mcs
1213         warnings.
1214
1215         * AxHost.cs: same.
1216
1217         * PrintPreviewDialog.cs: same.
1218
1219         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
1220         now DGV isn't so horrible on the class status page.  also, move
1221         all events to using System.ComponentModel.EventHandlerList.  my
1222         wrists hurt.
1223
1224 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1225
1226         * MdiWindowManager.cs:
1227         - Set form to active mdi child if shown,
1228         and update the active mdi child to the next 
1229         remaining child in the z-order if the form is hidden.
1230
1231         * Form.cs: 
1232         - Track if the form has been visible and if its 
1233         visibility is beeing changed, so that the MdiClient
1234         can properly decide the ActiveMdiChild. The MdiClient 
1235         cannot track this since the form can change visibility 
1236         before MdiClient is created.
1237
1238         * MdiClient.cs:
1239         - Don't activate anything of the parent form is changing
1240         its visibility.
1241         - Rework ActiveMdiChild to only return visible mdi 
1242         children and take into account several other corner 
1243         cases.
1244
1245 2006-12-01  Chris Toshok  <toshok@ximian.com>
1246
1247         * IBindableComponent.cs: new 2.0 interface.
1248
1249 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
1250
1251         * DataGrid.cs: Font for caption area is bold by default.
1252
1253 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
1254
1255         * Menu.cs: Tag property for 2.0.
1256         
1257 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1258
1259         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
1260         
1261 2006-12-01  Chris Toshok  <toshok@ximian.com>
1262
1263         * TreeView.cs: doh, the Begin* events should be
1264         TreeViewCancelEventHandler.
1265
1266 2006-12-01  Chris Toshok  <toshok@ximian.com>
1267
1268         * Form.cs: Form.ControlCollection already stores off the
1269         form_owner field.  don't access the base class's internal "owner"
1270         field.
1271
1272         * Control.cs: make all the fields in Control.ControlCollection
1273         private.  there's no need for any internal fields here.
1274
1275 2006-12-01  Chris Toshok  <toshok@ximian.com>
1276
1277         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
1278         OnHandleCreated.  Fixes bug #80109.
1279
1280 2006-12-01  Chris Toshok  <toshok@ximian.com>
1281
1282         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
1283         SplitContainer.cs, Control.cs, StatusStrip.cs,
1284         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
1285         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
1286         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
1287         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
1288         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
1289         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
1290         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
1291         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
1292         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
1293         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
1294
1295         do most of the work to convert our code over to use
1296         System.ComponentModel.Component.Events for
1297         adding/removing/dispatching events.
1298
1299
1300 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1301
1302         * DataGridView.cs: Fix an ArgumentNullException reported 
1303         twice today in IRC.
1304
1305 2006-11-30  Mike Kestner  <mkestner@novell.com>
1306
1307         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
1308         grabbed listbox.  Fixes #80036 and #80101.
1309
1310 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1311
1312         * Message.cs: Changed ToString() to match MS.
1313         
1314 2006-11-30  Jackson Harper  <jackson@ximian.com>
1315
1316         * TextBoxBase.cs: You can still change the selected text on a read
1317         only textbox.
1318         * TextControl.cs: Lower magic number for wrap calculations. This
1319         lets text get closer to the right (far) edge.
1320
1321 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1322
1323         * Control.cs: Tweak 2.0 layout properties.
1324         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
1325         * TextRenderer.cs: Add a new overload.
1326         * ToolStrip*: Huge amount of changes and new features.
1327
1328 2006-11-30  Mike Kestner  <mkestner@novell.com>
1329
1330         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
1331         scroll range correct.  Fixes #79994.
1332
1333 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1334
1335         * MdiWindowManager.cs: Update main form's text when
1336         a form is closed. (fixes #80038)
1337         
1338 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
1339
1340         * ToolBar.cs:
1341         - Fix an regression in ButtonSize.
1342         - Get ImeMode default value change to "Disable".
1343         - Get ShowTooltips default value change to true, default value is 
1344         "false" but after make a test in .NET we get "true" result as default.
1345         
1346 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
1347
1348         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
1349
1350 2006-11-29  Chris Toshok  <toshok@ximian.com>
1351
1352         * XplatUIWin32.cs (GetWindowTransparency): check return value of
1353         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
1354         SetWindowTransparency hasn't been called.
1355
1356 2006-11-29  Chris Toshok  <toshok@ximian.com>
1357
1358         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
1359         if it's supported.
1360         (set_AllowTransparency): reorder things a little so that the
1361         WS_EX_LAYERED style is removed properly.
1362
1363 2006-11-29  Chris Toshok  <toshok@ximian.com>
1364
1365         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
1366         
1367         * Form.cs: only call the XplatUI transparency method (get/set) if
1368         SupportsTransparency says it's supported. Otherwise fallback to
1369         doing nothing (in the set case) or returning the instance field we
1370         cache (in the get case).
1371
1372         * XplatUIStructs.cs: add TransparencySupport flag enum.
1373         
1374         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
1375         change to SupportsTransparency.
1376
1377         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
1378         TransparencySupport.None from SupportsTransparency.
1379
1380         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
1381         TransparencySupport.Set from SupportsTransparency.
1382
1383         * XplatUIWin32.cs: implement GetWindowTransparency calling
1384         GetLayeredWindowAttributes, and implement SupportsTransparency by
1385         checking whether or not both
1386         GetWindowTransparency/SetWindowTransparency are available
1387         entrypoints.  We need to do this since SetWindowTransparency is
1388         available as of win2k, but GetWindowTransparency requires winxp.
1389         yay win32 api.
1390
1391         * XplatUI.cs: Add GetWindowTransparency, and change
1392         SupportsTransparency to allow for either/both Get/Set.
1393
1394 2006-11-29  Chris Toshok  <toshok@ximian.com>
1395
1396         * DataGrid.cs: keep from going into an infinite loop redrawing a
1397         datagrid that has no datasource.  Fixes bug #80033.
1398
1399 2006-11-29  Chris Toshok  <toshok@ximian.com>
1400
1401         * MenuItem.cs: fix the NRE when we assign text (and therefore call
1402         Invalidate) before the mainmenu has been assigned to a control.
1403
1404 2006-11-29  Chris Toshok  <toshok@ximian.com>
1405
1406         * DataGrid.cs: detect when we should be double the double click
1407         row/column autosize stuff, although that codepath has yet to be
1408         written.  part of the work for bug #79891.
1409
1410 2006-11-29  Chris Toshok  <toshok@ximian.com>
1411
1412         * Binding.cs (SetControl): fix unit test.
1413
1414 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1415
1416         * PageSetupDialog.cs: Validate the margins and set them in
1417         PageSettings. 
1418         * NumericTextBox.cs: New class to mimic the behavior of the
1419         textboxes used in the printing dialogs.
1420
1421 2006-11-29  Andreia Gaita  <avidigal@novell.com>
1422         
1423         * Form.cs: Revert previous change (remove call UpdateBounds
1424         from form constructor), because it messes with the handle creation
1425         order, and that one needs lots and lots of love.
1426         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
1427         for valid printer and throw InvalidPrinterException if document
1428         is set but printer not valid), adding a MonoTODO. Once 
1429         handle creation is done properly, we can put this back in.
1430
1431 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1432
1433         * MenuItem.cs: Create a invalidate method for menu item, to be
1434         calling from set text, it make text changes to imadiate update
1435         on screen. Fixes #80013. 
1436         
1437 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1438
1439         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
1440         fixes bug #80070 and some other problem on toolbar buttons
1441         layout.
1442
1443 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1444
1445         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
1446         with dotted brush.      Fixes #79564
1447         
1448 2006-11-28  Andreia Gaita  <avidigal@novell.com>
1449
1450         * Form.cs: Removed call to UpdateBounds on Form
1451         constructor, it was causing a call to CreateHandle
1452         before it was supposed to.
1453         * PrintControllerWithStatusDialog: Applied patch
1454         by Chris Toshok to hide controller when there are
1455         no printers available.
1456         PrintDialog.cs: initialize printer settings to 
1457         null - correct DefaultValues test #5
1458         * PrintPreviewControl.cs: Move PrintController
1459         initialization to GeneratePreview
1460         * PrintPreviewDialog.cs: 
1461         - Remove Preview generation     from Document_set(). It is 
1462         called on OnPaint
1463         - Throw InvalidPrinterException on CreateHandle if
1464         a Document is set but there are no printers or 
1465         printer is not valid.
1466         * ThemeWin32Classic: don't paint PrintPreviewControl
1467         if there is nothing to paint    
1468
1469 2006-11-28  Miguel de Icaza  <miguel@novell.com>
1470
1471         * Form.cs: Add another popular method.
1472
1473         * TabPage.cs: ditto.
1474
1475 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1476
1477         * MenuItem.cs: Fixed a warning.
1478         * InternalWindowManager: Fixed a warning.
1479
1480 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1481
1482         * MenuItem.cs:
1483         - When cloning a menu also clone MdiList and clone the 
1484           window menu items properly (as the forms and menuitems
1485           are kept in an internal hashtable, these need updating 
1486           as well)
1487         - Rewrote the window menu code, menu items are added in the
1488           order the forms were added to their parent, and they are
1489           updated every time the window menu is shown (before the
1490           list was only generated once, in the current order of the
1491           forms, and would never be updated). A checkmark is shown
1492           next to the item corresponding to the active mdi child.
1493
1494 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1495
1496         * XplatUIStructs.cs: 
1497         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
1498         
1499         * XplatUIWin32.cs: 
1500         - Added TME_NONCLIENT to TMEFlags.
1501         - Handles WM_NCMOUSEMOVE in GetMessage to 
1502           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
1503
1504         * MdiWindowManager:
1505         - Now merges mdi child menu to parent menu when maximized.
1506         - Recalculate NC areas of both mdi child and mdi parent. 
1507           Fixes #79757 (4).
1508           on window state and size changes.Fixes #79844 (3).
1509         - Handle WM_NCCALCSIZE to properly calculate borders.
1510
1511         * Form.cs:
1512         - Add/remove to the mdi containers list of mdi children 
1513           in the order they are added.
1514         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
1515           to the maximized mdi child.
1516         
1517         * InternalWindowManager.cs:
1518         - Only execute a click on the control buttons on the mouse up,
1519           not on the mouse down. Show the state of the button 
1520           (was only showing Normal state, never Pressed state). The
1521           pressed button now follows the mouse (if you click the Close 
1522           button and move the mouse over the Maximize button, the 
1523           Maximize button will be shown as pressed). Since Win32 does
1524           not generate WM_NCLBUTTONUP if you release the button outside
1525           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
1526           it as a mouse up.
1527         
1528         * ThemeWin32Classic.cs:
1529         - Draw a missing border around mdi child forms. Fixes #79844 (2).
1530
1531         * MdiClient.cs:
1532         - Added a list of forms which contains the order the forms are
1533           added to the mdi parent.
1534         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
1535         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
1536         - If the active form changes set the scrollbars to the top
1537           of the Z order, otherwise the form could hide them.
1538         - Scrollbars are now sized according to ClientSize, not 
1539           to Size, and they take into account the other scrollbar
1540           to determine maximum.
1541         
1542 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
1543         
1544         * XplatUI.cs:
1545         * XplatUIDriver.cs:
1546         * XplatUIX11.cs:
1547         * XplatUIWin32.cs:
1548         * XplatUIOSX.cs:
1549         - Added RequestAdditionalWM_NCMessages for windows to 
1550           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
1551           Currently only implemented in XplatUIWin32.
1552
1553 2006-11-27  Chris Toshok  <toshok@ximian.com>
1554
1555         * Hwnd.cs: only add the hwnd to the windows hash in
1556         set_WholeWindow and set_ClientWindow if whole_window/client_window
1557         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
1558
1559 2006-11-27  Mike Kestner  <mkestner@novell.com>
1560
1561         * ComboBox.cs: remove redundant OnDropDown call.  It is called
1562         from the ComboListBox.ShowWindow code. Fixes #79969.
1563
1564 2006-11-27  Chris Toshok  <toshok@ximian.com>
1565
1566         * Hwnd.cs: remove the setters for ExposePending and
1567         NCExposePending - noone uses them.
1568
1569 2006-11-27  Jackson Harper  <jackson@ximian.com>
1570
1571         * TextControl.cs: new param for ReplaceSelection which determines
1572         whether we select the new selection, or set the cursor to the end
1573         of the new selection.
1574         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
1575         pasting, select the new text.
1576         * RichTextBox.cs: Use new param for ReplaceSelection.
1577
1578 2006-11-27  Jackson Harper  <jackson@ximian.com>
1579
1580         * TextBoxBase.cs: Set the selection to the caret after the caret
1581         is moved, otherwise they get out of sync.
1582
1583 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1584
1585         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
1586         it fixes #80015
1587
1588 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1589
1590         * ThemeWin32Classic.cs: 
1591         - Fix toolbar drop down arrow position.
1592         - Fix drop down appearance when ToolBar.Appearance is normal,
1593         it fixes #80018.
1594         
1595 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
1596
1597         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
1598         * Control.cs: Same.
1599         * UpDownBase.cs: Same.
1600         * ButtonBase.cs: Same.
1601         * ScrollBar.cs: Same.
1602         * TrackBar.cs: Same.
1603         * PictureBox.cs: Same.
1604         * UserControl.cs: Same.
1605         * Label.cs: Same.
1606         * ListControl.cs: Same.
1607         * TextBoxBase.cs: Same.
1608         * ListView.cs: Same.
1609         * RichTextBox.cs: Same.
1610         * TreeView.cs: Same.
1611
1612 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
1613
1614         * PrintDialog.cs:
1615         - Text label for where 
1616         - Text label comment was not shown
1617
1618 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
1619
1620         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
1621
1622 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1623
1624         * InternalWindowManager.cs: 
1625         - Handle WM_PARENTNOTIFY to activate the form
1626         if any child control is clicked.
1627         - The form is only sizable if not minimized.
1628
1629         * MdiWindowManager.cs:
1630         - Save the IconicBounds if the form is moved.
1631         - Rework SetWindowState, now the window bounds 
1632         are stored only if the old window state is Normal.
1633         
1634         * MdiClient.cs:
1635         - In SetWindowStates store the old window state if 
1636         the window is maximized and restore window state if
1637         the window looses focus.
1638         - Don't handle any scrollbar value changes if 
1639         initializing the scroll bars. Fixes #79771.
1640         - Reworked ArrangeIconicWindows. Current algorithm
1641         tests bounds agains all other minimized windows, if
1642         any intersections create new bounds (going left to 
1643         right, bottom to top) and then test again. When 
1644         successful the bounds are saved and never computed
1645         again. Fixes #79774.
1646
1647 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1648
1649         * InternalWindowManager.cs: Added HandleTitleBarUp.
1650
1651 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1652
1653         * NumericUpDown.cs: In .NET 1.1, user entered text is still
1654         hexadecimal in ParseUserEdit.
1655
1656         
1657 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1658
1659         * MdiWindowManager.cs: 
1660         - Handle a click on the form's icon to show the 
1661         system menu (when maximized). Fixes #79775.
1662         - Change the existing click handler for the form's
1663         icon when not maximized to show on MouseUp.
1664         Fixes #79776.
1665
1666         * Form.cs: In OnResize only layout the mdi child's
1667         parent if it actually has a parent. Might not if
1668         the window is closing.
1669
1670
1671 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1672
1673         * MdiClient.cs: Ignore active MDI client for text of parent, if
1674         child has no text set.
1675
1676 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1677
1678         * ToolBar.cs: Fixed ToString to match MS.
1679
1680 2006-11-22  Andreia Gaita  <avidigal@novell.com>
1681
1682         * NumericUpDown: 
1683         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
1684         update inner values on set. Fixes #79966.
1685         - Override OnLostFocus to update value on NET 2. Fixes #79950.
1686         - Fix hexadecimal parsing.
1687         
1688         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
1689         parent. Fixes #79957
1690
1691 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1692
1693         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
1694         the actual size has to be queried, since if height /
1695         width is negative Win32 changes it to 0. 
1696         Fixes #79999 on Windows.
1697         
1698         * XplatUIX11.cs: Set height / width to 0 if negative
1699         in SetWindowPos. Fixes #79999 on Linux.
1700         
1701 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1702
1703         * ThemeWin32Classic.cs: Fix text redenring when button is
1704         pressed.
1705
1706 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1707
1708         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
1709         and later navigate by mouse. Fixes #79528.
1710
1711 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1712
1713         * ToolBar.cs: Set default value for TabStop to false in
1714         constructor, it fixes remaining behavior of bug #79863.
1715
1716 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1717
1718         * MdiWindowManager.cs:
1719         * InternalWindowManager.cs:
1720         - Moved a few methods specific to Mdi from 
1721         InternalWindowManager to MdiWindowManager.
1722         Fixes #79996.
1723         
1724 2006-11-21  Chris Toshok  <toshok@ximian.com>
1725
1726         * XplatUIOSX.cs: stub out InvalidateNC.
1727
1728         * XplatUIWin32.cs: implement InvalidateNC using the call I found
1729         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
1730
1731         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
1732
1733         * XplatUIDriver.cs: add InvalidateNC abstract method.
1734
1735         * XplatUI.cs: add InvalidateNC.
1736
1737 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1738
1739         * ToolBar.cs: Invalidate complete button area when pressed status 
1740         was changed.
1741         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
1742         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
1743         by 1 when button is pressed.
1744
1745 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1746
1747         * ToolButton.cs: Invalidate middle of DropDown button when
1748         ToolBar theres DropDownArrows.
1749         * ThemeWin32Classic.cs: Change position of DropDown arrow and
1750         fix DropDown drawing operations.
1751
1752 2006-11-20  Chris Toshok  <toshok@ximian.com>
1753
1754         * NativeWindow.cs: fix the formatting of functions ('{' on the
1755         following line), and enable the thread exception dialog.
1756
1757         * Application.cs: remove the duplicate exception catching from
1758         here.
1759
1760 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1761
1762         * Toolbar.cs: Triggers button click event when click on icon
1763         of dropdown ToolBarButton. Fixes #79912.
1764         
1765 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1766
1767         * Theme.cs:
1768         * ThemeWin32Classic.cs:
1769         - Added a property WindowBorderFont to enable themeing
1770           of mdi child windows' Text.
1771           
1772 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1773
1774         * InternalWindowManager.cs:
1775         * Form.cs:
1776         * MdiClient.cs:
1777         * MdiWindowManager.cs: 
1778         - If mdi child is maximized, set mdi parent's
1779           text to "Parent - [Child]". Fixes #79770.
1780         - If there is any maximized mdi child windows, only the active 
1781           window (and any new windows) is maximized, the rest are normal.
1782         - On a WindowState change only save mdi child's window bounds 
1783           if the old window state was normal. Fixes #79774.
1784         - The scroll bars are now calculated on hopefully all
1785           necessary events. Fixed #79771 / #79844->6 / #79906.
1786         - MdiClient.SizeScrollBars() now takes into account docked 
1787           controls in the parent when calculating available space.
1788         - InternalWindowManager now always repaints the entire title
1789           area. Fixes #79844->1/4/5.
1790         - Added RequestNCRecalc on mdi child windowstate changes.
1791           Fixes #79772.
1792
1793 2006-11-20  Mike Kestner  <mkestner@novell.com>
1794
1795         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
1796         in the MouseUp handler of the listbox and move the return handling
1797         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
1798
1799 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1800
1801         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
1802
1803 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1804
1805         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
1806           working in 1.2.x anymore. So, updated.
1807
1808 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
1809
1810         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
1811         NumberGroupSeparator of current culture instead of assuming en-US.
1812         Fixed bug #79967.
1813
1814 2006-11-17  Mike Kestner  <mkestner@novell.com>
1815
1816         * Control.cs: Add the concept of implicit bounds setting so that
1817         dock/undock round trips preserve explicitly set size/locations.
1818         Fixes #79313.
1819
1820 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1821
1822         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
1823           can't handle those filters. (Fixes bug #79961)
1824
1825 2006-11-17  Chris Toshok  <toshok@ximian.com>
1826
1827         [ fixes the exit/crashes associated with #79835.  it's clearly
1828         suboptimal though, we need to figure out a better way to solve
1829         this. ]
1830         
1831         * PrintPreviewControl.cs: deal with the new invalid printer
1832         exceptions.
1833
1834         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
1835         and return false (so CommonDialog.ShowDialog doesn't actually show
1836         the form.)
1837
1838         * PrintDialog.cs: enable/disable the Ok button depending on
1839         whether or not the printer is valid.
1840
1841         * CommonDialog.cs (ShowDialog): only actually show the form if
1842         RunDialog returns true.
1843
1844 2006-11-17  Jackson Harper  <jackson@ximian.com>
1845
1846         * TextControl.cs: When soft splitting a line, mark it as a soft
1847         split line. Also carry over the current line break to the next
1848         line.
1849
1850 2006-11-17  Chris Toshok  <toshok@ximian.com>
1851
1852         * XplatUIX11.cs: when scrolling a window with an invalid area, we
1853         only want to shift the part of the invalid area that overlaps the
1854         area we're scrolling.  we also don't want to clear the invalid
1855         area unless the invalid area was entirely contained within the
1856         scrolling area.
1857
1858 2006-11-16  Chris Toshok  <toshok@ximian.com>
1859
1860         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
1861         also make sure to free the memory returned by XGetWindowProperty
1862         in GetText().
1863
1864         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
1865
1866 2006-11-16  Chris Toshok  <toshok@ximian.com>
1867
1868         * XplatUI.cs: add a new super secret way to get at the totally
1869         unsupported X11 backend.
1870
1871 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
1872
1873         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
1874
1875 2006-11-16  Jackson Harper  <jackson@ximian.com>
1876
1877         * TreeView.cs: Allow more explicit setting of top node position
1878         for scrollbars. Slower algo, but more accurate.
1879         - CollapseAll should maintain the current top node.
1880         * TextBoxBase.cs: When positioning the caret, use the line, pos
1881         method, since the x, y method does not grab the correct tag, and
1882         the caret height never gets set correctly. (Maybe I should just do
1883         away with the caret having its own height, and always use the
1884         carets current tag for height).
1885
1886 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
1887
1888         [Fixes 79778, 79923]
1889
1890         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
1891         Parent to the FosterParent instead.
1892
1893 2006-11-16  Jackson Harper  <jackson@ximian.com>
1894
1895         * TreeView.cs: Need to recalc the topnode when we expand or
1896         collapse. The scrolling methods can't handle this on their own,
1897         since they use differences between the last scroll position, and
1898         those difference get completely messed up since we are expanding
1899         nodes.  This problem should probably be fixed in the scrolling
1900         methods, so they can figure out exactly where they are, but this
1901         will slow things down a little.
1902         * ThemeWin32Classic.cs: Special case for groupboxes with empty
1903         strings, makes nunit-gui look a lot nicer.
1904
1905 2006-11-16  Chris Toshok  <toshok@ximian.com>
1906
1907         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
1908         the broken multithreaded event handling we have in here.  File
1909         this entry under "Why we should move to the new X11 backend".
1910
1911         Any thread can make it into UpdateMessageQueue, which gets events
1912         from the X socket - some of which could belong to hwnds being
1913         managed by a different thread.  We can also have multiple threads
1914         in UpdateMessageQueue at the same time, with each one reading from
1915         the X socket.  This leads to many problems, with the following
1916         solutions:
1917
1918         We can't use hwnd.Queue.Enqueue anywhere in here and must use
1919         EnqueueLocked.
1920
1921         The MotionNotify compression we do can't work across threads
1922         (without locking the entire queue, perhaps) since we call
1923         hwnd.Queue.Peek, so we just punt and don't compress motion events
1924         unless the owning thread is the one which got the X event.
1925
1926         ConfigureNotify is another fun one, since it modifies the hwnd's
1927         bounds and then enqueues the event.  We add a lock to Hwnd which
1928         is held when setting configure_pending to true (and enqueuing the
1929         event).
1930
1931         There is a race wrt the wake socket.  we need to make sure that
1932         only 1 thread is waiting on that socket, or else a thread could
1933         sleep waiting for data that never comes.  It's difficult (but not
1934         impossible) to make happen, because it seems to require something
1935         like the following:
1936
1937             1. Thread 1 polls on wake_receive
1938         
1939             2. poll returns saying there's data to be read on
1940                wake_receive.
1941         
1942             3. Thread 2 polls on wake_receive and immediately returns
1943                saying there's data to be read.
1944
1945             4. Thread 2 reads the wakeup byte from wake_receive
1946
1947             5. Thread 1 attempts to read the wakeup byte from
1948                wake_receive.
1949
1950             6. Thread 2 exits (due to a form closing, perhaps).
1951
1952             7. Thread 1 blocks forever.
1953         
1954         Fun, eh?
1955
1956         Fixing the Expose handling isn't done yet, and the races inherent
1957         in that piece of code are responsible for the drawing mistakes you
1958         see when generating expose events in a MT app (like NPlot).  This
1959         one is the likely to be the hardest to bandaid, and it doesn't
1960         appear to cause anything but drawing problems.  The other issues
1961         caused apps to exit or hang.
1962
1963         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
1964         called from a different thread than the one that should be calling
1965         these functions.
1966
1967         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
1968
1969 2006-11-15  Chris Toshok  <toshok@ximian.com>
1970
1971         * Application.cs: null out the context's MainForm when we exit
1972         RunLoop.  Fixes a newly checked in unit test as well as the last
1973         ODE from bug #79933.
1974
1975 2006-11-15  Chris Toshok  <toshok@ximian.com>
1976
1977         * Form.cs (set_Owner): allow a null value so we can clear the
1978         form's owner.
1979         (Dispose): set all our owned_form's Owner properties to null, and
1980         clear the owned_forms collection.
1981         (WM_CLOSE): clean up this a little bit.. still not right though.
1982
1983         * ApplicationContext.cs: OnMainFormClosed should only call
1984         ExitThreadCore if the main form isn't recreating.  Fixes unit
1985         test.
1986
1987 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1988
1989         [Fixes 78346]
1990
1991         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
1992
1993 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1994
1995         [Fixes 79433]
1996
1997         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
1998         keep popup window types from stealing focus from the main form
1999         on Windows.
2000
2001         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
2002
2003         * MenuAPI.cs: Set above flag to true.
2004
2005 2006-11-15  Chris Toshok  <toshok@ximian.com>
2006
2007         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
2008         the button being released is not in wParam.
2009
2010 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
2011
2012         * Form.cs: Add the released button to MouseEventArgs.Button
2013         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
2014         on Win32.
2015
2016 2006-11-15  Chris Toshok  <toshok@ximian.com>
2017
2018         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
2019         GetText().  untested because it's unused in our implementation.
2020         Control.Text always caches the text, even if
2021         ControlStyles.CacheText is not set.
2022
2023         fixes bug #79939.
2024
2025 2006-11-15  Chris Toshok  <toshok@ximian.com>
2026
2027         [ fixes #79933 ]
2028         
2029         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
2030         message.  no hiding, no disposing.
2031
2032         in the WM_CLOSE handler, hide the form if it's modal.
2033
2034 2006-11-15  Chris Toshok  <toshok@ximian.com>
2035
2036         * XplatUIX11.cs: use AddExpose instead of sending a message.
2037         fixes textbox border drawing.
2038
2039 2006-11-15  Chris Toshok  <toshok@ximian.com>
2040
2041         * PropertyGridView.cs: keep from crashing on mouse move/down when
2042         the property grid is empty.
2043
2044 2006-11-14  Jackson Harper  <jackson@ximian.com>
2045
2046         * TextControl.cs: Make PageUp and PageDown more like the MS
2047         versions.
2048         * TextBoxBase.cs: When we set the text property position the
2049         cursor at the beginning of the document.
2050
2051 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2052
2053         * Form.cs: if a mdi child's WindowState has changed
2054         before it's creation, it would display wrong control
2055         buttons.
2056         
2057 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
2058
2059         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
2060           (Fixes bug #79927)
2061
2062 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
2063
2064         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
2065         the window gets to paint its borders even if the window is
2066         getting smaller.
2067         
2068         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
2069         otherwise the old control buttons would still be painted 
2070         if the window gets bigger.
2071         
2072         * PaintEventArgs.cs: add an internal method so that the clip 
2073         rectangle can be changed.
2074         
2075 2006-11-13  Chris Toshok  <toshok@ximian.com>
2076
2077         [ fixes bug #79745 ]
2078         
2079         * NotifyIcon.cs: lots of cleanup.
2080
2081         * X11Structs.cs: add an enum for XEMBED messages.
2082
2083         * XplatUIX11.cs: reindent one of the giant switch statements, it
2084         was taking up an additional tab stop, and this file is already way
2085         too wide for my laptop's screen.
2086
2087         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
2088         we get it, resize the hwnd to the WMNormalHints max_width/height.
2089
2090 2006-11-13  Jackson Harper  <jackson@ximian.com>
2091
2092         * TextBoxBase.cs: Compute the value changes for the mouse wheel
2093         teh simple way.
2094
2095 2006-11-13  Chris Toshok  <toshok@ximian.com>
2096
2097         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
2098         #79898.  force a reference to the Region to stick around so the
2099         unmanaged object isn't collected (rendering our handle in the MSG
2100         stale).
2101
2102 2006-11-13  Chris Toshok  <toshok@ximian.com>
2103
2104         * XplatUIX11.cs: fix #79917 for window managers which support
2105
2106         using XStoreName on the raw utf8, and we need to convert to
2107         COMPOUND_TEXT if it's non-latin1.
2108
2109 2006-11-13  Chris Toshok  <toshok@ximian.com>
2110
2111         * Form.cs (set_DialogResult): we need to set closing to false if
2112         we're setting our result to None.  fixes bug #79908.
2113
2114 2006-11-13  Jackson Harper  <jackson@ximian.com>
2115
2116         * TextControl.cs: When formatting text, compute the adjusted tag
2117         lengths correctly, using FindTag for the end tag instead of trying
2118         to figure it out outselves.
2119         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
2120         the item, ItemHeight doesn't work, because trees with large
2121         imagelists use those for their height
2122         * TreeView.cs: ActualItemHeight factors in the image height
2123         - compute left edge of checkboxes correctly
2124         - when expanding/collapsing move the bottom down one pixel, so we
2125         aren't moving part of the node
2126
2127 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2128
2129         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
2130         stack in PaintEventStart so that it won't get disposed by the gc
2131         before reaching PaintEventEnd.
2132
2133 2006-11-13  Jackson Harper  <jackson@ximian.com>
2134
2135         * TextBoxBase.cs: Don't select the word if we are on a line with
2136         no text.
2137         - We don't need to position the caret on mouse up, since the mouse
2138         move handler should be doing this
2139         - When double clicking a blank line, the caret is advanced to the
2140         next line.
2141
2142 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
2143
2144         * TreeNodeCollection.cs: Avoid duplicating indexer code.
2145
2146 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
2147
2148         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
2149         Fixes part of bug #79910.
2150
2151 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
2152
2153         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
2154           (bug #79903). Some minor string updates to match ms.
2155
2156 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2157
2158         * FileDialog.cs: Don't add an extension if the filename
2159           already ends with that extension.
2160
2161 2006-11-10  Jackson Harper  <jackson@ximian.com>
2162
2163         * TreeView.cs: Use the currently highlighted node for the
2164         BeforeSelect event.
2165         * TextBoxBase.cs: There is no need to expand selection on
2166         MouseMove.
2167         - CanUndo means 'is there any undo operations', not 'is undo
2168         allowed on this textcontrol. Fixed ClearUndo unit test.
2169
2170 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
2171
2172         * Button.cs: only perform click when button is Selectable (so as 
2173         not to activate default buttons when they're disabled)
2174         
2175         * Control.cs: Rewrite of the SelectNextControl and related 
2176         methods. HandleClick now selects next control if the current one
2177         is being disabled.
2178         
2179         * Form.cs: OnActivated selects next active control only if Load 
2180         has already occurred. If Load hasn't run, there's no point in 
2181         selecting here, Load might change the state of controls.
2182         
2183         * FocusTest.cs: Tests marked as working again for these fixes
2184
2185 2006-11-10  Chris Toshok  <toshok@ximian.com>
2186
2187         * XplatUIX11.cs: a couple of fixes.
2188
2189         - use XInternAtoms with almost all the atoms we need to register,
2190         instead of many, many calls to XInternAtom.  should help a bit on
2191         startup time, at the expense of making the code look a little
2192         worse.
2193
2194         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
2195         isn't reparented (which seems to be a clue that we're running fon
2196         compiz) and they have an Owner form.  This fixes the tool windows
2197         in paint.net when running under compiz.
2198
2199         - when setting the opacity of a window, support both the case
2200         where the window has been reparented and also when it hasn't been.
2201         Since compiz/beryl doesn't seem to reparent windows, and these are
2202         the only window managers which support translucency, I'm not sure
2203         why we need the hwnd.reparented case at all.. but leave it in.
2204         now we get translucent windows in paint.net under compiz/beryl.
2205
2206 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2207
2208         * FileDialog.cs: Always return the value for FilterIndex that
2209           was set. Internally convert it to values that make sense.
2210
2211 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2212         
2213         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
2214
2215 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2216
2217         * Toolbar.cs: Change default value of DropDownArrows to true, the 
2218         signature still using false to make it compatible with MS but the 
2219         initial value is true. Fixes #79855.
2220
2221 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2222
2223         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
2224           only available on Linux.
2225
2226 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
2227
2228         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
2229         reduce number of calls to redraw method during toolbar creation.
2230
2231 2006-11-09  Mike Kestner  <mkestner@novell.com>
2232
2233         * ListView.cs : raise SelectedIndexChanged when an item is selected
2234         programmatically via the Item.Selected property.  Gert's nice 
2235         ListViewSelectedIndexChanged test fixture now runs clean.
2236
2237 2006-11-09  Mike Kestner  <mkestner@novell.com>
2238
2239         * ListView.cs : raise SelectedIndexChanged when a selected item is
2240         removed from the item collection using Remove or RemoveAt.
2241
2242 2006-11-09  Mike Kestner  <mkestner@novell.com>
2243
2244         * ListView.cs : raise SelectedIndexChanged once per selected item
2245         for compat with MS.  Fixes #79849+.
2246
2247 2006-11-09  Chris Toshok  <toshok@ximian.com>
2248
2249         * TabControl.cs: initialize row_count to 0, and set it to 1 when
2250         we need to (if we have any tab pages).  Fixes unit test.
2251
2252 2006-11-09  Chris Toshok  <toshok@ximian.com>
2253
2254         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
2255         width is 0, not 3.  Fixes a unit test.
2256
2257 2006-11-09  Mike Kestner  <mkestner@novell.com>
2258
2259         * ListView.cs : use Implicit scrollbars so that focus isn't 
2260         stolen from the listview when they are clicked. Fixes #79850.
2261
2262 2006-11-09  Chris Toshok  <toshok@ximian.com>
2263
2264         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
2265         have a root item.  Fixes #79879.
2266
2267 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
2268
2269         * FileDialog.cs:
2270           - Fix ToString ()
2271           - An ArgumentException is now thrown if a wrong filter
2272             is applied (matches ms). The previous filter doesn't change
2273             anymore if an exception is thrown.
2274           - Changing the FileName property also affects FileNames
2275         * ColorDialog.cs: The length of the CustomColors array is always
2276           16. It doesn't matter if we use a smaller array or null to update
2277           or change the custom colors property.
2278         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
2279           for RootFolder if we get a undefined value.
2280
2281 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2282
2283         * StatusBarPanel.cs: 
2284         - Width is set to MinWidth if Width is smaller than
2285         MinWidth. Fixes #79842.
2286         - MinWidth now always overrides Width (MSDN says MinWidth
2287         is set to Width when AutoSize = None, but they do not 
2288         behave like that).
2289         - Style has now the the correct default value.
2290         
2291 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2292  
2293         * TrackBar.cs: 
2294         - The control is completely invalidated on 
2295         Got/LostFocus to draw the focus rectangle correctly.
2296         - When AutoSize then height is always 45 (width for 
2297         vertical controls).
2298         
2299         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
2300         on the mouse when moved and it doesn't move when grabbed
2301         until the mouse moves as well. Also fixed some wrong 
2302         calculations when clicking on the thumb (control thought
2303         click was outside of thumb and didn't grab it).
2304         Fixes some of the issues in #79718.
2305
2306 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
2307
2308         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
2309
2310 2006-11-08  Chris Toshok  <toshok@ximian.com>
2311
2312         * PropertyGridView.cs: only call ToggleValue if the item is not
2313         readonly.
2314
2315 2006-11-08  Jackson Harper  <jackson@ximian.com>
2316
2317         * TextBoxBase.cs: The RichTextBox and textbox have very different
2318         word selection methods.  Implement the textbox's simple word
2319         selection here, and let the RichTextBox override and provide it's
2320         own.
2321         - Don't do extra selection on mouseup
2322         * RichTextBox.cs: Use the documents word selection algorithm, I
2323         think ideally, this function will be pulled into the
2324         RichTextBox.cs code someday.
2325
2326 2006-11-08  Chris Toshok  <toshok@ximian.com>
2327
2328         * RootGridEntry.cs: new class to represent GridItemType.Root.
2329
2330         * CategoryGridEntry.cs: reformat, and add boilerplate.
2331         
2332         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
2333         returns the UI parent anyway, and we need special handling to
2334         implement the GetTarget method in the face of it.  Also, implement
2335         Select().
2336
2337         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
2338         a root grid item, and use that instead of PropertyGrid.grid_items.
2339         Also, make use of TypeConverters (and add limitted support for
2340         ICustomTypeDescriptors) when initially populating the grid.
2341         Arrays now show up more or less properly.
2342
2343 2006-11-08  Chris Toshok  <toshok@ximian.com>
2344
2345         * Application.cs: set the modal dialog to non modal after we close
2346         it.  Fixes bug #79866.
2347
2348 2006-11-08  Jackson Harper  <jackson@ximian.com>
2349
2350         * TextControl.cs: When combining lines carry over the line end
2351         style from the end line.
2352         - Invalidate the selected area when setting it, if it is visible.
2353         * TextBoxBase.cs: Only rich text box can do full line selects.
2354         - Make sure to set the cursor position when there is a click,
2355         otherwise two clicks in separate areas could cause a large chunk
2356         to be selected.
2357
2358 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2359
2360         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
2361         Fixes #79863.
2362
2363 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2364
2365         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
2366         time. Remove tooltips when ToolButton click events.  Fixes #79856.
2367
2368 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2369
2370         * MenuAPI.cs: Ignore right click for menu actions and fixes
2371         menu border when clicked.  Fixes #79846.
2372
2373 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2374
2375         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
2376         MouseState after create wParam for message, this fixes mouse button 
2377         equal none in mouse up events.
2378         
2379 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
2380
2381         * Control.cs : Focus() now calls Select to set the Container's
2382         Active Control and to give it focus. To avoid infinite recursion
2383         (because ActiveControl also calls Focus at one point), a check 
2384         is made in Focus with the help of a new internal variable
2385         is_focusing.
2386
2387 2006-11-07  Mike Kestner  <mkestner@novell.com>
2388
2389         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
2390         if there's a selection.  Fixes #79849.
2391
2392 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
2393
2394         * PropertyGrid.cs: Avoid fixed height of help description label.
2395         Fixes part of bug #79829.
2396
2397 2006-11-07  Chris Toshok  <toshok@ximian.com>
2398
2399         * XplatUIX11.cs: fix #79790 again, by using the
2400         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
2401
2402 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2403
2404         * ToolBar.cs: Fix left click checking.
2405
2406 2006-11-07  Chris Toshok  <toshok@ximian.com>
2407
2408         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
2409
2410 2006-11-07  Chris Toshok  <toshok@ximian.com>
2411
2412         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
2413         PropertyManager unit tests.
2414
2415         * PropertyManager.cs: make property_name internal.
2416
2417 2006-11-07  Chris Toshok  <toshok@ximian.com>
2418
2419         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
2420         pass a unit test.  Also, don't set image_index to anything in
2421         response to setting the ImageList property.
2422
2423 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2424
2425         * ToolBar.cs: Ignore click events when mouse button is not a
2426         left button, only accepts other button for dropdown menus.  
2427         Fixes #79854.
2428
2429 2006-11-07  Chris Toshok  <toshok@ximian.com>
2430
2431         * DataGrid.cs: make the back and parent row buttons a little less
2432         ugly.
2433
2434 2006-11-07  Jackson Harper  <jackson@ximian.com>
2435
2436         * TextBoxBase.cs: When converting to Text don't put line breaks in
2437         for soft line breaks.
2438         * TextControl.cs: There is an initial "fake" line in the document,
2439         this is now a soft break line, so that an extra line feed doesn't
2440         get added to the end of documents.
2441
2442 2006-11-07  Chris Toshok  <toshok@ximian.com>
2443
2444         [ fix bug #79778 ]
2445         
2446         * CurrencyManager.cs: if the list is readonly, don't bother
2447         checking if IBindingList.AllowNew is true.
2448
2449         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
2450         for non-DataRowView datasources..  or rather, make it not crash.
2451         (DataGridPaintRelationRow): make sure we limit the row painting to
2452         the area not covered by the row header, and make our cell width at
2453         least large enough to cover the relation area.  This allows grids
2454         that have relations but no rows to render correctly.
2455         (DataGridPaintRowContents): same type of changes here.
2456         (SetDataSource): move back to always calling
2457         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
2458         navigating back through relations.
2459         (HitTest): handle the case where we have no cells but have
2460         relations.  Right now we generate a hit in cell 0 of whatever the
2461         row is, not sure if this is strictly correct, but it works for our
2462         purposes.
2463         
2464         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
2465         bother doing anything.
2466
2467 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
2468
2469         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
2470         early version of StatusStrip.  Not responsible for eaten
2471         application or firstborn children.
2472
2473 2006-11-06  Chris Toshok  <toshok@ximian.com>
2474
2475         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
2476         call GetTabRect with a -1 index.  Fixes #79847.
2477
2478 2006-11-06  Jackson Harper  <jackson@ximian.com>
2479
2480         * TreeNodeCollection.cs: Update scrollbars after clearing.
2481
2482 2006-11-06  Chris Toshok  <toshok@ximian.com>
2483
2484         * NumericUpDown.cs: fix the ToString method for some unit test
2485         love.
2486
2487 2006-11-06  Chris Toshok  <toshok@ximian.com>
2488
2489         * PropertyGrid.cs:
2490         - set the initial SelectedGridItem if we can.
2491
2492         - Exclude non-mergable properties only if we're merging > 1
2493         object.  Merging 1 object isn't really merging, obviously.
2494
2495         - Handle PropertySort.NoSort just like Alphabetical, which is
2496         wrong of course, but at least gets things on the screen.
2497         
2498         * PropertyGridView.cs:
2499         - Add method "FindFirstItem" which finds the first property grid
2500         item, so we can select it by default.
2501
2502         - make use of GridEntry.CanResetValue.
2503
2504         - Don't call RedrawBelowItemOnExpansion here anymore, the
2505         individual GridEntry's will do that.
2506
2507         - Remove the ITypeDescriptorContextImpl internal class.
2508         
2509         * GridEntry.cs:
2510         - this class needs to implement ITypeDescriptorContext, as it's
2511         what MS's PropertyDescriptorGridEntry does, which means we can
2512         remove the ITypeDescriptorContextImpl internal class from
2513         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
2514
2515         - keep a reference to our PropertyGridView, and move the call to
2516         RedrawBelowItemOnExpansion here from PGV.  This means
2517         programmaticly setting Expanded actually does something visible.
2518
2519         - add a CanResetValue() function which takes into account our
2520         possibly multiple "selected_objects" in the merged case.  Shifting
2521         PropertyGridView to use this method fixes another unreported
2522         crasher found running the test for #79829.
2523
2524         - when Top or Bounds is updated, make sure the PropertyGridTextBox
2525         is updated to reflect this.
2526
2527         * CategoryGridEntry.cs: the ctor takes the PGV now.
2528         
2529 2006-11-06  Jackson Harper  <jackson@ximian.com>
2530
2531         * TextControl.cs: These are 1 based.
2532         * TextBoxBase.cs: When setting the selected text, don't change the
2533         selected text tags, this is done by ReplaceText, just position the
2534         cursor at the end of the new text.
2535
2536 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2537
2538         * ListView.cs: Allow label edit only when, when LabelEdit is
2539           set to true.
2540
2541 2006-11-06  Jackson Harper  <jackson@ximian.com>
2542
2543         * TextControl.cs: If a suitable wrapping position isn't found,
2544         just wrap right in the middle of a word.
2545
2546 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2547
2548         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
2549           bug #79820.
2550
2551 2006-11-06  Jackson Harper  <jackson@ximian.com>
2552
2553         * TreeView.cs: Can't use the VisibleCount property when setting
2554         scrollbar heights, because this doesn't take into account whether
2555         or not the horz scrollbar just came visible.
2556
2557 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
2558
2559         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
2560         activated.  Fixes #79369, #79832.
2561
2562 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
2563
2564         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
2565           had to remove support for links that point to a directory. FileInfo
2566           returns no usefull information (means, the directory they point to)
2567           for such links. Replaced some empty string ("") with String.Empty.
2568
2569 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2570
2571         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
2572         NullReferenceException when attempting to remove node that is not in
2573         collection. Throw NullReferenceException when null is passed to 
2574         Remove. Allow first element of the collection to be removed. Fixes
2575         bug #79831.  In GetEnumerator ().Current return null if positioned 
2576         before the first element of the collection. In GetEnumerator ().Reset,
2577         position before first element of the collection.
2578
2579 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2580
2581         * PropertyGrid.cs: To match MS, remove default title and description
2582         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
2583         buttons.
2584
2585 2006-11-04  Chris Toshok  <toshok@ximian.com>
2586
2587         * Theme.cs: add a Clamp method, just for kicks.
2588
2589         * ThemeWin32Classic.cs: clamp all color components to [0..255].
2590
2591 2006-11-04  Chris Toshok  <toshok@ximian.com>
2592
2593         * Form.cs: if the form isn't visible, Close() does nothing.
2594
2595 2006-11-03  Chris Toshok  <toshok@ximian.com>
2596
2597         * Form.cs (Close): if the form is modal, don't Dispose of it, only
2598         Hide it.
2599         (WndProc): don't Dispose after handling the WM_CLOSE message.
2600
2601         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
2602         them as such, instead of using casts from Control to Form.  Also,
2603         don't Dispose of the modal dialog when we fall out of the loop -
2604         Close() it instead.
2605
2606         fixes bug #79813.
2607
2608 2006-11-03  Chris Toshok  <toshok@ximian.com>
2609
2610         * Control.cs (Dispose): only go through the dispose thing if we're
2611         @disposing, and we haven't already been disposed.  Fixes bug
2612         #79814.
2613
2614         * Form.cs: no reason to call "base.Dispose()" here instead of
2615         "Dispose()".
2616
2617 2006-11-03  Mike Kestner  <mkestner@novell.com>
2618
2619         * ComboBox.cs : use ToString instead of casts in AddItem for
2620         sorting functionality.  Fixes #79812.
2621
2622 2006-11-03  Chris Toshok  <toshok@ximian.com>
2623
2624         * Application.cs: pave the way for actually using the thread
2625         exception dialog.  it's ifdefed out at the moment.
2626
2627 2006-11-03  Chris Toshok  <toshok@ximian.com>
2628
2629         * ThreadExceptionDialog.cs: until we get a better layout, actually
2630         hide the details textbox and label when we shouldn't see them.
2631
2632 2006-11-03  Jackson Harper  <jackson@ximian.com>
2633
2634         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
2635         multiline textboxes anymore.  This method also determines the
2636         width/height of a textboxes canvas area.
2637         - Sorta a revert of the last patch.  For multiline just position
2638         the controls, then bail.  This way the scrollbar width won't be
2639         altered.
2640
2641 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
2642
2643         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
2644         it dont need.  Fixes #79537.
2645
2646 2006-11-02  Jackson Harper  <jackson@ximian.com>
2647
2648         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
2649         send the status after firing the DndOver event.
2650
2651 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2652
2653         * TrackBar.cs: Now orientation only switches height / width if
2654         the control's handle is created (Win32 does it like this). Also 
2655         fixed a typo in ToString() for a test to pass, changed the 
2656         exception thrown in set_LargeChange and set_SmallChange to 
2657         match Win32 behaviour, and added TrackBar tests to the unit 
2658         tests.
2659
2660 2006-11-02  Chris Toshok  <toshok@ximian.com>
2661
2662         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
2663         not _NET_WM_STATE_NO_TASKBAR.
2664
2665 2006-11-02  Jackson Harper  <jackson@ximian.com>
2666
2667         * TextControl.cs: Increment count by one, since in the update view
2668         count - 1 is used.
2669
2670 2006-11-02  Jackson Harper  <jackson@ximian.com>
2671
2672         * TextBoxBase.cs: Use client rectangle not bounds for checking if
2673         the mouse is in the client rectangle (duh).
2674
2675 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2676         
2677         * TrackBar.cs: Fixed trackbar jumping around when clicking
2678         on it - the trackbar was not detecting correctly at which
2679         side of the thumb the click was done. (fixes #79718)
2680
2681 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2682
2683         * ListBox.cs: scroll visible area when change SelectedIndex to
2684         a non visible area.  Fixes #79481.
2685
2686 2006-11-01  Jackson Harper  <jackson@ximian.com>
2687
2688         * TextControl.cs: When replacing the selection move the selection
2689         start/end/anchor to the end of the new text.
2690
2691 2006-11-01  Jackson Harper  <jackson@ximian.com>
2692
2693         * XplatUIWin32.cs: When setting the parent change the controls
2694         visibility to it's visibility flag, not to it's old parents
2695         visibility (.Visible walks the parent chain).
2696
2697 2006-11-01  Chris Toshok  <toshok@ximian.com>
2698
2699         * XplatUIX11.cs: revert the #79790 fix, as the simple.
2700         XSetTransientForHint fix breaks paint .net's tool windows.  more
2701         work needed for that one.
2702
2703 2006-11-01  Chris Toshok  <toshok@ximian.com>
2704
2705         * ScrollBar.cs: throw ArgumentException instead of Exception in
2706         LargeChange/SmallChange setters.  fixes unit tests.
2707
2708 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2709
2710         * ContainerControl.cs: reverted rev.67183 (which was itself
2711         a reversion of rev.66853... eh).
2712         
2713         * Control.cs: Fixes Reflector hang by changing Focus() call
2714         to what it was before rev.66643 (calling Select() here sets 
2715         ActiveControl, which in some situations calls back Focus and 
2716         eventually does a stack overflow). Temp fix.    
2717         Changes to GetNextControl() to not look for children to select when
2718         parent cannot be selectable (so it looks for siblings instead)  
2719         
2720 2006-10-31  Mike Kestner  <mkestner@novell.com>
2721
2722         * CheckedListBox.cs : off by one error in returned index from
2723         ObjectCollection.Add.  Fixes #79758.
2724
2725 2006-10-31  Chris Toshok  <toshok@ximian.com>
2726
2727         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
2728         calls for the textbox/spinner, to keep from recursing to the point
2729         where we crash.  Fixes #79760.
2730
2731 2006-10-31  Chris Toshok  <toshok@ximian.com>
2732
2733         * ListControl.cs (set_SelectedValue): don't throw exceptions on
2734         null/"" value, just return.  matches ms's behavior and fixes some
2735         failing tests.
2736
2737 2006-10-31  Chris Toshok  <toshok@ximian.com>
2738
2739         * Control.cs (set_Capture): make a logic a little easier to
2740         follow.
2741
2742         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
2743         if it's being destroyed.  A necessary fix surely, but a bandaid
2744         also, to fix the stuck capture problem in bug #78413.
2745
2746 2006-10-31  Chris Toshok  <toshok@ximian.com>
2747
2748         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
2749         convention of clearing hwnd.ClientRect when we set the
2750         width/height (so it'll be recalculated by Hwnd).
2751
2752 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2753
2754         * ContainerControl.cs: reversed Contains check from
2755         ActiveControl due to hanging problems. This fix
2756         partly regresses #79667 (button does not have
2757         initial focus), so this might be a symptom for 
2758         a larger parenting problem (set_ActiveControl
2759         is being called but the child control does
2760         not have the parent set yet?)   
2761         
2762 2006-10-31  Mike Kestner  <mkestner@novell.com>
2763
2764         * MenuAPI.cs : fix keynav when menu is click activated.
2765
2766 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
2767
2768         * ToolStrip*: Version 0.2.
2769
2770         * MenuStrip.cs: Version 0.1.
2771
2772         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
2773
2774 2006-10-30  Chris Toshok  <toshok@ximian.com>
2775
2776         [ fixes the oversized notify icon issue in bug #79745 ]
2777         
2778         * NotifyIcon.cs: scale the icon down to the size we're given by
2779         the XplatUI layer (this would be faster if we did it once instead
2780         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
2781         since it's never invoked.
2782
2783         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
2784         pixels high by default, so let's hardcode our systray icon to that
2785         size.  The SYSTEM_TRAY protocol should really have a way for
2786         client apps to query for the correct icon size.. but oh well.  A
2787         couple of patches to deal with the screwy client_window ==
2788         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
2789         instance, and also make sure we don't XSelectInput twice).
2790
2791 2006-10-30  Chris Toshok  <toshok@ximian.com>
2792
2793         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
2794         recreating forms.  Control recreation is the bane of my existence.
2795         Fix it in a way that keeps everyone happy.
2796
2797 2006-10-30  Chris Toshok  <toshok@ximian.com>
2798
2799         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
2800         just non-CHILD ones.  otherwise sometimes scrollbars end up with
2801         client_windows not being resized to the proper size (ReportBuilder
2802         shows this extremely well).
2803
2804 2006-10-30  Chris Toshok  <toshok@ximian.com>
2805
2806         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
2807         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
2808         showing up in the gnome taskbar.  Fixes bug #79790.
2809
2810 2006-10-30  Chris Toshok  <toshok@ximian.com>
2811
2812         * ApplicationContext.cs: guard against a NRE.
2813
2814         * Application.cs: null out the old MainForm for the context, so we
2815         don't try to use it again once it's disposed.  Fixes bug #79783.
2816
2817 2006-10-30  Chris Toshok  <toshok@ximian.com>
2818
2819         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
2820         BindingContext, set the data source directly, otherwise do the
2821         lazy approach - the actual ListManager will be created when we get
2822         a BindingContext. Fixes bug #79700.
2823
2824 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2825
2826         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
2827           XplatUIX11.cs: Remove old 2 parameter SetVisible.
2828
2829         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
2830
2831 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2832
2833         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
2834         of SetVisible that allows a window to be shown, but not activated.
2835         This is needed on Windows for MenuStrip, and can probably be used
2836         with MainMenu and ComboBox to fix the focus stealing issues on
2837         Windows.
2838
2839         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
2840
2841 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
2842
2843         * PictureBox.cs: Fix the output of the ToString method.
2844
2845 2006-10-29  Chris Toshok  <toshok@ximian.com>
2846
2847         * Control.cs (get_TopLevelControl): fix bug #79781.
2848
2849 2006-10-29  Chris Toshok  <toshok@ximian.com>
2850
2851         * ListControl.cs (set_DataSource): throw Exception here, not
2852         ArgumentException, to match MS behavior.
2853
2854 2006-10-29  Chris Toshok  <toshok@ximian.com>
2855
2856         * Form.cs: remove the try-catch's around calls to GetWindowState.
2857         We can just check the return value.
2858
2859         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
2860         Instead return -1.
2861
2862         * XplatUI.cs: Add note about additional return value for
2863         GetWindowState.
2864
2865 2006-10-29  Chris Toshok  <toshok@ximian.com>
2866
2867         * Control.cs (CreateHandle): when we create our handle, we also
2868         create the handles of our child controls.  Fixes one of the
2869         Control unit tests (CH11).
2870
2871 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2872
2873         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
2874
2875 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2876
2877         * ThemeClearlooks.cs: A little speedup.
2878
2879 2006-10-27  Chris Toshok  <toshok@ximian.com>
2880
2881         * Control.cs: implement Control.FromChildHandle in a way that
2882         matches the docs (and fixes the failed test.)
2883
2884 2006-10-27  Chris Toshok  <toshok@ximian.com>
2885
2886         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
2887         comments).
2888
2889         * DataGrid.cs: implement ResetForeColor such that the tests
2890         succeed.
2891         
2892 2006-10-27  Chris Toshok  <toshok@ximian.com>
2893
2894         * ToolBarButton.cs: setting text/tooltiptext to null results in it
2895         being set to "".  Fixes bug #79759.
2896
2897 2006-10-27  Jackson Harper  <jackson@ximian.com>
2898
2899         * TextControl.cs: We need to clear the entire selection area when
2900         setting the start, otherwise multiline selections are still
2901         visible.
2902
2903 2006-10-26  Chris Toshok  <toshok@ximian.com>
2904
2905         * PropertyGridView.cs: 
2906
2907         - ifdef all the code specific to the double
2908         buffer case, and provide some alternatives in the non-doublebuffer
2909         code, which makes heavy use of XplatUI.ScrollWindow to move things
2910         around without having to invalidate (and cause flicker).  There
2911         are still some drawing problems in the non-doublebuffered case, so
2912         DOUBLEBUFFER is defined by default.
2913
2914         - Fix the way dropdowns are handled.  now we explicitly watch for
2915         the events which might cause the dropdown to close, and break out
2916         of the nested event loop there.  This gets rid of all Capture
2917         code, at the expense of the Msg special casing.  Seems to work,
2918         though, and fixes bug #79743.
2919
2920 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
2921         * Control.cs: SetIsRecreating now recreates implicitly added
2922         child controls as well. Finally fixes #79629. The flag passed to 
2923         SetIsRecreating has also been removed since it wasn't used.
2924         
2925 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2926
2927         * PageSetupDialog.cs: Clean some code, fix some bits, 
2928         add some checks, and add a printer sub-dialog.
2929
2930 2006-10-26  Chris Toshok  <toshok@ximian.com>
2931
2932         * PropertyGrid.cs: make set_SelectedObject call
2933         set_SelectedObjects, and move the duplicate logic to the
2934         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
2935
2936         * PropertyGridView.cs: hide the textbox when we get a
2937         SelectedObjectsChanged event.
2938
2939         Fixes bug #79748.
2940
2941 2006-10-26  Chris Toshok  <toshok@ximian.com>
2942
2943         * PropertyGridView.cs: deal with the type converter not supporting
2944         GetStandardValues() or GetStandardValues() returning null, which
2945         is does in the default case.  Fixes #79742.
2946
2947 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2948
2949         * CheckedListBox.cs: nunit no longer crashes when selecting 
2950         Project/Edit menu option
2951         
2952 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2953
2954         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
2955         is no menu selected. fixes #79739
2956
2957 2006-10-25  Chris Toshok  <toshok@ximian.com>
2958
2959         * PropertyGridView.cs: factor out the splitter invalidation code
2960         into the SplitterPercent setter, and for kicks implement the
2961         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
2962         amount in either direction.
2963
2964 2006-10-25  Chris Toshok  <toshok@ximian.com>
2965
2966         * PropertyGridView.cs: do some cleanup of the brush used to draw
2967         text - read only fields should be grayed out.  not sure how to do
2968         this with the textbox, though.  but the textbox's should also be
2969         readonly now at least.  Also, hide/show the textbox when resizing
2970         the control.
2971         
2972         * CursorConverter.cs: use System.Reflection when getting the
2973         properties of Cursors, as TypeDescriptor.GetProperties isn't
2974         returning static properties.
2975
2976 2006-10-25  Chris Toshok  <toshok@ximian.com>
2977
2978         * PropertyGridView.cs: factor out the up/down handling, and reuse
2979         it for page up/down.  also add End/Home support.
2980
2981 2006-10-25  Chris Toshok  <toshok@ximian.com>
2982
2983         * PropertyGridView.cs:
2984
2985         - ensure the selected grid item is visible in the scrolled area,
2986         fixes bug #79572.
2987
2988         - fix Keys.Down handling when you're on the last item in the
2989         propertygrid.
2990
2991 2006-10-25  Mike Kestner  <mkestner@novell.com>
2992
2993         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
2994         clicks too.  Fixes #79725.
2995
2996 2006-10-24  Chris Toshok  <toshok@ximian.com>
2997
2998         * PropertyGrid.cs: use property.Converter instead of
2999         TypeDescriptor.GetConverter(property.PropertyType), so we catch
3000         TypeConverters declared on the property as well as on the
3001         PropertyType.  Fixes bug #79678.
3002
3003 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
3004
3005         * MimeIcon.cs, Mime.cs:
3006           Fallback to the default platform handler if no shared mime info
3007           stuff exists (fixes #79693).
3008
3009 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3010         * ContainerControl.cs: Incorrect contains check in ActiveControl 
3011         from previous fix (duh).
3012
3013 2006-10-20  Chris Toshok  <toshok@ximian.com>
3014
3015         * PropertyGridView.cs: the dropdown should be MIN(number of items
3016         in list, 15).  Fixes #79551.
3017
3018 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
3019         Fixes #79384, #79394, #79652, #79667
3020         * Application.cs: 
3021         
3022         - Modal windows are now destroyed in the proper order for windows
3023         
3024         * ContainerControl.cs:
3025         
3026         - ActiveControl setter has more conditions on when to return:
3027                 - if we're reselecting the active control, but it actually
3028                 didn't have focus (window hidden or some such), it runs
3029                 - if the active control being selected doesn't actually 
3030                 exist in the container, it returns
3031         
3032         * Form.cs
3033         
3034         - The ShowDialog now gets the current form as the owner when
3035         invoking without parameters, and correctly activates the owner 
3036         when returning
3037         
3038         * MessageBox.cs
3039         
3040         - MessageBox now catches the Escape key to exit
3041
3042 2006-10-20  Chris Toshok  <toshok@ximian.com>
3043
3044         * PropertyGridView.cs: fix a number of issues (bug #78565, and
3045         most of bug #79676):
3046
3047         - you can navigate around the property grid with the arrow keys.
3048
3049         - the dropdown is sized properly when the pg has a vertical
3050         scrollbar.
3051
3052         - fix the indentation for subentries, and properly select the
3053         entire label rect.
3054
3055         - fix the gray bar's drawing (only draw it to the last element,
3056         not for the height of the control.  Also make sure we draw that
3057         last horizontal grid line.
3058
3059         - use the same mechanism the datagrid uses wrt the editing textbox
3060         when scrolling/resizing/etc.  Namely, we hide it first, do the
3061         operation, then show it again (if it's still visible).
3062         
3063         - aggressively remove a lot of unnecessary refreshes (and also
3064         calls to Invalidate(). call more limited variants, and only redraw
3065         what we need.)
3066         
3067         * PropertyGrid.cs:
3068
3069         - when we're populating the merged collection, fill in the UI
3070         parent with either the passed in item, or the category item we
3071         create.
3072
3073         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
3074
3075         * GridItem.cs: drop some fully qualified names.
3076         
3077         * GridEntry.cs: add a "UIParent", which is basically the parent
3078         treenode.
3079
3080         * GridItemCollection.cs: add an IndexOf method.
3081
3082 2006-10-20  Mike Kestner  <mkestner@novell.com>
3083
3084         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
3085         a working win32 NC invalidation mechanism, we can't invalidate
3086         menus.  [Fixes #79705]
3087
3088 2006-10-20  Mike Kestner  <mkestner@novell.com>
3089
3090         * ListBox.cs : don't update the VScrollbar if the list is empty,
3091         just hide it.  [Fixes #79692]
3092
3093 2006-10-20  Jackson Harper  <jackson@ximian.com>
3094
3095         * RichTextBox.cs: Handle some special chars better, and don't skip
3096         the entire group when we encounter a special char that we don't
3097         handle correctly.
3098
3099 2006-10-18  Chris Toshok  <toshok@ximian.com>
3100
3101         * PropertyGridView.cs: address a number of issues from bug #79676,
3102         mostly of the cosmetic variety.
3103
3104         - The highlight rectangle for indented items not extends all the
3105         way to the left.
3106
3107         - Indented items aren't indented so much.
3108
3109         - the dropdown is properly sized width-wise if the pg has a
3110         vertical scrollbar.
3111
3112 2006-10-18  Chris Toshok  <toshok@ximian.com>
3113
3114         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
3115         systray stuff is rather convoluted to begin with.
3116
3117         systray icons are a single window for some reason (that I haven't
3118         figured out yet), and for them, client_window == whole_window.
3119         Given the way the tests are structured elsewhere to determine
3120         which paints are pending (client vs. nc), that situation will
3121         always yield PAINT, not NCPAINT.  So, if we have a pending
3122         nc_expose and no pending expose, remove the hwnd from the paint
3123         queue, and also set nc_expose_pending to false, to keep us from
3124         blocking further expose's adding the hwnd to the paint queue.
3125
3126         phew.  like i said, a rather convoluted change.  Fixes the
3127         notifyicon repaint issues in bug #79645.
3128
3129 2006-10-18  Chris Toshok  <toshok@ximian.com>
3130
3131         * Form.cs: when getting the backcolor of the form, don't get
3132         base.BackColor, as this allows parents to influence the background
3133         color.  This breaks mdi forms.  Instead, if the background_color
3134         is empty, return the default.
3135
3136 2006-10-18  Chris Toshok  <toshok@ximian.com>
3137
3138         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
3139         to being private instead of internal static.
3140
3141         * Control.cs: remove all the stupid ParentWaitingOnRecreation
3142         crap, it wasn't working for more deeply nested controls anyway,
3143         and we already have the is_recreating flag - use that instead.
3144         Before calling DestroyHandle in RecreateHandle, recurse through
3145         the control tree setting it to true.  this returns the recreate
3146         code to much of its original simplicity, while now guaranteeing we
3147         actually recreate everything we're supposed to.  This change gets
3148         fyireporting actually showing mdi children.
3149
3150 2006-10-17  Chris Toshok  <toshok@ximian.com>
3151
3152         * Form.cs: remove some debug spew, and collapse some duplicate
3153         code at the end of SetClientSizeCore.
3154
3155         * XplatUIX11.cs: 
3156         - add some more debug spew here too wrt Destroy handling.
3157         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
3158         in Control's handling of WM_DESTROY.
3159         - Remove the handling of zombie window DestroyNotifies from the
3160         event loop - we don't need it.  Now the only DestroyNotifies we
3161         actually handle are ones generated by X.
3162         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
3163         match gtk's (functioning) handling of this. This keep metacity
3164         from leaving droppings in the form of wm borders with no window
3165         contents all over the place.
3166
3167         * Control.cs:
3168         - add a bunch of debug spew wrt control recreation.
3169         - fix a bug where we weren't tracking Visible properly on
3170         recreated hwnds.
3171         - fixed the WM_PAINT double buffer handling to support re-entrant
3172         calls (yes, i know it's gross, but it's happening to us).
3173
3174 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3175         * ThemeWin32Classic.cs: changed drawing of selected days
3176         to make them look better.
3177
3178 2006-10-16  Chris Toshok  <toshok@ximian.com>
3179
3180         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
3181         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
3182
3183         * XplatUIX11.cs: move away from using hwnd.client_dc and
3184         hwnd.non_client_dc and on to a stack of dc's (and in window's
3185         case, PAINTSTRUCT's), so we can deal with nested Paint calls
3186         without puking or not disposing of Graphics objects.
3187
3188         * XplatUIOSX.cs: same.
3189
3190         * XplatUIWin32.cs: same.
3191
3192 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3193
3194         * FileDialog.cs: Don't call on_directory_changed inside
3195           OnSelectedIndexChanged (it changes the SelectedIndex too).
3196           Instead move it to OnSelectionChangeCommitted.
3197
3198 2006-10-13  Chris Toshok  <toshok@ximian.com>
3199
3200         * XplatUIX11.cs: more Destroy work.  the current code does the
3201         following things, in order:
3202
3203         1. Enumerates all handles of all controls at or below the one
3204         being destroyed, in pre-order.  As it is doing this, it marks the
3205         handles as zombie and clears all references to them.
3206         
3207         2. calls XDestroyWindow on the window passed in.
3208
3209         3. SendMessage's WM_DESTROY to all he handles in the accumulated
3210         list.
3211
3212 2006-10-13  Chris Toshok  <toshok@ximian.com>
3213
3214         * XplatUIX11.cs: set hwnd.zombie to true before calling
3215         SendMessage (WM_DESTROY).  this keeps us from marking the new
3216         window a zombie, and also keeps us from calling sendmessage at
3217         all.
3218
3219 2006-10-13  Jackson Harper  <jackson@ximian.com>
3220
3221         * TextControl.cs: Do not show the caret and selection at the same
3222         time.  Reduces ugliness by 35%.
3223
3224 2006-10-13  Chris Toshok  <toshok@ximian.com>
3225
3226         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
3227         zombie after we do the recursive call, so we actually do call
3228         SendMessage on the children controls.
3229         (GetMessage): if we find a pending paint event for a zombie hwnd,
3230         remove the hwnd from the paint queue, or else it will always be
3231         there (and we'll effectively loop infinitely)
3232
3233 2006-10-13  Mike Kestner  <mkestner@novell.com>
3234
3235         * MenuItem.cs : add Selected format under keynav too.
3236         Fixes #79528.
3237
3238 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
3239
3240         * PropertyGrid.cs: Fixed some NRE's and small difference between our
3241         implementation and that of MS.
3242
3243 2006-10-13  Chris Toshok  <toshok@ximian.com>
3244
3245         * Control.cs (OnInvalidated) only futz with the invalid_region if
3246         the control is double buffered.  this fixes the apparent hang in
3247         the ListView unit tests.  Someone needs to make the
3248         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
3249
3250 2006-10-13  Chris Toshok  <toshok@ximian.com>
3251
3252         * PropertyGridView.cs:
3253
3254         - do a little refactoring so that only one place calls
3255         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
3256         else call that.  Also make it Refresh, since there are redraw bugs
3257         otherwise (we should take a look at that...)
3258
3259         - do a little more refactoring work to share the body of code
3260         involved with the drop down.  it was duplicated in the code
3261         dealing with the listbox handling and in the code dealing with the
3262         UITypeEditors.
3263
3264         - add a Capture to the dropdown form's control once it's
3265         displayed, and add a MouseDown handler that checks to make sure
3266         the position is inside the control.  If it's not, close the
3267         dropdown.  This fixes #78190.
3268
3269         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
3270         if the value is different than the initial value.
3271         
3272 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
3273
3274         * Control.cs: see #78650
3275         - Fixed GetNextControl for several cases:
3276                 - Changed FindFlatForward to return 
3277                 correct sibling control when more than one
3278                 control has same TabIndex as the currently 
3279                 focused one.
3280                 - Changed FindFlatBackward to loop children
3281                 from last to first and apply same logic as in
3282                 FindFlatForward
3283                 - Changed FindControlForward to search for
3284                 children when control is not a container
3285                 but has children, or search for siblings if
3286                 control is a container...
3287                 - Changed FindControlBackward   to continue
3288                 searching for child controls when hitting 
3289                 Panel-like parents
3290                 
3291         - Fixed Focus method to update ActiveControl
3292         (FocusTest.FocusSetsActive failure)
3293         
3294         * TabControl.cs:
3295         - Focus rectangle now refreshes when gaining
3296         or losing focus
3297         - Removed grab for Tab key on IsInputKey that 
3298         was keeping tab navigation from working (#78650)
3299
3300 2006-10-13  Chris Toshok  <toshok@ximian.com>
3301
3302         * PropertyGridView.cs:
3303         - Rewrite SetPropertyValue to loop over SelectedGridItem's
3304         SelectedObjects.
3305
3306         - Deal with GridItem.Value == null a few places.
3307
3308         * PropertyGrid.cs: 
3309         - replace the PopulateGridItemCollection with a pair of methods
3310         which compute the intersection of all the properties in the
3311         SelectedObjects array.  Fixes #79615.
3312
3313         - Throw ArgumentException from set_SelectedObjects if there's a
3314         null in the array.
3315
3316         - Add GetTarget method which can be used to traverse up the
3317         GridItem.Parent chain.  It depends on the assumption that
3318         selected_objects for different GridEntries are always in the same
3319         order (a safe assumption).  Use this method and loop over all the
3320         selected objects in the entry when calling RemoveValueChanged and
3321         AddValueChanged.
3322         
3323         * GridEntry.cs: Make this handle multiple selected objects.
3324         .Value returns null if not all the selected objects share the same
3325         value.
3326
3327 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
3328         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
3329           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
3330           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
3331           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
3332           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
3333         add additional functionality.
3334
3335 2006-10-12  Mike Kestner  <mkestner@novell.com>
3336
3337         * ErrorProvider.cs : new ToolTipWindow ctor sig.
3338         * HelpProvider.cs : new ToolTipWindow ctor sig.
3339         * ToolTip.cs : remove ToolTip param from Window sig since it is
3340         not used.
3341         * ToolBar.cs : add tooltip support.  Fixes #79565.
3342
3343 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3344
3345         * ComboBox.cs: move the events in set_SelectedIndex to 
3346         after the call to HighlightIndex in order to avoid 
3347         possible recursion and subsequent problems with the call
3348         to HighlightIndex and include a range check in 
3349         set_HighlightIndex. Fixes #79588
3350         
3351 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3352
3353         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
3354         to ui thread's settings instead of sunday. 
3355         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
3356
3357 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3358
3359         * DateTimePicker.cs
3360         * MonthCalendar.cs
3361         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
3362         and implement missing functionality (selecting different parts 
3363         of the date and edit them individually with the keyboard).
3364         
3365 2006-10-11  Chris Toshok  <toshok@ximian.com>
3366
3367         * Control.cs (OnInvalidated): fix NRE relating to last change.
3368
3369 2006-10-11  Chris Toshok  <toshok@ximian.com>
3370
3371         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
3372         atoms in _NET_WM_STATE here if the window is maximized.  We need
3373         to do this because we're *replacing* the existing _NET_WM_STATE
3374         property, so those atoms will be lost otherwise, and any further
3375         call to GetWindowState will return Normal for a window which is
3376         actually maximized.  Fixes #79338.
3377
3378 2006-10-11  Jackson Harper  <jackson@ximian.com>
3379
3380         * TextControl.cs: Special case for setting selection end to
3381         selection start, we basically kill the anchor.
3382         - some todo comments.
3383
3384 2006-10-11  Chris Toshok  <toshok@ximian.com>
3385
3386         * Control.cs: switch to using an "invalid_region" to track which
3387         parts of the image buffer need updating.  This is more code than
3388         the simple fix from r66532.  That version just attempted to always
3389         fill the entire buffer on redraw, which turns out to be
3390         inefficient when invalidating small rectangles.  This version
3391         simply adds the invalid rectangle to the invalid region.  When we
3392         get any WM_PAINT message we see if it can be filled using the
3393         image buffer, and if it can't (if the paint event's clip rectangle
3394         is visible in the invalid region) we first fill the image buffer.
3395         So, the image buffer is still a cache, we just fill it lazily.
3396
3397         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
3398         need it any longer.
3399
3400 2006-10-11  Chris Toshok  <toshok@ximian.com>
3401
3402         * XplatUIX11.cs (SetWindowPos): we need to update both position as
3403         well as size after calling XMoveResizeWindow.  This keeps us from
3404         ignoring future SetWindowPos calls.  Fixes the disappearing
3405         DateTimePicker in the ToolBarDockExample from bug #72499.
3406
3407 2006-10-11  Chris Toshok  <toshok@ximian.com>
3408
3409         * TextBoxBase.cs: reorder things a bit when it comes to
3410         resizing-causing-recalculation.  we were recalculating the
3411         document when our position was changed, which shouldn't happen.
3412         We only care about size changes.  Clear up some more redundant
3413         recalculation calls while I'm at it.  This makes the toolbar dock
3414         example snappy when you're just dragging toolbars around (since it
3415         causes a relayout whenever you move one.)
3416
3417 2006-10-11  Chris Toshok  <toshok@ximian.com>
3418
3419         * ToolBarButton.cs (get_Rectangle): this only returns
3420         Rectangle.Empty if Visible == false, or Parent == null.
3421         Parent.Visible doesn't matter.
3422
3423 2006-10-10  Chris Toshok  <toshok@ximian.com>
3424
3425         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
3426         by .net 1.1, so switch to an internal method instead.
3427
3428 2006-10-10  Chris Toshok  <toshok@ximian.com>
3429
3430         * Control.cs (WM_PAINT): when a control is double buffered we draw
3431         initially to the ImageBuffer and then copy from there.  But when a
3432         parent control which has child controls is double buffered, the
3433         initial drawing doesn't encompass the entire ClientRectangle of
3434         the parent control, so we end up with uninitialized bits (this is
3435         easily seen by dragging the top toolbar in
3436         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
3437         manually set the ClipRectangle of the paint_event (only the one we
3438         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
3439         of the nastiness in bug #72499.
3440
3441         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
3442         which we use in Control.cs's WM_PAINT handling.
3443
3444 2006-10-10  Jackson Harper  <jackson@ximian.com>
3445
3446         * TextBoxBase.cs: Finish off the autoscrolling stuff.
3447
3448 2006-10-10  Chris Toshok  <toshok@ximian.com>
3449
3450         * Cursor.cs: Apply a slightly different patch to the one suggested
3451         in #79609.
3452
3453 2006-10-10  Jackson Harper  <jackson@ximian.com>
3454
3455         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
3456         not the parent form.
3457         * TextControl.cs: use difference in old line count vs new count to
3458         calculate how many lines were added, this takes into account soft
3459         line breaks properly.
3460
3461 2006-10-10  Chris Toshok  <toshok@ximian.com>
3462
3463         * LinkLabel.cs: don't call MeasureCharacterRanges against a
3464         rectangle located at 0,0 and the size of the text.  Use
3465         ClientRectangle instead.  This fixes rendering of non-left aligned
3466         link labels.
3467
3468 2006-10-10  Jackson Harper  <jackson@ximian.com>
3469
3470         * TextBoxBase.cs: When we set the selection start position the
3471         caret.
3472         * TextControl.cs: Need to update the caret when we decrement it to
3473         zero.
3474         - Make sure that the selection_visible flag gets reset to false if
3475         the selection isn't visible.  Before this you could get it set to
3476         visible by changing the selection start, then changing the end to
3477         equal the start.
3478
3479 2006-10-09  Jackson Harper  <jackson@ximian.com>
3480
3481         * TreeView.cs: Don't update scrollbars when we aren't visible.
3482         * TreeNodeCollection.cs: Only need to update scrollbars if being
3483         added to an expanded visible node or the root node.
3484
3485 2006-10-09  Chris Toshok  <toshok@ximian.com>
3486
3487         * XplatUIX11.cs (SendMessage): fix NRE.
3488
3489 2006-10-09  Jackson Harper  <jackson@ximian.com>
3490
3491         * TextBoxBase.cs: Implement horizontal autoscrolling.
3492         * TextControl.cs: Add a movement types that allows moving forward
3493         and backwards without wrapping.
3494
3495 2006-10-09  Mike Kestner  <mkestner@novell.com>
3496
3497         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
3498         with focus "expansion" of labels.  Fixes #79532 and then some.
3499         * ThemeWin32Classic.cs : add LineLimit to ListView label format
3500         when wrapping.
3501
3502 2006-10-09  Jackson Harper  <jackson@ximian.com>
3503
3504         * TextBoxBase.cs: Set the default max values to MaxValue since
3505         we use the scrollbar for autoscrolling and the default value is
3506         100.  If we don't do this the caret won't keep up with typing
3507         after about 18 characters.
3508         * TextControl.cs: Make sure the selection is offset by the
3509         viewport x.  This fixes selection when using auto scrolling.
3510
3511 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
3512         
3513         * Form.cs: The active control should be selected after the 
3514         OnLoad so that any child control initialization that affects
3515         the selection is done. Fixes #79406
3516
3517 2006-10-06  Chris Toshok  <toshok@ximian.com>
3518
3519         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
3520         to have no evil effects.
3521
3522         - Stop selecting StructureNotifyMask on non-toplevel windows.
3523
3524           The only way children should be resized is by using the SWF api,
3525           and we already send WM_WINDOWPOSCHANGED messages in those cases.
3526           Toplevel windows can be interacted with via the window manager,
3527           and so we keep the input mask there.
3528
3529           The other event StructureNotifyMask gives us (that we care
3530           about) is DestroyNotify.  The code is already structured such
3531           that it assumes we won't be getting a DestroyNotify event for
3532           the window we pass to XDestroyWindow (which is what
3533           StructureNotifyMask is supposed to guarantee.)  So, that code
3534           shouldn't be affected by this either.
3535
3536         - Stop selecting VisibilityChangeMask altogether.
3537
3538           We weren't doing anything with the resulting events anyway.
3539         
3540         This vastly reduces the number of X requests and events we see
3541         when resizing/laying out a large ui.
3542
3543 2006-10-06  Chris Toshok  <toshok@ximian.com>
3544
3545         * ScrollableControl.cs (DisplayRectangle): we need to take into
3546         account the DockPadding regardless of whether or not auto_scroll
3547         == true.  rework this slightly to this effect, and fix bug #79606,
3548         and part of #72499 (you can now see the drag handles and drag
3549         toolbars around).
3550
3551 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
3552
3553         * ListViewItem.cs: Collections of selected and checked items are now
3554         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
3555         we mark the collection "dirty".
3556         * ListView.cs: Marked collections readonly. Modified UpdateSelection
3557         to only clear SelectedItems when a new item is selected and MultiSelect
3558         is enabled. CheckedItems and SelectedItems now subscribe to Changed
3559         event of ListViewItemCollection, and mark its list dirty whenever
3560         that event is fire. This allows us to return selected/checked items 
3561         in the same order as they are in the Items collection. This matches
3562         the MS behavior.
3563
3564 2006-10-06  Chris Toshok  <toshok@ximian.com>
3565
3566         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
3567         right mouse clicks.  Fixes bug #79593.
3568
3569 2006-10-06  Chris Toshok  <toshok@ximian.com>
3570
3571         * Splitter.cs: doh, fix splitters that don't want to cancel the
3572         movement when you drag them.  Also, impose the limits on the
3573         values we send to the SplitterMovingEvent.  Fixes #79598.
3574
3575 2006-10-06  Jackson Harper  <jackson@ximian.com>
3576
3577         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
3578         since we use this for auto scrolling also.
3579
3580 2006-10-05  Chris Toshok  <toshok@ximian.com>
3581
3582         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
3583         beginning to think that most datagrid column types don't need this
3584         method.  Fixes bug #79392.
3585
3586 2006-10-05  Chris Toshok  <toshok@ximian.com>
3587
3588         * DataGrid.cs: move back to a more lazy scheme for creating the
3589         CurrencyManager, so we aren't updating it every time you set
3590         either DataSource or DataMember.  Also, don't call
3591         RecreateDataGridRows if the currency manager hasn't changed.
3592
3593 2006-10-05  Chris Toshok  <toshok@ximian.com>
3594
3595         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
3596         emitted, SelectedIndex should already be updated.  Fixes bug
3597         #78929.
3598
3599 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
3600
3601         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
3602           ToolStripTextBox.cs: Initial commit.
3603         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
3604
3605 2006-10-05  Jackson Harper  <jackson@ximian.com>
3606
3607         * TabControl.cs: We need to invalidate the tab control area when
3608         new ones are added (duh).
3609
3610 2006-10-03  Chris Toshok  <toshok@ximian.com>
3611
3612         * Form.cs (ProcessDialogKey): if the focused control is in this
3613         form and is a button, call its PerformClick method here.  Fixes
3614         #79534.
3615
3616 2006-10-04  Jackson Harper  <jackson@ximian.com>
3617
3618         * TabPage.cs: Ignore setting of Visible, and add an internal
3619         method for setting the controls visibility.  TabPage's Visible
3620         property is a little strange on MS, this seems to make us
3621         compatible, and fixes cases where people set all the tab pages to
3622         visible.
3623         * TabControl.cs: Use the new internal setting on tab pages
3624         visibility.
3625
3626 2006-10-03  Mike Kestner  <mkestner@novell.com>
3627
3628         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
3629
3630 2006-10-03  Mike Kestner  <mkestner@novell.com>
3631
3632         * ListView.cs : use is_visible instead of Visible to check if 
3633         scrollbars should be placed/sized.  Also some max_wrap_width
3634         love for LargeIcon view.  [Fixes #79533]
3635
3636 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
3637
3638         * TextControl.cs :
3639           Make set_TextAlign() do actually update the align. Fixed #78403.
3640
3641 2006-10-03  Chris Toshok  <toshok@ximian.com>
3642
3643         * DataGrid.cs: fix a crash when switching datasources if the
3644         vertical scrollbar is at someplace other than Value = 0.  Also,
3645         reduce the number of recalculation passes we do in SetDataSource
3646         from 2 to 1.
3647
3648 2006-10-03  Jackson Harper  <jackson@ximian.com>
3649
3650         * TextBoxBase.cs: Move the if value the same bail check up, we
3651         don't want to empty the document if it is already empty, this
3652         seems to severly mess up the caret.  TODO: I should probably fix
3653         the empty statement to update teh caret somehow.
3654
3655 2006-10-03  Chris Toshok  <toshok@ximian.com>
3656
3657         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
3658         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
3659         reflection, an internal row type, properties on said type, etc.)
3660         will work with our datagrid.  Fixes #79531.
3661
3662 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3663
3664         * FileDialog.cs: Don't crash if a path is not accessible
3665           (System.UnauthorizedAccessException). Fixes #79569.
3666         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
3667           a ':' too. Return unknown icon for those paths/files.
3668
3669 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
3670
3671         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
3672         GetContainerControl returns null.
3673
3674 2006-10-02  Chris Toshok  <toshok@ximian.com>
3675
3676         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
3677         call to XGetWindowAttributes instead of "handle".  fixes an X
3678         error using notifyicon after the NotifyIconWindow to Form base
3679         class switch.
3680
3681 2006-10-02  Chris Toshok  <toshok@ximian.com>
3682
3683         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
3684         server grab and looping we need to do to get down to the most
3685         deeply nested child window.
3686         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
3687         QueryPointer again after the WarpPointer so we can generate a
3688         proper (fake) MotionNotify event to be enqueued in the destination
3689         window's queue.
3690         (GetCursorPos): call QueryPointer.
3691
3692         Fixes #79556.
3693
3694 2006-10-02  Jackson Harper  <jackson@ximian.com>
3695
3696         * NotifyIcon.cs: Derive the notify icon from a form, so things
3697         like FindForm work on it.
3698         - Swallow the WM_CONTEXTMENU message, since that is generated on
3699         mouse down, and context menu is a mouse up kinda guy.  I believe
3700         the correct fix here is probably to make the notify icon entirely
3701         NC area, but this seems to work fine for anyone not manipulating
3702         WndProc.
3703
3704 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
3705
3706         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
3707           ToolStripItemCollection.cs, ToolStripLabel.cs,
3708           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
3709           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
3710           Initial implementation.
3711         * TextRenderer.cs: Provide padding to MeasureText.
3712
3713 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
3714
3715         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
3716         of ButtonBaseAccessibleObject. Fix bug #79552.
3717
3718 2006-10-02  Jackson Harper  <jackson@ximian.com>
3719
3720         * MdiWindowManager.cs: When maximizing use the containers client
3721         rect, not it's bounds, so nc area is accounted correctly.
3722         - Use the parent form's size for the menu position, since the
3723         client isn't always the full form size.
3724
3725 2006-10-01  Chris Toshok  <toshok@ximian.com>
3726
3727         * ScrollableControl.cs: make sure neither right_edge or
3728         bottom_edge are < 0, since they're used as LargeChange for the
3729         horiz/vert scrollbars respectively.  Fixes #79539.
3730
3731 2006-10-01  Chris Toshok  <toshok@ximian.com>
3732
3733         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
3734         the xplatuix11 code can cause us to destroy/recreate our handle.
3735
3736         * XplatUIX11.cs
3737         (SystrayAdd):
3738         - this code can be invoked many times for the same Hwnd.  Make
3739           sure we only destroy the client window once (the first time this
3740           method is called).  This fixes bug #79544.
3741         - Remove the call to the improperly bound XSync.  why we had two
3742           bindings to this, I will never know, but this call resulted in
3743           events being discarded from the queue(!).
3744         - correct a misunderstanding of _XEMBED_INFO - the second atom is
3745           not our current state but the state we wish to be in.  So, 0 if
3746           we don't want to be mapped.  Change it to 1.
3747         (SystrayRemove): The XEMBED spec makes mention of the fact that
3748         gtk doesn't support the reparent of client windows away from the
3749         embedder.  Looking at gtksocket-x11.c seems to agree with this.
3750         The only avenue we have for removing systray icons is to destroy
3751         them.  We don't want the handle to go away for good, though, so
3752         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
3753         #79545.
3754         
3755 2006-10-01  Chris Toshok  <toshok@ximian.com>
3756
3757         * Form.cs (WndProc): inline the native_enabled variable usage into
3758         the cases in which it's used.  Fixes #79536.
3759
3760 2006-09-29  Mike Kestner  <mkestner@novell.com>
3761
3762         * ListView.cs : toggle the selection state for ctrl clicks in 
3763         multiselect mode. [Fixes #79417]
3764
3765 2006-09-29  Mike Kestner  <mkestner@novell.com>
3766
3767         * ListView.cs : kill CanMultiSelect and refactor the selection
3768         code to support multiselection in the absence of mod keys. Steal
3769         arrow/home/end keys by overriding InternalPreProcessMessage to
3770         restore regressed keynav behavior.
3771         [Fixes #79416]
3772
3773 2006-09-29  Jackson Harper  <jackson@ximian.com>
3774
3775         * MdiClient.cs: Repaint the titlebars when the active window is
3776         changed.
3777
3778 2006-09-29  Chris Toshok  <toshok@ximian.com>
3779
3780         * Application.cs: when entering a runloop with a modal, make sure
3781         the hwnd is enabled.  Fixes #79480.
3782
3783 2006-09-29  Chris Toshok  <toshok@ximian.com>
3784
3785         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
3786         when ListManager.CanAddRows == false, bump us back one.
3787
3788         * DataGridColumnStyle.cs (ParentReadOnly): remove the
3789         listmanager.CanAddRows check.  This makes ArrayLists uneditable
3790         using a datagrid, which is not right.
3791         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
3792         is an IEditable, but call property_descriptor.SetValue regardless.
3793         fixes #79435.
3794
3795 2006-09-29  Chris Toshok  <toshok@ximian.com>
3796
3797         * DataGridBoolColumn.cs: we need to test equality in the face of
3798         possible null values (as is the case with the default NullValue).
3799         This patch keeps us from crashing in that case.
3800
3801 2006-09-29  Jackson Harper  <jackson@ximian.com>
3802
3803         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
3804         here, since it will get called for every node collection in the
3805         tree. This is now done in the treeview once the sorting is
3806         finished.
3807         * TreeView.cs: Recalculate the visible order, and update the
3808         scrollbars after sorting, set the top nope to the root so that the
3809         recalc actually works.
3810
3811 2006-09-29  Chris Toshok  <toshok@ximian.com>
3812
3813         * LinkLabel.cs: more handling of the default link collection in
3814         the face of LinkArea manipulation.  The default link collection
3815         contains 1 element (start=0,length=-1).  If the user sets LinkArea
3816         to anything and the links collection is the default, clear it.
3817         Then only add the link if its nonempty.  Fixes #79518.
3818
3819 2006-09-29  Chris Toshok  <toshok@ximian.com>
3820
3821         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
3822         piece correctly when we hit a '\n'.  Fixes #79517.
3823
3824 2006-09-29  Chris Toshok  <toshok@ximian.com>
3825
3826         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
3827         change the binding of gdk_init_check to take two IntPtr's, and
3828         pass IntPtr.Zero for both of them.  Fixes #79520.
3829
3830 2006-09-29  Mike Kestner  <mkestner@novell.com>
3831
3832         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
3833         [Fixes #78779]
3834
3835 2006-09-28  Jackson Harper  <jackson@ximian.com>
3836
3837         * XplatUIX11.cs: When translating NC messages make sure we go from
3838         whole window to screen, not client window to screen.
3839         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
3840         method doesn't exist
3841         - Skip over controls that aren't forms when arranging.
3842
3843 2006-09-28  Jackson Harper  <jackson@ximian.com>
3844
3845         * XplatUIWin32.cs: Clip the rect to the parent window.
3846         * XplatUIStructs.cs: Add clipping modes struct.
3847         * InternalWindowManager.cs: New private method that factors title
3848         bar heights in when calculating the pos of an NC mouse message.
3849         - Use SendMessage to force a paint when the form's size is changed
3850         instead of painting the decorations immediately.
3851         - Don't let the NC button click messages get to DefWndProc,
3852         because they will attempt to handle windowing themself, and this
3853         messes up z-order (it will put them in front of the scrollbars).
3854         * XplatUIX11.cs: Make sure that we don't reset window managers if
3855         we already have one (ie the window is an MDI window).
3856
3857 2006-09-28  Chris Toshok  <toshok@ximian.com>
3858
3859         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
3860         menu code really needs going over.
3861
3862 2006-09-27  Chris Toshok  <toshok@ximian.com>
3863
3864         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
3865         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
3866         window is maximizable.  So, we need to make sure that even if we
3867         clear the border/wm frame of those functions, they're still
3868         available (basically, we remove the decoration without removing
3869         the function).  Half the fix for #79338.
3870
3871 2006-09-27  Chris Toshok  <toshok@ximian.com>
3872
3873         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
3874         Fixes bug #79515.
3875
3876 2006-09-27  Chris Toshok  <toshok@ximian.com>
3877
3878         * Splitter.cs: reorder things a bit so that we don't actually
3879         draw/move the splitter until after calling OnSplitterMoving.  This
3880         lets users cancel/disallow the movement by explicitly setting
3881         event.SplitX/SplitY.  Fixes #79372.
3882
3883 2006-09-27  Jackson Harper  <jackson@ximian.com>
3884
3885         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
3886         because it is most likely on a window being destroyed, and that
3887         will give us an X11 error.
3888
3889 2006-09-27  Chris Toshok  <toshok@ximian.com>
3890
3891         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
3892         the dropdown button now toggles between showing and hiding the
3893         dropdown.  Also, get rid of dropdown_form_showing and just use
3894         dropdown_form.Visible.  We still don't do a grab, but I'll leave
3895         that part to someone who has handled Capture-fu before.
3896
3897 2006-09-27  Chris Toshok  <toshok@ximian.com>
3898
3899         * DataGrid.cs: return false if alt isn't pressed when '0' is
3900         pressed.  this keeps the '0' key from being swallowed, and fixes
3901         bug #79350.
3902
3903 2006-09-27  Chris Toshok  <toshok@ximian.com>
3904
3905         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
3906         Calling Refresh (in response to a scrollbar event) screws up the
3907         scrollbar painting.  Fixes bug #78923.
3908
3909 2006-09-27  Chris Toshok  <toshok@ximian.com>
3910
3911         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
3912         then insert into hashtable" blocks threadsafe.
3913
3914 2006-09-27  Chris Toshok  <toshok@ximian.com>
3915
3916         * MessageBox.cs (CreateParams): the styles should be |'ed with our
3917         baseclass's, since otherwise the
3918         ControlBox/MinimizeBox/MaximizeBox assignments above have no
3919         effect.  This gets the close button back in messageboxes.
3920
3921 2006-09-27  Chris Toshok  <toshok@ximian.com>
3922
3923         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
3924         flag, not just != 0.  this makes flags that are actually multiple
3925         bits (like WS_CAPTION) work.  fixes bug #79508.
3926
3927 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
3928
3929         * PageSetupDialog.cs: add support for getting and settings the 
3930         paper size, source and orientation.
3931
3932 2006-09-26  Chris Toshok  <toshok@ximian.com>
3933
3934         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
3935         and caption == "", we need to remove the resize handles as well as
3936         the title bar.
3937
3938         * Control.cs (set_Text): turns out that setting Text on a form
3939         should change the WM styles on the window, since if ControlBox ==
3940         false, the only way to get a window border is to have a non-""
3941         Text property.  check winforms/forms/text.cs for an example.  so,
3942         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
3943         update both window styles and title.  This fixes a lot of dialogs
3944         (including the preferences dialog in MonoCalendar.)
3945
3946 2006-09-26  Chris Toshok  <toshok@ximian.com>
3947
3948         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
3949         control isn't a Form), call Win32ShowWindow to hide the window,
3950         but don't update the control Visible property.  When we reparent
3951         back to a parent control, call SetVisible in order for the
3952         window's visibility to be reinstated.
3953
3954         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
3955         the FosterParent.
3956
3957         * Control.cs (ControlCollection.Remove): remove that value.Hide()
3958         call for good, since it breaks MonoCalendar (and other things I'm
3959         sure.) Also, set all_controls to null *after* the owner calls,
3960         which end up regenerating it.
3961         (ChangeParent): allow new_parent to be == null, passing
3962         IntPtr.Zero down to XplatUI.
3963
3964         this fixes #79294 the right way.
3965
3966 2006-09-26  Mike Kestner  <mkestner@novell.com>
3967
3968         * GridEntry.cs : internal SetParent method.
3969         * PropertyGrid.cs : attach to property changed on the proper
3970         target if we have a hierarchical grid with subobjects. Setup
3971         GridItem.Parent for hierarchical items.
3972         * PropertyGridView.cs : Set value on the correct target for
3973         hierarchical grids. [Fixes #78903]
3974
3975 2006-09-26  Chris Toshok  <toshok@ximian.com>
3976
3977         * Control.cs (ChildNeedsRecreating): this should return true if
3978         either we're being recreated and the child is in our list, or our
3979         parent is waiting for our recreation.
3980
3981 2006-09-26  Chris Toshok  <toshok@ximian.com>
3982
3983         * Control.cs (ControlCollection.Remove): reinstate the
3984         value.Hide() call as suggested in bug #79294.
3985
3986 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
3987
3988         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
3989         coordinates (versus a relative move).
3990
3991 2006-09-26  Chris Toshok  <toshok@ximian.com>
3992
3993         * Control.cs: rework child recreation a little bit.  It turns out
3994         that we race between the DestroyNotify the WM_DESTROY message.  If
3995         the parent gets its DestroyNotify before the child gets the
3996         WM_DESTROY message, the child ends up not recreating (since the
3997         parent finishes its recreation on DestroyNotify, and the child
3998         checks ParentIsRecreating.)
3999
4000         So, instead we store off a list of all the child controls which
4001         need to be recreated when the parent control starts to recreate
4002         itself.  Then, when child controls get their WM_DESTROY message we
4003         check to see if they're in the parent's pending recreation list,
4004         and if so, we recreate.  This removes all dependency on ordering
4005         from the code and fixes the initial MonoCalendar upgrade dialog.
4006         
4007 2006-09-26  Jackson Harper  <jackson@ximian.com>
4008
4009         * TextControl.cs: Use the Line to get the length of the line,
4010         since soft line breaks can change the end line.
4011
4012 2006-09-26  Chris Toshok  <toshok@ximian.com>
4013
4014         * Control.cs (ControlCollection.AddImplicit): don't add the
4015         control again if it's already in one of our lists.  This keeps us
4016         from adding controls over and over again for comboboxes when their
4017         handle gets recreated (as the combobox adds implicit controls in
4018         OnHandleCreated).  Fixes the X11 errors in bug #79480.
4019
4020 2006-09-26  Jackson Harper  <jackson@ximian.com>
4021
4022         * TextControl.cs: When deleting characters make sure that any
4023         orphaned zero lengthed tags get deleted.
4024         - Fix ToString for zero lengthed tags.
4025
4026 2006-09-25  Jackson Harper  <jackson@ximian.com>
4027
4028         * TextControl.cs: When getting a tag at the location there can be
4029         multiple tags at the same spot, these are 0-lengthed tags that
4030         appear when extra formatting has been stuck in a location.  We
4031         need to pull out the last of these 0 lengthed tags.
4032
4033 2006-09-25  Jackson Harper  <jackson@ximian.com>
4034
4035         * TextControl.cs: Fix print out in debug method.
4036         * TextBoxBase.cs: When text is set bail if we are setting to the
4037         previous value.
4038         
4039 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
4040
4041         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
4042           It is now possible to change the selected index in a FontXXXListBox
4043           with the up and down arrow keys from the FontXXXTextBoxes.
4044           Also, send the FontXXXTextBox mouse wheel event to the corresponding
4045           FontXXXListBoxes to match ms.
4046
4047 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
4048
4049         * SystemInformation.cs: Return a clone of the theme's MenuFont because
4050         anyone can dispose it, anytime. All other properties returns enums, 
4051         structs or basic types so they don't need such tricks.
4052
4053 2006-09-22  Jackson Harper  <jackson@ximian.com>
4054
4055         * XplatUI.cs:
4056         * XplatUIWin32.cs:
4057         * Clipboard.cs:
4058         * DataFormats.cs:
4059         * XplatUIOSX.cs:
4060         * XplatUIDriver.cs: Update interface to add a primary selection
4061         flag, so the driver can use the primary selection buffer if
4062         needed.
4063         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
4064
4065         * RichTextBox.cs: We need to supply the data object to paste now
4066         (so we can choose to supply CLIPBOARD or PRIMARY).
4067         * TextBoxBase.cs: Supply data object to paste (see above).
4068         - Middle click uses the primary selection data object.
4069         
4070 2006-09-21  Chris Toshok  <toshok@ximian.com>
4071
4072         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
4073         of SetWMStyles.  It's still a rat's nest and is largely
4074         order-dependent which I dislike immensely.  This also fixes the X
4075         button disappearing from toplevel forms.
4076
4077 2006-09-21  Mike Kestner <mkestner@novell.com>
4078
4079         * ListBox.cs: move Jordi's click/dblclick raising code to the
4080         mouse up handler.
4081
4082 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
4083
4084         * ListBox.cs: Fixes 79450
4085
4086 2006-09-21  Mike Kestner <mkestner@novell.com>
4087
4088         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
4089         to deal with people updating the TreeNodeCollection after the tree
4090         is disposed.  "Fixes" 79330.
4091
4092 2006-09-20  Jackson Harper <jackson@ximian.com>
4093
4094         * TextControl.cs: Push the cursor record onto the undo stack
4095         before the delete action. This fixes 78651.
4096
4097 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
4098
4099         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
4100         CreateParams. Fixes 79329.
4101
4102 2006-09-19  Chris Toshok  <toshok@ximian.com>
4103
4104         * XplatUIX11.cs: a couple of blanket code massage passes to clean
4105         things up a bit.  First, get rid of the NetAtoms array (and the NA
4106         enum), and just embed the atoms as static fields.  Also, add a
4107         couple of functions (StyleSet and ExStyleSet) to clean up all the
4108         bitmask testing of styles.
4109
4110         * X11Structs.cs: remove the NA enum, not needed anymore.
4111         
4112 2006-09-19  Chris Toshok  <toshok@ximian.com>
4113
4114         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
4115         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
4116         added cleanup to get MessageBox titles appearing again, which were
4117         broken by my earlier fix for caption-less/ControlBox-less windows.
4118
4119 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
4120
4121         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
4122           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
4123           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
4124           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
4125           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
4126           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
4127           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
4128           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
4129           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
4130           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
4131           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
4132             Inital import.
4133         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
4134           ToolStripButton.cs: Stubs needed for above.
4135         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
4136
4137 2006-09-15  Chris Toshok  <toshok@ximian.com>
4138
4139         * XplatUIX11.cs:
4140         - make the MessageQueues hashtable Synchronized.
4141         
4142         - SendMessage: if the Hwnd is owned by a different thread, use the
4143         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
4144         thread.  Fixes bug #79201.
4145
4146 2006-09-15  Chris Toshok  <toshok@ximian.com>
4147
4148         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
4149         ControlBox == false, we disallow maximize/minimize/close.  If the
4150         form Caption is "" we also disallow move (and get rid of the Title
4151         decoration).  Unfortunately, regardless of how things are set,
4152         we're stuck with the Title and WM menu.
4153
4154 2006-09-15  Chris Toshok  <toshok@ximian.com>
4155
4156         * Application.cs: add locking around the static message_filters
4157         ArrayList, part of #79196.
4158
4159 2006-09-15  Chris Toshok  <toshok@ximian.com>
4160
4161         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
4162         Form.ControlBox == false, the window has no titlebar nor resize
4163         handles.  fixes bug #79368.
4164
4165 2006-09-15  Chris Toshok  <toshok@ximian.com>
4166
4167         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
4168         >= 0.  Fixes bug #79370.
4169
4170 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
4171         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
4172         * Control.cs:
4173             Add properties: LayoutEngine, Margin, DefaultMargin.
4174             Add method: GetPreferredSize.
4175             Move layout logic from PerformLayout to layout engines. 
4176
4177 2006-09-13  Chris Toshok  <toshok@ximian.com>
4178
4179         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
4180         fix for #79326 broke #78718, so this change addresses that.
4181
4182         - in SendWMDestroyMessages remove the call to
4183         CleanupCachedWindows, since we might be recreating the control and
4184         need to maintain the references to right Hwnd handles.  Also, set
4185         the zombie flag to true for each of the children in the hierarchy
4186         instead of calling hwnd.Dispose.  This will cause GetMessage to
4187         ignore all events for the window except for DestroyNotify.
4188
4189         - In GetMessage, ignore messages except for DestroyNotify for
4190         zombie hwnds.
4191         
4192         * Control.cs: revert the is_recreating fix from the last
4193         ChangeLog.  It's definitely "right", but it breaks switching from
4194         an MDI form to a non-MDI form.  Will need to revisit that.
4195
4196         * Hwnd.cs: add a zombie flag, which means "the
4197         client_window/whole_window handles are invalid, but we're waiting
4198         for the DestroyNotify event to come in for them".  Set the flag to
4199         false explicitly if setting WholeWindow/ClientWindow, and also
4200         when Disposing.
4201         
4202 2006-09-13  Chris Toshok  <toshok@ximian.com>
4203
4204         * XplatUIX11.cs: rework window destruction slightly.
4205
4206         - when destroying the windows associated with a control, we don't
4207         need 2 separate XDestroyWindow calls.  Just the one for the
4208         whole_window (or for client_window if whole_window is somehow
4209         IntPtr.Zero -- can this happen?) is enough.
4210
4211         - reworked SendWMDestroyMessages slightly, so we always dispose
4212         the child control hwnd's after sending the messages.
4213         
4214         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
4215         the two places it was used (one was even using hwnd.Handle and the
4216         other hwnd.client_window.  ugh), adding another call in
4217         SendWMDestroyMessages.  We need this new call because now the
4218         DestroyNotify events in the queue will be ignored for the child
4219         controls (as their hwnd's were disposed, and the window id's
4220         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
4221
4222         - this fixes bug #79326.
4223
4224 2006-09-13  Chris Toshok  <toshok@ximian.com>
4225
4226         * Control.cs: don't always set is_recreating to false at the end
4227         of RecreateHandle, since sometimes we're not done (and won't be
4228         until WndProc handles the WM_DESTROY message).  Also, set
4229         is_recreating to false in the WM_DESTROY handling code.  Part of
4230         the fix for bug #79326.
4231
4232 2006-09-13  Miguel de Icaza  <miguel@novell.com>
4233
4234         * X11DesktopColors.cs: Start the droppage of debugging messages.
4235
4236         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
4237
4238 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
4239
4240         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
4241
4242 2006-09-12  Chris Toshok  <toshok@ximian.com>
4243
4244         * DataGrid.cs (get_ListManager): if the list_manager is null, try
4245         to create it using SetDataSource.  Fixes bug #79151.
4246
4247 2006-09-11  Chris Toshok  <toshok@ximian.com>
4248
4249         * XEventQueue.cs: add a DispatchIdle property.
4250
4251         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
4252         either the queue is null, or the queue has DispatchIdle set to
4253         true.
4254         (DoEvents): set queue.DispatchIdle to false around the
4255         peek/translate/dispatch message loop in this method.  This keeps
4256         Application.Doevents from emitting idle events.  Part of the fix
4257         for #78823.
4258
4259 2006-09-11  Chris Toshok  <toshok@ximian.com>
4260
4261         * DataGrid.cs (set_DataSource): make this work for both the
4262         winforms/datagrid test and ReportBuilder.  It seems as though when
4263         we've created a ListManager (or maybe it's if we have a
4264         BindingContext?), when we set the DataSource it clears the
4265         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
4266         #79333.
4267
4268 2006-09-11  Chris Toshok  <toshok@ximian.com>
4269
4270         * XplatUIX11.cs: deal with queue being null, which happens in all
4271         the Clipboard functions.  Fixes one of the two problems mentioned
4272         in #78612.
4273
4274 2006-09-11  Chris Toshok  <toshok@ximian.com>
4275
4276         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
4277         button on various spots (including outside the menu) works closer
4278         to MS, and doesn't crash.  Fixes #79343.
4279
4280 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
4281
4282         * ListView.cs: Do not initialize item_sorter in init. To match MS,
4283         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
4284         and the internal comparer is set. When a new ListViewItemSorter is set,
4285         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
4286         was specified. No further processing is necessary if SortOrder is set
4287         to it's current value. If Sorting is modified to None, and View is
4288         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
4289         (either custom or our internal ItemComparer) to null, on 1.0 profile
4290         only set item_sorter to null if its our internal IComparer. If Sorting
4291         is modified to Ascending or Descending, then use our internal IComparer
4292         if none is set, and if the current IComparer is our internal one then:
4293         on 2.0 profile always replace it with one for new Sorting, and on 1.0
4294         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
4295         Enum.IsDefined to verify whether a valid View value is specified in
4296         its setter. Automatically sort listview items when listview is
4297         created. In Sort, do nothing if ListView is not yet created, or if
4298         no item_sorter is set (no Sorting was set, Sorting was explicitly set
4299         to None or ListViewItemSorter was set to null). Added Sort overload
4300         taking a bool to indicate whether the ListView should be redrawn when
4301         items are sorted (we use this in ListViewItemCollection to avoid double
4302         redraws). Modified our internal IComparer to take the sort order into
4303         account. In Add and AddRange methods of ListViewItemCollection, also
4304         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
4305         view), but use overload with noredraw option to avoid double redraw.
4306         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
4307         true when View is Tile, and do the same when attempting to set View to
4308         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
4309         for selected/checked indices, as it involves overhead when sorting is
4310         done while these collections are not used all that often. Instead
4311         we'll build the indices on demand. Modified IList implementation of
4312         CheckedIndexCollection to use public methods if object is int.
4313         Modified CheckedListViewItemCollection to hide checked items if
4314         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
4315         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
4316         IList implementation in SelectedIndexCollection to use public methods
4317         if object is int. Modified SelectedListViewItemCollection to hide
4318         selected items if listview is not yet created.
4319         * ListViewItem.cs: CheckedIndices list no longer needs to be
4320         maintained separately (see ListView changes). Also clone font, fixes
4321         test failure.
4322
4323 2006-09-11  Mike Kestner  <mkestner@novell.com>
4324
4325         * ComboBox.cs: if we are updating the contents of the currently
4326         selected index, refresh the control or the textbox selection.
4327         [Fixes #79066]
4328
4329 2006-09-11  Mike Kestner  <mkestner@novell.com>
4330
4331         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
4332         the 'specified' logic has been moved there.  This seems like a bug 
4333         in Control.cs, since our current SetBoundsCore completely ignores 
4334         the specified parameter.  Peter's commit seems to indicate that is 
4335         the way the MS control implementation works.  [Fixes #79325]
4336
4337 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
4338
4339         * XplatUI.cs: Set default_class_name to be composed
4340         of current domain id. This allows MWF to be loaded in multiple
4341         domains on Win32.
4342
4343 2006-09-09  Miguel de Icaza  <miguel@novell.com>
4344
4345         * X11Keyboard.cs: If we are unable to obtain the input method, do
4346         not call CreateXic to create the input context.   Should fix
4347         #78944/79276.
4348
4349 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
4350
4351         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
4352           Simplified gnome support by adding more pinvokes to get the
4353           icon for a file or mime type.
4354
4355 2006-09-08  Jackson Harper  <jackson@ximian.com>
4356
4357         * MenuAPI.cs: Deslect popup context menu items before closing the
4358         window, so that you don't see the previously selected item
4359         selected when you reopen the menu.
4360         * TextControl.cs: Update the cursor position even if we don't have
4361         focus.  This fixes typing in things like the ComboBox.  I'm not
4362         totally sure we should always set the visibility if we don't have
4363         focus, but couldn't find any corner cases where the cursor showed
4364         up when it shouldn't.
4365
4366 2006-09-08  Chris Toshok  <toshok@ximian.com>
4367
4368         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
4369         our arrays are length 256.  & 0xff before indexing.  Fixes the
4370         crash in bug #78077.
4371         
4372 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4373
4374         * ThemeWin32Classic.cs: 
4375         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
4376         is true. Handle that check box too.
4377
4378 2006-09-07  Chris Toshok  <toshok@ximian.com>
4379
4380         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
4381         79244.
4382
4383 2006-09-07  Chris Toshok  <toshok@ximian.com>
4384
4385         * Control.cs: in set_BackColor only do the work if
4386         background_color != value.
4387
4388         * XplatUIX11.cs: move the clearing of invalid areas (both client
4389         and nc) to the same block of code where we set (nc_)expose_pending
4390         to false.  That is, move it from PaintEventEnd to PaintEventStart,
4391         so things that cause invalidates from within OnPaint will trigger
4392         another call to OnPaint.  Fixes bug #79262.
4393
4394 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
4395
4396         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
4397         * FileDialog.cs: Fix typo
4398
4399 2006-09-07  Jackson Harper  <jackson@ximian.com>
4400
4401         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
4402         for tab pages if they have any.
4403
4404 2006-09-06  Mike Kestner  <mkestner@novell.com>
4405
4406         * Splitter.cs: use the "current" rect when finishing drag handle
4407         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
4408
4409 2006-09-06  Mike Kestner  <mkestner@novell.com>
4410
4411         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
4412         support offset splitters. [Fixes #79298]
4413
4414 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
4415
4416         * Mime.cs: Fixed a bug that could override the global mime type
4417           result.
4418
4419 2006-09-05  Jackson Harper  <jackson@ximian.com>
4420
4421         * TabControl.cs: Better calculation method for setting the slider
4422         pos. Prevents crashes on really wide tabs.
4423         - Draw Image on tab pages if an image list is used.
4424
4425 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4426
4427         * MonthCalendar.cs: When Font changes, the Size should be
4428         updated to fit the new font's space requirements.
4429
4430 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
4431
4432         * ListBox.cs: If the items are cleared with Items.Clear set
4433           top_index to 0.
4434
4435 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4436
4437         * MonthCalendar.cs: Handle arrow keys as input keys. Also
4438         fire DateChanged event instead of DateSelected event when
4439         the date was changed by keyboard interaction.
4440
4441 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4442
4443         * DateTimePicker.cs: Handle DateChanged for the associated
4444         month_calendar control, and set month_calendar.Font from 
4445         OnFontChanged method, as well as resize the height of the
4446         control when needed. Make PreferredHeight proportional.
4447
4448 2006-09-01  Chris Toshok  <toshok@ximian.com>
4449
4450         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
4451         properties.
4452
4453         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
4454
4455 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
4456
4457         * FileDialog.cs: Set ClientSize instead of window size, to allow space
4458           for decorations (Fixes #79219)
4459
4460 2006-09-01  Mike Kestner  <mkestner@novell.com>
4461
4462         * ComboBox.cs: first stab at sorting plus some selection handling
4463         fixes to bring us more in line with MS behavior.  Also switches back
4464         to index based selection.  Alternative patches for index-based 
4465         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
4466         and latency@gmx.de on bug 78848.  I assume they were similar to this
4467         code I've had simmering in my tree forever.
4468         [Fixes #78848]
4469
4470 2006-09-01  Chris Toshok  <toshok@ximian.com>
4471
4472         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
4473         when setting list position guard against ending up with a -1 index
4474         (the other part of the fix for #78812).  Should probably make sure
4475         we don't need the analogous fix in the ItemDeleted case.
4476
4477         * DataGrid.cs:
4478         - in SetDataSource, work around the fact that the way
4479         OnBindingContextChanged is invoked will cause us to re-enter this
4480         method.  I'll remove the hack once I investigate
4481         OnBindingContextChanged.
4482
4483         - fix the logic in set_DataSource and set_DataMember (basically
4484         what to do if the other of the two is null.)
4485         
4486         - in OnListManagerItemChanged, we need to take into account the
4487         edit row when deciding whether or not to call RecreateDataGridRows
4488         (part of the fix for #78812).
4489
4490 2006-09-01  Jackson Harper  <jackson@ximian.com>
4491
4492         * Splitter.cs: Don't do anything if there is no control to affect
4493         (prevents us from crashing in weird tet cases).
4494         * TreeView.cs: Bounding box for the mouse movement reverting
4495         focus/selection back to previously selected node.  This matches
4496         MS, and makes the tree a lot more useable.
4497         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
4498         use clipping so they are not drawn.  This fixes when the control
4499         is set to have a transparent background, or if it was over an
4500         image.
4501
4502 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
4503
4504         * MimeIcon.cs: Improved handling for reading default icons when
4505           using gnome (2.16 made it necessary). Check and read svg icons
4506           first, then 48x48 and then 32x32 icons.
4507
4508 2006-08-31  Chris Toshok  <toshok@ximian.com>
4509
4510         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
4511         visible.
4512
4513         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
4514         ProcessKeyPreview.  Fixes part of #77806.
4515
4516         * DataGrid.cs: big patch.
4517
4518         - revert the queueing up of DataSource/DataMember if inside
4519         BeginInit/EndInit calls.  That's not the way the datagrid achieves
4520         its delayed databinding.  Instead, call SetDataSource in
4521         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
4522         #78811.
4523
4524         - Also, it wasn't mentioned in #78811, but the test case exhibits
4525         behavior that was lacking in our datagrid implementation - Columns
4526         that have mapping names that don't exist in the datasource's
4527         properties aren't shown.  Yuck.  To fix this I added the bound
4528         field to the column style, and basically any calculation to figure
4529         out anything about columns uses a loop to find the bound columns.
4530         still need to investigate if I can cache an array of the bound
4531         columns or if the indices must be the same.
4532
4533         - When setting CurrentCell, we no longer abort if the cell being
4534         edited was in the add row.  This fixes the other part of #77806.
4535
4536         - The new code also fixes #78807.
4537         
4538         * ThemeWin32Classic.cs: perpetrate the same disgusting
4539         column.bound field hack, and only render bound fields.
4540
4541 2006-08-31  Chris Toshok  <toshok@ximian.com>
4542
4543         * DataGridColumnStyle.cs: add bound field.  this field is true if
4544         the datasource has a property corresponding to the mapping name.
4545
4546         * DataGridTableStyle.cs: set the bound field on the column styles
4547         depending on whether or not we have a column for that property.
4548
4549 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
4550
4551         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
4552           splitter control (fixes #79228)
4553
4554 2006-08-31  Chris Toshok  <toshok@ximian.com>
4555
4556         * DataGridColumnStyle.cs: we need to delay the assignment of
4557         property descriptor until the last possible moment due to the lazy
4558         databinding stuff in the datagrid.  Also, fix the exceptions
4559         thrown by CheckValidDataSource to match MS.
4560
4561 2006-08-31  Jackson Harper  <jackson@ximian.com>
4562
4563         * Form.cs: When activated select the active control, if there is
4564         no active control, we select the first control.
4565         * XplatUIX11.cs: If there is no focus control when we get a
4566         FocusIn event, find the toplevel form and activate it.  This
4567         occurs when you popup a window, it becomes the focus window, then
4568         you close that window, giving focus back to the main window.
4569
4570 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4571
4572         * MonthCalendar.cs: 
4573         * ThemeWin32Classic.cs: Cache Font in bold style, as well
4574         as StringFormat with Center alignments in MonthCalendar,
4575         instead of creating new ones when drawing the control. 
4576         Also, draw the month name in bold style.
4577
4578 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
4579
4580         * Control.cs:
4581           - PerformLayout(): It would seem MS performs the fill even if the 
4582             control is not visible (part of #79218 fix)
4583           - ResetBackColor(): Use the setter to reset the color, to allow
4584             overriders to catch the change.
4585         * Form.cs:
4586           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
4587           - CreateHandle(): dito (part of $79218 fix)
4588           - Don't set an icon if we have a dialog
4589         * ScrollableControl.cs:
4590           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
4591           - ScrollIntoView(): No need to scroll if control is already visible
4592             (resolves fixme and fixes #79218)
4593
4594 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4595
4596         * MonthCalendar.cs: Change proportions in SingleMonthSize
4597         to match the aspect of the original control.
4598
4599 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
4600
4601         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
4602           get updated when they get maximized.
4603
4604 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
4605
4606         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
4607
4608 2006-08-29  Chris Toshok  <toshok@ximian.com>
4609
4610         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
4611
4612 2006-08-29  Jackson Harper  <jackson@ximian.com>
4613
4614         * TreeView.cs: Need to track selected node and highlighted node,
4615         they aren't always the same thing, when the mouse is down on a
4616         node it is hilighted, but not selected yet.
4617         - Do the HideSelection stuff right
4618         - Need to focus on rbutton mouse down. And redraw selection when
4619         right click is mouse upped.
4620
4621 2006-08-29  Mike Kestner  <mkestner@novell.com>
4622
4623         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
4624         when SubItems.Count < Columns.Count.  [Fixes #79167]
4625
4626 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
4627
4628         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
4629
4630 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
4631
4632         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
4633           from X. Only send based on ConfigureNotify if we don't have the
4634           correct location in hwnd (if the window manager moved us)
4635
4636 2006-08-28  Mike Kestner  <mkestner@novell.com>
4637
4638         * ListView.cs: remove a TODO. 
4639         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
4640         [Fixes ListView part of #79166]
4641
4642 2006-08-28  Mike Kestner  <mkestner@novell.com>
4643
4644         * ListView.cs: move wheel handler to parent since it is focused
4645         instead of the item_control now.  [Fixes #79177]
4646
4647 2006-08-28  Mike Kestner  <mkestner@novell.com>
4648
4649         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
4650         when the control is focused. [Fixes #79171]
4651
4652 2006-08-28  Mike Kestner  <mkestner@novell.com>
4653
4654         * ListView.cs: size the item and header controls for empty and
4655         unscrollable views.
4656         * ThemeWin32Classic.cs: draw disabled backgrounds.
4657         [Fixes #79187]
4658
4659 2006-08-28  Chris Toshok  <toshok@ximian.com>
4660
4661         * Form.cs: remove unused "active_form" static field.
4662
4663         * Hwnd.cs: lock around accesses to static windows collection.
4664
4665         * Application.cs: lock threads in Exit ().
4666
4667 2006-08-28  Chris Toshok  <toshok@ximian.com>
4668
4669         * NativeWindow.cs: lock around accesses to window_collection.
4670         
4671 2006-08-28  Chris Toshok  <toshok@ximian.com>
4672
4673         * Control.cs: err, fix this the right way, by locking on controls
4674         when using it.  not by making it synchronized.
4675
4676 2006-08-28  Chris Toshok  <toshok@ximian.com>
4677
4678         * Control.cs: make the static "controls" field synchronized, as it
4679         gets updated from multiple threads.
4680
4681 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4682
4683         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
4684           Prevent other threads from exiting when calling thread sets quit state.
4685         * XEventQueue.cs: Added PostQuitState property
4686
4687 2006-08-27  Chris Toshok  <toshok@ximian.com>
4688
4689         * AsyncMethodData.cs: add a slot for the window handle.
4690
4691         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
4692         window (the destination control's window, not the foster window).
4693
4694         * Control.cs (BeginInvokeInternal): store the window's handle in
4695         the AsyncMethodData.
4696         
4697
4698 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4699
4700         * XplatUIX11.cs:
4701           - PostQuitMessage: Removed resetting S.D display handle, we might have
4702             another loop started after calling PostQuitMessage (Fixes #79119)
4703           - Created destructor to reset S.D handle
4704
4705 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
4706
4707         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
4708
4709 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4710
4711         * TextControl.cs (Insert): Update the caret position even if we don't
4712           have a handle yet, just don't call the driver in that case.
4713         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
4714           to the end of the new selection text (Fixes #79184)
4715
4716 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4717
4718         * Form.cs (Activate): Only activate if the handle is created)
4719         * Control.c:
4720           - Mark window as invisible when it's disposed
4721           - Check if window handle is created when setting window visible, 
4722             instead of relying just on the is_created variable
4723           - Check if object is disposed when creating the control (Fixes #79155)
4724
4725 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4726
4727         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
4728           when allowing layout again. Otherwise we re-generate the anchoring 
4729           distance to the border again and actually alter what the user wanted
4730           This is ugly, it'd be better if we used DisplayRectangle instead of
4731           ClientRectangle for Control.UpdateDistances, but that causes us to
4732           have other problems (initial anchoring positons would be wrong)
4733           (Fixes #78835)
4734
4735 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4736
4737         * Control.cs:
4738           - The size and location setters shouldn't go directly to 
4739             SetBoundsCore, but to SetBounds, which triggers layout on the
4740             parent, then calls SetBoundsCore. (Related to fix for #78835)
4741           - SetBounds: Moved actual location update code into this function
4742             from SetBoundsCore, to match MS. Added call to PerformLayout if
4743             we have a parent (to trigger resizing of anchored parents if the 
4744             child size has changed (see testcase for #78835) 
4745         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
4746           new control code
4747         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
4748
4749 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4750
4751         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
4752           System.Drawing when a toplevel window gets closed; there might
4753           be other toplevel windows belonging to the same app (Fixes #78052)
4754
4755 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
4756
4757         * FileDialog.cs: After reading FileDialog settings from mwf_config
4758           use Desktop prefix only if a real folder doesn't exist anymore.
4759         * FontDialog.cs: Added char sets.
4760           It is now possible to select the font, size or style with the
4761           textboxes.
4762
4763 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
4764
4765         * PrintPreviewDialog.cs: Use assembly name constants.
4766
4767 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4768
4769         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
4770           scrollbar from whacking it's buttons)
4771
4772 2006-08-24  Chris Toshok  <toshok@ximian.com>
4773
4774         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
4775         in this patch (aggregating setting Left/Top/Width/Height to
4776         setting Bounds on the scrollbars), but the crux of the fix is in
4777         Recalculate, where we scroll by the remaining scroll_position if
4778         we're hiding a scrollbar.  The 2*$5 reward in the comment is
4779         serious.
4780
4781 2006-08-24  Jackson Harper  <jackson@ximian.com>
4782
4783         * MdiClient.cs:
4784         * MdiWindowManager.cs: If the form is made a non-mdi window we
4785         need to remove the form closed event so that closing forms works
4786         correctly.
4787
4788 2006-08-24  Jackson Harper  <jackson@ximian.com>
4789
4790         * Control.cs: Make IsRecreating internal so that the driver can
4791         check it
4792         - Temporarily remove the Hide when controls are removed, its
4793         making a whole bunch of things not work because visibility isn't
4794         getting reset elsewhere correctly
4795         * Form.cs: Need to do a full handle recreation when the mdi parent
4796         is set.
4797         * XplatUIX11.cs: If we are recreating handles don't dispose the
4798         HWNDs.  What was happening is the handles were being recreated in
4799         SendWMDestroyMessages, but then flow continued on in that method
4800         and destroyed the new handles.
4801
4802 2006-08-23  Jackson Harper  <jackson@ximian.com>
4803
4804         * Form.cs: MdiClient is always at the back of the bus
4805         * Control.cs: When the order of items in the collection is changed
4806         we need to reset the all_controls array
4807         - do the same sorta setup thats done when adding a control when a
4808         control is set on the collection.
4809
4810 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4811
4812         * TextBoxBase.cs (get_Text): Return an empty array if our document
4813           is empty (fixes #79052)
4814
4815 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4816
4817         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
4818           on WM_SYSCHAR messages (fixes #79053)
4819
4820 2006-08-23  Chris Toshok  <toshok@ximian.com>
4821
4822         * DataGrid.cs: fix flickering when scrolling vertically.
4823
4824 2006-08-23  Chris Toshok  <toshok@ximian.com>
4825
4826         * DataGrid.cs (EndEdit): only invalidate the row header when we
4827         need to.
4828
4829 2006-08-23  Chris Toshok  <toshok@ximian.com>
4830
4831         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
4832         methods.  fixes the flicker when scrolling around.
4833
4834 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4835
4836         * FileDialog.cs: Making sure the control is created before we get a 
4837           chance to use it with BeginInvoke (Fixes #79096)
4838
4839 2006-08-23  Chris Toshok  <toshok@ximian.com>
4840
4841         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
4842         width to use when painting the rows.
4843
4844 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4845
4846         * TextBoxBase.cs:
4847           - Throw ArgumentException if a negative value is passed to SelectionLength
4848           - Update the selection end if start is moved. end needs to be always
4849             after start. (Fixes #79095)
4850           - Track selection length; MS keeps the selection length even if start
4851             is changed; reset on all other operations affection selection
4852
4853 2006-08-22  Jackson Harper  <jackson@ximian.com>
4854
4855         * TreeView.cs: Make sure both scrollbars get displayed and sized
4856         correctly when the other bar is visible.
4857         - Use the original clip rectangle for checking if the area between
4858         the two scrollbars is visible, not the viewport adjusted clipping
4859         rectangle.
4860
4861 2006-08-22  Jackson Harper  <jackson@ximian.com>
4862
4863         * Binding.cs: We don't use IsBinding because it requires the
4864         control to be created, which really shouldn't be necessary just to
4865         set a property on the control.
4866
4867 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4868
4869         * ComboBox.cs: Some CB.ObjectCollection methods must throw
4870         ArgumentNullReferenceException when the argument is null.
4871
4872 2006-08-21  Jackson Harper  <jackson@ximian.com>
4873
4874         * Timer.cs: Track the thread that the timer is started in (NOT
4875         CREATED), this way messages for it will only be triggered on its
4876         queue.
4877         * XEventQueue.cs: Track the timers here, this makes timers per
4878         thread, like MS.
4879         * XplatUIX11.cs: The timers are moved to the XEventQueue.
4880
4881 2006-08-19  Chris Toshok  <toshok@ximian.com>
4882
4883         * XplatUIX11.cs: after further communication with pdb, we get the
4884         best of both worlds.  SetZOrder working for un-Mapped windows, and
4885         no X errors for un-mapped windows.
4886
4887 2006-08-19  Chris Toshok  <toshok@ximian.com>
4888
4889         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
4890         as it was causing pdn toolbars to not have the correct stacking.
4891
4892 2006-08-18  Mike Kestner  <mkestner@novell.com> 
4893
4894         * ListView.cs : guard against negative ClientArea.Width in scrollbar
4895         calculation.  Not sure why control should ever be setting a negative
4896         width though.  Fixes #78931.
4897
4898 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4899
4900         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
4901         null items in ObjectCollection class.
4902         * ListBox.cs.: Likewise.
4903
4904 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
4905
4906         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
4907           as the base method in ThemeWin32Classic should work fine.
4908           Fixed bug #78607.
4909
4910 2006-08-18  Jackson Harper  <jackson@ximian.com>
4911
4912         * Binding.cs: When validating if the value entered doesn't convert
4913         properly reset to the old value.
4914         * RadioButton.cs: Don't fire click when we get focus.
4915
4916 2006-08-18  Jackson Harper  <jackson@ximian.com>
4917
4918         * FileDialog.cs: Paint the selection on the directory combobox the
4919         same way as on MS. 
4920
4921 2006-08-17  Jackson Harper  <jackson@ximian.com>
4922
4923         * ErrorProvider.cs: Don't allow the error control to be selected.
4924         * Control.cs: Don't send the SetFocus messages, the control
4925         activation will do this, and if we do it blindly here validation
4926         does not work.
4927
4928 2006-08-17  Jackson Harper  <jackson@ximian.com>
4929
4930         * Control.cs:
4931         * ContainerControl.cs: Make validation events fire in the correct
4932         order.  TODO: For some reason the first validation event is not
4933         getting fired.
4934
4935 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4936
4937         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
4938
4939 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4940
4941         * ComboBox.cs : implement scroll wheel support for popped-down
4942         state. Fixes #78945. 
4943
4944 2006-08-17  Jackson Harper  <jackson@ximian.com>
4945
4946         * TreeView.cs: Specify treeview actions (old patch that didn't get
4947         committed for some reason).
4948         - Don't let the mouse wheel scroll us too far.  Just want to make
4949         the bottom node visible, not scroll it all the ways to the top.
4950
4951 2006-08-17  Jackson Harper  <jackson@ximian.com>
4952
4953         * XplatUIX11.cs: Mouse wheel events go to the focused window.
4954
4955 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4956
4957         * ComboBox.cs : don't do mouseover selection in simple mode.
4958
4959 2006-08-16  Jackson Harper  <jackson@ximian.com>
4960
4961         * Form.cs: Fire the closing events for all the mdi child windows
4962         when a window is closed.  If the cancel args are set to true, the
4963         main window still gets the event fired, but it doesn't not close.
4964         * MdiWindowManager.cs: Do this closing cleanup in a Closed
4965         handler, instead of when the button is clicked, so cancelling the
4966         close works correctly.
4967         * ComboBox.cs: Send the mouse down to the scrollbar.
4968
4969 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4970
4971         * ListBox.cs: When passing 'null' to SelectedItem,
4972         set SelectedIndex to -1, to unselect items. This is the
4973         observed behaviour in .Net.
4974
4975 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
4976
4977         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
4978           MS flags saying there won't be any. (fixes #78800)
4979         * Control.cs (HandleClick): Made virtual
4980
4981 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4982
4983         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
4984           cultures. Fixed bug #78399.
4985
4986 2006-08-16  Jackson Harper  <jackson@ximian.com>
4987
4988         * Form.cs: Use the MdiClients MdiChildren property to access
4989         MdiChildren instead of creating the array from the child controls.
4990         * MdiClient.cs: Maintain a separate array of the mdi children, so
4991         that insertion order is maintained when the Z-order is changed.
4992
4993 2006-08-16  Mike Kestner  <mkestner@novell.com> 
4994
4995         * ListView.cs : add an ItemComparer and default to it for sorting.
4996         Fixes #79076, but sorting needs a complete overhaul to be compat with
4997         MS.
4998
4999 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5000
5001         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
5002
5003 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5004
5005         * Hwnd.cs (Mapped): Properly traverse the tree
5006
5007 2006-08-15  Chris Toshok  <toshok@ximian.com>
5008
5009         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
5010         pass manager.Current.GetType() to ParseData.  It has to be the
5011         property type.  So, hold off doing the ParseData until we're in
5012         SetPropertyValue where we know the type.  This fixes the crash in
5013         #78821 but the textbox is still empty.
5014
5015 2006-08-15  Chris Toshok  <toshok@ximian.com>
5016
5017         * DataGrid.cs:
5018         - when we're scrolling, only call Edit() again if the
5019         current cell is still unobscured. Fixes bug #78927.
5020         - when handling mousedown on a cell, ensure the cell is visible
5021         before calling Edit.
5022         - remove the properties from DataGridRow, and remove the
5023         DataGridParentRow class altogether.
5024         
5025
5026 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5027
5028         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
5029           fire OnTextChanged by ourselves. There's no point calling base,
5030           we don't set the base value anywhere else. Fixes #78773.
5031
5032 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5033
5034         * ListBox.cs: Call CollectionChanged when modifying
5035         an item from Items indexer, to update the actual items
5036         in the list box.
5037
5038 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5039
5040         * PrintDialog.cs: Small fixes for focus and a pair of checks,
5041         to match .Net behaviour.
5042
5043 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5044
5045         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
5046
5047 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
5048
5049         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
5050
5051 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
5052
5053         * MessageBox.cs: Prevent potential NRE exception.
5054         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
5055
5056 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5057
5058         * MessageBox.cs: Calculate the owner of a messagebox, also make
5059           it topmost. Fixes #78753
5060
5061 2006-08-14  Chris Toshok  <toshok@ximian.com>
5062
5063         * XplatUIX11.cs: A couple of fixes so that metacity will let us
5064         programmatically move windows.  first, set the PPosition hint as
5065         well as the USPosition hint.  Second include some code from pdb
5066         that sets the window type to NORMAL when we set the transient for
5067         hint.  This is because, in the absence of a window type, metacity
5068         thinks any window with TransientFor set is a dialog, and refuses
5069         to let us move it programmatically.  fascists.
5070
5071 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
5072
5073         * XplatUIX11.cs: When setting normal hints, take into consideration
5074           an different hints previously set so we don't delete them (fixes #78866)
5075
5076 2006-08-12  Chris Toshok  <toshok@ximian.com>
5077
5078         * ToolBarButton.cs: make Layout return a boolean, if something to
5079         do with the button's layout changed.
5080
5081         * ToolBar.cs:
5082         - add another parameter to Redraw, @force, which all existing
5083           calls set to true.
5084         - make the Layout function return a boolean which is true if the
5085           layout has actually changed.  Redraw now uses this (and @force)
5086           to determine when to invalidate.  At present the only place
5087           where @force can be false is the call from OnResize, when
5088           background_image == null.  So, resizing a toolbar when the
5089           layout doesn't change results in no drawing.
5090
5091 2006-08-12  Chris Toshok  <toshok@ximian.com>
5092
5093         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
5094         the VScrollBar and HScrollbar reversed.  oops.
5095
5096         * DataGrid.cs: fix the logic that assigns sizes to the implicit
5097         scrollbars.  we were assigning them twice (once in
5098         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
5099         therefore causing two scrollbar resizes (and redraws?) to happen
5100         per grid resize.
5101
5102 2006-08-12  Chris Toshok  <toshok@ximian.com>
5103
5104         * ToolBarButton.cs: redraw the entire button if the theme tells us
5105         to.
5106
5107         * Theme.cs: add ToolBarInvalidateEntireButton.
5108
5109         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
5110         buttons, just the border.
5111
5112         * ThemeNice.cs: redraw the entire toolbar button since we need to
5113         draw the highlight image.
5114
5115         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
5116         we need to redraw the entire button (not just the border).
5117
5118 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5119
5120         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
5121           for vertical bars. Fixes the mismatches shown by #78513
5122
5123 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
5124
5125         * FileDialog.cs: If a saved/remembered path doesn't exist
5126           anymore, fall back to "Desktop".
5127
5128 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
5129
5130         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
5131           parent. It's apparently legal to not have one
5132         * XplatUIX11.cs:
5133           - SetZOrder: Don't try to set Z-Order on an unmapped window
5134           - CreateWindow: 0,0 are legal coordinates for a window. don't move
5135             it unless the coordinates are negative
5136
5137 2006-08-10  Mike Kestner  <mkestner@novell.com>
5138
5139         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
5140         when setting to null per msdn docs.  Fixes #78854.
5141
5142 2006-08-10  Chris Toshok  <toshok@ximian.com>
5143
5144         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
5145         flickering by setting a clip rectangle on the Graphics when we
5146         need to redraw just a particular menuitem.  Also, rename "OnClick"
5147         to "OnMouseDown" to reflect what it actually is.
5148         
5149         * Form.cs: track the OnMouseDown change.
5150
5151 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
5152
5153         * CommonDialog.cs: Properly inherit the CreateParams from the form
5154           and only change what we need. Fixes #78865
5155
5156 2006-08-10  Chris Toshok  <toshok@ximian.com>
5157
5158         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
5159         flickering in flat mode (and most of the flickering in general) by
5160         only invalidating the button border (and not the entire rectangle)
5161         when the state changes.  A couple of cases still flicker:
5162         ToggleButtons, and the dropdown arrow case when the user mouse
5163         ups.
5164
5165 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
5166
5167         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
5168           for german keyboards. Numlock state shouldn't affect the behaviour
5169           of the Del key. Fixes bug #78291.
5170
5171 2006-08-10  Chris Toshok  <toshok@ximian.com>
5172
5173         * ListControl.cs: remove the items.Clear line from BindDataItems,
5174         as this is the first thing done by both subclasses in their
5175         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
5176         passed -1, refresh the list.  This gets databinding working when
5177         the datasource is set on the list before the datasource is
5178         populated (as in wf-apps/ReportBuilder.)
5179
5180         * ComboBox.cs: remove the argument to BindDataItems.  This call
5181         should really go away, and be initiated by the ListControl code.
5182
5183         * ListBox.cs: same.
5184
5185 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5186
5187         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
5188           if no data is in the document when the control is displayed
5189
5190 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
5191
5192         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
5193           yes (fixes #78806)
5194         * TextControl.cs: 
5195           - PositionCaret: Allow positioning of caret but don't call methods 
5196             requiring a handle if the window isn't created yet
5197           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
5198           - owner_HandleCreated: Don't position the caret, just update it's 
5199             location. User might have already set a different position
5200
5201 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5202
5203         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
5204           windows. Screws up the returned coordinates for child windows. 
5205           Fixes #78825. I'm hoping this doesn't break something, since the
5206           code was explicitly put in 8 months ago, but no bug was attached.
5207           Menus still seem to work properly.
5208
5209 2006-08-08  Chris Toshok  <toshok@ximian.com>
5210
5211         * DataGrid.cs: make BeginInit/EndInit actually do what they're
5212         supposed to do - delay data binding until the EndInit call.  Also,
5213         make the table style collection's CollectionChangeAction.Refresh
5214         work properly.
5215
5216         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
5217         (with action = Refresh) when a consituent table's MappingName is
5218         changed.
5219
5220 2006-08-08  Chris Toshok  <toshok@ximian.com>
5221
5222         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
5223         Invalidate, since changing the text can change the size of the all
5224         toolbar buttons.
5225
5226 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5227
5228         * Form.cs (AddOwnedForm): Still need to add the form to our listif
5229           we don't have it yet
5230
5231 2006-08-08  Chris Toshok  <toshok@ximian.com>
5232
5233         * PrintControllerWithStatusDialog.cs: don't .Close() the status
5234         dialog, as this causes X errors later on, since we actually
5235         destroy the window.  Instead, .Hide() it.
5236
5237 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5238
5239         * ComboBox.cs: Added focus reflection for popup window
5240         * XplatUIX11.cs: 
5241           - Removed transient setting for non-app windows for now, not sure it
5242             was needed
5243           - Fixed logic checking if we have captions when deciding 
5244             override_redirect, WS_CAPTION is two bits and a 0 check was not
5245             sufficient
5246           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
5247             complicated
5248         * Form.cs: 
5249           - AddOwnedForm: Don't just add the form to the list, call the property
5250             to ensure the driver is informed about the ownership as well
5251           - CreateHandle: Set the TopMost status in the driver if we have an owner
5252         * XplatUI.cs: Fixed debug statement
5253
5254 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
5255         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5256           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
5257           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
5258           TrackBarRenderer.cs: Make constructor private.
5259         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
5260         * ProfessionalColorTable.cs: Make properties virtual.
5261
5262 2006-08-06  Duncan Mak  <duncan@novell.com>
5263
5264         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
5265         is not changing.
5266
5267 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5268         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5269           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
5270           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
5271           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
5272           Initial import of new 2.0 classes.
5273
5274 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5275         * Application.cs: Add 2.0 VisualStyles properties.
5276
5277 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5278         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
5279           XplatUIX11.cs: Create property to allow access to existing private
5280           variable "themes_enabled"
5281
5282 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5283
5284         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
5285         file size, as otherwise our class libraries fail using windows. Fixes
5286         bug #78759.
5287
5288 2006-08-04  Jackson Harper  <jackson@ximian.com>
5289
5290         * Form.cs:
5291         * XplatUIX11.cs: Move the toolwindow window manager creation into
5292         the X11 driver, this way on win32 we can let windows create/handle
5293         the toolwindows.
5294
5295 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5296
5297         * PrintDialog.cs: Remove some redundant checks, add some others,
5298         clean some code, and move the focus to the text boxes when the
5299         values are incorrect.
5300
5301 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
5302
5303         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
5304
5305 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5306
5307         * NumericUpDown.cs: Setting the Minimum and Maximum is now
5308           handled correctly. Fixes bug #79001.
5309
5310 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5311
5312         * PrintDialog.cs: The "Copies" numeric up down must have
5313         set the Minimum property to 1; only if the value is bigger
5314         than 1, activate "Collate" check box. This is the behaviour of .Net.
5315         Also modify the Document elements only if it is not null.
5316
5317 2006-08-03  Jackson Harper  <jackson@ximian.com>
5318
5319         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
5320         length. (We have a larger array then actual node count).
5321                 
5322 2006-08-03  Jackson Harper  <jackson@ximian.com>
5323
5324         * ComboBox.cs: Don't show selection by default.
5325         - The SelectAll isn't needed here, since the focus code should do
5326         that
5327         - DDL style lists to manual selection drawing, so when they
5328         get/lose focus they have to invalidate.
5329
5330 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
5331
5332         * TextBoxBase.cs: Don't always show all selections by default.
5333
5334 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
5335         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
5336           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
5337           Fixed various typos.
5338
5339 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5340
5341         * Control.cs: Removing the controls in a ControlCollection with
5342           Clear now hides the controls as expected. Fixes bug #78804. 
5343
5344 2006-08-03  Jackson Harper  <jackson@ximian.com>
5345
5346         * Control.cs: Revert previous focus patch, it breaks reflector.
5347
5348 2006-08-03  Jackson Harper  <jackson@ximian.com>
5349
5350         * ComboBox.cs: Cleanup selection and focus with the combobox.
5351         This also eliminates some duplicated keyboard code, since now
5352         everything is handled by the main class.
5353         - Make list selection work on mouse up instead of down, to match
5354         MS.
5355
5356 2006-08-02  Jackson Harper  <jackson@ximian.com>
5357
5358         * Control.cs: Setting focus needs to go through the whole
5359         selection mechanism.
5360
5361 2006-08-02  Chris Toshok  <toshok@ximian.com>
5362
5363         * PrintPreviewDialog.cs: change MinimumSize to use
5364         base.MinimumSize so it works.
5365
5366 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
5367
5368         * TextControl.cs:
5369           - UpdateCaret: Added sanity check in case caret isn't defined yet
5370           - Line.Delete: Now updating selection and caret markers if we're
5371             transfering a node (Properly fixes #78323)
5372           - SetSelectionEnd: Added sanity check
5373         * TextBoxBase.cs: Removed broken attempt to fix #78323
5374
5375 2006-08-01  Chris Toshok  <toshok@ximian.com>
5376
5377         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
5378         Close() call is handled in Form, not here.
5379
5380 2006-08-01  Chris Toshok  <toshok@ximian.com>
5381
5382         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
5383         layout/rendering.
5384
5385         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
5386         for sizes < 100% zoom.  The code now aggressively attempts to keep
5387         from calling document.Print (), and tries not to use the scaling
5388         g.DrawImage whenever possible (it still does if you scale to >
5389         100%, since usually that involves huge images).
5390
5391         * PrintPreviewControl.cs: hook up the close button.
5392
5393 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
5394         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
5395           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
5396           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
5397           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
5398           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
5399           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
5400           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
5401           Removed [Serializable] for 2.0 Event Handlers.
5402
5403 2006-07-31  Jackson Harper  <jackson@ximian.com>
5404
5405         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
5406         * TextControl.cs: Uncomment out the body of this method.
5407
5408 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
5409
5410         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
5411           standard cursors.
5412
5413 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5414
5415         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
5416           that embed TextBox and need selections visible even if textbox is not
5417           focused to enforce that behaviour.
5418         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
5419           selection drawing
5420
5421 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5422
5423         * TextControl.cs:
5424           - Added new SetSelectionStart/SetSelectionEnd overloads
5425           - Fixed viewport width assignment to be accurate
5426           - Adjusted alignment line shift calculations to allow cursor on right
5427             aligned lines to be always visible at the right border (like MS)
5428         * TextBoxBase.cs:
5429           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
5430           - TextBoxBase_SizeChanged: recalculating canvas on size changes
5431           - CalculateScrollBars: Use ViewPort size instead of window size, to
5432             properly consider space occupied by the border and scrollbars 
5433             (Fixes #78661)
5434           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
5435             calculations; no longer leaves artifacts
5436           - CaretMoved: Adjusted window scrolling to match MS and fixed several
5437             calculation bugs (Still missing right/center align calculations)
5438
5439 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
5440
5441         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
5442           use of both scroll rect and clip rect, as they do the same.
5443
5444 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5445
5446         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
5447           in the event handler (fixes #78912)
5448
5449 2006-07-31  Chris Toshok  <toshok@ximian.com>
5450
5451         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
5452         grid.ListManager.Count, since grid.ListManager might be null.
5453         This of course begs the question "why are we drawing rows for a
5454         grid with no list manager (and therefor no rows)?"  Fixes the
5455         crash in bug #78929.
5456
5457 2006-07-31  Chris Toshok  <toshok@ximian.com>
5458
5459         * RelatedPropertyManager.cs: Don't always chain up to the parent
5460         ctor.  instead, call SetDataSource if the parent's position is !=
5461         -1.  Fixes the crash in #78822.
5462
5463 2006-07-31  Chris Toshok  <toshok@ximian.com>
5464
5465         * DataGrid.cs (get_ListManager): use field instead of property
5466         accessors for datasource and datamember.
5467         (RowsCount): make internal again.
5468         (OnMouseDown): end edits before resizing columns/rows.
5469         (OnMouseUp): restart edits after resizing columns/rows.
5470
5471 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
5472
5473         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
5474           This fixes the situation where the last set cursor is displayed
5475           whenever the mouse is over scrollbars.
5476
5477 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5478
5479         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
5480         Document properties, as well as initial values.
5481
5482 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
5483
5484         * XplatUIWin32.cs (SetBorderStyle): Setting both border
5485           and ClientEdge results in a 3-pixel border, which is
5486           wrong.
5487
5488 2006-07-28  Jackson Harper  <jackson@ximian.com>
5489
5490         * TreeNodeCollection.cs: Fix the clear method.
5491         - Fix the Shrink also
5492
5493 2006-07-27  Jackson Harper  <jackson@ximian.com>
5494
5495         * TreeView.cs: Make sure the visible order is computed when we
5496         attempt to size the scrollbars (for trees that mess with the
5497         scrolling when they shouldn't.
5498         - Make sure to give the scrollbars valid values.
5499
5500 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5501
5502         * XplatUIX11.cs: Move motion compression code to where it
5503           has less performance impact
5504
5505 2006-07-26  Jackson Harper  <jackson@ximian.com>
5506
5507         * UpDownBase.cs: When the control is selected make the child
5508         controls non selectable, so that a click on them won't do a
5509         focus/unfocus cycle.
5510         - Don't give focus to the text box when the spinner is selected.
5511         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
5512
5513 2006-07-26  Chris Toshok  <toshok@ximian.com>
5514
5515         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
5516         satisfied with this solution.  If the bitmaps are small, we should
5517         just cache them in the PrintPreviewDialog and draw them here.
5518         Also, the layout is broken for the 2-up and 3-up cases.
5519
5520         * Theme.cs: add PrintPReviewControlPaint.
5521
5522         * PrintPreviewDialog.cs: first pass implementation.
5523
5524         * PrintPreviewControl.cs: first pass implementation.  No
5525         scrollbars yet.
5526
5527         * PrintDialog.cs: only validate fields if that particular portion
5528         of the UI is enabled.  Also, set the document's controller to a
5529         PrintControllerWithStatusDialog wrapping the document's print
5530         controller.
5531
5532         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
5533         bring up a SaveFileDialog (i hope we don't want to match the
5534         behavior of the crappy windows file entry) and set the
5535         PrinterSettings.PrintFileName accordingly.
5536
5537 2006-07-26  Jackson Harper  <jackson@ximian.com>
5538
5539         * ContainerControl.cs: Add a field that disables auto selecting
5540         the next control in a container when the container is activated.
5541         * UpDownBase.cs: Don't select the text box when the up down is
5542         selected.
5543
5544 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5545
5546         * XEventQueue.cs: Added methods for peeking (used for compression
5547           of successive events)
5548         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
5549           mouse move events (fixes #78732)
5550
5551 2006-07-25  Jackson Harper  <jackson@ximian.com>
5552
5553         * UpDownBase.cs: Use an internal class for the textbox so that we
5554         can control focus.  the updown control should always have focus,
5555         if either the text area or the buttons are clicked.
5556         - Send the key messages to the textbox, since it never actually
5557         has focus
5558         - Activate and decativate the textbox caret.
5559
5560 2006-07-24  Jackson Harper  <jackson@ximian.com>
5561
5562         * Control.cs: Use the directed select when selecting a control,
5563         this way the container controls override will get called and the
5564         whole ActiveControl chain will get triggered.  TODO: probably need
5565         to make sure this gets done everywhere instead of the old
5566         Select(Control).
5567         * ContainerControl.cs: Implement the directed Select method to
5568         find and activate the correct child control.    
5569         
5570 2006-07-22  Mike Kestner  <mkestner@novell.com>
5571
5572         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
5573         menu handling code so that clicks without a grab work too.
5574         [Fixes #78914]
5575
5576 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
5577
5578         * FileDialog.cs: Enable the BackButton when dirstack has one element.
5579           Added some small optimizations.
5580
5581 2006-07-21  Matt Hargett  <matt@use.net>
5582
5583         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
5584
5585 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
5586
5587         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
5588           tests pass and match MS in some strange border cases.
5589
5590 2006-07-21  Chris Toshok  <toshok@ximian.com>
5591
5592         * ThemeWin32Classic.cs: handle drawing of the relation links and
5593         parent row buttons.
5594
5595         * Theme.cs: change args to DataGridPaintParentRow.
5596
5597         * DataGrid.cs: Don't use controls for the relation links and
5598         parent buttons, so we have to handle all their interactions in
5599         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
5600         when we're navigating through child tables, so we can reinstate
5601         selection, expanded state, current cell, etc.
5602
5603 2006-07-20  Chris Toshok  <toshok@ximian.com>
5604
5605         * ToolBar.cs: When we redraw a button, for whatever reason,
5606         there's no reason to redraw the entire toolbar.  Also, don't call
5607         Control.Refresh from within Redraw, as it's much heavier than
5608         Invalidate (which is really what we want).
5609
5610 2006-07-20  Chris Toshok  <toshok@ximian.com>
5611
5612         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
5613         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
5614         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
5615         traces from within a debug IBindingList datasource
5616         (in mono/winforms/datagrid) for *days*, I've finally gotten things
5617         to work in a similar fashion.
5618
5619 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5620
5621         * ListBox.cs: Don't call Sort () when setting 
5622         the Sorted property to false (avoid an unnecessary sort).
5623
5624 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5625
5626         * ListControl.cs: DataSource should throw an ArgumentException
5627         instead of a normal exception when the argument is not of the 
5628         correct type.
5629
5630 2006-07-20  Mike Kestner  <mkestner@novell.com>
5631
5632         * Control.cs: add InternalPreProcessMessage to allow us to steal
5633         key events before MWF gets its paws on them.  Adapted from a
5634         suggestion by eno.
5635         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
5636         up/down/left/right navigation. Override the new internal control
5637         method to steal the events since they never make it to WndProc.
5638         * ToolBarButton.cs: don't worry about pushed when setting hilight
5639         since the drawing code prefers pushed to hilight. Invalidate on 
5640         Hilight changes. Fixes #78547 and #78525.
5641
5642 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5643
5644         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
5645           the canvas size. Fixes #78868
5646
5647 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
5648
5649         * Splitter.cs: Track requested split position until first layout
5650           is performed. Fixes #78871
5651
5652 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5653
5654         * Application.cs: Removed code that forces 1.x for the version
5655           number if the version started with 0. Not sure why that code was
5656           there and I couldn't find any bugs that indicated we needed it.
5657           Fixes #78869
5658
5659 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
5660
5661         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
5662           ResetDefaults(), just write some output to the console until it's
5663           implemented. Fixes bug #78907 for now. Eliminated two warnings.
5664
5665 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
5666
5667         * PropertyGridView.cs: set StartPosition of drop down forms
5668         so they appear in correct initial spot.  Fixes #78190.
5669
5670 2006-07-19  Mike Kestner  <mkestner@novell.com>
5671
5672         * ThemeWin32Classic.cs: use parent background color when drawing
5673         flat toolbars.  Restructure the conditionals to make sure non-flat
5674         non-Divider toolbars are filled too.  Fixes #78837.
5675
5676 2006-07-19  Mike Kestner  <mkestner@novell.com>
5677
5678         * ListBox.cs: Sort on collection changes even if the handle
5679         isn't created yet.  Fixes #78813.
5680
5681 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5682
5683         * ListControl.cs: DisplayMember should never be null,
5684         and now we assign String.Empty when null is passed to it (this
5685         is the .Net way).
5686
5687 2006-07-17  Mike Kestner  <mkestner@novell.com>
5688
5689         * ListViewItem.cs: restructure Font and subitem Font handling 
5690         to hold a specific font and refer back to owner on null.
5691         Fixes #78761.
5692
5693 2006-07-17  Mike Kestner  <mkestner@novell.com>
5694
5695         * ToolBar.cs: bandaid for side-effect of previous patch which was
5696         discarding explicit heights for non-AutoSize toolbars.  Need to
5697         extend my format tester to deal with AutoSize=false. Fixes #78864.
5698
5699 2006-07-15  Jackson Harper  <jackson@ximian.com>
5700
5701         * LabelEditTextBox.cs:
5702         * TreeView.cs: Use a new LabelEdit class for node editing, this
5703         class automatically 'closes' itself when it gets the enter key or
5704         loses focus.
5705         - Use the client rectangle when setting the trees scrollbars, so
5706         border style is taken into account.
5707         
5708 2006-07-14  Jackson Harper  <jackson@ximian.com>
5709
5710         * TreeNode.cs:
5711         * TreeView.cs: Make the editing work similar to MSs, firing the
5712         events correctly and ending edits correctly.
5713
5714 2006-07-14  Mike Kestner  <mkestner@novell.com>
5715
5716         * ToolBarButton.cs:
5717         * ToolBar.cs: layout restructuring and redraw enhancements to support
5718         formatting changes gracefully, like setting TextAlign, ImageList, 
5719         ButtonSize, and Appearance.  Handles explicit button sizing quirks
5720         of the MS controls.  Things like flat toolbars ignoring button size
5721         but becoming constant sized at the largest button's size.  Normal
5722         toolbars with an image set cannot be shrunk smaller than the image,
5723         but text can be clipped/ignored.
5724         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
5725         is zero.  Seems like DrawString should be smart enough to not put
5726         anything on screen though. Also trim labels and ellipsize at the char
5727         boundary, not word.
5728         Fixes #78711 and #78483.
5729
5730 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5731
5732         * FolderBrowserDialog.cs: Disable "New Folder" button and
5733           "New Folder" contextmenu menuitem if a folder like "My Computer"
5734           is selected.
5735
5736 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5737
5738         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
5739         * FolderBrowserDialog.cs:
5740           - Use MWFConfig to store and read size and position settings
5741           - Added code to create a new folder (button or context menu).
5742             Use TreeView labeledit to change the name of the new folder.
5743
5744 2006-07-14  Jackson Harper  <jackson@ximian.com>
5745
5746         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
5747         when the tree is scrolled we end editing.
5748
5749 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5750
5751         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
5752           Down arrows
5753
5754 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
5755
5756         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
5757         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
5758         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
5759         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
5760         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
5761         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
5762         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
5763         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
5764         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
5765         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
5766         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
5767         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
5768         ListViewItemSelectionChangedEventHandler.cs,
5769         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
5770         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
5771         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
5772         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
5773         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
5774         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
5775         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
5776         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
5777         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
5778         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
5779         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
5780         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
5781         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
5782         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
5783         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
5784         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
5785         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
5786         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
5787         WebBrowserNavigatingEventHandler.cs, 
5788         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
5789
5790 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
5791
5792         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
5793         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
5794         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
5795         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
5796         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
5797         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
5798         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
5799         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
5800         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
5801         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
5802         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
5803         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
5804         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
5805         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
5806         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
5807         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
5808         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
5809         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
5810         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
5811         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
5812         ListViewItemStates.cs, MaskFormat.cs: Added
5813
5814 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
5815
5816         * PropertyGridView.cs: Fix keyboard navigation of drop down.
5817         Patch from eno for bug 78558.
5818         
5819 2006-07-13  Jackson Harper  <jackson@ximian.com>
5820
5821         * TreeView.cs: When an edit is finished make sure that the
5822         selected node is visible.
5823         - When setting the top/bottom use the scrollbars is_visible, so
5824         everything will be set correctly even if the tree isn't visible
5825         yet.
5826
5827 2006-07-13  Jackson Harper  <jackson@ximian.com>
5828
5829         * ComboBox.cs: Revert the item->index part of my previous patch.
5830         * TreeView.cs: Use LostFocus instead of Leave for detecting when
5831         the edit box has lost focus (duh).
5832         - Just make the edit box not visible when we get return, that will
5833         take the focus, which will call EndEdit
5834         * TreeNode.cs When we start editing, notify the treeview.
5835
5836 2006-07-12  Jackson Harper  <jackson@ximian.com>
5837
5838         * ComboBox.cs: Clear out old items before setting the item list.
5839         This prevents databound controls from having their items added
5840         twice.
5841         - Switch the combobox to use indices whereever possible instead of
5842         using Item's.  This allows usto navigate through lists that have
5843         more then one item with the same string value (ie a, b, b, a).
5844         - Scroll the listboxes scrollbar when a non visible item is
5845         highlighted
5846         - Allow keypress to cycle through all the possible values. For
5847         example if you have b1, b2, b3 and hold down the B key all the
5848         values will be cycled through.
5849         
5850 2006-07-12  Jackson Harper  <jackson@ximian.com>
5851
5852         * TextBoxBase.cs:
5853         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
5854         this using the internal methods.
5855         * Control.cs: Add OnGotFocusInternal.  A new method that allows
5856         controls to "override" OnGotFocus and change focus behavior if
5857         needed.
5858         - Same thing for LostFocus
5859         * ComboBox.cs: Pass off focus to the text control properly.
5860
5861 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
5862
5863         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
5864         * FolderBrowserDialog.cs: Almost a complete rewrite.
5865           - Better support for Environment.Specialfolders
5866           - Added support for MWFVFS
5867           - Made setting SelectedPath work
5868
5869 2006-07-12  Jackson Harper  <jackson@ximian.com>
5870
5871         * Control.cs: Optimze getting all the controls.
5872
5873 2006-07-11  Jackson Harper  <jackson@ximian.com>
5874
5875         * ContainerControl.cs: Override SETFOCUS in the container control,
5876         so that it is not selected on mouse click.
5877
5878 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
5879
5880         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
5881           Hopefully we will have a better way once all of focus is complete.
5882
5883 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
5884
5885         * ThemeWin32Classic.cs: Commented out some debug code and fixed
5886           a compile error with csc.
5887
5888 2006-07-11  Jackson Harper  <jackson@ximian.com>
5889
5890         * Control.cs: When hiding a control only select the next control
5891         if the current control was focused.
5892         - Don't handle enter/leave when setting/killing focus, this is
5893         done by the container control.
5894         - Remove is_selected, it's not needed anymore.
5895         - Add utility methods for selecting a child control, and for
5896         firing the Enter/Leave events.
5897         * ContainerControl.cs: When a control is activated fire the
5898         enter/leave events.
5899         - Don't wrap when processing the tab key, so that focus can be
5900         moved outside of the container.
5901         - Use the correct active control
5902
5903 2006-07-11  Jackson Harper  <jackson@ximian.com>
5904
5905         * ComboBox.cs: Remove some debug code that was blinding me.
5906         * UpDownBase.cs: These controls actually aren't implicit, they are
5907         visible to the user.
5908
5909 2006-07-10  Chris Toshok  <toshok@ximian.com>
5910
5911         * DataGrid.cs: move back to the is_adding boolean field.  god i
5912         hate this is_editing/is_adding/is_changing stuff.
5913
5914 2006-07-10  Chris Toshok  <toshok@ximian.com>
5915
5916         * DataGridTableStyle.cs: just check if the property type is bool.
5917         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
5918         Don't use CanRenderType.
5919
5920         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
5921         if our text == NullText.  Remove CanRenderType.
5922
5923         * DataGridBoolColumn.cs: nuke CanRenderType.
5924
5925         * DataGrid.cs: reenable some code to end the current edit inside
5926         of set_CurrentCell.  This fixes the other 1.1.16 regression.
5927         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
5928         Also, remove the visible_row_count arg from CalcRowHeaders, since
5929         we don't need to worry about the actual height of the area.
5930
5931 2006-07-10  Chris Toshok  <toshok@ximian.com>
5932
5933         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
5934         mode, just return.
5935
5936         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
5937         the real sense of the IsInEditOrNavigateMode property (true =
5938         navigate, false = edit).  Also, update OnKeyPress to reflect this.
5939
5940         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
5941         column style exists, we still need to set its property descriptor
5942         to match up with our list manager.
5943
5944 2006-07-10  Chris Toshok  <toshok@ximian.com>
5945
5946         * ThemeWin32Classic.cs: implement the new row/header painting
5947         approach.  The parent row painting will likely go away and
5948         replaced with label controls, but the rest seems to work ok (and
5949         efficiently).
5950
5951         * Theme.cs: change the way we draw datagrid rows.  we don't draw
5952         the row headers as a block now.  Instead we draw them in the
5953         normal draw-row loop.  Add some calls for drawing parent rows and
5954         relation rows.
5955
5956         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
5957         a default table style.  Set the defaults from ThemeEngine.Current,
5958         not SystemColors.  Fix lots of misc issues with property setters.
5959
5960         * DataGrid.cs: move loads of style information out of this class
5961         as it's being duplicated with DataGridTableStyle.  keep track of a
5962         special DataGridTableStyle for the properties we used to mirror
5963         here.  Switch all the style properties to access this table style
5964         instead of instance fields of this class.  Also add a internal
5965         class to represent parent rows (more needs to be stored here, like
5966         the selection state from the parent table, as well as the
5967         expansion state.)  Also, for datasources with relations, do the
5968         right thing for collapse/expand, and add support for the
5969         navigation/parent row buttons.
5970
5971         Lastly, fix the crash in the 1.1.16 build.
5972
5973         * GridTableStylesCollection.cs: make the explicit interface
5974         implementations call the class's methods as opposed to duplicating
5975         them.
5976
5977         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
5978         0 so the text doesn't jump around when we move the cursor.
5979
5980 2006-07-10  Jackson Harper  <jackson@ximian.com>
5981
5982         * TextBoxBase.cs:
5983         * ListBox.cs: Match MS's ToString (this makes debugging focus
5984         stuff infinitely easier).
5985
5986 2006-07-10  Jackson Harper  <jackson@ximian.com>
5987
5988         * Control.cs (SelectNextControl): When checking the control's
5989         parent use this instead of ctrl.parent so that null can be passed
5990         to SelectNextControl. (I have unit tests for this).
5991         - Remove unused var.
5992
5993 2006-07-10  Chris Toshok  <toshok@ximian.com>
5994
5995         * CurrencyManager.cs: correct one regression, the removal of the
5996         finalType field.  Also, add a MonoTODO on CanAddRows, implement
5997         Refresh() correctly, and fix some event emission in
5998         ListChangedHandler.
5999
6000 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6001
6002         * FileDialog.cs: Don't use brackets for new folders if they exist
6003           under *nix. Instead use -(number of existing folders +1).
6004
6005 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
6006
6007         * FileDialog.cs:
6008           - Fixed really nasty bug #78771
6009           - Don't block the whole GUI when reading directories with a lot of
6010             entries. Use an other thread instead and call BeginInvoke to
6011             update the ListView in MWFFileView
6012
6013 2006-07-07  Chris Toshok  <toshok@ximian.com>
6014
6015         * Control.cs (Dispose): release any Capture when disposing.
6016
6017 2006-07-07  Chris Toshok  <toshok@ximian.com>
6018
6019         * LinkLabel.cs (Select): if we chain up to the parent, set
6020         focused_index to -1 so we'll search for the first available link
6021         the next time the user tabs into us.  Also, if the direction is
6022         backward and focused_index == -1, start the search from the last
6023         element.
6024
6025 2006-07-07  Chris Toshok  <toshok@ximian.com>
6026
6027         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
6028         is beyond the end of the text, don't do anything.
6029         (CreateLinkPieces): set our ControlStyles.Selectable based on
6030         whether or not we have any links.
6031         (Link.Invalidate): use a loop instead of foreach.
6032         (Link.set_Start): null out owner.sorted_links so it'll be
6033         recreated by CreateLinkPieces.
6034
6035 2006-07-06  Chris Toshok  <toshok@ximian.com>
6036
6037         * LinkLabel.cs: revert the SetStyle change.
6038
6039 2006-07-06  Chris Toshok  <toshok@ximian.com>
6040
6041         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
6042         (OnEnableChanged): s/Refresh/Invalidate
6043         (OnGotFocus): if we have a focused index already, refocus it (so
6044         if we mouse out/in to the window it'll focus the right link).
6045         (OnKeyDown): move the tab handling out of here.
6046         (OnLostFocus): don't set focused_index to -1, so we can refocus it
6047         when we lose focus.
6048         (OnMouseDown): don't Capture here - Control handles it.  Also,
6049         focus the active link.
6050         (OnMouseUp): don't deal with Capture.
6051         (OnPaintBackgroundInternal): remove.
6052         (OnTextAlignChanged): CreateLinkPieces before calling the
6053         superclass's method.
6054         (OnTextChanged): call CreateLinkPieces before calling superclass's
6055         method.
6056         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
6057         move around.
6058         (Select): implement this, moving the selection between different
6059         links, and call parent.SelectNextControl if we don't have another
6060         link to focus in the given direction.
6061         (CreateLinkPieces): call Invalidate instead of Refresh.
6062         
6063 2006-07-06  Chris Toshok  <toshok@ximian.com>
6064
6065         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
6066         new LinkLabel internals.
6067
6068         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
6069         over pieces looking for active/focused/etc links.  also, deal with
6070         runs of text (and links) with embedded \n's in them, and use
6071         MeasureCharacterRanges instead of MeasureString to figure out the
6072         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
6073         two-step.
6074
6075 2006-07-04  Jackson Harper  <jackson@ximian.com>
6076
6077         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
6078         XKB or key auto repeat, do it manually.  Without key auto repeat,
6079         when a key is held down we get key press, key release, key press,
6080         key release, ... with auto repeat we get key press, key press, key
6081         press ..., and then a release when the key is actually released.
6082
6083 2006-07-03  Jackson Harper  <jackson@ximian.com>
6084
6085         * TabControl.cs:
6086         * ThemeWin32Classic.cs: Tabs do not obey normal background color
6087         rules, they are always control color regardless of the background
6088         color.
6089
6090 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
6091
6092         * FileDialog.cs: Added internal class MWFConfig.
6093           Removed Registry support and replaced it with support for the new
6094           MWFConfig class. See MWFConfig comments for more information.
6095
6096 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
6097
6098         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
6099           rectangle. Added some patches from eno from bug #78490 and fixed
6100           the arrow position for small up and down CPDrawScrollButtons.
6101
6102 2006-06-30  Jackson Harper  <jackson@ximian.com>
6103
6104         * InternalWindowManager.cs: Remove some debug code.
6105         * Form.cs: When an MdiParent is set to null, the window is
6106         "detatched" and becomes a normal window.
6107         * MdiClient.cs: Don't bring the new child form to the front until
6108         it is activated (setting it as active does this), this makes the
6109         previously active forms titlebar get redrawn as inactive.
6110
6111 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
6112
6113         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
6114           with later controls
6115
6116 2006-06-29  Mike Kestner  <mkestner@novell.com>
6117
6118         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
6119         arrow in keynav state.  Fixes #78682.
6120
6121 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6122
6123         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
6124           order (fixes #78393)
6125
6126 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
6127
6128         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
6129           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
6130           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
6131           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
6132           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
6133           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
6134           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
6135           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
6136           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
6137           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
6138           enumerations (FlagsAttribute, SerializableAttribute, added/removed
6139           values)
6140
6141 2006-06-28  Mike Kestner  <mkestner@novell.com>
6142
6143         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
6144
6145 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
6146
6147         * PropertyGrid.cs,
6148           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
6149           item lines from other area (It also makes BackColor consistent and
6150           compatible with .NET). Fixed bug #78564.
6151
6152 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
6153
6154         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
6155         Patch from Eno for #78555.
6156
6157 2006-06-27  Chris Toshok  <toshok@ximian.com>
6158
6159         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
6160
6161         * DataGridColumnStyle.cs: same.
6162
6163         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
6164         
6165         * DataGridDrawingLogic.cs: nuke.
6166
6167 2006-06-27  Chris Toshok  <toshok@ximian.com>
6168
6169         * DataGridTableStyle.cs: clean up the constructors, and build the
6170         list of child relations for this table.  I have no idea if this is
6171         where we should be doing it (it probably isn't), but since we're
6172         already iterating over the properties..
6173
6174         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
6175         struct and array for keeping track of row information, similar to
6176         what's shown in a hack on
6177         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
6178
6179         * Theme.cs: be consistent about the naming of DataGrid methods,
6180         prefering ColumnWidths and RowHeights over columnsWidths and
6181         RowsHeights.
6182
6183         * ThemeWin32Classic.cs: same, and also add support for variable
6184         sized rows (and the +/- expansion icons for related rows).
6185
6186 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6187
6188         * TextBoxBase.cs: Applied Eno's patch from #78660
6189
6190 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6191
6192         * Form.cs (ScaleCore): We don't want to scale our form if it's
6193           state is minimized or maximized, but we still need to scale our
6194           child windows. Also, added try/finally block to ensure layout
6195           gets reset (Fixes #78697)
6196
6197 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6198
6199         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
6200
6201 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6202
6203         * Form.cs: Fixed c+p error and added check to resize form if minimum
6204           size is bigger than current size (Fixes #78709)
6205
6206 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
6207
6208         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
6209
6210 2006-06-26  Mike Kestner  <mkestner@novell.com>
6211
6212         * ComboBox.cs: only do Keypress handling in the combo when there  
6213         are items in the collection. Fixes #78710.
6214
6215 2006-06-26  Chris Toshok  <toshok@ximian.com>
6216
6217         * Binding.cs: make this work bi-directionally.  also, clear up
6218         other mixups between Push/Pull Data (e.g. we're supposed to pull
6219         data when validating).
6220
6221         * BindingManagerBase.cs: trim some fully qualified collection
6222         types.
6223
6224         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
6225
6226 2006-06-23  Chris Toshok  <toshok@ximian.com>
6227
6228         * PropertyManager.cs: It appears (according to the unit tests)
6229         that PropertyManager doesn't use
6230         PropertyDescriptor.AddValueChanged to track propery value changes
6231         in its datasource, but uses the same scheme as Binding, where it
6232         looks for a <Property>Changed event and binds to it.
6233
6234         Also, according to the docs, IsSuspended always returns false for
6235         a property manager with a non-null datasource.
6236
6237 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
6238
6239         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
6240           need to update the actual DialogResult. (Fixes #78613)
6241
6242 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
6243
6244         * Form.cs (ShowDialog): Release any captures before running the
6245           new message pump (fixes #78680)
6246
6247 2006-06-22  Mike Kestner  <mkestner@novell.com>
6248
6249         * ListView.cs: Layout column widths properly in details mode even 
6250         if HeaderStyle.None is set.  Fixes #78691.
6251
6252 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
6253
6254         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
6255
6256 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
6257
6258         * Control.cs (ContainsFocus): Using new driver method to get focused
6259           window, instead of trying to use internal tracking var, which can
6260           recursion issues (Fixes #78685)
6261         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
6262           XplatUIWin32.cs: Added GetFocus method to return focused window
6263
6264 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6265
6266         * ColorDialog.cs: when the mouse button is pressed inside the color
6267         matrix, don't let the cursor move out of it until the button is
6268         released, which is the behavior on windows. Changed 'colours' by
6269         'colors' to use the same word consistently.
6270
6271 2006-06-21  Chris Toshok  <toshok@ximian.com>
6272
6273         * DataGrid.cs: add in some basic navigation stuff (navigating to a
6274         child relation and back, using a stack).  Also, remove
6275         GetDataSource and the code that calls it - it's not needed.  Also,
6276         track CurrencyManager.ListName's removal.
6277
6278 2006-06-21  Chris Toshok  <toshok@ximian.com>
6279
6280         * CurrencyManager.cs: push some of the original type checking from
6281         BindingContext.CreateBindingManager to here, and remove some of
6282         the finalType stuff.  Need more tests to make sure I've got the
6283         ListName part right, and we might need more in SetDataSource.
6284
6285         * PropertyManager.cs: add a ctor that takes just the datasource,
6286         and no property name.  Make SetDataSource work with a null
6287         property_name, and make Current return the data_source if the
6288         property descriptor is null.  this makes 'string foo = "hi";
6289         BindingContext[foo].Current' return "hi" as it should.
6290
6291         * RelatedCurrencyManager.cs: make this code more generic - there's
6292         no reason the parent manager has to be CurrencyManager, and
6293         there's no reason to pass the DataRelation.  It suffices to use a
6294         BindingManagerBase and PropetyDescriptor.
6295
6296         * RelatedPropertyManager.cs: make a similar change here.
6297         
6298         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
6299         flower I knew it could be.
6300
6301 2006-06-20  Chris Toshok  <toshok@ximian.com>
6302
6303         * PropertyManager.cs: the PropertyChangedHandler is invoked when
6304         data in the source has changed and we need to update the control,
6305         so s/PullData/PushData.
6306
6307         * CurrencyManager.cs: Refresh is meant to update the control from
6308         data in the datasource.  So, s/PullData/PushData.
6309
6310         * BindingContext.cs: add more ugliness (we weren't handling the
6311         case where data_source = DataTable and data_member = column_name).
6312
6313         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
6314         from the perspective of the datasource.  PullData pulls from the
6315         control, PushData pushes to the control.
6316
6317 2006-06-20  Chris Toshok  <toshok@ximian.com>
6318
6319         * BindingContext.cs: rewrite the CreateBindingManager code to
6320         handle navigation paths more or less properly.  This could
6321         definitely stand some more work, in particular to push the
6322         recursion up to the toplevel.  But that relies on fixes in other
6323         places (System.Data comes to mind).
6324
6325         Also, move to a flat hashtable (and encode the twolevel nature of
6326         the dictionary into the hash key).  This lets us implement the
6327         IEnumerable.GetEnumerator method.
6328
6329         * RelatedCurrencyManager.cs: new class.  Update our view based on
6330         our relation and our parent CurrencyManager's position.
6331
6332         * CurrencyManager.cs: split out some logic from the ctor into
6333         SetView, so it can be called from the new RelatedCurrencyManager
6334         subclass.
6335
6336         * RelatedPropertyManager.cs: new class.  Update our datasource
6337         based on the position of our parent CurrencyManager.
6338
6339         * PropertyManager.cs: split out some logic from the ctor into
6340         SetDataSource, so it can be called from the new RelatedDataSource
6341         subclass.  Also, make the Current getter return the value
6342         of the PropertyDescriptor, not the data_source.
6343
6344         * Binding.cs: no need to duplicate the string splitting code here.
6345
6346 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6347
6348         * Control.cs:
6349           - set_Enabled: OnEnabledChanged is not called if the inherited state 
6350             of the control is not altered, even though  we might be changing the
6351             internal state of the control (#78458)
6352           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
6353             OnEnabledChanged, to allow easy altering of any child window state
6354           - OnEnabledChanged: Added code to enable/disable driver window state
6355           - OnParentEnabledChanged: Instead of firing the event, call 
6356             OnEnabledChanged, which will fire the event and also a) set driver
6357             window state and pass the enabled state to any grandchildren (#78458)
6358
6359 2006-06-19  Jackson Harper  <jackson@ximian.com>
6360
6361         * InternalWindowManager.cs: We don't set the cursor explicitly
6362         thats done via the response to NCHITTESTs.
6363         - Don't need to adjust for titlebar heights anymore, the
6364         coordinates are coming in the correct coordinates now (see peters
6365         last patch).
6366
6367
6368 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6369
6370         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
6371           being translated relative to whole window, instead of client window.
6372           That caused broken offsets on mouseclick (and caused gas for our
6373           InternalWindowManager)
6374
6375 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6376
6377         * TextControl.cs:
6378           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
6379           - Undo(): Added replay of cursor move on DeleteChars action; added
6380             calling Undo() again if a recorded cursor move is invalid (to
6381             ensure that some action is performed on Undo)
6382         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
6383
6384 2006-06-16  Jackson Harper  <jackson@ximian.com>
6385
6386         * MdiClient.cs: Instead of just sizing maximized windows when
6387         there is a resize we also have to adjust the Y of minimized
6388         windows, so they stay pinned to the bottom of the mdi container.
6389         - Eliminate separate tracking of the active control, we can just
6390         get this from the controls collection.
6391         - Paint the decorations for the newly activated titlebar so we get
6392         a pretty blue bar.
6393         * InternalWindowManager.cs:
6394         * ThemeWin32Classic.cs: Minimized windows get all three buttons
6395         even if they are a tool window.
6396         
6397 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6398
6399         * TextControl.cs (Undo): Handle non-existent cursor locations in the
6400           undo buffer, these can happen when text was deleted and the cursor
6401           was recorded first. Since we will also have a recorded cursor
6402           after the delete this is not an issue. (Fixes #78651)
6403
6404 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
6405
6406         * AccessibleObject.cs: Remove dependence on Control.is_selected;
6407           instead properly track control states internally (allows us to
6408           remove is_selected from Control)
6409
6410 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6411
6412         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
6413         whose width is not a multiple of 8.
6414
6415 2006-06-13  Jackson Harper  <jackson@ximian.com>
6416
6417         * MdiClient.cs:  Only maximize the next child if the current one
6418         is maximized.
6419
6420 2006-06-13  Chris Toshok  <toshok@ximian.com>
6421
6422         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
6423         modified.  Also, guard against grid or grid_drawing being null in
6424         Invalidate.
6425
6426         * DataGrid.cs: Reformat tons of getters/setters.  In the
6427         DataMember setter, just call SetNewDataSource instead of
6428         duplicating some of its functionality.  In SetNewDataSource, don't
6429         check ListManager for null, since the property getter creates the
6430         object if needed.
6431
6432         * DataGridTableStyle.cs: don't set TableStyle or call
6433         SetDataGridInternal on the column here, it's done in
6434         GridColumnStylesCollection.Add.
6435
6436         * GridColumnStylesCollection.cs: fix all the explicit interface
6437         implementations to just call our methods.  Nuke AddInternal() and
6438         move the body of it to Add().  Also, add a call to
6439         column.SetDataGridInternal to Add().
6440
6441         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
6442         base()+duplicate code.  Also, use the Format property instead of
6443         format to generate an Invalidate ala MS.  Lastly, create the
6444         textbox here, unconditionally.
6445         (set_Format): call Invalidate.
6446         (get_TextBox): no need to call EnsureTextBox.
6447         (Commit): remove the message box.
6448         (Edit) remove the call to EnsureTextBox.
6449         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
6450         (EnterNullValue): no need to check textbox for null.
6451         (HideEditBox): no need to check textbox for null.
6452         (SetDataGridInColumn): add the textbox to the grid's controls.
6453         (EnsureTextBox): nuke.
6454         
6455 2006-06-13  Jackson Harper  <jackson@ximian.com>
6456
6457         * MdiWindowManager.cs: Hook up to the maximized menus paint event
6458         and redraw the buttons when needed. Unhook when the window is
6459         unmaximized.
6460         * MainMenu.cs: Add an internal Paint event, the mdi window manager
6461         needs this so that it can redraw its buttons when the menu is
6462         repainted.
6463         * InternalWindowManager.cs:
6464         * Form.cs: The method order has changed for DrawMaximizedButtons,
6465         so that it can be a PaintEventHandler.
6466         
6467 2006-06-13  Jackson Harper  <jackson@ximian.com>
6468
6469         * MdiClient.cs: When we close a maximized mdi window, the next mdi
6470         window is activated and maximized, even if it wasn't before.
6471         - When  a new window is activated repaint the decorations of the
6472         old one, so that it no longer has the Active "look" (the blue
6473         titlebar).
6474         * InternalWindowManager.cs: Open up CreateButtons to base classes
6475         so they can recreate the buttons on state changes.
6476         - If a window is maximized give it all three buttons
6477         * MdiWindowManager.cs: Create the titlebar buttons when the state
6478         is changed, this is needed because a toolwindow will not have all
6479         three buttons until it is maximized.
6480
6481 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
6482
6483         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
6484           Fixed bug #78609.
6485
6486 2006-06-12  Jackson Harper  <jackson@ximian.com>
6487
6488         * KeysConverter.cs: Make sure we handle the Ctrl special case
6489         if its the only key.
6490         
6491 2006-06-12  Jackson Harper  <jackson@ximian.com>
6492
6493         * Theme.cs: Add a method to get the size of a managed window
6494         toolbar button.
6495         * InternalWindowManager.cs: Remove the ButtonSize property, this
6496         should be retrieved from the theme.
6497         * MdiWindowManager.cs: Get the button size from the theme
6498         * ThemeWin32Classic.cs: Make the method to get the managed window
6499         titlebar button size public.
6500         - Handle the different button sizes of maximized toolwindows
6501         (should match any maximized window).
6502         - Get the titlebar height from the theme, not the WM (which gets
6503         it from the theme).
6504
6505 2006-06-12  Jackson Harper  <jackson@ximian.com>
6506
6507         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
6508         event down to the mdi window manager.
6509         - Expose some extra stuff to base classes
6510         - Make sure to end the Capture on an NC Mouse up, so that we can
6511         get double clicks properly, and the sizing doens't stick.
6512         - When doing PointToClient contain it in the workable desktop
6513         area, this prevents windows from changing size when the cursor is
6514         pulled outside of the working area while sizing.
6515         * MdiWindowManager.cs: When we get a double click maximize the
6516         window.
6517         - Reset the cursor after handling mode changes.
6518
6519 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
6520
6521         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
6522           current desktop, instead of just assuming a 0, 0 origin. This
6523           is needed for our internal window manager, to know the top
6524           margin of the desktop
6525
6526 2006-06-12  Chris Toshok  <toshok@ximian.com>
6527
6528         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
6529         we need this to get rid of the selected background in the bool
6530         column.
6531         (CancelEditing): move the ConcedeFocus call to above the Abort
6532         call.  Also, set is_changing to false and invalidate the row
6533         header if we were changing before.
6534         (ProcessKeyPreviewInternal): remove, since noone outside this
6535         class calls it anymore.  Roll the code into ProcessKeyPreview.
6536         (EndEdit): remove the internal version.
6537         (InvalidateCurrentRowHeader): make private.
6538
6539         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
6540         Keys.Escape handling (and with it the last call to
6541         DataGrid.EndEdit from outside the class.)
6542
6543
6544 2006-06-12  Chris Toshok  <toshok@ximian.com>
6545
6546         * DataGridTextBox.cs (.ctor): isedit defaults to false.
6547         (OnKeyPress): set isedit to true.
6548         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
6549         already handled by the grid.
6550
6551         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
6552         right.  ugh.
6553         (set_DataSource): SetDataSource always returns true, so stop
6554         putting it in an if statement.
6555         (EndEdit): get rid of some {}'s
6556         (ProcessGridKey): return true in case Keys.Escape.
6557         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
6558         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
6559         PositionChanged, stopped connecting to CurrentChanged.
6560         (GetDataSource): simplify this a bunch.
6561         (SetDataSource): change return type from bool to void.
6562         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
6563         to this, and make sure we don't set ListManager.Position inside
6564         set_CurrentCell.
6565         (OnListManagerItemChanged): if we're passed an actual index,
6566         redraw that row.
6567
6568         * CurrencyManager.cs (set_Position): don't call PullData here.
6569
6570 2006-06-09  Jackson Harper  <jackson@ximian.com>
6571
6572         * TreeNode.cs:  Recalculate the visible order before doing the
6573         Expand/Collapse Below calls, because those calls generate an
6574         expose.
6575         - Reduce calls to the TreeView property, which is mildly expensive
6576         by using a local var.
6577         * Form.cs: Layout the MDI child windows when creating the parent
6578         form.
6579         - Don't use the internal constructor anymore
6580         * MdiClient.cs: use the parent form width/height (if available)
6581         when laying out the child windows, we do this because the
6582         mdiclient isn't docked yet when the initial layout is done.
6583         - Don't need an internal constructor anymore.
6584
6585 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6586
6587         * FileDialog.cs: handle access errors when trying to create a folder
6588         or changing to a directory. No need to initialize out parameters.
6589
6590 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6591
6592         * FileDialog.cs: Append a number when creating a new folder if the
6593           folder already exists (use parenthesis instead of square brackets)
6594
6595 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6596
6597         * FileDialog.cs:
6598           - Disabled registry support for windows and added better registry
6599             error checking for other systems (need to investigate why it
6600             works perfectly on my system)
6601           - If a folder already exist show an error MessageBox instead of
6602             trying to create an indexed name.
6603           - Fixed a non intentional typo.
6604
6605 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6606
6607         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
6608
6609 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6610
6611         * FileDialog.cs: When creating a new folder don't crash if the
6612           folder already exists.
6613
6614 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6615
6616         * FileDialog.cs: Allmost a complete rewrite.
6617           - added a "virtual" file system that handles the differences
6618             between unix and windows file systems (especially the directory
6619             structure). Moved most of the directory and file handling code
6620             into the vfs.
6621             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
6622             UnixFileSystem and FSEntry.
6623           - Recently used folder/directory, size, location and used file names
6624             (file name ComboBox) are now stored in the registry and get read
6625             before the dialog shows up (fixes part 6 of bug #78446).
6626           - Creation of new folders/directories is now possible (context menu
6627             or ToolBar). Added TextEntryDialog for this that fills in the gap
6628             until ListView.LabelEdit works.
6629           - Fixed cursor handling (bug #78527) and focus handling for
6630             PopupButtonPanel
6631           - Various "Search in" ComboBox enhancements. The content of the
6632             dropdown listbox now almost matches ms.
6633           - Changed the behaviour when the user switches to SpecialFolder
6634             Recent to show the ListView in View.Details.
6635           - Beside using the ToolBar to change the View property of the
6636             file ListView it is now possible to use the context menu too.
6637
6638 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6639
6640         * ComboBox.cs: Don't create a new ObjectCollection when an item
6641           gets inserted. Just insert the item in the existing object_items
6642           ArrayList.
6643
6644 2006-06-08  Jackson Harper  <jackson@ximian.com>
6645
6646         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
6647         that the treeview and root node checks are done also, this fixes a
6648         regression i caused in the unit tests.
6649
6650 2006-06-07  Wade Berrier <wberrier@novell.com> 
6651
6652         * RichTextBox.cs: More ISO8859-1 -> unicode
6653
6654 2006-06-07  Mike Kestner  <mkestner@novell.com>
6655
6656         * ComboBox.cs : use items to hold highlight/selection so that
6657         collection insertions don't require synchronization.
6658
6659 2006-06-07  Jackson Harper  <jackson@ximian.com>
6660
6661         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
6662         routine.  We now always keep the sized edge at the cursor instead
6663         of computing movement and adjusting rects.  There is one buglet
6664         with this method though when the cursor is moved over area that
6665         the window can not expand too (such as the toolbars on the desktop).
6666
6667 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6668
6669         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
6670         here. Fixes crash on startup in AlbumSurfer.
6671
6672 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
6673
6674         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
6675           values
6676
6677 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6678
6679         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
6680         statement to avoid calling XNextEvent which will block if another thread
6681         took the event that we were expecting. Fixes bug #78605.
6682
6683 2006-06-07  Mike Kestner  <mkestner@novell.com>
6684
6685         * ListView.cs : isolated checkbox clicking from the selection logic.
6686         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
6687
6688 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6689
6690         * Form.cs: Check that the value passed to Form.DialogResult
6691         is a valid enum value.
6692
6693 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6694
6695         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
6696         Computer'. Clicking it in the network view goes to 'My Computer'.
6697         Added CIFS filesystem type. Display the mount point of filesystems.
6698         Avoid duplicate mount points (happens for me with CIFS);
6699
6700 2006-06-06  Jackson Harper  <jackson@ximian.com>
6701
6702         * InternalWindowManager.cs: Draw the maximized windows buttons
6703         when resizing.
6704
6705 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6706
6707         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
6708         all other dialogs. Fixes bug #78585.
6709
6710 2006-06-06  Mike Kestner  <mkestner@novell.com>
6711
6712         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
6713         Only invalidate checkbox on checkstate changes to avoid flicker.
6714         * ListBox.cs : avoid unselect/select when clicking selected item.
6715         avoid reselection flicker for already multiselected items.
6716         Fixes #78382.
6717
6718 2006-06-06  Jackson Harper  <jackson@ximian.com>
6719
6720         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
6721         the parent form so that the menu is removed if needed.
6722
6723 2006-06-06  Mike Kestner  <mkestner@novell.com>
6724
6725         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
6726         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
6727
6728 2006-06-06  Mike Kestner  <mkestner@novell.com>
6729
6730         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
6731
6732
6733 2006-06-06  Jackson Harper  <jackson@ximian.com>
6734
6735         * Control.cs: Use the property (instead of the field) to get the
6736         default cursor so it is instantiated correctly.
6737         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
6738         resizes so we need to manually repaint the window decorations here.
6739         - Set the titlebar button locations as soon as they are created,
6740         otherwise they are not set correctly on win32.
6741         
6742 2006-06-06  Chris Toshok  <toshok@ximian.com>
6743
6744         * CurrencyManager.cs (set_Position): call PullData before
6745         OnCurrentChanged.
6746         (AddNew): after calling IBindingList.AddNew, update our
6747         listposition, and call OnCurrentChanged/OnPositionChanged (without
6748         calling PullData).
6749         (OnCurrentChanged): remove the call to PullData from here.
6750         (OnItemChanged): remove the call to PushData from here.
6751         (OnPositionChanged): change the test from == null to != null to
6752         match the other methods.
6753         (ListChangedHandler): the grossest part of the patch.  Implement
6754         this such that it passes the unit tests in CurrencyManagerTest and
6755         the output more or less matches that of MS's implementation.
6756  
6757 2006-06-06  Mike Kestner  <mkestner@novell.com>
6758
6759         * ListView.cs : only update check state on single click.
6760         * ThemeWin32Classic.cs : fix focus drawing for details view without
6761         fullrowselect.  Fixes #78454.
6762         * XplatUIX11.cs : fix for double click emission.
6763
6764 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
6765
6766         * PropertyGridView.cs : Applied Atsushi's patch to fix
6767         font dialog bug  (#78197).
6768
6769 2006-06-05  Jackson Harper  <jackson@ximian.com>
6770
6771         * TreeNode.cs: Compute the next node for expanding/collapsing
6772         correctly. We now factor in nodes without a NextNode
6773         correctly. (Fixes somes cases in nunit-gui).
6774         * InternalWindowManager.cs: Set the bounds when updating the
6775         virtual position of a tool window.
6776         
6777 2006-06-05  Chris Toshok  <toshok@ximian.com>
6778
6779         * DataGrid.cs: rename cached_currencymgr to list_manager.
6780         (set_CurrentCell): move SetCurrentCell code here, and clean it up
6781         some.
6782         (CurrentRow, CurrentColumn): single accessors so we can make the
6783         cursor movement code a lot easier to understand.
6784         (CurrentRowIndex): implement this in terms of CurrentRow.
6785         (BeginEdit): clean this up a bit.
6786         (CancelEditing): sort out the is_editing/is_changing/is_adding
6787         stuff a little.
6788         (EndEdit): minor changes.
6789         (OnKeyDown): add a comment about a (most likely) unnecessary
6790         check.
6791         (OnMouseDown): cancel editing when we click on a row header.  And
6792         use the CurrentRow setter, not CurrentCell.
6793         (ProcessDialogKey): directly call ProcessGridKey.
6794         (UpdateSelectionAfterCursorMove): factor out this common block of
6795         code (it's used everywhere that we move the cursor by updating row
6796         or column).
6797         (ProcessGridKey): pretty substantial overhaul.  Use the
6798         CurrentRow/CurrentColumn properties to make the code a lot more
6799         readable.  Only use the CurrentCell property when we have to
6800         modify both row and column at once.  Tab behavior is still broken,
6801         and Delete is untested.
6802         (Select): if we have no selected rows, set selection_start to
6803         @row.
6804         (EditCurrentCell): rename EditCell this.  It was only ever invoked
6805         with CurrentCell as the arg, so drop the arg and rename it.
6806
6807         * DataGridColumnStyle.cs: clean up the constructors a little, and
6808         drop CommonConstructor().
6809
6810         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
6811         actually get notified when the user hits it.
6812         (ProcessKeyMessage): *substantially* simplify this method.
6813         There's no reason (that I can see) for the textbox to be making
6814         calls into the datagrid at all.  Remove all of them but the ones
6815         for Enter handling.  those will take some more work.
6816
6817         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
6818         calling HideEditBox.
6819         (HideEditBox): if we have an active textbox, render it invisible
6820         without causing a re-layout of the datagrid.
6821
6822 2006-06-05  Mike Kestner  <mkestner@novell.com>
6823
6824         * ListView.cs : fix NRE crasher when focuseditem is cleared by
6825         collection changes by resetting it to Items[0].  Fixes #78587.
6826
6827 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6828
6829         * MessageBox.cs: if the height of the text is larger than the icon_size,
6830         use that. Fixes bug #78575.
6831
6832 2006-06-05  Jackson Harper  <jackson@ximian.com>
6833
6834         * TreeView.cs: Fix line drawing when scrolling.  To do this each
6835         node is basically responsible for drawing its entire horizontal
6836         area.  When drawing a node it draws its parent node lines if
6837         needed.
6838         - Adjust the clip area to the viewport rectangle
6839         - Fix Left/Right key handling to match MS. (It expand/collapses
6840         and moves to parents/first child but does not move selection to
6841         sibling nodes).
6842         - Fix SetTop to work with new bound calculation code
6843         - When scrollbars are no longer needed we need to reset scrolling
6844         vars and recalculate the visible order so the redraw is correct
6845         * TreeNode.cs: We can't expand/collapse nodes with no children.
6846
6847 2006-06-03  John Luke  <john.luke@gmail.com> 
6848
6849         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
6850         so the colors work without dev packages
6851         
6852 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
6853
6854         * Control.cs 
6855           - Select: Implemented to just use activate. Seems to match MS 
6856             behaviour closest. Documented to only do actual control walking 
6857             based on it's parameters if in a container control so I moved 
6858             the code there.
6859           - Removed selection check logic from our internal Select() method
6860         * ContainerControl.cs:
6861           - Select: Moved selection logic from Control here, since MS documents
6862             that containers obey the bool arguments. No longer calling base
6863
6864 2006-06-02  Jackson Harper  <jackson@ximian.com>
6865
6866         * TreeView.cs: If the selected node isn't changed when we get
6867         focus update the previously selected node so that we see the
6868         selection box.
6869
6870 2006-06-02  Mike Kestner  <mkestner@novell.com>
6871
6872         * ComboBox.cs: restructure grab and general mouse event handling.
6873         Make the composite control raise mouse events like it was a single
6874         control for leaves/enters/motion/up/down events.  fix dropdown list
6875         coordinate mangling and refactor it into the scrollbar subclass to
6876         reduce code duplication.  Fixes #78282 #78361 and #78457.
6877
6878 2006-06-02  Mike Kestner  <mkestner@novell.com>
6879
6880         * ScrollBar.cs: remove Capture setting/clearing, as it happens
6881         automatically in the Control.WndProc.
6882
6883 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6884
6885         * FileDialog.cs: fix crash when running SharpChess, which sets the
6886         FilterIndex to 2 with only one Filter.
6887
6888 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6889
6890         * ToolBar.cs: add SizeSpecified property.
6891         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
6892         try to figure out our real size, otherwise fallback to what the
6893         container says.
6894
6895 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
6896
6897         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
6898         * Control.cs (WndProc): MS always calls the DefWndProc to pass
6899           up the event
6900
6901 2006-06-01  Mike Kestner  <mkestner@novell.com>
6902
6903         * ListView.cs: revamp the focus management in ListView.  It still
6904         causes churn of LostFocus/GotFocus emissions on clicks, but it's
6905         better than not handling focus at all.  Will revisit when pdb feels
6906         the general focus handling is solid.  Fixes #78526.
6907
6908 2006-06-01  Jackson Harper  <jackson@ximian.com>
6909
6910         * TreeView.cs: Set the default border style in the constructor.
6911         - Move painting to use OnPaintInternal instead of capturing
6912         WM_PAINT, this is the correct way of doing things
6913         - UpdateBelow shouldn't invalidate the scrollbar area
6914         - Cap the top on update below in case the node was above the top
6915         of the viewport rectangle.
6916         - ExpandBelow and Collapse below need to obey Begin/End Update.
6917         * TreeNode.cs: Make is_expanded internal so the treenode
6918         collection can change it without firing the whole event chain.
6919         * TreeNodeCollection.cs: When clearing all the child nodes make
6920         sure to recalc the visible order.
6921         - Improve algo for remove the top node
6922
6923 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
6924
6925         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
6926           SendMessage directly calling window procedures, which in turn might
6927           call SetFocus()
6928
6929 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
6930
6931         * Control.cs: Don't handle WM_SETFOCUS if the same window already
6932           has focus (works around X11 sending a FocusIn after our SetFocus)
6933         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
6934
6935 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
6936
6937         * Mime.cs: Fix for the NET_2_0 build.
6938           NameValueCollection needs StringComparer now.
6939
6940 2006-05-31  Chris Toshok  <toshok@ximian.com>
6941
6942         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
6943         return (via an out parameter) the starting X of the column.
6944         (UpdateVisibleColumn): track change to FromPixelToColumn.
6945         (HitTest): add a ColumnResize case here.
6946         (DrawResizeLine): new function, probably poorly named.
6947
6948         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
6949         only need to keep one reference.
6950         (set_ListManager): same.
6951         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
6952         Also, add support for HitTestType.ColumnResize.
6953         (OnMouseMove): add column resize behavior here, and change the
6954         cursor to the correct one as we move around the datagrid.
6955         (OnMouseUp): terminate the column resize if we're resizing.
6956         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
6957         for the current cell.
6958         (ConnectListManagerEvents): use cached_currencymgr.
6959         (DisconnectListManagerEvents): fill this in, using
6960         cached_currencymgr.
6961         (SetCurrentCell): remove cached_currencymgr_events handling.
6962         (SetDataMember): only call DisconnectListManagerEvents if
6963         cached_currencymgr is != null.
6964         (SetDataSource): same.
6965         (OnListManagerCurrentChanged): cached_currencymgr_events ->
6966         cached_currencymgr.
6967
6968 2006-05-31  Jackson Harper  <jackson@ximian.com>
6969
6970         * BindingManagerBase.cs: Remove somedebug code that creeped into
6971         SVN.
6972         * TreeNode.cs: We get the indent level dynamically right now, so
6973         don't track it as a member.
6974         * TreeNodeCollection.cs: Make sure all nodes added to the list
6975         have parents, treeviews/topnodes setup properly.
6976         - Don't attempt to track indent level.
6977
6978 2006-05-30  Jackson Harper  <jackson@ximian.com>
6979
6980         * BindingContext.cs: Create the currency manager tables here.
6981         This allows us to more easily create null tables (when bad data
6982         members are used), and more easily create related currency
6983         managers.
6984         * CurrencyManager.cs: All the table creation stuff is done by the
6985         binding context now.
6986         - Current should throw an exception if listposition is -1.
6987         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
6988         been bound yet.
6989
6990 2006-05-30  Mike Kestner  <mkestner@novell.com>
6991
6992         * ListView.cs: allow reexpansion of zero-width column headers.
6993         Fixes #78528.
6994
6995 2006-05-28  Chris Toshok  <toshok@ximian.com>
6996
6997         * CurrencyManager.cs (get_Current): after the late binding
6998         listposition = -1 fix, we need to guard against it here and return
6999         null, otherwise we raise an exception (which is swallowed
7000         elsewhere, and breaks datagrid databinding.)
7001
7002 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7003
7004         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
7005           than WM_SYSKEY, don't throw if get something unexpected (#78507)
7006
7007 2006-05-26  Jackson Harper  <jackson@ximian.com>
7008
7009         * ControlPaint.cs:
7010         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
7011         values, it's faster and it's all we care about (we don't care if
7012         the names aren't equal).
7013         * KeyboardLayouts.cs: Eliminate some dead code.
7014         - Lazy init things
7015         * X11Keyboard.cs: Lazy init keyboard detection.
7016         - Cleanup access modifiers a little.
7017
7018 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
7019
7020         * XplatUIX11.cs: Once again, attempting to get layout just right.
7021
7022 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
7023
7024         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
7025           the sizes of each link section, that will result in sizes that
7026           match DrawString's layout (Fixes #78391)
7027
7028 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
7029
7030         * FileDialog.cs: If AddExtension property is true autocomplete the
7031           extensions in SaveFileDialog correctly. Fixes bug #78453.
7032           Set MyNetwork and MyComputer to "C:\" for windows. This should
7033           fix part 8 of bug #78446 for now.
7034
7035 2006-05-26  Chris Toshok  <toshok@ximian.com>
7036
7037         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
7038         invalidate the current row header if we need to, but presumably
7039         we'll invalidate the row corrsponding to the bounds or
7040         editingControl.
7041         (GridHScrolled): switch back to this method, as it's part of the
7042         public api.  *sigh*.
7043         (GridVScrolled): same.
7044         (OnMouseWheel): hack up something that more or less works.  Call
7045         GridHScrolled/GridVScrolled directly, instead of duplicating much
7046         of their code here.
7047         (EnsureCellVisibility): reinstate a bunch of this code, since we
7048         can't just set the scrollbar Value and expect to do all the work
7049         in the ValueChanged handler.  Also, Call Update() after scrolling
7050         in one direction so the other XplatX11.ScrollWindow call has the
7051         proper stuff in the proper places.
7052         (EditCell): set is_editing to true before calling .Edit.
7053
7054         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
7055         don't bother comparing first.
7056         (OnKeyPress): call grid.ColumnStartedEditing before calling
7057         base.OnKeyPress.  this will set is_changing and invalidate the row
7058         header if necessary.
7059         (ProcessKeyMessage): for WM_CHAR messages, call
7060         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
7061         and WM_KEYDOWN.
7062         
7063         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
7064         it's done in the DataGrid.
7065         (NextState): call grid.ColumnStartedEditing, which takes care of
7066         invalidating the row header (and setting is_changing).
7067
7068         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
7069         here.  it's done in the DataGrid.
7070
7071 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7072
7073         * Control.cs: allow changing the cursor when the mouse position is
7074         out of bounds but Capture is set.
7075         * LinkLabel.cs: handle the case when the mouse button is pressed on the
7076         linklabel but released somewhere else.
7077
7078 2006-05-25  Jackson Harper  <jackson@ximian.com>
7079
7080         * TreeView.cs: When we get focus if there is no selected node make
7081         it the top node
7082         - Remove some uneeded setup code from Draw.
7083         * TreeNodeCollection.cs: If the tree doesn't have a top node when
7084         a new node is inserted make the new node the top.
7085         * XplatUIX11.cs:
7086         * Timer.cs: Use Utc time so that no local time zone stuff needs to
7087         be used (should be faster).
7088         
7089 2006-05-25  Chris Toshok  <toshok@ximian.com>
7090
7091         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
7092         problem with the last commit.
7093
7094 2006-05-25  Chris Toshok  <toshok@ximian.com>
7095
7096         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
7097         need the invalidate call here, while scrolling right-to-left via
7098         the left arrow key (i.e. moving the editing cell while scrolling).
7099
7100         * DataGrid.cs (.ctor): remove the initialization of
7101         ctrl_pressed/shift_pressed.  We no longer track them using key
7102         up/down handlers, but by using Control.ModifierKeys.  Also, switch
7103         to using ValueChanged handlers on the scrollbars instead of
7104         Scrolled event handlers.  This simplifies a bunch of the scrolling
7105         code.
7106         (GridHValueChanged): rename from GridHScrolled, and change it to
7107         work with the new event args.
7108         (GridVValueChanged): same.
7109         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
7110         (OnMouseWheel): actually scroll the datagrid.  Don't change the
7111         selected cell.
7112         (ProcessGridKey): correct all the keyboard navigation stuff I
7113         could find.  Ctrl up/down/left/right/home/end work now.
7114         (EnsureCellVisibility): correct method name spelling.  Also,
7115         simplify this a touch by not explicitly calling the
7116         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
7117         scrollbar value.
7118         (OnKeyUpDG): no need for this method now.
7119         
7120 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7121
7122         * LinkLabel.cs: display the OverrideCursor when hovering the label.
7123         Fixes bug #78392.
7124
7125 2006-05-25  Chris Toshok  <toshok@ximian.com>
7126
7127         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
7128         r61019.
7129
7130 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7131
7132         * Application.cs: Moved setting of is_modal and closing to before
7133           we create the control, to allow the event handlers called as a
7134           result of creation affect closing. Also removed Gonzalo's previous
7135           change to setting DialogResult, the behaviour has been moved to 
7136           Form.ShowDialog()
7137         * Form.cs: 
7138           - ShowDialog(): Removed explicit creation of the form, let RunLoop
7139             handle it instead
7140           - ShowDialog(): If no dialog result is set, we need to return Cancel
7141           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
7142             the close is cancelled
7143
7144 2006-05-25  Jackson Harper  <jackson@ximian.com>
7145
7146         * StatusBar.cs: We only need to update the sizes of the other
7147         panels when we have auto size contents.  Also we are only updating
7148         the contents of the panel, not the borders, so compensate for the
7149         border width (TODO: get this width from the theme somehow).
7150         * TreeView.cs: Scrollable is true by default
7151         - Use invalidate instead of refresh where needed
7152         - Factor the scrollable value into scrollbar updating
7153         - Update the scrollbars if the Scrollable property is altered
7154         - Update the selected node if its ImageIndex is changed
7155         - Handle null nodes in UpdateNode (mainly so we don't have to
7156         check if selected is null when updating it
7157         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
7158         are factored into the visible count
7159         - Use VisibleCount for clarity in the code
7160         - When the font is changed we need to recurse through all the
7161         nodes and invalidate their sizes
7162         
7163 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7164
7165         * Application.cs: set the DialogResult to fixed when the main form is
7166         hidden or destroyed while being modal.
7167
7168 2006-05-25  Miguel de Icaza  <miguel@novell.com>
7169
7170         * Theme.cs: Use Tangoified messagebox icons. 
7171
7172         (GetSizedResourceImage): Also cope with width = 0 and do not
7173         trigger a warning in that case (0 means "give me your icon from
7174         the resouce, no special size needed).
7175
7176 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7177
7178         * Application.cs: Leave runloop if the the main modal form is 
7179           hidden (fixes #78484)
7180
7181 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7182
7183         * BindingContext.cs : reject null datasource in Contains() and
7184           Item[].
7185         * CurrencyManager.cs : check data_member validity when data_source
7186           is dataset. When it is late binding, the initial position is -1.
7187
7188 2006-05-24  Jackson Harper  <jackson@ximian.com>
7189
7190         * TreeNodeCollection.cs: Dont't recalculate the visible order on
7191         inserted nodes that aren't visible.  This changes the
7192         max_visible_order which confuses scrollbar settings.
7193         - Use the enumerator to get the prev node instead of duplicating
7194         code.
7195         * TreeView.cs: Use new method for setting scrollbar values
7196         - Don't set the bounds every time the scrollbar is updated
7197         - When updating below the root node use an invalidate instead of a
7198         refresh to prevent the child controls (scrollbars) from being
7199         refreshed. (UpdateBelow still needs to be reworked anyways).
7200         - Reenable SetBottom now that visible orders are set correctly,
7201         added some debug code incase we ever get bad values there again.
7202         - Set the scrollbar max to 2 less then the max value, this
7203         compensates for the max value being one above the node count, and
7204         for scrollbars adding one extra "notch".
7205         - When drawing image nodes if there is an imagelist we draw the
7206         first image in the list if the supplied image index is out of the
7207         image list's bounds.
7208         
7209 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7210
7211         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
7212           we receive a size change from the WM (Fixes #78503)
7213
7214 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
7215
7216         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
7217           rectangle (Fixes #78501)
7218
7219 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7220
7221         * ButtonBase.cs: 
7222           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
7223             as a bitfield.
7224           - Fixed MouseMove to no longer switch pressed state unless the left
7225             mouse button is pressed. Atsushi provided the original patch (#78485)
7226           
7227 2006-05-24  Jackson Harper  <jackson@ximian.com>
7228
7229         * ScrollBar.cs: New internal methods that allow us to change a
7230         couple values on the scrollbar (the most common case is maximum
7231         and large change) without getting multiple invalidates.
7232
7233 2006-05-24  Chris Toshok  <toshok@ximian.com>
7234
7235         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
7236         (Edit): save off the original state in oldState, and set
7237         grid.is_editing to true.
7238         (OnKeyDown): abort editing if escape is pressed.  also, call
7239         NextState if space is pressed.
7240         (OnMouseDown): call NextState.
7241         (NextState): factor out shared code from OnKeyDown and OnMouseDown
7242         here.  Also, only invalidate the row header once (on the initial
7243         is_changing switch) to save on redraws.
7244
7245 2006-05-24  Chris Toshok  <toshok@ximian.com>
7246
7247         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
7248         if the value in the cell is different than it was before.  This
7249         keeps us from triggering a layout when we move around a datarid
7250         with a highlighted cell.
7251         (Edit): suspend layout when creating/positining the text box, and
7252         resume passing false so we don't ever actually re-layout.
7253         (ReleaseHostedControl): same.
7254         (EnsureTextBox): reformat slightly, and set WordWrap to false.
7255
7256         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
7257         control-key sequences should go to the datagrid - remove that
7258         lock.  Also, modify the conditions under which we move between
7259         cells when moving the cursor within a cell, and remove the "this"
7260         and "base" from field accesses.  We weren't even consistent, given
7261         they all were in the base class.
7262
7263 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
7264
7265         * Binding.cs : (.ctor)
7266           An obvious NRE fix for BindingTest.CtorNullTest().
7267
7268 2006-05-23  Chris Toshok  <toshok@ximian.com>
7269
7270         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
7271         them between lines.  This fixes some quirks editing cells in the
7272         datagrid.
7273
7274 2006-05-23  Jackson Harper  <jackson@ximian.com>
7275
7276         * TreeView.cs: Use begin/end update when doing expand/collapse all
7277         so that we don't get flicker on the scrollbar.
7278
7279 2006-05-23  Jackson Harper  <jackson@ximian.com>
7280
7281         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
7282         treenode calculations to be independant of the painting code. To
7283         do this nodes track a visible order which is calculated by the
7284         treeview.
7285         - Call new methods for expanding/collapsing nodes.  These methods
7286         use scrollwindow so we don't have to update everything below the
7287         node.
7288         * TreeView.cs: Refactored drawing and scrolling code.  We don't
7289         need to update nodes when drawing anymore or calculate scrollbar
7290         stuff.
7291         - Added new methods for expanding/collapsing nodes. These methods
7292         use ScrollWindow so as to not have to redraw all the nodes below.
7293         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
7294         we add/remove nodes or sort.
7295         - Handle removing the selected and the top node properly.
7296
7297 2006-05-23  Chris Toshok  <toshok@ximian.com>
7298
7299         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
7300         maybe this should actually happen in the datagrid code?
7301         (EndEdit): no need to invalidate anything, given that
7302         ReleaseHostedControl causes the datagrid to relayout, which
7303         invalidates everything anyway.
7304
7305         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
7306         in SetCurrentCell).
7307         (set_SelectionBackColor): call InvalidateSelection instead of
7308         Refresh.
7309         (set_SelectionForeColor): same.
7310         (BeginEdit): Flesh this out a bit.
7311         (CancelEditing): only do any of this if we're editing/adding.
7312         (EndEdit): same.
7313         (OnMouseDown): there's no need to cancel editing here, it's done
7314         in SetCurrentCell.
7315         (SetCurrentCell): only invalidate the current row header if it's a
7316         different row than the new one.
7317         (ShiftSelection): fix this to work like MS does.
7318         (ResetSelection): factor out the invalidation of selected_rows to
7319         InvalidateSelection.
7320         (SetDataSource): cancel any editing that's going on.
7321
7322         * DataGridColumnStyle.cs
7323         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
7324         call the non-interface version.
7325
7326         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
7327         header rectangle with the clip rectangle so we don't redraw the
7328         entire header for just a small area.  Gets rid of the last flicker
7329         when horizontally scrolling.
7330         (DataGridPaintRow): same.
7331
7332 2006-05-23  Mike Kestner  <mkestner@novell.com>
7333
7334         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
7335         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
7336         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
7337         Critical bug report.
7338
7339 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7340
7341         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
7342           and this fixes #78493
7343
7344 2006-05-23  Miguel de Icaza  <miguel@novell.com>
7345
7346         * Theme.cs (GetSizedResourceImage): Scale images if the proper
7347         size is not found.  
7348         
7349         * FileDialog.cs: Do not change the background for the side bar as
7350         it wont work nicely with the theme, and also reduces the artifacts
7351         in rendering the icons (which I want to fix too).
7352
7353         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
7354         resources, not resgen resources. 
7355
7356         (PlatformDefaultHandler): Pull images using the new API.
7357
7358 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7359
7360         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
7361           a reference to the hwnd and will not remove it unless there are
7362           no pending exposures (fixes #78341)
7363         * XplatUI.cs: Improved debug
7364
7365 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
7366
7367         * MenuAPI.cs : don't handle OnClick event when it was not the left
7368           button. Fixed bug #78487.
7369
7370 2006-05-23  Mike Kestner  <mkestner@novell.com>
7371
7372         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
7373         prefer submenus to the top menu for item lookup, to avoid popping down
7374         top-row items.
7375
7376 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
7377
7378         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
7379           Graphics.FillRectangle as the visual results are really bad (even
7380           on win). We now draw perfect arrows (and perfect shadows when the
7381           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
7382           Pen.DashPattern to draw the dots of each line.
7383
7384 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
7385
7386         * FileDialog.cs: Update the filename combobox when navigating through
7387           the ListView with the cursor keys. Fixes part 7 of bug #78446.
7388
7389 2006-05-22  Mike Kestner  <mkestner@novell.com>
7390
7391         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
7392         Fixes #78463.
7393
7394 2006-05-22  Mike Kestner  <mkestner@novell.com>
7395
7396         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
7397         requests. Fix a misspelled parameter and a copy paste exception error
7398         in Select.
7399
7400 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
7401
7402         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
7403           to get the same width/height (5/13) on X11 as the default font has on
7404           win32. This means that our DefaultFont emSize is smaller than the 
7405           the MS SWF equivalent (even thought the width/height stays the same)
7406
7407 2006-05-20  Jackson Harper  <jackson@ximian.com>
7408
7409         * MdiClient.cs:
7410         * MdiWindowManager.cs:
7411         * InternalWindowManager.cs: Make sure to use the border width from
7412         the theme.
7413
7414 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
7415
7416         * PrintDialog.cs: Implements printer details
7417
7418 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
7419
7420         * FileDialog.cs: Added focus handling for PopupButtonPanel.
7421           Fixes part 1 and 2 of bug #78446
7422
7423 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
7424
7425         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
7426           instead of sticking to the first ever calculated value
7427
7428 2006-05-19  Mike Kestner  <mkestner@novell.com>
7429
7430         * ComboBox.cs: fix mouse motion selection to use MousePosition and
7431         PointToClient, since Capture is set. Fixes #78344.
7432
7433 2006-05-19  Mike Kestner  <mkestner@novell.com>
7434
7435         * ListView.cs: match MS behavior in Details view where items are not
7436         drawn if Columns.Count == 0. 
7437         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
7438         Use a separate pen to draw the check, since changing the width affects
7439         the box as well.  Fixes #78454.
7440
7441 2006-05-18  Miguel de Icaza  <miguel@novell.com>
7442
7443         * ListView.cs: ArgumentOutOfRangeException, single versions of the
7444         exception should throw the name of the invalid argument.
7445
7446         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
7447         there are no files listed. 
7448
7449 2006-05-18  Jackson Harper  <jackson@ximian.com>
7450
7451         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
7452         up.
7453
7454 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7455
7456         * Control.cs: Brought back our old UpdateZOrder method as a private
7457           function and switched our calls from UpdateZOrder to the new one.
7458           This fixes the Paint.Net canvas disappearing bug.
7459
7460 2006-05-18  Jackson Harper  <jackson@ximian.com>
7461
7462         * Theme.cs:
7463         * ThemeWin32Classic.cs:
7464         * InternalWindowManager.cs: Move the drawing into the theme,
7465         expose everything the theme should need from the window manager.
7466
7467 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7468
7469         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
7470           from the call to NativeWindow to avoid walking up the parent chain
7471           further than needed (speeds up setting cursors and avoids setting
7472           the wrong cursor if a parent has another cursor defined)
7473         * Cursor.cs: When loading an icon as cursor, MS uses the center of
7474           the icon as hotspot, not what's contained as hotspot in the icon
7475           file. This fixes the perceived drawing offset seen with Paint.Net
7476         
7477 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7478
7479         * XplatUIX11.cs: 
7480           - Store the calculated rectangle in Hwnd object and use it when 
7481             setting the client size
7482           - Force Toolwindows to always be type Dock, to ensure they're on top
7483
7484 2006-05-18  Mike Kestner  <mkestner@novell.com>
7485
7486         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
7487         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
7488         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
7489         Substantial refactoring to remove confusing nested classes. Coding
7490         standard and Get+Set->property refactorings.  Shift to index based
7491         highlighting in ComboListBox instead of constantly using IndexOf and
7492         Items[]. Add invalidations on resize for DropDownList to fix ugliness
7493         in FileDialog growth.  Draw borders manually since Simple mode needs
7494         to look like two independent controls.  Make listbox border
7495         conditional to DropDownStyle.  Improved OwnerDraw support.
7496
7497 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
7498
7499         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
7500         Don't set the disposed graphics to null, so we can throw the "right"
7501         exception if the graphics is reused later (added a flag to avoid 
7502         double disposing). Some behaviours are different under 2.0 and are
7503         filled under bug #78448.
7504
7505 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7506
7507         * Control.cs: When double-buffering is enabled, we need to reset
7508           our graphics context between paint calls. Otherwise, any 
7509           transformations and other alterations on the context will 
7510           become cumulative (#77734)
7511
7512 2006-05-18  Mike Kestner  <mkestner@novell.com>
7513
7514         * ListView.cs: do focused item selection like MS on clicks. 
7515         Rework focus handling for ItemControl so LostFocus invalidates as
7516         well.
7517         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
7518         the ListView ItemControl has focus.
7519
7520 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
7521
7522         * XplatUIX11.cs: If client_window ends up being width or height zero
7523           due to border settings, move it off window inside whole_window (#78433)
7524
7525 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7526
7527         * Mime.cs: Shrink the mime file cache correctly.
7528
7529 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7530
7531         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
7532
7533 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7534
7535         * XplatUIX11.cs (AddExpose): More sanity checks
7536
7537 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7538
7539         * XplatUIX11.cs:
7540           - AddExpose: Don't add expose ranges outside the size of our
7541             window
7542           - Cast opacity values to Int32 to avoid crashes with certain
7543             values
7544           - Added disabled code paths that protect against illegal cross-
7545             thread painting (Developers.exe)
7546
7547 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7548
7549         * ProgressBar.cs: Invalidate the control when it's resized
7550           since block size is based on control size. (#78388)
7551
7552 2006-05-16  Miguel de Icaza  <miguel@novell.com>
7553
7554         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
7555         of setting the incoming argument to the "reset" value, we set the
7556         this.datamember to string.empty (before we were invalidating the
7557         incoming data).   
7558
7559         Fixes 78420
7560
7561 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7562
7563         * Form.cs: Only apply transparency settings after the form
7564           is created. (Fixes #77800)
7565
7566 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7567
7568         * ApplicationContext.cs: Grab the HandleDestroyed event so
7569           we know when to fire OnMainFormClosed 
7570
7571 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7572
7573         * Application.cs: Introduced sub-class to allow tracking of
7574           threads and centralized triggering of the event mess for
7575           ThreadExit, AppExit, etc..  (#76156)
7576
7577 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
7578
7579         * MimeIcon.cs:
7580           - Do not return a null icon index value for a mime subclass.
7581             Instead try the main mime type class too.
7582           - Seems that some newer distributions don't have a link to some
7583             gnome default icons anymore. So check the default gnome dir too.
7584           
7585
7586 2006-05-16  Jackson Harper  <jackson@ximian.com>
7587
7588         * MdiClient.cs: Don't paint the parent background image if we have
7589         our own background image.
7590
7591 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7592
7593         * Control.cs:
7594           - PerformLayout: Do not shrink space filled by DockStyle.Fill
7595             controls, all filled controls are supposed to overlap (#78080)
7596           - UpdateZOrder is supposed to update the control's z-order in the
7597             parent's z-order chain. Fixed to behave like that
7598           - BringToFront: Removed obsolete code
7599           - SendToBack: Simplyfied
7600           - SetChildIndex: Trigger layout calculations when Z-order changes
7601             since layout is done by z-order
7602
7603 2006-05-16  Chris Toshok  <toshok@ximian.com>
7604
7605         [ fixes bug #78410 ]
7606         * DataGrid.cs (set_AlternatingBackColor): use
7607         grid_drawing.InvalidateCells instead of Refresh().
7608         (set_BackColor): call grid_drawing.InvalidateCells.
7609         (set_BackgroundColor): use Invalidate instead of Refresh.
7610
7611         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
7612         invalidate the cell area.
7613
7614 2006-05-15  Chris Toshok  <toshok@ximian.com>
7615
7616         [ fixes bug #78011 ]
7617         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
7618         on to DataGridPaintRow.
7619         (DataGridPaintRow): take a clip argument, and only draw the cells
7620         which intersect it.  same with the not_usedarea.
7621
7622         * Theme.cs (DataGridPaintRow) add @clip parameter.
7623
7624         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
7625         XplatUI.ScrollWindow.
7626         (ScrollToRow): same.
7627
7628         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
7629         with last column which was causing a gray swath to appear with the
7630         XplatUI.ScrollWindow code.
7631
7632 2006-05-15  Chris Toshok  <toshok@ximian.com>
7633
7634         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
7635         use XplatUI.ScrollWindow.
7636         (VerticalScrollEvent): use XplatUI.ScrollWindow.
7637
7638 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
7639
7640         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
7641
7642 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7643
7644         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
7645           file since there are no equivalent X11 cursors
7646
7647 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7648
7649         * MonthCalendar.cs : DateTimePicker should reflect selected date
7650           on mouse*up*, not mouse*down*. Fixed originally reported part of
7651           bug #76474.
7652
7653 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7654
7655         * TabControl.cs : When argument index is equal or more than tab
7656           count, just ignore. Fixed bug #78395.
7657
7658 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7659
7660         * Control.cs: Dispose all child controls when control is diposed (#78394)
7661
7662 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7663
7664         * ColorDialog.cs: Finally it is possible to select the color with
7665           the text boxes
7666
7667 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7668
7669         * PrintDialog.cs: Fix typo
7670
7671 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7672
7673         * PrintDialog.cs: PrintDialog is not resizable
7674         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
7675           color. Made some ToolBar drawing methods protected virtual.
7676
7677 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
7678
7679         * PrintDialog.cs: Implementation of the PrintDialog
7680
7681 2006-05-12  Chris Toshok  <toshok@ximian.com>
7682
7683         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
7684         thumb, instead use MoveThumb.  This has the side effect of making
7685         most of the other thumb moving machinery use MoveThumb as well.
7686         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
7687         need to actually invalidate the rectangle where the new thumb will
7688         go.
7689         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
7690         We force an Update() after, so it's not as fast as it could be,
7691         but at least there's zero flicker and no droppings.
7692         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
7693         (UpdateThumbPos): add another argument (dirty), which says whether
7694         or not to calculate/add dirty regions which we later invalidate.
7695         For cases where we know we're going to use MoveThumb, we pass
7696         false for this.  Otherwise, pass true.
7697
7698 2006-05-12  Jackson Harper  <jackson@ximian.com>
7699
7700         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
7701         the status bar.
7702         
7703 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
7704
7705         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
7706           and GetClipRegion methods and UserClipWontExposeParent property.
7707         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
7708           overriding UserClipWontExposeParent property, setting to false, since
7709           Win32 handles the required expose messages to draw our clipped parent
7710           areas internally
7711         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
7712           PaintEventStart to set the user clip region if set.
7713         * Control.cs: 
7714           - Now internally tracking the Region for the control since we need to
7715             store it if the handle is not yet created and only set it when it
7716             becomes created. Before setting the region forced handle creation
7717           - Added code to draw the parents underneath a user-clipped region
7718         * Hwnd.cs: Added UserClip property
7719
7720 2006-05-12  Chris Toshok  <toshok@ximian.com>
7721
7722         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
7723         (set_Maximum): same.
7724         (set_Minimum): same.
7725         (set_SmallChange): same.
7726         (OnMouseUpSB): remove the call to refresh when releasing the
7727         thumb.  We shouldn't need it.
7728         
7729 2006-05-12  Miguel de Icaza  <miguel@novell.com>
7730
7731         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
7732         AutoSize set to None, we do not need to relayout everything, we
7733         just need to invalidate the current region.
7734
7735         (Draw): Do not draw the entire ClientArea, just redraw the
7736         clip area being passed.
7737
7738         * MdiClient.cs: Make MdiClient constructor with the Form argument
7739         internal. 
7740
7741 2006-05-12  Jackson Harper  <jackson@ximian.com>
7742
7743         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
7744         parents background image,  but strangely not their own.
7745         - (DrawStatusBarPanel): Take into account horizontal alignment
7746         when drawing the strings and icons.
7747
7748 2006-05-12  Mike Kestner  <mkestner@novell.com>
7749
7750         * ListBox.cs: avoid invalidations for focus when the collection is
7751         empty. 
7752
7753 2006-05-12  Chris Toshok  <toshok@ximian.com>
7754
7755         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
7756         invalidate the entire thumb area.  Call InvalidateDirty which
7757         limits the redraw to the thumb itself and surrounding pixels.
7758
7759         * XplatUIX11.cs (ScrollWindow): optimize copying.
7760         
7761 2006-05-12  Chris Toshok  <toshok@ximian.com>
7762
7763         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
7764         Figure out the positioning/layout in a single pass instead of
7765         multiple recursive invocations.  Speeds up the initial display of
7766         the data grid.  Also, make many things private that were
7767         originally public but unused outside this class.
7768
7769 2006-05-11  Jackson Harper  <jackson@ximian.com>
7770
7771         * MdiClient.cs: Improved layout code.
7772
7773 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
7774
7775         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
7776           not SelectedObject.
7777
7778 2006-05-11  Chris Toshok  <toshok@ximian.com>
7779
7780         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
7781         union of that will always be {0,0,width,height}.
7782
7783 2006-05-11  Jackson Harper  <jackson@ximian.com>
7784
7785         * Form.cs: Match MS's DefaultSize for forms (they must have
7786         changed the size in sp2).
7787
7788 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7789
7790         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
7791
7792 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7793
7794         * TextControl.cs : Fixed bug #78109. This incorrect position
7795           comparison caused crash on automatic line split.
7796         * TextBoxBase.cs : reduce duplicate code.
7797
7798 2006-05-10  Jackson Harper  <jackson@ximian.com>
7799
7800         * MdiClient.cs: Active form is only sent to the back when using
7801         the Next form functionality, when a form is clicked the current
7802         active shouldn't be sent to the back.
7803         - Layout the mdi windows when the container is first made visible.
7804         * Form.cs: Give the MdiClient a ref to the containing form when we
7805         create it.
7806         
7807 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7808
7809         * LinkLabel.cs : link_font could be uninitialized, so populate one
7810           before actual use. Fixed bug #78340.
7811
7812 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7813
7814         * XplatUIX11.cs : clipboard format native value is IntPtr.
7815           Fixed bug #78283.
7816
7817 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7818
7819         * Control.cs: 
7820           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
7821             which is passed up the parent chain by DefWndProc
7822           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
7823             to DefWndProc (#77956)
7824         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
7825
7826 2006-05-10  Jackson Harper  <jackson@ximian.com>
7827
7828         * MdiClient.cs: We need to remove the controls from the mdi
7829         collection, when we close the window.
7830         * MdiWindowManager.cs: Special handling of closing mdi windows.
7831         * InternalWindowManager.cs: Make the close method virtual so the
7832         mdi window manager can handle it specially.
7833
7834 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
7835
7836         * DataGrid.cs:
7837           - Recalculate grid when the data source has changed
7838           - Matches styles provided by user from all data sources types
7839         * DataGridTableStyle.cs: For columns that provided by the user set the
7840         with the preferred value is there was unassigned.
7841         * CurrencyManager.cs: throw OnItemChanged event
7842
7843 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
7844
7845         * PictureBox.cs: Don't animate until handle is created. Start animation
7846           when handle is created.
7847
7848 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7849
7850         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
7851           current codebase.
7852         * XEventQueue.cs: We don't need to provide the extra info
7853
7854 2006-05-10  Jackson Harper  <jackson@ximian.com>
7855
7856         * MdiClient.cs: If the mdi clients parent form has a background
7857         image set, we draw that background image for the mdi area's
7858         background.
7859
7860 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7861
7862         * TextBoxBase.cs: Set IBeam cursor (#78347)
7863
7864 2006-05-10  Mike Kestner  <mkestner@novell.com>
7865
7866         * ToolBar.cs: fix some text padding issues with ButtonSize
7867         calculation. Update the default size to match MS documentation.
7868         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
7869         button size. Fixes #78296.
7870
7871 2006-05-10  Mike Kestner  <mkestner@novell.com>
7872
7873         * ListBox.cs: use is_visible for scrollbar positioning in case the
7874         control isn't on screen yet.  Fix off by one with Right vs Width
7875         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
7876         
7877 2006-05-10  Jackson Harper  <jackson@ximian.com>
7878
7879         * X11Dnd.cs: Drop to a control with another control on top of it.
7880         * ToolBar.cs: Work on a copy of the buttons list, so that it can
7881         be modified in click handlers. TODO: Look for similar problems in
7882         other controls.
7883
7884 2006-05-09  Jackson Harper  <jackson@ximian.com>
7885
7886         * Form.cs: Window managers need the old window state when setting
7887         window state now.
7888         * InternalWindowManager.cs: Allow the base mdi window manager to
7889         handle more of the MDI only stuff (like maximize buttons).
7890         * MdiWindowManager.cs: Fix some snafus in changing the window
7891         state.  Add all the menu functionality, for both popup and
7892         maximized menus.
7893         * MdiClient.cs: When a new form is selected the currently
7894         activated form is sent to the back, this matches MS.
7895         - Implement a new method to activate the next mdi child window.
7896
7897 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
7898
7899         * Control.cs: 
7900           - Added new InternalCapture method to allow controls to prevent
7901             the capture behaviour on the click handlers
7902           - Switched to use InternalCapture
7903         * ComboBox.cs:
7904           - Using InternalCapture to prevent mouse captures from being released
7905             on mouse button release (Fixes #78100)
7906         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
7907           returns Form borders if a caption is present. (Fixes #78310)
7908
7909 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
7910
7911         * TreeNode.cs: Changed serialization .ctor to not require every field
7912           to be present. (#78265)
7913         * OwnerDrawPropertyBag.cs: Added serialization .ctor
7914
7915 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
7916
7917         * MimeIcon.cs: for is faster than foreach for strings.
7918
7919 2006-05-05  Mike Kestner  <mkestner@novell.com>
7920
7921         * CheckedListBox.cs: update check handling code to not use selected.
7922         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
7923         behavior for visual feedback, motion response, shift/ctrl handling,
7924         and properly deal with all 4 selection modes. Updates to bounds
7925         handling logic.  Add scroll wheel support. [Fixes #77842]
7926
7927 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7928
7929         * ListView.cs:
7930           - Moved adding of Implicit controls into .ctor. That way, subsequent
7931             creation of the controls will not cause them to think they are 
7932             toplevel windows (fixes #78200 header problem)
7933           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
7934           - Switched visibility setting of header control to use internal field
7935             to avoid triggering handle creation
7936           - Now checking if handle is created before causing a refresh when items
7937             are added (This makes us now match handle creation time with MS)
7938         * Splitter.cs: Removed loading of private splitter cursor, switched to
7939           Cursors version now that that is loading the right ones
7940         * Cursors.cs: Load proper splitter cursors from resources
7941         * Cursor.cs: Added second method of loading resource cursors for the 
7942           VS.Net users amongst us
7943
7944 2006-05-05  Mike Kestner  <mkestner@novell.com>
7945
7946         * ListView.cs: give header_control a minimum size based on the
7947         ListView size.
7948
7949 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7950
7951         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
7952           window seems to do that with metacity, so set that type. (#78120)
7953
7954 2006-05-05  Mike Kestner  <mkestner@novell.com>
7955
7956         * ListViewItem.cs: fix Details mode checkbox layout bug.
7957         * ThemeWin32Classic.cs: draw a ListView column header for unused space
7958         at the end of the header, if it exists. [Fixes for #78200]
7959
7960 2006-05-04  Jackson Harper  <jackson@ximian.com>
7961
7962         * MdiClient.cs: Add a helper property to get the container form.
7963         * MdiWindowManager.cs: We have to make sure to use the menu origin
7964         when drawing the icons and buttons, this fixes maximized window
7965         icons/buttons on win32.
7966         * InternalWindowManager.cs: Reset the restore captions when a
7967         window goes from Maximized to Minimized and vice versa. Move the
7968         DrawMaximizedButtons into the MdiWindowManager source, tool
7969         windows can't be maximized. NOTE: This could use a little
7970         refactoring if time ever permits.
7971         
7972 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7973
7974         * TextBox.cs: Add MWFCategoryAttributes
7975         * TextBoxBase.cs: Add MWFCategoryAttributes
7976         * Form.cs: Add MWFCategoryAttributes
7977
7978 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7979
7980         * Control.cs: Add MWFCategoryAttributes
7981         * ScrollableControl.cs: Add MWFCategoryAttributes
7982
7983 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
7984
7985         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
7986           Divider is true. Fix a little glitch in PropertyToolBar
7987           drawing code
7988
7989 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
7990
7991         * Control.cs:
7992           - Dispose: Call base.Dispose, this causes the disposed event
7993             to be fired (and probably other, more important stuff)
7994           - SetVisibleCore: Set is_visible to true after creating the
7995             window so that the window still gets created invisible (if
7996             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
7997             to generate a WM_ACTIVE message
7998         * Form.cs: Call Dispose when we want to destroy the window, instead of
7999           just destroying the handle (Dispose will do that for us)
8000         * XplatUIX11.cs:
8001           - RootWindow also needs a queue, so we can properly process the
8002             property change events from RootWindow (like Activate)
8003           - Generatic synthetic WM_ACTIVE message when the active window is
8004             being destroyed
8005
8006 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8007
8008         * LinkLabel.cs: Trigger a recalc of our label dimensions when
8009           bounds are changed
8010
8011 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
8012
8013         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
8014           for determining width and height (image might not be assigned if
8015           we're drawing an imagelist)
8016
8017 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
8018
8019         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
8020         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
8021           height from system
8022         * Theme.cs: No longer returns hardcoded menu height, instead calls
8023           new driver method
8024         * Form.cs (OnLoad): Scaling happens before triggering Load events 
8025           on MS (# 78257)
8026
8027 2006-05-01  Mike Kestner  <mkestner@novell.com>
8028
8029         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
8030
8031 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
8032
8033         * TextBoxBase.cs: Removed Fixme
8034         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
8035
8036 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
8037
8038         * XplatUIX11.cs:
8039           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
8040             the rectangle relative to the parent, considering borders. We
8041             don't really want that.
8042           - ScrollWindow: Fixed warning to be more understandable
8043         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
8044           scrollbars and scroll only the visible area
8045         * RichTextBox.cs: Removed debug output
8046
8047 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8048
8049         * NumericUpDown.cs (Text): Just use base
8050         * UpDownBase.cs: Ensure txtView is created before using it
8051
8052 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8053
8054         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
8055           casting to IntPtr to avoid 64bit overflow errors
8056
8057 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8058
8059         * Control.cs:
8060           - AllowDrop: Don't force handle creation.
8061           - CreateHandle: Added call to tell driver if we're allowed to drop
8062
8063 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8064
8065         * FileDialog.cs: Remember the last directory not only for the
8066           current instance but also for new FileDialog instances.
8067
8068 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
8069         
8070         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
8071           broke sending async messages
8072
8073 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
8074
8075         * XplatUIX11.cs:
8076           - ScrollWindow: Fixed method. We finally generate expose events again
8077             for scrolled areas. This was causing 'garbage' when scrolling
8078             textbox and other controls that used ScrollWindow
8079           - Switched from using the regular queue for paint events to the MS 
8080             model of 'generating' paint events when the queue is empty.
8081             We use the new XQueueEvent.Paint subclass to store which windows
8082             need painting.
8083           - AddExpose now takes the x/y/width/height of the exposed area
8084             and inserts the window into the paint queue if not already there
8085           - InvalidateWholeWindow: Switched to use new AddExpose method
8086           - UpdateMessageQueue: Added which queue to monitor for paint events
8087           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
8088             the unlikely case nothing above handles it. We reset the expose
8089             pending states to get them off the queue.
8090           - GetMessage: Now pulls a paint event if no other events are in the
8091             queue
8092           - Invalidate: Switched to new AddExpose method
8093           - PeekMessage: Updated to understand pending paint events
8094           - UpdateWindow: Fixed logic bug. We were only updating if the window
8095             didn't need updating. Also switched to sending WM_PAINT directly,
8096             like MS does.
8097         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
8098           and random access Remove(). The random access is needed to handle
8099           UpdateWindow() where a WM_PAINT is sent directly without accessing
8100           the queue.
8101         * ScrollBar.cs: Added Update() calls to cause immediate updates to
8102           allow for better feedback when scrolling. Scrollbars are small and
8103           the immediate update should make it 'feel' more responsive without
8104           slowing things down. ScrollBar still needs it's invaliate logic
8105           updated to not always invalidate the whole bar on certain changes.
8106
8107 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8108
8109         * Control.cs:
8110         (BackColor): if the control does not support a transparent background,
8111         return the default backcolor when the parent backcolor is transparent.
8112
8113 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
8114
8115         * Application.cs: Updated to new StartLoop/GetMessage API
8116         * RichTextBox.cs: Provide some output on RTF parsing errors
8117         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
8118           new queue_id argument to GetMessage and PeekMessage to allow faster
8119           handling of per-thread queues in drivers.
8120         * Hwnd.cs: Added Queue tracking and property
8121         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
8122         * XEventQueue.cs: Added thread trackingA
8123         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
8124         * XplatUIX11.cs:
8125           - Implemented new per-thread queue
8126           - GetMessage: Fixed return/break behaviour on several cases. We were
8127             returning stale messages in some cases, instead of just processing
8128             the next message
8129
8130 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8131
8132         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
8133
8134 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
8135
8136         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
8137           fixed off-by-one comparisons between Width/Height and Right/Bottom.
8138
8139 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
8140
8141         * PropertyGridView.cs: Fix drop down width.
8142
8143 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8144
8145         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
8146           a mess in DrawToolBar, so I removed one of them.
8147
8148 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
8149
8150         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
8151           needed (clip). Otherwise we get artifacts.
8152
8153 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8154
8155         * FixedSizeTextBox.cs: Added constructor to allow specifying which
8156           dimension is fixed
8157         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
8158           and switched FixedSizeTextBox to only be fixed vertical (#78116)
8159         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
8160           if it matches the scale base font (avoids unneeded scaling)
8161
8162 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8163
8164         * X11DesktopColors.cs: One gtk_init_check should be enough
8165
8166 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
8167
8168         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
8169           match MS behaviour
8170
8171 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8172
8173         * TextBoxBase.cs: 
8174           - Generate OnTextChanged for Backspace even if we're only deleting
8175             the current selection
8176           - When setting the Text property, only select all text if the
8177             control does not have focus when it is being set. Otherwise
8178             just place the cursor at the beginning of the control
8179
8180 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8181
8182         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
8183           Added a little helper to draw PropertyGrid ToolBar with a different
8184           border and a different BackColor.
8185         * PropertyGrid.cs: Some background parts didn't get painted with the
8186           correct background color. Added a class that helps us to draw the
8187           correct border for PropertyGridView and a class that helps us to
8188           draw ToolBars with a different backcolor
8189         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
8190
8191 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
8192
8193         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
8194         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
8195
8196 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8197
8198         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
8199           into the palette entries. Also, since we're working on a copy
8200           we needed to copy the palette back onto the bitmap.
8201         * Cursor.cs: Same fix as XplatUIWin32.cs.
8202
8203 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
8204
8205         * ImageListStreamer.cs: Need to read the var (or we're off)
8206
8207 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8208
8209         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
8210           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
8211           TextBoxBase.cs: Unused var fixes
8212         * AxHost.cs: Small 2.0 fix
8213         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
8214           as it seems that is what at least Metacity expects. This will make
8215           icons show up on 64bit platforms. We still have some 64bit size
8216           issues, though, since the startup app window size still won't match.
8217
8218 2006-04-25  Mike Kestner  <mkestner@novell.com>
8219
8220         * *.cs: cleanup newly reported exception var unused warnings.
8221
8222 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8223
8224         * ThemeWin32Classic.cs: Button image alignment now matches exactly
8225           ms
8226
8227 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8228
8229         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
8230           image. The image position is always the same, no matter if the
8231           button is pressed or not.
8232
8233 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8234
8235         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
8236           selection and set the correct filename for SaveFileDialog.
8237           Patch by Emery Conrad.
8238
8239 2006-04-24  Mike Kestner  <mkestner@novell.com>
8240
8241         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
8242         check for item.X outside the ClientRect instead of item.Y. Fixes
8243         #78151.
8244
8245 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8246
8247         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
8248         trust that value blindly and do some sanity check. Fixes bug #77814.
8249
8250 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8251
8252         * ImageListStreamer.cs: save the mask as a 1bpp image.
8253
8254 2006-04-21  Mike Kestner  <mkestner@novell.com>
8255
8256         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
8257         pass Checked and Indeterminate to the Theme Engine. Improve
8258         encapsulation with ListBox.
8259         * ListBox.cs: Keep a StringFormat instead of calculating it every item
8260         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
8261         nested types.  Move all CheckState functionality to CheckedListBox.
8262         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
8263         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
8264         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
8265         single base list. Fix scrollbar sizing and placement to mirror MS.
8266         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
8267         used.
8268         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
8269         for CheckedListBox by using new DrawItemState info.  Center the
8270         checkboxes on the items. Use new StringFormat property.
8271
8272 2006-04-18  Jackson Harper  <jackson@ximian.com>
8273
8274         * Form.cs: MdiChildren don't do default locations the same way as
8275         regular forms.  This prevents a crash when trying to position the
8276         mdi windows.
8277
8278 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
8279
8280         * PropertyGridTextBox.cs: Formatting, copyright
8281         * PropertiesTab.cs: Formatting
8282         * PropertyGrid.cs: Formatting
8283         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
8284           click toggling of values
8285           
8286 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
8287
8288         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
8289         * Control.cs (.ctor): verify_thread_handle is static, don't reset
8290           every time a control is created
8291         * Application.cs: Removed obsolete EnableRTLMirroring method
8292
8293 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
8294
8295         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
8296         SelectedIndex to -1. Fixes bug #78121.
8297
8298 2006-04-17  Jackson Harper  <jackson@ximian.com>
8299
8300         * Binding.cs: Handle null values for Current and BindingContext.
8301         This occurs when binding is a little delayed.
8302         * CurrencyManager.cs: return null for Current when there are no
8303         items in the list.
8304         - Hookup to the listchanged event on the DataView and update
8305         bindings when the list is changed.  This fixes late binding of
8306         controls.
8307
8308 2006-04-17  Jackson Harper  <jackson@ximian.com>
8309
8310         * X11Dnd.cs:
8311         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
8312         Ringenbach.
8313
8314 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
8315
8316         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
8317           place
8318         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
8319           with the correct ButtonState
8320
8321 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
8322
8323         * XplatUIX11.cs: Improved distinguishing between window types to
8324           tell the WM a type closer to what the app wants (Fixes #78107)
8325
8326 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8327
8328         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
8329           GrabHandle
8330
8331 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8332
8333         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
8334           drawing code to reflect the size grip changes
8335
8336 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8337
8338         * ImageListStreamer.cs: fix handling of the mask that follows the main
8339         bitmap when deserializing and serialize it properly. The generated mask
8340         should better be a 1bpp image, but I'll do that later.
8341
8342 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8343
8344         * FileDialog.cs: Show something in the DirComboBox on *nix if the
8345           path doesn't fit into some of our Current.Places
8346
8347 2006-04-13  Jackson Harper  <jackson@ximian.com>
8348
8349         * ComboBox.cs: Use borders instead of drawing our own decorations,
8350         try to obey correct rules for heights.
8351         * Theme.cs:
8352         * ThemeNice.cs:
8353         * ThemeClearLooks.cs:
8354         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
8355         this is now handled by borders.
8356         - Remove unused DrawListBoxDecorationSize method.
8357         
8358 2006-04-13  Mike Kestner  <mkestner@novell.com>
8359
8360         * MenuAPI.cs: null guarding for the disbled click check fixes crash
8361         reported by Alex.
8362
8363 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8364
8365         * ThemeWin32Classic.cs: 
8366           - Fixed CPDrawStringDisabled
8367           - Corrected drawing of disabled menu items
8368           - Fixed drawing of disabled radio buttons (bug #78095)
8369           - Draw check in a disabled CheckBox with color ControlDark 
8370
8371 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8372
8373         * Form.cs: Use the provided width when calculating the menu size;
8374           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
8375           and ClientSize.Width won't be updated yet
8376         * Application.cs: Use Visible instead of Show() to make form visible,
8377           this way we create the handle later and menusize is considered
8378
8379 2006-04-12  Mike Kestner  <mkestner@novell.com>
8380
8381         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
8382         reporting.
8383
8384 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8385
8386         * TextBox.cs: Implemented context menu
8387
8388 2006-04-12  Mike Kestner  <mkestner@novell.com>
8389
8390         * ListView.cs: implement box selection. fixes #77838.
8391         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
8392
8393 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8394
8395         * XplatUIX11.cs: Added setting of window type when transient window
8396           is created (metacity would move it otherwise)
8397         * X11Structs.cs: Added WINDOW_TYPE atoms
8398         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
8399           background (the control is Opaque but still wants transparent
8400           backgrounds)
8401
8402 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8403
8404         * Control.cs: Added OnPaintBackgroundInternal to allow controls
8405           that set Opaque but don't mean it (like all ButtonBase-derived
8406           controls) to still draw their background
8407         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
8408           the background
8409
8410 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8411
8412         * Control.cs (PaintControlBackground): Set the graphics object
8413           on our PaintEvent to null to prevent it from being disposed
8414           when the PaintEvent gets disposed
8415
8416 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
8417
8418         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
8419         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
8420
8421 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8422
8423         * Control.cs: 
8424           - Added transparency check to BackColor property. Transparent
8425             backgrounds are only allowed if the control styles permit it
8426           - Added recursive painting of parent control background and
8427             foreground if a control with a transparent backcolor is drawn
8428             (Thanks to Tim Ringenback for providing his 'hack' as a base
8429              for this patch) Fixes #77985 and #78026.
8430           - Added Opaque style check before calling OnPaintBackground, no
8431             need to draw the background if the control is opaque
8432           - Removed ControlAccessibleObject owner variable (inherited from
8433             base, no need to define again)
8434           - Added some documentation links explaining the drawing events
8435             and styles
8436
8437 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8438
8439         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
8440           that the affected control is the located at the left border of our
8441           parent (Fixes #77936)
8442
8443 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8444
8445         * TextBoxBase.cs: When rendering disabled or readonly controls,
8446           draw the background with 'Control' instead of 'Window' color as
8447           long as the user hasn't specifically set a color
8448
8449 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8450
8451         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
8452           since that won't be updated if the user types text (only if it's
8453           programatically set)
8454
8455 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8456
8457         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
8458           layout changes do to app-triggered resizes will have the proper
8459           display rectangle for layout
8460
8461 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
8462
8463         * ThemeWin32Classic.cs:
8464           - Make use of the SystemBrushes and SystemPens wherever possible
8465           - Corrected some highlight colors
8466           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
8467             drawing
8468         * Theme.cs: Added Empty field to CPColor struct
8469
8470 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8471
8472         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
8473           is displayed when calculating the display rectangle. Thanks to Mike
8474           for teaching me the err of my ways.
8475
8476 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
8477
8478         * ScrollableControl.cs:
8479           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
8480             (instead of 0,0) and we now return the real width/height instead of
8481             just the clientrectangle, adjusted for padding. The rectangle is
8482             now cached and created by the new CalculateDisplayRectangle method.
8483           - Created new CalculateDisplayRectange method, which basically does
8484             what get_DisplayRectangle() did originally, but now using the 
8485             right edge instead of DisplayRectangle to determine the size of
8486             our scrollbars
8487           - get_Canvas(): Fixed it to properly calculate canvas for 
8488             right/bottom controls which seem to be placed to the right/bottom
8489             of any controls that have a fixed location
8490           - Removed TODO that's taken care of
8491           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
8492             and SetDisplayRectLocation according to new MSDN2 docs
8493           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
8494             event when that is called, this is added for compatibility
8495           - ScrollControlIntoView(): Implemented.
8496           - Switched scrollbars to be implicit, they shouldn't be selectable
8497         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
8498           call it when the active control is set/changed
8499         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
8500         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
8501           implicit_control variable (used for native Win32 message generation)
8502         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
8503           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
8504         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
8505         * XplatUIStructs.cs: Added ScrollBarCommands enum
8506
8507 2006-04-10  Jackson Harper  <jackson@ximian.com>
8508
8509         * ButtonBase.cs:
8510         * CheckedListBox.cs:
8511         * ComboBox.cs:
8512         * DataGrid.cs:
8513         * DataGridView.cs:
8514         * Form.cs:
8515         * GroupBox.cs:
8516         * ListBox.cs:
8517         * PrintPreviewControl.cs:
8518         * ProgressBar.cs:
8519         * PropertyGrid.cs:
8520         * Splitter.cs:
8521         * StatusBar.cs:
8522         * TrackBar.cs:
8523         * UpDownBase.cs: Fixup base event overrides.
8524         
8525 2006-04-06  Mike Kestner  <mkestner@novell.com>
8526
8527         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
8528         all user-initiated value changes to min <= value <= max-thumbsz+1.
8529         (set_Value): check for vert/horiz when calculating new thumb position.
8530         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
8531         like MS does.
8532         (OnMouseMoveSB): refactor the thumb dragging code and refine
8533         invalidation logic to reduce flicker.
8534         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
8535         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
8536         (UpdateThumbPosition): small code readability cleanup
8537
8538 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
8539
8540         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
8541           different
8542
8543 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8544
8545         * ThemeNice.cs: Use a better graphics effect when a button is pressed
8546
8547 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8548
8549         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
8550         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
8551           This dramatically reduces the number of Pen.Dispose calls. 
8552           Where possible call ResPool methods only once instead of calling it
8553           over and over again (for example for the same color).
8554
8555 2006-04-06  Mike Kestner  <mkestner@novell.com>
8556
8557         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
8558         Also remove an unused private field on the collection. Fixes #77972.
8559
8560 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8561
8562         * ThemeNice.cs: Added ToolBar drawing code
8563
8564 2006-04-06  Mike Kestner  <mkestner@novell.com>
8565
8566         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
8567         I'm assuming that means we need to look up the toplevel for the
8568         provided control. Fixes the crash trace in #77911 but exposes another
8569         crash in some strange reflection usage in NDocGui.
8570
8571 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8572
8573         * ThemeNice.cs: Gave it a little silver touch and added Images
8574           method
8575         * FontDialog.cs: FontDialog is not resizable
8576         * FileDialg.cs: Added SizeGripStyle.Show
8577
8578 2006-04-05  Jackson Harper  <jackson@ximian.com>
8579
8580         * KeyboardLayouts.cs: Remove warning.
8581
8582 2006-04-05  Jackson Harper  <jackson@ximian.com>
8583
8584         * Control.cs: Enable OnPaintInternal so we can use it for drawing
8585         all of our controls instead of Paint +=.
8586         * ListBox.cs:
8587         * ListView.cs:
8588         * MenuAPI.cs:
8589         * MessageBox.cs:
8590         * NotifyIcon.cs:
8591         * ProgressBar.cs:
8592         * ScrollBar.cs:
8593         * Splitter.cs:
8594         * StatusBar.cs:
8595         * TabControl.cs:
8596         * TextBoxBase.cs:
8597         * ToolBar.cs:
8598         * TrackBar.cs:
8599         * UpDownBase.cs:
8600         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
8601         use OnPaintInternal. Remove Width/Height and Visible checks in
8602         paint handler, this is done at a higher level now.
8603         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
8604         * PaintEventArgs.cs: Add a handled flag so controls that don't
8605         want anymore painting after OnPaintInternal can make sure OnPaint
8606         isn't called.
8607
8608 2006-04-05  Mike Kestner  <mkestner@novell.com>
8609
8610         * Form.cs: fix the menu WndProc hacks to respect the native enabled
8611         state of the form, so that we don't process events when Modal dialogs
8612         are up. Fixes #77922.
8613
8614 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
8615
8616         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
8617           checking is done.
8618
8619 2006-04-05  Mike Kestner  <mkestner@novell.com>
8620
8621         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
8622
8623 2006-04-05  Mike Kestner  <mkestner@novell.com>
8624
8625         * ListView.cs (HeaderMouseMove): null guarding for the over column
8626         when setting up the drag_to_index.  Fixes #78015.
8627
8628 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
8629
8630         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
8631           in the taskbar. Transient windows seem to accomplish that.
8632
8633 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
8634
8635         * Form.cs:
8636           - Re-enabled CreateParams.X/Y code for FormStartPosition
8637           - Added code for manual placement when creating the Control
8638           - Incomplete patch to treat MDI forms differently when
8639             setting the ClientSizeCore. (Still need to figure out handling
8640             x/y coords there)
8641         * XplatUIX11.cs:
8642           - When we're explicitly setting the X/Y position of a non-Child
8643             window, let the WM know. Metacity really wants this.
8644
8645 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8646
8647         * ThemeNice.cs: Added CPDrawButton
8648
8649 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8650
8651         * ThemeNice.cs: Changed the color for focused buttons and activated
8652           the arrows for small scroll buttons.
8653
8654 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8655
8656         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
8657           anymore. Changed some method modifiers to protected (virtual)
8658         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
8659           changes
8660         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
8661           Updated drawing of menus, buttons and progressbars; added
8662           CPDrawBorder3D 
8663
8664 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8665
8666         * ImageListStreamer.cs: implemented serialization/deserialization
8667         of the images.
8668
8669 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
8670
8671         * ThemeWin32Classic.cs:
8672           - Removed all the DrawFrameControl stuff; CPDrawButton,
8673             CPDrawCheckBox and CPDrawRadioButton are now handled directly
8674             inside the methods
8675           - Updated and corrected the drawing code of CPDrawButton,
8676             CPDrawCheckBox and CPDrawRadioButton to better match ms
8677           - Updated theme checkbox and radiobutton code to use the CP*
8678             methods
8679
8680 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8681
8682         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
8683           bug is fixed
8684
8685 2006-03-31  Jackson Harper  <jackson@ximian.com>
8686
8687         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
8688         sometimes.
8689         * UpDownBase.cs: Don't CreateGraphics manually, use a
8690         Refresh. Ideally we would invalidate the correct areas here.
8691
8692 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8693
8694         * XplatUIX11.cs: 
8695           - We now track the mapping state of windows. If a window (or 
8696             one of it's parents) is not mapped we no longer permit
8697             WM_PAINT messages to be generated since we'd otherwise get 
8698             lots of BadMatch X errors. Jackson did all the work figuring
8699             out the problem.
8700           - Destroying the caret if the window it's contained in is 
8701             destroyed. Can't use regular DestroyCaret method since it
8702             might fall into a drawing function (trying to remove the
8703             caret) and with that generate new BadMatch errors. Again,
8704             Jackson tracked this down.
8705           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
8706             make sure we send the messages to all windows. (The old code
8707             would send the WM_DESTROY to the window, and then all child
8708             windows would be 'gone' because the WM_DESTROY handle lookup
8709             would no longer find the destroyed window)
8710         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
8711         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
8712
8713 2006-03-31  Jackson Harper  <jackson@ximian.com>
8714
8715         * ScrollableControl.cs: Dont recalc if we are not visible.
8716
8717 2006-03-31  Mike Kestner  <mkestner@novell.com>
8718
8719         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
8720         the visibility branch.
8721
8722 2006-03-31  Jackson Harper  <jackson@ximian.com>
8723
8724         * ScrollBar.cs: Cap values when incrementing/decrementing.
8725
8726 2006-03-31  Mike Kestner  <mkestner@novell.com>
8727
8728         * MenuAPI.cs: setup menu.tracker for popup/context menus.
8729         * ToolTip.cs: guard against timer expirations with no active control.
8730         Not sure why it happened.
8731
8732 2006-03-31  Mike Kestner  <mkestner@novell.com>
8733
8734         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
8735         text.
8736         * ToolTip.cs: Position the tooltip based on where the cursor is at
8737         popup time, not at MouseEnter time.  Add a Down state so that we don't
8738         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
8739         positioning offset. Lookup DisplaySize at positioning time, since it
8740         can theoretically change during invocation.
8741         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
8742         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
8743
8744 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8745
8746         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
8747           Fixes behaviour when the Text property of the box is String.Empty
8748
8749 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
8750
8751         * XplatUIX11.cs: Only send mouseleave for our client windows, not
8752           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
8753           a window)
8754
8755 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8756
8757         * FileDialog.cs: Visual enhancement for the popup buttons in 
8758           PopupButtonPanel
8759
8760 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8761
8762         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
8763           code
8764
8765 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
8766
8767         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
8768           highlighted menu items to match ms
8769
8770 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
8771
8772         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
8773
8774 2006-03-30  Mike Kestner  <mkestner@novell.com>
8775
8776         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
8777         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
8778         go active to account for HotLight to Selected transition.
8779         * MenuItem.cs: add internal Selected prop. Fill out the Status
8780         property by calculating it from item info. Add HotLight,
8781         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
8782
8783 2006-03-30  Mike Kestner  <mkestner@novell.com>
8784
8785         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
8786
8787 2006-03-29  Jackson Harper  <jackson@ximian.com>
8788
8789         * Form.cs: Implement TODO.
8790
8791 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
8792
8793         * PrintPreviewDialog.cs: Implemented missing methods and events; still
8794           missing proper dialog setup in the constructor
8795
8796 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
8797
8798         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
8799         * Control.cs:
8800           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
8801           - Fixed ResetBindings and removed TODO
8802           - Added check for cross-thread calls to get_Handle()
8803           - Added Marshaller attribute for set_Font to satisfy class status
8804         * FontDialog.cs: Removed TODOs that seemed implemented
8805         * UpDownBase.cs: Removed unneeded TODO and Fixme
8806         * MessageBox.cs: Implemented support for Default button and removed TODO
8807         * FileDialog.cs: Removed obsolete TODO
8808         * DomainUpDown.cs: Removed obsolete TODO
8809         * ButtonBase.cs: Removed obsolete TODO
8810         * XplatUIWin32.cs: Removed obsolete TODO
8811         * Form.cs:
8812           - Removed obsolete TODO
8813           - Calling CheckAcceptButton when the acceptbutton is changed to allow
8814             internal status updates
8815           - Making sure the active control is selected when the control is created
8816         * CurrencyManager.cs: Removed obsolete TODO
8817
8818 2006-03-29  Mike Kestner  <mkestner@novell.com>
8819
8820         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
8821         of PrintPreviewDialog and RichTextBox.
8822
8823 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8824
8825         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
8826           DarkDark, Light and LightLight colors for a specific color
8827         * ThemeWin32Classic.cs:
8828           - Use Button drawing code to draw RadioButtons and CheckBoxes with
8829             Appearance = Button 
8830           - Make use of the new ResPool helper CPColor
8831           - Draw ProgressBar and StatusBar with correct 3D borders
8832
8833 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8834
8835         * ColorDialog.cs: Return selected color. Fixes bug #77940.
8836
8837 2006-03-28  Mike Kestner  <mkestner@novell.com>
8838
8839         * ListView.cs: fix Icon layout to plan for scrollbar widths when
8840         calculating col/row counts.
8841
8842 2006-03-28  Mike Kestner  <mkestner@novell.com>
8843
8844         * ColumnHeader.cs:
8845         * ListView.cs:
8846         * ListViewItem.cs:
8847         * Menu.cs: 
8848         switch to explicit interface method implementation for some methods
8849         corcompare identifies as inconsistent with MS.
8850
8851 2006-03-28  Mike Kestner  <mkestner@novell.com>
8852
8853         * MainMenu.cs: 
8854         * Menu.cs:
8855         add a few missing methods from the class status output.
8856
8857 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
8858
8859         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
8860           correct.
8861
8862 2006-03-28  Mike Kestner  <mkestner@novell.com>
8863
8864         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
8865
8866 2006-03-27  Mike Kestner  <mkestner@novell.com>
8867
8868         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
8869         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
8870
8871 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
8872
8873         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
8874
8875 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8876
8877         * ThemeWin32Classic.cs:
8878           - GroupBox: Inserted a little gap between the text and the lines
8879             on the right side
8880           - Made the code in CPDrawBorder3D more readable
8881           - Corrected the drawing location of the up and down arrows in 
8882             CPDrawScrollButton
8883
8884 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8885
8886         * ControlPaint.cs: Corrected line widths in DrawBorder for
8887           ButtonBorderStyle Inset and Outset
8888
8889 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8890
8891         * ThemeWin32Classic.cs:
8892           - Rewrote the totally broken CPDrawBorder3D method. That was
8893             one of the main problems for the terrific ThemeWin32Classic
8894             look
8895           - Updated and corrected Button drawing
8896           - Correct the dimensions of the SizeGrip to match ms ones
8897           - Removed a small drawing glitch in DrawComboBoxEditDecorations
8898         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
8899           Border3DStyle.Sunken to match ms.
8900
8901 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8902
8903         * ThemeWin32Classic.cs: First small part of the "de-uglify
8904           ThemeWin32Classic" effort, SizeGrip
8905
8906 2006-03-24  Jackson Harper  <jackson@ximian.com>
8907
8908         * XplatUIX11.cs: Give a max idle time of one second, this matches
8909         MS and forces an Idle event every second when there are no other
8910         events in the queue.
8911
8912 2006-03-24  Mike Kestner  <mkestner@novell.com>
8913
8914         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
8915         * ListView.Item.cs: fix layout issues with null image lists and images
8916         smaller than checkbox size.
8917         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
8918         mode like MS does.  It's weird, but consistent.  ;-)
8919         Fixes #77890.
8920
8921 2006-03-24  Mike Kestner  <mkestner@novell.com>
8922
8923         * ListView.cs: Scroll wheel support for the item control.  Fixes
8924         #77839.
8925
8926 2006-03-23  Jackson Harper  <jackson@ximian.com>
8927
8928         * ScrollableControl.cs: Special case negative sized areas, not
8929         zero.
8930         * MonthCalendar.cs: Save the rect of the clicked date so we can
8931         use it for invalidation.
8932         - Try to cut down on the number of invalidates
8933         - Invalidate the rect the mouse is over and was over when moving
8934         the mouse, so we get the focus box following the cursor.
8935
8936 2006-03-23  Mike Kestner  <mkestner@novell.com>
8937
8938         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
8939         focus rectangle drawing. Fixes #77835.
8940
8941 2006-03-23  Mike Kestner  <mkestner@novell.com>
8942
8943         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
8944         the if and else if and reverting back to the original == check on the
8945         None conditional.
8946
8947 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8948
8949         * FontDialog.cs: Update the example panel if the selected index of
8950           the fontListBox changes.
8951
8952 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8953
8954         * FileDialog.cs: Make FileDialog remember which directory it was in
8955           last in the same execution.
8956
8957 2006-03-22  Mike Kestner  <mkestner@novell.com>
8958
8959         * FileDialog.cs: make the DropDownMenu on the toolbar display
8960         RadioChecks since they are mutually exclusive and that's what MS does.
8961
8962 2006-03-22  Mike Kestner  <mkestner@novell.com>
8963
8964         * Theme.cs: add Color param to CPDrawMenuGlyph.
8965         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
8966         checks and radio marks and arrows are visible on highlighted items.
8967         * ControlPaint.cs: update to use new Theme signature.
8968
8969 2006-03-22  Mike Kestner  <mkestner@novell.com>
8970
8971         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
8972         is active. Fixes #77870.
8973
8974 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8975
8976         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
8977           to be focused/selected after startup
8978
8979 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8980
8981         * ColorDialog.cs: 
8982           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
8983             CustomColors and ShowHelp properties
8984           - Some internal rewrites to get better results when using the
8985             ColorMatrix
8986
8987 2006-03-22  Mike Kestner  <mkestner@novell.com>
8988
8989         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
8990         HoverSelection.  Fixes #77836.
8991
8992 2006-03-22  Mike Kestner  <mkestner@novell.com>
8993
8994         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
8995         ToggleButtons.  (De)Sensitize the Back button around a stack count of
8996         1, not 0.  Update ButtonSize based on a pixel count of the win32
8997         control.  Adjust the toolbar size/location for new button size.
8998
8999 2006-03-22  Jackson Harper  <jackson@ximian.com>
9000
9001         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
9002         true.
9003         * ScrollBar.cs: When doing increments and decrements we need to
9004         set the Value property so that ValueChanged gets raised. A
9005         possible optimization here would be to make an internal SetValue
9006         that doesn't invalidate immediately.
9007         * ToolTip.cs: Tooltips get added to their container (when
9008         supplied) so they get disposed when the container is disposed.
9009         - Don't create tooltips for String.Empty. This prevents all these
9010         little 2-3 pixel windows from showing up when running nunit-gui
9011         and driving me mad.
9012         * Form.cs: Don't set topmost when setting the owner if the handles
9013         haven't been created yet.  The topmost set will happen when the
9014         handles are created.
9015
9016 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
9017
9018         * XplatUIX11.cs:
9019           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
9020           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
9021             visible (to allow them to recalculate their sizes)
9022
9023 2006-03-21  Mike Kestner  <mkestner@novell.com>
9024
9025         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
9026         methods. Removed a ton of redundant code.  Still not really happy with
9027         the border rendering, but I think that's mainly because of the
9028         ControlDarkDark being black instead of a dark grey. Depending on how 
9029         close we want to be, we might want to revisit those color choices.
9030         Among the new features added during the refactor were DropDownArrow
9031         pressed rendering, Disabled image rendering.  Proper flat appearance
9032         boundary rendering.  Removed the Divider and Wrapping dividers since I
9033         can't figure out any combination of themes and conditions to make the
9034         MS control draw a horizontal line on a toolbar despite what the
9035         Divider property docs indicate.
9036         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
9037         conditions and incorrect layout.  Updated to coding standard.
9038         * ToolBarButton.cs: refactored layout and positioning code from
9039         ToolBar to here.  Invalidate wherever possible instead of forcing
9040         redraws of the whole toolbar. 
9041         (Known remaining issues: explicit ButtonSize smaller than provided
9042         images.)
9043
9044 2006-03-21  Mike Kestner  <mkestner@novell.com>
9045
9046         * ContextMenu.cs (Show): use the position parameter instead of just
9047         showing at the MousePosition.
9048
9049 2006-03-21  Jackson Harper  <jackson@ximian.com>
9050
9051         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
9052         control handle this.
9053         * TreeNodeCollection.cs: If we are clearing the root node we need
9054         to reset top_node so calcs can still happen.
9055         * ThemeWin32Classic.cs: This is a Flags so we need to check
9056         properly.
9057         
9058 2006-03-21  Jackson Harper  <jackson@ximian.com>
9059
9060         * DataGrid.cs: Create columns when the binding context has been
9061         changed.
9062         * X11Structs.cs: Keysyms are uints.
9063         - Add size to fix build.
9064
9065 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
9066
9067         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9068           XplatUIOSX.cs: 
9069           - Added ResetMouseHover method to allow controls to retrigger
9070             hovering if they need it more than once
9071           - Implemented MouseHoverTime and MouseHoverSize properties
9072         * Timer.cs: Start() must reset the interval
9073         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
9074           properties
9075
9076 2006-03-21  Jackson Harper  <jackson@ximian.com>
9077
9078         * X11Keyboard.cs: improved layout detection. Move the nonchar
9079         tables into this file.
9080         * KeyboardLayouts.cs: Move the tables into resource files.
9081
9082 2006-03-21  Mike Kestner  <mkestner@novell.com>
9083
9084         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
9085
9086 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
9087
9088         * Mime.cs: Various speed optimizations. Looking up mime types
9089           is now 2 times faster than before
9090
9091 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
9092
9093         * CreateParams.cs: Added internal menu field
9094         * Control.cs: 
9095           - Switched call order for UpdateBounds; now we always call
9096             the one that also takes ClientSize, and we're calculating the 
9097             client size via driver method in the others. The previous
9098             method of tracking client size by difference wasn't working
9099             for forms where even the starting client size wouldn't match
9100             the overall form size (due to borders) (Part of fix for #77729)
9101           - CreateParams(): Do not use parent.Handle unless the handle is
9102             already created. Causes havoc with Nexxia and throws off our
9103             creation of controls
9104         * XplatUIX11.cs:
9105           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
9106           - Switched handling of ConfigureNotify over to new PerformNCCalc 
9107             method (consolidates code)
9108           - Changed RequestNCRecalc to use new PerformNCCalc method
9109           - Added calls to RequestNCRecalc when menus and borders are changed
9110             to allow app to set NC size. (Part of fix for #77729) This matches
9111             when MS send a WM_NCRECALC on Win32 windows.
9112           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
9113             (Part of fix for #77729). This matches what MS does, they also
9114             send that message when the form is made visible.
9115           - XException.GetMessage: Improved usability of X errors by including
9116             a translation of the window into Hwnd and Control class
9117           - Improved debug info for window creation, reparenting and destruction
9118           - Created helper method WindowIsMapped() [Currently not used]
9119         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
9120         * Form.cs:
9121           - CreateParams: Now setting our menu on the new internal menu field
9122           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
9123             avoid calculating the same property twice
9124         * Hwnd.cs:
9125           - Improved usability of ToString() for debugging purposes
9126           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
9127             determine the height of the menu, instead of just the font. This
9128             required to also create a graphics context and to keep a bmp 
9129             around (for performance reasons)
9130
9131 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
9132
9133         * MenuAPI.cs: Added OnMouseUp method
9134         * Form.cs:
9135           - Now remembering the requested client size, avoids size errors
9136           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
9137             instead of base if the menu is active. This is required due to
9138             control now capturing and releasing on down/up and it would
9139             prematurely release our menu capture
9140
9141 2006-03-17  Jackson Harper  <jackson@ximian.com>
9142
9143         * KeyboardLayouts.cs: Add the czech layouts.
9144
9145 2006-03-16  Jackson Harper  <jackson@ximian.com>
9146
9147         * Control.cs: Use the viewport space when sizing not the controls
9148         client size, so things like ScrollableControl that effect the
9149         viewport size (when scrollbars are added) are computed correctly.
9150         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
9151         of ManagerEntrys.
9152         - Handle creating BindingManagers for null data sources.
9153         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
9154         source, otherwise when rows are added they are added to the 'fake'
9155         datasource and we will crash when trying to set the position in
9156         those rows.
9157         - Use Implicit scrollbars on the datagrid so they arent
9158         selectable.
9159         
9160 2006-03-16  Jackson Harper  <jackson@ximian.com>
9161
9162         * Binding.cs:
9163         * InternalWindowManager.cs:
9164         * MdiWindowManager.cs:
9165         * X11Keyboard.cs: I really want Mike to love me again (fix
9166         compiler warnings).
9167
9168 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
9169
9170         * DataGrid.cs:
9171           - OnMouseDown: Switch to editing mode when clicking on the cell
9172                          even if we're clicking on the cell that's currently 
9173                          selected
9174           - ProcessGridKey: Left/Right now wrap like MS.Net does
9175           - ProcessGridKey: Tab now knows to add a new row when tab is
9176                             pressed in the cell of the last column of the 
9177                             last row
9178           - ProcessGridKey: Enter now adds another row  if pressed in the last
9179                             row and selectes the new row, same column cell
9180           - ProcessGridKey: Home/End navigate columns, not rows, like 
9181                             originally implemented
9182           - Broke ProcessKeyPreview code out into an extra Internal method
9183             so it can be called from the edit code
9184         * DataGridTextBox.cs (ProcessKeyMessage):
9185           - Switched to accept Tab keypresses
9186           - Added F2 handling to allow jumping to the end of the edited cell
9187           - Added logic to allow moving caret left/right inside edited cell
9188             and making the edited cell jump when the caret hits cell borders
9189           - Tab and Enter are now passed to the datagrid after being handled
9190         * TextBoxBase.cs:
9191           - Removed capture code now that Control handles it
9192           - set_SelectionStart now ensures caret is visible
9193
9194 2006-03-16  Jackson Harper  <jackson@ximian.com>
9195
9196         * TrackBar.cs: Debackwards the increment/decrement for handling
9197         mouse clicks on the bar with vertical trackbars.
9198         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
9199         bottom to match MS.
9200
9201 2006-03-16  Mike Kestner  <mkestner@novell.com>
9202
9203         * ListView.cs: make shift/ctrl keyboard and mouse selection 
9204         consistent with the MS control. Fix a bug in
9205         SelectedListViewItemCollection.Clear that was pissing me off for the
9206         better part of a day because the collection was being altered
9207         underneath us as we walked the list.
9208
9209 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
9210
9211         * Control.cs: Not sure how we could miss this so long, but it seems
9212           that MS.Net has Capture set all the way from before calling 
9213           OnMouseDown through sending the mouse events until after
9214           OnMouseUp. This will fix DataGrid's selection being set to end
9215           at the location of the MouseUp.
9216
9217 2006-03-15  Jackson Harper  <jackson@ximian.com>
9218
9219         * BindingContext.cs: Check the binding after its added so that it
9220           can initialize the binding managers and hookup to events.
9221         * Binding.cs: Data members seem to sometimes include rows/cols in
9222           the format Row.Column we now take this into account.
9223           - Hookup to the position changed event so we can update the
9224           control when the position has changed in the data set.
9225         * CurrencyManager.cs: Take into account the row/col naming
9226           convention when creating dataset tables.
9227         * BindingContext.cs: Using a newer better way of storing
9228           datasource/datamember pairs.  Hopefully this better matches MS for
9229           looking up binding managers.
9230
9231
9232 2006-03-15  Jackson Harper  <jackson@ximian.com>
9233
9234         * BindingContext.cs: The currency manager needs the data member
9235         name, if the member is a data set we use the name to find the
9236         correct table.
9237         * CurrencyManager.cs: When creating the list prefer an IList over
9238         an IListSource.
9239         - Attempt to create a DataTable from a DataSet (TODO: might need
9240         some better error checking here, although MS doesn't seem to have much)
9241         - If we have a DataTable create a view and use it as our list.
9242
9243 2006-03-15  Mike Kestner  <mkestner@novell.com>
9244
9245         * ListView.cs: keep a matrix of the icon mode layout to facilitate
9246         keyboard navigation. Support Up/Down/Left/Right selection correctly
9247         for all 4 View modes.
9248         * ListViewItem.cs: add internal row/col fields for icon layouts.
9249
9250 2006-03-15  Jackson Harper  <jackson@ximian.com>
9251
9252         * TabControl.cs: Redraw the tabs when we resize so their newly
9253         calculated sizes are drawn on screen.
9254         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
9255         composite characters.
9256         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
9257         - filter events so that composite characters can be created
9258         patches by peter
9259         * X11Structs.cs: Add XIMProperties enum.
9260
9261 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9262
9263         * Control.cs (BringToFront, SendToBack): Don't use window or handle
9264           unless it's created
9265
9266 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9267
9268         * Control.cs (PerformLayout): We don't need to consider visiblity
9269           for anchoring, only for docking. This fixes 'whacky' alignment
9270           in listbox and other controls that use implicit scrollbars after
9271           the previous PerformLayout patch
9272         * ListBox.cs: Switched to use implicit scrollbars
9273           
9274 2006-03-14  Mike Kestner  <mkestner@novell.com>
9275
9276         * ToolBar.cs: 
9277         * VScrollBar.cs:
9278         - chain up the "new event" overrides to base and use
9279         OnEvent to raise them.  Part of fix for bug #76509.
9280
9281 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
9282
9283         * FileDialog.cs: Do not select an item in the parent directory
9284           on backspace
9285
9286 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9287
9288         * Control.cs (PerformLayout): It would seem that we considered
9289           invisible windows for our layout. Not quite the right thing
9290           to do. Now we don't any longer, thereby fixing bug #76889.
9291
9292 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9293
9294         * Control.cs (CanFocus): I goofed. A control can have focus 
9295           even though it's not selectable. Made it match MS docs.
9296
9297 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9298
9299         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
9300           center by default (fixes #76895)
9301         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
9302           all uses of Border3DSides.All with the explicit ORd together
9303           Left|Right|Top|Bottom because I assume that nobody was aware 
9304           that All also implies a center fill. Most places I checked had
9305           a fill right above.
9306         * ProgressBarStyle.cs: Added
9307
9308 2006-03-13  Mike Kestner  <mkestner@novell.com>
9309
9310         * ListView.cs: fix breakage in drag shadow header positioning 
9311         from Peter's csc compilation fix.
9312
9313 2006-03-13  Mike Kestner  <mkestner@novell.com>
9314
9315         * ListView.cs: fix NRE produced by backspacing twice in a focused
9316         FileDialog.
9317
9318 2006-03-13  Mike Kestner  <mkestner@novell.com>
9319
9320         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
9321
9322 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9323
9324         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
9325           be changed
9326         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
9327           the allowed size before making programmatic size changes
9328
9329 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
9330
9331         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
9332           set, metacity is broken and will still use the emty sizes in 
9333           the struct. (Fix for #77089)
9334
9335 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9336
9337         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
9338           WindowExStyles and marked both enums as Flags
9339         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
9340           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
9341           to match WindowStyles split
9342         * XplatUIX11.cs:
9343           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
9344           - Updated to match WindowStyles split
9345         * XplatUIWin32.cs:
9346           - Fixed FosterParent creation, was using ExStyle on the Style field
9347             (This should help with Popup focus issues)
9348           - Updated to match WindowStyles split
9349
9350 2006-03-13  Jackson Harper  <jackson@ximian.com>
9351
9352         * MdiWindowManager.cs: Use the system menu height. Fixes some
9353         strange sizing issues.
9354
9355 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9356
9357         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
9358         * TextBoxBase.cs:
9359           - Scroll to caret after inserting text (#77672)
9360           - Make scroll range one pixel higher, fixes off-by-one error (and
9361             makes underlines visible on the last line)
9362
9363 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
9364
9365         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
9366           the keyboard state from being stuck with keys in 'pressed' state when
9367           focus is switched away via keyboard
9368         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
9369           reset the keyboard if no X11 KeyUp events are expected to come
9370         * X11Structs.cs: Switched type of Visible to bool to match driver
9371
9372 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9373
9374         * TextControl.cs:
9375           - Switched caret to be just 1 pixel wide, matches MS and looks less
9376             clunky
9377           - Moved caret display 1 pixel down from the top of the control
9378             to improve view
9379           - InsertCharAtCharet: Update the selection start if moving the caret
9380             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
9381           - No longer always creating the caret when the caret methods are
9382             called. Only the actual ShowCaret/HideCaret will do that now
9383           - Only setting caret visible if the owner control has focus
9384           - UpdateView: Added invalidation-shortcut logic for center and right 
9385             aligned text. Previously we'd update all according to the left
9386             logic which caused drawing errors. Also fixed height of invalidated
9387             areas, now properly invalidating the whole area (was off-by-one)
9388           - owner_HandleCreated: Always generate the document when the
9389             handle is created; this ensures that 
9390         * TextBoxBase.cs:
9391           - Fixed situation where caret would disappear under the right
9392             window border, also improved scrolling behaviour on left-
9393             aligned textboxes
9394           - Fixed right-aligned textboxes to have a border to the
9395             right instead of the caret being under the right border
9396         * XplatUIX11.cs:
9397           - Switched from 'nested' to simple visible/not visible tracking 
9398             for caret (part of fix for #77671)
9399           - No longer passing through translated FocusIn/FocusOut messages
9400             since we were notifying too often and the wrong windows. Instead
9401             we just notify our focussed window of receiving or loosing focus
9402         * XplatUIWin32.cs: Switched from 'nested' show/hide 
9403           counting for caret to simple visible yes/no behaviour (part of 
9404           fix for #77671)
9405
9406 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9407
9408         * Mime.cs: Remove debug code...
9409
9410 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9411
9412         * MimeGenerated.cs: Removed
9413         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
9414           and subclasses) from /usr/(local/)share/mime and
9415           $HOME/.local/share/mime.
9416
9417 2006-03-10  Jackson Harper  <jackson@ximian.com>
9418
9419         * MdiWindowManager.cs: Recalc the NC area when a window is
9420         maximized/restored so that the menu area is drawn on forms that
9421         don't have a menu.
9422
9423 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9424
9425         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
9426           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
9427           us to force a WM_NCCALCRESIZE message being sent. This is needed
9428           for MDI maximizing.
9429
9430 2006-03-10  Jackson Harper  <jackson@ximian.com>
9431
9432         * Form.cs: We need to use the ActiveMenu when calculating menu
9433         height.
9434         - Fix nullref when the window manager hasn't been created yet.
9435         * Control.cs: Fix nullref when we try to bring a control to the
9436         front that has no parent.
9437         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
9438         height.
9439         - Add a dummy item to the maximized menu so it always has the
9440         correct height. Otherwise when there are no menus we don't get our
9441         icon and buttons.
9442         
9443
9444 2006-03-10  Jackson Harper  <jackson@ximian.com>
9445
9446         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
9447         stuff.
9448         * Form.cs: Make the window_state internal so the window managers
9449         can track it.
9450         - When an MDI child is maximized let its window manager create the
9451         main menu (so it can add its icon).
9452         - Notify the window managers of state changes
9453         - Let the window manager paint its buttons and handle button
9454         clicks on the menu when it is maximized.
9455         * InternalWindowManager.cs: Move the prev_bounds into the mdi
9456         window manager, since tool windows don't use it, only mdi windows.
9457         - Tell the main form that we don't want it to handle NCPAINT
9458         itself to avoid extra painting.
9459         - Handle clicks on a maximized windows menu.
9460         - Handle window state changes
9461         - Handle minimize/maximize clicks correctly by setting the window state.
9462         * MdiWindowManager.cs: Add an icon menu that (the menu you get
9463         when clicking on the forms icon).
9464         - New method to create a forms maximized menu. This is its normal
9465         menu + an icon.
9466         - Handle window state changes.
9467         - Handle sizing of maximized windows.  Maximized windows are just
9468         drawn bigger then the parent visible area. All controls are still
9469         there, they are just outside the visible area (this matches windows).
9470         * MdiClient.cs: No scrollbars when a child window is maximized.
9471         - Let the children windows figure out how big they should be when
9472         sizing maximized windows.
9473         - Implement a version of ArrangeIconicWindows somewhat similar to
9474         Windows version.  There are some little differences, but I don't
9475         think any app will rely on the layout of minimized mdi windows.
9476
9477 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9478
9479         * Padding.cs: Several fixes to allow compiling with csc 2.0
9480
9481 2006-03-09  Jackson Harper  <jackson@ximian.com>
9482
9483         * Menu.cs:
9484         * MenuItem.cs: Cheap hack so we can add items to the list without
9485         the events being raised.  This allows adding mdi items during
9486         drawing. TODO: Should probably find a better time to add the items.
9487
9488 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9489
9490         * ThemeWin32Classic.cs:
9491           - CheckBox_DrawText: Added logic to not wrap if not enough space
9492             is available (Fix for bug #77727)
9493           - RadioButton_DrawText: Added logic not to wrap if not enough
9494             space is available (Fix for bug #77727). Also removed some
9495             duplicate code, DrawString always drawing the regular text
9496             before hitting the if statement.
9497
9498 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
9499
9500         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
9501
9502 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9503
9504         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
9505         * ContainerControl.cs: Partial implementation of some 2.0 scaling
9506           methods. Moved the new 2.0 properties into alphabetical order with
9507           other properties and added MonoTODO tags
9508
9509 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9510
9511         * AutoScaleMode.cs: Added. Fix build.
9512
9513 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9514
9515         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9516           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
9517           and was requiring premature handle creation for calls from above
9518         * Form.cs, Control.cs: Removed handle arguments from calls to
9519           CalculateClientRect()
9520
9521 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9522
9523         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
9524           drag_column.column_rect is MarshalByRef and can't be used that way
9525
9526 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9527
9528         * AxHost.cs: Added deserialization constructor for 
9529           AxHost+State (fixes 77743)
9530
9531 2006-03-09  Mike Kestner  <mkestner@novell.com>
9532
9533         * ListView.cs: 
9534         - Added column drag reordering for details view.
9535         - fixed behavior when mouse is dragged off column and
9536         AllowColumnReorder is false.
9537         * ColumnHeader.cs: clone the format too in Clone.
9538         * Theme.cs: add DrawListViewHeaderDragDetails method.
9539         * ThemeWin32Classic.cs:
9540         - impl new method for drawing drag column shadows and targets.
9541         - support column offset for details mode in DrawListViewItem.
9542
9543 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9544
9545         * TextControl.cs: Reset the char_count when the document is cleared
9546           (Fixes bug reported on mono-winforms mailing list)
9547
9548 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9549
9550         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
9551           of calling base we simply process the key ourselves, since both
9552           DefWindowProc and the handled method would set m.Result. 
9553           (Fixes #77732)
9554
9555 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9556
9557         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
9558           method also moves the window; instead implemented a copy of
9559           Control.ScaleCore (Part of fix for #77456)
9560         * TextBoxBase.cs: 
9561           - Created new CreateGraphicsInternal method to allow providing
9562             a graphics context when no handle is created without triggering
9563             handle creation. (Part of fix for #77456)
9564           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9565         * TextControl.cs: 
9566           - Switched Constructor to require TextBoxBase instead of Control (to
9567             allow uncast access to CreateGraphicsInternal)
9568           - Safeguarded use of owner.Handle property. No longer accessing it
9569             unless the handle is already created.
9570           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9571           - Now triggering a recalc when owning control becomes visible
9572         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
9573           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
9574           premature handle creation (Part of fix for #77456)
9575         * Control.cs:
9576           - We now only destroy our double-buffering buffers when the
9577             control is resized or disposed, but not when visibility
9578             changes. (The code even re-created them twice every time)
9579           - Now requiring a redraw of the buffer on visibility changes
9580             (fixes bug 77654 part 2)
9581           - Not passing OnParentVisibleChanged up unless the control
9582             is visible
9583           - CanFocus: Fixed to match MS documentation
9584           - Focus: Fixed to return actual focus state and to check if
9585             setting focus is legal before setting it
9586
9587 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
9588
9589         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
9590           when to draw focus rectangle by looking at parent focus and
9591           selected state instead. This fixes TabPages on Linux sometimes
9592           having none or multiple focus rectangles.
9593         * XplatUIX11.cs (SetFocus): 
9594           - Don't set the focus if the same window already has focus
9595           - Use SendMessage instead of PostMessage (like it's Win32
9596             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
9597             to match MS behaviour
9598         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
9599           are not selectable.
9600
9601 2006-03-07  Jackson Harper  <jackson@ximian.com>
9602
9603         * PictureBox.cs: Revert line I accidently committed last week.
9604
9605 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
9606
9607         * Control.cs: 
9608           - Added new IsRecreating and ParentIsRecreating properties to
9609             allow testing if RecreateHandle has been called on ourselves
9610             or one of our parents
9611           - WndProc(WM_DESTROY): If our control handle is being recreated
9612             we immediately need to create the handle when receiving the
9613             destroy, that way our child windows find a valid parent handle
9614             when they themselves are being recreated upon WM_DESTROY receipt
9615             (fix for bug #77654 part 1)
9616         * XplatUIX11.cs:
9617           - DestroyWindow: WM_DESTROY must be sent to our own window before
9618             notifying any child windows. MS documents that child windows
9619             are still valid when WM_DESTROY is received. (Control now relies on
9620             this behaviour)
9621           - Added some fine-grain debug options
9622
9623 2006-03-06  Jackson Harper  <jackson@ximian.com>
9624
9625         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
9626         box and base calculations off this.
9627         * MdiChildContext.cs:
9628         * MdiWindowManager.cs: Don't need to ensure scrollbars here
9629         anymore.
9630         
9631 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
9632
9633         * Splitter.cs: In situations where the affected control is added
9634           to the parent's control list after the splitter, we would not
9635           populate affected. Now we try populating it on mousedown, if
9636           it's not already set, and force it to be re-set whenever our
9637           parent changes.
9638
9639 2006-03-03  Matt Hargett  <matt@use.net>
9640
9641         * Control.cs: implement Control.Padding
9642         * Padding.cs: -Padding.All returns -1 when constructing with the
9643         implicit default ctor
9644         -Padding.ToString() matches MS.NET
9645         * ContainerControl.cs: implement
9646         ContainerControl.AutoScaleDimensions
9647         * ListControl.cs: implement ListControl.FormattingEnabled
9648         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
9649         * ButtonBase.cs:
9650         * TabPage.cs: Implement UseVisualStyleBackColor.
9651         * PictureBox.cs: Implement PictureBox.InitialImage.
9652
9653 2006-03-03  Mike Kestner  <mkestner@novell.com>
9654
9655         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
9656         event declarations to proxy to base event.
9657         * ListViewItem.cs: update to use ItemControl.
9658         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
9659         * ThemeWin32Classic.cs: update to new ListView theme API and fix
9660         column header label rendering for 0 width columns.
9661
9662 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
9663
9664         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
9665           that causes the control to be created. Fixes #77476.
9666
9667 2006-03-02  Jackson Harper  <jackson@ximian.com>
9668
9669         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
9670         expose_pending.
9671
9672 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
9673
9674         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
9675           passed in for the EventArgs (fixes #77690)
9676
9677 2006-03-01  Jackson Harper  <jackson@ximian.com>
9678
9679         * ScrollBar.cs: Refresh afterbeing resized.
9680
9681 2006-02-28  Mike Kestner  <mkestner@novell.com>
9682
9683         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
9684         Clean up a tracker compile warning.
9685         * MenuItem.cs: add internal PerformPopup method.
9686         [Fixes #77457]
9687
9688 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9689
9690         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
9691           implicit expose) when the text is set to null
9692
9693 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
9694
9695         * RichTextBox.cs (FlushText): When newline is true, we always
9696           need to split the line, even if no text is on it and we may
9697           never eat newlines. (Fixes #77669)
9698
9699 2006-02-28  Mike Kestner  <mkestner@novell.com>
9700
9701         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
9702         and set Selected instead.
9703         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
9704         collections.
9705
9706 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9707
9708         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
9709
9710 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
9711
9712         * FontDialog.cs:
9713           - Got rid of the panel. All controls are now directly added to
9714             the dialog form
9715           - It is now possible to set a font with the Font property
9716           - MinSize and MaxSize property do now what they should
9717           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
9718           - Searching and selecting a font with the font textbox works now,
9719             the same applies to the style and size textbox
9720           - Draw the correct 3D border in the example panel
9721           - Fixed a little mem leak (unused fonts didn't get disposed)
9722           - Many other internal updates/rewrites...
9723           - Fix typo
9724
9725 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9726
9727         * TextControl.cs: 
9728           - InsertRTFFromStream: Added 'number of characters inserted' argument
9729           - set_SelectedRTF: Now using the number of characters to calculate
9730             the new location for the selection and cursor (x/y cannot be used
9731             due to potentially already wrapped text)
9732
9733 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
9734
9735         * TextControl.cs: Added property and implemented means to allow 
9736           disabling recalculation of a document (can be used to speed up
9737           multiple inserts and is needed to make RTF inserts predictable, see
9738           bug #77659)
9739         * RichTextBox.cs: Using the new NoRecalc property of Document to
9740           keep x/y insert locations predictable. Also makes it faster inserting
9741           large chunks of RTF
9742
9743 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9744
9745         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
9746           it's easier for a child control to handle the other messages without
9747           having to duplicate the special functionality
9748         * TextBoxBase.cs
9749           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
9750             code to handle processing the key ourselves, in order to get 
9751             access to the result of KeyEventArgs.Handled. We now only call 
9752             ProcessKey if they key hasn't been handled already. Fixes #77526.
9753           - set_Text: If null or empty string is given, just clear the 
9754             document. Fixes part of #77526
9755
9756 2006-02-27  Jackson Harper  <jackson@ximian.com>
9757
9758         * SizeGrip.cs: Paint the background color before painting the grip
9759         so things look right.
9760         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
9761
9762 2006-02-27  Mike Kestner  <mkestner@novell.com>
9763
9764         * ListView.cs:
9765           - Restructure layout and invalidation model to remove a ton of
9766           flicker from the control and speed up performance in general.
9767           - Add manual column resize, flickers like crazy, but I already have
9768           some ideas on how I'll fix that. (#76822)
9769           - Merge the three Icon-based views into a single layout method.
9770           - Move item selection interaction logic from the item since 
9771           interaction with the collections is more appropriate to the view.
9772           - Deselection on non-item clicks.
9773         * ListViewItem.cs:
9774           - Encapsulate most of the layout. Add some internal props to trigger
9775           layout.  Move to a model where Items invalidate themselves instead
9776           of just invalidating the whole control every time something changes.
9777           - Invalidate on Text/Caption changes.
9778           - switch to an offset based layout model to avoid having to absolute
9779           position every element on item moves.
9780           - correct checkbox layout to conform to MS layout.
9781         * ThemeWin32Classic.cs:
9782           - refactor some column header drawing code.
9783           - fix string justification for column headers (#76821)
9784           - make SmallIcon labels top justified for compat with MS impl.
9785         * ThemeClearlooks.cs:
9786           - adjust to new ListViewItem internal checkbox bounds api.
9787
9788 2006-02-27  Jackson Harper  <jackson@ximian.com>
9789
9790         * Control.cs:  Change where implicit controls fall in the zorder.
9791         They are now on top of all children.
9792         - Synced AddImplicit code with Add
9793         - Removed unused enumerator.
9794         * SizeGrip.cs: Remove the TODO as its been TODONE.
9795
9796 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
9797
9798         * TextControl.cs(Insert): Combine the last lines unless the insertion
9799           string ends with \n\n, otherwise we leave one line too many (Fixes
9800           something I noticed with the testapp for #77526; the bug itself was
9801           already fixed in the previous checkin)
9802
9803 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
9804
9805         * RichTextBox.cs:
9806           - SelectionColor and SelectionFont methods no longer set absolute
9807             styles. Instead, the keep font or color respectively (This 
9808             resolves a long-standing FIXME in the code)
9809           - When flushing RTF text, the insert code now considers text trailing
9810             behind the insertion point (Fixes the bug where when replacing
9811             the selected text via SelectedRTF the remainder of the line behind 
9812             the selection would stay on the first insertion line)
9813         * TextBoxBase.cs:
9814           - AppendText now updates the selection points after inserting text
9815           - AppendText now ensures that the last tag (sometimes 0-length) of
9816             the document is used for the style information (Fixes part of 
9817             bug #77220)
9818         * TextControl.cs:
9819           - Created new FontDefiniton class to allow describing partial style
9820             changes
9821           - StreamLine() now takes a lines argument, to allow it to decide
9822             whether an encountered zero-length tag is the last in the document
9823             (which must be kept to not loose the font/color contained in it,
9824             for later appends)
9825           - Created Combine() and Split() methods for Marker structs, to 
9826             support marker updates due to reformatted documents (soft line
9827             wraps)
9828           - Implemented Document.CaretTag setter
9829           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
9830             of the last line (Not the cause, but also exposed by bug #77220)
9831           - Added LineTag argument to InsertString method, to allow callers
9832             to force a certain tag to be used (required to force use of the
9833             trailing zero-length tag of a document)
9834           - Now updating markers in Combine(), to avoid stale tag markers
9835           - Added some method descriptions to aid maintenance
9836           - Implemented new FormatText concept, allowing additive/subtractive
9837             formatting by only specifying the components that are to be 
9838             changed. This was needed for resolving the RTB.SelectedColor/
9839             RTB.SelectedFont fixmes
9840           - Added Break() support method to allow breaking up linetags (used
9841             for partial formatting)
9842           - Added GenerateTextFormat() method. It is used for partial 
9843             formatting and allows to generate a full font/color from given
9844             attributes and an existing tag.
9845
9846 2006-02-26  Jackson Harper  <jackson@ximian.com>
9847
9848         * XplatUIX11.cs:  Use the correct caption height.
9849         - Translate hittest coordinates to screen coords to match MS.
9850         * XplatUIWin32.cs: When we create MDI windows we need to reset
9851         some of the style flags, so we get a nice blank window, and can
9852         draw all the decorations ourselves.
9853         - Set a clipping rectangle on the non client paint event, the
9854         window manager drawing code needs one.
9855         * Form.cs: The window manager needs to know when the window state
9856         has been updated.
9857         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
9858         don't need to factor in border and title sizes in these
9859         methods. TODO: Remove the args and fix the call points.
9860         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
9861         properly.
9862         - Let the driver set the cursors.
9863         - Improve active window handling
9864         - Correct sizes for title bars and buttons.
9865         - Match MS drawing better
9866         * MdiWindowManager.cs: We don't need to handle border style
9867         updates specially anymore.
9868         - Check for scrollbars when windows are done moving
9869         - Handle Active properly.
9870         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
9871         correctly. I am spewing the exception though, so we don't hide the
9872         bugs.
9873         
9874 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
9875
9876         * DataGridViewRowPostPaintEventArgs.cs,
9877           DataGridViewCellPaintingEventArgs.cs,
9878           DataGridViewRowCollection.cs,
9879           DataGridViewRowPrePaintEventArgs.cs,
9880           DataGridViewCell.cs: Clear a few warnings and implement a few
9881           exceptions that should be thrown.
9882
9883 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
9884
9885         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
9886           'inheriting' our parent's (non-default) cursor. (Part of
9887            the fix for #77479)
9888
9889 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
9890
9891         * XplatUIX11.cs: Fixed cast to make csc happy
9892
9893 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
9894
9895         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
9896           it's for the client area (part of fix for #77479 and needed
9897           for MDI window cursor handling)
9898         * XplatUIX11.cs
9899           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
9900             the appropriate default cursors and also passing the message
9901             up the parent chain 
9902           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
9903             for non-client areas
9904
9905 2006-02-15  Jackson Harper  <jackson@ximian.com>
9906
9907         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
9908         is a real MDI window
9909
9910 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
9911
9912         * X11DesktopColors.cs: Instead of checking the desktop session
9913           string for "KDE" check if it starts with "KDE"
9914
9915 2006-02-10  Jackson Harper  <jackson@ximian.com>
9916
9917         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
9918         systems).
9919
9920 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9921
9922         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
9923           errors
9924         * ColorDialog.cs:
9925           - Got rid of the panel. All controls are now directly added to
9926             the dialog form
9927           - Changed to mono coding style
9928
9929 2006-02-10  Jackson Harper  <jackson@ximian.com>
9930
9931         * InternalWindowManager.cs: We don't need the set visibility to
9932         false hack anymore now that peter has written beautiful shutdown
9933         code.
9934
9935 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
9936
9937         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
9938           where already explicitly destroyed
9939
9940 2006-02-10  Jackson Harper  <jackson@ximian.com>
9941
9942         * MdiClient.cs: Handle the case where windows are too high or to
9943         the left and we need scrollbars.
9944
9945 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9946
9947         * MimeIcon.cs: Added some icons
9948         * FileDialog.cs:
9949           - Fixed bug #77477
9950           - Got rid of the panel. All controls are now directly added to
9951             the dialog form
9952           - Changed to mono coding style
9953           - On Linux "My Computer" and "My Network" will now show some
9954             more usefull information. A new class, MasterMount, gathers
9955             this information from /proc/mount. Updated MWFFileView to make
9956             use of this information
9957           - Fixed a bug that caused FileDialog to crash when
9958             ".recently_used" file had a zero size
9959           - FilterIndex does now what it should
9960           - Some Refactoring
9961         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
9962             FileDialog changes
9963
9964 2006-02-09  Jackson Harper  <jackson@ximian.com>
9965
9966         * ComboBox.cs: Don't touch if null.
9967
9968 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
9969
9970         * Cursor.cs: 64bit safeness fix
9971         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
9972
9973 2006-02-09  Jackson Harper  <jackson@ximian.com>
9974
9975         * Form.cs: If a form is made into an MDI form update the styles so
9976         all the props can get set correctly.
9977         - Kill the mdi_container when we dont need it anymore.
9978         * InternalWindowManager.cs: Add missing NOT
9979
9980 2006-02-08  Jackson Harper  <jackson@ximian.com>
9981
9982         * InternalWindowManager.cs: Respek clipping when drawing MDi
9983         decorations.
9984
9985 2006-02-08  Jackson Harper  <jackson@ximian.com>
9986
9987         * Hwnd.cs: Add bits to track non client expose events.
9988         * XplatUIX11.cs: Track non client expose events on the hwnd. This
9989         gives us a proper invalid rect and will allow for some nice
9990         optimizations with NC client drawing
9991         - MDI windows are children windows, so move their style handling
9992         into the child window block.
9993         * InternalWindowManager.cs: Remove a state reset that was
9994         getting invoked at the wrong time. Fixes managed windows getting
9995         into a 'stuck' captured state.
9996
9997 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9998
9999         * TextControl.cs (Document.ctor): Now initializing 
10000           selection_anchor. Fixes #77493
10001
10002 2006-02-07  Jackson Harper  <jackson@ximian.com>
10003
10004         * TrackBar.cs: The increment/decrements were backwards.
10005
10006 2006-02-07  Mike Kestner  <mkestner@novell.com>
10007
10008         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
10009         to the instance itself.
10010
10011 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
10012
10013         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
10014           on ulongs and pointers, the size differs between 32bit and 64bit
10015           systems. 
10016
10017 2006-02-07  Mike Kestner  <mkestner@novell.com>
10018
10019         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
10020         for 64 bit platforms to work around a metacity bug. 
10021
10022 2006-02-07  Jackson Harper  <jackson@ximian.com>
10023
10024         * TrackBar.cs: Process the input keys we need, and hookup to
10025         KeyDown instead of using WndProc, so we get key messages.
10026
10027 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
10028
10029         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
10030           machine we're on. 
10031         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
10032           we need to translate the XdndVersion atoms array before sending it
10033
10034 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
10035
10036         * XplatUIX11.cs: 
10037           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
10038             number of bits for the property, not the number of bytes. The
10039             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
10040             but would not crash since it specified 8 bits instead of 4 bits)
10041           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
10042             defined as XID -> long in the C headers)
10043           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
10044             references since those are now IntPtr to begin with
10045           - Switched all Atom.XXX 'int' casts to IntPtr casts
10046           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
10047           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
10048           - Added XChangeActivePointerGrab DllImport (for X11DnD)
10049         * X11Structs.cs:
10050           - Changed 'int' type for Atoms in XEvent structures to IntPtr
10051           - Changed atom in HoverStruct to be IntPtr
10052         * X11DnD.cs:
10053           - Removed local DllImports, switched code to use those from XplatUIX11
10054           - Removed/fixed casts related to the switch of Atom to be a IntPtr
10055
10056 2006-02-06  Mike Kestner  <mkestner@novell.com>
10057
10058         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
10059         method signatures in the import region.  There may still be some
10060         lingering struct marshaling issues, as I didn't drill down into those.
10061         Yet.
10062
10063 2006-02-06  Jackson Harper  <jackson@ximian.com>
10064
10065         * ComboBox.cs: Dont manually set the top_item, this is computed
10066         when the scrollbar position is set.
10067
10068 2006-02-06  Mike Kestner  <mkestner@novell.com>
10069
10070         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
10071         startup crashes on amd64.  There's other fixes needed.  All pinvoke
10072         usage of Atom needs to be mapped to IntPtr for example.  And there are
10073         likely other int/long issues to be addressed.
10074
10075 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
10076
10077         * FileDialog.cs: One more...
10078
10079 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10080
10081         * FileDialog.cs: Next try
10082
10083 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10084
10085         * FileDialog.cs: First part of fix for #77464
10086
10087 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
10088
10089         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
10090           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
10091           AcceptButton border drawing.
10092
10093 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
10094
10095         * Form.cs: Moved positioning of form after auto scaling is applied,
10096           otherwise it would possibly use wrong form size.
10097
10098 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
10099
10100         * Control.cs (RecreateHandle): No need to re-create any child
10101           controls, the child windows will get destroyed automatically by
10102           the windowing system or driver, and re-created when the handle
10103           is being accessed the first time. Fixes #77456
10104         * Form.cs: No longer setting the form to closing if the handle is 
10105           being recreated. This seems like the right thing to do, don't
10106           have a bug or testcase for this, though.
10107
10108 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10109
10110         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
10111           controls to avoid unwanted side effects
10112
10113 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
10114
10115         * Control.cs: 
10116           - ScaleCore needs to scale the bounds, not the ClientSize of the 
10117             control. Fixes #77416.
10118           - DefaultSize is 0,0 for control
10119         * TextBoxBase.cs: 
10120           - DefaultSize is 100, 20
10121           - SetBoundsCore: Now enforcing the height, no matter if the provided
10122             height is more or less than the preferred one, as long as AutoSize
10123             is on
10124         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
10125
10126 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
10127
10128         * Control.cs:
10129           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
10130             call unless both performLayout is true *and* we have a pending
10131             layout change
10132           - ResumeLayout: MS does not completely nest Suspend and Resume,
10133             they bottom out at 0, fixed our code to match that.
10134           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
10135             SetBoundsCore, we were updating even when we shouldn't. This fixes
10136             swf-anchors mis-anchoring when resizing the app fast and lots.
10137           - UpdateDistances: Now only setting the left and top distance if 
10138             we have a parent and are not suspended, this is based on
10139             a suggestion by Don Edvaldson in bug #77355.
10140           - OnVisibleChanged: Fixed logic when to create the control. We may
10141             not create the control if we have no parent or if it's not visible;
10142             switched to using Visible property instead of is_visible field 
10143             since the property also considers parent states. This fixes a bug
10144             when starting Paint.Net
10145
10146 2006-02-02  Jackson Harper  <jackson@ximian.com>
10147
10148         * Form.cs: If the forms handle hasn't been created yet don't call
10149         into xplatui to make it top most, just set the topmost flag on the
10150         form in CreateParams
10151         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
10152
10153 2006-02-01  Jackson Harper  <jackson@ximian.com>
10154
10155         * ScrollableControl.cs: Refactored the Recalculate method a
10156         little, this wasn't handling all the variants of bottom and right
10157         bars needed to be added and added/removed based on their
10158         counterparts being added/removed (which changes the drawable
10159         size). Also we special case client widths and heights of 0 and
10160         don't add the scrollbar for those.
10161
10162 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
10163
10164         * XplatUIX11.cs: 
10165           - Added method to get AbsoluteGeometry(); currently unused, but might
10166             be used in the future, if we try again to figure out toplevel
10167             coordinates with some more crappy window managers
10168           - Added FrameExtents() method to retrieve the WM set decoration size
10169           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
10170             to deal with at least KDE, FVWM and metacity (Fixes #77092)
10171         * Hwnd.cs: 
10172           - Added whacky_wm tracking var for metacity
10173           - Added logic to have default menu height if the actual menu height
10174             has not yet been calculated (part of fix for #77426)
10175         * Form.cs: Keep track whether client size has been set and re-set 
10176           it if a menu is added/removed afterwards (Fixes #77426)
10177
10178 2006-01-31  Jackson Harper  <jackson@ximian.com>
10179
10180         * Control.cs: When a new Site is set on the component attempt to
10181         pull the AmbientProperties from it.
10182
10183 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
10184
10185         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
10186           in the background of the owning form. Fixes #77332
10187
10188 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10189
10190         * MimeIcon.cs: Fix for #77409
10191
10192 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10193
10194         * XplatUIX11GTK.cs: Initial import
10195
10196 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
10197
10198         * FixedSizeTextBox: fixes class signature
10199
10200 2006-01-30  Jackson Harper  <jackson@ximian.com>
10201
10202         * FixedSizeTextBox.cs: New internal class that represents a
10203         textBox that will not be scaled.
10204         * TreeView.cs:
10205         * ComboBox.cs:
10206         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
10207         standard TextBox.
10208                 
10209 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
10210
10211         * XplatUIX11.cs: Retrieve default screen number instead of
10212           assuming 0. Attempted fix for #77318
10213
10214 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
10215
10216         * XplatUIWin32.cs: 
10217           - GetWindowPos: When a window is parented by FosterParent, use 
10218             the desktop instead of FosterParent as the base to get coordinates
10219           - CreateWindow: Don't make FosterParent the parent window for Popups
10220             if we don't want a taskbar entry, Popups automatically don't get one
10221         * Hwnd.cs: Need to call remove to actually remove the key from the
10222           hash table
10223
10224 2006-01-30  Mike Kestner  <mkestner@novell.com>
10225
10226         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
10227
10228 2006-01-30  Jackson Harper  <jackson@ximian.com>
10229
10230         * TreeView.cs:
10231         * TreeNode.cs: Raise events no matter how the treenode is
10232         checked. Patch by Don Edvalson.
10233
10234 2006-01-30  Jackson Harper  <jackson@ximian.com>
10235
10236         * TreeNode.cs: Signature fix.
10237
10238 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
10239
10240         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
10241
10242 2006-01-20  Mike Kestner  <mkestner@novell.com>
10243
10244         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
10245         event forwarding when menus are active.
10246         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
10247         Most of the patch is pdb's with a little rework.
10248
10249 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10250
10251         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
10252           Removed GetMenuDC and ReleaseMenuDC methods; replaced
10253           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
10254         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
10255         * InternalWindowManager.cs: Added use of PaintEventStart/End to
10256           handling of WM_NCPAINT message, now passing the PaintEventArgs to
10257           the PaintWindowDecorations method
10258         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
10259         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
10260         * MenuAPI.cs: Made tracker window invisible
10261         * XplatUIWin32.cs:
10262           - Removed GetMenuDC and ReleaseMenuDC methods
10263           - Implemented the client=false path for PaintEventStart and
10264             PaintEventEnd
10265
10266 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10267
10268         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
10269         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
10270           styles
10271         * Form.cs: 
10272           - MaximizeBox, MinimizeBox: Recreate the handle when setting
10273             the style
10274           - CreateParams: Reworked the styles to match MS look'n'feel,
10275             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
10276             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
10277
10278 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10279
10280         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
10281           window is not mapped, since otherwise every form that's being 
10282           created is considered minimized, which is wrong.
10283         * Form.cs: Catching the exception and returning our internal value
10284           instead
10285
10286 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10287
10288         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
10289           SetWindowMinMax() to have means to tell the driver about the minimum,
10290           maximum and maximized state window sizes. (Part of the fix for #76485)
10291         * Form.cs:
10292           - Implemented tracking of minimum and maximum window size, now calling
10293             new SetWindowMinMax() driver method to tell the driver (Part of the
10294             fix for #76485)
10295           - Finished handling of WM_GETMINMAXINFO method, now setting all values
10296             (Completes fix for #76485)
10297           - Calling new SetWindowMinMax driver method when the handle for a 
10298             form is created, to make sure the driver knows about it even if
10299             the values have been set before the window was created
10300           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
10301             to avoid messing up our anchoring calculations (partial fix
10302             for #77355)
10303         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
10304         * XplatUIX11.cs:
10305           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
10306           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
10307             (and presumably other freedesktop.org compliant WMs). Left the
10308             assumption unmapped=minimized, needed for SetVisible to work.
10309           - Now setting the window state when creating windows
10310           - Fixed SetVisible to consider/set the window state when mapping
10311             a Form. We cannot set the state before it's mapped, and we cannot
10312             use Form.WindowState once it's mapped (since it would ask the
10313             driver and get 'normal'. Therefore, we grab the state before
10314             mapping, map, and then set state.
10315           - Implmemented SetWindowMinMax method; Metacity does not seem to
10316             honor the ZoomHints, though.
10317         * XplatUIWin32.cs:
10318           - Removed MINMAXINFO (moved to XplatUIStructs)
10319           - Added SetWindowMinMax stub (on Win32 the only way to set that
10320             information is in response to the WM_GETMINMAXINFO message, which
10321             is handled in Form.cs)
10322           - Added logic to SetVisible to set the proper window state when a 
10323             form is made visible (fixes #75720)
10324
10325 2006-01-26  Jackson Harper  <jackson@ximian.com>
10326
10327         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
10328         same way we handle them with Invoke.
10329
10330 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
10331
10332         * Form.cs:
10333           - Added tracking of window state so CreateParams can return
10334             the appropriate style
10335           - Moved setting of WS_CAPTION style in CreateParams to allow
10336             styles without caption
10337         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
10338           control if the TextBox property is accessed. Fixes #77345
10339         * Control.cs:
10340           - get_Created: now uses is_disposed and is_created to determine
10341             return value (suggested by Jackson)
10342           - CreateHandle: No longer exits if the handle is being recreated
10343           - RecreateHandle: If the handle is not yet created call the 
10344             appropriate method to create either control or handle. If the
10345             control is already created CreateHandle will simply exit instead
10346             of just creating the handle
10347         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
10348           now SendMessage WM_DESTROY directly to the control when DestroyWindow
10349           is called.
10350         * XplatUIX11.cs: 
10351           - When DestroyWindow is called, instead of waiting for the 
10352             DestroyNotification from X11, we directly post it to the WndProc
10353             and immediately dispose the hwnd object.
10354             Same applies to DestroyChildWindows, and this obsoletes the
10355             expose_pending tracking. Contrary to Win32 behaviour we destroy our
10356             child windows before our own, to avoid X11 errors.
10357           - Removed the direct sending of WM_PAINT on UpdateWindow
10358         * XplatUIWin32.cs:
10359           - Reworked DoEvents and GetMessage to allow access to internal queue
10360             even when trying non-blocking access to the queue.  Fixes #77335. 
10361             Based on a patch suggestion by Don Edvalson. The new private
10362             GetMessage can now also be used as a backend for a PeekMessage
10363             frontend version.
10364         * XplatUI.cs: Improved debug output for CreateWindow
10365
10366 2006-01-25  Jackson Harper  <jackson@ximian.com>
10367
10368         * Help.cs: Allow param to be null. Patch by Don Edvalson.
10369
10370 2006-01-24  Jackson Harper  <jackson@ximian.com>
10371
10372         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
10373         when we have a MaxDropItems lower then the selected index.
10374
10375 2006-01-24  Jackson Harper  <jackson@ximian.com>
10376
10377         * Control.cs: Don't allow selection of non visible controls, allow
10378         selection of controls without parents.
10379
10380 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10381
10382         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
10383         * DataGridDrawingLogic.cs: Add editing row only when is necessary
10384
10385 2006-01-23  Jackson Harper  <jackson@ximian.com>
10386
10387         * UpDownBase.cs: Make the textbox handle all the selection and
10388         tabbing. This fixes tabing to updown controls.
10389
10390 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10391
10392         * TextBoxBase.cs: fixes exception thown the object was null
10393
10394 2006-01-23  Jackson Harper  <jackson@ximian.com>
10395
10396         * ButtonBase.cs: Just use the base CreateParams. They set
10397         visibility and enabled correctly.
10398         * ComboBox.cs:
10399         * TrackBar.cs:
10400         * MonthCalendar.cs: Lets let the base set as much of the
10401         createparams as possible so we don't have duplicate code all over
10402         the place.
10403
10404 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
10405
10406         * ThemeGtk.cs: Added TrackBar and some experimental code to
10407           get double buffering back
10408
10409 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
10410
10411         * DataGrid.cs: Allows row number set internally higher than the last
10412         when creating a new row. Restores the editing functionality.
10413
10414 2006-01-20  Mike Kestner  <mkestner@novell.com>
10415
10416         * MimeIcon.cs: delay Image creation until the icons are accessed
10417         instead of creating 190 scaled images on GnomeHandler startup.
10418
10419 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
10420
10421         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
10422           first call base before processing the event. Fixes #77279
10423
10424 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
10425
10426         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
10427           that the stride for the GDI bitmap would match the stride of
10428           a DIB or a Cursor.
10429
10430 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
10431
10432         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
10433
10434 2006-01-19  Jackson Harper  <jackson@ximian.com>
10435
10436         * ComboBox.cs: Hookup the text controls keydown event so we get
10437         those when the text control has the focus.
10438
10439 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10440
10441         * Label.cs: Now using the base events instead of defining new ones;
10442           this allows us to just call the base properties without having to
10443           duplicate all base property logic 
10444
10445 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10446
10447         * Label.cs: A label by default is not a tabstop (Fixes one of our
10448           failing nunit tests)
10449
10450 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10451
10452         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
10453         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
10454
10455 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10456
10457         * Cursor.cs: Reimplemented creating cursor bitmaps without using
10458           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
10459           This fixes #77218
10460         * XplatUIWin32.cs: 
10461           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
10462             constructor creates images that can't be saved. Part of the fix
10463             for #76103
10464           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
10465           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
10466             bug fix for handling window state in forms properly)
10467
10468 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10469
10470         * ThemeGtk.cs: Simplify ScrollBar drawing
10471
10472 2006-01-18  Jackson Harper  <jackson@ximian.com>
10473
10474         * Splitter.cs: Set the default dock style for the splitter control
10475         in the constructor.
10476
10477 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10478
10479         * ThemeGtk.cs: Corrected StateType and ShadowType for
10480           gtk_paint_box
10481
10482 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10483
10484         * Control.cs: Make use of Theme.DoubleBufferingSupported
10485         * ThemeGtk.cs:
10486           - Added drawing for flat style buttons
10487           - Added ScrollBar drawing
10488
10489 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10490
10491         * ThemeClearlooks.cs: Removed some unneeded code.
10492         * ThemeGtk.cs: First part of ThemeGtk enhancements.
10493
10494 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10495
10496         * LinkLabel.cs: We need to update the hover drawing when
10497           leaving the control as well.
10498
10499 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
10500
10501         * DataGrid.cs: Clicking on non empty areas in the columns
10502            area was giving an exception
10503
10504 2006-01-17  Jackson Harper  <jackson@ximian.com>
10505
10506         * ThemeWin32Classic.cs:
10507         * ListView.cs: Do not draw/clip the headers when the header style
10508         is None.
10509
10510 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10511
10512         * DataGrid.cs: Fixes 77260
10513         
10514 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10515
10516         * DataGrid.cs: Clicking on a column on a empty grid was giving
10517           an exception
10518
10519 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10520
10521         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
10522           or any keypress will crash the grid.
10523
10524 2006-01-17  Mike Kestner  <mkestner@novell.com>
10525
10526         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
10527         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
10528         invisible/previously-visible items.
10529         [Fixes #76909]
10530
10531 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
10532
10533         * ThemeClearlooks.cs:
10534         - Added CL_Draw_Button method; now other theme controls that are 
10535           not derived from button or do not have a button can draw buttons
10536           too
10537         - Updated ComboBox drawing
10538         - Beautified RadioButton drawing
10539         - Corrected drawing of bottom and left tabs
10540         - Beautified DateTimePicker and MonthCalendar
10541         - Added CPDrawButton and CPDrawRadioButton
10542
10543 2006-01-16  Jackson Harper  <jackson@ximian.com>
10544
10545         * ComboBox.cs: Set the initial value of the scrollbar to the
10546         current index. Reduce the numbers of refreshs and IndexOfs called.
10547
10548 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
10549
10550         * FileDialog.cs: When the file listview is focused hitting the
10551           backspace key moves the fileview to the parent directory
10552
10553 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10554
10555         * Form.cs: 
10556           - Added RecreateHandle call when changing taskbar visibility to 
10557             trigger reparenting in Win32 driver (Fixes #75719)
10558           - If a window has minimize or maximize buttons, it cannot have
10559             a help button
10560         * XplatUIWin32.cs:
10561           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
10562             the toplevel form with FosterParent (A toolwindow not on the
10563             taskbar) (Fixes #75719)
10564           - Made FosterParent a toolwindow
10565
10566 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10567
10568         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
10569
10570 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10571
10572         * ToolTip.cs: If SetToolTip is called from a control and the mouse
10573           is currently over that control, make sure that tooltip_window.Text
10574           gets updated
10575
10576 2006-01-13  Mike Kestner  <mkestner@novell.com>
10577
10578         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
10579
10580 2006-01-13  Jackson Harper  <jackson@ximian.com>
10581
10582         * TreeView.cs: On MS GetNodeAt never actually factors in the X
10583         value passed.  Also redraw the selected node when we recieve
10584         focus, so tabbing between trees works correctly.
10585
10586 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10587
10588         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
10589           ~/.gconf/%gconf-tree.xml, so use
10590           .gconf/desktop/gnome/interface/%gconf.xml
10591
10592 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10593
10594         * TextControl.cs: Draw text in gray if control is disabled
10595
10596 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10597
10598         * TreeView.cs: Draw the focus rectangle outside the highlight, to
10599           make sure it's always visible. Fixes #76680.
10600
10601 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10602
10603         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
10604
10605 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
10606
10607         * PageSetupDialog.cs: Added.
10608         * PrintDialog.cs: Attributes.
10609         * PrintPreviewControl.cs: Updates.
10610         * PrintPreviewDialog.cs: Updates.
10611         
10612 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10613
10614         * Control.cs: Undid my selection check fix, since it's not needed
10615         * TextBoxBase.cs:
10616           - Now considering the presence of hscroll/vscroll when sizing
10617             vscroll/hscroll respectively. Fixed bug #77077
10618           - Added Left/Up/Down/Right to IsInputKey list to prevent
10619             ContainerControl from stealing them. This fixes what I broke
10620             with my last checkin.
10621
10622 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
10623
10624         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
10625           I finally understand how the property can be set without a setter :-)
10626
10627 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10628
10629         * Application.cs:
10630           - Switched RunLoop to use static Message.Create to create a 
10631             Message object
10632           - Added PreProcessMessage call in runloop for keyboard events; this
10633             is part of the fix for #77219, I overlooked this originally in the
10634             MSDN doc for PreProcessMessage
10635         * Control.cs:
10636           - Removed call to PreProcessMessage from handling of keyboard 
10637             messages; it's supposed to be done in the message pump
10638           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
10639             per MSDN documentation.
10640           - IsInputChar: All chars are input chars by default; removed the 
10641             parent calling chain, MS does not document that
10642           - PreProcessMessage: If IsInputChar is true, we want to return false
10643             to allow dispatching of the message
10644           - When selecting the next control, now also check that we're not
10645             selecting ourselves again and therefore return a false positive.
10646         * TextBoxBase.cs:
10647           - Tried to match return values for IsInputKey and ProcessDialogKey
10648             to what MS returns; moved processing of our special keys outside
10649             ProcessDialogKey since MS does not seem to return true on those.
10650           - Moved code that previously was in ProcessDialogKey into new private
10651             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
10652           - Reworked handling of WM_CHAR to not have to duplicate code from
10653             Control.cs anymore, instead we simply call down to base.
10654            
10655 2006-01-12  Jackson Harper  <jackson@ximian.com>
10656
10657         * ComboBox.cs: We always need to refresh the text area when
10658         EndUpdate is called. Fixes the combobox in the file dialog.
10659         * Control.cs: Don't create the creator_thread until the controls
10660         handle is created.  Also in InvokeRequired we check if the
10661         creator_thread is null. This gives the effect of InvokeRequired
10662         returning true if the controls handle is not created yet, and
10663         matches MS.
10664
10665 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10666
10667         * XplatUI.cs:
10668           - Added StartLoop() driver method. This is used to allow drivers to
10669             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
10670             loop for a particular thread
10671           - Added EndLoop() driver method. This is called once the message
10672             pump for the thread is shut down
10673           - Added SupportsTransparency method to allow the driver to indicate
10674             opacity support for windows
10675         * Form.cs:
10676           - Removed TODO attribute, completed AllowTransparency property
10677           - Added documented logic to Opacity
10678         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
10679           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
10680           versions of CompatibleTextRendering
10681         * X11Structs.cs: Added opacity atom to our atom enumeration
10682         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
10683           of a form might be set before it's reparented by the WM, and we need
10684           the opacity value without calling up to Form)
10685         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
10686           SupportsTransparency() driver methods
10687         * Application.cs: Now calling StartLoop and EndLoop driver methods
10688         * XplatUIX11.cs:
10689           - Added opacity atom registration
10690           - Added StartLoop()/EndLoop() methods. They're empty right now but
10691             will need to get implemented when we switch to a per-thread queue
10692           - Implemented SupportsTransparency() method
10693           - Implemented SetWindowTransparency() method
10694           - Added support for setting the opacity value when a window is
10695             reparented (since the opacity needs to be set on the WM frame)
10696         * XplatUIOSX.cs, XplatUIWin32.cs:
10697           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
10698
10699 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10700
10701         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
10702
10703 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10704
10705         * FileDialog.cs: Added ToolTip for MWFFileView
10706         * MimeIcon.cs: Rewrote GnomeHandler.
10707           - Get currently used gnome icon theme from
10708             ($HOME)/.gconf/%gconf-tree.xml
10709           - Make use of inherited icon themes
10710           - Support SVG icon themes like Tango via librsvg
10711
10712 2006-01-12  Miguel de Icaza  <miguel@novell.com>
10713
10714         Revert's Jackson's revert which broke 2.0 builds.   Fix both
10715         builds. 
10716         
10717         * Application.cs: Move the use_compatible_text_rendering outside
10718         the NET_2_0 define.  If we ever need to use the
10719         use_compatible_text_rendering on the individual controls they will
10720         access the variable from the common shared code paths.
10721
10722 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10723
10724         * XplatUI.cs:
10725           - Added more granular debug options
10726           - Added method to print both window text and id
10727           - Switched debug output to use new Window() debug method
10728           - Added IsEnabled() driver method
10729           - Added EnableWindow() driver method
10730         * Form.cs:
10731           - Removed end_modal; no longer needed, new loop handles termination
10732             via 'closing' variable
10733           - If form is modal, setting DialogResult will now initiate loop
10734             termination via 'closing' variable
10735           - Added support for is_enabled/WS_DISABLED to CreateParams
10736           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
10737             does all the work
10738           - Removed code that's now in RunLoop from ShowDialog()
10739           - Added various documented sanity checks to ShowDialog()
10740           - Added handling of WM_DESTROY message; we set 'closing' on getting
10741             the message to indicate the message pump to terminate
10742           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
10743             send by the Application.ExitThread method. (We send the message
10744             to destroy the window after all other events have been
10745             processed through the queue, instead of destroying the handle 
10746             directly)
10747           - Moved code from Close() method to WM_CLOSE handler; added logic
10748             to only send close-related events if the form is not displayed
10749             modal
10750         * Splitter.cs (..ctor): Fixed typo in resource name
10751         * Control.cs:
10752           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
10753             brush now
10754           - set_Cursor: Now only setting calling into XplatUI if the handle for
10755             the control is already created; this avoids implict handle creation
10756             or crashes if it's not created
10757           - set_Enabled: Now setting the enabled state via the new driver method
10758             instead of just tracking it
10759           - CreateParams: Added logic to set WS_DISABLED based on enabled state
10760           - CreateControl: Reordered event firing and method calls to more
10761             closely fire events in the order MS does. Now setting the
10762             enabled state in the driver when creating the control.
10763           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
10764             match MS order
10765         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
10766           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
10767         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
10768         * Hwnd.cs:
10769           - Added tracking of window enabled state (get_Enabled/set_Enabled)
10770           - Added EnabledHwnd property to easily allow a driver to find the
10771             handle of the first enabled window in the parent chain (this is
10772             used by drivers to pass up input events of disabled windows)
10773         * XplatUIDriver.cs: Added IsEnabled() method
10774         * Application.cs:
10775           - Removed crude and obsolete exiting tracking variable
10776           - Removed internal ModalRun(); replaced by RunLoop()
10777           - Implemented private CloseForms() method to allow closing all 
10778             windows owned by a particular (or all) threads
10779           - Exit() now properly closes all windows without forcing the message
10780             pump to quit
10781           - Removed obsolete InternalExit() method
10782           - Changed Run() methods to use new RunLoop() message pump
10783           - Implemented new RunLoop() method for both modal and non-modal forms
10784         * CommonDialog.cs:
10785           - get_CreateParams: Added setting of WS_DISABLED
10786           - Simplified ShowDialog(); now all the work is done in RunLoop(),
10787             invoked via Form.ShowDialog()
10788         * NativeWindow.cs: We don't remove the window from the collection when
10789           the handle is destroyed; there might still be messages for it in the
10790           queue (mainly the resulting WM_DESTROY); instead it will be removed
10791           when Control calls InvalidateHandle in the WM_DESTROY handler
10792         * XplatUIX11.cs:
10793           - CreateWindow: Added logic to handle the WS_DISABLED window style
10794           - EnableWindow: Implemented based on Hwnd.Enabled
10795           - GetMessage: Reset PostQuitState so the method can be called again
10796           - Implemented support for disabled windows (passing messages to the
10797             first enabled parent) in handling all input messages
10798           - Added optimizations for handling Expose events
10799           - Implemeted new driver method IsEnabled()
10800           - Now always resetting paint pending tracking vars when we start paint
10801           - Re-implemented UpdateWindow via just sending a WM_PAINT message
10802         * XplatUIOSX.cs: Added IsEnabled method stub
10803         * XplatUIWin32.cs: Implemented new IsEnabled() method
10804
10805 2006-01-11  Jackson Harper  <jackson@ximian.com>
10806
10807         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10808         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
10809         variables a little.
10810         * ColorDialog.cs: Clear out the old form before adding the new
10811         panel.  
10812
10813 2006-01-11  Jackson Harper  <jackson@ximian.com>
10814
10815         * X11Dnd.cs: Make sure to add all the text formats when adding
10816         strings to the data object.
10817         * TreeNodeCollection.cs: When adding to a sorted tree we need to
10818         do some redrawing too.  Also change the UpdateNode to an
10819         UpdateBelow so the newly added node gets painted.
10820         
10821 2006-01-11  Miguel de Icaza  <miguel@novell.com>
10822
10823         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10824         LinkLabel.cs, PropertyGrid.cs: Implement the
10825         UseCompatibleTextRendering property for 2.x
10826
10827         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
10828
10829 2006-01-11  Jackson Harper  <jackson@ximian.com>
10830
10831         * TreeView.cs: Use the property for setting the selected node so
10832         the correct events get raised.
10833         * TreeNode.cs: Update the tree when the fore/back colours of a
10834         node are set.
10835
10836 2006-01-10  Jackson Harper  <jackson@ximian.com>
10837
10838         * TreeView.cs: Allow setting SelectedNode to null.
10839
10840 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10841
10842         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
10843
10844 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10845
10846         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
10847
10848 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10849
10850         * PrintDialog.cs: Added attributes and set default property values.
10851
10852 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10853
10854         * PrintControllerWithStatusDialog.cs: 
10855         Added PrintControllerWithStatusDialog.
10856
10857 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10858
10859         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
10860         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
10861
10862 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10863
10864         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
10865
10866 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10867
10868         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
10869         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
10870
10871 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10872
10873         * MimeIcon.cs: Added internal class SVGUtil.
10874
10875 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10876
10877         * FileDialog.cs: Don't crash if there are two files with the
10878           same name but different locations.
10879
10880 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
10881
10882         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
10883         dates across multiple month grids. Used to not highlight entire 
10884         month, but does now.
10885         
10886 2006-01-06  Jackson Harper  <jackson@ximian.com>
10887
10888         * MonthCalendar.cs: Removed DoEvents call to prevent a running
10889         message loop. Change timer intervals to numbers that seem more
10890         natural.
10891
10892 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
10893
10894         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
10895           object for location info since screen object is now implemented.
10896
10897 2006-01-05  Jackson Harper  <jackson@ximian.com>
10898
10899         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
10900         * AsyncMethodResult.cs: We no longer use a WeakReference for the
10901         AsyncMethodResult, this is because we ALWAYS want the
10902         ManualResetEvent to get set.
10903         * Control.cs: When disposing use an async invoke to call shutdown
10904         code, so that thigns don't block on the finalizer thread.  Also
10905         check if we even have a message loop before trying to send
10906         messages, if we don't then don't bother sending messages.
10907         - No more weak references for async methods
10908         * XplatUIDriver.cs: No more weak references for async methods.
10909
10910 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10911
10912         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
10913           returns two FontFamily with the same name
10914
10915 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
10916
10917         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
10918           drawing disabled text. Instead using the ColorGrayText color
10919
10920 2006-01-04  Jackson Harper  <jackson@ximian.com>
10921
10922         * TreeNode.cs: redraw the node when its image index is changed.
10923
10924 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
10925
10926         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
10927           time I checked there are no others like it.
10928
10929 2006-01-04  Jackson Harper  <jackson@ximian.com>
10930
10931         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
10932         this gives the behavoir I was looking for.
10933         * Control.cs: Special case Invoking EventHandlers, this matches MS
10934         and fixes part of bug #76326.
10935
10936 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10937
10938         * ThemeClearlooks.cs, FileDialog.cs:
10939           - Reflect the latest Theme class changes
10940           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
10941             with DateTime
10942             
10943 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10944
10945         * Theme.cs: Cache UI resource images and resize them if needed
10946
10947 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10948
10949         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
10950           is called. This fixes the crash in Nexxia when setting the font
10951           attributes in the chat. [However, RTF needs a look-over to make sure
10952           that all SelectionXXX methods handle the special case that selection
10953           is empty and therefore the change must be applied to all text starting
10954           at the cursor/selection start]
10955
10956 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
10957
10958         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10959           XplatUIOSX.cs: Added SendMessage and PostMessage methods
10960         * X11Keyboard.cs: Switched to new way of calling PostMessage
10961
10962 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10963
10964         * Theme.cs: Added theme interface for images to allow the theme to
10965           control what images are used for things like FileDialog, MessageBox
10966           icons, etc.
10967         * MessageBox.cs: Now uses the new Theme icon/image interfaces
10968
10969 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
10970
10971         * FileDialog.cs:
10972           - Removed some dead code
10973           - Opening a recently used file does work now
10974           - Small UI enhancements
10975           - Refactoring
10976
10977 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10978
10979         * FileDialog.cs: Forgot too add __MonoCS__
10980
10981 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10982
10983         * FileDialog.cs: We are able to read recently used files now let's
10984           go on and write them.
10985
10986 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
10987
10988         * FileDialog.cs: Breathe some life into "last open"/"recently used"
10989           button
10990         * MimeIcon.cs: Do a check for the top level media type also
10991
10992 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10993
10994         * ThemeClearlooks.cs:
10995           - Added CPDrawStringDisabled
10996           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
10997             some chars if the text doesn't fit into text_rect
10998           - DrawListViewItem: If View = View.LargeIcon center the image;
10999             rewrote the drawing of ListViewItem.Text if View = 
11000             View.LargeIcon
11001
11002 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
11003
11004         * MimeIcon.cs: Use default KDE icon theme if there is no
11005           "48x48" directory for the current icon theme, fixes #77114
11006         * Mime.cs: Disable not working and actually not used code. 
11007         * ThemeWin32Classic.cs:
11008           - Replace "new SolidBrush" in GetControlBackBrush and
11009             GetControlForeBrush with ResPool.GetSolidBrush
11010           - Changed DrawListViewItem from private to protected virtual
11011         * FileDialog.cs:
11012           - Added form.MaximizeBox = true
11013           - Don't throw an exception if there is a broken symbolic link
11014
11015 2005-12-23  Jackson Harper  <jackson@ximian.com>
11016
11017         * TabControl.cs: Give the panels focus, keyboard navigation is
11018         fixed so this works correctly now.
11019         - We need these key events also.
11020         * ToolBar.cs: Remove some of the poor mans double buffering.
11021         
11022 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
11023
11024         * ComboBox.cs: The internal TextBox now returns the focus.
11025
11026 2005-12-23  Jackson Harper  <jackson@ximian.com>
11027
11028         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
11029
11030 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11031
11032         * Control.cs: Removed debug code
11033         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
11034           implicit children
11035
11036 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
11037
11038         * Control.cs: When creating the control, update the Z-order after
11039           all it's children are created, too. (Fixes nexxia not showing
11040           picturebox bug)
11041
11042 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
11043
11044         * Control.cs: Do not update the anchoring distances if layout is
11045           suspended, instead do it once layout is resumed
11046
11047 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
11048
11049         * Control.cs: 
11050           - After many hours of debugging, for both Jackson and
11051             myself, it turns out that it helps to set the parent of a control
11052             if you want to actually see it onscreen. In the spirit of that
11053             discovery, we're now setting the parent of the control and
11054             it's children when the control's handle is created. This fix
11055             will make Lutz Roeder's Reflector run happily. 
11056           - now just creating the handle instead of the whole control when
11057             getting a graphics context for the control.
11058
11059 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11060
11061         * ScrollableControl.cs: When calculating the canvas, don't consider
11062           the scrollbar widths. Instead, predict if horizontal scrollbar
11063           will affect canvas when deciding on vertical display and vice versa.
11064
11065 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
11066
11067         * RichTextBox.cs: Set default RTF font for documents that don't
11068           have a font table (Fixes #77076)
11069
11070 2005-12-22  Jackson Harper  <jackson@ximian.com>
11071
11072         * TextBoxBase.cs: It's difficult to do, but you can have an empty
11073         clipboard. This prevents a NullRef in that case.
11074         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
11075         clipboard. PRIMARY is for the currently selected text only. (We
11076         should implement PRIMARY at some point.
11077
11078 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11079
11080         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
11081           a Unicode function with a structure that was defined in Ansi way.
11082           This fixes #76942.
11083
11084 2005-12-21  Jackson Harper  <jackson@ximian.com>
11085
11086         * StatusBar.cs: Statusbar handles its fore/back colours on it's
11087         on. Because thats how it rolls. (and this avoids it using ambient
11088         colours).
11089         * ThemeWin32Classic.cs: Use the proper back color for filling.
11090         * Menu.cs: Use the system menu bar color for drawing menu
11091         bars. Using the window back color will bring ambient colours into
11092         the picture.
11093
11094 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
11095
11096         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
11097           Bitmaps were created and not disposed.
11098
11099 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11100
11101         * Control.cs (CreateControl): Don't do anything if the control is
11102           already created, otherwise we'd fire the OnCreated event more than
11103           once
11104
11105 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11106
11107         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
11108           will always match. Instead return -1. Fixes #76464.
11109
11110 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
11111
11112         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
11113           neither the beginning nor the end of the line (Fixes bug #76479)
11114
11115 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
11116
11117         * Control.cs:
11118           - ControlNativeWindow.ControlFromHandle(): Now handling situation
11119             where handle is invalid
11120           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
11121             instead of slower linear search
11122         * NativeWindow.cs: Don't remove the window from the hashtable until
11123           after the driver has destroyed it (since the driver might use
11124           Control.FromHandle to lookup the control object
11125         * Hwnd.cs: Added DestroyPending property to track if a window is 
11126           already destroyed as far as the driver is concerned and only hasn't
11127           yet notified the control
11128         * XplatUIX11.cs:
11129           - Activate(): Check if the window is still valid before using the 
11130             handle
11131           - Implemented DestroyChildWindow() method to mark child windows as
11132             destroyed when a window is destroyed. This prevents situations 
11133             where we might call an X method based on queued events for a
11134             window that already has been destroyed but we haven't yet pulled
11135             the destroy method from the queue.
11136           - Added a call to the new DestroyChildWindow() method to the drivers
11137             DestroyWindow code. Also now marking the destroyed window itself
11138             as pending
11139
11140 2005-12-20  Jackson Harper  <jackson@ximian.com>
11141
11142         * StatusBar.cs:
11143         * StatusBarPanel.cs: Don't calculate panel sizes on draw
11144         anymore. Just do them when needed, also track the rects of panels
11145         so that we can optimize refreshing more in the future.
11146
11147 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
11148
11149         * ColorDialog.cs: Fixed focus drawing in small color controls
11150
11151 2005-12-19  Jackson Harper  <jackson@ximian.com>
11152
11153         * InternalWindowManager.cs:
11154         * MdiWindowManager.cs: Cleanup some coordinate system changes so
11155         moving windows works properly.
11156
11157 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
11158
11159         * Control.cs: 
11160           - Removed call to InitLayout() from SetBoundsCore(); doc says
11161             it's only called when a control is added to a container
11162           - Split InitLayout logic, moved to separate UpdateDistances() method
11163             since we need to perform those calculations more often than just
11164             when adding the control to a container. (Needed to fix #77022)
11165           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
11166           - Reduced the OnBindingContextChanged events count, don't send them
11167             unless the control is created, we still aren't totally matching
11168             MS, but I can't quite figure out some of their rules
11169
11170 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11171
11172         * ThemeClearlooks.cs: Corrected distance between ProgressBar
11173           stripes
11174
11175 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11176
11177         * ThemeClearlooks.cs:
11178           - Updated ProgressBar drawing
11179           - Corrected drawing of ScrollBars and scroll buttons
11180           - Some temporary fixes for minor pixel artefacts
11181
11182 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
11183
11184         * Control.cs:
11185           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
11186             cause events to be sent in the same order as MS does.
11187           - Added ChangeParent() method to trigger various OnXXXChanged events
11188             that need to be fired when a parent changes (This is a reworking
11189             of the patch from r54254, with the X11 errors fixed)
11190           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
11191             since on MS we get OnLayoutChanged events when calling Clear()
11192           - Changed Enabled property to consider parent state as well, if a
11193             parent is not enabled, the control will not be either
11194           - Changed Parent property to simply call Controls.Add() since that
11195             now does all the work required, this way we avoid code duplication
11196           - Threw in a few OnBindingsContextChanged calls to try and match
11197             when MS sends them. We seem to send a few too many, though.
11198           - Added call to CreateControl when adding the control to a parent.
11199             We were never calling CreateControl. Still needs some work, in
11200             some places we treat HandleCreated and ControlCreated as equal, 
11201             which is wrong
11202           - Removed obsolete commented out code from UpdateZOrder()
11203
11204 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11205
11206         * ThemeClearlooks.cs: Updated TrackBar drawing.
11207
11208 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11209
11210         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
11211
11212 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11213
11214         * FileDialog.cs: Add the Help button and the open readonly
11215           checkbox only if needed
11216
11217 2005-12-16  Jackson Harper  <jackson@ximian.com>
11218
11219         * Control.cs: Make sure we have an active menu before trying to
11220         process commands on it. Prevents menu-less forms from crashing
11221         when Alt is pressed.
11222         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
11223         Dieter Bremes.
11224         * RichTextBox.cs: Expand statement to help out gmcs and fix the
11225         2.0 build.
11226
11227 2005-12-16  Jackson Harper  <jackson@ximian.com>
11228
11229         * InternalWindowManager.cs: Don't translate tool windows screen
11230         coordinates. This fixes windows 'bouncing' around when being moved.
11231
11232 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11233
11234         * TextBoxBase.cs:
11235           - MaxLength now treats 2^31-1 equal to unlimited length (this is
11236             not quite MS compatible, MS uses that number only for single line
11237             and 2^32-1 for multi-line, but I figure it won't hurt keeping
11238             the limit at 2GB)
11239           - Now enforcing the MaxLength limit when entering characters
11240           - Added argument to internal Paste() method to track if it's called
11241             from programatically or via keyboard, since keyboard driven pastes
11242             need to enforce max-length
11243           - Added logic to Paste to only paste as many chars as MaxLength 
11244             allows
11245         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
11246         * TextControl.cs:
11247           - Added Length property to return number of characters in document
11248           - Added private CharCount property which only tracks actual chars
11249             in the document (no linefeeds) and fires event when CharCount
11250             changes
11251           - Added tracking of character count to all methods that alter it
11252           - Added LengthChanged event to allow applications to subscribe
11253             to any changes to the document
11254
11255 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11256
11257         * TextBox.cs: 
11258           - Removed local password_char field (moved to TextBoxBase)
11259           - Now setting the document's password var when password is
11260             set
11261         * TextBoxBase.cs:
11262           - Added password_char field (needed here so MultiLine can
11263             access it)
11264           - Added logic to MultiLine property setter to set the document's
11265             variable when password display is allowed
11266           - Removed debug code and made some debug code conditional
11267         * TextControl.cs:
11268           - Added RecalculatePasswordLine() method to handle special password
11269             char only lines
11270           - Added PasswordChar property, also added related tracking vars
11271           - Draw() method now uses local text var for grabbing text to draw,
11272             this var is set to line.text unless we're doing password display,
11273             then it is set to the pre-generated all-password-chars line
11274           - Added calling RecalculatePasswordLine() method for password lines
11275
11276 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11277
11278         * Hwnd.cs: 
11279           - Added Reparented property to allow tracking of Window Manager
11280             reparenting actions (which affect X/Y calculations of toplevel 
11281             windows)
11282           - Made ToString() print window handles in hex
11283         * XplatUIX11.cs:
11284           - AddConfigureNotify(): Now uses reparented state off Hwnd to
11285             determine if X/Y needs offsetting
11286           - AddConfigureNotify(): Fixed offset calculations
11287           - Now adds ReparentNotify messages into the queue
11288           - Now processes ReparentNotify messages and causes a 
11289             WM_WINDOWPOSCHANGED message to be sent upstream if a window
11290             is reparented (as most likely it's X/Y coordinates are changed
11291             due to that)
11292
11293 2005-12-14  Jackson Harper  <jackson@ximian.com>
11294
11295         * XplatUIX11.cs: Tool windows still need to respek focus.
11296
11297 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11298
11299         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
11300           have a working release
11301
11302 2005-12-13  Jackson Harper  <jackson@ximian.com>
11303
11304         * Form.cs: Update styles after setting the border style regardless
11305         of whether or not the window is using a window manager.
11306
11307 2005-12-13  Jackson Harper  <jackson@ximian.com>
11308
11309         * Form.cs: We now hook into an internal window manager instead of just an
11310         MDI subsystem, this is so we can have properly behaving tool windows.
11311         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
11312         * InternalWindowManager.cs: New internal class that acts as a
11313         window manager for tool windows and as a base for mdi windows.
11314         * MdiWindowManager.cs: New class that acts as a window manager for
11315         mdi windows.
11316
11317 2005-12-12  Jackson Harper  <jackson@ximian.com>
11318
11319         * Control.cs: Updates so we match behavoir for for implicit
11320         controls. Fixes explosions in MDI.
11321
11322 2005-12-12  Jackson Harper  <jackson@ximian.com>
11323
11324         * Control.cs: Implement Invalidate (Region).
11325
11326 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
11327
11328         * Control.cs: 
11329           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
11330             the same events as MS does. MS fires events for each property 
11331             except, for unknown reasons, Cursor, when the control is reparented. 
11332             I can't seem to totally match add/remove since MS also fires some 
11333             VisibleChanged events, which makes no sense. Consolidated the
11334             parenting code into a separate method so it can be called from
11335             both Add and Remove. set_Parent no longer needs any special logic
11336             as it calls the parent's add method which implicitly fires
11337             all events
11338           - Removed some obsolete code and debug output
11339           - Enabled state is inherited from parents, if this is enabled
11340
11341 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
11342
11343         * Form.cs: Removed commented out code
11344
11345 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
11346
11347         * Control.cs:
11348           - Added internal version of Invoke, with additional argument 
11349             indicating if we're calling it from a Dispose() handler. That
11350             way we can avoid BeginInvoke throwing an exception if we're
11351             calling for an already destroyed window.
11352           - Added a dispose argument to BeginInvokeInternal, and made the
11353             check if a valid window handle chain exists conditional on
11354             it not being a dispose call
11355           - Removed code in DestroyHandle to destroy our children. Since we
11356             now handle the WM_DESTROY message we will catch all our children
11357             being destroyed.
11358           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
11359         * Form.cs:
11360           - Added a field to track the application context of the form.
11361           - No need to set closing variable as response to WM_CLOSE, instead
11362             we destroy the window. We also call PostQuitMessage if the form
11363             has an application context (which makes it the main app form,
11364             which, when closed terminates the app)
11365         * XplatUI.cs:
11366           - Dropped Exit() method, it's naming was confusing
11367           - Added PostQuitMessage() which causes GetMessage to return false
11368             once the message queue is empty
11369         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
11370           PostQuitMessage()
11371         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
11372           no longer a valid XplatUI method, but left it in since it's used
11373           internally. Added empty PostQuitMessage() method.
11374         * MenuAPI.cs: Replaced call to Exit() with call to
11375           PostQuitMessage, even though this is probably no longer needed.
11376         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
11377         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
11378         * Application.cs:
11379           - Replaced call to XplatUI.Exit() with PostQuitMessage()
11380           - Removed old debug code that would call XplatUI for exception
11381             display, enabled standard exception handling (Still not enabled
11382             though, until NativeWindow's ExternalExceptionHandler define
11383             is removed
11384         * NativeWindow.cs:
11385           - Added internal method to allow control to update NativeWindow
11386             after a window has been destroyed
11387           - Added handling of already destroyed windows when calling i
11388             DestroyWindow
11389           - Added removal of handle from list on ReleaseHandle
11390         * XplatUIX11.cs:
11391           - Dropped GetMessageResult var and related code
11392           - Added PostQuitState to field to track if PostQuitMessage has been
11393             called
11394           - Dropped Exit() method
11395           - Added PostQuitMessage() method
11396           - GetMessage now will return false if PostQuitState is set and no
11397             more messages are in the queue.
11398           - Expose handler will no longer generate WM_PAINT messages if we are
11399             in PostQuitState since it's very likely any windows have already
11400             been destroyed, and since Hwnd won't get updated until we have
11401             processed the DestroyNotify we'd be causing X errors.
11402         
11403 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11404
11405         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
11406           Thanks to Mike for pointing out the err of my ways.
11407
11408 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11409
11410         * Control.cs(PreProcessMessage): Moved menu handling back, but
11411           after all other key handling, to match MS (who handles Menu in
11412           DefWndProc)
11413         * Menu.cs (WndProc): Removed my brainfart
11414
11415 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11416
11417         * Control.cs(PreProcessMessage): Removed special menu handling 
11418         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
11419
11420 2005-12-07  Mike Kestner  <mkestner@novell.com>
11421
11422         * Control.cs : special case SYSKEYUP so that we can adjust keynav
11423         state according in tracker.
11424         * Menu.cs : promote tracker field to base class and provide a tracker
11425         lookup capability.  Add/Remove shortcuts dynamically if the top menu
11426         has a tracker. Unparent items that are removed from the collection.
11427         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
11428         * Theme*.cs: add always_show_hotkeys field to support configurability
11429         of mnemonic display.  win32 doesn't show mnemonics until Alt is
11430         pressed.
11431
11432 2005-12-07  Jackson Harper  <jackson@ximian.com>
11433
11434         * MdiChildContext.cs: Use Control.ResetCursor.
11435         * Control.cs: ResetCursor needs to set the property so that the
11436         correct XplatUI call gets made.
11437
11438 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11439
11440         * Control.cs: More fixes to make our key events match MS. We
11441           were not setting the modifier state on KeyData, and we were
11442           not generating any events when Alt was pressed with a key
11443           since handling of WM_SYSxxx was missing for the OnKey methods.
11444
11445 2005-12-07  Jackson Harper  <jackson@ximian.com>
11446
11447         * MdiChildContext.cs: reenable the sizing code.
11448         - When the mouse leaves a window reset its cursor.
11449
11450 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11451
11452         * ThemeClearlooks.cs: Reflect latest Hwnd changes
11453
11454 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11455
11456         * Hwnd.cs: Now using the theme 3d bordersize to calculate
11457           widths of Fixed3D borders
11458
11459 2005-12-07  Jackson Harper  <jackson@ximian.com>
11460
11461         * MdiClient.cs: Fix warnings. Earn Mike's love.
11462
11463 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11464
11465         * ThemeClearlooks.cs:
11466           - Adjusted mouse over button color
11467           - Added first parts of CheckBox drawing
11468           - Added correct color for selected text background
11469           - Fixed ComboBox drawing
11470           - Added CPDrawBorder3D and CPDrawBorder
11471
11472 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11473
11474         * XplatUIX11.cs: Added call to XBell for AudibleAlert
11475
11476 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
11477
11478         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11479           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
11480           alert users via sound. We could add an enum arg with different
11481           types of alerts in the future
11482
11483 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11484
11485         * Control.cs: Fix behaviour problems pointed out by Mike
11486
11487 2005-12-05  Mike Kestner  <mkestner@novell.com>
11488
11489         * StatusBarPanel.cs: add Invalidate method and hook it into all the
11490         prop setters.  Calls parent.Refresh for now, but could be maybe be
11491         optimized with an internal method on StatusBar at some point.
11492         [Fixes #76513]
11493
11494 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
11495
11496         * RichTextBox.cs: Implemented get_SelectionColor
11497
11498 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
11499
11500         * ThemeClearlooks.cs:
11501           - Removed dead code
11502           - Draw black button border only if button is Form.AcceptButton
11503           - Draw correct button color for pressed RadioButton if the mouse 
11504             has entered the button
11505           - Updated ProgressBar drawing!
11506           - Updated CPDrawSizeGrip drawing
11507           - Updated StatusBarPanel drawing
11508
11509 2005-12-05  Mike Kestner  <mkestner@novell.com>
11510
11511         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
11512         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
11513
11514 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
11515
11516         * ThemeClearlooks.cs: Initial check-in, activate with
11517           export MONO_THEME=clearlooks
11518         * ThemeEngine.cs: Added ThemeClearlooks
11519
11520 2005-12-03  Mike Kestner  <mkestner@novell.com>
11521
11522         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
11523         [Fixes #76897]
11524
11525 2005-12-02  Jackson Harper  <jackson@ximian.com>
11526
11527         * Form.cs: If the child form has no menu the default main menu is
11528         used as the active menu.
11529
11530 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
11531
11532         * ListBox.cs: Check if any items exist before trying to resolve 
11533           coordinates into items
11534
11535 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11536
11537         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
11538           as the second color for the background hatch
11539
11540 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11541
11542         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
11543         * RichTextBox.cs: FormatText position arguments are 1-based, now making
11544           sure that what we pass to FormatText is always 1-based. Fixes #76885
11545
11546 2005-11-29  Miguel de Icaza  <miguel@novell.com>
11547
11548         * NumericUpDown.cs (EndInit): When we are done initializing,
11549         reflect any updates on the UI.
11550
11551 2005-12-02  Jackson Harper  <jackson@ximian.com>
11552
11553         * ImplicitHScrollBar.cs:
11554         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
11555         their container controls.
11556         * TreeView.cs: Use the new implicit scrollbars.
11557
11558 2005-12-02  Jackson Harper  <jackson@ximian.com>
11559
11560         * TreeView.cs: Make top_node internal so the TreeNodeCollections
11561         can play with it.
11562         * TreeNodeCollection.cs: If we remove the topnode we need to
11563         update topnode to the next node in line.
11564         - When clearing nodes go through the same process as removing
11565         them, so they get depareneted and checked if they are top node.
11566
11567 2005-12-01  Jackson Harper  <jackson@ximian.com>
11568
11569         * TreeView.cs: When imagelists are used the image area is
11570         selectable as well as the text.
11571         - If there are no selected nodes select the first one.
11572         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
11573         so don't do it more then we need to.
11574
11575 2005-12-01  Jackson Harper  <jackson@ximian.com>
11576
11577         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
11578         that arrows can be scaled.
11579
11580 2005-12-01  Jackson Harper  <jackson@ximian.com>
11581
11582         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
11583         fail. Patch by Dieter Bremes
11584
11585 2005-11-30  Jackson Harper  <jackson@ximian.com>
11586
11587         * Form.cs: Property is 2.0 only
11588         * PrintDialog.cs: Signature fix.
11589
11590 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11591
11592         * TextControl.cs: 
11593           - No longer artificially moves text 2 pixels down (now that we have
11594             borders this is no longer needed)
11595           - Added calcs for left, hanging and right indent
11596
11597 2005-11-23  Mike Kestner  <mkestner@novell.com>
11598
11599         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
11600
11601 2005-11-30  Jackson Harper  <jackson@ximian.com>
11602
11603         * MdiChildContext.cs: Set the cloned menus forms, as these don't
11604         get cloned as part of CloneMenu ().
11605         * Menu.cs: Make sure the parent of the items get set correctly
11606         when they are added.  And the owners are notified of the changes.
11607         * Form.cs: Create an ActiveMenu property, so that when MDI is used
11608         we can change the menu being displayed/handled by the form without
11609         changing the menu assosciated with the form.
11610         - Don't let Mdi children draw/handle menus.
11611         
11612 2005-11-30  Jackson Harper  <jackson@ximian.com>
11613
11614         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
11615         a MenuChanged event. Just to make the API a little more
11616         consistent.
11617         * MainMenu.cs:
11618         * MenuItem.cs: Use the new OnMenuChanged
11619         * MdiChildContext.cs: Handle menu merging.
11620         * Form.cs: Implement MergedMenu.
11621         
11622 2005-11-30  Jackson Harper  <jackson@ximian.com>
11623
11624         * Menu.cs: We were misusing Add. Add goes behind the specified
11625         index according to the docs, and does not replace the specified
11626         index. So I added an Insert method.
11627
11628 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11629
11630         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
11631           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
11632           is for Jackson
11633         * RichTextBox.cs: Added calls to base for DnD events
11634
11635 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
11636
11637         * TextControl.cs:
11638           - Fixed drag-selection related crash; style fixes
11639           - Implemented undo class
11640             o Implemented method to capture document state for specified
11641               range in document tree
11642             o Implemented method to restore captured document state
11643             o Implemented cursor tracking
11644             o Implemented basic undo stack
11645           - Added undo cursor tracking to methods altering cursor location
11646           - Added undo tracking to selection deletion (still missing
11647             other text-altering hookups)
11648         * RichTextBox.cs:
11649           - Added SelectionLength property
11650           - Implemented CanPaste()
11651           - Implemented Paste()
11652           - Added missing protected methods
11653           - Fixed RTF->Document conversion; now uses font index 0 and color 
11654             index 0 as the default font for the parsed text
11655           - Fixed RTF<->Document font size translation
11656           - Fixed RTF generation, now properly handles cross-tag boundaries
11657             for single line selection
11658           - No longer always appends blank line to generated RTF
11659           - Removed TODOs
11660           - Added missing attributes
11661           - Hooked up undo-related methods
11662         * TextBoxBase.cs:
11663           - Implemented Copy()
11664           - Implemented Paste()
11665           - Implemented Cut()
11666           - Fixed caret mis-behaviour on backspace across line-boundaries
11667
11668 2005-11-29  Jackson Harper  <jackson@ximian.com>
11669
11670         * MdiClient.cs: Add a method for activating mdi children. Very
11671         basic right now. I imagine someday it might need more girth.
11672         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
11673         children windows names are added to the menu item.
11674         * ThemeWin32Classic.cs: Draw the arrow if the item is an
11675         mdilist. This happens regardless of whether or not there are any
11676         mdi windows to see in the list, and according to my tests happens
11677         before the items are even added. Also happens if there isn't even
11678         an mdi client to get windows from.
11679
11680 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
11681
11682         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
11683         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
11684
11685 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
11686
11687         * DataGridTableStyle.cs:
11688           - Create always the styles for the missing columns even if they are
11689             provided by the user (not default table style)
11690         * DataGrid.cs:
11691           - Fixes bug 76770
11692           - Fixes SetDataBinding (always re-attach source)
11693           - Fixes SetNewDataSource (only clear styles if they are not for 
11694             this source)
11695          -  Expands OnTableStylesCollectionChanged to handle style refresh 
11696             and remove properly
11697
11698 2005-11-29  Jackson Harper  <jackson@ximian.com>
11699
11700         * FileDialog.cs: Implement missing bits, remove some dead
11701         code.
11702         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
11703         creation of the panel so that the options set on the dialog are
11704         seen when the panel is created.
11705         * TreeView.cs: raise a click when items are clicked.
11706         
11707 2005-11-29  Jackson Harper  <jackson@ximian.com>
11708
11709         * MdiClient.cs: Pass some signature methods through to base.
11710
11711 2005-11-28  Jackson Harper  <jackson@ximian.com>
11712
11713         * ListView.cs: Raise the click event when items are clicked.
11714
11715 2005-11-28  Jackson Harper  <jackson@ximian.com>
11716
11717         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
11718         a nullref.
11719
11720 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
11721
11722         * ThemeNice.cs: - Removed 1 pixel bitmaps
11723           - Use SmoothingMode.AntiAlias where it makes sense
11724             (ScrollButton arrow for example)
11725           - Enhanced Button focus drawing
11726           - Fixed ComboBox drawing (no artefacts anymore, focus
11727             rectangle is back again, reduced size of ComboButton, etc.)
11728           - Fixed RadioButton focus drawing for Appearence.Button
11729           - Slight ScrollButton redesign
11730           - Some LinearGradientBrush size fixes
11731           - GroupBoxes have now rounded edges
11732           - Fixed StatusBar drawing
11733
11734 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
11735
11736         * ThemeNice.cs: - Remove dead code
11737           - use correct background colors for menus, etc.
11738           - Fake pixel drawing with 1 pixel bitmaps
11739
11740 2005-11-24  Jackson Harper  <jackson@ximian.com>
11741
11742         * MdiClient.cs: Size the scrollbars when resizing the window.
11743         - Resize the maximized windows when the client is resized
11744         * Form.cs: Make the child context available
11745         
11746 2005-11-23  Jackson Harper  <jackson@ximian.com>
11747
11748         * MdiChildContext.cs: Don't size windows if they are maximized.
11749
11750 2005-11-23  Mike Kestner  <mkestner@novell.com>
11751
11752         * ContextMenu.cs: use MenuTracker.
11753         * Control.cs: remove menu handle usage.
11754         * Form.cs: remove menu handle usage.
11755         * Hwnd.cs: remove menu handle usage.
11756         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
11757         motion and clicks to the new Tracker handlers.
11758         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
11759         and handle usage.
11760         * MenuAPI.cs: refactored to combine popup and menubar event handling.
11761         Killed the MENU and MENUITEM data types and associated collections
11762         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
11763         MenuTracker class that exposes the leftovers from the old MenuAPI
11764         static methods. Restructured Capture handling so that only one grab is
11765         done for the entire menu hierarchy instead of handing off grabs to
11766         submenus. Tracker now has an invisible control to Capture when active.
11767         * MenuItem.cs: add sizing accessors, kill Create
11768         and handle usage.
11769         * Theme.cs: remove menu handle and MENU(ITEM) usage.
11770         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
11771         MENU(ITEM). remove menu handle usage, use Menu directly.
11772         * XplatUIDriver.cs: remove menu handle usage.
11773         * XplatUIOSX.cs: remove menu handle usage.
11774         * XplatUIWin32.cs: remove menu handle usage.
11775         * XplatUIX11.cs: remove menu handle usage.
11776
11777 2005-11-22  Jackson Harper  <jackson@ximian.com>
11778
11779         * Hwnd.cs: Don't compute the menu size for
11780         DefaultClientRectangle.
11781         - Reenable menu sizes being computed for GetClienRectangle.
11782         * Form.cs: Remove comment of trechery
11783         
11784 2005-11-22  Jackson Harper  <jackson@ximian.com>
11785
11786         * Hwnd.cs: The adjustments for the menu bar are made when it is
11787         attached to the form.
11788
11789 2005-11-19  Jackson Harper  <jackson@ximian.com>
11790
11791         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
11792         (just like on windows).
11793
11794 2005-11-19  Jackson Harper  <jackson@ximian.com>
11795
11796         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
11797         use real buttons anymore because they are in non client area. The
11798         one TODO here is that I need to somehow invalidate a section of
11799         the non client area.
11800
11801 2005-11-18  Jackson Harper  <jackson@ximian.com>
11802
11803         * Control.cs: Put the enum check back in now that MDI doesnt have
11804         to use this to set border styles.
11805         * Form.cs: Only set mdi child windows borders if the handle has
11806         been created.
11807         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
11808         this directly on to the driver.
11809         - Get the move start position before adjusting for the titlebar
11810         height, this fixes the windows "skipping" when they are first
11811         moved.
11812
11813 2005-11-18  Jackson Harper  <jackson@ximian.com>
11814
11815         * XplatUIX11.cs: Just compute the mdi borders separately as they
11816         don't totally match up with normal form borders.
11817
11818 2005-11-18  Jackson Harper  <jackson@ximian.com>
11819
11820         * Control.cs: Set WS_ styles for borders, so that the driver does
11821         not have to retrieve the control instance to figure out what kind
11822         of borders it should have.
11823         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
11824         driver can know its an mdi child easily.
11825         * XplatUIX11.cs: Get the border styles and whether the window is
11826         MDI from the Styles and ExStyles params instead of having to get a
11827         control. This prevents a chicken and egg problem.       
11828
11829 2005-11-18  Jackson Harper  <jackson@ximian.com>
11830
11831         * MdiClient.cs: Fix typo so scrollbars show up correctly.
11832
11833 2005-11-18  Jackson Harper  <jackson@ximian.com>
11834
11835         * MdiClient.cs: Calculate when to add and remove scrollbars
11836         correctly.
11837         * MdiChildContext.cs: Adjust the y position to take the titlebar
11838         into account.
11839         - No height for FormBorderStyle.None
11840
11841 2005-11-18  Jackson Harper  <jackson@ximian.com>
11842
11843         * Control.cs: Allow non enum values to be used for
11844         InternalBorderStyle.  MDI does this to set a special border style.
11845         - New utility methods for converting points to/from client coords
11846         - Add the newly created control to the Controls collection before
11847         updating its style. This way UpdateStyle can walk the control
11848         heirarchy to find the control if needed.
11849         so I don't need to create a new Point object all the time.
11850         * Form.cs: Let MDI windows handle their border styles.
11851         - Set styles on MDI windows so the correct title style is derived.
11852         * MdiChildContext.cs: Move all the painting and window handling
11853         into the non client area.
11854         - Use correct sizing and put correct buttons on frames based on
11855         the FormBorderStyle.
11856         - Notify the mdi client about scrolling
11857         - Need to handle the buttons ourselves now, because they are all
11858         in non client areas and we can't add controls there.
11859         * MdiClient.cs: Halfway to scrolling, this implementation is
11860         somewhat broken though, we need to check to make sure other
11861         windows aren't causing scrolling before removing the bars. Also
11862         the bars need to be drawn on top, maybe I can switch implicit
11863         controls to be on top.
11864         * Hwnd.cs: caption_height and tool_caption_height are now
11865         properties of an hwnd, this way they can be set by the driver
11866         based on the type of window they are.  In X11 the window manager
11867         handles the decorations so caption_height is zero unless its an
11868         MDI window.
11869         - Add 3 pixel borders for MDI windows (0xFFFF).
11870         - Get rid of some code duplication, have DefaultClientRectanle
11871         just call GetClientRectangle.
11872         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
11873         Hwnd now.
11874         - Set border styles differently for mdi windows.
11875         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
11876         Hwnd now.
11877         
11878 2005-11-15  Mike Kestner  <mkestner@novell.com>
11879
11880         * Menu.cs: when adding an item to the collection, if item is already 
11881         parented, remove it from the parent.
11882
11883 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
11884
11885         * X11DesktopColors.cs: Added KDE support
11886
11887 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
11888
11889         * XplatUIWin32.cs: 
11890           - Clipboard methods now can translate Rtf format
11891           - No longer removes clipboard contents whenever a new format is added
11892             to allow placing multiple formats on the clipboard
11893         * Clipboard.cs: Clipboard now supports getting a IDataObject and
11894           will place all formats contained in it onto the clipboard. Also
11895           now cleans the clipboard before placing a new object onto it
11896         * RichTextBox.cs:
11897           - Implemented set_Rtf
11898           - Implemented set_SelectedRtf
11899           - Created InsertRTFFromStream() method to allow single code base
11900             for all properties and methods that insert RTF into document
11901           - Removed debug output
11902         * TextControl.cs:
11903           - Fixed Delete(int) to fix up line numbers
11904           - Fixed ReplaceSelection to combine start and end line
11905           - Fixed serious DeleteChars bug that would leave the document tree
11906             broken
11907           - Improved DumpTree with several logic checks to detect broken
11908             document trees
11909           - Removed debug lines
11910           - Fixed Caret.WordForward/WordBack moving code, now always also 
11911             updates caret.tag (fixes crash when word-selecting across tag
11912             boundaries via keyboard)
11913           - Added Insert() method for inserting multiline text into documents
11914           - Fixed DeleteChars() calculation errors that would cause a broken
11915             tag chain with multiple tag lines
11916           - DeleteChars() no longer crashes on multi-tag lines if not all tags
11917           - Split() no longer moves caret if split is at caret location
11918           - ReplaceSelection() now updates the cursor and re-displays it
11919           - ReplaceSelection() now uses new Insert() method to avoid code
11920             duplication
11921           - FormatText() can now handle formatting partial lines
11922         * TextBoxBase.cs:
11923           - Append now uses new TextControl.Insert() method (this avoids 
11924             duplicate code)
11925           - Implemented Ctrl-X (Cut) (
11926           - Implemented Ctrl-C (Copy)
11927           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
11928             regeneration when pasting text; roundtripping Copy&Paste within
11929             edit control still fails due to some calculation bugs in GenerateRTF)
11930           - The Delete key will now remove the current selection if it is visible
11931         * TextBox.cs: Removed debug lines
11932         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
11933           driver to be initialized and can't therefore be done via a static ctor)
11934
11935 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
11936
11937         * TextControl.cs: Added backend code for finding char arrays and strings
11938         * TextBoxBase.cs:
11939           - Added mouse wheel scroll support
11940           - Added support for VScroll and HScroll events
11941         * RichTextBox.cs:
11942           - Implemented all seven Find() variants
11943           - Implemented GetCharFromPosition()
11944           - Implemented GetCharIndexFromPosition()
11945           - Implemented GetLineFromIndex()
11946           - Implemented GetPositionFromCharIndex();
11947           - Implemented SaveFile for PlainText and UnicodeText
11948           - Fixed set_Font, now setting a new font applies that font to
11949             the whole document
11950           - Implemented generic Document to RTF converter
11951           - Implemented SaveFile for RichText format (still missing unicode
11952             conversion for non-ansi chars)
11953           - Implemented get_Rtf
11954           - Implemented get_SelectedRtf
11955
11956 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
11957
11958         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
11959           to allow any captures to be released before triggering OnClick. This
11960           way a click handler may capture the mouse without interference.
11961         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
11962           This way we send them even though X may not allow a grab (if the window
11963           isn't visible, for example)
11964
11965 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
11966
11967         * DataGridViewRowEventArgs.cs: DataGridView implementation
11968         * DataGridViewElement.cs: DataGridView implementation
11969         * DataGridViewComboBoxCell.cs: DataGridView implementation
11970         * DataGridViewDataErrorContexts.cs: DataGridView implementation
11971         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
11972         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
11973         * ImageLayout.cs: DataGridView implementation
11974         * DataGridViewComboBoxColumn.cs: DataGridView implementation
11975         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
11976         * DataGridViewSelectionMode.cs: DataGridView implementation
11977         * IDataGridViewEditingControl.cs: DataGridView implementation
11978         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
11979         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
11980         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
11981         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
11982         * DataGridViewColumnSortMode.cs: DataGridView implementation
11983         * DataGridView.cs: DataGridView implementation
11984         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
11985         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
11986         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
11987         * Padding.cs: DataGridView implementation
11988         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
11989         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
11990         * DataGridViewRowEventHandler.cs: DataGridView implementation
11991         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
11992         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
11993         * DataGridViewButtonCell.cs: DataGridView implementation
11994         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
11995         * DataGridViewEditMode.cs: DataGridView implementation
11996         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
11997         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
11998         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
11999         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
12000         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
12001         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
12002         * DataGridViewCellEventHandler.cs: DataGridView implementation
12003         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
12004         * DataGridViewCellStyleConverter.cs: DataGridView implementation
12005         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
12006         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
12007         * DataGridViewColumnEventArgs.cs: DataGridView implementation
12008         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
12009         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
12010         * QuestionEventArgs.cs: DataGridView implementation
12011         * IDataGridViewEditingCell.cs: DataGridView implementation
12012         * DataGridViewTriState.cs: DataGridView implementation
12013         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
12014         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
12015         * DataGridViewColumnCollection.cs: DataGridView implementation
12016         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
12017         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
12018         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
12019         * DataGridViewColumn.cs: DataGridView implementation
12020         * DataGridViewCellBorderStyle.cs: DataGridView implementation
12021         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
12022         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
12023         * DataGridViewRow.cs: DataGridView implementation
12024         * DataGridViewImageCellLayout.cs: DataGridView implementation
12025         * DataGridViewImageCell.cs: DataGridView implementation
12026         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
12027         * DataGridViewCheckBoxCell.cs: DataGridView implementation
12028         * DataGridViewHeaderCell.cs: DataGridView implementation
12029         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
12030         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
12031         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
12032         * DataGridViewTextBoxColumn.cs: DataGridView implementation
12033         * QuestionEventHandler.cs: DataGridView implementation
12034         * DataGridViewCellStyleScopes.cs: DataGridView implementation
12035         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
12036         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
12037         * DataGridViewCell.cs: DataGridView implementation
12038         * DataGridViewCellEventArgs.cs: DataGridView implementation
12039         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
12040         * DataGridViewCellStyle.cs: DataGridView implementation
12041         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
12042         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
12043         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
12044         * TextFormatFlags.cs: DataGridView implementation
12045         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
12046         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
12047         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
12048         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
12049         * DataGridViewButtonColumn.cs: DataGridView implementation
12050         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
12051         * HandledMouseEventArgs.cs: DataGridView implementation
12052         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
12053         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
12054         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
12055         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
12056         * DataGridViewRowCollection.cs: DataGridView implementation
12057         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
12058         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
12059         * DataGridViewHitTestType.cs: DataGridView implementation
12060         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
12061         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
12062         * DataGridViewColumnEventHandler.cs: DataGridView implementation
12063         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
12064         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
12065         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
12066         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
12067         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
12068         * DataGridViewContentAlignment.cs: DataGridView implementation
12069         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
12070         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
12071         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
12072         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
12073         * DataGridViewPaintParts.cs: DataGridView implementation
12074         * DataGridViewCellCollection.cs: DataGridView implementation
12075         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
12076         * DataGridViewImageColumn.cs: DataGridView implementation
12077         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
12078         * DataGridViewElementStates.cs: DataGridView implementation
12079         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
12080         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
12081         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
12082         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
12083         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
12084         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
12085         * DataGridViewRowHeaderCell.cs: DataGridView implementation
12086         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
12087         * DataGridViewTextBoxCell.cs: DataGridView implementation
12088         * DataGridViewBand.cs: DataGridView implementation
12089         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
12090         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
12091         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
12092         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
12093         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
12094         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
12095         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
12096         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
12097         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
12098         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
12099         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
12100
12101 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
12102
12103         * ThemeWin32Classic.cs: 
12104           - Draw the outside focus rectangle around buttons
12105           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
12106             doesn't use end caps for every dash of a line anymore. This
12107             workaround ignores the forecolor.
12108
12109 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
12110
12111         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
12112           endian safe.
12113
12114 2005-11-07  Jackson Harper  <jackson@ximian.com>
12115
12116         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
12117
12118 2005-11-07  Jackson Harper  <jackson@ximian.com>
12119
12120         * ScrollableControl.cs: Calculate the maximum and change vars
12121         (more) correctly so that scrollbars appear as a sensible size.
12122
12123 2005-11-04  Jackson Harper  <jackson@ximian.com>
12124
12125         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
12126         collection.
12127         * TreeView.cs: When the tree is sorted null out the top_node so
12128         that it is recalculated.
12129         - Use dotted lines instead of dashed lines to match MS better.
12130
12131 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
12132
12133         * ListView.cs: 
12134           - Implements key search for items. Useful when browsing files with FileDialog
12135           - When changing view mode or when clear the items reset scrollbar positions
12136
12137 2005-11-04  Jackson Harper  <jackson@ximian.com>
12138
12139         * CurrencyManager.cs: Implement the MetaDataChanged event, the
12140         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
12141         as to what the method may do as there is no real way of creating a
12142         derived CurrencyManager and calling the method. 
12143
12144 2005-11-03  Jackson Harper  <jackson@ximian.com>
12145
12146         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
12147         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
12148         method which seems to just be used internally to refresh the tabs.
12149
12150 2005-11-03  Jackson Harper  <jackson@ximian.com>
12151
12152         * TabControl.cs: Implement the remove method. Fix some broken
12153         comments.
12154
12155 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12156
12157         * DateTimePicker.cs:
12158           - Added missing DateTimePickerAccessibleObject class
12159           - Added missing events
12160           - Added OnFontChanged method
12161         * Form.cs: Added missing attributes
12162         * TreeView.cs: Added missing attributes
12163
12164 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
12165
12166         * GridItemCollection.cs: Fix signatures
12167
12168 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12169
12170         * XplatUI.cs: Updated build rev/date
12171         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
12172           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
12173         * Application.cs: Trigger context-specific ExitThread events
12174
12175 2005-11-03  Jackson Harper  <jackson@ximian.com>
12176
12177         * Menu.cs:
12178         * MainMenu.cs:
12179         * GridTableStylesCollection.cs:
12180         * Timer.cs:
12181         * TabPage.cs:
12182         * HelpProvider.cs:
12183         * StatusBar.cs:
12184         * MonthCalendar.cs: Signature fixes
12185
12186 2005-11-03  Jackson Harper  <jackson@ximian.com>
12187
12188         * TreeNodeCollection.cs: Remove should not be virtual.
12189         * TreeView.cs: Implement the last of the missing methods.
12190
12191 2005-11-03  Jackson Harper  <jackson@ximian.com>
12192
12193         * TreeNodeConverter.cs: Implement to get off my class-status back.
12194
12195 2005-11-03  Jackson Harper  <jackson@ximian.com>
12196
12197         * TreeView.cs: Hookup the bits for drag and drop.
12198         * TreeNode.cs: Don't cache the tree_view or index anymore, now
12199         that nodes can be moved from tree to tree easily this just causes
12200         all sorts of problems.
12201         * TreeNodeCollection: Don't need to give treenodes an index and
12202         treeview anymore when they are added, these are computed on the
12203         fly. Also make sure to remove a node before its added.
12204
12205 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12206
12207         * TextControl.cs:
12208           - Added CaretSelection enum
12209           - Added comparison methods to Marker struct, makes selection code
12210             more readable
12211           - Added SelectionStart and SelectionEnd as 'moveable' location for
12212             the CaretDirection enum and handler
12213           - Added selection_prev variable to track optimized invalidation for
12214             word and line selection
12215           - Added SelectionVisible property (returns true if there is a valid 
12216             selection)
12217           - Switched CaretHasFocus to only display the caret if there is no
12218             visible selection
12219           - Avoiding StringBuilder.ToString to retrieve a single char, instead
12220             using the direct character index; should be much faster
12221           - Added various conditional debug statements
12222           - Fixed invalidation calculation for selection ranges
12223           - Added ExpandSelection() method to support word and line selection
12224           - Switched SetSelectionToCaret to use new Marker compare overloads
12225           - Added central IsWordSeparator() method to determine word 
12226             separators/whitespace and FindWordSeparator() to streamline common
12227             usage of IsWordSeparator()
12228         * TextBoxBase.cs:
12229           - Removed unneeded grabbed variable, it was just mirroring
12230             Control.Capture
12231           - No longer firing OnTextChanged event when Text setter is called,
12232             since the base will fire the event for us
12233           - Added handling of Ctrl-Up/Down selection
12234           - Added handling of Shift-Cursorkey selection
12235           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
12236             words
12237           - Added handling of Shift and Ctrl-Shift-Home/End selection
12238           - Removed some debug output
12239           - Added handling for single/double/tripple-click to place caret/
12240             select word/select line respectively (Fixes bug #76031)
12241           - Added support for drag expansion of word/line selection
12242         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
12243           current selection
12244
12245 2005-11-02  Jackson Harper  <jackson@ximian.com>
12246
12247         * X11Dnd.cs: If the drag is going to and from a MWF window just
12248         copy the data instead of sending it out through the X Selection
12249         mechanism.
12250
12251 2005-11-02  Jackson Harper  <jackson@ximian.com>
12252
12253         * X11Dnd.cs:
12254         * XplatUIX11.cs: When in a drag we don't want motion notify
12255         messages to get passed on to the other controls. This prevents
12256         mouse move messages from showing up in the drag source.
12257
12258 2005-11-02  Jackson Harper  <jackson@ximian.com>
12259
12260         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
12261         the correct button is release to end a drag.
12262         * XplatUIX11.cs: Make the button state internal so the drag system
12263         can access it.  Dragging needs to know about all button releases,
12264         not just left button.
12265
12266 2005-11-02  Miguel de Icaza  <miguel@novell.com>
12267
12268         * Form.cs (Icon): If the icon is null, reset the icon to the
12269         default value. 
12270
12271         * Cursor.cs: When writing the AND-mask bitmap do not include the
12272         number of colors, but hardcode those to two (black and white),
12273         fixes the loading of color cursors (Paint Dot Net).
12274
12275         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
12276         turn off autoscaling.
12277
12278         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
12279
12280 2005-11-02  Jackson Harper  <jackson@ximian.com>
12281
12282         * X11Dnd.cs: Make sure to send a status message if the pointer
12283         enters a control that can not accept a drop, otherwise the cursor
12284         isn't updated correctly. Also tried to compress the lines of code
12285         a bit.
12286
12287 2005-11-02  Jackson Harper  <jackson@ximian.com>
12288
12289         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
12290         set actions correctly.  This isn't perfect as XDND and win32 have
12291         some differences on how you allow actions. I'll clear this up by
12292         adding a path for drag from MWF to MWF windows.
12293         * XplatUIX11.cs: Hook into the dnd system.
12294
12295 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
12296
12297         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
12298         previously shown but they are no longer need it. Very obvious when 
12299         browsing files with FileDialog.
12300
12301 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
12302
12303         * Control.cs: We always need to call OnPaintBackground. We pretty much
12304           ignore AllPaintingInWmPaint and always do the painting there, whether 
12305           it's set or not, since we always ignore the WM_ERASEBKGND message 
12306           (which we don't generate on X11). This fixes #76616.
12307         * Panel.cs: Removed unneeded background painting. This happens properly
12308           in Control.cs already
12309
12310 2005-10-31  Mike Kestner  <mkestner@novell.com>
12311
12312         * Menu.cs: Add items to collection before setting their index.
12313         * MenuItem.cs : add range checking with ArgumentException like MS.
12314         [Fixes #76510]
12315
12316 2005-10-31  Jackson Harper  <jackson@ximian.com>
12317
12318         * ListBox.cs: Invalidate if the area is visible at all not just
12319         contained in the visible rect. Fixes unselection of semi visible
12320         items.
12321
12322 2005-10-31  Jackson Harper  <jackson@ximian.com>
12323
12324         * Control.cs: Consistently name the dnd methods. Make them
12325         internal so we can override them to match some MS behavoir
12326         internally.
12327         * Win32DnD.cs: Use the new consistent names.
12328
12329 2005-10-31  Jackson Harper  <jackson@ximian.com>
12330
12331         * TreeView.cs: Don't draw the selected node when we lose focus.
12332
12333 2005-10-31  Jackson Harper  <jackson@ximian.com>
12334
12335         * X11Dnd.cs: We still need to reset the state even though a full
12336         reset isn't being done, otherwise status's still get sent all over
12337         the place.
12338
12339 2005-10-31  Jackson Harper  <jackson@ximian.com>
12340
12341         * Control.cs: Make the dnd_aware flag internal so the dnd
12342         subsystem can check it. Catch exceptions thrown in dnd handlers to
12343         match MS behavoir.
12344         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
12345         * X11Dnd.cs: Handle null data in the converters. Set the XDND
12346         version when sending a XdndEnter. Use the control/hwnd dnd_aware
12347         flags to reduce the number of dnd enters/status's sent.
12348
12349 2005-10-31  Jackson Harper  <jackson@ximian.com>
12350
12351         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
12352
12353 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
12354
12355         * PictureBox.cs: Fixes 76512
12356
12357 2005-10-28  Jackson Harper  <jackson@ximian.com>
12358
12359         * X11Dnd.cs: Early implementation to support winforms being a drag
12360         source for data on X11. Also restructured the converters so they
12361         can go both ways now.
12362         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
12363         
12364 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
12365
12366         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
12367           clipboard requests
12368
12369 2005-10-27  Jackson Harper  <jackson@ximian.com>
12370
12371         * TreeNode.cs: Implement serialization so my DnD examples will work.
12372
12373 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
12374
12375         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
12376           TreeView.cs: Don't dispose objects that are not owned.
12377           
12378 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
12379
12380         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
12381           should retrieve the current cursor and report that, but XplatUI
12382           doesn't (yet) have an interface for that (and I'm not sure I even
12383           can, on X11)
12384         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
12385           until any message loop processing is done (and the WM_SETCURSOR
12386           replaces the cursor to the proper one)
12387         * XplatUIX11.cs: 
12388           - Fixed override behaviour, we can't set the cursor globally on X11, 
12389             just for our windows.
12390           - Invalidating the System.Drawing X11 display handle when we are
12391             shutting down
12392         * Control.cs: Fix to make csc happy
12393
12394 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
12395
12396         * TextBoxBase.cs: 
12397           - get_Text: Add last line (without trailing newline) to returned
12398             value (Fixes 76212)
12399           - get_TextLength: Count last line in returned length
12400           - ToString: Call Text property instead of duplicating code
12401
12402 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
12403
12404         * ImageList.cs: Dispose ImageAttributes objects.
12405
12406 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12407
12408         * ImageList.cs: Use attribute constructors with less arguments where
12409           possible.
12410
12411 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12412
12413         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
12414           Use typeof instead of strings when assembly is referenced. Added
12415           some more comments.
12416
12417 2005-10-21  Jackson Harper  <jackson@ximian.com>
12418
12419         * ListView.cs: Raise a double click event. Also tried to somewhat
12420         fix when the selectedindexchanged event is raised. Its still
12421         broken though.
12422
12423 2005-10-21  Jackson Harper  <jackson@ximian.com>
12424
12425         * TreeView.cs: New method to invalidate the plus minus area of a
12426         node without invalidating the whole node (maybe this can be used
12427         in some more places).
12428         * TreeNodeCollection.cs: When adding to an empty node we need to
12429         invalidate its plus minus area so the little block shows up.
12430         
12431 2005-10-21  Jackson Harper  <jackson@ximian.com>
12432
12433         * TreeView.cs: Make sure that when we invalidate a node the bounds
12434         are big enough to cover the selected box and the focus
12435         rectangle. Use a different colour for the lines connecting nodes
12436         so they show up with all themes.
12437
12438 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12439
12440         * NativeWindow.cs: Don't call anything that could call into the driver,
12441           we might be on a different thread.
12442
12443 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
12444
12445         * Control.cs(Dispose): Since Dispose might run on a different thread,
12446           make sure that we call methods that could call into the driver via
12447           invoke, to avoid thread issues
12448
12449 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12450
12451         * XplatUI.cs: Removed finalizer
12452         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
12453           not allowing to be called on the finalizer thread.
12454
12455 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
12456
12457         * ImageList.cs:
12458           - Reverted r51889 and r51891.
12459           - Added ImageListItem class that stores unmodified image items and image
12460             properties required to create list images until handle is created.
12461           - Added AddItem and moved image creation logic to AddItemInternal.
12462           - Added CreateHandle method that creates images based on unmodified items.
12463           - Added DestroyHandle that changes state to store unmodified items.
12464           - Add and AddStrip methods no more create handle.
12465           - ReduceColorDepth has no return value.
12466           - Dispose destroys handle.
12467           - Modified other methods to reflect the above changes.
12468           - Implemented key support.
12469           - Added profile 2.0 members and attributes.
12470           - Added private Reset and ShouldSerialize methods that provide the same
12471             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
12472             them as they are private.
12473           - Added some more comments about implementation details.
12474
12475 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12476
12477         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
12478
12479 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12480
12481         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
12482
12483 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12484
12485         * DataGridDrawingLogic.cs: Fixes column hit calcultation
12486         * DataGridColumnStyle.cs: Remove debug message
12487
12488 2005-10-20  Jackson Harper  <jackson@ximian.com>
12489
12490         * TreeView.cs: We can always get input keys regardless of whether
12491         or not editing is enabled. They are used for navigation.
12492
12493 2005-10-20  Jackson Harper  <jackson@ximian.com>
12494
12495         * TreeNode.cs: Use the viewport rect for determining if a node
12496         needs to be moved for visibility. Don't use Begin/End edit. This
12497         calls a full refresh when its done.
12498         * TreeView.cs: New SetBottom works correctly.  Make the viewport
12499         rect property internal so the treenodes can see it. When clicking
12500         on a node we need to ensure that its visible because it might just
12501         be partly visible when clicked.
12502
12503 2005-10-20  Jackson Harper  <jackson@ximian.com>
12504
12505         * TreeNodeCollection.cs: Remove debug code.
12506
12507 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12508
12509         * Datagrid.cs: Implements column sorting in Datagrid
12510         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
12511
12512 2005-10-20  Jackson Harper  <jackson@ximian.com>
12513
12514         * TreeNodeCollection.cs: Remove items properly. Update the correct
12515         area after removing them.
12516
12517 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12518
12519         * Datagrid.cs: Should not call base.OnPaintBackground
12520
12521 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12522
12523         * XplatUIX11.cs (GetMessage):
12524           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
12525             window instead of client window
12526           - Now properly calculates NC_xBUTTONUP message coordinates
12527           - ScreenToMenu now properly calculates it's coordinates of whole 
12528             window, since menus are in the whole window, not in the client
12529             window
12530           - Added WholeToScreen coordinate translation method
12531
12532 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
12533
12534         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
12535           want to return a message, loop back to the beginning of the function
12536           and grab the next real message to process instead.
12537
12538 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12539
12540         * Splitter.cs: Properly set limits if no filler control is used
12541
12542 2005-10-19  Jackson Harper  <jackson@ximian.com>
12543
12544         * ColorDialog.cs: Don't show the help button if it is not enabled
12545         instead of disabling it (this is what MS does). Don't create the
12546         panel until the dialog is run, otherwise the vars (such as
12547         ShowHelp) are not set yet.
12548
12549 2005-10-19  Jackson Harper  <jackson@ximian.com>
12550
12551         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
12552         are reduced when adding nodes.
12553         * TreeNode.cs:
12554         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
12555         tree.
12556         
12557 2005-10-19  Jackson Harper  <jackson@ximian.com>
12558
12559         * FolderBrowserDialog.cs: End editing our treeview so the window
12560         actually gets refreshed.
12561
12562 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12563
12564         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
12565           Obsoleted handling of WM_ERASEBKGND, now always draws our background
12566           inside of WM_PAINT
12567
12568 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12569
12570         * MenuAPI.cs: Returns after Hidding window
12571         * XplatUIX11.cs: Added TODO found while debugging menu issues
12572
12573 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12574
12575         * XplatUIX11.cs: Do not re-map the whole window when it's size
12576           becomes non-zero unless it's supposed to be actually visible
12577
12578 2005-10-18  Jackson Harper  <jackson@ximian.com>
12579
12580         * TreeView.cs: We don't need to keep a count anymore.
12581         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
12582         use the Grow method.
12583
12584 2005-10-18  Jackson Harper  <jackson@ximian.com>
12585
12586         * TreeNodeCollection.cs: Insert is not supported on arrays, so
12587         implement it manually here.
12588
12589 2005-10-18  Jackson Harper  <jackson@ximian.com>
12590
12591         * ImageList.cs: Dont kill the list when the colour depth is
12592         changed, just change the colour depth of all the images.
12593         - Same goes for setting the image size. Just resize them all
12594         instead of killing the list softly.
12595
12596 2005-10-18  Jackson Harper  <jackson@ximian.com>
12597
12598         * Control.cs: Don't invalidate empty rectangles.
12599
12600 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12601
12602         * ListViewItem.cs:
12603           - Adds checked item to the Checked/Item lists (where empty before)
12604           - Do not add items to the Selected lists if they are already present
12605         * ListView.cs:
12606           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
12607           - When deleting items make sure that we delete them for the Selected
12608           and Checked list also.
12609
12610 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12611
12612         * Label.cs: Dispose objects no longer used
12613         * ThemeWin32Classic.cs: Dispose objects no longer used
12614
12615 2005-10-18  Jackson Harper  <jackson@ximian.com>
12616
12617         * TabControl.cs: Don't refresh the whole control when the tabs are
12618         scrolled, we just need to refresh the tab area.
12619
12620 2005-10-17  Jackson Harper  <jackson@ximian.com>
12621
12622         * XplatUIX11.cs: Compress code a little bit. Only calculate the
12623         after handle when we need it.
12624
12625 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12626
12627         * Control.cs: When the parent size changes, recalculate anchor 
12628           positions. Partial fix for #76462
12629
12630 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12631
12632         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
12633           drawn. Fixes #76462
12634
12635 2005-10-17  Jackson Harper  <jackson@ximian.com>
12636
12637         * MonthCalendar.cs: Don't create the numeric up down until our
12638         handle is created. Otherwise our handle is created in the
12639         constructor and we don't know if we are a WS_CHILD or WS_POPUP
12640         yet.
12641
12642 2005-10-17  Jackson Harper  <jackson@ximian.com>
12643
12644         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
12645         correctly.
12646
12647 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12648         * TreeNode.cs : small logical fix (was using local var instead of field)
12649         
12650 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12651
12652         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
12653
12654 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12655
12656         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
12657
12658 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
12659
12660         * Control.cs: 
12661           - Re-implemented anchoring code. My first version was really broken.
12662             This fixes bug #76033. Unlike the previous implementation we will
12663             no longer have round errors since all numbers are calculated from
12664             scratch every time. Removed various anchor-related obsolete vars.
12665           - InitLayout no longer causes layout event firing and layout to be 
12666             performed
12667
12668 2005-10-16  Jackson Harper  <jackson@ximian.com>
12669
12670         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
12671         which was broken).
12672
12673 2005-10-16  Jackson Harper  <jackson@ximian.com>
12674
12675         * TabControl.cs: Remove debug code.
12676
12677 2005-10-16  Jackson Harper  <jackson@ximian.com>
12678
12679         * XEventQueue.cs: Increase the default queue size (very simple
12680         apps needed to grow the queue).
12681         * Hwnd.cs: No finalizer so we don't need to suppress
12682         finalization. Compute the invalid area manually so a new rectangle
12683         does not newto be created.
12684         * ScrollableControl.cs: Don't set any params (otherwise visibility
12685         isn't set correctly).
12686         * MdiChildContext.cs: New constructor takes the mdi parent so it
12687         doesn't have to be computed and avoids a crash on windows. Draw
12688         the window icon properly, and allow the text to be seen.
12689         * Form.cs: Use new MdiChildContext constructor. Make sure the
12690         child context isn't null in wndproc.
12691         * TabControl.cs: Don't set focus, this is muddling keyboard
12692         behavoir. Expand the tab rows when a window size increase will
12693         allow extra tabs to be seen. Don't allow tabs smaller than the
12694         width of a window to be scrolled out of view.
12695         * TreeNode.cs:
12696         * TreeView.cs: Use measure string to calculate a nodes width, the
12697         width is cached and only updated when the text or the font is
12698         changed. Don't check for expand/collapse clicks on the first level
12699         nodes if root lines are disabled.
12700         
12701 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
12702
12703         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
12704
12705 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12706
12707         * DataGridBoolColumn.cs: fixes warning
12708
12709 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12710
12711         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
12712         to match more to match more precisely the MS Net behavior
12713
12714 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12715
12716         * Hwnd.cs: Added field to track if window is mapped
12717         * XplatUIX11.cs: 
12718           - Unmap windows if they become 0-size, re-map when 
12719             they are >0 again; fixes #76035
12720           - Re-set our error handler after initializing X11Desktop
12721             to override any error handlers Gtk or whatever was called
12722             may have set.
12723
12724 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12725
12726         * CheckedListBox.cs: Removed unused vars
12727         * ListView.cs: Fixed signatures
12728         * RichTextBox.cs: Removed unused vars
12729         * TextBoxBase.cs: Removed unused vars
12730         * XplatUIWin32.cs: Removed unused vars
12731         * XplatUIX11.cs: Removed unused vars
12732         * XplatUI.cs: Updated version and date to latest published
12733
12734 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12735
12736         * Cursor.cs: Added private .ctor to work around a bug in
12737           resourceset (Thanks to Geoff Norton for the help on this)
12738         * SplitterEventArgs.cs: Made fields accessible so we don't
12739           waste boatloads of objects and can reuse the same one
12740           in Splitter
12741         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
12742           any captions and borders when generating screen coordinates
12743         * Splitter.cs: Reimplemented control, now fully complete, uses
12744           rubberband drawing, supports and obeys all properties, has
12745           proper cursors
12746
12747 2005-10-13  Miguel de Icaza  <miguel@novell.com>
12748
12749         * Form.cs (Form): Setup default values for autoscale and
12750         autoscale_base_size;  Make these instance variables, not static
12751         variables. 
12752
12753         (OnLoad): on the first load, adjust the size of the form.
12754
12755 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12756
12757         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
12758           width argument to DrawReversibleRectangle()
12759         * XplatUIWin32.cs, XplatUIX11.cs: 
12760           - Implemented width for DrawReversibleRectangle()
12761           - Added logic to DrawReversibleRectangle that recognizes a zero
12762             width or height and only draws a line in that situation
12763         
12764 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
12765
12766         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
12767         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
12768         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
12769           method (it uses our FosterParent window to get a graphics context)
12770
12771 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
12772
12773         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
12774           and SetWindowBackground methods
12775         * Control.cs:
12776           - Setting proper ControlStyles
12777           - We no longer call XplatUI.SetWindowBackground and XplatUI.
12778             EraseWindowBackground, instead we draw the window background
12779             ourselves in PaintControlBackground. This behaviour is
12780             required to match MS, where, when OnPaintBackground is not
12781             called, the background is not drawn.
12782           - Removed unneeded Refresh() in set_Text
12783         * Hwnd.cs: Dropped the ErasePending support. No longer needed
12784         * XplatUIX11.cs:
12785           - Created DeriveStyles method to translate from CreateParams to
12786             FormBorderStyle and TitleStyle, also handles BorderStyle (which
12787             matches FormBorderStyle enum values)
12788           - Consolidated SetHwndStyles and CalculateWindowRect border/title
12789             style calculations into single DeriveStyles method
12790           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
12791             from redrawing the whole window on any resize or expose.
12792           - Fixed CreateWindow usage of SetWindowValuemask. Before not
12793             all styles were applied to our whole/client window appropriately
12794           - Removed EraseWindowBackground() and SetWindowBackground() methods
12795           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
12796             no longer clear/redraw the background through X
12797           - Removed handling of erase_pending bit, we have no use for it (or
12798             so it seems)
12799         * XplatUIOSX.cs:
12800           - Removed generation and handling of WM_ERASEBKGND message
12801           - Removed EraseWindowBackground() and SetWindowBackground() methods
12802           - Removed handling of hwnd.ErasePending flag
12803         * XplatUIWin32.cs:
12804           - Removed EraseWindowBackground() and SetWindowBackground() methods
12805           - We no longer call EraseWindowBackground on PaintEventStart, we 
12806             ignore the fErase flag, erasing is handled in Control in the
12807             background handler
12808         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
12809           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
12810           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
12811           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
12812           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
12813           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
12814           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
12815
12816 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
12817
12818         * PropertyGrids.cs: Get sub properties
12819         * PropertyGridView.cs: Fix drawing code
12820
12821 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12822
12823         * ListBox.cs: Fixes 76383
12824
12825 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12826
12827         * DataGridTextBoxColumn.cs: Sets location and size before attachment
12828         * ThemeWin32Classic.cs: Fixes border drawing and calculations
12829         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
12830
12831
12832 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12833
12834         * ComboBox.cs: Fixes border drawing
12835
12836 2005-10-10  Miguel de Icaza  <miguel@novell.com>
12837
12838         * MimeIcon.cs: Ignore errors if the file can not be read.
12839
12840 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12841
12842         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
12843          - Fixed border calculations
12844          - Fixed horizontal scrolling in single column listboxes
12845          - Fixed drawing issues
12846
12847 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
12848
12849         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
12850           FormBorderStyle enum
12851         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
12852           code to determine FormBorderStyles from CreateParams
12853         * Form.cs:
12854           - Fixed bug where we'd set the wrong window styles if we were
12855             not creating an MDI window
12856           - Added call to XplatUI.SetBorderStyle when form borders are set
12857         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
12858         * Hwnd.cs:
12859           - Removed obsolete edge style
12860           - Switched from BorderStyle to FormBorderStyle
12861         
12862 2005-10-10  Jackson Harper  <jackson@ximian.com>
12863
12864         * Form.cs: Use the property to get the window handle instead of
12865         accessing it directly. Prevents a null reference exception.
12866
12867 2005-10-10  Jackson Harper  <jackson@ximian.com>
12868
12869         * TreeView.cs: Don't adjust the rect given to DrawString now that
12870         our libgdiplus draws correctly.
12871
12872 2005-10-08  Jackson Harper  <jackson@ximian.com>
12873
12874         * TreeView.cs: Don't try to find the clicked on node if there are
12875         no nodes in the tree.
12876
12877 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
12878
12879         * RichTextBox.cs:
12880
12881           restore
12882
12883 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
12884
12885         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
12886           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
12887           ErrorProvider.cs:
12888           Use ResPool for brushes and dispose System.Drawing objects that
12889           are not used anymore.
12890
12891 2005-10-07  Jackson Harper  <jackson@ximian.com>
12892
12893         * MdiChildContext.cs: Use the new borders instead of drawing them
12894         ourselves.
12895
12896 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
12897
12898         * Calling UpdateBounds after changing the window's BorderStyle 
12899         since the style can change the ClientSize
12900
12901 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12902
12903         * Control.cs: Made PaintControlBackground virtual
12904         * Panel.cs: Overriding PaintControlBackground instead of using paint
12905           event; paint event method was interfering with 'real' users of the
12906           event.
12907
12908 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
12909
12910         * ThemeWin32Classic.cs: remove border drawing since it is handled
12911         by the base control class now and was causing double border drawing.
12912
12913 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12914
12915         * Panel.cs: Redraw our background on paint. Not a pretty solution,
12916           but it does seem to match MS behaviour. This fixes bug #75324
12917
12918 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12919
12920         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
12921           somewhat hackish looking
12922
12923 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12924
12925         * TextBoxBase.cs:
12926           - We now accept Enter even if AcceptEnter is false, if the containing
12927             form does not have an AcceptButton configured (fixes bug #76355)
12928           - Calculations are now fixed to no longer use Width/Height, but
12929             ClientSize.Width/Height, since we now support borders (this was
12930             a result of fixing borders and therefore bug #76166)
12931           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
12932             true (fixes bug #76354)
12933         
12934 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12935
12936         * Control.cs: 
12937           - Defaulting BorderStyle and setting it in XplatUI when our window 
12938             is created
12939           - Added enum check to InternalBorderStyle setter
12940         * XplatUIX11.cs: 
12941           - Added drawing of window borders
12942           - Now properly calculates WM decorations offset for toplevel 
12943             windows (fixes bug #74763)
12944         * XplatUIWin32.cs: 
12945           - Implemented BorderStyles for windows (we're letting win32 draw 
12946             the border for us)
12947           - Fixed the signature for SetWindowLong
12948         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
12949           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
12950           setting borders
12951         * UpDownBase.cs: Remove drawing of borders, this is handled by
12952           the driver, outside the client area
12953         * ListView.cs: Removed bogus border calculations. The control should
12954           be oblivious to borders, since those are not part of the client
12955           area. 
12956         * X11DesktopColors.cs: Commented out (currently) unneeded variables
12957         * ThemeWin32Classic.cs: Removed border calculations from ListView 
12958           drawing code
12959
12960 2005-10-06  Jackson Harper  <jackson@ximian.com>
12961
12962         * MdiChildContext.cs: Clear out the old virtual position remove
12963         all the unneeded calls to CreateGraphics.
12964
12965 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12966
12967         * TextControl.cs: Use proper color for highlighted text; fixes #76350
12968
12969 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12970
12971         * Form.cs: 
12972           - Added loading and setting of our new default icon
12973           - Only set icon if window is already created
12974
12975 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12976
12977         * Label.cs:
12978           - Do not explicitly set the foreground and background colors, to
12979             allow inheriting from parents (fixes #76302)
12980           - Use Control's InternalBorderStyle property to deal with borders
12981
12982 2005-10-06  Jackson Harper  <jackson@ximian.com>
12983
12984         * MdiChildContext.cs: Use the new xplatui function to draw a
12985         reversible rect.
12986
12987 2005-10-06  Jackson Harper  <jackson@ximian.com>
12988
12989         * Form.cs: Add the parent before creating the child context cause
12990         we need the parent when setting up the child.
12991
12992 2005-10-06  Jackson Harper  <jackson@ximian.com>
12993
12994         * FolderBrowserDialog.cs: redo the tree population code so a
12995         second thread isn't used. Should be a lot faster and more stable
12996         now.
12997
12998 2005-10-05  Jackson Harper  <jackson@ximian.com>
12999
13000         * TreeView.cs: There are no expand/collapse boxes if the node has
13001         no children.
13002
13003 2005-10-05  Jackson Harper  <jackson@ximian.com>
13004
13005         * X11DesktopColors.cs: Get menu colours for the gtk theme.
13006
13007 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
13008
13009         * FileDialog.cs: Fix InitialDirectory
13010
13011 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13012
13013         * ComboBox.cs:
13014                 - Fixes changing between styles
13015                 - Fixes simple mode
13016                 - Fixes last item crashing when navigating with keyboard
13017
13018 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
13019
13020         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
13021
13022 2005-10-05  Jackson Harper  <jackson@ximian.com>
13023
13024         * TreeView.cs: If updating the root node do a full refresh.
13025         * TreeNode.cs: The root node should be expanded by default. Also
13026         added a utility prop to tell if we are the root node.
13027         * TreeNodeCollection.cs: Only refresh if the node we are being
13028         added to is expanded. Also added a comment on a potential
13029         optimization.
13030         
13031 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
13032
13033         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
13034           in dispose method. Fixes #76330
13035
13036 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
13037
13038         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
13039
13040                 - Implements vertical and horizontal scrolling using XplatUI
13041                 - Fixes keyboard navagation
13042                 - Fixes EnsureVisible
13043                 - Drawing fixes
13044                 - Handles and draws focus properly
13045
13046
13047 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
13048
13049         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
13050           Create handle. NET_2_0: Destroy handle when value is null.
13051
13052 2005-10-03  Jackson Harper  <jackson@ximian.com>
13053
13054         * ScrollBar.cs: My last scrollbar patch was broken. This is a
13055         revert and a new patch to prevent the thumb from refreshing so
13056         much.
13057
13058 2005-10-02  Jackson Harper  <jackson@ximian.com>
13059
13060         * ScrollBar.cs: Don't update position if it hasn't actually
13061         changed. This occurs when you hold down the increment/decrement
13062         buttons and the thumb gets to the max/min.
13063
13064 2005-10-01  Jackson Harper  <jackson@ximian.com>
13065
13066         * Form.cs:
13067         * MdiChildContext.cs:
13068         * MdiClient.cs: Implement ActiveMdiChild in Form.
13069
13070 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
13071
13072         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
13073
13074 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
13075
13076         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
13077           be found
13078
13079 2005-09-30  Jackson Harper  <jackson@ximian.com>
13080
13081         * ListBox.cs: Don't do a full refresh unless some data has
13082         actually changed.
13083
13084 2005-09-30  Jackson Harper  <jackson@ximian.com>
13085
13086         * TreeView.cs: Make sure that the checkboxes size is factored in
13087         even when not visible.
13088
13089 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13090
13091         * FileDialog.cs: Fix Jordi's build break
13092
13093 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13094
13095         * FileDialog.cs: 
13096                 - Use standard the Windows colours for the combobox as espected
13097                 - Dispose objects that use resouces when no longer need them
13098
13099 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
13100
13101         * X11DesktopColors.cs: Initial incomplete implementation
13102         * XplatUIX11.cs: Added call to initialize X11DesktopColors
13103
13104 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
13105
13106         * Theme.cs: 
13107           - Switched Theme color names to match the names defined in 
13108             System.Drawing.KnownColors. Life's hard enough, no need to make 
13109             it harder.
13110           - Added setters to all theme color properties so themes can set
13111             their color schemes. The setters also propagate the color changes
13112             to System.Drawing.KnownColors via reflection
13113         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
13114           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
13115           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
13116           use the new, more logical theme color names
13117         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
13118           post-NT colors
13119         * ThemeWin32Classic.cs:
13120           - Removed code to set the old classic Windows colors. Instead it
13121             now relies on the colors returned by System.Drawing.KnownColors
13122             which will be either modern static colors (Unix) or colors
13123             read from the user's configuration (Win32)
13124           - Updated to use the new, more logical theme color names
13125           - Switched DataGrid drawing code to use only Theme colors instead of
13126             a mix of System.Drawing.KnownColors and Theme colors
13127           - DrawFrameControl(): Removed code that fills the button area, the
13128             fill would overwrite any previous fill done by a control. This
13129             fixes bug #75338 
13130           - Added DrawReversibleRectangle() stub
13131         * ScrollableControl.cs: Set visible state to false when scrollbars
13132           are removed (pdn fix)
13133         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
13134           DrawReversibleRectangle() method to allow drawing primitive 
13135           'rubber bands'
13136         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
13137
13138 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13139
13140         * ImageList.cs: Add(Icon): Create handle.
13141
13142 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
13143
13144         * ListView.cs:
13145         * ThemeWin32Classic.cs:
13146                 - Fixes detail mode
13147                 - Sets clippings
13148                 - Issues with drawing
13149
13150 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13151
13152         * ImageList.cs: Moved RecreateHandle back to ImageList as event
13153           source has to be the ImageList.
13154
13155 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13156
13157         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
13158
13159 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13160
13161         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
13162
13163 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13164
13165         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
13166
13167 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
13168         * GridItem.cs: Fixed TODOs
13169         * GridItemCollection.cs: Added ICollection interface
13170
13171 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13172
13173         * ImageList.cs: Resize icons when needed.
13174
13175 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
13176
13177         * ListViewItem.cs
13178                 - Fixes GetBounds and returns on screen rects
13179         * ListView.cs:
13180                 - Fixes vertical and horzintal scrolling of items
13181         * ThemeWin32Classic.cs:
13182                 - Fixes drawing
13183                 
13184 2005-09-29  Raja R Harinath  <harinath@gmail.com>
13185
13186         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
13187
13188 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
13189
13190         * ImageList.cs: Added comments about handle creation. Moved Handle,
13191           HandleCreated and OnRecreateHandle implementations to ImageCollection.
13192           Handle is created in Add methods.
13193
13194 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13195          
13196         * DataGridDrawingLogic.cs: 
13197                 - Takes rows into account on Colum calculations
13198                 - Returns the column when clickig
13199         * DataGrid.cs:
13200                 - Fixes default HitTestInfo values
13201                 - Fixes HitTestInfo.ToString
13202                 - Fixes ResetBackColor          
13203         
13204 2005-09-28  Jackson Harper  <jackson@ximian.com>
13205
13206         * MdiChildContext.cs: Obey rules for fixed sized windows (no
13207         sizing or cursor changes). Also added some temp code to draw the
13208         titlebars text (Makes dev a little easier).
13209
13210 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13211
13212         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
13213
13214 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13215          
13216         * ListBox.cs: Fixes bug 76253
13217
13218 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13219
13220         * ImageList.cs: Added comments about the current implementation. Added
13221           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
13222           Format32bppArgb to preserve transparency and can use Graphics.FromImage
13223           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
13224           with Bitmap.LockBits for better performance. Revised the whole file to
13225           match MS.NET behaviour and provide better performance. Non-public
13226           interface members are calling public members even when they throw
13227           NotSupportedException for better maintainability. Moved ColorDepth,
13228           ImageSize, ImageStream and TransparentColor implementations to
13229           ImageCollection for better performance as these properties are not used
13230           by ImageList.
13231         * ImageListStreamer.cs: Added a new internal constructor that takes an
13232           ImageList.ImageCollection and serializes Images based on
13233           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
13234           match ImageList property name.
13235
13236 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
13237
13238         * ListBox.cs: Fixes IndexFromPoint for last item
13239
13240 2005-09-27  Jackson Harper  <jackson@ximian.com>
13241
13242         * Form.cs: Set the position of new mdi children correctly.
13243
13244 2005-09-27  Jackson Harper  <jackson@ximian.com>
13245
13246         * MdiClient.cs: New mdi children need to be added to the back of
13247         the controls collection so the zorder is set correctly. Also add a
13248         count of all the child windows that have been created.
13249
13250 2005-09-27  Jackson Harper  <jackson@ximian.com>
13251
13252         * Form.cs (CreateParams): Setup MDI forms correctly.
13253
13254 2005-09-27  Jackson Harper  <jackson@ximian.com>
13255
13256         * MdiChildContext.cs:
13257         * MonthCalendar.cs:
13258         * UpDownBase.cs:
13259         * ListBox.cs:
13260         * ListView.cs:
13261         * TextBoxBase.cs:
13262         * TreeView.cs:
13263         * ScrollableControl.cs:
13264         * ComboBox.cs: Add implicit controls using the new implict control
13265         functionality in ControlCollection. Also try to block multiple
13266         control add in a suspend/resume layout to save some cycles.
13267         
13268 2005-09-27  Jackson Harper  <jackson@ximian.com>
13269
13270         * Control.cs: Add functionality to the controls collection to add
13271         'implicit controls' these are controls that are created by the
13272         containing control but should not be exposed to the user. Such as
13273         scrollbars in the treeview.
13274         * Form.cs: The list var of the ControlsCollection is no longer
13275         available because of the potential of implicit controls getting
13276         ignored by someone accessing the list directly.
13277
13278 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
13279
13280         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
13281           loose it's parent. (Fixed bug introduced in r49103 when we added
13282           setting the child parent to null on Remove)
13283
13284 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
13285
13286         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
13287         * Splitter.cs: Added missing attributes for BorderStyle property.
13288         * TextBoxBase.cs: Marked Calculate* methods internal.
13289         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
13290         MS.NET.
13291
13292 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
13293          
13294         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
13295
13296 2005-09-25  Jackson Harper  <jackson@ximian.com>
13297
13298         * TreeView.cs: Update the node bounds correctly regardless of
13299         whether the node is visible.
13300
13301 2005-09-25  Jackson Harper  <jackson@ximian.com>
13302
13303         * ImageList.cs: Don't dispose the image after it is added to the
13304         image list. Only reformat images that need to be resized.
13305
13306 2005-09-25  Jackson Harper  <jackson@ximian.com>
13307
13308         * ImageList.cs: Don't set the format when changing the image.
13309
13310 2005-09-25  Jackson Harper  <jackson@ximian.com>
13311
13312         * TreeView.cs: We can't just assume the node has a font. Use the
13313         treeviews font if no node font is available.
13314
13315 2005-09-25  Jackson Harper  <jackson@ximian.com>
13316
13317         * TreeView.cs: Allow the scrollbars to be reset with negative
13318         values.
13319         - Don't add scrollbars to negative sized windows.
13320
13321 2005-09-23  Jackson Harper  <jackson@ximian.com>
13322
13323         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
13324         old Mono.Posix. Also remove some stray code that shouldn't have
13325         been committed.
13326
13327 2005-09-23  Jackson Harper  <jackson@ximian.com>
13328
13329         * TreeView.cs: Attempt at proper sizing of the horizontal
13330         scrollbar. Also don't resize the scrollbars unless they are
13331         visible.
13332
13333 2005-09-23  Jackson Harper  <jackson@ximian.com>
13334
13335         * TreeView.cs: We don't need to expand the invalid area when the
13336         selection changes, as this is all drawn in the node's bounding
13337         box. The area needs to be expanded (previous typo was contracting
13338         it) when the focus rect moves.
13339
13340 2005-09-23  Jackson Harper  <jackson@ximian.com>
13341
13342         * TreeView.cs: Display the selection box under the correct
13343         circumstances. We were rendering white text with no selection box
13344         before.
13345
13346 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
13347
13348         * TextControl.cs(Split): Now updates selection start/end if it points 
13349           into a line that's being split. Fixes a FIXME and bug #75258
13350
13351 2005-09-23  Jackson Harper  <jackson@ximian.com>
13352
13353         * Binding.cs:
13354         * ListControl.cs: Don't use the path when retrieving binding
13355         managers from the binding context. My bat sense tells me that the
13356         path is only used on insertion.
13357
13358 2005-09-22  Jackson Harper  <jackson@ximian.com>
13359
13360         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
13361
13362 2005-09-22  Jackson Harper  <jackson@ximian.com>
13363
13364         * Splitter.cs: There are special cursors used for splitting.
13365         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
13366
13367 2005-09-22  Jackson Harper  <jackson@ximian.com>
13368
13369         * Splitter.cs: Change the cursor appropriately when the splitter
13370         is moused over, so the user actually knows there is a splitter
13371         there.
13372
13373 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13374
13375        * Label.cs : Fix ToString method to give same output as MS.NET
13376
13377 2005-09-22  Jackson Harper  <jackson@ximian.com>
13378
13379         * TreeView.cs: Create the scrollbars when the handle is created
13380         and add them right away, just make them invisble. Also account for
13381         the window being shrunk vertically to the point that the vert
13382         scrollbar needs to be added.
13383         - Remove some 0.5 adjustments to get around anti aliasing issues.
13384         
13385 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
13386          
13387         * MainMenu.cs: Fixes default value
13388         * MenuItem.cs: Fixes default value
13389
13390 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
13391
13392         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
13393
13394 2005-09-21  Jackson Harper  <jackson@ximian.com>
13395
13396         * Control.cs: Don't try to set the border style on the window if
13397         it hasn't been created. When the window is created the border
13398         style will be used.
13399
13400 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13401
13402         * Control.cs (Update): Don't call XplatUI if we don't have a
13403           window handle yet
13404
13405 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13406
13407         * ContainerControl.cs: Instead of throwing an exception, print
13408           a one-time warning about Validate not being implemented
13409         * XplatUIWin32.cs: Removed debug output
13410
13411 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13412
13413         * Control.cs: Only set XplatUI background if we expect the windowing
13414           system to handle the background. This stops controls that draw their
13415           own background from flickering
13416
13417         * XplatUIX11.cs: Support custom visuals and colormaps for window 
13418           creation. This allows, amongst other things, using MWF X11 windows 
13419           with OpenGL.
13420
13421 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13422
13423         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
13424           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
13425           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
13426           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
13427           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
13428           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
13429           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
13430           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
13431           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
13432           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
13433           GridColumnStylesCollection.cs, 
13434           IDataGridColumnStyleEditingNotificationService.cs,
13435           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
13436           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
13437           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
13438           TreeNodeCollection.cs, AmbientProperties.cs, 
13439           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
13440           DataObject.cs, ErrorProvider.cs, Splitter.cs,
13441           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
13442           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
13443           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
13444           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
13445           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
13446           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
13447           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
13448           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
13449           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
13450           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
13451           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
13452           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
13453           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
13454           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
13455           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
13456           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
13457           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
13458           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
13459           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
13460           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
13461           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
13462           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
13463           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
13464           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
13465           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
13466           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
13467           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
13468           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
13469           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
13470           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
13471           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
13472           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
13473           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
13474           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
13475           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
13476
13477 2005-09-21  Jackson Harper  <jackson@ximian.com>
13478
13479         * TreeNode.cs: Call Before/After Expand not Collapse when
13480         expanding.
13481
13482 2005-09-20  Jackson Harper  <jackson@ximian.com>
13483         
13484         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
13485
13486 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13487          
13488         * ListViewItem.cs:
13489                 - Fixes bug 76120
13490                 - Fixes proper storing of subitems
13491                 - Fixes not updated items
13492
13493 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
13494
13495         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
13496           things if our window handle isn't created yet. Also disabled 
13497           debug for TextBoxBase
13498
13499 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
13500
13501         * MenuAPI.cs: Remove filtering of events to allow menu usage
13502
13503 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13504
13505         * Cursor.cs: Allow null to be passed to Cursor.Current.
13506
13507 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
13508
13509         * ThemeWin32Classic.cs:
13510           - Change some private methods/fields to protected virtual so that 
13511             they can be accessed and overriden in derived classes
13512           - First refactoring of some methods. Derived themes now don't 
13513             need to duplicate the complete code from ThemeWin32Classic
13514         * ThemeNice.cs:
13515           - Added nice StatusBar
13516           - Derive from ThemeWin32Classic and not Theme
13517           - Removed duplicate ThemeWin32Classic code
13518
13519 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13520
13521         * Control.cs (ControlCollection.Add): If the value null is passed
13522         the control is ignored. 
13523
13524         Optimize this loop.
13525
13526 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
13527
13528         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
13529           PostQuitMessage state.
13530         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
13531
13532 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
13533
13534         * Application.cs: Our constructor will never get called, move 
13535           initialization to fields; fixes bug #75933
13536
13537 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13538
13539         * FileDialog.cs :
13540                 - Allow files to be selected properly using file name
13541                 combo box.
13542                 - Add ability to change diretory (absolute / relative)
13543                 using file name combo box.
13544
13545 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13546          
13547         * ListBox.cs: 
13548                 - Fixes Multicolumn listboxes item wrong calculations
13549                 - Allows to click when only one item is in the listbox
13550                 - Fixes crash when no items using keyboard navigation
13551
13552 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
13553
13554         * ComboBox.cs: Reverted almost everything from the latest patch which
13555           broke ComboBox
13556
13557 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
13558         
13559         * ToolTip.cs:
13560                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
13561         * ComboBox.cs:
13562                 - When DropDownStyle is Simple, it does not show scrollbar 
13563                 to the last item of the list.
13564                 - When DropDownStyle is Simple, it crashed when the list was 
13565                 scrolled down with the down cursor key.
13566                 - Fixed a bug that when DropDownStyle is DropDownList, the 
13567                 selected item was not shown.
13568                 - The position of the selected item was not preserved when 
13569                 the next dropdown happened.
13570         * ThemeWin32Classic.cs:
13571                 - Items were wrapped at the right end.
13572         * CheckedListBox.cs:
13573                 - Fixed Add method
13574         * ListBox.cs:
13575                 - Items should be fully shown.
13576                 - When resizing and vertical scrollbar disappeared, the item 
13577                 of index 0 should be on the top of the list.
13578                 - GetItemRectangle should consider the size of ver. scrollbar
13579         * StatusBar.cs:
13580                 - SizingGrip area should not be allocated when it is not 
13581                 displayed.
13582                 - Now it reflects MinWidth of the containing panel and 
13583                 fixed a crash that happens when its width becomes so small.
13584
13585 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13586
13587         * CheckedListBox.cs: Fixes bug 76028
13588         * ListBox.cs: Fixes bug 76028
13589
13590 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13591
13592         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
13593         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
13594
13595 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
13596
13597         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
13598
13599 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13600
13601         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
13602
13603 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13604
13605         * IRootGridEntry.cs: Added
13606         * PropertyGridCommands.cs: Added
13607         * PropertiesTab.cs: Added missing methods and property
13608         * PropertyGridView.cs: Made class internal
13609         * PropertyGridTextBox.cs: Made class internal
13610
13611 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13612
13613         * MimeIcon.cs: Try to check some other environment variables
13614           if "DESKTOP_SESSION" returns "default"
13615
13616 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13617
13618         * ThemeNice.cs: Corrected background colors (e.g. menus)
13619         * ColorDialog.cs: Use correct background colors for controls
13620
13621 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13622
13623         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
13624
13625 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
13626
13627         * RichTextBox.cs: Added initial implementation
13628         * lang.cs: Removed. Was accidentally checked in long time ago
13629         * TODO: Removed. Contents were obsolete
13630
13631 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13632                                                                                 
13633         * PropertiesTab.cs : Added
13634
13635 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13636                                                                                 
13637         * PropertyGrid.cs : Update
13638         * PropertyGridView.cs : Update
13639         * System.Windows.Forms.resx : Added images and strings
13640
13641 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
13642
13643         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
13644  
13645 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
13646
13647         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
13648           a busy loop right after the Ungrab the X11 display is otherwise 
13649           blocked
13650
13651 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
13652
13653         * ThemeWin32Classic.cs: Optimise the use of clipping
13654
13655 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
13656
13657         * DataGrid.cs: fixes recursion bug
13658
13659 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
13660
13661         * ThemeNice.cs: 
13662           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
13663           - Cleanup
13664
13665 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
13666
13667         * ThemeNice.cs: Draw nice ProgressBars
13668
13669 2005-09-01  Miguel de Icaza  <miguel@novell.com>
13670
13671         * VScrollBar.cs: Another buglet found by Aaron's tool. 
13672
13673         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
13674         bug finder.
13675
13676 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
13677
13678         * ThemeNice.cs:
13679           - Added nicer menu drawing
13680           - Updated DrawTab
13681           - some refactoring
13682
13683 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13684
13685         * CreateParams.cs (ToString): Made output match MS
13686         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
13687             handle is already created (to avoid forcing window creation)
13688         * XplatUIX11.cs: Set window text to caption after creating window,
13689           in case Text was set before window was created
13690         * Form.cs: Use this.Text instead of a static string as caption
13691
13692 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13693
13694         * NotifyIcon.cs: Don't set the window to visible; this screws
13695           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
13696           OnPaint without a bitmap)
13697         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
13698           happen very often anyway; we could add the check to the WM_PAINT 
13699           event generation code
13700
13701 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13702
13703         * NotifyIcon.cs: Fill the icon area with a background color, to 
13704           avoid 'residue' when transparent icons are drawn
13705         * XplatUIX11.cs:
13706           - Handle whole_window == client_window when destroying windows
13707           - SystrayAdd(): Set client_window to whole_window value to
13708             get mouse and other events passed to NotifyIcon
13709
13710 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13711
13712         * Form.cs: Set proper default for Opacity property
13713         * NotifyIcon.cs:
13714           - ShowSystray(): Don't bother creating telling the OS
13715             about the systray item if no icon is provided
13716           - Now handles WM_NCPAINT message to deal with whole/client window
13717             split
13718           - Create window as visible to not get caught by Expose optimization
13719         * Hwnd.cs: Removed debug message
13720         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
13721           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
13722             PaintEventStart/End to use new client argument
13723         * TextBoxBase.cs:
13724           - Commented out debug messages
13725           - Switched PaintEventStart/End to use new client argument
13726         * XplatUI.cs: Added client window bool to PaintEventStart()/
13727           PaintEventEnd() calls, to support drawing in non-client areas
13728         * XplatUIDriver.cs: 
13729           - Added client window bool to PaintEventStart()/PaintEventEnd() 
13730             calls, to support drawing in non-client areas
13731           - Added conditional compile to allow using MWF BeginInvoke 
13732             on MS runtime
13733         * XplatUIX11.cs:
13734           - Added some conditional debug output
13735           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
13736             whole/client window split
13737           - Implemented handling of client argument to PaintEventStart()/End()
13738         * Control.cs:
13739           - Throw exception if BeginInvoke() is called and the window handle
13740             or one of the window's parent handles is not created
13741           - Added conditional compile to allow using MWF BeginInvoke on
13742             MS runtime
13743           - get_Parent(): Only sets parent if handle is created. This avoids
13744             forcing window handle creation when parent is set.
13745           - Now fires Layout and Parent changed events in proper order
13746           - Switched to use Handle instead of window.Handle for Z-Order setting,
13747             the get_Parent() patch above causes us to possibly get null for 'window'
13748           - Implemented handling of client argument to PaintEventStart()/End()
13749           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
13750             default handling)
13751           - Now sends a Refresh() to all child windows when Refresh() is called
13752
13753 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
13754
13755         * Form.cs: Added (non-functional) Opacity property
13756         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
13757
13758 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
13759         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
13760           use export MONO_THEME=nice to activate it.
13761           Currently supported controls:
13762           - Button
13763           - ComboBox
13764           - ScrollBar
13765           - TabControl (TabAlignment.Top only, other will follow)
13766         * ThemeEngine.cs: Add theme nice
13767         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
13768           if enabled
13769
13770 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
13771
13772         * Splitter.cs: Resize docked control and its neighbor.
13773
13774 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13775         -- Making Windows with Menus layout correctly --
13776         * Form.cs : The first leg of the fix
13777                 Menu setter - adjust Client Size as needed to make space for the menu
13778                 SetClientSizeCore - doesn't call base version to be able to pass the 
13779                         menu handle to XplatUI.CalculateWindowRect
13780         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
13781         * XplatUIX11.cs: The critical second leg of the fix
13782                 GetWindowPos needs to use a recalculated client_rect
13783                 so that resizing the window doesn't break layout of child controls. 
13784                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
13785                 Lots of \t\n killed
13786
13787 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13788
13789         * Label.cs: Now properly recalculates width and height on Font and Text
13790           changes if AutoSize is set
13791
13792 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13793         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
13794
13795 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
13796
13797         * ImageList.cs: Makes ToString method compatible with MS
13798
13799 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
13800
13801         * MenuAPI.cs: fixes bug 75716
13802
13803 2005-08-11 Umadevi S <sumadevi@novell.com>
13804         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
13805
13806 2005-08-11 Umadevi S <sumadevi@novell.com>
13807         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
13808
13809 2005-08-10  Umadevi S <sumadevi@novell.com>
13810         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
13811
13812 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
13813
13814         * Menu.cs: fixes bug 75700
13815         * MenuAPI.cs: fixes navigation issues
13816
13817 2005-08-09  Umadevi S <sumadevi@novell.com>
13818         * CheckedListBox.cs - simple fix for GetItemChecked.
13819
13820 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
13821
13822         * ComboBox.cs: Serveral fixes
13823         * ListBox.cs: Serveral fixes
13824
13825 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13826
13827         * ComboBox.cs: Fixes FindString methods and GetItemHeight
13828         * ListBox.cs: Fixes FindString methods
13829
13830 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13831
13832         * DataGrid.cs: fixes bugs exposed by new tests
13833
13834 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
13835
13836         * Mime.cs: Compile Mono assembly references only if compiling
13837           with Mono (Allows to build with VS.Net again)
13838
13839 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
13840
13841         * Control.cs (PaintControlBackground): Draw background image
13842         corrrectly.
13843         (CheckForIllegalCrossThreadCalls): Stubbed.
13844         
13845         * Form.cs (OnCreateControl): Center when should be centered.
13846         
13847         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
13848
13849 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
13850
13851         * Binding.cs: Binding to properties should be case unsensitive
13852
13853 2005-07-18 vlindos@nucleusys.com
13854
13855         * DataGrid.cs: fixes setmember order
13856
13857 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
13858
13859         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
13860         * FileDialog.cs: FileDialog is now resizable and uses the new
13861           MimeIconEngine
13862
13863 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
13864
13865         * DataGridTextBoxColumn.cs: default value
13866         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
13867         * GridTableStylesCollection.cs: fixes checking MappingName
13868         * DataGridDrawingLogic.cs: fixes drawing logic issues
13869         * DataSourceHelper.cs: rewritten to make compatible with more data sources
13870         * DataGrid.cs: fixes    
13871
13872 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
13873
13874         * MimeGenerated.cs: Use case sensitive comparer for
13875           NameValueCollections
13876
13877 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
13878
13879         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
13880         * ThemeWin32Classic.cs: bug fixes, code refactoring
13881         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
13882         * DataGrid.cs: bug fixes, code refactoring
13883         * DataGridTextBox.cs: bug fixes, code refactoring
13884         * DataGridColumnStyle.cs:  bug fixes, code refactoring
13885         * Theme.cs:  bug fixes, code refactoring
13886
13887 2005-07-01  Peter Bartok  <pbartok@novell.com> 
13888
13889         * TextControl.cs: Quick fix for the reported crash on ColorDialog
13890           and other text box usage
13891
13892 2005-07-01  Jackson Harper  <jackson@ximian.com>
13893
13894         * TabControl.cs: Make sure the bottom of the tab covers the pages
13895         border.
13896
13897 2005-06-30  Peter Bartok  <pbartok@novell.com> 
13898
13899         * Form.cs (ShowDialog): Assign owner of the dialog
13900         * TextBoxBase.cs: Always refresh caret size when deleting, caret
13901           might have been moved to a tag with different height
13902
13903 2005-06-30  Jackson Harper  <jackson@ximian.com>
13904
13905         * Form.cs: Don't create an infinite loop when setting focus
13906         * MenuItem.cs: Don't dirty the parents if we don't have any
13907
13908 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
13909
13910         * LibSupport.cs: Rename
13911
13912 2005-06-29  Peter Bartok  <pbartok@novell.com>
13913
13914         * TextBoxBase.cs: Re-align caret after deleting a character
13915         * TextControl.cs:
13916           - DeleteChars(): Ensure that tag covers the provided position
13917           - StreamLine(): Drop reference for dropped tag
13918
13919 2005-06-29  Peter Bartok  <pbartok@novell.com> 
13920
13921         * TextControl.cs: 
13922           - Selections now work properly, anchoring at the initial location
13923             and properly extending in either direction (SetSelectionToCaret(),
13924             SetSelectionStart() and SetSelectionEnd())
13925           - No longer redraws the whole control on selection change, now
13926             calculates delta between previous and new selection and only
13927             invalidates/redraws that area
13928           - Fixed FindPos() math off-by-one errors
13929           - Changed DeleteChars() to verify the provided tag covers the
13930             provided position, selections may have a tag that doesn't cover
13931             the position if the selection is at a tag border
13932           - Fixed off-by-one errors in DeleteChars()
13933           - Added missing streamlining check in DeleteChars() to remove
13934             zero-length tags
13935           - Implemented Invalidate() method, now properly calculates exposures
13936             between two given lines/positions
13937           - Implemented SetSelection()
13938           - Obsoleted and removed FixupSelection()
13939           - Improved RecalculateDocument() logic, removing code duplication
13940
13941 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13942
13943         * LibSupport.cs: changes to match different input/output arguments.
13944
13945 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13946
13947         * LibSupport.cs: added libsupport.so init routine.
13948
13949 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
13950         
13951         * ControlBindingsCollection.cs
13952                 - Throws an exception on null datasource when adding
13953                 - Checks for duplicated bindings when adding
13954
13955 2005-06-28  Jackson Harper  <jackson@ximian.com>
13956
13957         * TreeView.cs (OnKeyDown): Support left and right properly
13958         (navigates as well as expanding and collapsing.
13959         - Add support for Multiply, this expands all the selected nodes
13960         children.
13961         - Fix some tabbing.
13962
13963 2005-06-28  Jackson Harper  <jackson@ximian.com>
13964
13965         * TreeView.cs: Implement keyboard navigation, currently supports,
13966         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
13967         support for toggling checkboxes with the space bar.
13968
13969 2005-06-28  Jackson Harper  <jackson@ximian.com>
13970
13971         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
13972         tree.
13973
13974 2005-06-28  Jackson Harper  <jackson@ximian.com>
13975
13976         * TreeView.cs: Add missing event.
13977
13978 2005-06-27  Peter Bartok  <pbartok@novell.com> 
13979
13980         * TextControl.cs:
13981           - Made line ending size configurable (now allows for counting 
13982             lineendings as \n or \r\n)
13983           - Added margin to viewport to keep caret visible on right side
13984           - Fixed translation routines for line/pos to documentpos to consider
13985             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
13986           - Fixed some line-endings to be unix style
13987           - Fixed Document.FormatText to perform it's calculations 1-based
13988           - Added descriptions for a few methods that might otherwise get 
13989             used wrong
13990           - Added NOTE section with some basic conventions to remember at 
13991             the top of the file
13992           - Major fixup for RichTextBox selection drawing:
13993             * Fixed crashes when multiple tags on a single line were selected
13994             * fixed selection box drawing not overlaying text
13995             * fixed bogus offset calculation for tags not starting at index 1
13996             * Switched behaviour from using multiple Substrings of a 
13997               StringBuilder.ToString() to using multiple 
13998               StringBuilder.ToString(start, length) statements, hoping this is
13999               faster (kept original version commented out in the code, in case
14000               original version was faster)
14001         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
14002           alignment != Left
14003         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
14004           call it as well
14005
14006 2005-06-27  Jackson Harper  <jackson@ximian.com>
14007
14008         * TabControl.cs: Move to the left and right with the arrow
14009         keys. These keys don't cycle beyond first and last like
14010         tab. Refresh all the tabs when scrolling them to the left or
14011         right.
14012
14013 2005-06-27  Jackson Harper  <jackson@ximian.com>
14014
14015         * TabControl.cs:
14016           - ToString: Added method
14017           - CreateParams: Remove TODO and comment
14018           - OnKeyDown: Cycle through bounds properly.
14019           - SelectedIndex: Scroll to the right or left if we need to
14020           display the newly selected tab.
14021
14022 2005-06-23  Jackson Harper  <jackson@ximian.com>
14023
14024         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
14025         set.
14026
14027 2005-06-23  Jackson Harper  <jackson@ximian.com>
14028
14029         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
14030         CTRL-SHIFT-TAB, and HOME, END are there any others?
14031
14032 2005-06-23  Jackson Harper  <jackson@ximian.com>
14033
14034         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
14035
14036 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14037         
14038         * DataGridTextBoxColumn.cs: fixes and enhancements
14039         * ThemeWin32Classic.cs: fixes and enhancements
14040         * DataGridBoolColumn.cs:  fixes and enhancements
14041         * DataGridDrawingLogic.cs:  fixes and enhancements
14042         * CurrencyManager.cs: fixes and enhancements
14043         * DataGrid.cs: fixes and enhancements
14044         * DataGridColumnStyle.cs:  fixes and enhancements
14045
14046 2005-06-22  Jackson Harper  <jackson@ximian.com>
14047
14048         * TabControl.cs: Add some missing methods that just call into the
14049         base. Make the TabPageCollection's IList interface behave in the
14050         same manner as the MS implementation.
14051
14052 2005-06-22  Peter Bartok  <pbartok@novell.com> 
14053
14054         * TextControl.cs: Added sanity check
14055         * TextBoxBase.cs: 
14056           - Fixed wrapping behaviour, don't set wrap on single line controls
14057             (this fixes the breakage of colordialog introduced in an earlier
14058              checkin)
14059           - Added rudimentary support for autoscrolling right-aligned controls
14060             (still needs fixing, also, center alignment scroll is missing)
14061
14062 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
14063         
14064         * ScrollBar.cs: Fixes thumbpos on Maximum values
14065
14066 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
14067         
14068         * PropertyGridView.cs: Pass context information to UITypeEditors 
14069
14070 2005-06-21  Peter Bartok  <pbartok@novell.com> 
14071
14072         * TextBoxBase.cs:
14073           - Now calling PositionCaret with absolute space coordinates
14074           - Enabled vertical scrolling
14075           - Better tracking of scrollbar changes, tied into WidthChange
14076             event
14077           - Improved cursor tracking
14078           - Removed debug output
14079         * TextControl.cs:
14080           - PositionCaret coordinates are now works in absolute space, not 
14081             the canvas
14082           - Improved tracking of document size
14083           - Added events for width and height changes
14084
14085 2005-06-21  Peter Bartok  <pbartok@novell.com>
14086
14087         * Form.cs: Set focus to active control when form is activated
14088         * TextControl.cs: 
14089           - Added word-wrap functionality to RecalculateLine() 
14090           - Added some short function descriptions for VS.Net to aid in
14091             writing dependent controls
14092           - Added Caret property, returning the current coords of the caret
14093           - Added ViewPortWidth and ViewPortHeight properties
14094           - Added Wrap property
14095           - Added CaretMoved event
14096           - Removed some old debug code
14097           - Split() can now create soft splits
14098           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
14099           - Added method to format existing text
14100           - Fixed size/alignment calculations to use viewport
14101           - RecalculateDocument now can handle changing line-numbers while
14102             calculating lines
14103
14104         * TextBox.cs:
14105           - Added some wrap logic, we don't wrap if alignment is not left
14106           - Added casts for scrollbar var, base class switched types to
14107             also support RichTextBoxA
14108           - Implemented handling of scrollbar visibility flags
14109
14110         * TextBoxBase.cs:
14111           - Switched scrollbars type to RichTextBoxScrollBars to support
14112             RichTextBox
14113           - Added tracking of canvas width/height
14114           - Switched scrollbars to be not selectable (to keep focus on text)
14115           - Added central CalculateDocument() method to handle all redraw
14116             requirements
14117           - Added ReadOnly support
14118           - Added WordWrap support
14119           - Fixed handling of Enter key (we now treat it as a DialogKey)
14120           - Fixed caret positioning when h or v scroll is not zero
14121           - Fixed placing/generation of vertical scrollbar
14122           - Added CalculateScrollBars() method to allow updating scrollbar
14123             limits and visibility
14124           - Fixed handling of horizontal scroll
14125           - Added handling of vertical scroll
14126           - Implemented auto-'jump' when caret moves to close to a left or
14127             right border and there is text to be scrolled into view (currently
14128             there's the potential for a stack overflow, until a bug in
14129             scrollbar is fixed)
14130
14131 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
14132         
14133         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
14134
14135 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
14136
14137         * Mime.cs:
14138         - added inodes.
14139         - return application/x-zerosize for files with size zero
14140           (if no extension pattern matches).
14141         - check matches collection for strings too.
14142         - return only the first mime type if the name value
14143           collection has more than one mime type.
14144
14145 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
14146         
14147         * PropertyGrid.cs: Cleaned up some TODOs
14148         * PropertyGridView.cs: Added support for UITypeEditors
14149
14150 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14151         
14152         * DataGrid.cs: clears cached value
14153
14154 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
14155
14156         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
14157         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
14158         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
14159         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
14160         
14161 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
14162
14163         * ThemeWin32Classic.cs: fixes colour
14164
14165 2005-06-15  Peter Bartok  <pbartok@novell.com>
14166
14167         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
14168         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
14169         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
14170         * Control.cs: Added some MWFCategory and MWFDescription attributes
14171         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
14172
14173 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
14174
14175         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
14176         usage
14177
14178 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
14179
14180         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
14181         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
14182         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
14183         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
14184         * DataGrid.cs: default datagrid settings for Default Styles, fixes
14185         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
14186
14187 2005-06-13  Jackson Harper  <jackson@ximian.com>
14188
14189         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
14190         isn't printed when the user enables dropping. (X11 does accept
14191         drops).
14192         
14193 2005-06-13  Jackson Harper  <jackson@ximian.com>
14194
14195         * TreeView.cs: Remove some TODOS.
14196
14197 2005-06-13  Jackson Harper  <jackson@ximian.com>
14198
14199         * Form.cs: Hook into the mdi framework.
14200         * MdiClient.cs: Use the base control collections add method so
14201         parents get setup correctly. Set the default back colour and dock
14202         style.
14203         * MdiChildContext.cs: New class, this bad actor handles an
14204         instance of an MDI window. Right now there is only basic
14205         support. You can drag, close, and resize windows. Minimize and
14206         Maximize are partially implemented.
14207
14208 2005-06-13  Jackson Harper  <jackson@ximian.com>
14209
14210         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
14211         freaky when both vals are negative. NOTE: There are probably other
14212         places in XplatUIX11 that this needs to be done.
14213
14214 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
14215
14216         * DataGrid.cs: implement missing methods, move KeyboardNavigation
14217         * DataGridColumnStyle.cs: fixes signature
14218
14219 2005-06-12  Jackson Harper  <jackson@ximian.com>
14220
14221         * XplatUIX11.cs: Use sizing cursors similar to the ones on
14222         windows.
14223
14224 2005-06-11  Jackson Harper  <jackson@ximian.com>
14225
14226         * StatusBarPanel.cs: Signature cleanups. Implement
14227         BeginInit/EndInit.
14228
14229 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
14230
14231         * DataGridTextBoxColumn.cs: Honors aligment
14232         * GridColumnStylesCollection.cs: Contains is case unsensitive
14233         * GridTableStylesCollection.cs: several fixes
14234         * DataGridTableStyle.cs: default column creation
14235         * DataGridDrawingLogic.cs: fixes
14236         * CurrencyManager.cs: ListName property
14237         * DataGrid.cs: multiple styles support
14238         * DataGridColumnStyle.cs: fixes
14239         
14240
14241 2005-06-10  Peter Bartok  <pbartok@novell.com>
14242
14243         * Control.cs(Select): Moved SetFocus call to avoid potential
14244           loops if controls change the active control when getting focus
14245         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
14246           the up/down buttons
14247
14248 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
14249
14250         * ImageListConverter.cs: Implemented
14251
14252 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14253
14254         * MonthCalendar.cs: Wired in NumericUpDown control for year
14255
14256 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14257
14258         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
14259           DoubleClick events, since they are not meant to be fired.
14260
14261 2005-06-09  Peter Bartok  <pbartok@novell.com>
14262
14263         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
14264           Jonathan's standalone controls into MWF, implemented missing
14265           events, attributes and methods; added xxxAccessible classes
14266         * AccessibleObject.cs: Made fields internal so other classes
14267           can change them if needed
14268
14269 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
14270
14271         * UpDownBase.cs: Complete implementation
14272         * NumericUpDown.cs: Complete implementation
14273         * DomainUpDown.cs: Complete implementation
14274
14275 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
14276
14277         * DataGridTextBoxColumn.cs: drawing fixes
14278         * DataGridCell.cs: fixes ToString method to match MSNet
14279         * DataGridTableStyle.cs: fixes
14280         * DataGridBoolColumn.cs: fixes, drawing
14281         * DataGridDrawingLogic.cs: fixes, new methods
14282         * DataGridTextBox.cs: Keyboard and fixes
14283         * DataGrid.cs:
14284                 - Keyboard navigation
14285                 - Scrolling fixes
14286                 - Row selection (single, multiple, deletion, etc)
14287                 - Lots of fixes
14288         
14289 2005-06-07  Jackson Harper  <jackson@ximian.com>
14290
14291         * ThemeWin32Classic.cs: Clear the background area when drawing
14292         buttons.
14293
14294 2005-06-06  Peter Bartok  <pbartok@novell.com>
14295
14296         * ImageListStreamer.cs: Fixed signature for GetData
14297         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
14298         * ComboBox.cs:
14299           - Added missing ChildAccessibleObject class
14300           - Added missing OnXXXFocus overrides, switched to using those
14301             instead of the event handler
14302         * Control.cs:
14303           - Added Parent property for ControlAccessibleObject
14304           - Fixed signatures
14305           - Fixed attributes
14306           - Added ResetBindings()
14307         * ListBindingConverter.cs: Implemented some methods
14308         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
14309         * ImageList.cs: Implemented basic handle scheme, removed TODOs
14310         * ContainerControl.cs: Fixed signature, now subscribing to the
14311           ControlRemoved event instead of overriding the handler, LAMESPEC
14312         * CurrencyManager.cs: Added missing attribute
14313         * MonthCalendar.cs: Added missing properties
14314
14315 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14316
14317         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
14318         
14319 2005-06-06  Gaurav Vaish and Ankit Jain
14320
14321         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
14322         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
14323         
14324 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14325
14326         * Control.cs: fixes CreateParams Width / Height.
14327
14328 2005-06-05  Peter Bartok  <pbartok@novell.com>
14329
14330         * Win32DnD.cs: Removed compilation warnings
14331
14332 2005-06-05  Peter Bartok  <pbartok@novell.com>
14333
14334         * Control.cs (CreateParams): Since we don't know if one of the
14335           properties we use is overridden, lets make sure if we fail accessing
14336           we continue with a backup plan
14337
14338 2005-06-05  Peter Bartok  <pbartok@novell.com>
14339
14340         * Win32DnD.cs:
14341           - Removed debug output
14342           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
14343             struct
14344           - Plugged resource leak
14345         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
14346           MS size
14347
14348 2005-06-05  Peter Bartok  <pbartok@novell.com>
14349
14350         * XplatUIWin32.cs: Removed DnD code
14351         * Win32DnD.cs: Implemented drop source and drop target functionality
14352
14353 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14354
14355         * UpDownBase.cs: remove duplicate addition of event, enable some code
14356         that was commented out.
14357         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
14358         Validate input when a key is pressed. It works fine now for every
14359         combination of Hexadecimal. Only missing some drawing love when sharing
14360         space with other controls.
14361
14362 2005-06-04  Peter Bartok  <pbartok@novell.com>
14363
14364         * Control.cs:
14365           - We need to pass a window for DragDrop, so enable callback events
14366           - Added DnD callback events when being a DragSource
14367         * XplatUI.cs (StartDrag): Added window handle argument
14368         * XplatUIDriver.cs (StartDrag): Added window handle argument
14369         * QueryContinueDragEventArgs: Made fields internally accessible so
14370           drivers can set them
14371         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
14372           can set them
14373
14374 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
14375
14376         * DataGridTextBoxColumn.cs: column text editing
14377         * DataGridTableStyle.cs: Respect columns styles created by the user
14378         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
14379         * DataGridBoolColumn.cs: bool column editing
14380         * DataGrid.cs: fixes to scrolling, properties, etc
14381         * DataGridTextBox.cs: handle keyboard
14382         * DataGridColumnStyle.cs: fixes
14383
14384 2005-06-02  Jackson Harper  <jackson@ximian.com>
14385
14386         * ImageListStreamer.cs: Somewhat broken implementation of
14387         GetObjectData. The RLE needs some work to match MS properly.
14388
14389 2005-06-02  Jackson Harper  <jackson@ximian.com>
14390
14391         * X11Dnd.cs: Attempting to keep at least one file in MWF
14392         monostyled.
14393
14394 2005-06-02  Peter Bartok  <pbartok@novell.com>
14395
14396         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
14397           that way
14398
14399 2005-06-02  Peter Bartok  <pbartok@novell.com>
14400
14401         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
14402         * XplatUI.cs: Added DoDragDrop() method
14403         * XplatUIDriver.cs: Added DoDragDrop() method
14404
14405 2005-06-02  Jackson Harper  <jackson@ximian.com>
14406
14407         * Splitter.cs: Implement BorderStyle.
14408
14409 2005-06-02  Jackson Harper  <jackson@ximian.com>
14410
14411         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
14412         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
14413         X11 using XDND.
14414
14415 2005-06-02  Peter Bartok  <pbartok@novell.com>
14416
14417         * DataObject.cs:
14418           - Added Data setter
14419           - Fixed broken insertion code for SetData, now also
14420             overwrites any existing entry of the same format name
14421         * Hwnd.cs: Added list of pointers that automatically gets
14422           freed when the window is disposed
14423         * XplatUI.cs: Call driver initialization method when loading
14424           a driver
14425         * Control.cs:
14426           - OnDragLeave takes EventArgs, not DragEventArgs
14427           - Added setting of WS_EX_ACCEPTFILES style when dropping is
14428             supported
14429           - Forces style update when drop state changes
14430         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
14431           not perfect since we cannot (yet) call the IDataObject.GetData()
14432           method, we keep getting 0x80004005 error, dunno why)
14433
14434 2005-06-02  Peter Bartok  <pbartok@novell.com>
14435
14436         * DragEventArgs.cs: Make fields internal so we can cache the
14437           object and re-set the fields from XplatUI
14438
14439 2005-06-02  Jackson Harper  <jackson@ximian.com>
14440
14441         * Control.cs: Add some internal methods so the DnD subsystem can
14442         raise DnD events. Also call into the driver when AllowDrop is set.
14443         * XplatUI.cs:
14444         * XplatUIDriver.cs: New method for setting whether or not a window
14445         is allowed to accept drag and drop messages.
14446                 
14447 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
14448         
14449         * ScrollBar.cs: Make sure that values sent in Scroll events
14450         are always between Maximum and Minimum.
14451
14452 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
14453
14454         * Menu.cs: Call MenuChanged when menuitem visibility has been
14455         changed.
14456         * MenuItem.cs: Rebuild menu when item is (not) visible.
14457         * MainMenu.cs: MainMenu has special MenuChanged.
14458         * Theme.cs: Caption and FrameBorderSize are not fixed.
14459         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
14460         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
14461         * XplatUIX11.cs,
14462         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
14463         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
14464
14465 2005-05-30  Jackson Harper  <jackson@ximian.com>
14466
14467         * DataFormat.cs: We can't statically initialize this stuff because
14468         it calls into the xplatui and could create a loop. So we lazy init
14469         it.
14470
14471 2005-05-28  Jackson Harper  <jackson@ximian.com>
14472
14473         * Control.cs: Proper implementation of Product(Name/Version).
14474
14475 2005-05-27  Jackson Harper  <jackson@ximian.com>
14476
14477         * DataObject.cs: Dont crash if no data is found.
14478
14479 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
14480         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
14481                 as per status page, guessing it should be set to true
14482
14483 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
14484
14485         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
14486         * DataGridTableStyle.cs: set proper formatting text, def header text
14487         * ThemeWin32Classic.cs: new themable paramaters
14488         * DataGridBoolColumn.cs: paint check box, get data, fixes
14489         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
14490         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
14491         * DataGridColumnStyle.cs: fixes
14492         * Theme.cs: new themable paramaters
14493                 
14494 2005-05-26  Peter Bartok  <pbartok@novell.com>
14495
14496         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
14497
14498 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14499         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
14500
14501 2005-05-24  Peter Bartok  <pbartok@novell.com>
14502
14503         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
14504           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
14505           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
14506           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
14507           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
14508           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
14509           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
14510           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
14511           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
14512           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
14513           missing attributes, etc
14514         * DataGridPreferredColumnWidthTypeConverter.cs: Added
14515
14516 2005-05-24  Peter Bartok  <pbartok@novell.com>
14517
14518         * Help.cs: Added, implemented trivial functions, throws up MessageBox
14519           when user tries to get help
14520         * DataObject.cs, DataFormats.cs, LinkArea.cs,
14521           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
14522           to suppress warnings
14523         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
14524           avoid unreachable code warning
14525
14526 2005-05-20  Peter Bartok  <pbartok@novell.com>
14527
14528         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
14529
14530 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14531
14532         * DataGridTextBoxColumn.cs: Basic painting methods
14533         * DataGridTableStyle.cs: Set table style in the column
14534         * ThemeWin32Classic.cs: Use Theme for colors
14535         * DataGridDrawingLogic.cs: Implement more drawing
14536         * DataGrid.cs: drawing, theming, enhacements, fixes
14537         * DataGridColumnStyle.cs: fixes, drawing
14538         * Theme.cs: theming for Datagrid
14539
14540 2005-05-20  Peter Bartok  <pbartok@novell.com>
14541
14542         * Cursor.cs: Implemented GetObjectData() method
14543
14544 2005-05-20  Peter Bartok  <pbartok@novell.com>
14545
14546         * Cursors.cs: Added setting of cursor name
14547         * Cursor.cs:
14548           - Implemented constructors
14549           - Implemented Draw and DrawStretched
14550           - Implemented Current property
14551           - Implemented == and != operators
14552           - Implemented Dispose()
14553           - Implemented ToString
14554           - Added missing attributes
14555         * XplatUIX11.cs:
14556           - Added missing reset for OverrideCursor when DoEvents is called
14557           - Fixed creation of cursor, logic was wrong
14558         * XplatUIWin32.cs:
14559           - Added missing reset for OverrideCursor when DoEvents is called
14560           - Fixed creation of cursor, bit arrays were swapped
14561         * Clipboard.cs: Removed obsolete MonoTODO attribute
14562
14563 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14564
14565         * ComboBox.cs: fixes OnSelectedItemChanged
14566         * ControlBindingsCollection.cs: fixes item range check
14567
14568 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14569
14570         * UpDownBase.cs:
14571                 - Calc preferred height properly
14572                 - Implement missing properties
14573                 
14574         * NumericUpDown.cs: Implement missing events
14575
14576 2005-05-19  Jackson Harper  <jackson@ximian.com>
14577
14578         * TabControl.cs: New method that resizes the tab pages before
14579         redrawing them. This as needed as the control is double buffered
14580         and sizing will not be recalculated unless ResizeTabPages is
14581         called.
14582         * TabPage.cs: Set base.Text instead of Text in the constructor so
14583         that UpdateOwner does not get called. Use the new Redraw method of
14584         TabControl instead of Refresh so the sizing is recalculated.
14585         * ThemeWin32Classic.cs: Draw the text for button tabs.
14586
14587 2005-05-19  Jackson Harper  <jackson@ximian.com>
14588
14589         * Control.cs: Paint control background images. Fix typo where
14590         PaintControlBackground was not getting called correctly.
14591
14592 2005-05-19  Peter Bartok  <pbartok@novell.com>
14593
14594         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
14595           I can investigate, apparently I broke FileDialog
14596
14597 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
14598
14599         * AxHost.cs: Some simple properties.
14600         * Control.cs: window must be accessible after ctor.
14601         * Form.cs: Added TransparencyKey property.
14602         * TextBoxBase.cs: Implemented Clear. Text property can be null.
14603         * XplatUIWin32.cs: SetBorderStyle implemented.
14604
14605 2005-05-18  Peter Bartok  <pbartok@novell.com>
14606
14607         * DataObject.cs: Entries are not global but particular to the
14608           DataObject, now it behaves that way
14609         * XplatUIWin32.cs: Implemented Clipboard methods
14610         * Clipboard.cs: Implemented
14611         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
14612         * XplatUIOSX.cs: Updated to final clipboard prototypes
14613         * XplatUIX11.cs: Implemented Clipboard methods
14614         * XplatUIDriver.cs: Updated to final clipboard prototypes
14615         * XplatUIStructs.cs:
14616           - Added BITMAPINFOHEADER struct
14617           - Added ClipboardFormats enum
14618         * X11Structs.cs:
14619           - Added ClipboardStruct
14620           - Added Atom enum items for clipboard types
14621           - Fixed atom types for Selection event structures
14622         * DataFormats.cs:
14623           - Added internal properties and methods for drivers to enumerate
14624             all known formats
14625           - Switched initialization method to allow drivers to assign their
14626             own IDs even for the MS predefined clipboard IDs
14627         * XplatUI.cs: Updated to final clipboard interface
14628
14629 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14630         * PropertyGridView.cs: Fixed compiler warnings.
14631
14632 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14633         * PropertyGrid.cs: Added some event calls
14634         * PropertyGridView.cs: Change drawing code to use double buffering
14635         * PropertyGridTextBox.cs: Changed Text property name
14636         * GridItem.cs: Added Bounds property.
14637         * GridEntry.cs: Added Bounds property.
14638
14639 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
14640
14641         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
14642         since GetType() may not return the correct type if the object is
14643         a remoting proxy.
14644
14645 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
14646
14647         * TreeNodeCollection.cs: fixes get/set item ranges
14648         
14649 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14650
14651         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
14652                 
14653 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14654
14655         * ComboBox.cs: Fix item range comparation
14656         * ListView.cs: Fix item range comparation
14657
14658 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14659
14660         * FontDialog.cs:
14661           - Clear example panel when OnPaint is called
14662           - Better solution for displaying the example panel text
14663           - Select default indexes in the ListBoxes
14664
14665 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14666
14667         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
14668
14669 2005-05-11  Peter Bartok  <pbartok@novell.com>
14670
14671         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
14672         * SelectionRangeConverter.cs: Implemented
14673         * PropertyGrid.cs: Fixed attribute value
14674         * Control.cs:
14675           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
14676           - Added Sebastien Pouliot's CAS Stack Propagation fixes
14677         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
14678           that's common to all drivers. First methods to go there are
14679           Sebastien Pouliot's CAS Stack Propagation helper methods
14680         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
14681           Sebastien Pouliot for CAS Stack Propagation
14682
14683 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14684
14685         * OSXStructs.cs:
14686           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
14687
14688 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
14689
14690         * DataGridTextBoxColumn.cs: fixed some members
14691         * GridColumnStylesCollection.cs: indexed column is case insensitive
14692         * DataGridTableStyle.cs: fixes
14693         * ThemeWin32Classic.cs: add new theme parameter
14694         * Theme.cs: add new theme parameter
14695         * DataGridDrawingLogic.cs: Datagrid's drawing logic
14696         * DataGrid.cs: fixes, new internal properties, etc.
14697         * DataGridColumnStyle.cs: allows to set grid value
14698         *
14699
14700 2005-05-10  Peter Bartok  <pbartok@novell.com>
14701
14702         * AccessibleObject.cs:
14703           - Removed MonoTODO attribute on help, method is correct
14704           - Fixed Bounds property
14705         * AxHost.cs: Moved MonoTODO
14706         * ButtonBase.cs: Now setting AccessibleObject properties
14707         * RadioButton.cs: Setting proper AccessibleObject role
14708         * CheckBox.cs: Setting proper AccessibleObject role
14709         * ControlBindingsCollection.cs: Added properties, methods and attributes
14710         * DataFormats.cs: Fixed awkward internal API, and changed to enable
14711           userdefined DataFormats.Format items as well
14712         * ListControl.cs: Removed data_member from the public eye
14713         * OpenFileDialog.cs:
14714           - Made class sealed
14715           - Added missing attributes
14716         * SaveFileDialog.cs: Added missing attributes
14717         * ImageListStreamer.cs: Fixed code that caused warnings
14718         * LinkLabel.cs: Removed unreachable code
14719         * TreeView.cs: Fixed code that caused warnings
14720         * PropertyGridView.cs: Fixed code that caused warnings
14721         * GridColumnStylesCollection.cs: Added missing attributes
14722         * GridTableStylesCollection: Added missing attribute
14723         * PropertyManager: Added .ctor
14724         * SecurityIDType: Added
14725         * DataObject.cs: Implemented class
14726         * LinkArea.cs: Added missing attribute
14727
14728 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
14729
14730         * RadioButton.cs: call base method to allow to fire OnClick event
14731         * UpDownBase.cs: OnMouseUp call base method
14732         * CheckedListBox.cs: call base method before returning
14733         * TrackBar.cs: call base method before returning
14734         
14735
14736 2005-05-10  Peter Bartok  <pbartok@novell.com>
14737
14738         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
14739           for messages
14740
14741 2005-05-10  Peter Bartok  <pbartok@novell.com>
14742
14743         * DataFormats.cs: Implemented
14744         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
14745           XplatUIX11.cs: Added Clipboard APIs
14746         * XplatUIWin32.cs: Implemented Clipboard APIs
14747         * FolderBrowserDialog.cs: Added missing event, attributes
14748
14749 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
14750
14751         * CheckBox.cs: call base method to allow to fire OnClick event
14752
14753 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
14754
14755         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
14756
14757 2005-05-06  Peter Bartok  <pbartok@novell.com>
14758
14759         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
14760         * Screen.cs: Implemented
14761         * HelpNavigator.cs: Added
14762         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
14763           property
14764         * HelpProvider.cs: Implemented all we can do until we have a CHM
14765           help library (which means that "What's This" does work now)
14766
14767 2005-05-06  Jackson Harper  <jackson@ximian.com>
14768
14769         * XplatUIX11.cs: Fix waking up the main loop.
14770                 
14771 2005-05-05  Peter Bartok  <pbartok@novell.com>
14772
14773         * XplatUI.cs: Updated revision
14774         * Form.cs: Removed enless loop
14775         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
14776         * Label.cs (OnPaint): Added call to base.OnPaint()
14777         * ToolTip.cs: Made ToolTipWindow reusable for other controls
14778         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
14779         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
14780         * AxHost.cs: Added
14781         * ButtonBase.cs: Moved base.OnPaint() call to end of method
14782         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
14783           to ToolTip.ToolTipWindow for drawing and size methods; this allows
14784           reuse of ToolTipWindow by other controls
14785         * SizeGrip.cs: Moved base.OnPaint() call to end of method
14786         * XplatUIX11.cs: Now clipping drawing area (experimental)
14787         * PictureBox.cs: Moved base.OnPaint() call to end of method
14788         * Theme.cs: Fixed ToolTip abstracts to match new format
14789         * ErrorProvider.cs: Implemented
14790
14791 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
14792
14793         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
14794         * LinkLabel.cs:
14795                 - Adds cursors
14796                 - Handles focus
14797                 - Implements LinkBehavior
14798                 - Fixes many issues
14799
14800 2005-05-03  Jackson Harper  <jackson@ximian.com>
14801
14802         * ListView.cs: Calculate the scrollbar positioning on resize and
14803         paint, so they get put in the correct place.
14804
14805 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14806
14807         * ColorDialogs.cs: The small color panels are now handled by
14808           SmallColorControl. This fixes drawing of the focus rectangle
14809           and adds a 3D border.
14810
14811 2005-05-03  Peter Bartok  <pbartok@novell.com>
14812
14813         * Control.cs: Modified version of Jonathan Chamber's fix for
14814           double-buffering
14815
14816 2005-05-03  Jackson Harper  <jackson@ximian.com>
14817
14818         * ListView.cs: Remove redraw variable. Control now handles whether
14819         or not a redraw needs to be done, and will only raise the paint
14820         event if redrawing is needed.
14821
14822 2005-05-03  Jackson Harper  <jackson@ximian.com>
14823
14824         * Splitter.cs: No decorations for the splitter form. Cache the
14825         hatch brush.
14826
14827 2005-05-03  Jackson Harper  <jackson@ximian.com>
14828
14829         * TreeView.cs: Use dashed lines to connect nodes. Use the
14830         ControlPaint method for drawing the focus rect instead of doing
14831         that in treeview.
14832
14833 2005-05-02  Peter Bartok  <pbartok@novell.com>
14834
14835         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
14836
14837 2005-04-29  Jackson Harper  <jackson@ximian.com>
14838
14839         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
14840         entire image buffer. Just clear the clipping rectangle.
14841
14842 2005-04-29  Jackson Harper  <jackson@ximian.com>
14843
14844         * ThemeWin32Classic.cs: Don't draw list view items that are
14845         outside the clipping rectangle.
14846
14847 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
14848
14849         * ListBox.cs: added horizontal item scroll
14850
14851 2005-04-29  Jackson Harper  <jackson@ximian.com>
14852
14853         * ThemeWin32Classic.cs: Remove some old debug code that was
14854         causing flicker with the new double buffering code.
14855
14856 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
14857
14858         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
14859         behave like combobox and comboboxlist (still not sure if this is
14860         correct though).
14861
14862 2005-04-28  Jackson Harper  <jackson@ximian.com>
14863
14864         * ThemeWin32Classic.cs: Don't fill the middle of progress
14865         bars. This fills areas outside of the clip bounds that don't need
14866         to be filled.
14867
14868 2005-04-28  Jackson Harper  <jackson@ximian.com>
14869
14870         * Control.cs: Don't expose functionality to touch the image buffers.
14871         * ProgressBar.cs:
14872         * ListView.cs: We do not need to (and no longer can) manipulate
14873         the image buffers directly. All of this is handled by Control.
14874
14875 2005-04-28  Peter Bartok  <pbartok@novell.com>
14876
14877         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
14878           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
14879           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
14880
14881 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
14882
14883         * Combobox:
14884                 - Adjust control's height for non-simple comboboxes (bug fix)
14885                 - Remove dead code
14886         * MenuAPI.cs: remove unused var
14887         * ScrollBar.cs: remove unsed var
14888                  
14889         * ListBox.cs: unselect items when clearing
14890
14891 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
14892
14893         * ListControl.cs: honors OnPositionChanged and default Selected Item
14894         * ListBox.cs: unselect items when clearing
14895
14896 2005-04-27  Jackson Harper  <jackson@ximian.com>
14897
14898         * X11Keyboard.cs: Initialize a default keyboard and give a warning
14899         if a "correct" keyboard is not found. This will make us not crash,
14900         but might give some users bad keyboard layouts...seems to be the
14901         same thing rewind does.
14902
14903 2005-04-27  Jackson Harper  <jackson@ximian.com>
14904
14905         * BindingManagerBase.cs: Attach the current/position changed
14906         handlers to their respective events.
14907
14908 2005-04-27  Jackson Harper  <jackson@ximian.com>
14909
14910         * Control.cs: Make sure that the first WM_PAINT does a full draw,
14911         not just a blit.
14912         * ThemeWin32Classic.cs: Don't fill the background for picture
14913         boxes. This could overright user drawing.
14914         * ComboBox.cs: Just fill the clipping rect not the entire client
14915         rect when drawing the background. This prevents pieces of the
14916         image buffer from getting overwritten and is theoretically faster.
14917
14918 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
14919
14920         * ComboBox.cs: Databinding support fixes, fire missing events
14921         * ListControl.cs: implement missing methods and properties, fixes
14922         * ThemeWin32Classic.cs: Databiding support on Drawing
14923         * CheckedListBox.cs: Databinding support fixes, fire missing events
14924         * ListBox.cs: Databinding support fixes, fire missing events
14925         
14926 2005-04-25  Peter Bartok  <pbartok@novell.com>
14927
14928         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
14929
14930 2005-04-25  Jackson Harper  <jackson@ximian.com>
14931
14932         * TreeView.cs: Use the horizontal scrollbars height not width when
14933         determining how much of the client area is available.
14934
14935 2005-04-25  Jackson Harper  <jackson@ximian.com>
14936
14937         * Control.cs: Double buffering is handled differently now. As per
14938         the spec, the extra buffer is created in the WM_PAINT message and
14939         passed down to the control's drawing code.
14940         * GroupBox.cs:
14941         * Label.cs:
14942         * CheckBox.cs:
14943         * ProgressBar.cs:
14944         * RadioButton.cs:
14945         * ColorDialog.cs:
14946         * ComboBox.cs:
14947         * PropertyGridView.cs:
14948         * UpDownBase.cs:
14949         * MessageBox.cs:
14950         * MenuAPI.cs:
14951         * ListView.cs:
14952         * ButtonBase.cs:
14953         * SizeGrip.cs:
14954         * ScrollBar.cs:
14955         * ListBox.cs:
14956         * TrackBar.cs:
14957         * ToolBar.cs:
14958         * PictureBox.cs:
14959         * DateTimePicker.cs:
14960         * StatusBar.cs:
14961         * TreeView.cs: Update to new double buffering system.
14962         * MonthCalendar.cs: Uncomment block, as Capture is now
14963         working. Update to new double buffering
14964         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
14965         * PaintEventArgs.cs: New internal method allows us to set the
14966         graphics object. This is used for double buffering.
14967         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
14968         rectangle. The internal paint_area var has been removed from
14969         StatusBar. The clipping rect should be used instead.
14970         * Theme.cs: Give the PictureBox drawing method a clipping rect.
14971         * TabPage.cs: The RefreshTabs method was removed, so just call the
14972         tab controls Refresh method now.
14973         * TabControl.cs: Update to new double buffering. Make sure the
14974         handle is created before sizing the tab pages, otherwise we will
14975         get stuck in a loop.
14976
14977 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
14978
14979         * LinkLabel.cs: Fix typo, bug #74719; patch
14980           from Borja Sanchez Zamorano
14981
14982 2005-04-22  Jackson Harper  <jackson@ximian.com>
14983
14984         * TreeNode.cs: Implement Handle stuff.
14985         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
14986
14987 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
14988
14989         * DataGridTextBoxColumn.cs: call base constructors, fixes
14990         * GridColumnStylesCollection.cs: missing events, methods, and functionality
14991         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
14992         * DataGridTableStyle.cs: implements create default column styles
14993         * DataGridBoolColumn.cs: which types can handle
14994         * DataGrid.cs: missing methods, fixes, new functionality
14995         * DataGridColumnStyle.cs: fixes
14996
14997 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
14998         * FolderBrowserDialog.cs:
14999         - Use a thread to fill the TreeView
15000         - Adjusted some sizes
15001
15002 2005-04-19  Peter Bartok  <pbartok@novell.com>
15003
15004         * LinkLabel.cs: (Re-)create the pieces when setting the Text
15005           property. Fixes #74360.
15006
15007 2005-04-19  Jackson Harper  <jackson@ximian.com>
15008
15009         * XEventQueue.cs: Lock when getting the lockqueue size.
15010         * PictureBox.cs: Call base OnPaint
15011         
15012 2005-04-19  Peter Bartok  <pbartok@novell.com>
15013
15014         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
15015           messages were no longer being processed (this broke BeginInvoke)
15016
15017           
15018 2005-04-18  Jackson Harper  <jackson@ximian.com>
15019
15020         * TreeView.cs: buglet that caused node images to get drawn
15021         regardless of whether or not they were in the clipping rectangle.
15022
15023 2005-04-18  Jackson Harper  <jackson@ximian.com>
15024
15025         * CurrencyManager.cs: There are four rules for GetItemProperties:
15026         - If the type is an array use the element type of the array
15027         - If the type is a typed list, use the type
15028         - If the list contains an Item property that is not an object, use
15029         that property
15030         - use the first element of the list if there are any elements in
15031         the list.
15032         
15033 2005-04-17  Jackson Harper  <jackson@ximian.oom>
15034
15035         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
15036         click. This handles offsets for scrolling properly and reduces
15037         memory. Also fixed GetNode to not offset now that TopNode works
15038         properly.
15039         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
15040         
15041 2005-04-17  Jackson Harper  <jackson@ximian.com>
15042
15043         * CursorConverter.cs: Initial implementation.
15044
15045 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15046
15047         * ListControl.cs: work towards complex data binding support on ListControl
15048         * CurrencyManager.cs: work towards complex data binding support on ListControl
15049         * ListBox.cs: work towards complex data binding support on ListControl
15050
15051
15052 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
15053
15054         * GridTableStylesCollection.cs: fixes name and constructor
15055         * DataGridTableStyle.cs: fixes
15056         * DataGridBoolColumn.cs: fixes names and constructors
15057         * DataGrid.cs: define methods and properties. Some init implementations
15058         * DataGridCell.cs: define methods and properties. Some init implementations
15059         * GridTablesFactory.cs: Define methods and properties
15060
15061 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
15062
15063         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
15064         graphics port changes.  We still want the coordinates in global screen
15065         coordinates.
15066
15067 2005-04-14  Jackson Harper  <jackson@ximian.com>
15068
15069         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
15070         check plus minus or checkbox clicks unless those features are enabled.
15071
15072 2005-04-14  Jackson Harper  <jackson@ximian.com>
15073
15074         * TreeView.cs: Add methods for setting the top and bottom visible
15075         nodes. TreeNode::EnsureVisible uses these methods.
15076         * TreeNode.cs: Implement EnsureVisible
15077
15078 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
15079
15080         * Form.cs: Pospone menu assignation if the window has not been created yet
15081         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
15082         size and position
15083
15084 2005-04-12  Jackson Harper  <jackson@ximian.com>
15085
15086         * TreeView.cs: Set the TopNode properly when scrolling
15087         occurs. This has the added benifit of reducing the amount of
15088         walking that needs to be done when drawing. Also removed an old
15089         misleading TODO.
15090         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
15091         
15092 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
15093
15094         * Timer.cs: fixes interval setting when the timer is already enabled
15095         
15096 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
15097
15098         * FolderBrowserDialog.cs: First approach
15099
15100 2005-04-09  Peter Bartok  <pbartok@novell.com>
15101
15102         * FolderBrowserDialog: Added
15103
15104 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
15105
15106         * LinkLabel.cs: move drawing code into the theme
15107         * ThemeWin32Classic.cs: drawing code and painting background bugfix
15108         * Theme.cs: define DrawLinkLabel method
15109
15110 2005-04-05  Jackson Harper  <jackson@ximian.com>
15111
15112         * BindingContext.cs: Use weak references so these bad actors don't
15113         stay alive longer then they need to.
15114
15115 2005-04-05  Jackson Harper  <jackson@ximian.com>
15116
15117         * ListControl.cs: Basic implementation of complex databinding.
15118         * ComboBox.cs:
15119         * ListBox.cs: Add calls to ListControl databinding methods.
15120
15121 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
15122
15123         * FileDialog.cs:
15124           - Don't change PopupButtonState to Normal when the
15125             PopupButton gets pressed several times.
15126           - Renamed ButtonPanel to PopupButtonPanel
15127
15128 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
15129
15130         * ColorDialog.cs: Use cached objects instead of creating them
15131         * LinkLabel.cs: Use cached objects instead of creating them
15132         * Splitter.cs: Use cached objects instead of creating them
15133         * FontDialog.cs: Use cached objects instead of creating them
15134         * PropertyGridView.cs: Use cached objects instead of creating them
15135         * MessageBox.cs: Use cached objects instead of creating them
15136         * FileDialog.cs: Use cached objects instead of creating them
15137         * ThemeWin32Classic.cs: Use cached objects instead of creating them
15138         * TreeView.cs: Use cached objects instead of creating them
15139         
15140 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
15141
15142         * Control.cs: use Equals to compare the font since no == op
15143         * ScrollBar.cs: use Equals to compare the font since no == op
15144
15145 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
15146
15147         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
15148
15149 2005-04-01  Jackson Harper  <jackson@ximian.com>
15150
15151         * Binding.cs: Implement IsBinding.
15152         * BindingManagerBase.cs:
15153         * PropertyManager.cs:
15154         * CurrencyManager.cs: Add IsSuspended property.
15155
15156 2005-04-01  Jackson Harper  <jackson@ximian.com>
15157
15158         * Binding.cs: Had some IsAssignableFrom calls backwards.
15159
15160 2005-04-01  Jackson Harper  <jackson@ximian.com>
15161
15162         * Binding.cs: Handle null data members when pulling data.
15163         * PropertyManager.cs: Handle the data member being a property that
15164         does not exist.
15165
15166 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15167
15168         * DataGridTextBoxColumn.cs: fixes signature
15169         * DataGrid.cs: calls right constructor
15170
15171 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15172
15173         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
15174         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
15175         * GridTableStylesCollection.cs: implements GridTableStylesCollection
15176         * DataGridTableStyle.cs: implements DataGridTableStyle
15177         * DataGridBoolColumn.cs: implements DataGridBoolColumn
15178         * DataGridTextBox.cs: implements DataGridTextBox
15179         * DataGridColumnStyle.cs: implements DataGridColumnStyle
15180
15181 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
15182
15183         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
15184
15185 2005-03-29  Peter Bartok  <pbartok@novell.com>
15186
15187         * Application.cs:
15188           - Properly implemented CompanyName property
15189           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
15190             returns a path that includes CompanyName, ProductName and
15191             Version (fixes bug #70330)
15192
15193 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
15194
15195         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
15196           fixes bug #72588.
15197
15198 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15199
15200         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
15201         
15202           - Added ReadOnly CheckBox
15203           - Further refactoring: moved some code from Open-/SaveFileDialog
15204             to FileDialog
15205
15206 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15207
15208         * OpenFileDialog.cs: Fixed CheckFileExists
15209         * FileDialog.cs:
15210           Moved FileView and DirComboBox outside FileDialog class.
15211           They can now be used outside FileDialog
15212
15213 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15214
15215         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
15216         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
15217
15218 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15219
15220         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15221           - Added missing CreatePrompt property in SaveDialog
15222           - Overall SaveDialog handling should be better now
15223           - Added non standard ShowHiddenFiles property
15224           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
15225           - Added InitialDirectory and RestoreDirectory support
15226
15227 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
15228
15229         * FileDialog.cs: Made dirComboBox usable
15230
15231 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
15232
15233         * FileDialog.cs: Added Filter support (case sensitiv)
15234
15235 2005-03-24  Jackson Harper  <jackson@ximian.com>
15236
15237         * TabControl.cs: Need a couple more pixels for the lines.
15238
15239 2005-03-23  Jackson Harper  <jackson@ximian.com>
15240
15241         * TabControl.cs: Give the tab page focus when it is selected.
15242
15243 2005-03-23  Jackson Harper  <jackson@ximian.com>
15244
15245         * TabControl.cs: Account for the drawing of tabs borders when
15246         invalidating. If the slider was clicked dont do click detection on
15247         the tabs.
15248
15249 2005-03-23  Jackson Harper  <jackson@ximian.com>
15250
15251         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
15252
15253 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
15254
15255         * CategoryGridEntry.cs: Added
15256         * GridItem.cs: Added helper properties
15257         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
15258         * GridEntry.cs: Updated code for collection
15259         * PropertyGrid.cs: Cleaned up some formatting
15260         * PropertyGridView.cs: Added drop down functionality for enums.
15261         * GridItemCollection.cs: Added enumerator logic
15262         * PropertyGridEntry.cs: Added
15263
15264 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15265
15266         * FileDialog.cs:
15267           - Removed unnecessary commented code
15268           - Fixed handling for entering the filename manually in the combobox
15269
15270 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15271
15272         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
15273
15274 2005-03-18  Peter Bartok  <pbartok@novell.com>
15275
15276         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
15277           them being touching the border
15278
15279 2005-03-18  Peter Bartok  <pbartok@novell.com>
15280
15281         * TextControl.cs: Quick hack to center text better
15282
15283 2005-03-18  Peter Bartok  <pbartok@novell.com>
15284
15285         * ControlPaint.cs:
15286           - Don't throw NotImplemented exceptions, just print a notice once
15287             instead (requested by Miguel). This makes running existing SWF
15288             apps a bit easier
15289         * Control.cs:
15290           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
15291           - Added context menu trigger on right click
15292         * Panel.cs: Trigger invalidate on resize
15293         * StatusBar.cs:
15294           - Removed old double-buffer drawing
15295           - Added ResizeRedraw style to force proper update of statusbar
15296         * ListView.cs:
15297           - Removed debug output
15298         * ThemeWin32Classic.cs:
15299           - Fixed drawing of status bar, now draws Text property if there
15300             are no defined panels
15301
15302 2005-03-18  Jackson Harper  <jackson@ximian.com>
15303
15304         * ImageList.cs: When the image stream is set pull all the images
15305         from it.
15306         * ImageListStreamer.cs: Implement reading image list streams.
15307
15308 2005-03-18  Peter Bartok  <pbartok@novell.com>
15309
15310         * ThemeWin32Classic.cs (DrawPictureBox):
15311           - Fixed calculations for centered drawing
15312           - Fixed drawing for normal mode, not scaling the image on normal
15313
15314 2005-03-18  Peter Bartok  <pbartok@novell.com>
15315
15316         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
15317           textbox
15318         * FileDialog.cs:
15319           - Made Open/Save button the accept button for FileDialog
15320           - Tied the cancel button to the IButtonControl cancel button
15321           - Save/Open now properly builds the pathname
15322           - Now handles user-entered text
15323           - Preventing crash on right-click if no item is selected
15324           - Fixed Text property, now uses contents of textbox
15325           - Fixed SelectedText property, now just returns the text part that
15326             is selected in the text box
15327
15328 2005-03-18  Jackson Harper  <jackson@ximian.com>
15329
15330         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
15331         rect, make sure to de-adjust the interior rect after drawing the
15332         tab text.
15333
15334 2005-03-18  Peter Bartok  <pbartok@novell.com>
15335
15336         * MenuAPI.cs: Remove menu *before* executing selected action to
15337           prevent the menu from 'hanging around'
15338           
15339 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
15340
15341         * XplatUIOSX.cs: Implemented WorkingArea property
15342
15343 2005-03-17  Peter Bartok  <pbartok@novell.com>
15344
15345         * XplatUIX11.cs: Fixed menu coord calculations
15346         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
15347           for calculating offsets
15348
15349 2005-03-17  Peter Bartok  <pbartok@novell.com>
15350
15351         * Hwnd.cs: Do not consider menu presence for default client
15352           rectangle location/size
15353         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
15354           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
15355           translation functions
15356         * FileDialog.cs: Fixed (what I presume is a) typo
15357
15358 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
15359
15360         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
15361           X access (avoids X-Async errors)
15362
15363 2005-03-16  Jackson Harper  <jackson@ximian.com>
15364
15365         * TabControl.cs: Raise the SelectedIndexChanged event.
15366
15367 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
15368
15369         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15370           - Removed vertical ToolBar and replaced it with a custom panel
15371             (desktop and home button already work)
15372           - Added Help button (some controls get resized or relocated then)
15373           - Draw correct text depending on Open or Save.
15374           - Fixed some typos...
15375
15376 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
15377
15378         * ScrollBar.cs:
15379           - Only change Maximum and Minimum when need it (bug fix)
15380
15381 2005-03-15  Peter Bartok  <pbartok@novell.com>
15382
15383         * Form.cs: Use Handle for icon, to trigger creation if
15384           the window does not yet exist
15385         * Control.cs:
15386           - CanSelect: Slight performance improvement
15387           - Focus(): Preventing possible recursion
15388           - Invalidate(): Removed ControlStyle based clear flag setting
15389           - WM_PAINT: fixed logic for calling OnPaintBackground
15390           - WM_ERASEBKGND: Fixed logic, added call to new driver method
15391             EraseWindowBackground if the control doesn't paint background
15392         * XplatUIWin32.cs:
15393           - Moved EraseWindowBackground() method to internal methods
15394           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
15395             is sent via SendMessage on BeginPaint call on Win32
15396         * XplatUIX11.cs:
15397           - Added EraseWindowBackground() method
15398           - No longer sends WM_ERASEBKGND on .Expose, but on call to
15399             PaintEventStart, which more closely matches Win32 behaviour
15400           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
15401           - Fixed SetFocus() to properly deal with client and whole windows
15402         * Hwnd.cs: Added ErasePending property
15403         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
15404         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
15405
15406 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
15407
15408         * XplatUIOSX.cs:
15409           - Fix hard loop when timers exist.
15410           - Fix bugs with middle and right click for 3 button mice.
15411
15412 2005-03-11  Peter Bartok  <pbartok@novell.com>
15413
15414         * XplatUIX11.cs:
15415           - get_WorkingArea: Need to call X directly, GetWindowPos only
15416             returns cached data now
15417           - Added sanity check to GetWindowPos hwnd usage
15418
15419 2005-03-11  Jackson Harper  <jackson@ximian.com>
15420
15421         * BindingManagerBase.cs: This method isn't used anymore as
15422         PullData now updates the data in the control.
15423
15424 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
15425
15426         * Form.cs: fixes menu drawing on X11
15427         * MenuAPI.cs:  fixes menu drawing on X11
15428
15429 2005-03-11  Peter Bartok  <pbartok@novell.com>
15430
15431         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
15432           from Jonathan Gilbert; should fix bug #73606
15433         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
15434           in Screen coordinates. Thanks, Jordi.
15435         * Form.cs: Added missing attribute
15436
15437 2005-03-11  Peter Bartok  <pbartok@novell.com>
15438
15439         * Form.cs:
15440           - Rudimentary Mdi support
15441           - Removed outdated FormParent code
15442           - Implemented lots of missing properties and methods, still missing
15443             transparency support
15444           - Added missing attributes
15445           - Implemented support for MaximumBounds
15446           - Added firing of various events
15447         * XplatUI.cs: Added SetIcon() method
15448         * XplatUIDriver.cs: Added SetIcon() abstract
15449         * XplatUIOSX.cs: Stubbed out SetIcon() method
15450         * XplatUIX11.cs:
15451           - Implemented SetIcon() support
15452           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
15453           - Switched to unix line endings
15454         * XplatUIWin32.cs:
15455           - Made POINT internal so for can access it as part of MINMAX
15456           - Implemented SetIcon() support
15457           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
15458             native Mdi support again, might have to go managed)
15459         * Control.cs: Now fires the StyleChanged event
15460         * MdiClient.cs: Added; still mostly empty
15461
15462 2005-03-10  Peter Bartok  <pbartok@novell.com>
15463
15464         * SaveFileDialog.cs: Added emtpy file
15465
15466 2005-03-08  Peter Bartok  <pbartok@novell.com>
15467
15468         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
15469           in turn triggers OnCreateContro) when creating a handle for the
15470           first time.
15471         * TextControl.cs: Fixed endless loop in certain cases when
15472           replacing the current selection
15473
15474 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
15475
15476         * ScrollBar.cs:
15477           - Honors NewValue changes in Scroll events allowing apps to change it
15478           - Adds First and Last Scroll events
15479           - Fixes Thumb events
15480
15481 2005-03-07  Peter Bartok  <pbartok@novell.com>
15482
15483         * Hwnd.cs: Added DefaultClientRectangle property
15484         * XplatUI.cs: Now using the X11 driver Where() method, which provides
15485           more detailed debug information
15486         * XplatUIX11.cs:
15487           - Fixed size-change feedback loop, where we would pull an old size
15488             off the queue and mistakenly change our window's size to an
15489             earlier value
15490           - Now compressing ConfigureNotify events, to reduce looping and
15491             redraw issues
15492         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
15493           is called
15494
15495 2005-03-07  Jackson Harper  <jackson@ximian.com>
15496
15497         * Binding.cs: Push data pushes from data -> property. Check if the
15498         property is readonly when attempting to set it.
15499
15500 2005-03-07  Jackson Harper  <jackson@ximian.com>
15501
15502         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
15503         instead of IsSubclassOf. Pulling data now sets the value on the
15504         control.
15505         * PropertyManager.cs:
15506         * CurrencyManager.cs: Just need to pull data when updating now,
15507         because PullData will set the value on the control.
15508
15509 2005-03-04  Jackson Harper  <jackson@ximian.com>
15510
15511         * Binding.cs: Implement data type parsing and converting on pulled
15512         data. TODO: Are there more ways the data can be converted?
15513
15514 2005-03-04  Jackson Harper  <jackson@ximian.com>
15515
15516         * Binding.cs: Support <Property>IsNull checks. Also bind to the
15517         controls Validating method so we can repull the data when the
15518         control loses focus.
15519
15520 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
15521
15522         * ColumnHeader.cs:
15523           - Fixes null string format
15524           
15525         * ListView.cs:
15526           - Adds enum type checks
15527           - Fixes redrawing and recalc need after changing some properties
15528           - Fixes on focus_item set after the event
15529           - Fixes adding columns after the control has been created
15530           
15531         * ThemeWin32Classic.cs:
15532           - Fixes CheckBox focus rectangle
15533           - Fixes ColumnHeader drawing
15534
15535
15536 2005-03-03  Jackson Harper  <jackson@ximian.com>
15537
15538         * Binding.cs: Bind to <Property>Changed events so we can detect
15539         when properties are changed and update the data.
15540
15541 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
15542
15543         * ImageList.cs:
15544           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
15545           - Fixes ImageList constructor with ImageList container
15546           - Fixes image scaling (wrong parameters at DrawImage)
15547
15548 2005-02-02  Jackson Harper  <jackson@ximian.com>
15549
15550         * Binding.cs: Make property searches case-insensitive. Eliminate
15551         some duplicated code.
15552
15553 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
15554
15555         * ComboBox.cs:
15556                 - Handle focus event
15557                 - Fix scrollbar events
15558                 - Discard highlighted item if remove it
15559                 - Fixes SelectedItem with strings
15560
15561 2005-03-01  Peter Bartok  <pbartok@novell.com>
15562
15563         * Control.cs:
15564           - Fixed Visible property, now follows (once again) parent chain
15565             to return false if any control in the chain is visible=false
15566           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
15567           - Fixed several places where is_visible instead of Visible was used
15568           - Implemented FIXME related to focus selection when setting focused
15569             control to be invisible
15570
15571         * XplatUIWin32.cs: Now using proper method to find out if window is
15572           visible. Thanks to Jordi for pointing it out
15573
15574 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
15575
15576         * ComboBox.cs: show/hide scrollbar instead of creating it
15577
15578 2005-02-27  Jackson Harper  <jackson@ximian.com>
15579
15580         * CurrencyManager.cs: Add PositionChanged stuff.
15581
15582 2005-02-27  Peter Bartok  <pbartok@novell.com>
15583
15584         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
15585         * XplatUIOSX.cs: Added GetMenuOrigin() stub
15586         * XplatUIWin32.cs: Implemented GetMenuOrigin()
15587         * XplatUIX11.cs:
15588           - Implemented GetMenuDC()
15589           - Implemented GetMenuOrigin()
15590           - Implemented ReleaseMenuDC()
15591           - Implemented generation of WM_NCPAINT message
15592           - Implemented generation and handling of WM_NCCALCSIZE message
15593         * Form.cs: Added debug helper message for Jordi's menu work
15594         * Hwnd.cs:
15595           - Modified ClientRect property; added setter, fixed getter to handle
15596             setting of ClientRect
15597           - Added MenuOrigin property
15598
15599 2005-02-26  Peter Bartok  <pbartok@novell.com>
15600
15601         * XplatUIX11.cs:
15602           - Destroys the caret if a window that's being destroyed contains it
15603           - Ignores expose events coming from the X11 queue for windows that
15604             already are destroyed
15605           - Now uses the proper variable for handling DestroyNotify, before we
15606             marked the wrong window as destroyed
15607           - Improved/added some debug output
15608
15609 2005-02-26  Peter Bartok  <pbartok@novell.com>
15610
15611         * X11Keyboard.cs: Fixes to work on 64bit systems
15612
15613 2005-02-26  Peter Bartok  <pbartok@novell.com>
15614
15615         * Control.cs:
15616           - Now calling OnHandleDestroyed from DestroyHandle()
15617             instead of Dispose()
15618           - Removed bogus call to controls.Remove() from DestroyHandle()
15619
15620 2005-02-26  Peter Bartok  <pbartok@novell.com>
15621
15622         * Control.cs: Properly destroy child windows when our handle is
15623           destroyed
15624
15625 2005-02-25  Peter Bartok  <pbartok@novell.com>
15626
15627         * XplatUI.cs:
15628           - Added 'DriverDebug' define to allow tracing XplatUI API calls
15629           - Alphabetized Static Methods and Subclasses
15630
15631         * XplatUIX11.cs:
15632           - Added XException class to allow custom handling of X11 exceptions
15633           - Created custom X11 error handler, tied into XException class
15634           - Added support for MONO_XEXCEPTIONS env var to allow the user
15635             to either throw an exception on X errors or continue running
15636             after displaying the error
15637           - Added handling of DestroyNotify message
15638           - Added handler for CreateNotify message (still disabled)
15639           - Improved (tried to at least) Where method to provide file and lineno
15640         * X11Structs.cs:
15641           - Added XErrorHandler delegate
15642           - Added XRequest enumeration (to suppor translation of errors)
15643
15644 2005-02-25  Jackson Harper  <jackson@ximian.com>
15645
15646         * PropertyManager.cs: Implement editing features
15647         * CurrencyManager.cs:
15648         * Binding.cs: First attempt at UpdateIsBinding
15649         * BindingManagerBase.cs: Call UpdateIsBinding before
15650         pushing/pulling data.
15651
15652 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
15653
15654         * MenuAPI.cs: Respect disabled items
15655         * ThemeWin32Classic.cs
15656                 - Caches ImageAttributes creation for DrawImageDisabled
15657                 - Fixes vertical menu line drawing
15658                 - Draws disabled arrows in disable menu items
15659
15660 2005-02-24  Peter Bartok  <pbartok@novell.com>
15661
15662         * Hwnd.cs:
15663           - Added UserData property to allow associating arbitrary objects
15664             with the handle
15665           - Fixed leak; now removing Hwnd references from static windows array
15666         * XplatUIWin32.cs:
15667           - Fixed Graphics leak in PaintEventEnd
15668           - Removed usage of HandleData, switched over to Hwnd class
15669         * HandleData.cs: Removed, obsoleted by Hwnd.cs
15670
15671 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15672
15673         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
15674         * ScrollBar.cs: Fixes bug
15675         * TrackBar.cs: removes death code, clipping, mimize refreshes,
15676          keyboard navigation enhancements
15677
15678 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15679
15680         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
15681         * GroupBox.cs: Add control styles
15682         * Label.cs: Add control styles
15683         * UpDownBase.cs: Add control styles
15684         * ListBox.cs: Add control styles
15685         * XplatUIWin32.cs: Fixes wrong parameter order
15686
15687
15688 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
15689
15690         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
15691
15692 2005-02-23  Jackson Harper  <jackson@ximian.com>
15693
15694         * PropertyManager.cs: Implement property binding. This doesn't
15695         seem to work yet though as (I think) there are some bugs in
15696         System.ComponentModel.PropertyDescriptor.
15697         * BindingContext.cs: Use new PropertyManager constructor.
15698
15699 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
15700
15701         * ProgressBar.cs: use clip region in ProgressBar
15702         * ThemeWin32Classic.cs: use clip region in ProgressBar
15703
15704 2004-02-22  Jackson Harper  <jackson@ximian.com>
15705
15706         * BindingsCollection.cs: Remove some debug code.
15707
15708 2005-02-22  Jackson Harper  <jackson@ximian.com>
15709
15710         * BindingContext.cs:
15711         * ControlBindingsCollection.cs:
15712         * CurrencyManager.cs:
15713         * Binding.cs:
15714         * BindingManagerBase.cs: Initial implementation
15715         * BindingsCollection.cs: Add an internal contains method that the
15716         BindingManagerBase uses to ensure bindings aren't added twice to
15717         the collection.
15718         * PropertyManager.cs: Stubbed out.
15719         * Control.cs:
15720         * ContainerControl.cs: Hook up databinding
15721         
15722 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
15723
15724         * XplatUIOSX.cs:
15725           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
15726           Fixed Invalidate/Update chain.
15727           Fixed tons of other minor bugs (this is almost a complete rewrite).
15728
15729 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
15730
15731         * ComboBox.cs: do subcontrol creation when the control is created
15732
15733 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15734
15735         * Label.cs: fixes image drawing (image and imagelist)
15736         * ThemeWin32Classic.cs: cache brushes
15737         
15738 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15739
15740         * Form.cs: Move menu drawing code to Theme class
15741         * ComboBox.cs: Move ComboBox drawing code to Theme class
15742         * MenuItem.cs: Move menu drawing code to Theme class
15743         * MenuAPI.cs: Move menu drawing code to Theme class
15744         * ThemeWin32Classic.cs: New methods
15745         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
15746         * ListBox.cs: Move Listbox drawing code to Theme class
15747         * Theme.cs: New methods
15748
15749 2005-02-20  Peter Bartok  <pbartok@novell.com>
15750
15751         * Control.cs:
15752           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
15753             only process mnemonics on those)
15754           - Fixed event sequence for key handling; first calling
15755             ProcessKeyEventArgs now
15756         * TextBoxBase.cs:
15757           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
15758             for processing non-character keys
15759           - Fixed WM_CHAR to generate proper event sequence before processing
15760         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
15761           generation
15762
15763 2005-02-19  Peter Bartok  <pbartok@novell.com>
15764
15765         * UserControl.cs: Added TextChanged event; added attributes
15766         * SizeGrip.cs: Implemented resizing and optional display of grip
15767         * Form.cs: Fixed attribute
15768         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
15769           Changed meaning of ScrollWindow bool argument; instead of the
15770           clear attribute (which will be true usually anyway), it gives the
15771           option of moving child controls as well.
15772         * XplatUIX11.cs:
15773           - Changed to match new ScrollWindow argument
15774           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
15775             now handles the implicit parent window a WM puts around us
15776         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
15777           to work)
15778         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
15779         * TreeView.cs: Adjusted to new ScrollWindow arguments
15780
15781 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15782
15783         * Form.cs: Menu integration with non-client area
15784         * MenuItem.cs: Menu integration with non-client area
15785         * MenuAPI.cs: Menu integration with non-client area
15786
15787 2005-02-18  Peter Bartok  <pbartok@novell.com>
15788
15789         * MethodInvoker.cs: Added
15790         * MdiLayout.cs: Added
15791         * SendKeys.cs: Started implementation
15792         * ErrorIconAlignment.cs: Added
15793
15794 2005-02-18  Peter Bartok  <pbartok@novell.com>
15795
15796         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
15797         * Form.cs: Added handling for Menu-related Non-client messages
15798
15799 2005-02-17  Peter Bartok  <pbartok@novell.com>
15800
15801         * UpDownBase.cs: Fixed typo, compilation errors
15802         * DomainUpDown.cs: Fixed attribute value
15803
15804 2005-02-16  Miguel de Icaza  <miguel@novell.com>
15805
15806         * UpDownBase.cs: Attach entry events.
15807         Propagate events.
15808         Add ForeColor property, Focused, InterceptArrowKeys (interception
15809         does not work yet).
15810
15811 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
15812
15813         * Form.cs:
15814                 - Redraw non client are on Setmenu
15815                 - Calc proper menu starting point
15816
15817 2005-02-17  Peter Bartok  <pbartok@novell.com>
15818
15819         * Application.cs: Fixed message_filter check
15820
15821 2005-02-17  Peter Bartok  <pbartok@novell.com>
15822
15823         * Application.cs: Now calls registered message filters
15824         * DockStyle.cs: Fixed attribute
15825         * Form.cs: Fixed attribute
15826         * Menu.cs: Fixed attribute
15827         * ToolTip.cs: Fixed attribute
15828         * TreeNode.cs: Added missing attributes and arranged in regions
15829         * PropertyGrid.cs: Fixed signatures
15830         * TreeNodeCollection.cs: Added attributes
15831         * Splitter.cs: Added missing attributes; arranged into regions
15832         * TabPage.cs: Added missing attributes; arranged into regions
15833         * TextBoxBase.cs: Added missing attributes
15834         * TextBox.cs: Added missing attributes
15835         * ArrangeDirection.cs: Added missing attributes
15836         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
15837         * ToolBarButton.cs: Fixed attributes
15838         * AnchorStyles.cs: Fixed attribute
15839         * TrackBar.cs: Fixed attributes
15840         * TabControl.cs: Added missing attributes and arranged into regions
15841         * ToolBar.cs: Fixed attribute
15842         * StatusBar.cs: Fixed signature, organized into regions and added
15843           attributes
15844         * StatusBarPanel.cs: Fixed attributes
15845         * ContentsResizedEventArgs.cs: Implemented
15846         * ContentsResizedEventHandler.cs: Implemented
15847         * DateBoldEventArgs.cs: Implemented
15848         * DateBoldEventHandler.cs: Implemented
15849         * UpDownEventArgs.cs: Implemented
15850         * UpDownEventHandler.cs: Implemented
15851         
15852 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
15853
15854         * Form.cs: first Menu NC refactoring
15855         * MenuAPI.cs: first Menu NC refactoring
15856         
15857 2005-02-16  Peter Bartok  <pbartok@novell.com>
15858
15859         * ImeMode.cs: Added missing attributes
15860         * Menu.cs: Fixed attribute
15861         * GroupBox.cs: Fixed attribute
15862         * Label.cs: Fixed attribute
15863         * ColorDialog.cs (RunDialog): Removed TODO attribute
15864         * ComboBox.cs: Fixed attributes
15865         * ListControl.cs: Added missing attributes
15866         * PropertyGrid.cs: Fixed attributes
15867         * Control.cs: Fixed attributes
15868         * ListViewItem.cs: Added TypeConverter attribute
15869         * NotifyIcon.cs: Fixed attributes
15870         * ListView.cs: Fixed attributes
15871         * ButtonBase.cs: Fixed attribute
15872         * ImageList.cs: Added missing attributes
15873         * ContainerControl.cs: Fixed signature
15874         * CheckedListBox.cs: Fixed attribute; added missing attributes
15875         * Panel.cs: Fixed attributes
15876         * PropertyTabChangedEventArgs.cs: Added missing attribute
15877         * PropertyValueChangedEventArgs.cs: Added missing attribute
15878         * Binding.cs: Fixed attribute
15879         * ListViewItemConverter: Implemented ListViewSubItemConverter class
15880         * ListBox.cs: Fixed attribute; added missing attributes;
15881         * ScrollableControl.cs: Added missing attributes
15882         * PictureBox.cs: Added missing attributes; implemented missing property
15883         * DateTimePicker.cs: Added missing attributes
15884         * Theme.cs (ToolWindowCaptionHeight): Fixed type
15885         * MonthCalendar.cs: Fixed attributes
15886         * StatusBarPanel.cs: Added missing attributes
15887         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
15888
15889 2005-02-16  Peter Bartok  <pbartok@novell.com>
15890
15891         * TextBoxBase.cs: The previous method to enforce height yet remember
15892           the requested high was less than ideal, this is an attempt to do
15893           it better.
15894         * Control.cs: Added comment about possible problem
15895         * Copyright: Updated format
15896         * GridItemType.cs: Fixed swapped values
15897
15898 2005-02-15  Jackson Harper  <jackson@ximian.com>
15899
15900         * BaseCollection.cs: Use property so we never access an
15901         uninitialized list. Also initialize the list in the property.
15902
15903 2005-02-15  Peter Bartok  <pbartok@novell.com>
15904
15905         * GroupBox.cs (ProcessMnemonic): Implemented
15906         * Label.cs (ProcessMnemonic): Implemented
15907         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
15908           hotkeys
15909
15910 2005-02-15  Peter Bartok  <pbartok@novell.com>
15911
15912         * RadioButton.cs (ProcessMnemonic): Implemented
15913         * CheckBox.cs (ProcessMnemonic): Implemented
15914         * Control.cs:
15915           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
15916             handling
15917           - Added internal method to allow calling ProcessMnemonic from other
15918             controls
15919         * ContainerControl.cs:
15920           - Started support for handling validation chain handling
15921           - Implemented ProcessMnemonic support
15922           - Added Select() call to Active, to make sure the active control
15923             receives focus
15924         * Form.cs: Setting toplevel flag for Forms (this was lost in the
15925           FormParent rewrite)
15926         * ThemeWin32Classic.cs:
15927           - DrawCheckBox(): Fixed stringformat to show hotkeys
15928           - DrawRadioButton(): Fixed stringformat to show hotkeys
15929         * CommonDialog.cs: Removed WndProc override, not needed
15930
15931 2005-02-14  Peter Bartok  <pbartok@novell.com>
15932
15933         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
15934           missed those in the rewrite
15935
15936 2005-02-14  Miguel de Icaza  <miguel@novell.com>
15937
15938         * NumericUpDown.cs (Increment, ToString): Add.
15939         (DecimalPlaces): implement.
15940         
15941         Add attributes.
15942         
15943         * UpDownBase.cs: Add the designer attributes.
15944
15945 2005-02-13  Peter Bartok  <pbartok@novell.com>
15946
15947         * Panel.cs: Removed border_style, now in Control
15948         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
15949           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
15950
15951 2005-02-13  Peter Bartok  <pbartok@novell.com>
15952
15953         * MouseButtons.cs: Added missing attributes
15954         * XplatUIStructs.cs: Added enumeration for title styles
15955         * LeftRightAlignment.cs: Added missing attributes
15956         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
15957           it compatible with Graphics.FromHwnd()
15958         * SelectedGridItemChangedEventArgs.cs: Fixed property type
15959         * Keys.cs: Added missing attributes
15960         * SelectionRange.cs: Added missing attributes
15961         * SelectionRangeConverter.cs: Added
15962         * XplatUI.cs:
15963           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
15964             ReleaseMenuDC methods
15965           - Renamed ReleaseWindow to UngrabWindow
15966           - Added proper startup notice to allow version identification
15967         * Form.cs:
15968           - Added missing attributes
15969           - Removed FormParent concept
15970         * Label.cs: Removed border_style field, now in Control
15971         * RadioButton.cs: Now properly selects RadioButton when focus is
15972           received
15973         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
15974         * Control.cs:
15975           - Added missing attributes
15976           - Added borderstyle handling
15977           - Removed FormParent concept support
15978           - Fixed calls to XplatUI to match changed APIs
15979           - Fixed bug that would case us to use disposed Graphics objects
15980           - Removed unneeded internal methods
15981           - PerformLayout(): Fixed to handle DockStyle.Fill properly
15982           - SelectNextControl(): Fixed to properly check common parents
15983         * TextBoxBase.cs: Removed border_style field (now in Control)
15984         * MessageBox.cs:
15985           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
15986             fixed calculations for form size
15987           - Added support for localized strings and icons
15988           - Improved form size calculations, added border
15989         * ListView.cs: Removed border_style field (now in Control)
15990         * X11Structs.cs: Moved several structs from X11 driver here
15991         * X11Keyboard.cs: Changed debug message
15992         * Application.cs: Removed FormParent concept support
15993         * CommonDialog.cs:
15994           - Resetting end_modal flag
15995           - Removed FormParent concept support
15996         * NativeWindow.cs: Removed FormParent concept support
15997         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
15998           Client area and Non-Client whole window to allow support for WM_NC
15999           messages
16000         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
16001           prevent using it until it supports Hwnd as per Geoff Norton's request
16002         * ToolBar.cs: Fixed drawing, was not doing proper drawing
16003         * PictureBox.cs: Removed border_style field, now in Control
16004         * XplatUIWin32.cs: Added new driver methods
16005
16006 2005-02-12  Peter Bartok  <pbartok@novell.com>
16007
16008         * OpacityConverter.cs: Implemented
16009         * Hwnd.cs: Internal class to support drivers that need to emulate
16010           client area/non-client area window behaviour
16011
16012 2005-02-11  Peter Bartok  <pbartok@novell.com>
16013
16014         * KeysConverter.cs: Implemented
16015
16016 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
16017
16018         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
16019         * LinkLabel: Added missing attributes
16020         * MainMenu.cs: fixes ToString
16021         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
16022         * ListBox.cs: fixes event position
16023         * TrackBar.cs: adds missing attributes and events
16024         
16025 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
16026
16027         * MenuItem.cs: Use SystemInformation and bug fixes
16028         * MenuAPI.cs: Use SystemInformation and bug fixes
16029
16030 2005-02-09  Jackson Harper  <jackson@ximian.com>
16031
16032         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
16033         their keystate otherwise things like VK_MENU get stuck "on".
16034
16035 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
16036
16037         * ListBox.cs: Fixes AddRange bug
16038         
16039 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
16040
16041         * ProgressBar.cs
16042                 - Add missing attributes
16043                 - Add missing method
16044                 
16045         * CheckedListBox.cs: Added missing attributes
16046                 - Add missing attributes
16047                 - Remove extra method
16048         
16049         * ComboBox.cs: Added missing attributes
16050         * VScrollBar.cs: Added missing attributes
16051         * ScrollBar.cs:  Added missing attributes
16052         * ListBox.cs: Fixes signature, add missing consts
16053         * LinkArea.cs:   Added missing attributes
16054         
16055
16056 2005-02-08  Peter Bartok  <pbartok@novell.com>
16057
16058         * Menu.cs: Added missing attributes
16059         * MainMenu.cs: Added missing attributes
16060         * GroupBox.cs: Added missing attributes
16061         * Label.cs: Added missing attributes
16062         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
16063         * ColorDialog.cs:
16064           - Added Instance and Options properties
16065           - Added missing attributes
16066         * Cursor.cs: Made Serializable
16067         * NotifyIcon: Added missing attributes
16068         * MenuItem.cs: Added missing attributes
16069         * TextBoxBase.cs: Implemented AppendText() and Select() methods
16070         * Panel.cs: Added Missing attributes
16071         * MonthCalendar.cs: Fixed CreateParams
16072
16073 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16074         
16075         * LinkLabel.cs:
16076                 - Fixes signature
16077                 - Fixes issues with links
16078                 - Adds the class attributes
16079
16080 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
16081         
16082         * ComboBox.cs:
16083                 - Fixes button when no items available in dropdown
16084                 - Fixes repainting problems
16085                 - Adds the class attributes
16086                 
16087 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16088
16089         * XplatUIOSX.cs: Detect the menu bar and title bar height from
16090         the current theme.  Cache these on startup.
16091
16092 2005-02-07  Jackson Harper  <jackson@ximian.com>
16093
16094         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
16095         the scrollbar buttons when they are depressed.
16096
16097 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16098
16099         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
16100         Get the display size from the main displayid.  We currently dont
16101         support multiple display configurations.
16102
16103 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
16104
16105         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
16106
16107 2005-02-07  Miguel de Icaza  <miguel@novell.com>
16108
16109         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
16110
16111 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
16112
16113         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
16114
16115 2005-02-04  Jackson Harper  <jackson@ximian.com>
16116
16117         * ThemeWin32Classic.cs: Respect the clipping rect when
16118         drawing. Only fill the intersection of clips and rects so there
16119         isn't a lot of large fills.
16120         * ScrollBar.cs: Pass the correct clipping rect to the theme
16121         engine. Remove some debug code.
16122
16123 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
16124         
16125         * DateTimePicker.cs:
16126                 - Fixed crash on DateTime.Parse, use Constructor instead
16127
16128 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16129         
16130         * MenuItem.cs:
16131         * MenuAPI.cs:
16132                 - Owner draw support (MeasureItem and DrawItem)
16133
16134 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
16135         
16136         *  Menu.cs:
16137                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
16138                 - Fixes MenuItems.Add range
16139         * MenuItem.cs:
16140                 - MergeMenu and Clone and CloneMenu functions
16141
16142 2005-02-03  Jackson Harper  <jackson@ximian.com>
16143
16144         * ScrollBar.cs: Make abstract
16145         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
16146         is abstract.
16147
16148 2005-02-03  Jackson Harper  <jackson@ximian.com>
16149
16150         * ScrollBar.cs: First part of my scrollbar fixups. This removes
16151         all the unneeded refreshes and uses invalidates with properly
16152         computed rects.
16153
16154 2005-02-03  Peter Bartok  <pbartok@novell.com>
16155
16156         * ComponentModel.cs: Added
16157         * IDataGridEditingService.cs: Added
16158         * Timer.cs: Added missing attributes
16159         * ToolTip.cs: Added missing attributes
16160
16161 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16162
16163         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
16164
16165 2005-02-03  Peter Bartok  <pbartok@novell.com>
16166
16167         * ListBox.cs: Added missing attributes
16168
16169 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
16170         
16171         * ListBox.cs:
16172                 - Fixes font height after font change
16173                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
16174                 
16175 2005-02-02  Peter Bartok  <pbartok@novell.com>
16176
16177         * HandleData.cs: Introduced static methods to allow class
16178           to be more self-contained and track it's own HandleData objects
16179         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
16180           HandleData to use new static methods
16181
16182 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
16183
16184         * Combobox.cs:
16185                 - Fixes default size and PreferredHeight
16186                 - Missing events
16187                 - ObjectCollection.Insert implementation
16188                 
16189         * ListControl.cs
16190                 - Fixes signature
16191         * ListBox.cs:
16192                 - Several fixes
16193                 - ObjectCollection.Insert implementation
16194                 - No selection after clean
16195                 - Small fixes
16196
16197 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16198
16199         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
16200
16201 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
16202
16203         * Combobox.cs:
16204                 - Caches ItemHeight calculation for OwnerDrawVariable
16205                 - Handles dropdown properly
16206                 - Fixes several minor bugs
16207
16208 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16209
16210         * ListBox.cs:
16211                 - Fixes 71946 and 71950
16212                 - Fixes changing Multicolumn on the fly
16213                 - Fixes keyboard navigation on Multicolumn listboxes
16214
16215 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16216         
16217         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
16218         crash reporter log.
16219
16220 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16221
16222         * XplatUIOSX.cs: Allow applications to actually exit.
16223
16224 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16225
16226         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
16227         their parent at creation time rather than lazily later.  Fixes a major
16228         regression we were experiencing.
16229
16230 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16231
16232         * ThemeWin32Classic.cs: more date time picker painting fixes
16233         * DateTimePicker.cs: more monthcalendar drop down fixes
16234         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
16235
16236 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16237
16238         * ScrollBar.cs:
16239                 - When moving the thumb going outside the control should stop the moving
16240                 - Adds the firing of missing events
16241                 - Fixes no button show if Size is not specified
16242                 - End / Home keys for keyboard navigation
16243
16244 2005-01-30  Peter Bartok  <pbartok@novell.com>
16245
16246         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
16247           sanity check to prevent theoretical loop
16248         * XplatUIWin32.cs (SetVisible): Removed debug output
16249         * XplatUIX11.cs (SystrayChange): Added sanity check
16250         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
16251         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
16252           behaviour, valid until the X11 client window rewrite is done
16253         * TextBox.cs (ctor): Setting proper default foreground and background
16254           colors
16255
16256 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
16257
16258         * Theme: Added DrawDateTimePicker to interface
16259         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
16260         * DateTimePicker.cs: Created (still needs keys and painting code)
16261         * DateTimePickerFormat.cs: added
16262         * MonthCalendar.cs: fixed CreateParams for popup window mode
16263           
16264 2005-01-29  Peter Bartok  <pbartok@novell.com>
16265
16266         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
16267           this should also the calculations for ligher/darker
16268         * Theme.cs: Fixed defaults for ScrollBar widths/heights
16269
16270 2005-01-29  Peter Bartok  <pbartok@novell.com>
16271
16272         * ArrangeDirection.cs: Added
16273         * ArrangeStartingPositon.cs: Added
16274         * SystemInformation.cs: Implemented
16275         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16276           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
16277           used by SystemInformation class
16278         * X11Strucs.cs: Added XSizeHints structure
16279         * MenuAPI.cs:
16280           - Fixed CreateParams to make sure the menu window is always visible
16281           - TrackPopupMenu: Added check to make sure we don't draw the
16282             menu offscreen
16283
16284 2005-01-29  Peter Bartok  <pbartok@novell.com>
16285
16286         * HandleData.cs: Added method for altering invalid area
16287         * TextBoxBase.cs: Implemented TextLength
16288
16289 2005-01-28  Peter Bartok  <pbartok@novell.com>
16290
16291         * XplatUIX11.cs: Improvement over last patch, not sending
16292           the WM_PAINT directly anymore, instead we scroll any pending
16293           exposed areas and let the system pick out the WM_PAINT later
16294
16295 2005-01-28  Peter Bartok  <pbartok@novell.com>
16296
16297         * SWF.csproj: Deleted, no longer used. Instead,
16298           Managed.Windows.Forms/SWF.csproj should be used
16299         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
16300           directly, to avoid a potential race condition with the next
16301           scroll
16302
16303 2005-01-28  Peter Bartok  <pbartok@novell.com>
16304
16305         * XplatUI.cs: Made class internal
16306
16307 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
16308
16309         * CheckedListBox.cs:
16310                 - Draw focus
16311                 - Fixed Drawing
16312                 - Missing methods and events
16313
16314 2005-01-27  Peter Bartok  <pbartok@novell.com>
16315
16316         * Application.cs (Run): Don't use form if we don't have one
16317
16318 2005-01-27  Peter Bartok  <pbartok@novell.com>
16319
16320         * TextBoxBase.cs (get_Lines): Fixed index off by one error
16321
16322 2005-01-27  Peter Bartok  <pbartok@novell.com>
16323
16324         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
16325         * GridItem.cs: Added; Patch by Jonathan S. Chambers
16326         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
16327         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
16328         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
16329         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
16330         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16331         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16332         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16333         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16334         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16335         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16336
16337 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16338
16339         * Combobox.cs:
16340                 - Draw focus on Simple Combobox
16341                 - Fixes drawing issues
16342                 - fixes 71834
16343
16344 2005-01-27  Peter Bartok  <pbartok@novell.com>
16345
16346         * Form.cs:
16347           - Place window in default location, instead of hardcoded 0/0
16348           - Send initial LocationChanged event
16349         * Control.cs:
16350           - UpdateBounds after creation to find out where the WM placed us
16351           - Make sure that if the ParentForm changes location the Form
16352             is notified
16353         * XplatUIX11.cs: XGetGeometry will not return the coords relative
16354             to the root, but to whatever the WM placed around us.
16355             Translate to root coordinates before returning toplevel
16356             coordinates
16357         * XplatUIWin32.cs: Removed debug output
16358         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
16359           flag to GetWindowPos, to allow translation of coordinates on X11
16360
16361 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16362
16363         * ListBox.cs: connect LostFocus Event
16364
16365 2005-01-27  Peter Bartok  <pbartok@novell.com>
16366
16367         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16368           XplatUIX11.cs: Extended the Systray API
16369         * Form.cs: Removed debug output
16370         * Application.cs: Fixed focus assignment, always need to call
16371           XplatUI.Activate() since Form.Activate() has rules that may
16372           prevent activation
16373         * NotifyIcon.cs: Should be complete now
16374         * ToolTip.cs: Worked around possible timer bug
16375
16376 2005-01-27  Jackson Harper  <jackson@ximian.com>
16377
16378         * TabControl.cs:
16379         - Only invalidate the effected tabs when the
16380         selected index changes. This reduces drawing and gets rid of some
16381         flicker.
16382         - Only refresh if the tabs need to be shifted, otherwise only
16383         invalidate the slider button.
16384         - On windows the tabs are not filled to right if the slider is
16385         visible.
16386         
16387 2005-01-27  Jackson Harper  <jackson@ximian.com>
16388
16389         * TabControl.cs: Only refresh on mouseup if we are showing the
16390         slider. Also only invalidate the button whose state has changed.
16391
16392 2005-01-26  Peter Bartok  <pbartok@novell.com>
16393
16394         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
16395         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
16396           and SystrayRemove() methods
16397         * XplatUIOSX.cs: Stubbed Systray methods
16398         * XplatUIX11.cs:
16399           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
16400             methods
16401           - Fixed broken XChangeProperty calls (marshalling messed up things)
16402         * X11Structs.cs: Added enums and structs required for Size hinting
16403         * NotifyIcon.cs: Added & implemented
16404
16405 2005-01-26  Jackson Harper  <jackson@ximian.com>
16406
16407         * TabControl.cs: Space vertically layed out tabs properly.
16408
16409 2005-01-26  Peter Bartok  <pbartok@novell.com>
16410
16411         * Form.cs (CreateClientParams): Always set the location to 0,0
16412           since we're a child window.
16413
16414         * Control.cs (SetVisibleCore): Always explicitly setting the location
16415           of a toplevel window, apparently X11 doesn't like to move windows
16416           while they're not mapped.
16417
16418 2005-01-26  Jackson Harper  <jackson@ximian.com>
16419
16420         * TabControl.cs: Implement FillToRight size mode with vertically
16421         rendered tabs.
16422
16423 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16424
16425         * ControlPaint.cs, ThemeWin32Classic.cs
16426                 - Fixes DrawFocusRectangle
16427
16428 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16429
16430         * MenuAPI.cs:
16431                 - MenuBar tracking only starts when item is first clicked
16432                 - Fixes menu hidding for multiple subitems
16433                 - Unselect item in MenuBar when item Executed
16434                 - Fixes bug 71495
16435
16436 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
16437
16438         * ListControl.cs:
16439                 - IsInputKey for ListBox
16440         * ListBox.cs:
16441                 - Focus item
16442                 - Shift and Control item selection
16443                 - Implement SelectionMode.MultiExtended
16444                 - Fixes RightToLeft
16445         * ComboBox.cs:
16446                 - IsInputKey implemented
16447                 - Do not generate OnTextChangedEdit on internal txt changes
16448                 
16449 2005-01-23  Peter Bartok  <pbartok@novell.com>
16450
16451         * AccessibleObject.cs: Partially implemented Select()
16452         * MonthCalendar.cs: Added missing attributes and events
16453         * Form.cs: Fixed CreateParams behaviour, now controls derived from
16454           form can properly override CreateParams.
16455         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16456           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
16457           Control performs Invalidate & Update
16458         * NativeWindow (CreateHandle): Added special handling for Form
16459           and Form.FormParent classes to allow overriding of From.CreateParams
16460         * Control.cs:
16461           - ControlNativeWindow: Renamed 'control' variable to more intuitive
16462             name 'owner'
16463           - ControlNativeWindow: Added Owner property
16464           - Removed usage of Refresh() on property changes, changed into
16465             Invalidate(), we need to wait until the queue is processed for
16466             updates, direct calls might cause problems if not all vars for
16467             Paint are initialized
16468           - Added call to UpdateStyles() when creating the window, to set any
16469             styles that CreateWindow might have ignored.
16470           - Added support for Form CreateParent overrides to UpdateStyles()
16471         * MessageBox.cs: Removed no longer needed FormParent override stuff,
16472           CreateParams are now properly overridable
16473         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
16474           CreateParams are now properly overridable
16475
16476 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
16477
16478         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
16479         OnTextBoxChanged.
16480
16481         Capture LostFocus and OnTextBoxChanged.  The later introduces a
16482         recursive invocation that I have not figured out yet.
16483
16484         Reset the timer when not using (it was accumulating).
16485
16486
16487         (OnTextBoxChanged): Set UserEdit to true here to track whether the
16488         user has made changes that require validation.
16489
16490         Reset changing to avoid loops.
16491
16492 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
16493
16494         * NumericUpDown.cs: Display value at startup.
16495
16496         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
16497         ValidateEditText.
16498
16499         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
16500         filled in.  Added some basic parsing of text.
16501
16502         Still missing the OnXXX method overrides, and figuring out the
16503         events that must be emitted.
16504
16505         * UpDownBase.cs: Handle UserEdit on the Text property.
16506         
16507 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
16508
16509         * ComboBox.cs:
16510           - Fixes IntegralHeight
16511           - ToString method
16512
16513 2005-01-21  Jackson Harper  <jackson@ximian.com>
16514
16515         * TabControl.cs: Set the SelectedIndex property when SelectedTab
16516         is set so that the page visibility is updated and the tabs are
16517         sized correctly.
16518
16519 2005-01-21  Jackson Harper  <jackson@ximian.com>
16520
16521         * TabControl.cs: Use cliping rectangle for blitting. Give the
16522         theme the clipping rect so we can do clipping while
16523         drawing. Remove some debug code.
16524
16525 2005-01-21  Jackson Harper  <jackson@ximian.com>
16526
16527         * TabPage.cs: Add a new method so tab pages can force the tab
16528         control to recalculate the tab page sizes.
16529         * TabControl.cs: UpdateOwner needs to make the tab control recalc
16530         sizes.
16531
16532 2005-01-20  Jackson Harper  <jackson@ximian.com>
16533
16534         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
16535
16536 2005-01-20  Jackson Harper  <jackson@ximian.com>
16537
16538         * TreeView.cs: Set the bounds for nodes properly. They were
16539         getting screwed up when checkboxes were not enabled, but images
16540         were.
16541
16542 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
16543
16544         * ListBox.cs:
16545                 - Owner draw support
16546                 - Fixes
16547                 
16548 2005-01-20  Jackson Harper  <jackson@ximian.com>
16549
16550         * XplatUIStructs.cs: More misc keys
16551         * X11Keyboard.cs: Ignore some control keys.
16552
16553 2005-01-20  Jackson Harper  <jackson@ximian.com>
16554
16555         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
16556         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
16557
16558 2005-01-19  Peter Bartok  <pbartok@novell.com>
16559
16560         * Control.cs: Un-selecting the control when it is loosing focus
16561
16562 2005-01-19  Jackson Harper  <jackson@ximian.com>
16563
16564         * TreeView.cs: Hook up to the text controls leave event so we can
16565         end editing when the users clicks outside the text box.
16566         
16567 2005-01-19  Jackson Harper  <jackson@ximian.com>
16568
16569         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
16570         get set in the conversion array.
16571
16572 2005-01-19  Peter Bartok  <pbartok@novell.com>
16573
16574         * Application.cs (ModalRun): Added a call to CreateControl to ensure
16575           focus is properly set
16576         * Button.cs:
16577           - Added missing attributes
16578           - removed styles, those are already set in the base class
16579         * ButtonBase.cs:
16580           - Added missing attributes
16581           - Added clip window styles
16582         * CheckBox.cs: Added missing attributes
16583         * CommonDialog.cs:
16584           - FormParentWindow.CreateParams: Added required clip styles
16585         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
16586           also filters modifier keys
16587         * MessageBox.cs:
16588           - Added assignment of Accept and Cancel button to enable Enter
16589             and Esc keys in MessageBox dialogs
16590           - FormParentWindow.CreateParams: Added required clip styles
16591         * RadioButton.cs: Added missing attributes
16592         * TextControl.cs: No longer draws selection if control does not
16593           have focus
16594         * TextBoxBase.cs:
16595           - Now draws simple rectangle around test area to make it obvious
16596             there's a control. This is a hack until we properly support borders
16597           - A few simple fixes to support selections better, now erases selected
16598             text when typing, and resets selection when using movement keys
16599
16600 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
16601
16602         * UpDownBase.cs: Added some new properties.
16603
16604         * DomainUpDown.cs: Implement a lot to get my test working.
16605
16606 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16607
16608         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
16609
16610 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16611
16612         * OSXStructs (WindowAttributes): Fixed csc complaints
16613
16614 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16615
16616         * XplayUIOSX.cs:
16617           OSXStructs.cs: Initial refactor to move enums and consts into
16618           OSXStructs and use them in the driver for greater readability.
16619
16620 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16621
16622         * XplatUIOSX.cs: Initial support for Standard Cursors.
16623         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
16624
16625 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
16626
16627         * ComboBox.cs: ability to change style when the ctrl is already
16628         created, missing methods and events, bug fixes, signature fixes
16629
16630 2005-01-19  Peter Bartok  <pbartok@novell.com>
16631
16632         * Cursors.cs (ctor): Added ctor to fix signature
16633
16634 2005-01-18  Peter Bartok  <pbartok@novell.com>
16635
16636         * Button.cs: Implemented DoubleClick event
16637         * ButtonBase.cs:
16638           - Fixed keyboard handling to behave like MS, where the press of
16639             Spacebar is equivalent to a mousedown, and the key release is
16640             equivalent to mouseup. Now a spacebar push will give the same
16641             visual feedback like a mouse click.
16642           - Added missing attributes
16643           - Added ImeModeChanged event
16644           - Added support for generating DoubleClick event for derived classes
16645         * CheckBox.cs:
16646           - Implemented DoubleClick event
16647           - Added missing attributes
16648         * CommonDialog.cs: Added missing attribute
16649         * ContextMenu.cs: Added missing attributes
16650         * RadioButton.cs:
16651           - AutoChecked buttons do not allow to be unselected when clicked
16652             (otherwise we might end up with no selected buttons in a group)
16653           - Added missing attributes
16654           - Implemented DoubleClickEvent
16655         * ThreadExceptionDialog.cs: Enabled TextBox code
16656
16657 2005-01-18  Peter Bartok  <pbartok@novell.com>
16658
16659         * Form.cs: Removed debug output
16660         * Button.cs: Added support for DoubleClick method
16661
16662 2005-01-18  Peter Bartok  <pbartok@novell.com>
16663
16664         * Form.cs:
16665           - Added method to parent window that allows triggering size
16666             calculations when a menu is added/removed
16667           - set_Menu: Cleaned up mess from early days of Form and Control,
16668             now properly triggers a recalc when a menu is added/removed
16669           - Added case to select form itself as focused form if no child
16670             controls exist
16671           - Added PerformLayout call when showing dialog, to ensure properly
16672             placed controls
16673         * Control.cs:
16674           - Select(): Made internal so Form can access it
16675           - Focus(): Only call Xplat layer if required (avoids loop), and sets
16676             status
16677         * Application.cs (Run): Removed hack and calls PerformLayout instead
16678           to trigger calculation when Form becomes visible
16679
16680 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
16681
16682         * ComboBox.cs: fixes for ownerdraw
16683
16684 2005-01-18  Peter Bartok  <pbartok@novell.com>
16685
16686         * TextControl.cs:
16687           - Sentinel is no longer static, each Document gets it's own, this
16688             avoids locking or alternatively overwrite problems when more
16689             than one text control is used simultaneously.
16690           - Switched to use Hilight and HilightText brushes for text selection
16691
16692         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
16693
16694 2005-01-18  Peter Bartok  <pbartok@novell.com>
16695
16696         * Control.cs:
16697           - Hooked up the following events:
16698                 o ControlAdded
16699                 o ControlRemoved
16700                 o HandleDestroyed
16701                 o ImeModeChanged
16702                 o ParentChanged
16703                 o TabStopChanged
16704                 o Invalidated
16705                 o SystemColorsChanged
16706                 o ParentFontChanged
16707                 o Move
16708           - Removed debug output
16709           - Added a call to the current theme's ResetDefaults when a color change
16710             is detected
16711         * Form.cs: Now setting the proper ImeMode
16712         * Theme.cs: Defined a method to force recreation of cached resources
16713           and rereading of system defaults (ResetDefaults())
16714         * ThemeWin32Classic.cs: Added ResetDefaults() stub
16715
16716 2005-01-17  Peter Bartok  <pbartok@novell.com>
16717
16718         * Control.cs: Added missing attributes
16719
16720 2005-01-17  Jackson Harper  <jackson@ximian.com>
16721
16722         * TreeNode.cs: Implement editing. Add missing properties selected
16723         and visible.
16724         * TreeView.cs: Implement node editing. Also some fixes to use
16725         Invalidate (invalid area) instead of Refresh when selecting.
16726
16727 2005-01-17  Peter Bartok  <pbartok@novell.com>
16728
16729         * Control.cs:
16730           - Implemented InvokeGotFocus() method
16731           - Implemented InvokeLostFocus() method
16732           - Implemented InvokePaint() method
16733           - Implemented InvokePaintBackground() method
16734           - Implemented InvokeClick() method
16735           - Implemented FindForm() method
16736           - Implemented RectangleToClient() method
16737           - Implemented ClientToRectangle() method
16738           - Implemented ResetBackColor() method
16739           - Implemented ResetCursor() method
16740           - Implemented ResetFont() method
16741           - Implemented ResteForeColor() method
16742           - Implemented ResetImeMode() method
16743           - Implemented ResetLeftToRight() method
16744           - Implemented ResetText() method
16745           - Implemented Scale() methods
16746           - Implemented ScaleCore() method
16747           - Implemented Update() method
16748           - Removed unused variables
16749           - Stubbed AccessibilityNotifyClients and
16750             ControlAccessibleObject.NotifyClients() methods (dunno what to do
16751             with those yet)
16752           - Now setting proper default for RightToLeft property
16753           - Fixed bug in SetClientSizeCore that would cause windows to get
16754             really big
16755           - Now sending Click/DoubleClick events
16756           - Now selecting controls when left mouse button is clicked on
16757             selectable control
16758         * AccessibleEvents.cs: Added
16759         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
16760         * XplatUIOSX.cs: Stubbed UpdateWindow() method
16761         * XplatUIWin32.cs: Implemented UpdateWindow() method
16762         * XplatUIX11.cs: Implemented UpdateWindow() method
16763         * Form.cs: Removed stray semicolon causing CS0162 warning
16764         * ThemeWin32Classic.cs: Fixed unused variable warnings
16765         * ScrollableControl.cs: Now calls base method for ScaleCore
16766         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
16767           style to avoid interference with internal click handler (which is
16768           different than standard Control click handling)
16769         * RadioButton.cs:
16770           - Now unchecks all sibling radio buttons when control is
16771             selected (Fixes #68756)
16772           - Removed internal tabstop variable, using the one inherited from
16773             Control
16774
16775 2005-01-17  Jackson Harper  <jackson@ximian.com>
16776
16777         * NavigateEventArgs.cs: Fix base type.
16778         * LinkLabel.cs: Sig fix
16779         
16780 2005-01-17  Jackson Harper  <jackson@ximian.com>
16781
16782         * TreeView.cs: Only invalidate the effected nodes bounds when
16783         selecting nodes.
16784
16785 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16786
16787         * XplatUIWin32.cs: fixes Win32 marshaling
16788         * XplatUIX11.cs: fixes method signature
16789
16790 2005-01-17  Peter Bartok  <pbartok@novell.com>
16791
16792         * XplatUIX11.cs: Clean up resources when we no longer need them
16793
16794 2005-01-17  Peter Bartok  <pbartok@novell.com>
16795
16796         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
16797           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
16798           and DestroyCursor() methods.
16799         * Cursor.cs: Partially implemented, now supports standard cursors;
16800           still contains some debug code
16801         * Cursors.cs: Implemented class
16802         * Control.cs:
16803           - WndProc(): Added handling of WM_SETCURSOR message, setting the
16804             appropriate cursor
16805           - Implemented Cursor property
16806           - Replaced break; with return; more straightforwar and possibly
16807             faster
16808           - Now properly setting the result for WM_HELP
16809         * X11Structs.cs: Added CursorFontShape enum
16810         * XplatUIStructs.cs:
16811           - Added StdCursor enum (to support DefineStdCursor() method)
16812           - Added HitTest enum (to support sending WM_SETCURSOR message)
16813         * XplatUIX11.cs:
16814           - Now sends the WM_SETCURSOR message
16815           - Implemented new cursor methods
16816         * XplatUIOSX.cs: Stubbed new cursor methods
16817         * XplatUIWin32.cs:
16818           - Implemented new cursor methods
16819           - Added GetSystemMetrics function and associated enumeration
16820
16821 2005-01-15  Peter Bartok  <pbartok@novell.com>
16822
16823         * Control.cs:
16824           - WndProc(): Now handles EnableNotifyMessage
16825           - SelectNextControl(): Fixed bug where if no child or sibling
16826             controls exist we looped endlessly
16827
16828 2005-01-14  Jackson Harper  <jackson@ximian.com>
16829
16830         * TreeView.cs: Recalculate the tab pages when a new one is added
16831         so that the proper bounding rects are created.
16832
16833 2005-01-14  Jackson Harper  <jackson@ximian.com>
16834
16835         * TreeView.cs: Draw a gray box instead of a grip in the lower
16836         right hand corner when there are both horizontal and vertical
16837         scroll bars.
16838
16839 2005-01-14  Jackson Harper  <jackson@ximian.com>
16840
16841         * Control.cs: When erasing backgrounds use FromHwnd instead of
16842         FromHdc when there is a NULL wparam. This occurs on the X driver.
16843         * XplatUIX11.cs: Set the wparam to NULL.
16844
16845 2005-01-13  Jackson Harper  <jackson@ximian.com>
16846
16847         * PictureBox.cs: Implement missing methods (except ToString, need
16848         to test that on windows) and events. When visibility is changed we
16849         need to redraw the image because the buffers are killed. When size
16850         is changed refresh if the sizemode needs it.
16851
16852 2005-01-13  Peter Bartok  <pbartok@novell.com>
16853
16854         * Control.cs (SelectNextControl): Was using wrong method to select
16855           a control
16856
16857 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16858
16859         * ComboBox.cs: fixes dropstyle
16860
16861 2005-01-13  Peter Bartok  <pbartok@novell.com>
16862
16863         * Form.cs:
16864           - Implemented Select() override
16865           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
16866           - Now sets keyboard focus on startup
16867         * Control.cs (SelectNextControl): Now properly handles directed=true
16868         * TextBoxBase.cs:
16869           - WndProc: Now passes tab key on to base if AcceptTabChar=false
16870           - Added (really bad) focus rectangle (mostly for testing)
16871         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
16872           to enforce redraw on focus changes
16873         * ContainerControl.cs:
16874           - Fixed detection of Shift-Tab key presses
16875           - Fixed traversal with arrow keys
16876         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
16877           gonna keep this or if it's complete yet
16878         
16879 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16880
16881         * ComboBox.cs: missing properties, fixes
16882
16883 2005-01-13  Peter Bartok  <pbartok@novell.com>
16884
16885         * Panel.cs (ctor): Setting Selectable window style to off
16886         * Splitter.cs (ctor): Setting Selectable window style to off
16887         * GroupBox.cs (ctor): Setting Selectable window style to off
16888         * Label.cs (ctor): Setting Selectable window style to off
16889
16890 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
16891
16892         * UpDownBase.cs (InitTimer): If the timer has been already
16893         created, enable it.
16894
16895         Use a TextBox instead of a Label.
16896
16897 2005-01-12  Jackson Harper  <jackson@ximian.com>
16898
16899         * TreeView.cs: Refresh the tree after sorting the nodes. Always
16900         draw the connecting node lines (when ShowLines is true).
16901         * TreeNode.cs: The nodes index can now be updated. This is used
16902         when a node collection is sorted.
16903         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
16904         insert or an existing unsorted node collection can be sorted.
16905         
16906 2005-01-12  Peter Bartok  <pbartok@novell.com>
16907
16908         * ContainerControl.cs: Implemented ProcessDialogKeys()
16909
16910 2005-01-12  Peter Bartok  <pbartok@novell.com>
16911
16912         * Control.cs:
16913           - Implemented SelectNextControl() method
16914           - Several focus related bug fixes
16915           - Fixed Docking calculations to match MS documentation and
16916             behaviour
16917
16918 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
16919
16920         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
16921         bug fixes
16922
16923 2005-01-12  Peter Bartok  <pbartok@novell.com>
16924
16925         * Control.cs:
16926           - Fixed broken Contains() method
16927           - Implemented GetNextControl() method. Finally. This is the pre-
16928             requisite for focus handling.
16929
16930 2005-01-12  Peter Bartok  <pbartok@novell.com>
16931
16932         * OSXStrucs.cs: Added
16933
16934 2005-01-12  Peter Bartok  <pbartok@novell.com>
16935
16936         * XplatUIWin32.cs:
16937           - Removed PeekMessageFlags
16938           - Implemented SetWindowStyle() method
16939         * XplatUIStructs.cs: Added PeekMessageFlags
16940         * X11Structs: Added missing border_width field to XWindowChanges struct
16941         * XplatUIX11.cs:
16942           - PeekMessage: Now throws exception if flags which are not yet
16943             supported are passed
16944           - Implemented SetWindowStyle() method
16945           - Fixed SetZOrder to handle AfterHwnd properly
16946         * XplatUI.cs: Added SetWindowStyle() method
16947         * XplatUIDriver.cs: Added SetWindowStyle() abstract
16948         * Control.cs:
16949           - Implemented UpdateStyles() method
16950           - Implemented UpdateZOrder() method
16951         * XplatUIOSX.cs: Added SetWindowStyle() stub
16952
16953 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
16954
16955         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
16956         button mouse).
16957
16958
16959 2005-01-11  Jackson Harper  <jackson@ximian.com>
16960
16961         * TreeView.cs: Still need to draw lines to siblings even if out of
16962         the current node is out of the clip.
16963
16964 2005-01-11  Jackson Harper  <jackson@ximian.com>
16965
16966         * TreeView.cs: When setting the hbar/vbar/grip position use
16967         SetBounds so that perform layout is only called once. Also suspend
16968         and resume layout so layout is only done once for all controls.
16969         - Removed some debug fluff
16970         * SizeGrip.cs: Call base implmentation in overriding methods.
16971         - When visibility is changed the drawing buffers are killed so we
16972         need to redraw.
16973
16974 2005-01-11  Jackson Harper  <jackson@ximian.com>
16975
16976         * TreeView.cs: Calculate the open node count while drawing. This
16977         saves us an entire tree traversal for every paint operation. Use
16978         a member var for the open node count so less vars are passed around.
16979
16980 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
16981
16982         * MonthCalendar.cs:
16983         - fixed selection to use mousemove, not mouse polling on timer
16984         * ThemeWin32Classic.cs
16985         - removed redundant unused variable "no_more_content"
16986         
16987 2005-01-11  Peter Bartok  <pbartok@novell.com>
16988
16989         * XplatUIX11.cs (DoEvents): Needs to return when no more events
16990           are pending, so it now calls PeekMessage instead of GetMessage;
16991           implemented a incomplete version of PeekMessage
16992         
16993 2005-01-11  Peter Bartok  <pbartok@novell.com>
16994
16995         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
16996           I18n issues
16997         * TextBoxBase.cs: Added sending of TextChanged event
16998
16999 2005-01-10  Jackson Harper  <jackson@ximian.com>
17000
17001         * TreeView.cs: Try not to draw outside the clipping rectangle on
17002         each node element.
17003
17004 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
17005
17006         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
17007
17008 2005-01-10  Jackson Harper  <jackson@ximian.com>
17009
17010         * TreeView.cs:
17011         - Implement fast scrolling. Now only the newly
17012         exposed nodes are drawn and the old image is moved using the
17013         XplatUI::ScrollWindow method.
17014         - Factor in height of nodes when calculating whether or not the
17015         node is in the clipping rect.
17016
17017 2005-01-10  Jackson Harper  <jackson@ximian.com>
17018
17019         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
17020
17021 2005-01-10  Peter Bartok  <pbartok@novell.com>
17022
17023         * Application.cs: Added temporary hack to resolve all our resize
17024           required issues on startup. This will get fixed properly at
17025           some point in the future
17026
17027 2005-01-10  Jackson Harper  <jackson@ximian.com>
17028
17029         * SizeGrip.cs: New internal class that is used as a sizing
17030         grip control...hence the name.
17031
17032 2005-01-10  Peter Bartok  <pbartok@novell.com>
17033
17034         * Control.cs: Implemented proper TabIndex handling, now assigning
17035           a tabindex when a control is added to a container
17036         * GroupBox.cs (ctor): Now sets the Container style bit, required
17037           for Control.GetNextControl()
17038
17039 2005-01-09  Jackson Harper  <jackson@ximian.com>
17040
17041         * TextBoxBase.cs: Clear window when scrolling (fixes build).
17042
17043 2005-01-09  Peter Bartok <pbartok@novell.com>
17044
17045         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
17046           XplatUIX11.cs: Added ability to control ScrollWindow expose and
17047           an overload for ScrollWindow to allow only scrolling a rectangle
17048
17049 2005-01-09  Peter Bartok <pbartok@novell.com>
17050
17051         * Form.cs:
17052           - Implemented SetDesktopBounds method
17053           - Implemented SetDesktopLocation method
17054
17055 2005-01-08  Jackson Harper  <jackson@ximian.com>
17056
17057         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
17058         the node count has changed, this removes to VScroll::Refresh calls
17059         when drawing.
17060
17061 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
17062
17063         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
17064
17065 2005-01-07  Jackson Harper  <jackson@ximian.com>
17066
17067         * TreeNode.cs: Just update the single node when it is
17068         checked. Don't refresh after toggling, the Expand/Collapse already
17069         handles this.
17070         * TreeView.cs: Respect clipping a little more when drawing. Try
17071         not to redraw things that don't need to be redrawn. Just hide the
17072         scrollbars when they are no longer needed instead of removing
17073         them, so they don't have to be created again and again.
17074         
17075 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
17076
17077         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
17078         coordinates to window space to place the caret properly, FIXED.
17079         Implement GetWindowState & SetWindowState
17080
17081 2005-01-06  Peter Bartok <pbartok@novell.com>
17082
17083         * Form.cs:
17084           - Implemented ClientSize property
17085           - Implemented DesktopBounds property
17086           - Implemented DesktopLocation property
17087           - Implemented IsRestrictedWindow property
17088           - Implemented Size property
17089           - Implemented TopLevel property
17090           - Implemented FormWindowState property
17091         * Control.cs:
17092           - Implemented GetTopLevel() method
17093           - Implemented SetTopLevel() method
17094         * X11Structs.cs (Atom):
17095           - Added AnyPropertyType definition
17096           - Added MapState definiton and updated XWindowAttribute struct
17097         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
17098         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
17099         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
17100         * XplatUIWin32.cs:
17101           - Implemented GetWindowState() and SetWindowState() methods
17102           - Fixed Win32GetWindowLong return type
17103         * XplatUIX11.cs:
17104           - Introduced central function for sending NET_WM messages
17105           - Implemented GetWindowState() and SetWindowState() methods
17106         * TextBoxBase.cs (set_Lines):
17107           - Now uses Foreground color for text added via Text property (Duh!)
17108           - Added code to remember programmatically requested size (fixes
17109             behaviour when Multiline is set after Size)
17110           - Added AutoSize logic
17111
17112 2005-01-06  Jackson Harper  <jackson@ximian.com>
17113
17114         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
17115
17116 2005-01-06  Jackson Harper  <jackson@ximian.com>
17117
17118         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
17119         set to less then 0.
17120
17121 2005-01-06  Jackson Harper  <jackson@ximian.com>
17122
17123         * ScrollableControl.cs: Lazy init the scrollbars.
17124         
17125 2005-01-06  Jackson Harper  <jackson@ximian.com>
17126
17127         * Theme.cs: Speed up getting pens and solid brushes, by using
17128         their ARGB as a hash instead of tostring and not calling Contains.
17129
17130 2005-01-06  Peter Bartok <pbartok@novell.com>
17131
17132         * Form.cs:
17133           - Implemented OnActivated and OnDeactivate event trigger
17134           - Implemented Activate() method
17135           - Fixed ShowDialog() to activate the form that was active before
17136             the dialog was shown
17137         * XplatUIX11.cs:
17138           - Added global active_window var that tracks the currently active
17139             X11 window
17140           - Now always grabs Property changes from the root window to always
17141             catch changes on the active window property
17142           - Added code to PropertyNotify handler to send Active/Inactive
17143             messages when state changes. This puts X11 and Win32 en par on
17144             WM_ACTIVATE notifications (except for double notifications when
17145             the user clicks away from our modal window to another one of our
17146             windows)
17147
17148 2005-01-05  Jackson Harper  <jackson@ximian.com>
17149
17150         * ImageList.cs: Implment ctor
17151
17152 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17153
17154         * XplatUIOSX.cs: Implement Activate/SetTopmost
17155
17156 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17157
17158         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
17159
17160 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17161
17162         * XplatUIOSX.cs: Implement GetActive/SetFocus.
17163
17164 2005-01-05  Peter Bartok <pbartok@novell.com>
17165
17166         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
17167           XplatUIOSX.cs: Added GetActive method to return the currently
17168           active window for the application (or null, if none is active)
17169         * Form.cs:
17170           - Implemented ActiveForm
17171           - Commented out owner assignment for modal dialogs (causes problems
17172             on Win32, since the owner will be disabled)
17173           - Reworked some Active/Focus handling (still incomplete)
17174         * CommonDialog.cs: Commented out owner assignment for modal dialogs
17175           (causes problems on Win32, since the owner will be disabled)
17176         * IWin32Window: Added ComVisible attribute
17177
17178 2005-01-05  Peter Bartok <pbartok@novell.com>
17179
17180         * ToolTip.cs (WndProc): Enable setting focus now that we have the
17181           required XplatUI functions.
17182
17183 2005-01-05  Peter Bartok <pbartok@novell.com>
17184
17185         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
17186           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
17187           to implement focus and activation handling; still incomplete and
17188           with debug output
17189
17190 2005-01-04  Peter Bartok <pbartok@novell.com>
17191
17192         * TextBoxBase.cs: Changed access level for Document property to
17193           match switch to internal for TextControl
17194
17195 2005-01-04  Peter Bartok <pbartok@novell.com>
17196
17197         * AccessibleObject: Added ComVisible attribute
17198
17199 2005-01-04  Jackson Harper  <jackson@ximian.com>
17200
17201         * X11Keyboard.cs: Remove unneeded var.
17202
17203 2005-01-04  Jackson Harper  <jackson@ximian.com>
17204
17205         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
17206         but PAINT.
17207         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
17208         ClientMessage. This makes apps exit cleanly (more often).
17209         
17210 2005-01-04  Jackson Harper  <jackson@ximian.com>
17211
17212         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
17213         handling focus, return correct colors and fonts,
17214         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
17215         handle selection, horizontal scrolling, and mouse interaction.
17216
17217 2005-01-04  Peter Bartok <pbartok@novell.com>
17218
17219         * ICommandExecutor.cs: Added
17220         * IDataGridColumnStyleEditingNotificationService.cs: Added
17221         * IFeatureSupport.cs: Added
17222         * IFileReaderService.cs: Added
17223         * IDataObject.cs: Added ComVisible attribute
17224         * AmbientProperties.cs: Added
17225         * BaseCollection.cs: Added missing attributes
17226         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
17227         * BaseCollection.cs: Added missing attributes
17228         * Binding.cs: Added TypeConverter attribute
17229         * BindingContext.cs: Added DefaultEvent attribute
17230         * BindingsCollection.cs: Added DefaultEvent attribute
17231         * Button.cs: Added DefaultValue attribute
17232         * DragEventArgs.cs: Added ComVisible attribute
17233         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
17234         * KeyEventArgs.cs: Added ComVisible attribute
17235         * KeyPressEventArgs.cs: Added ComVisible attribute
17236         * MouseEventArgs.cs: Added ComVisible attribute
17237         * NavigateEventArgs.cs: Added
17238         * NavigateEventHandler.cs: Added
17239         * FeatureSupport.cs: Added
17240         * OSFeature.cs: Added
17241         * Theme.cs: Added abstract Version property to support OSFeature
17242         * ThemeWin32Classic.cs: Added Version property to
17243           support OSFeature.Themes
17244         * ProgressBar.cs: Removed OnPaintBackground override, not required since
17245           the proper styles to avoid background drawing are set, also doesn't
17246           match MS signature
17247         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
17248         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
17249         * ScrollEventArgs.cs: Added ComVisible attribute
17250         * SplitterEventArgs.cs: Added ComVisible attribute
17251         * AccessibleSelection.cs: Added Flags attribute
17252         * Appearance.cs: Added ComVisible attribute
17253         * Border3DSide.cs: Added ComVisible attribute
17254         * Border3DStyle.cs: Added ComVisible attribute
17255         * BorderStyle.cs: Added ComVisible attribute
17256         * DragAction.cs: Added ComVisible attribute
17257         * ErrorBlinkStyle.cs: Added
17258         * ScrollEventType.cs: Added ComVisible attribute
17259         * AnchorStyles.cs: Added Editor attribute
17260         * DockStyle.cs: Added Editor attribute
17261         * HorizontalAlignment.cs: Added ComVisible attribute
17262         * HelpEventArgs.cs: Added ComVisible attribute
17263         * PaintEventArgs.cs: Added IDisposable
17264
17265 2005-01-04  Peter Bartok <pbartok@novell.com>
17266
17267         * TextControl.cs: Switched Line, LineTag and Document classes to
17268           internal
17269
17270 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17271
17272         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
17273         Simple mode, fixes, IntegralHeight, etc.
17274
17275 2005-01-04  Peter Bartok <pbartok@novell.com>
17276
17277         * TextBoxBase.cs: Using proper font variable now
17278
17279 2005-01-04  Peter Bartok <pbartok@novell.com>
17280
17281         * Form.cs (ShowDialog): Set parent to owner, if provided
17282         * GroupBox.cs: Removed unused vars
17283         * TextControl.cs:
17284           - Added GetHashCode() for Document and LineTag classes
17285           - Removed unused variables
17286           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
17287             to allow translation between continuous char position and line/pos
17288         * CheckBox.cs: Removed vars that are provided by base class
17289         * RadioButton.cs: Removed vars that are provided by base class, added
17290           new keyword where required
17291         * LinkLabel.cs: Added new keyword where required
17292         * Control.cs (WndProc): Removed unused variable
17293         * TextBoxBase.cs:
17294           - Finished SelectionLength property
17295           - Implemented SelectionStart property
17296           - Implemented Text property
17297           - Removed unused vars
17298         * MessageBox.cs: Added new keyword where required
17299         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
17300           WndProc signature
17301         * MenuAPI.cs: Added new keyword where required
17302         * ButtonBase.cs: Removed vars that are provided by base class, added
17303           new keyword where required
17304         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
17305           argument to double, to allow compiling with csc 2.0 (Atsushi ran
17306           into this)
17307         * Application.cs (Run): Now triggers the ThreadExit event
17308         * CommonDialog.cs: Added new keyword where required; now properly sets
17309           parent (owner) for dialog
17310         * XplatUIX11.cs: Commented out unused vars
17311         * StatusBar.cs: Fixed signature for Text property
17312         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
17313
17314 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17315
17316         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
17317         TrackBar.cs, MonthCalendar.cs: remove unused vars
17318
17319 2005-01-03  Jackson Harper  <jackson@ximian.com>
17320
17321         * ThemeWin32Classic.cs:
17322         * X11Keyboard.cs: Remove unused vars.
17323
17324 2005-01-03  Peter Bartok  <pbartok@novell.com>
17325
17326         * TextBox.cs:
17327           - set_Text: Tied into TextControl
17328           - set_TextAlignment: Tied into TextControl
17329         * TextControl.cs:
17330           - Added alignment properties and implemented alignment handling
17331             and drawing (still has a bug, not generating proper expose events)
17332           - Added new Line() constructor to allow passing the line alignment
17333           - Fixed selection setting, properly handling end<start now
17334           - Added aligment considerations to RecalculateDocument()
17335         * TextBoxBase.cs:
17336           - Now properly enforces control height for single line controls
17337           - Added support for CharacterCasing
17338           - Added IsInputKey override
17339           - Fixed Keys.Enter logic
17340           - Added SetBoundsCore override
17341           - Fixed mouse selection handling
17342
17343 2005-01-03  Jackson Harper  <jackson@ximian.com>
17344
17345         * TreeView.cs:
17346           - Collapse and uncheck all nodes when CheckBoxes is disabled.
17347           - Checkboxes are always aligned to the bottom of the node,
17348           regardless of item height.
17349           - Use the node bounds to draw the text so we can center it when
17350           the item height is greater then the font height.
17351           - Node::Bounds are only the text part of the node.
17352         * TreeNode.cs: New method to combine collapsing and unchecking all
17353           nodes recursively.
17354
17355 2005-01-02  Jackson Harper  <jackson@ximian.com>
17356
17357         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
17358         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
17359         tree when a check is changed. TODO: Only refresh the checked node.
17360
17361 2004-12-30  Jackson Harper  <jackson@ximian.com>
17362
17363         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
17364         * TreeNode.cs: When collapsing make sure to never collapse the
17365         root node.
17366
17367 2004-12-29  Jackson Harper  <jackson@ximian.com>
17368
17369         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
17370         
17371 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
17372
17373         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
17374
17375 2004-12-28  Peter Bartok  <pbartok@novell.com>
17376
17377         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
17378           not yet assigned
17379
17380 2004-12-28  Peter Bartok  <pbartok@novell.com>
17381
17382         * Control.cs (WndProc): Added WM_HELP handler, now generates
17383           HelpRequested event
17384         * Form.cs: Added HelpButton property and required support code
17385         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
17386
17387 2004-12-28  Peter Bartok  <pbartok@novell.com>
17388
17389         * CommonDialog.cs:
17390           - Made DialogForm.owner variable internal
17391           - Added check to ensure owner form is set before setting
17392             owner properties in CreateParams
17393
17394 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
17395
17396         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
17397           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
17398           GetCursorPos.  Fix major visibility issues.  Rework the windowing
17399           system to support borderless/titleless windows (implements menus).
17400           Fix GetWindowPos.  Implement initial background color support for
17401           views.
17402
17403 2004-12-28  Peter Bartok  <pbartok@novell.com>
17404
17405         * Form.cs (get_CreateParams): Make sure we have an owner before using
17406           the owner variable. Implement proper default if no owner exists
17407
17408 2004-12-28  Peter Bartok  <pbartok@novell.com>
17409
17410         * In preparation for making Managed.Windows.Forms the default build target
17411           for System.Windows.Forms, the following stubbed files were added.
17412           Dialogs are currently being implemented by contributors and are only
17413           short-term place holders.
17414         * ColorDialog.cs: Initial check-in (minmal stub)
17415         * DataGrid.cs: Initial check-in (minimal stub)
17416         * DataGridLineStyle.cs: Initial check-in (minimal stub)
17417         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
17418         * DataGridTableStyle.cs: Initial check-in (minimal stub)
17419         * FontDialog.cs: Initial check-in (minimal stub)
17420         * FileDialog.cs: Initial check-in (minimal stub)
17421         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
17422         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
17423         * OpenFileDialog: Initial check-in (minimal stub)
17424         * IComponentEditorPageSite.cs: Initial check-in
17425         * Splitter.cs: Initial check-in (for Jackson)
17426         * SplitterEventArgs.cs: Initial check-in (for Jackson)
17427         * SplitterEventHandler.cs: Initial check-in (for Jackson)
17428         * TextBox.cs: Initial check-in; still needs some wiring to
17429           TextControl backend
17430         * Form.cs: Implemented ControlBox property
17431         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
17432         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
17433         * TextControl.cs: Added selection functionality; added todo header
17434         * TextBoxBase.cs:
17435           - Implemented Lines property
17436           - Implemented TextHeight property
17437           - Implemented SelectedText property
17438           - Implemented SelectionLength property
17439           - Implemented SelectAll method
17440           - Implemented ToString method
17441           - Removed and cleaned up some debug code
17442           - Implemented (still buggy) mouse text selection
17443
17444 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
17445
17446         * ComboBox.cs: Complete DropDownList implementation, fixes.
17447
17448 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
17449
17450         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
17451         * ComboBoxStyle.cs: ComboBoxStyle enum
17452         * ComboBox.cs: Initial work on ComboBox control
17453
17454 2004-12-21  Peter Bartok  <pbartok@novell.com>
17455
17456         * Control.cs (ctor, CreateParams): Moved setting of is_visible
17457           forward so that anything that creates a window gets the default,
17458           also no longer uses Visible property in CreateParams to avoid
17459           walking up the parent chain and possibly get the wrong visible
17460           status. Fixed IsVisible to no longer walk up to the parent.
17461
17462 2004-12-21  Peter Bartok  <pbartok@novell.com>
17463
17464         * Form.cs (ShowDialog): Unset modality for the proper window
17465  
17466 2004-12-20  Peter Bartok  <pbartok@novell.com>
17467
17468         * CommonDialog.cs: Initial check-in
17469
17470 2004-12-20  Peter Bartok  <pbartok@novell.com>
17471
17472         * Control.cs (Visible): Now uses the parent window instead of the
17473           client area window for the property
17474
17475         * Form.cs
17476           - ShowDialog(): Now uses the proper window for modality
17477           - The default visibility state for the form parent is now false. This
17478             will prevent the user from seeing all the changes to the form and
17479             its controls before the application hits Application.Run()
17480           - Removed some stale commented out code
17481
17482         * NativeWindow.cs:
17483           - Added FindWindow() method to have a method to check for existence
17484             of a window handle
17485           - Added ability to override default exception handling (for example
17486             when debugging with VS.Net; to do this the ExternalExceptionHandler
17487             define must be set
17488           - Removed some useless debug output
17489
17490         * XplatUIX11.cs:
17491           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
17492             not working as expected
17493           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
17494             property to allow switching back to the modal window if focus is
17495             given to another one of our windows (Application Modal)
17496           - Now only sets override_redirect if we create a window
17497             without WS_CAPTION
17498           - Moved EventMask selection before mapping of newly created window
17499             so we can catch the map event as well
17500           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
17501           - Added various Atom related DllImports
17502           - Implemented Exit() method
17503           - .ctor() : No longer shows window if WS_VISIBLE is not defined
17504             in the CreateParams
17505
17506         * MessageBox.cs: Now properly deals with the FormParent window by
17507           providing an override the FormParent CreateParams property to
17508           set as POPUP instead of OVERLAPPED window.
17509
17510 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17511
17512         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
17513         Minor code cleanup.
17514
17515 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17516         
17517         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
17518
17519 2004-12-18  Peter Bartok  <pbartok@novell.com>
17520
17521         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
17522           implementing SetModal() method
17523
17524 2004-12-18  Peter Bartok  <pbartok@novell.com>
17525
17526         * X11Structs.cs (XGCValues): Fixed type of function element
17527         * XplatUI.cs: Added ScrollWindow() method
17528         * XplatUIDriver.cs: Added ScrollWindow() abstract
17529         * XplatUIWin32.cs: Implemented ScrollWindow() method
17530         * XplatUIX11.cs: Implemented ScrollWindow() method
17531         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
17532
17533 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17534
17535         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
17536         Some more keyboard support (INCOMPLETE)
17537
17538 2004-12-17  Peter Bartok  <pbartok@novell.com>
17539
17540         * TextControl.cs:
17541         - Added color attribute to line tags.
17542         - Added color argument to all functions dealing with tags
17543         - Added color argument support to various functions
17544         - Fixed miss-calculation of baseline/shift in certain circumstances
17545
17546         * TextBoxBase.cs: Added new color option to test code
17547
17548 2004-12-17  Jackson Harper  <jackson@ximian.com>
17549
17550         * TreeNode.cs:
17551         * MonthCalendar.cs: Signature fixes
17552
17553 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17554
17555         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
17556         keyboard event moved it.  Create a new graphics context for each paint resolves this
17557
17558 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17559
17560         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
17561         Make caret exist and go blink blink.  Initial keyboard support.
17562         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
17563         works.
17564
17565 2004-12-17  Jackson Harper  <jackson@ximian.com>
17566
17567         * XplatUIStructs.cs: Updated set of virtual keycodes.
17568         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
17569
17570 2004-12-17  Jackson Harper  <jackson@ximian.com>
17571
17572         * XplatUIX11.cs: Prune old keyboard code.
17573
17574 2004-12-17  Jackson Harper  <jackson@ximian.com>
17575
17576         * XplatUIX11.cs: When generating mouse wparams get the modifier
17577         keys from the ModifierKeys property.
17578
17579 2004-12-17  Jackson Harper  <jackson@ximian.com>
17580
17581         * X11Keyboard.cs: Send up/down input when generating
17582         messages. Remove some unused vars.
17583
17584 2004-12-17  Jackson Harper  <jackson@ximian.com>
17585
17586         * TabControl.cs:
17587         * TreeView.cs: get rid of warnings.
17588
17589 2004-12-17  Jackson Harper  <jackson@ximian.com>
17590
17591         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
17592
17593 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
17594
17595         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
17596           CheckedListBox.cs: Implementation
17597
17598 2004-12-17  Peter Bartok  <pbartok@novell.com>
17599
17600         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
17601
17602 2004-12-16  Peter Bartok  <pbartok@novell.com>
17603
17604         * TextControl.cs:
17605           - InsertCharAtCaret(): Fixed start pos fixup
17606           - CaretLine_get: No longer derives the line from the tag, the tag
17607             could be stale if lines in the document have been added or deleted
17608           - RebalanceAfterDelete(): Fixed bug in balancing code
17609           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
17610           - Line.Streamline(): Now can also elminate leading empty tags
17611           - DumpTree(): Added a few more tests and prevented exception on
17612             uninitialized data
17613           - Added Debug section for Combining lines
17614           - Delete(): Now copies all remaining properties of a line
17615           
17616         * TextBoxBase.cs:
17617           - Left mousebutton now sets the caret (and middle button still acts
17618             as formatting tester, which must go away soon)
17619           - Added Debug section for Deleting/Combining lines
17620           - Fixed calculations for UpdateView after Combining lines
17621
17622 2004-12-16  Peter Bartok  <pbartok@novell.com>
17623
17624         * TextControl.cs: Now properly aligns text on a baseline, using the
17625           new XplatUI.GetFontMetrics() method. Simplified several calculations
17626         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
17627           defined
17628
17629 2004-12-16  Peter Bartok  <pbartok@novell.com>
17630
17631         * XplatUI.cs: Added GetFontMetrics() method
17632         * XplatUIDriver.cs: Added GetFontMetrics() abstract
17633         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
17634           into libgdiplus, our private GetFontMetrics function
17635         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
17636         * XplatUIWin32.cs: Implemented GetFontMetrics() method
17637
17638 2004-12-16  Jackson Harper  <jackson@ximain.com>
17639
17640         * XplatUIStruct.cs: Add enum for dead keys
17641         * X11Keyboard.cs: Map and unmap dead keys.
17642
17643 2004-12-16  Jackson Harper  <jackson@ximian.com>
17644
17645         * X11Keyboard.cs: Detect and use the num lock mask.
17646
17647 2004-12-16  Peter Bartok  <pbartok@novell.com>
17648
17649         * Control.cs (CreateGraphics): Added check to make sure the
17650           handle of the window exists before calling Graphics.FromHwnd()
17651
17652 2004-12-16  Peter Bartok  <pbartok@novell.com>
17653
17654         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
17655           contains a lot of code that's not supposed to be there for the
17656           real thing, but required for developing/testing the textbox
17657           backend.
17658
17659 2004-12-16  Peter Bartok  <pbartok@novell.com>
17660
17661         * TextControl.cs:
17662         - Fixed Streamline method
17663         - Added FindTag method to Line
17664         - Added DumpTree method for debugging
17665         - Added DecrementLines() method for deleting lines
17666         - Fixed UpdateView to update the cursor to end-of-line on single-line
17667           updates
17668         - Added PositionCaret() method
17669         - Fixed MoveCaret(LineDown) to move into the last line, too
17670         - Added InsertChar overload
17671         - Fixed InsertChar tag offset calculations
17672         - Added DeleteChar() method
17673         - Added Combine() method for folding lines
17674         - Fixed Delete() method, no longer allocates wasted Line object and
17675           now copies all properties when swapping nodes
17676         - Delete() method now updates document line counter
17677
17678 2004-12-15  Jackson Harper  <jackson@ximian.com>
17679
17680         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
17681         * X11Keyboard.cs: Expose the currently selected modifier keys
17682         through a property.
17683
17684 2004-12-15  Peter Bartok  <pbartok@novell.com>
17685
17686         * TextControl.cs: Initial check-in. Still incomplete
17687
17688 2004-12-15  Jackson Harper  <jackson@ximian.com>
17689
17690         * TreeNode.cs:
17691         * TreeView.cs: Fix build on csc (second time today ;-))
17692
17693 2004-12-15  Jackson Harper  <jackson@ximian.com>
17694
17695         * TreeView.cs: Store the treenodes plus/minus box bounds when it
17696         is calculated and use this for click testing.
17697         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
17698
17699 2004-12-15  Jackson Harper  <jackson@ximian.com>
17700
17701         * TreeView.cs: Pass the nodes image index to the image list when
17702         drawing that image.
17703
17704 2004-12-15  Jackson Harper  <jackson@ximian.com>
17705
17706         * X11Keyboard.cs: Set messages hwnd.
17707         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
17708         post_message calls.
17709
17710 2004-12-15  Jackson Harper  <jackson@ximian.com>
17711
17712         * X11Keyboard.cs: Fix to compile with csc.
17713         
17714 2004-12-15  Jackson Harper  <jackson@ximian.com>
17715
17716         * X11Structs.cs: Add key mask values
17717         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
17718         * X11Keyboard.cs: New file - Extrapolates and interpolates key
17719         down/up foo into WM_CHAR foo
17720         * KeyboardLayouts.cs: Common keyboard layouts
17721         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
17722         post messages into the main queue.
17723
17724 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
17725
17726         * Button.cs: implement ProcessMnemonic
17727         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
17728           brushes everytime
17729         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
17730         * ButtonBase.cs: Show HotkeyPrefix (not the &)
17731
17732 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
17733         
17734         * MonthCalendar.cs: Implemented click-hold for next/previous month
17735           and date selection
17736           
17737 2004-12-11  Peter Bartok  <pbartok@novell.com>
17738
17739         * X11Structs.cs:
17740           - Added XKeyboardState (moved from XplatUIX11.cs)
17741           - Added XCreateGC related enums and structures
17742           - Added GXFunction for XSetFunction
17743
17744         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
17745
17746         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
17747           CaretVisible() calls
17748
17749         * ToolTip.cs: Added code to prevent stealing focus from app windows
17750
17751         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
17752           DestroyCaret, SetCaretPos and CaretVisible)
17753
17754         * XplatUIX11.cs:
17755           - Added implementation for caret functions
17756           - Moved hover variables into a struct, to make it a bit easier
17757             on the eyes and to debug
17758           - Removed XKeyboardState (moved to XplatUIX11.cs)
17759           - Moved Keyboard properties into the properties region
17760
17761         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
17762           call to get a graphics context for our control
17763
17764         * XplatUIOSX.cs: Added empty overrides for the new caret functions
17765
17766         * TreeView.cs: Fixed bug. No matter what color was set it would always
17767           return SystemColors.Window
17768
17769         * XplatUIWin32.cs: Implemented caret overrides
17770
17771 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
17772
17773         * ListBox.cs: fire events, implement missing methods and properties,
17774         sorting.
17775
17776 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
17777
17778         * MonthCalendar.cs: invalidation bug fixing
17779         * ThemeWin32Classic.cs: paint fixing
17780
17781 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
17782
17783         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
17784         prepare the CGContextRef there now.
17785
17786 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
17787
17788         * MonthCalendar.cs:
17789           - optimisationL only invalidate areas that have changed
17790         * ThemeWin32Classic.cs:
17791           - only paint parts that intersect with clip_area
17792
17793 2004-12-09  Peter Bartok  <pbartok@novell.com>
17794
17795         * Application.cs: Undid changes from r37004 which cause problems
17796         on X11
17797
17798 2004-12-09  Ravindra  <rkumar@novell.com>
17799
17800         * ToolBar.cs: Added support for displaying ContextMenu
17801         attached to a button on ToolBar.
17802         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
17803         property.
17804
17805 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17806
17807         * Label.cs: autosize works in text change and removes unnecessary
17808         invalidate
17809
17810 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17811
17812         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
17813         remove warnings
17814
17815 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
17816
17817         * XplatUIOSX.cs: Added mouse move/click/grab support
17818         Remove some debugging WriteLines not needed anymore.
17819         Add window resizing/positioning.
17820         Fix visibility on reparenting.
17821
17822 2004-12-08  Peter Bartok  <pbartok@novell.com>
17823
17824         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
17825
17826 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
17827
17828         * XplatUIOSX.cs: Initial checkin
17829         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
17830
17831 2004-12-03  Ravindra <rkumar@novell.com>
17832
17833         * ListView.cs: Added some keybindings and fixed scrolling.
17834         ScrollBars listen to ValueChanged event instead of Scroll
17835         Event. This would let us take care of all changes being
17836         done in the scrollbars' values programmatically or manually.
17837         * ListView.cs (CanMultiselect): Added a check for shift key.
17838         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
17839         * ListViewItem.cs (Clone): Fixed. We need to make a copy
17840         of ListViewSubItemCollection as well.
17841
17842 2004-12-06  Peter Bartok <pbartok@novell.com>
17843
17844         * Control.cs (Parent): Added check and exception to prevent
17845         circular parenting
17846
17847 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
17848
17849         * ListBox.cs: implemented clipping, selection single and multiple,
17850         bug fixing
17851
17852 2004-12-03  Ravindra <rkumar@novell.com>
17853
17854         * ListView.cs (ListView_KeyDown):
17855         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
17856         when CTRL key is pressed.
17857         * ListViewItem.cs (Selected): Fixed setting the property.
17858
17859 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17860
17861         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
17862
17863         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
17864         MinimizeBox, ShowInTaskbar, TopMost properties.
17865
17866         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
17867         will be implemented).
17868
17869 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17870
17871         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
17872
17873         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
17874         tests.
17875         
17876         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
17877         
17878         * TreeView.cs: BackColor is Colors.Window.
17879
17880 2004-12-01  Jackson Harper  <jackson@ximian.com>
17881
17882         * TreeView.cs: When resizing the tree if the user is making it
17883         smaller we don't get expose events, so we need to handle adding
17884         the horizontal scrollbar in the size changed handler as well as
17885         the expose handler.
17886
17887 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
17888
17889         * DrawItemState.cs: fixes wrong enum values
17890
17891 2004-12-01  Jackson Harper  <jackson@ximian.com>
17892
17893         * TreeView.cs: Resize the hbar as well as the vbar on resize.
17894
17895 2004-12-01  Jackson Harper  <jackson@ximian.com>
17896
17897         * NodeLabelEditEventArgs.cs:
17898         * NodeLabelEditEventHandler.cs:
17899         * OpenTreeNodeEnumerator.cs:
17900         * TreeNode.cs:
17901         * TreeNodeCollection.cs:
17902         * TreeView.cs:
17903         * TreeViewAction.cs:
17904         * TreeViewCancelEventArgs.cs:
17905         * TreeViewCancelEventHandler.cs:
17906         * TreeViewEventArgs.cs:
17907         * TreeViewEventHandler.cs: Initial implementation.
17908
17909 2004-12-01  Ravindra <rkumar@novell.com>
17910
17911         * ListView.cs (CalculateListView): Fixed scrolling related
17912         calculations. Also, removed some debug statements from other
17913         places.
17914         * ListViewItem.cs: Changed access to 'selected' instance variable
17915         from private to internal.
17916         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
17917
17918 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
17919
17920         * ThemeWin32Classic.cs: remove cache of brush and pens for
17921         specific controls and use the global system, fixes scrollbutton
17922         bugs (for small sizes, disabled, etc)
17923         
17924         * ScrollBar.cs: does not show the thumb for very small controls
17925         (as MS) and allow smaller buttons that the regular size
17926
17927 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
17928
17929         * UpDownBase.cs: Add abstract methods for the interface.
17930         Add new virtual methods (need to be hooked up to TextEntry when it
17931         exists).
17932         Add override methods for most features.
17933         Computes the size, forces the height of the text entry.
17934
17935         * NumericUpDown.cs: Put here the current testing code.
17936
17937         * Set eol-style property on all files that do not have mixed line
17938         endings, to minimize the future problems.  There are still a few
17939         files with mixed endings, and someone should choose whether they
17940         want to move it or not.
17941
17942 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
17943
17944         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
17945         System.Colors
17946         
17947 2004-11-30  Ravindra <rkumar@novell.com>
17948
17949         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
17950         drawing and replaced use of SystemColors by theme colors.
17951         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
17952         * ListView.cs (ListViewItemCollection.Add): Throw exception when
17953         same ListViewItem is being added more than once.
17954
17955 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
17956
17957         * MonthCalendar.cs:
17958           - ControlStyles love to make the control not flicker
17959           
17960 2004-11-30  Peter Bartok  <pbartok@novell.com>
17961
17962         * CharacterCasing.cs: Added
17963
17964 2004-11-29  Peter Bartok  <pbartok@novell.com>
17965
17966         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17967           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
17968           I am removing these files as they conflict with already completed
17969           work. While it is fantastic to get contributions to MWF, I
17970           respectfully ask that everyone please coordinate their contributions
17971           through mono-winforms-list or #mono-winforms at this time. We're
17972           explicitly avoiding stubbing and don't want controls that don't have
17973           their basic functionality implemented in svn. Please also see
17974           http://www.mono-project.com/contributing/winforms.html
17975
17976
17977 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
17978
17979         * Application.cs (ModalRun): Don't hang after exit.
17980
17981         * Theme.cs: New TreeViewDefaultSize property.
17982
17983         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
17984         with less hardcoded SystemColors constant.
17985         Implemented TreeViewDefaultSize.
17986
17987         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17988         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
17989
17990
17991 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
17992
17993         * MonthCalendar.cs:
17994           - Fix NextMonthDate and PrevMonthDate click moving calendar
17995
17996 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17997
17998         * MonthCalendar.cs:
17999           - Fix usage of ScrollChange Property when scrolling months
18000
18001 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
18002
18003         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
18004          - Fixes menu destroying
18005          - Support adding and removing items on already created menus
18006
18007 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
18008
18009         * MonthCalendar.cs:
18010           - Re-worked all bolded dates handling to match win32
18011         * ThemeWin32Classic.cs:
18012           - Fixed rendering with bolded dates
18013
18014 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
18015
18016         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
18017         - Horizontal scroolbar
18018         - Multicolumn
18019         - Fixes
18020
18021
18022 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
18023
18024         * MonthCalendar.cs:
18025           - Fix Usage of MaxSelectionCount from SelectionRange
18026           - Fixed Shift + Cursor Selection
18027           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
18028           - Fixed normal cursor selection to be compat with win32
18029           - Fixed Shift + Mouse Click selection
18030
18031 2004-11-24  Peter Bartok <pbartok@novell.com>
18032
18033         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
18034         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
18035         * XplatUIX11.cs:
18036           - CreatedKeyBoardMsg now updates keystate with Alt key
18037           - Added workaround for timer crash to CheckTimers, Jackson will
18038             develop a proper fix and check in later
18039           - Implemented DispatchMessage
18040           - Removed calling the native window proc from GetMessage (call
18041             now moved to DispatchMessage)
18042
18043         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
18044           the keydata (Fixes bug #69831)
18045
18046         * XplatUIWin32.cs:
18047           - (DispatchMessage): Switched to return IntPtr
18048           - Added DllImport for SetFocus
18049
18050 2004-11-24  Ravindra <rkumar@novell.com>
18051
18052         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
18053         background drawing.
18054         * ListViewItem.cs: Fixed various properties, calculations
18055         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
18056         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
18057         and some internal properties. Fixed MouseDown handler and Paint
18058         method.
18059
18060 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18061
18062         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
18063
18064 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18065
18066         * ContainerControl.cs: correct accidental check in of local changes
18067
18068 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
18069
18070         * ThemeWin32Classic.cs:
18071                 - Fixed Drawing Last month in grid (sometimes not showing)
18072         * MonthCalendar.cs:
18073                 - Fixed title width calculation bug (makeing title small)
18074
18075 2004-11-23  Peter Bartok <pbartok@novell.com>
18076
18077         * XplatUIX11.cs:
18078           - Added generation of WM_MOUSEHOVER event
18079           - Added missing assignment of async_method atom
18080           - Fixed WM_ERASEBKGND; now only redraws the exposed area
18081
18082 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18083
18084         * ThemeWin32Classic.cs:
18085                 - Fixed Drawing of today circle when showtodaycircle not set
18086                 - fixed drawing of first and last month in the grid (gay dates)
18087         * MonthCalendar.cs:
18088                 - Fixed Drawing of today circle
18089                 - Fixed drawing of grady dates
18090                 - Fixed HitTest for today link when ShowToday set to false
18091                 - Fixed DefaultSize to obey ShowToday
18092
18093 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
18094
18095         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
18096         * System.Windows.Forms/Theme.cs
18097         * MonthCalendar.cs: added for MonthCalendar
18098         * SelectionRange.cs: added for MonthCalendar
18099         * Day.cs: added for MonthCalendar: added for MonthCalendar
18100         * DateRangeEventArgs.cs: added for MonthCalendar
18101         * DateRangeEventHandler.cs: added for MonthCalendar
18102
18103 2004-11-22  Ravindra <rkumar@novell.com>
18104
18105         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
18106         property.
18107
18108 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
18109
18110         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
18111         event handler.
18112         
18113         * NumericUpDown.cs: Added new implementation.
18114         * UpDownBase.cs: Added new implementation.
18115
18116         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
18117         implementations.
18118         
18119         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
18120         implementations.
18121
18122         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
18123         methods.
18124
18125 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
18126
18127         * Timer.cs  (Dispose): Should call the base dispose when
18128         overriding.
18129
18130 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18131
18132         * ScrollBar.cs: updates thumb position when max, min or increment
18133         is changed
18134
18135 2004-11-21  Ravindra <rkumar@novell.com>
18136
18137         * ListView.cs: Implemented item selection, activation and
18138         column header style. Fixed properties to do a redraw, if
18139         required. Added support for MouseHover, DoubleClick, KeyDown
18140         and KeyUp event handling and some minor fixes.
18141         * ListViewItem.cs: Fixed constructor.
18142         * ThemeWin32Classic.cs: Improved drawing for ListView.
18143
18144 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
18145
18146         * ThemeWin32Classic.cs: initial listbox drawing code
18147         * DrawMode.cs: new enumerator
18148         * ListControl.cs: stubbed class
18149         * ListBox.cs: initial implementation
18150         * Theme.cs: new methods definitions
18151         * SelectionMode.cs: new enumerator
18152
18153 2004-11-17  Peter Bartok  <pbartok@novell.com>
18154
18155         * XplatUIWin32.cs: Added double-click events to the class style
18156         * Control.cs (WndProc):
18157           - Added handling of click-count to MouseDown/ MouseUp events.
18158           - Added handling of middle and right mouse buttons
18159           - Removed old debug code
18160
18161 2004-11-17  Jackson Harper  <jackson@ximian.com>
18162
18163         * XplatUIX11.cs: Use the new Mono.Unix namespace.
18164
18165 2004-11-17  Ravindra <rkumar@novell.com>
18166
18167         * ListView.cs: Added event handling for MouseMove/Up/Down.
18168         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
18169         * ThemeWin32Classic.cs: We need to clear the graphics context and
18170         draw column header in a proper state.
18171
18172
18173 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
18174
18175         *  Menu.cs: fixes signature
18176
18177 2004-11-16  Peter Bartok  <pbartok@novell.com>
18178
18179         * XplatUIX11.cs (GetMessage): Implemented generation of
18180           double click mouse messages
18181
18182 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
18183
18184         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
18185         not by menu
18186
18187 2004-11-11  Peter Bartok  <pbartok@novell.com>
18188
18189         * HandleData.cs: Added Visible property
18190         * XplatUIX11.cs (IsVisible): Now uses Visible property from
18191           HandleData
18192         * XplatUIX11.cs: Removed old debug leftovers
18193         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
18194         * Control.cs (WndProc): Removed old debug leftovers,
18195           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
18196           needed WM_SIZE handling
18197
18198 2004-11-11  Jackson Harper  <jackson@ximian.com>
18199
18200         * OwnerDrawPropertyBag.cs:
18201         * TreeViewImageIndexConverter.cs: Initial implementation
18202
18203 2004-11-10  Jackson Harper  <jackson@ximian.com>
18204
18205         * ThemeWin32Classic.cs:
18206         * TabControl.cs: instead of moving tabs by the slider pos just
18207         start drawing at the tab that is offset by the slider. This way
18208         scrolling always moves by exactly one tab.
18209
18210 2004-11-10  Jackson Harper  <jackson@ximian.com>
18211
18212         * TabControl.cs: You can only scroll left when the slider has
18213         already ben moved right.
18214         
18215 2004-11-10  Jackson Harper  <jackson@ximian.com>
18216
18217         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
18218         the clip area.
18219         
18220 2004-11-10  Jackson Harper  <jackson@ximian.com>
18221
18222         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
18223         clip area.
18224         
18225 2004-11-09  Jackson Harper  <jackson@ximian.com>
18226
18227         * TabControl.cs (CalcXPos): New helper method so we can determine
18228         the proper place to start drawing vertical tabs.
18229         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
18230         
18231 2004-11-09  Jackson Harper  <jackson@ximian.com>
18232
18233         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
18234         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
18235         and Bottom, left and right are illegal values for this and
18236         multiline is enabled when the alignment is set to left or right.
18237         (DrawTab): Each alignment block should draw the text itself now
18238         because Left requires special love. Also add rendering for Left
18239         aligned tabs.
18240         
18241 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
18242
18243         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
18244         does not destroy the windows, removes debugging messages
18245
18246 2004-11-09  jba  <jba-mono@optusnet.com.au>
18247
18248         * ThemeWin32Classic.cs
18249         (DrawButtonBase): Fix verticle text rect clipping in windows
18250         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18251         rendering and incorrect text rect clipping
18252         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18253         rendering and incorrect text rect clipping
18254         
18255 2004-11-08  Jackson Harper  <jackson@ximian.com>
18256
18257         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
18258         bottom when they are bottom aligned so the bottoms of the tabs get
18259         displayed.
18260         * TabControl.cs (DropRow): Move rows up instead of down when the
18261         tab control is bottom aligned.
18262
18263 2004-11-08 13:59  pbartok
18264
18265         * XplatUIX11.cs:
18266           - Added handling for various window styles
18267           - Added handling for popup windows
18268           - Added SetTopmost handling
18269
18270 2004-11-08 13:55  pbartok
18271
18272         * XplatUIWin32.cs:
18273           - Added argument to SetTopmost method
18274           - Fixed broken ClientToScreen function
18275
18276 2004-11-08 13:53  pbartok
18277
18278         * XplatUIStructs.cs:
18279           - Added missing WS_EX styles
18280
18281 2004-11-08 13:53  pbartok
18282
18283         * XplatUI.cs, XplatUIDriver.cs:
18284           - Added argument to SetTopmost
18285
18286 2004-11-08 13:52  pbartok
18287
18288         * X11Structs.cs:
18289           - Added XSetWindowAttributes structure
18290           - Improved XWindowAttributes structure
18291           - Added SetWindowValuemask enum
18292           - Added window creation arguments enum
18293           - Added gravity enum
18294           - Added Motif hints structure
18295           - Added various Motif flags and enums
18296           - Added PropertyMode enum for property functions
18297
18298 2004-11-08 13:50  pbartok
18299
18300         * Form.cs:
18301           - Fixed arguments for updated SetTopmost method
18302
18303 2004-11-08 13:49  pbartok
18304
18305         * ToolTip.cs:
18306           - Fixed arguments for updated SetTopmost function
18307           - Fixed usage of PointToClient
18308
18309 2004-11-08 13:44  pbartok
18310
18311         * MenuAPI.cs:
18312           - Added Clipping of children and siblings
18313
18314 2004-11-08 13:41  pbartok
18315
18316         * MainMenu.cs:
18317           - Removed SetMenuBarWindow call. We do this in Form.cs
18318
18319 2004-11-08 13:40  jackson
18320
18321         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
18322           scrolling jimmi in the correct location with bottom aligned tabs
18323
18324 2004-11-08 13:36  pbartok
18325
18326         * ContainerControl.cs:
18327           - Implemented BindingContext
18328           - Implemented ParentForm
18329
18330 2004-11-08 12:46  jackson
18331
18332         * TabControl.cs: Put bottom rendered tabs in the right location
18333
18334 2004-11-08 07:15  jordi
18335
18336         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
18337           removes dead code
18338
18339 2004-11-05 17:30  jackson
18340
18341         * TabControl.cs: When selected tabs are expanded make sure they
18342           don't go beyond the edges of the tab control
18343
18344 2004-11-05 14:57  jackson
18345
18346         * TabControl.cs: Reset show_slider so if the control is resized to
18347           a size where it is no longer needed it's not displayed anymore
18348
18349 2004-11-05 13:16  jackson
18350
18351         * TabControl.cs: Make tab pages non visible when added to the
18352           control
18353
18354 2004-11-05 12:42  jackson
18355
18356         * TabControl.cs: Implement SizeMode.FillToRight
18357
18358 2004-11-05 12:16  jackson
18359
18360         * Control.cs: Do not call CreateHandle if the handle is already
18361           created
18362
18363 2004-11-05 11:46  jackson
18364
18365         * TabControl.cs: Remove superflous call to CalcTabRows
18366
18367 2004-11-05 09:07  jackson
18368
18369         * XplatUIX11.cs: Update for Mono.Posix changes
18370
18371 2004-11-05 07:00  ravindra
18372
18373         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
18374           scrolling.
18375
18376 2004-11-04 22:47  jba
18377
18378         * ThemeWin32Classic.cs:
18379           - Fix Button rendering for FlatStyle = Flat or Popup
18380           - Fix RadioButton and CheckBox rendering when Appearance = Button
18381             (normal and flatstyle).
18382           - Correct outer rectangle color when drawing focus rectangle
18383           - Adjust button bounds to be 1 px smaller when focused
18384           - Make button not draw sunken 3d border when pushed (windows compat)
18385           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
18386           - Offset the text in RadioButton and Checkbox when being rendered as
18387           a button.
18388           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
18389           radiobuttons
18390           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
18391           - Fixed disabled text rendering for normally rendered radiobuttons
18392
18393 2004-11-04 10:26  jackson
18394
18395         * TabControl.cs: Recalculate tab rows when resizing
18396
18397 2004-11-04 07:47  jordi
18398
18399         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
18400           collection completion, drawing issues, missing features
18401
18402 2004-11-04 05:03  ravindra
18403
18404         * ScrollBar.cs:
18405                 - We need to recalculate the Thumb area when
18406                 LargeChange/maximum/minimum values are changed.
18407           - We set the 'pos' in UpdatePos() method to minimum, if it's less
18408                 than minimum. This is required to handle the case if large_change is
18409                 more than max, and use LargeChange property instead of large_change
18410                 variable.
18411           - We return max+1 when large_change is more than max, like MS does.
18412
18413 2004-11-04 04:29  ravindra
18414
18415         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
18416                 - Changed default value signatures (prefixed all with ListView).
18417                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
18418                 ListView.
18419           - Fixed calculations for ListViewItem and implemented Clone()
18420           method.
18421
18422 2004-11-04 04:26  ravindra
18423
18424         * Theme.cs, ThemeWin32Classic.cs:
18425                 - Changed default ListView values signatures (prefixed all with
18426                 ListView).
18427           - Fixed default size values for VScrollBar and HScrollBar.
18428                 - Fixed DrawListViewItem method.
18429
18430 2004-11-04 04:05  ravindra
18431
18432         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
18433
18434 2004-11-04 04:04  ravindra
18435
18436         * ImageList.cs: Implemented the missing overload for Draw method.
18437
18438 2004-11-03 19:29  jackson
18439
18440         * TabControl.cs: Handle dropping rows on selection properly
18441
18442 2004-11-03 11:59  jackson
18443
18444         * TabControl.cs: remove debug code
18445
18446 2004-11-03 11:52  jackson
18447
18448         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
18449           the scrolly widgerywoo
18450
18451 2004-11-02 13:52  jackson
18452
18453         * TabControl.cs: Resize the tab pages and tabs when the tab control
18454           is resized
18455
18456 2004-11-02 13:40  jackson
18457
18458         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
18459           selected tab to the bottom
18460
18461 2004-11-02 13:39  jackson
18462
18463         * TabPage.cs: Store the tab pages row
18464
18465 2004-11-02 12:33  jordi
18466
18467         * MenuItem.cs: fixes handle creation
18468
18469 2004-11-02 11:42  jackson
18470
18471         * TabControl.cs: signature fix
18472
18473 2004-11-02 08:56  jackson
18474
18475         * TabControl.cs: Calculate whether the tab is on an edge properly.
18476           Remove top secret debugging code
18477
18478 2004-11-01 19:57  jackson
18479
18480         * TabControl.cs: Add click handling, and proper sizing
18481
18482 2004-11-01 19:47  jackson
18483
18484         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
18485           tab controls
18486
18487 2004-11-01 19:39  jackson
18488
18489         * TabPage.cs: add internal property to store the bounds of a tab
18490           page
18491
18492 2004-10-30 04:23  ravindra
18493
18494         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
18495           values.
18496
18497 2004-10-30 04:21  ravindra
18498
18499         * ListView.cs, ListViewItem.cs: Added support for scrolling and
18500           fixed calculations.
18501
18502 2004-10-30 03:06  pbartok
18503
18504         * XplatUIX11.cs:
18505           - Removed extension of DllImported libs
18506
18507 2004-10-29 09:55  jordi
18508
18509         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
18510           navigation, itemcollection completion, menu fixes
18511
18512 2004-10-27 22:58  pbartok
18513
18514         * XplatUIX11.cs:
18515           - Now throws a nice error message when no X display could be opened
18516
18517 2004-10-26 13:51  jordi
18518
18519         * ListView.cs: removes warning
18520
18521 2004-10-26 03:55  ravindra
18522
18523         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
18524           ThemeWin32Classic.cs: Some formatting for my last checkins.
18525
18526 2004-10-26 03:36  ravindra
18527
18528         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
18529           control and default values.
18530
18531 2004-10-26 03:35  ravindra
18532
18533         * Theme.cs: Added some default values for ListView control.
18534
18535 2004-10-26 03:33  ravindra
18536
18537         * ToolBar.cs: ToolBar should use the user specified button size, if
18538           there is any. Added a size_specified flag for the same.
18539
18540 2004-10-26 03:33  ravindra
18541
18542         * ColumnHeader.cs: Added some internal members and calculations for
18543           ColumnHeader.
18544
18545 2004-10-26 03:32  ravindra
18546
18547         * ListViewItem.cs: Calculations for ListViewItem.
18548
18549 2004-10-26 03:31  ravindra
18550
18551         * ListView.cs: Added some internal members and calculations for
18552           ListView.
18553
18554 2004-10-22 13:31  jordi
18555
18556         * MenuAPI.cs: speedup menus drawing
18557
18558 2004-10-22 13:16  jackson
18559
18560         * XplatUIX11.cs: Make sure to update exposed regions when adding an
18561           expose event
18562
18563 2004-10-22 11:49  jackson
18564
18565         * Control.cs: oops
18566
18567 2004-10-22 11:41  jackson
18568
18569         * Control.cs: Check to see if the window should have its background
18570           repainted by X when drawing.
18571
18572 2004-10-22 11:31  jackson
18573
18574         * XplatUIX11.cs: When invalidating areas only use XClearArea if
18575           clear is true, this way we do not get flicker from X repainting the
18576           background
18577
18578 2004-10-22 11:28  jackson
18579
18580         * XEventQueue.cs: Queue properly
18581
18582 2004-10-21 09:38  jackson
18583
18584         * XEventQueue.cs: Fix access modifier
18585
18586 2004-10-21 09:36  jackson
18587
18588         * XEventQueue.cs: Don't loose messages
18589
18590 2004-10-21 09:22  jackson
18591
18592         * XEventQueue.cs: Don't loose messages
18593
18594 2004-10-20 04:15  jordi
18595
18596         * BootMode.cs: enum need it by SystemInfo
18597
18598 2004-10-19 21:58  pbartok
18599
18600         * XplatUIWin32.cs:
18601           - Small sanity check
18602
18603 2004-10-19 21:56  pbartok
18604
18605         * Form.cs:
18606           - Added private FormParentWindow class which acts as the container
18607             for our form and as the non-client area where menus are drawn
18608           - Added/Moved required tie-ins to Jordi's menus
18609           - Fixed/Implemented the FormStartPosition functionality
18610
18611 2004-10-19 21:52  pbartok
18612
18613         * Control.cs:
18614           - Removed unneeded locals
18615           - Added code to all size and location properties to understand and
18616             deal with the parent container of Form
18617
18618 2004-10-19 21:33  pbartok
18619
18620         * Application.cs:
18621           - Fixed to deal with new Form subclasses for menus
18622
18623 2004-10-19 17:48  jackson
18624
18625         * XEventQueue.cs: commit correct version of file
18626
18627 2004-10-19 16:50  jackson
18628
18629         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
18630
18631 2004-10-19 16:15  jordi
18632
18633         * MenuAPI.cs: MenuBarCalcSize returns the height
18634
18635 2004-10-19 08:31  pbartok
18636
18637         * Control.cs:
18638           - Added missing call to PreProcessMessage before calling OnXXXKey
18639           methods
18640
18641 2004-10-19 00:04  ravindra
18642
18643         * ToolTip.cs: Fixed constructor.
18644
18645 2004-10-18 09:31  jordi
18646
18647         * MenuAPI.cs: menuitems in menubars do not have shortcuts
18648
18649 2004-10-18 09:26  jordi
18650
18651         * MenuItem.cs: fixes MenuItem class signature
18652
18653 2004-10-18 08:56  jordi
18654
18655         * MenuAPI.cs: prevents windows from showing in the taskbar
18656
18657 2004-10-18 00:28  ravindra
18658
18659         * ToolTip.cs: Suppressed a warning message.
18660
18661 2004-10-18 00:27  ravindra
18662
18663         * Control.cs: Default value of visible property must be true.
18664
18665 2004-10-17 23:19  pbartok
18666
18667         * ToolTip.cs:
18668           - Complete implementation
18669
18670 2004-10-17 23:19  pbartok
18671
18672         * XplatUIX11.cs:
18673           - Added EnableWindow method
18674           - Added SetModal stub
18675           - Added generation of WM_ACTIVATE message (still needs testing)
18676           - Added SetTopMost stub
18677           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
18678
18679 2004-10-17 23:17  pbartok
18680
18681         * XplatUIWin32.cs:
18682           - Removed VirtualKeys to XplatUIStructs
18683           - Implemented SetTopMost method
18684           - Implemented EnableWindow method
18685           - Bugfix in ScreenToClient()
18686           - Bugfixes in ClientToScreen()
18687
18688 2004-10-17 22:51  pbartok
18689
18690         * XplatUIStructs.cs:
18691           - Added WS_EX styles to WindowStyles enumeration
18692
18693 2004-10-17 22:50  pbartok
18694
18695         * XplatUI.cs, XplatUIDriver.cs:
18696           - Added method for enabling/disabling windows
18697           - Added method for setting window modality
18698           - Added method for setting topmost window
18699
18700 2004-10-17 22:49  pbartok
18701
18702         * ThemeWin32Classic.cs:
18703           - Added ToolTip drawing code
18704
18705 2004-10-17 22:49  pbartok
18706
18707         * Theme.cs:
18708           - Added ToolTip abstracts
18709
18710 2004-10-17 22:47  pbartok
18711
18712         * Form.cs:
18713           - Fixed Form.ControlCollection to handle owner relations
18714           - Added Owner/OwnedForms handling
18715           - Implemented Z-Ordering for owned forms
18716           - Removed unneeded private overload of ShowDialog
18717           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
18718             so I hope)
18719           - Fixed Close(), had wrong default
18720           - Added firing of OnLoad event
18721           - Added some commented out debug code for Ownership handling
18722
18723 2004-10-17 22:16  pbartok
18724
18725         * Control.cs:
18726           - Fixed/implemented flat list of controls
18727
18728 2004-10-17 22:14  pbartok
18729
18730         * Application.cs:
18731           - Added code to simulate modal dialogs on Win32
18732
18733 2004-10-17 16:11  jordi
18734
18735         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
18736           mouse event
18737
18738 2004-10-17 13:39  jordi
18739
18740         * MenuAPI.cs: menu drawing fixes
18741
18742 2004-10-15 09:10  ravindra
18743
18744         * StructFormat.cs: General Enum.
18745
18746 2004-10-15 09:09  ravindra
18747
18748         * SizeGripStyle.cs: Enum for Form.
18749
18750 2004-10-15 09:08  ravindra
18751
18752         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
18753           in Theme for ListView.
18754
18755 2004-10-15 09:06  ravindra
18756
18757         * ColumnHeader.cs: Flushing some formatting changes.
18758
18759 2004-10-15 09:05  ravindra
18760
18761         * ListViewItem.cs: Implemented GetBounds method and fixed coding
18762           style.
18763
18764 2004-10-15 09:03  ravindra
18765
18766         * ListView.cs: Implemented Paint method and fixed coding style.
18767
18768 2004-10-15 07:34  jordi
18769
18770         * MenuAPI.cs: fix for X11
18771
18772 2004-10-15 07:32  ravindra
18773
18774         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
18775                 - Renamed Paint() method to Draw() for clarity. Also, moved
18776                 DrawImage() to OnPaint().
18777
18778 2004-10-15 07:25  ravindra
18779
18780         * CheckBox.cs, RadioButton.cs:
18781                 - Removed Redraw (), we get it from ButtonBase.
18782                 - Implemented Paint (), to do class specific painting.
18783
18784 2004-10-15 07:16  ravindra
18785
18786         * ButtonBase.cs:
18787                 - Redraw () is not virtual now.
18788                 - Added an internal virtual method Paint (), so that
18789                 derived classes can do their painting on their own.
18790                 - Modified OnPaint () to call Paint ().
18791
18792 2004-10-15 06:43  jordi
18793
18794         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
18795           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
18796
18797 2004-10-15 00:30  ravindra
18798
18799         * MessageBox.cs:
18800                 - MessageBox on windows does not have min/max buttons.
18801                 This change in CreateParams fixes this on Windows. We
18802                 still need to implement this windowstyle behavior in
18803                 our X11 driver.
18804
18805 2004-10-14 05:14  ravindra
18806
18807         * ToolBar.cs:
18808                 - Changed Redraw () to do a Refresh () always.
18809                 - Fixed the MouseMove event handling when mouse is pressed,
18810                 ie drag event handling.
18811                 - Replaced the usage of ToolBarButton.Pressed property to
18812                 ToolBarButton.pressed internal variable.
18813
18814 2004-10-14 05:10  ravindra
18815
18816         * ToolBarButton.cs:
18817                 - Added an internal member 'inside' to handle mouse move
18818                 with mouse pressed ie mouse drag event.
18819                 - Changed 'Pressed' property to return true only when
18820                 'inside' and 'pressed' are both true.
18821                 - Some coding style love.
18822
18823 2004-10-14 00:17  ravindra
18824
18825         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
18826           public method.
18827
18828 2004-10-14 00:15  ravindra
18829
18830         * ButtonBase.cs: Redraw () related improvements.
18831
18832 2004-10-14 00:14  ravindra
18833
18834         * MessageBox.cs: Moved InitFormSize () out of Paint method and
18835           removed unnecessary calls to Button.Show () method.
18836
18837 2004-10-13 17:50  pbartok
18838
18839         * XplatUIX11.cs:
18840           - Formatting fix
18841           - Removed destroying of window until we solve the problem of X
18842             destroying the window before us on shutdown
18843
18844 2004-10-13 16:32  pbartok
18845
18846         * ButtonBase.cs:
18847           - Now Redraws on MouseUp for FlatStyle Flat and Popup
18848
18849 2004-10-13 14:18  pbartok
18850
18851         * XplatUIX11.cs:
18852           - Added code to destroy the X window
18853
18854 2004-10-13 14:18  pbartok
18855
18856         * XplatUIWin32.cs:
18857           - Added code to destroy a window
18858
18859 2004-10-13 14:12  pbartok
18860
18861         * ButtonBase.cs:
18862           - Added the Redraw on Resize that got dropped in the last rev
18863
18864 2004-10-13 09:06  pbartok
18865
18866         * ThemeWin32Classic.cs:
18867           - Path from John BouAntoun:
18868             * Fix check rendering (centre correctly for normal style, offset
18869               correctly for FlatStyle).
18870             * Fix border color usage (use backcolor) for FlatStyle.Popup
18871             * Use checkbox.Capture instead of checkbox.is_pressed when
18872               rendering flatstyle states.
18873
18874 2004-10-12 21:48  pbartok
18875
18876         * ThemeWin32Classic.cs:
18877           - Removed all occurences of SystemColors and replaced them with the
18878             matching theme color
18879
18880 2004-10-12 21:41  pbartok
18881
18882         * ThemeWin32Classic.cs:
18883           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
18884             him using the function for flatstyle drawing
18885           - Changed functions to use the new version of CPDrawBorder3D
18886
18887 2004-10-12 21:15  pbartok
18888
18889         * ControlPaint.cs:
18890           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
18891             match MS documentation. They need to return defined colors if the
18892             passed color matches the configured control color. Thanks to John
18893             BouAntoun for pointing this out.
18894
18895 2004-10-12 20:57  pbartok
18896
18897         * Control.cs:
18898           - Fix from John BouAntoun: Raise ForeColorChanged event when text
18899             color is changed
18900
18901 2004-10-12 20:46  pbartok
18902
18903         * CheckBox.cs:
18904           - Fix from John BouAntoun: Now properly sets the Appearance property
18905
18906 2004-10-12 20:45  pbartok
18907
18908         * ThemeWin32Classic.cs:
18909           - Fixes from John BouAntoun: now handles forecolors and backcolors
18910             for flatstyle rendered controls much better; It also fixes normal
18911             checkbox rendering when pushed or disabled.
18912
18913 2004-10-08 02:50  jordi
18914
18915         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
18916           work
18917
18918 2004-10-07 08:56  jordi
18919
18920         * ThemeWin32Classic.cs: Removes deletion of cached brushes
18921
18922 2004-10-06 03:59  jordi
18923
18924         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
18925           XplatUIWin32.cs: removes warnings from compilation
18926
18927 2004-10-05 12:23  jackson
18928
18929         * RadioButton.cs: Fix ctor
18930
18931 2004-10-05 11:10  pbartok
18932
18933         * MessageBox.cs:
18934           - Partial implementation by Benjamin Dasnois
18935
18936 2004-10-05 10:15  jackson
18937
18938         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
18939           by John BouAntoun
18940
18941 2004-10-05 03:07  ravindra
18942
18943         * ToolBar.cs:
18944                 - Removed a private method, Draw ().
18945                 - Fixed the ButtonDropDown event handling.
18946                 - Fixed MouseMove event handling.
18947
18948 2004-10-05 03:04  ravindra
18949
18950         * ThemeWin32Classic.cs:
18951                 - Added DrawListView method and ListViewDefaultSize property.
18952                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
18953                 - Changed DOS style CRLF to Unix format (dos2unix).
18954
18955 2004-10-05 03:03  ravindra
18956
18957         * Theme.cs:
18958                 - Added DrawListView method and ListViewDefaultSize property.
18959
18960 2004-10-05 02:42  ravindra
18961
18962         * ToolBarButton.cs: Added an internal member dd_pressed to handle
18963           clicks on DropDown arrow.
18964
18965 2004-10-04 22:56  jackson
18966
18967         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
18968           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
18969           Control handle the buffers, derived classes should not have to
18970           CreateBuffers themselves.
18971
18972 2004-10-04 21:20  jackson
18973
18974         * StatusBar.cs: The control handles resizing the buffers now.
18975
18976 2004-10-04 21:18  jackson
18977
18978         * Control.cs: When resizing the buffers should be invalidated. This
18979           should be handled in Control not in derived classes.
18980
18981 2004-10-04 14:45  jackson
18982
18983         * TabPage.cs: oops
18984
18985 2004-10-04 02:14  pbartok
18986
18987         * LeftRightAlignment.cs:
18988           - Initial check-in
18989
18990 2004-10-04 01:09  jordi
18991
18992         * ThemeWin32Classic.cs: fixes right button position causing right
18993           button not showing on horizontal scrollbars
18994
18995 2004-10-02 13:12  pbartok
18996
18997         * XplatUIX11.cs:
18998           - Simplified the Invalidate method by using an X call instead of
18999             generating the expose ourselves
19000           - Added an expose when the window background is changed
19001           - Implemented ClientToScreen method
19002
19003 2004-10-02 13:08  pbartok
19004
19005         * XplatUIWin32.cs:
19006           - Added Win32EnableWindow method (test for implementing modal
19007           dialogs)
19008           - Added ClientToScreen method and imports
19009
19010 2004-10-02 13:07  pbartok
19011
19012         * XplatUI.cs, XplatUIDriver.cs:
19013           - Added ClientToScreen coordinate translation method
19014
19015 2004-10-02 13:06  pbartok
19016
19017         * KeyPressEventArgs.cs:
19018           - Fixed access level for constructor
19019
19020 2004-10-02 13:06  pbartok
19021
19022         * NativeWindow.cs:
19023           - Changed access level for the window_collection hash table
19024
19025 2004-10-02 13:05  pbartok
19026
19027         * Form.cs:
19028           - Added KeyPreview property
19029           - Added Menu property (still incomplete, pending Jordi's menu work)
19030           - Implemented ProcessCmdKey
19031           - Implemented ProcessDialogKey
19032           - Implemented ProcessKeyPreview
19033
19034 2004-10-02 13:02  pbartok
19035
19036         * Control.cs:
19037           - Added private method to get the Control object from the window
19038           handle
19039           - Implemented ContextMenu property
19040           - Implemented PointToScreen
19041           - Implemented PreProcessMessage
19042           - Implemented IsInputChar
19043           - Implemented IsInputKey
19044           - Implemented ProcessCmdKey
19045           - Completed ProcessKeyEventArgs
19046           - Fixed message loop to call the proper chain of functions on key
19047           events
19048           - Implemented ProcessDialogChar
19049           - Implemented ProcessDialogKey
19050           - Implemented ProcessKeyMessage
19051           - Implemented ProcessKeyPreview
19052           - Added RaiseDragEvent stub (MS internal method)
19053           - Added RaiseKeyEvent stub (MS internal method)
19054           - Added RaiseMouseEvent stub (MS Internal method)
19055           - Added RaisePaintEvent stub (MS Internal method)
19056           - Added ResetMouseEventArgs stub (MS Internal method)
19057           - Implemented RtlTranslateAlignment
19058           - Implemented RtlTranslateContent
19059           - Implemented RtlTranslateHorizontal
19060           - Implemented RtlTranslateLeftRight
19061           - Added generation of KeyPress event
19062
19063 2004-10-02 05:57  ravindra
19064
19065         * ListViewItem.cs: Added attributes.
19066
19067 2004-10-02 05:32  ravindra
19068
19069         * ListView.cs: Added attributes.
19070
19071 2004-10-01 11:53  jackson
19072
19073         * Form.cs: Implement the Close method so work on MessageBox can
19074           continue.
19075
19076 2004-09-30 14:06  pbartok
19077
19078         * XplatUIX11.cs:
19079           - Bug fixes
19080
19081 2004-09-30 11:34  jackson
19082
19083         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
19084
19085 2004-09-30 07:26  ravindra
19086
19087         * ListViewItemConverter.cs: Converter for ListViewItem.
19088
19089 2004-09-30 07:26  ravindra
19090
19091         * SortOrder.cs: Enum for ListView control.
19092
19093 2004-09-30 07:25  ravindra
19094
19095         * ColumnHeader.cs: Supporting class for ListView control.
19096
19097 2004-09-30 07:24  ravindra
19098
19099         * ListView.cs, ListViewItem.cs: Initial implementation.
19100
19101 2004-09-30 07:20  ravindra
19102
19103         * ItemActivation.cs: Enum for ListView Control.
19104
19105 2004-09-29 20:29  pbartok
19106
19107         * XplatUIX11.cs:
19108           - Added lookup of pixel value for background color; tries to get a
19109             color 'close' to the requested color, it avoids having to create a
19110             colormap.  Depending on the display this could mean the used color
19111             is slightly off the desired color. Might have to change it to a more
19112             resource intensive colormap approach, but it will work as a
19113           workaround to avoid red screens.
19114
19115 2004-09-29 14:27  jackson
19116
19117         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
19118
19119 2004-09-28 12:44  pbartok
19120
19121         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
19122           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
19123           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
19124           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
19125           TrackBar.cs, VScrollBar.cs:
19126           - Streamlined Theme interfaces:
19127             * Each DrawXXX method for a control now is passed the object for
19128               the control to be drawn in order to allow accessing any state the
19129               theme might require
19130
19131             * ControlPaint methods for the theme now have a CP prefix to avoid
19132               name clashes with the Draw methods for controls
19133
19134             * Every control now retrieves it's DefaultSize from the current
19135             theme
19136
19137 2004-09-28 12:17  jackson
19138
19139         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
19140           drawing
19141
19142 2004-09-24 14:57  jackson
19143
19144         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
19145           Gives us a nice little performance boost.
19146
19147 2004-09-24 12:02  jackson
19148
19149         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
19150           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
19151           Control and supporting classes. Initial checkin
19152
19153 2004-09-23 13:08  jackson
19154
19155         * Form.cs: Temp build fixage
19156
19157 2004-09-23 01:39  ravindra
19158
19159         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
19160           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
19161           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
19162           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
19163           EventHandlers needed by ListView Control.
19164
19165 2004-09-22 14:12  pbartok
19166
19167         * ScrollableControl.cs:
19168           - Implemented DockPadding property
19169           - Implemented AutoScroll property
19170           - Implemented AutoScrollMargin property
19171           - Implemented AutoScrollMinSize property
19172           - Implemented AutoScrollPosition property
19173           - Implemented DisplayRectangle property (still incomplete)
19174           - Implemented CreateParams property
19175           - Implemented HScroll property
19176           - Implemented VScroll property
19177           - Implemented OnVisibleChanged property
19178
19179 2004-09-22 14:09  pbartok
19180
19181         * Form.cs:
19182           - Added Form.ControllCollection class
19183           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
19184             RemoveOwnedForm (still incomplete, missing on-top and common
19185             minimize/maximize behaviour)
19186           - Added StartPosition property (still incomplete, does not use when
19187             creating the form)
19188           - Added ShowDialog() methods (still incomplete, missing forcing the
19189             dialog modal)
19190
19191 2004-09-22 14:05  pbartok
19192
19193         * Application.cs:
19194           - Added message loop for modal dialogs
19195
19196 2004-09-22 14:02  pbartok
19197
19198         * GroupBox.cs:
19199           - Fixed wrong types for events
19200
19201 2004-09-22 14:00  pbartok
19202
19203         * Shortcut.cs, FormWindowState.cs:
19204           - Fixed wrong values
19205
19206 2004-09-22 12:01  jackson
19207
19208         * Control.cs: Text is never null
19209
19210 2004-09-20 22:14  pbartok
19211
19212         * XplatUIWin32.cs:
19213           - Fixed accessibility level for Idle handler
19214
19215 2004-09-20 18:54  jackson
19216
19217         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19218           XplatUIX11.cs: New message loop that uses poll so we don't get a
19219           busy loop
19220
19221 2004-09-17 10:43  pbartok
19222
19223         * ScrollBar.cs:
19224           - Fixed behaviour of arrow buttons. Now properly behaves like
19225             Buttons (and like Microsoft's scrollbar arrow buttons)
19226
19227 2004-09-17 10:14  pbartok
19228
19229         * ScrollBar.cs:
19230           - Added missing release of keyboard/mouse capture
19231
19232 2004-09-17 06:18  jordi
19233
19234         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
19235           Theme.cs: Very early menu support
19236
19237 2004-09-16 17:45  pbartok
19238
19239         * XplatUIWin32.cs:
19240           - Fixed sending a window to the front
19241           - Added overload for SetWindowPos to avoid casting
19242
19243 2004-09-16 17:44  pbartok
19244
19245         * Control.cs:
19246           - Added SendToBack and BringToFront methods
19247
19248 2004-09-16 07:00  ravindra
19249
19250         * Copyright: Added Novell URL.
19251
19252 2004-09-16 07:00  ravindra
19253
19254         * ToolBar.cs: Invalidate should be done before redrawing.
19255
19256 2004-09-15 21:19  ravindra
19257
19258         * ColumnHeaderStyle.cs: Enum for ListView Control.
19259
19260 2004-09-15 21:18  ravindra
19261
19262         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
19263           ListView Control.
19264
19265 2004-09-13 18:26  jackson
19266
19267         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
19268           properly
19269
19270 2004-09-13 18:13  jackson
19271
19272         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
19273           a second thread and post messages into the main threads message
19274           queue. This makes timing much more consistent. Both win2K and XP
19275           have a minimum timer value of 15 milliseconds, so we now do this
19276           too.
19277
19278 2004-09-13 15:18  pbartok
19279
19280         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19281           XplatUIX11.cs:
19282           - Added Z-Ordering methods
19283
19284 2004-09-13 10:56  pbartok
19285
19286         * Form.cs:
19287           - Fixed #region names
19288           - Moved properties and methods into their proper #regions
19289
19290 2004-09-13 10:51  pbartok
19291
19292         * Form.cs:
19293           - Added Accept and CancelButton properties
19294           - Added ProcessDialogKey() method
19295
19296 2004-09-13 08:18  pbartok
19297
19298         * IWindowTarget.cs:
19299           - Initial check-in
19300
19301 2004-09-10 21:50  pbartok
19302
19303         * Control.cs:
19304           - Added DoDragDrop() [incomplete]
19305           - Properly implemented 'Visible' handling
19306           - Added SetVisibleCore()
19307           - Implemented FindChildAtPoint()
19308           - Implemented GetContainerControl()
19309           - Implemented Hide()
19310
19311 2004-09-10 19:28  pbartok
19312
19313         * Control.cs:
19314           - Moved methods into their appropriate #regions
19315           - Reordered methods within regions alphabetically
19316
19317 2004-09-10 18:57  pbartok
19318
19319         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19320           - Added method to retrieve text from window
19321
19322 2004-09-10 18:56  pbartok
19323
19324         * Control.cs:
19325           - Moved some internal functions into the internal region
19326           - Implemented FontHeight
19327           - Implemented RenderRightToLeft
19328           - Implemented ResizeRedraw
19329           - Implemented ShowFocusCues
19330           - Implemented ShowKeyboardCues
19331           - Implemented FromChildHandle
19332           - Implemented FromHandle
19333           - Implemented IsMnemonic
19334           - Implemented ReflectMessage
19335           - All public and protected Static Methods are now complete
19336
19337 2004-09-10 16:54  pbartok
19338
19339         * Control.cs:
19340           - Implemented remaining missing public instance properties
19341           - Alphabetized some out of order properties
19342
19343 2004-09-10 05:51  ravindra
19344
19345         * PictureBox.cs: Added a check for null image.
19346
19347 2004-09-10 00:59  jordi
19348
19349         * GroupBox.cs: remove cvs tag
19350
19351 2004-09-09 05:25  ravindra
19352
19353         * ToolBar.cs: Make redraw accessible from ToolBarButton.
19354
19355 2004-09-09 05:23  ravindra
19356
19357         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
19358           parent redraw.
19359
19360 2004-09-09 02:28  pbartok
19361
19362         * ThemeWin32Classic.cs:
19363           - Improve disabled string look
19364
19365 2004-09-09 01:15  jordi
19366
19367         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
19368           args and handler
19369
19370 2004-09-08 23:56  ravindra
19371
19372         * ItemBoundsPortion.cs: It's enum, not a class!
19373
19374 2004-09-08 23:47  ravindra
19375
19376         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
19377           Enums for Form.
19378
19379 2004-09-08 21:13  ravindra
19380
19381         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
19382           ListView control.
19383
19384 2004-09-08 21:03  ravindra
19385
19386         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
19387           avoid crash.
19388
19389 2004-09-08 21:01  ravindra
19390
19391         * ScrollableControl.cs: Removed unreachable code.
19392
19393 2004-09-08 06:45  jordi
19394
19395         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
19396
19397 2004-09-08 01:00  jackson
19398
19399         * XplatUIX11.cs: Only run the timers when updating the message
19400           queue. This effectively gives X messages a higher priority then
19401           timer messages. Timers still need love though
19402
19403 2004-09-07 14:01  jackson
19404
19405         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
19406           this for us and the handle is no longer valid.
19407
19408 2004-09-07 13:59  jackson
19409
19410         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
19411           loop that manages to not crash. TODO: Add poll and cleanup timers
19412
19413 2004-09-07 11:12  jordi
19414
19415         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
19416
19417 2004-09-07 03:40  jordi
19418
19419         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
19420           fixes, methods, multiple links
19421
19422 2004-09-06 06:55  jordi
19423
19424         * Control.cs: Caches ClientRectangle rectangle value
19425
19426 2004-09-05 02:03  jordi
19427
19428         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
19429           certain situations
19430
19431 2004-09-04 11:10  jordi
19432
19433         * Label.cs: Refresh when font changed
19434
19435 2004-09-02 16:24  pbartok
19436
19437         * Control.cs:
19438           - Added sanity check to creation of double buffer bitmap
19439
19440 2004-09-02 16:24  pbartok
19441
19442         * ButtonBase.cs:
19443           - Fixed selection of text color
19444           - Fixed handling of resize event; now properly recreates double
19445             buffering bitmap
19446           - Added missing assignment of TextAlignment
19447           - Added proper default for TextAlignment
19448
19449 2004-09-02 14:26  pbartok
19450
19451         * RadioButton.cs:
19452           - Added missing RadioButton.RadioButtonAccessibleObject class
19453
19454 2004-09-02 14:26  pbartok
19455
19456         * Control.cs:
19457           - Added missing Control.ControlAccessibleObject class
19458           - Started to implement Select()ion mechanisms, still very incomplete
19459
19460 2004-09-02 14:25  pbartok
19461
19462         * AccessibleObject.cs:
19463           - Added missing methods
19464
19465 2004-09-02 14:23  pbartok
19466
19467         * AccessibleNavigation.cs, AccessibleSelection.cs:
19468           - Initial check-in
19469
19470 2004-09-02 10:32  jordi
19471
19472         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
19473           pool for pens, brushes, and hatchbruses
19474
19475 2004-09-01 15:30  jackson
19476
19477         * StatusBar.cs: Fix typo
19478
19479 2004-09-01 14:44  pbartok
19480
19481         * RadioButton.cs:
19482           - Fixed state
19483
19484 2004-09-01 14:39  pbartok
19485
19486         * Button.cs, RadioButton.cs:
19487           - Functional initial check-in
19488
19489 2004-09-01 14:01  pbartok
19490
19491         * CheckBox.cs:
19492           - Added missing default
19493           - Added missing region mark
19494
19495 2004-09-01 09:10  jordi
19496
19497         * Label.cs: fixes method signatures, new methods, events, fixes
19498           autosize
19499
19500 2004-09-01 07:19  jordi
19501
19502         * Control.cs: Init string variables with an empty object
19503
19504 2004-09-01 04:20  jordi
19505
19506         * Control.cs: fires OnFontChanged event
19507
19508 2004-08-31 20:07  pbartok
19509
19510         * ButtonBase.cs:
19511           - Enabled display of strings
19512
19513 2004-08-31 20:05  pbartok
19514
19515         * Form.cs:
19516           - Added (partial) implementation of DialogResult; rest needs to be
19517             implemented when the modal loop code is done
19518
19519 2004-08-31 19:55  pbartok
19520
19521         * CheckBox.cs:
19522           - Fixed to match the removal of the needs_redraw concept
19523
19524 2004-08-31 19:55  pbartok
19525
19526         * ButtonBase.cs:
19527           - Removed the rather odd split between 'needs redraw' and redrawing
19528           - Now handles the events that require regeneration (ambient
19529             properties and size)
19530
19531 2004-08-31 19:41  pbartok
19532
19533         * Control.cs:
19534           - Added firing of BackColorChanged event
19535           - Added TopLevelControl property
19536           - Fixed handling of WM_ERASEBKGRND message
19537
19538 2004-08-31 12:49  pbartok
19539
19540         * ButtonBase.cs:
19541           - Removed debug
19542           - Minor fixes
19543
19544 2004-08-31 12:48  pbartok
19545
19546         * CheckBox.cs:
19547           - Finished (famous last words)
19548
19549 2004-08-31 04:35  jordi
19550
19551         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
19552           scrolling bugs, adds new methods
19553
19554 2004-08-30 14:42  pbartok
19555
19556         * CheckBox.cs:
19557           - Implemented CheckBox drawing code
19558
19559 2004-08-30 14:42  pbartok
19560
19561         * ButtonBase.cs:
19562           - Made Redraw() and CheckRedraw() virtual
19563           - Improved mouse up/down/move logic to properly track buttons
19564
19565 2004-08-30 09:44  pbartok
19566
19567         * CheckBox.cs:
19568           - Updated to fix broken build. Not complete yet.
19569
19570 2004-08-30 09:28  pbartok
19571
19572         * CheckState.cs:
19573           - Initial checkin
19574
19575 2004-08-30 09:17  pbartok
19576
19577         * Appearance.cs:
19578           - Initial check-in
19579
19580 2004-08-27 16:12  ravindra
19581
19582         * ToolBarButton.cs: Added TypeConverter attribute.
19583
19584 2004-08-27 16:07  ravindra
19585
19586         * ImageIndexConverter.cs: Implemented.
19587
19588 2004-08-27 14:17  pbartok
19589
19590         * Control.cs:
19591           - Removed unneeded stack vars
19592           - First attempt to fix sizing issues when layout is suspended
19593
19594 2004-08-25 15:35  jordi
19595
19596         * ScrollBar.cs: more fixes to scrollbar
19597
19598 2004-08-25 14:04  ravindra
19599
19600         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
19601           Added the missing divider code and grip for ToolBar Control.
19602
19603 2004-08-25 13:20  pbartok
19604
19605         * Control.cs:
19606           - Control now properly passes the ambient background color to child
19607             controls
19608
19609 2004-08-25 13:20  jordi
19610
19611         * ScrollBar.cs: small bug fix regarding bar position
19612
19613 2004-08-25 12:33  pbartok
19614
19615         * Timer.cs:
19616           - Now only calls SetTimer or KillTimer if the enabled state has
19617           changed
19618
19619 2004-08-25 12:33  pbartok
19620
19621         * XplatUIWin32.cs:
19622           - Fixed timer handling, now seems to work
19623           - Improved error message for window creation
19624
19625 2004-08-25 12:32  pbartok
19626
19627         * Control.cs:
19628           - Fixed generation of MouseUp message
19629
19630 2004-08-25 12:29  jordi
19631
19632         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
19633           and fixes for progressbar
19634
19635 2004-08-24 18:43  ravindra
19636
19637         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
19638           in ToolBar control.
19639
19640 2004-08-24 17:15  pbartok
19641
19642         * Panel.cs:
19643           - Added #region
19644           - Added missing events
19645           - Alphabetized
19646
19647 2004-08-24 17:14  pbartok
19648
19649         * StatusBar.cs, PictureBox.cs:
19650           - Now uses Control's CreateParams
19651
19652 2004-08-24 16:36  pbartok
19653
19654         * XplatUIX11.cs:
19655           - Fixed background color handling
19656           - Fixed sending of enter/leave events on a grab
19657
19658 2004-08-24 16:35  pbartok
19659
19660         * X11Structs.cs:
19661           - Refined definitions for CrossingEvent
19662
19663 2004-08-24 12:37  jordi
19664
19665         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
19666           formmating, methods signature, and adds missing events
19667
19668 2004-08-24 12:24  jordi
19669
19670         * Control.cs: fire OnEnabledChanged event
19671
19672 2004-08-24 11:17  pbartok
19673
19674         * XplatUIWin32.cs:
19675           - Implemented SetTimer() and KillTimer()
19676
19677 2004-08-24 11:16  pbartok
19678
19679         * XplatUIX11.cs:
19680           - Now uses Remove instead of Add to kill the timer
19681
19682 2004-08-24 10:16  jackson
19683
19684         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
19685           picture boxes in the theme now. Draw picture box borders and obey
19686           sizing modes
19687
19688 2004-08-24 05:49  jackson
19689
19690         * Timer.cs: Remove top secret debugging code
19691
19692 2004-08-24 05:34  jackson
19693
19694         * PictureBox.cs: Temp hack to make picture boxes draw their full
19695           image
19696
19697 2004-08-24 05:29  jackson
19698
19699         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19700           XplatUIX11.cs: Move timers to the driver level. On X they are
19701           queued by the driver and checked on idle.
19702
19703 2004-08-24 01:07  jackson
19704
19705         * XplatUIX11.cs: Use a queue for async messages instead of passing
19706           them as ClientMessages since that was totally broken. Also simply
19707           check for events and return an idle message if none are found. This
19708           gives us an idle handler, and prevents deadlocking when no messages
19709           are in the queue.
19710
19711 2004-08-23 18:19  ravindra
19712
19713         * XplatUIWin32.cs: Removed the unwanted destructor.
19714
19715 2004-08-23 17:27  pbartok
19716
19717         * ButtonBase.cs:
19718           - Finishing touches. Works now, just needs some optimizations.
19719
19720 2004-08-23 16:53  jordi
19721
19722         * ScrollBar.cs: small fix
19723
19724 2004-08-23 16:45  pbartok
19725
19726         * Application.cs:
19727           - Removed debug output
19728           - Simplifications
19729
19730 2004-08-23 16:43  jordi
19731
19732         * ScrollBar.cs: [no log message]
19733
19734 2004-08-23 16:10  pbartok
19735
19736         * Form.cs:
19737           - Fixed handling of WM_CLOSE message
19738           - Removed debug output
19739
19740 2004-08-23 16:09  pbartok
19741
19742         * Application.cs:
19743           - Added handling of Idle event
19744           - Added handling of form closing
19745           - Fixed reporting of MessageLoop property
19746           - Removed some unneeded code, should provide a bit of a speedup
19747
19748 2004-08-23 15:22  pbartok
19749
19750         * Control.cs:
19751           - Added InitLayout() method
19752           - Added code to properly perform layout when Anchor or Dock property
19753             is changed
19754           - Changed 'interpretation' of ResumeLayout. MS seems to have a
19755             LAMESPEC, tried to do it in a way that makes sense
19756
19757 2004-08-23 14:10  jordi
19758
19759         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
19760           properties and methods
19761
19762 2004-08-23 13:55  pbartok
19763
19764         * Control.cs:
19765           - Properly fixed Jordi's last fix
19766           - Now uses Cursor's Position property instead of calling XplatUI
19767           directly
19768
19769 2004-08-23 13:44  jordi
19770
19771         * PaintEventHandler.cs: Adding missing attribute
19772
19773 2004-08-23 13:39  pbartok
19774
19775         * Cursor.cs:
19776           - Implemented Position property
19777
19778 2004-08-23 13:39  pbartok
19779
19780         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19781           - Added method to move mouse cursor
19782
19783 2004-08-23 13:39  pbartok
19784
19785         * XplatUIX11.cs:
19786           - Fixed setting of background color
19787           - Added method to move mouse cursor
19788
19789 2004-08-23 13:16  jordi
19790
19791         * Control.cs: avoids null exception
19792
19793 2004-08-22 17:46  jackson
19794
19795         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
19796           PictureBox
19797
19798 2004-08-22 17:40  jackson
19799
19800         * XplatUIX11.cs: Add some missing locks
19801
19802 2004-08-22 15:10  pbartok
19803
19804         * Control.cs, Form.cs:
19805           - Removed OverlappedWindow style from Control, instead it's default
19806             now is child
19807           - Made form windows OverlappedWindow by default
19808
19809 2004-08-22 13:34  jackson
19810
19811         * ScrollBar.cs: Update the position through the Value property so
19812           the OnValueChanged event is raised.
19813
19814 2004-08-22 12:04  pbartok
19815
19816         * SWF.csproj:
19817           - Added Cursor.cs and UserControl.cs
19818
19819 2004-08-22 12:03  pbartok
19820
19821         * Cursor.cs:
19822           - Started implementation, not usable yet
19823
19824 2004-08-22 12:00  pbartok
19825
19826         * UserControl.cs:
19827           - Implemented UserControl (complete)
19828
19829 2004-08-21 19:20  ravindra
19830
19831         * ToolBar.cs: Correcting the formatting mess of VS.NET.
19832
19833 2004-08-21 18:49  ravindra
19834
19835         * ToolBar.cs: Probably this completes the missing attributes in
19836           toolbar control.
19837
19838 2004-08-21 18:03  ravindra
19839
19840         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
19841           Fixed toolbar control signatures.
19842
19843 2004-08-21 16:32  pbartok
19844
19845         * LinkLabel.cs:
19846           - Signature Fixes
19847
19848 2004-08-21 16:30  pbartok
19849
19850         * Label.cs:
19851           - Signature fixes
19852
19853 2004-08-21 16:19  pbartok
19854
19855         * Control.cs, Label.cs:
19856           - Signature fixes
19857
19858 2004-08-21 15:57  pbartok
19859
19860         * ButtonBase.cs:
19861           - Added loads of debug output for development
19862           - Fixed typo in method name
19863
19864 2004-08-21 15:52  pbartok
19865
19866         * ToolBarButtonClickEventArgs.cs:
19867           - Added missing base class
19868
19869 2004-08-21 14:53  pbartok
19870
19871         * Control.cs:
19872           - Updated to match new GrabWindow signature
19873
19874 2004-08-21 14:51  pbartok
19875
19876         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19877           - Added method to get default display size
19878
19879 2004-08-21 14:23  pbartok
19880
19881         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19882           - Added method to query current grab state
19883           - Added argument to allow confining a grab to a window
19884
19885 2004-08-21 14:22  pbartok
19886
19887         * Keys.cs:
19888           - Added [Flags] attribute so that modifiers can be used in bitwise
19889           ops
19890
19891 2004-08-21 14:21  pbartok
19892
19893         * TrackBar.cs, ScrollBar.cs:
19894           - Replaced direct XplatUI calls with their Control counterpart
19895
19896 2004-08-21 13:32  pbartok
19897
19898         * Control.cs:
19899           - Implemented Created property
19900
19901 2004-08-21 13:28  pbartok
19902
19903         * Control.cs:
19904           - Implemented ContainsFocus
19905
19906 2004-08-21 13:26  pbartok
19907
19908         * Control.cs:
19909           - Implemented CausesValidation
19910
19911 2004-08-21 13:21  pbartok
19912
19913         * Control.cs:
19914           - Implemented CanFocus
19915           - Implemented CanSelect
19916           - Implemented Capture
19917
19918 2004-08-21 12:35  pbartok
19919
19920         * XplatUIWin32.cs:
19921           - Fixed bug with Async message handling
19922           - Implemented getting the ModifierKeys
19923
19924 2004-08-21 12:32  jackson
19925
19926         * AsyncMethodResult.cs: Make sure we have the mutex before we
19927           release it. Fixes BeginInvoke on windows
19928
19929 2004-08-21 11:31  pbartok
19930
19931         * XplatUIWin32.cs, XplatUIX11.cs:
19932           - Drivers now return proper mouse state
19933
19934 2004-08-21 10:54  jackson
19935
19936         * Control.cs: Implement EndInvoke
19937
19938 2004-08-21 10:48  jackson
19939
19940         * Timer.cs: Remove unneeded finalizer
19941
19942 2004-08-20 19:52  ravindra
19943
19944         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
19945           in mouse event handling in the ToolBar control.
19946
19947 2004-08-20 19:50  ravindra
19948
19949         * ImageList.cs: Changed draw method to use the arguments passed in
19950           to draw the image.
19951
19952 2004-08-20 18:58  pbartok
19953
19954         * XplatUIStructs.cs:
19955           - Added private message for async communication
19956
19957 2004-08-20 17:38  ravindra
19958
19959         * Control.cs: Made RightToLeft property virtual and removed a
19960           Console.WriteLine.
19961
19962 2004-08-20 14:39  jordi
19963
19964         * ThemeGtk.cs: use style_attach
19965
19966 2004-08-20 14:39  pbartok
19967
19968         * XplatUIWin32.cs:
19969           - Added jackson's Async code from X11 to Win32
19970
19971 2004-08-20 14:09  pbartok
19972
19973         * SWF.csproj:
19974           - Added all new files
19975
19976 2004-08-20 14:09  pbartok
19977
19978         * Control.cs:
19979           - Added call to set window background color
19980
19981 2004-08-20 14:03  pbartok
19982
19983         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19984           - Added method for setting the window background
19985
19986 2004-08-20 14:02  pbartok
19987
19988         * XplatUIWin32.cs:
19989           - Added method for setting the background color
19990           - Added handling for erasing the window background
19991
19992 2004-08-20 13:45  jordi
19993
19994         * TrackBar.cs: fixes timer, new properties and methods
19995
19996 2004-08-20 13:34  jackson
19997
19998         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
19999           correct thread
20000
20001 2004-08-20 13:22  jackson
20002
20003         * Timer.cs: Timer Tick events are now handed through Controls Async
20004           mechanism so the callbacks are executed in the same thread as X
20005
20006 2004-08-20 13:19  jackson
20007
20008         * XplatUIDriver.cs: Expose functionality to send async messages
20009           through the driver
20010
20011 2004-08-20 13:18  jackson
20012
20013         * Control.cs: Implement Begininvoke
20014
20015 2004-08-20 13:14  jackson
20016
20017         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
20018           messages through the driver
20019
20020 2004-08-20 13:12  jackson
20021
20022         * XplatUIX11.cs: Lock before all X operations. Also added Async
20023           method functionality through XSendEvent
20024
20025 2004-08-20 13:11  jackson
20026
20027         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
20028           This will screw up on 64 bit systems)
20029
20030 2004-08-20 13:10  jackson
20031
20032         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
20033           Async messages through X/Win32
20034
20035 2004-08-19 19:39  pbartok
20036
20037         * XplatUIX11.cs:
20038           - Updated code to match new HandleData.DeviceContext type
20039
20040 2004-08-19 19:38  pbartok
20041
20042         * HandleData.cs:
20043           - Made DeviceContext a generic object to allow usage from various
20044           drivers
20045           - Added support for queueing Windows messages
20046
20047 2004-08-19 19:37  pbartok
20048
20049         * XplatUIWin32.cs:
20050           - Added generation of MouseEnter, MouseLeave and MouseHover events
20051           - Added cleanup on EndPaint
20052
20053 2004-08-19 19:17  pbartok
20054
20055         * Control.cs:
20056           - Added handling of WM_MOUSEHOVER
20057           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
20058           code
20059
20060 2004-08-19 18:55  jordi
20061
20062         * ThemeGtk.cs: fixes button order
20063
20064 2004-08-19 18:12  jordi
20065
20066         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
20067
20068 2004-08-19 17:09  pbartok
20069
20070         * Control.cs:
20071           - Added Right property
20072           - Added RightToLeft property
20073
20074 2004-08-19 16:27  jordi
20075
20076         * ThemeGtk.cs: experimental GTK theme support
20077
20078 2004-08-19 16:26  jordi
20079
20080         * ITheme.cs, Theme.cs: move themes from an interface to a class
20081
20082 2004-08-19 16:25  jordi
20083
20084         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
20085           theme enhancaments
20086
20087 2004-08-19 16:04  pbartok
20088
20089         * XplatUIX11.cs:
20090           - Added colormap basics
20091           - Added a way to re-initialize with a different display handle
20092           - Fixed setting of the window background color
20093           - Added various X11 imports related to colors and colormaps
20094
20095 2004-08-19 15:51  pbartok
20096
20097         * X11Structs.cs:
20098           - Removed packing hints (Paolo suggested this a while back)
20099           - fixed colormap type
20100           - Added default Atom types
20101           - Added Screen and color structs and enums
20102
20103 2004-08-19 15:39  pbartok
20104
20105         * ImageList.cs:
20106           - Added missing Draw() method
20107           - Added missing RecreateHandle event
20108
20109 2004-08-19 15:30  pbartok
20110
20111         * Form.cs:
20112           - Added handling of WM_CLOSE
20113
20114 2004-08-18 13:16  jordi
20115
20116         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
20117           a table
20118
20119 2004-08-18 09:56  jordi
20120
20121         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
20122
20123 2004-08-17 15:31  ravindra
20124
20125         * SWF.csproj: Updated project.
20126
20127 2004-08-17 15:25  pbartok
20128
20129         * Control.cs:
20130           - Drawing improvement; don't call UpdateBounds if we are not visible
20131             (or have been minimized)
20132
20133 2004-08-17 15:24  pbartok
20134
20135         * XplatUIWin32.cs:
20136           - Finished IsVisible
20137           - Added Win32GetWindowPlacement
20138
20139 2004-08-17 15:08  jackson
20140
20141         * Panel.cs: Initial checkin of the Panel
20142
20143 2004-08-17 14:25  pbartok
20144
20145         * Control.cs:
20146           - Fixed broken handling of default window sizes
20147
20148 2004-08-17 13:29  jackson
20149
20150         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
20151           has a large startup time.
20152
20153 2004-08-17 10:25  jackson
20154
20155         * HandleData.cs: union areas properly
20156
20157 2004-08-17 10:12  jackson
20158
20159         * HandleData.cs: union areas properly
20160
20161 2004-08-16 20:00  ravindra
20162
20163         * ToolBar.cs, ToolBarButton.cs: Added attributes.
20164
20165 2004-08-16 18:48  ravindra
20166
20167         * ToolBar.cs: Added attributes.
20168
20169 2004-08-16 17:17  ravindra
20170
20171         * SWF.csproj: Updated project.
20172
20173 2004-08-16 17:16  jackson
20174
20175         * XplatUIX11.cs: Check for more expose events before sending a
20176           WM_PAINT so they can all be grouped together. This makes dragging a
20177           window across another window redraw in a sane way.
20178
20179 2004-08-16 15:47  pbartok
20180
20181         * Control.cs:
20182           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
20183             support OnMouseEnter/Leave()
20184           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
20185             exposure handling
20186
20187 2004-08-16 15:46  pbartok
20188
20189         * XplatUIStructs.cs, XplatUIX11.cs:
20190           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
20191           OnMouseEnter/Leave()
20192
20193 2004-08-16 15:34  jackson
20194
20195         * XplatUIX11.cs: Group multiple expose events in HandleData, make
20196           sure messages get the message field set to WM_NULL if they are not
20197           handled.
20198
20199 2004-08-16 15:24  jackson
20200
20201         * HandleData.cs: HandleData is used for storing message information
20202           for window handles
20203
20204 2004-08-15 17:23  ravindra
20205
20206         * ColorDepth.cs: Added attribute.
20207
20208 2004-08-15 17:23  ravindra
20209
20210         * SWF.csproj: Updated project for ToolBar Control.
20211
20212 2004-08-15 17:20  ravindra
20213
20214         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
20215           control and also dos2unix format.
20216
20217 2004-08-15 17:13  ravindra
20218
20219         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
20220           ToolBarButtonClickEventArgs.cs,
20221           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
20222           ToolBarTextAlign.cs: First Implementation of ToolBar control.
20223
20224 2004-08-15 15:31  pbartok
20225
20226         * ButtonBase.cs:
20227           - First (mostly) working version
20228
20229 2004-08-13 16:15  pbartok
20230
20231         * Control.cs:
20232           - Fixed Anchor default
20233
20234 2004-08-13 15:43  pbartok
20235
20236         * Control.cs:
20237           - Changed GetCursorPos signature
20238
20239 2004-08-13 15:42  pbartok
20240
20241         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20242           - Changed signature for GetCursorPos
20243
20244 2004-08-13 15:25  pbartok
20245
20246         * XplatUIX11.cs:
20247           - Cleanup
20248           - Fixed resizing/exposure handling
20249
20250 2004-08-13 15:22  jordi
20251
20252         * ThemeWin32Classic.cs: removes redundant code and fixes issues
20253           with tickposition
20254
20255 2004-08-13 14:55  jordi
20256
20257         * TrackBar.cs: change from wndproc to events
20258
20259 2004-08-13 13:00  jordi
20260
20261         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20262           XplatUIX11.cs: implements PointToClient (ScreenToClient)
20263
20264 2004-08-13 12:53  pbartok
20265
20266         * XplatUIWin32.cs:
20267           - Changed GetWindowPos to also provide client area size
20268           - Fixed broken prototypes for several win32 functions
20269
20270 2004-08-13 12:53  pbartok
20271
20272         * XplatUI.cs, XplatUIDriver.cs:
20273           - Changed GetWindowPos to also provide client area size
20274
20275 2004-08-13 12:52  pbartok
20276
20277         * XplatUIX11.cs:
20278           - Added generation of WM_POSCHANGED
20279           - Changed GetWindowPos to also provide client area size
20280
20281 2004-08-13 12:52  pbartok
20282
20283         * Control.cs:
20284           - Added Dispose() and destructor
20285           - Fixed resizing and bounds calculation
20286           - Fixed Layout
20287           - Added memory savings for invisible windows
20288
20289 2004-08-13 12:46  jordi
20290
20291         * TrackBar.cs: adds timer and grap window
20292
20293 2004-08-13 10:25  jackson
20294
20295         * Timer.cs: SWF Timer
20296
20297 2004-08-12 16:59  pbartok
20298
20299         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20300           - Implemented method to get current mouse position
20301
20302 2004-08-12 14:29  jordi
20303
20304         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
20305           enhancement, fix mouse problems, highli thumb, etc
20306
20307 2004-08-12 13:31  pbartok
20308
20309         * Control.cs:
20310           - Fixed Anchoring bugs
20311
20312 2004-08-12 13:01  jackson
20313
20314         * StatusBar.cs: Don't forget things
20315
20316 2004-08-12 12:54  jackson
20317
20318         * ThemeWin32Classic.cs: Handle owner draw status bars
20319
20320 2004-08-12 12:54  jackson
20321
20322         * StatusBar.cs: Implement missing properties, events, and methods.
20323           Handle mouse clicking
20324
20325 2004-08-12 10:19  jackson
20326
20327         * StatusBarPanelClickEventArgs.cs,
20328           StatusBarPanelClickEventHandler.cs: Classes for handling status
20329           bar panel click events
20330
20331 2004-08-12 10:10  jackson
20332
20333         * Control.cs: Add missing properties
20334
20335 2004-08-12 09:46  pbartok
20336
20337         * BindingsManagerBase.cs:
20338           - Name changed to BindingManagerBase.cs
20339
20340 2004-08-12 09:25  jordi
20341
20342         * ScrollableControl.cs: calls ctrlbase instead of exeception
20343
20344 2004-08-11 16:28  pbartok
20345
20346         * InputLanguageChangingEventArgs.cs:
20347           - Never check in before compiling. Fixes the last check-in
20348
20349 2004-08-11 16:26  pbartok
20350
20351         * InputLanguageChangingEventArgs.cs:
20352           - More signature fixes
20353
20354 2004-08-11 16:20  pbartok
20355
20356         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
20357           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
20358           ImageListStreamer.cs, InputLanguage.cs,
20359           InputLanguageChangedEventArgs.cs,
20360           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
20361           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
20362           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
20363           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20364           - Signature fixes
20365
20366 2004-08-11 16:16  pbartok
20367
20368         * Application.cs:
20369           - Fixed Signature
20370           - Added .Net 1.1 method
20371
20372 2004-08-11 15:25  pbartok
20373
20374         * SWF.csproj:
20375           - Fixed BindingManagerBase.cs filename
20376
20377 2004-08-11 15:22  pbartok
20378
20379         * BindingManagerBase.cs:
20380           - Was checked in with wrong filename
20381
20382 2004-08-11 14:50  pbartok
20383
20384         * SWF.csproj:
20385           - Updated
20386
20387 2004-08-11 13:41  jordi
20388
20389         * XplatUIWin32.cs: Fixes ClientRect
20390
20391 2004-08-11 13:19  pbartok
20392
20393         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20394           XplatUIX11.cs:
20395           - We had SetWindowPos and MoveWindow to set window positions and
20396             size, removed MoveWindow. We have GetWindowPos, so it made sense to
20397             keep SetWindowPos as matching counterpart
20398           - Added some X11 sanity checking
20399
20400 2004-08-11 12:59  pbartok
20401
20402         * Control.cs:
20403           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
20404             (It seems that SetBounds is just a front for SetBoundsCore and
20405              SetBoundsCore updates the underlying window system and
20406              UpdateBounds is responsible for updating the variables associated
20407              with the Control and sending the events)
20408           - Major cleanup of Size handling; we now have two sizes, client_size
20409             and bounds. Bounds defines the window with decorations, client_size
20410             without them.
20411
20412 2004-08-11 12:55  pbartok
20413
20414         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20415           - Added method to calculate difference between decorated window and
20416             raw client area
20417
20418 2004-08-11 12:54  pbartok
20419
20420         * Label.cs:
20421           - Forcing redraw on resize
20422
20423 2004-08-11 11:43  pbartok
20424
20425         * ImageList.cs:
20426           - Removed disposing of the actual images when the list is disposed
20427
20428 2004-08-11 09:13  pbartok
20429
20430         * Control.cs:
20431           - Now properly reparents windows
20432
20433 2004-08-11 08:37  pbartok
20434
20435         * Control.cs:
20436           - Duh!
20437
20438 2004-08-11 07:47  pbartok
20439
20440         * Control.cs:
20441           - Rewrote the collection stuff. Might not be as fast now, not
20442             keeping the number of children around and accessible directly, but
20443             it's more straightforward
20444
20445 2004-08-11 07:44  pbartok
20446
20447         * AccessibleObject.cs:
20448           - Fixed to match ControlCollection rewrite
20449
20450 2004-08-11 07:43  pbartok
20451
20452         * ImageList.cs:
20453           - Added missing creation of the collection list
20454
20455 2004-08-10 20:08  jackson
20456
20457         * StatusBar.cs: Get the paint message from WndProc
20458
20459 2004-08-10 19:31  jackson
20460
20461         * ThemeWin32Classic.cs: Create Brushes as little as possible
20462
20463 2004-08-10 19:20  jackson
20464
20465         * UICues.cs: Add Flags attribute
20466
20467 2004-08-10 19:19  jackson
20468
20469         * StatusBarPanel.cs: Signature cleanup
20470
20471 2004-08-10 19:10  jackson
20472
20473         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
20474           Initial implementation of status bar item drawing
20475
20476 2004-08-10 17:27  jordi
20477
20478         * TrackBar.cs: add missing methods, properties, and restructure to
20479           hide extra ones
20480
20481 2004-08-10 16:24  jackson
20482
20483         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
20484           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
20485           attribute
20486
20487 2004-08-10 13:21  jordi
20488
20489         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
20490           enhancements and standarize on win colors defaults
20491
20492 2004-08-10 12:52  jackson
20493
20494         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
20495           ThemeWin32Classic.cs: Implement DrawItem functionality
20496
20497 2004-08-10 12:47  jordi
20498
20499         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
20500
20501 2004-08-10 12:32  jordi
20502
20503         * Control.cs: throw ontextchange event
20504
20505 2004-08-10 11:43  pbartok
20506
20507         * Control.cs:
20508           - Added more to the still unfinished Dock/Anchor layout code
20509
20510 2004-08-10 11:39  pbartok
20511
20512         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20513           - Added GetWindowPos method
20514
20515 2004-08-10 11:36  pbartok
20516
20517         * XplatUIWin32.cs:
20518           - Implemented several methods
20519
20520 2004-08-10 09:47  jackson
20521
20522         * TrackBar.cs: Allow control to handle buffering
20523
20524 2004-08-10 09:41  jackson
20525
20526         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
20527
20528 2004-08-10 09:24  jackson
20529
20530         * Label.cs, LinkLabel.cs: Let Control handle buffering.
20531
20532 2004-08-10 09:09  jackson
20533
20534         * StatusBar.cs: Let Control handle all the buffering.
20535
20536 2004-08-10 09:08  jackson
20537
20538         * Control.cs: Control will now handle the buffering code, so each
20539           control does not have to implement this.
20540
20541 2004-08-10 08:34  jackson
20542
20543         * XplatUIDriver.cs: Use default colors from the theme
20544
20545 2004-08-09 17:12  pbartok
20546
20547         * ImageList.cs:
20548           - Fixed several bugs Ravindra pointed out
20549
20550 2004-08-09 16:11  pbartok
20551
20552         * Control.cs:
20553           - Added incomplete dock layout code
20554           - Added support for mouse wheel
20555
20556 2004-08-09 16:09  pbartok
20557
20558         * XplatUIX11.cs:
20559           - Added handling for middle and right mousebutton
20560           - Added handling for mouse wheel
20561           - Added handling for key state and mouse state and position
20562           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
20563           messages
20564
20565 2004-08-09 15:40  jackson
20566
20567         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
20568           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
20569           checkin
20570
20571 2004-08-09 15:37  jackson
20572
20573         * StatusBar.cs: Initial implementation of StatusBar
20574
20575 2004-08-09 15:36  jackson
20576
20577         * ITheme.cs: Add support for drawing status bar and getting status
20578           bar item sizes
20579
20580 2004-08-09 15:35  pbartok
20581
20582         * MouseButtons.cs:
20583           - Fixed values
20584
20585 2004-08-09 15:34  jackson
20586
20587         * ThemeWin32Classic.cs: Add support for drawing status bar and get
20588           status bar item sizes
20589
20590 2004-08-09 15:21  jackson
20591
20592         * ThemeWin32Classic.cs: Use known colors for default control
20593           colours
20594
20595 2004-08-09 15:12  jackson
20596
20597         * ThemeWin32Classic.cs: Make the default font static, it is static
20598           in control so this doesn't change functionality and creating fonts
20599           is sloooooow.
20600
20601 2004-08-09 14:56  pbartok
20602
20603         * X11Structs.cs:
20604           - Added GrabMode enum
20605
20606 2004-08-09 14:55  pbartok
20607
20608         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20609           - Removed Run method, was only required for initial development
20610
20611 2004-08-09 14:51  pbartok
20612
20613         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20614           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
20615           capture
20616
20617 2004-08-09 13:48  pbartok
20618
20619         * XplatUIX11.cs:
20620           - Fixed default sizing for child windows
20621
20622 2004-08-09 12:56  pbartok
20623
20624         * XplatUIX11.cs:
20625           - Added generation of WM_DESTROY message
20626           - Added handling of window manager induced shutdown
20627
20628 2004-08-09 11:31  jackson
20629
20630         * ThemeWin32Classic.cs: New names for control properties
20631
20632 2004-08-09 11:25  jackson
20633
20634         * Control.cs: Use new color names
20635
20636 2004-08-09 11:02  jackson
20637
20638         * XplatUI.cs: Get default window properties from the theme
20639
20640 2004-08-09 11:01  jackson
20641
20642         * ITheme.cs: The theme engine now controls default window
20643           properties
20644
20645 2004-08-09 11:00  jackson
20646
20647         * ThemeWin32Classic.cs: Add default window color properties
20648
20649 2004-08-09 10:17  jackson
20650
20651         * ThemeWin32Classic.cs: Use correct default back color
20652
20653 2004-08-09 10:05  jackson
20654
20655         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
20656           the theme now.
20657
20658 2004-08-09 09:56  jackson
20659
20660         * XplatUI.cs: Remove defaults, these are handled by the theme now.
20661
20662 2004-08-09 09:54  jackson
20663
20664         * Control.cs: Get default properties from the theme.
20665
20666 2004-08-09 09:53  jackson
20667
20668         * ITheme.cs: Themes now handle default control properties
20669
20670 2004-08-09 09:53  jackson
20671
20672         * ThemeWin32Classic.cs: Themes now handle default control
20673           properties so coloring will be consistent
20674
20675 2004-08-08 16:54  jordi
20676
20677         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
20678
20679 2004-08-08 15:08  jordi
20680
20681         * XplatUIX11.cs: fixes keyboard crash
20682
20683 2004-08-08 13:47  jordi
20684
20685         * Label.cs: add cvs header info
20686
20687 2004-08-08 12:09  jackson
20688
20689         * ThemeWin32Classic.cs: Add pen_buttonface
20690
20691 2004-08-08 11:52  jordi
20692
20693         * Label.cs, LinkLabel.cs: [no log message]
20694
20695 2004-08-08 11:34  jordi
20696
20697         * ThemeWin32Classic.cs: Use Windows Standard Colours
20698
20699 2004-08-07 17:32  jordi
20700
20701         * TrackBar.cs: throw exceptions of invalid enums values
20702
20703 2004-08-07 17:31  jordi
20704
20705         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
20706           draw method name
20707
20708 2004-08-07 16:56  jackson
20709
20710         * HorizontalAlignment.cs: Initial checkin
20711
20712 2004-08-07 13:16  jordi
20713
20714         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
20715           methods
20716
20717 2004-08-07 13:05  jordi
20718
20719         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
20720           GetSysColor defines
20721
20722 2004-08-06 18:01  pbartok
20723
20724         * ThemeWin32Classic.cs:
20725           - Fixed some rounding issues with float/int
20726
20727 2004-08-06 18:00  jackson
20728
20729         * DockStyle.cs, AnchorStyles.cs:
20730
20731                   Add flags and serializable attributes.
20732
20733 2004-08-06 17:46  pbartok
20734
20735         * XplatUIX11.cs:
20736           - Implemented GetParent
20737
20738 2004-08-06 17:18  pbartok
20739
20740         * TrackBar.cs:
20741           - Fixed some rounding issues with float/int
20742
20743 2004-08-06 17:17  pbartok
20744
20745         * X11Structs.cs, XplatUIX11.cs:
20746           - Fixed Refresh and Invalidate
20747
20748 2004-08-06 15:30  pbartok
20749
20750         * Control.cs, X11Structs.cs, XplatUIX11.cs:
20751           - Fixed recursive loop when resizing
20752           - Improved/fixed redrawing on expose messages
20753
20754 2004-08-06 09:53  jordi
20755
20756         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
20757           keyboard navigation
20758
20759 2004-08-06 08:02  pbartok
20760
20761         * X11Structs.cs, XplatUIX11.cs:
20762           - Fixed reparenting
20763           - Fixed window border creation
20764
20765 2004-08-05 15:38  pbartok
20766
20767         * XplatUIX11.cs:
20768           - Attempted fix for reparenting problems
20769
20770 2004-08-04 15:14  pbartok
20771
20772         * Control.cs:
20773           - Fixed Invalidation bug (calculated wrong client area)
20774           - Added ClientSize setter
20775
20776 2004-08-04 15:13  pbartok
20777
20778         * Form.cs:
20779           - Added AutoScale properties
20780
20781 2004-08-04 15:13  pbartok
20782
20783         * SWF.csproj:
20784           - Added latest files
20785
20786 2004-08-04 14:11  pbartok
20787
20788         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20789           XplatUIX11.cs:
20790           - Added Invalidate handling
20791
20792 2004-08-03 17:09  jordi
20793
20794         * XplatUIDriver.cs: fixes spelling mistake
20795
20796 2004-07-27 09:53  jordi
20797
20798         * TrackBar.cs: fixes trackbar events, def classname, methods
20799           signature
20800
20801 2004-07-27 09:29  jordi
20802
20803         * ScrollBar.cs: fixes scrollbar events
20804
20805 2004-07-27 04:38  jordi
20806
20807         * Control.cs: changes to be able to run winforms samples
20808
20809 2004-07-26 11:42  jordi
20810
20811         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
20812           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
20813
20814 2004-07-26 05:41  jordi
20815
20816         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
20817           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
20818           implementation
20819
20820 2004-07-22 09:22  jordi
20821
20822         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
20823           check link overlapping, implement events, and fixes
20824
20825 2004-07-21 10:28  jordi
20826
20827         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
20828
20829 2004-07-21 10:19  jordi
20830
20831         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
20832           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
20833           LinkLabelLinkClickedEventArgs.cs,
20834           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
20835           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
20836           implementation
20837
20838 2004-07-19 13:09  jordi
20839
20840         * Control.cs, Label.cs: label control re-written: added missing
20841           functionlity, events, and properties
20842
20843 2004-07-19 10:49  jordi
20844
20845         * Control.cs: fixes SetBounds logic
20846
20847 2004-07-19 01:29  jordi
20848
20849         * Control.cs: Call RefreshWindow only if the window has created
20850
20851 2004-07-15 14:05  pbartok
20852
20853         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
20854           - Implemented ImageList and ImageList.ImageCollection classes
20855           - Added ColorDepth enumeration
20856           - Updated SWF VS.Net project
20857
20858 2004-07-15 11:06  jordi
20859
20860         * XplatUIStructs.cs: added MsgButons enum
20861
20862 2004-07-15 11:03  jordi
20863
20864         * Control.cs: added basic mouse handeling events
20865
20866 2004-07-15 03:38  jordi
20867
20868         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
20869           Vertical TrackBar control implementation
20870
20871 2004-07-13 09:33  jordi
20872
20873         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
20874
20875 2004-07-13 09:31  jordi
20876
20877         * Control.cs, Form.cs: commit: new properties and fixes form size
20878           problems
20879
20880 2004-07-09 14:13  miguel
20881
20882         * ProgressBar.cs: Spelling
20883
20884 2004-07-09 11:25  pbartok
20885
20886         * ProgressBar.cs:
20887           - Removed usage of Rectangle for drawing. Miguel pointed out it's
20888           faster
20889
20890 2004-07-09 11:17  miguel
20891
20892         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
20893
20894                 * ProgressBar.cs: Fixed spelling for `block'
20895
20896                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
20897                 style guidelines.
20898
20899                 Avoid using the += on rect.X, that exposed a bug in the compiler.
20900
20901 2004-07-08 23:21  pbartok
20902
20903         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
20904           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
20905           BaseCollection.cs, Binding.cs, BindingContext.cs,
20906           BindingMemberInfo.cs, BindingsCollection.cs,
20907           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
20908           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
20909           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
20910           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
20911           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
20912           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
20913           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
20914           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
20915           FrameStyle.cs, GiveFeedbackEventArgs.cs,
20916           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
20917           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
20918           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
20919           InputLanguageChangedEventArgs.cs,
20920           InputLanguageChangedEventHandler.cs,
20921           InputLanguageChangingEventArgs.cs,
20922           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
20923           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
20924           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
20925           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
20926           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
20927           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
20928           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
20929           QueryAccessibilityHelpEventArgs.cs,
20930           QueryAccessibilityHelpEventHandler.cs,
20931           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
20932           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
20933           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
20934           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
20935           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
20936           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
20937           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
20938           XplatUIX11.cs, lang.cs:
20939           - Initial check-in
20940