revert r69151
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / ChangeLog
1 2006-12-14  Mike Kestner  <mkestner@novell.com>
2
3         * ListView.cs: throw ArgumentExceptions when parented ListViewItems
4         are added or inserted to the collection.  Fixes #81099.
5
6 2006-12-13  Everaldo Canuto  <everaldo@simios.org>
7
8         * MenuAPI.cs: Closes menu when right click out side of popup
9         it fix problem in ContextMenu and MainMenu. Fixes #80252.
10
11 2006-12-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
12
13         * ListViewItem.cs: Fix dumb error.
14
15         * ListView.cs: Add Find and ContainsKey methods in 
16         ListViewItemCollection, and also return true for IsReadOnly
17         and IsFixedSize (changes for 2.0). 
18
19 2006-12-13  Gert Driesen  <drieseng@users.sourceforge.net>
20
21         * Control.cs: Allow Region to be set to null.
22
23 2006-12-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
24
25         * MdiWindowManager.cs: Remove unused (commented out) code.
26         * Form.cs: When the MdiChild is maximized, the form needs 
27         WM_NCMOUSELEAVE, so request it.
28         * InternalWindowManager.cs: 
29         - Added tooltips to control buttons.
30         - Removed duplicated control button handling code.
31         - Removed unused (commented out) code.
32         
33 2006-12-12  Everaldo Canuto  <everaldo@simios.org>
34
35         * MenuAPI.cs: Set cursor to default in popup menus, a XplatUI.SetCursor 
36         was used because we must set cursor without trigger ChangeCursor event
37         and without change Cursor control property. Fixes #79963.
38
39 2006-12-12  Andreia Gaita  <avidigal@novell.com>
40         
41         * Control.cs: Check if Region setter value is null, and ignore
42
43 2006-12-12  Jackson Harper  <jackson@ximian.com>
44
45         * TextControl.cs: We were almost always drawing one more line then
46         needed, since the GetLineByPixel will return the last line found
47         at that pixel. In most cases though, we were invalidating up to
48         the junction between two lines.
49         - Improve debug code.
50
51 2006-12-12  Chris Toshok  <toshok@ximian.com>
52
53         * XplatUI.cs: add static DrawReversibleFrame, DrawReversibleLine,
54         and FillReversibleRectangle.
55
56         * XplatUIDriver.cs: add abstract DrawReversibleFrame, DrawReversibleLine,
57         and FillReversibleRectangle.
58
59         * XplatUIWin32.cs: add stubs which do nothing for
60         DrawReversibleFrame, DrawReversibleLine, and
61         FillReversibleRectangle.
62
63         * XplatUIOSX.cs: add stubs which raise NIE for
64         DrawReversibleFrame, DrawReversibleLine, and
65         FillReversibleRectangle.
66
67         * XplatUIX11.cs: add working implementation for
68         DrawReversibleFrame, DrawReversibleLine, and
69         FillReversibleRectangle.
70         
71         * ControlPaint.cs: implement DrawReversibleFrame,
72         DrawReversibleLine, and FillReversibleRectangle, by calling into
73         the appropriate XplatUI method.
74
75 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
76
77         * Form.cs: Make MdiClient have the focus even if it's
78         not selectable, since it should receive WM_KEY* and WM_MOUSE 
79         messages. Fixes #79907.
80         
81 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
82
83         * Hwnd.cs: Save the CreateParams.ExStyle so that it can be
84         queried after the window is created.
85         
86         * XplatUIX11.cs: Added SendParentNotify to implement 
87         WM_PARENTNOTIFY logic. Fixes #79965.
88         
89         * Control.cs: Added MakeParam.
90         
91 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
92
93         * MdiClient.cs: Resume Layout before setting window
94         states (fixes #80201).
95
96 2006-12-11  Rolf Bjarne Kvinge  <RKvinge@novell.com>
97
98         * MenuAPI.cs: Deselect a menu item after performing
99         the click (fixes #80197).
100
101 2006-12-11  Jackson Harper  <jackson@ximian.com>
102
103         * TextBoxBase.cs: We need to cap this value, since Maximum -
104         ViewPortHeight can be less than zero.
105         - Only do selection with the left mouse button.
106         * TextBox.cs: Don't tell the world that we have a context menu.
107         * Control.cs: New method so that we can control whether or not the
108         context menu is visible outside MWF.
109
110 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
111
112         * ToolBarButton.cs: Fix text positon. 
113
114 2006-12-11  Miguel de Icaza  <miguel@novell.com>
115
116         * ProgressBar.cs (MarqueeAnimationSpeed): Add stub.
117
118         * Control.cs (DoubleBuffered): Add implementation.
119
120         * Application.cs (OpenForms): Add.
121
122 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
123
124         * Form.cs: Use opacity instead of Opactiy to determine if we need
125         to set the WS_EX_LAYERED bit.  [Fixes bug #80185]
126
127 2006-12-11  Jonathan Pobst  <monkey@jpobst.com>
128
129         * Control.cs: Fix NRE if Control.Site was set to null.
130
131 2006-12-11  Chris Toshok  <toshok@ximian.com>
132
133         * Control.cs: ControlCollection.Remove should return if the arg is
134         null, and ControlCollection.SetChildIndex should raise a ANE.
135
136 2006-12-11  Gert Driesen  <drieseng@users.sourceforge.net>
137
138         * Control.cs: Verify value set for Dock property. Code formatting
139         updates.
140
141 2006-12-11  Jackson Harper  <jackson@ximian.com>
142
143         * TextControl.cs: Draw the caret and the selection when a flag is
144         set on the owner.
145         * TextBoxBase.cs: We want to draw the caret and the selection for
146         TextBox but not for TextBoxBase.
147         - If the window is resized and scrolling is no longer needed (the
148         whole doc is visible) set the scroll position to zero.
149         - The default SelectWord (the one TextBox uses) should move the
150         caret to the end of the word.
151         - SelectAll moves the caret to the end of the selection.
152         * TextBox.cs: We don't selectall on focus, we just do it when the
153         control is created.
154         
155 2006-12-11  Mike Kestner  <mkestner@novell.com>
156
157         * ComboBox.cs: stub in a 2.0 override for ProcessKeyEventArgs.
158
159 2006-12-11  Carlos Alberto Cortez <calberto.cortez@gmail.com>
160
161         * ListView.cs: Add Insert, IndexOfKey, RemoveByKey and indexer 
162         2.0 support.
163         * ListViewItem.cs: Add Name 2.0 property.
164
165 2006-12-11  Andreia Gaita  <avidigal@novell.com>
166
167         * TabControl.cs: Set visibility on selected or default tab 
168         when tabcontrol handle is created, so that it's contents
169         actually show up (duh). Fixes #80193
170         Don't redraw the control if there is no handle created, as
171         the selected index might be completely invalid. Added some tests
172         to check for this.
173
174 2006-12-11  Everaldo Canuto  <everaldo@simios.org>
175
176         * ToolBar.cs: Uses maximun width and height of all buttons as 
177         button rectangle when ButtonSize specified, it looks strange but
178         is what happens in Win32. Fixes #80189.
179
180 2006-12-11  Jackson Harper  <jackson@ximian.com>
181
182         * TextControl.cs: Need to track undo levels ourself, since
183         compound actions will mess them up.
184
185 2006-12-10  Andreia Gaita  <avidigal@novell.com>
186
187         * TabControl.cs: Raise SelectedIndexChanged for 1.1 if the
188         SelectedIndex value is changed (even if it's not valid).
189         Reset SelectedIndex to 0 when the handle is created and if
190         the current index is invalid.
191         Fixes SelectdeIndex unit tests and #80128
192
193 2006-12-08  Chris Toshok  <toshok@ximian.com>
194
195         * DataGrid.cs (set_CurrentCell): because EnsureCellVisibility
196         calls EndEdit, it needs to be called before we set current_cell to
197         its new value.  Otherwise, we end up committing the value in the
198         textbox to the new cell as well.  Fixes bug #80160.
199
200 2006-12-08  Chris Toshok  <toshok@ximian.com>
201
202         * Form.cs (set_CancelButton): if the button's DialogResult is
203         None, set it to Cancel.  Fixes bug 80180.
204
205 2006-12-08  Jackson Harper  <jackson@ximian.com>
206
207         * TextBoxBase.cs: Ugh, ClientSize can be 0,0 sometimes, so we need
208         to watch ourselves when setting the canvas size and setting the
209         scrollbar values.
210
211 2006-12-08  Chris Toshok  <toshok@ximian.com>
212
213         * DataGrid.cs: comment out the two MakeTransparent calls for the
214         time being so people using trunk (and not 1.2.2) on windows can
215         actually use the datagrid.  This deals with bug #80151.
216
217 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
218
219         * ThemeWin32Classic.cs: Change ButtonBase_DrawImage to use the
220         Graphics.DrawImage (image, int, int, int, int) overload instead
221         of Graphics.DrawImage (image, int, int).  GDI+ can't figure out
222         the dpi difference and was blurring images it drew.
223         [Fixes bug #79960]
224
225 2006-12-08  Chris Toshok  <toshok@ximian.com>
226
227         * ThemeWin32Classic.cs (DataGridPaintRows): handle case where
228         rowcnt is 0 (such as with an empty datasource), and make sure we
229         initialize not_usedarea.Y to cells.Y, so we don't draw over the
230         other areas (caption, parent row, etc, etc).  Fixes bug #80095.
231
232 2006-12-08  Chris Toshok  <toshok@ximian.com>
233
234         * DataGridColumnStyle.cs (SetDataGrid): don't try to access a null
235         grid.
236
237 2006-12-08  Chris Toshok  <toshok@ximian.com>
238
239         [ Fixes bug #80167 ]
240         
241         * ThemeWin32Classic.cs: don't draw the image if the button's flat
242         style is FlatStyle.System.
243
244         * ButtonBase, ThemeClearlooks.cs, ThemeGtk.cs, ThemeNice.cs: make
245         ButtonBase.flat_style private, and switch uses of it to the public
246         property.
247         
248 2006-12-08  Chris Toshok  <toshok@ximian.com>
249
250         [ Fixes bug #80121 ]
251         
252         * ThemeWin32Classic.cs: center the caption text in the datagrid
253         when we draw it.
254
255         * DataGrid.cs: lessen the amount we add to the caption height from
256         6 to 2.  6 was making it huge.
257
258 2006-12-08  Andreia Gaita  <avidigal@novell.com>
259
260         * UpDownBase: Handle MouseWheel call directly instead of capturing
261         the inner textbox's OnMouseWheel. Fixes #80166
262
263 2006-12-08  Jackson Harper  <jackson@ximian.com>
264
265         * TextControl.cs: We need to invalidate the textbox when we empty
266         it (how had this not been discovered before?)
267
268 2006-12-08  Jackson Harper  <jackson@ximian.com>
269
270         * TextBoxBase.cs: Reworked the mouse down code so I could get it
271         to behave like MS, we now ignore the eventargs.Click and just
272         track state ourself, which we were already doing anyways.
273         - Constrain the double click handler to the double click size.
274         
275 2006-12-08  Chris Toshok  <toshok@ximian.com>
276
277         * DataGrid.cs: the mousewheel code shouldn't try to scroll in a
278         direction if that scrollbar isn't shown.  fixes bug #80158.
279
280 2006-12-08  Andreia Gaita  <avidigal@novell.com>
281
282         * NumericUpDown.cs: Update value on getter. Fixes #79950
283
284 2006-12-08  Chris Toshok  <toshok@ximian.com>
285
286         * MenuItem.cs: add back in the event cloning code.  I didn't know
287         how to do it in the face of the EventHandlerList work i'd done
288         last week.  Fixes bug #80183.
289
290 2006-12-08  Jonathan Pobst  <monkey@jpobst.com>
291
292         * Control.cs: Add an invalidate to the BackgroundImage setter.
293         [Fixes 80184]
294
295 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
296
297         * ToolStrip*: Add some small properties reported by MoMA, fix event
298         firing and default properties based off of unit tests, and add some
299         attributes based off of the class status page.
300
301 2006-12-07  Jackson Harper  <jackson@ximian.com>
302
303         * TextBoxBase.cs: Take HideSelection into account when determining
304         whether or not to show the selection.
305         * RichTextBox.cs: After inserting the RTF into the document move
306         the cursor to the beginning of the document.
307
308 2006-12-07  Jonathan Pobst  <monkey@jpobst.com>
309
310         * Control.cs: Remove static ArrayList "controls" which maintained
311         a reference to every control created.
312         * Application.cs: Create a static FormCollection to maintain a reference
313         to every form created.  Use it in places that formerly enumerated through
314         the controls one looking for forms.
315         * Form.cs: Add and remove self from above FormCollection.
316
317 2006-12-07  Alexander Olk  <alex.olk@googlemail.com>
318
319         * MimeIcon.cs: gdk_pixbuf_save_to_buffer is part of libgdk-pixbuf,
320           not libgdk (though it makes me wonder why I didn't have any
321           problems)
322
323 2006-12-07  Chris Toshok  <toshok@ximian.com>
324
325         [ you had to know this was coming after that last commit...]
326         
327         * XplatUIX11.cs: implement the 3 Offscreen functions in terms of
328         XPixmaps (CreateOffscreenDrawable maps to XCreatePixmap,
329         DestroyOffscreenDrawable to FreePixmap, and BlitFromOffscreen to
330         XCopyArea).
331
332 2006-12-07  Chris Toshok  <toshok@ximian.com>
333
334         * XplatUI.cs: add 3 calls (CreateOffscreenDrawable,
335         DestroyOffscreenDrawable, and BlitFromOffscreen) that encompass
336         all the behavior we need for double buffering.
337
338         * XplatUIDriver.cs: implement the 3 double buffer methods using a
339         client side Bitmap, just like the old Control-based double buffer
340         code did.  The methods are virtual, so each XplatUI driver
341         subclass can replace the implementation to use a faster, platform
342         specific approach.
343
344         * Control.cs: make use of the 3 Offscreen XplatUI calls in the
345         double buffer code, and clean things up a bit in the process.
346
347 2006-12-06  Chris Toshok  <toshok@ximian.com>
348
349         * Control.cs: reindent WndProc.
350
351 2006-12-06  Chris Toshok  <toshok@ximian.com>
352
353         [ I wanna be like BenM when I grow up ]
354         
355         * Hwnd.cs: create a single static Graphics object on the static
356         Bitmap we create.  use this for our text measurements.
357
358         * Control.cs (DeviceContext): stop using the backbuffer's dc_mem.
359         This was causing us to allocate a backbuffer for every control,
360         even when it wasn't flagged as double buffered.  Instead use the
361         single graphics instance.  This might have implications for
362         multithreaded applications.  If we run into problems we can switch
363         to creating 1 Graphics per control, on the static Hwnd bitmap.
364
365         this change nets us a 7M savings in private dirty mappings when
366         running FormsTest.exe.
367
368 2006-12-06  Chris Toshok  <toshok@ximian.com>
369
370         * ListView.cs: the BackgroundImage override is just to set
371         attributes.  chain up to base.BackgroundImage.
372
373         * RichTextBox.cs: same.
374
375         * ToolBar.cs: same, but we need to also redraw the toolbar when it
376         changes, so instead a handler for BackgroundImageChanged.
377         
378         * Control.cs: make background_image private.
379
380 2006-12-06  Chris Toshok  <toshok@ximian.com>
381
382         * ScrollBar.cs: change the assignment of cursor to Cursor.  not
383         sure we even need this assignment, but roll with it for now.
384
385         * Control.cs: make the cursor field private.
386
387 2006-12-06  Chris Toshok  <toshok@ximian.com>
388
389         * Form.cs: we don't need to explicitly set ImeMode to
390         ImeMode.NoControl - that's a natural fallout of Control.ImeMode's
391         behavior in the face of ImeMode.Inherit.
392
393         * ButtonBase.cs: change DefaultImeMode to ImeMode.Disable, and
394         change the ctor's assignment to use ImeMode instead of ime_mode.
395
396         * Control.cs (get_ImeMode): don't assume DefaultImeMode ==
397         ImeModeInherit.  Only check for the parent's imemode (and return
398         NoControl if there is no parent) if ime_Mode == ImeMode.Inherit.
399         This fixes the button unit test, which sets both ImeMode and
400         DefaultImeMode to ImeMode.Disable.
401
402         also make the ime_mode field private.
403
404 2006-12-06  Chris Toshok  <toshok@ximian.com>
405
406         * Control.cs: make control_style private.
407
408         * TextBoxBase.cs: fix the HandleClick override.  it was explicitly
409         setting the styles to true, then setting them to false instead of
410         reverting to their previous values.
411
412         also, call SetStyle on the scrollbars instead of using
413         control_style directly.
414
415 2006-12-06  Jonathan Pobst  <monkey@jpobst.com>
416
417         * FormCollection.cs: Implement. [2.0]
418
419 2006-12-06  Chris Toshok  <toshok@ximian.com>
420
421         * Control.cs: make tab_stop private.
422
423         * Label.cs: set TabStop, not tab_stop.  reformat some event
424         add/remove methods to make them more compact.
425
426 2006-12-06  Chris Toshok  <toshok@ximian.com>
427
428         * RadioButton.cs: fix TabStop handling.
429
430 2006-12-06  Chris Toshok  <toshok@ximian.com>
431
432         * TextBox.cs: remove the explicit assignments to has_focus.
433         Control does that.
434
435         * ButtonBase.cs: remove the assignment to has_focus.  Control will
436         manage that.
437         
438 2006-12-06  Chris Toshok  <toshok@ximian.com>
439
440         * ButtonBase.cs: remove all uses of is_enabled from this code.
441         it's always true when any of the code containing the checks is
442         executed.
443
444 2006-12-06  Chris Toshok  <toshok@ximian.com>
445
446         * ImageList.cs: reinstate the ShouldSerialize*/Reset* methods,
447         with different semantics (some are present in both 1.1 and 2.0
448         profiles) so that we match MS's behavior in our unit tests.
449
450 2006-12-06  Jackson Harper  <jackson@ximian.com>
451
452         * TextControl.cs: Make this operation undoable.
453         * TextBoxBase.cs: Factor the border width into the preferred
454         height.
455         - implement Modified as per the spec.
456
457 2006-12-06  Chris Toshok  <toshok@ximian.com>
458
459         * Timer.cs, Control.cs, Menu.cs: make control_tag private.
460
461 2006-12-06  Chris Toshok  <toshok@ximian.com>
462
463         * Control.cs: make right_to_left and context_menu fields private.
464
465 2006-12-06  Chris Toshok  <toshok@ximian.com>
466
467         * AccessibleObject.cs, Control.cs, XplatUIX11GTK.cs,
468         XplatUIX11.cs, Form.cs, RadioButton.cs, ScrollableControl.cs: make
469         Control.child_controls private.  switch all uses over to
470         Control.Controls.
471
472 2006-12-06  Chris Toshok  <toshok@ximian.com>
473
474         * System.Windows.Forms/GroupBox.cs,
475         System.Windows.Forms/AccessibleObject.cs,
476         System.Windows.Forms/ErrorProvider.cs,
477         System.Windows.Forms/Control.cs,
478         System.Windows.Forms/UpDownBase.cs,
479         System.Windows.Forms/ScrollBar.cs,
480         System.Windows.Forms/DateTimePicker.cs,
481         System.Windows.Forms/Form.cs, System.Windows.Forms/Label.cs,
482         System.Windows.Forms/ToolTip.cs,
483         System.Windows.Forms/RadioButton.cs,
484         System.Windows.Forms/LinkLabel.cs,
485         System.Windows.Forms/Splitter.cs,
486         System.Windows.Forms/TextBoxBase.cs,
487         System.Windows.Forms/ToolStripTextBox.cs,
488         System.Windows.Forms/ContainerControl.cs,
489         System.Windows.Forms/ThemeWin32Classic.cs,
490         System.Windows.Forms/SizeGrip.cs,
491         System.Windows.Forms/ToolStripDropDown.cs,
492         System.Windows.Forms/ScrollableControl.cs: Make Control.parent
493         private.  switch all uses over to Control.Parent.
494
495 2006-12-06  Chris Toshok  <toshok@ximian.com>
496
497         * RichTextBox.cs: don't assign to has_focus in GotFocus/LostFocus.
498         Control does this before calling emitting these events.
499
500         * TabControl.cs: same.
501
502         * ThemeWin32Classic.cs: use Control.ClientRectangle instead of
503         Control.client_rect.
504
505         * ButtonBase.cs: use the ClientSize property instead of the
506         client_size field.
507
508         * ScrollableControl.cs: same.
509
510         * Control.cs: another pass at making properties private.  also,
511         move the initialization of tab_stop to the ctor.
512
513 2006-12-05  Andreia Gaita <avidigal@novell.com>
514
515         * TabControl.cs: Let the selected index be set freely if the 
516         control handle is not yet created.
517
518 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
519
520         * Control.cs: Revert dist_top, dist_right, and dist_bottom to 
521         internal until I can rewrite DefaultLayout.
522         * ToolStrip.cs: Fix build error and some general cleaning.
523         * ToolStripControlHost.cs, SplitterPanel.cs, DataGridView.cs:
524         Fix build errors caused by making some of Control's fields private.
525
526 2006-12-05  Jackson Harper  <jackson@ximian.com>
527
528         * TextControl.cs: Redo Insert a little so that it use IndexOf
529         instead of Split, this prevents it from messing up on things like
530         \n\n\n. Also more effecient since the split array doesn't need to
531         be created.
532         * TextBoxBase.cs: AppendText doesnt handle multiline and non
533         multiline text differently, this is the first of many fixes that
534         will make multiline/non-multiline the same thing as far as the
535         TextBoxBase is concerned.
536         - Don't split the text and insert lines, this can lose some line
537         endings (like is the last line a soft or hard break). Instead use
538         the new Insert.
539         - Fix an off by one when combining all the lines in the Text
540         getter.
541         - Remove separate multiline handling from the Text getter/setter.
542
543 2006-12-05  Chris Toshok  <toshok@ximian.com>
544
545         * ButtonBase.cs: a few changes:
546
547         - don't reinitialize internal Control fields in the ctor when they
548         have the same values as Control sets them.
549
550         - don't set has_focus in OnGotFocus/OnLostFocus.  Control does
551         this before calling those methods.
552
553         - we don't need to call Refresh for anything.  use Invalidate
554         instead.
555
556         - OnEnabledChanged doesn't need to redraw at all - Control.cs
557         calls Refresh in its OnEnabledChanged.
558         
559         - several of the events we were registered for in the ctor to
560         redraw ourselves already include calls to Invalidate in the
561         property setters that raise the events.  remove the extra
562         invalidation.
563
564         - reformat a switch statement that was 83274658 columns wide.
565         
566 2006-12-05  Mike Kestner  <mkestner@novell.com>
567
568         * ComboBox.cs: fix a unit test regression from a TextBox
569         SelectionLength return of -1 when there's no selection.  
570
571 2006-12-05  Chris Toshok  <toshok@ximian.com>
572
573         * Control.cs, Button.cs, ThemeGtk.cs, Form.cs, ListView.cs,
574         ThemeWin32Classic.cs, SizeGrip.cs, ToolBar.cs: first pass at
575         cleaning up some of the internal Control fields being used by
576         subclasses.
577
578 2006-12-05  Mike Kestner  <mkestner@novell.com>
579
580         * ComboBox.cs: fix some Simple mode regressions.  Set Visible on the
581         listbox after AddImplicit calls since it defaults to hidden. Add a 
582         hack to preserve requested heights across DropDownStyle changes.
583
584 2006-12-05  Jonathan Pobst  <monkey@jpobst.com>
585
586         * PropertyGrid.cs: Hide FindFirstItem method from public API.
587
588 2006-12-05  Chris Toshok  <toshok@ximian.com>
589
590         * DataGridView.cs: fix compiler warnings.
591
592         * PrintControllerWithStatusDialog.cs: same.
593
594         * ToolBar.cs: same.
595
596         * FolderBrowserDialog.cs: same.
597
598         * Splitter.cs: same.
599
600         * DataGridViewComboBoxCell.cs: same.
601
602         * XplatUIWin32.cs: same.
603
604         * PictureBox.cs: same.
605
606         * Win32DnD.cs: same.
607
608         * PageSetupDialog.cs: same.
609
610         * FileDialog.cs: same.
611
612         * PrintDialog.cs: same.
613
614         * DataGridTextBoxColumn.cs: same.
615
616         * DrawTreeNodeEventArgs.cs: same (and fix corcompare)
617
618 2006-12-05  Chris Toshok  <toshok@ximian.com>
619
620         * TextBox.cs, CheckedListBox.cs, MonthCalendar.cs, Menu.cs,
621         MainMenu.cs, ListView.cs, LabelEditTextBox.cs, ToolBar.cs: more
622         System.ComponentModel.EventHandlerList work.
623
624 2006-12-05  Jonathan Chambers  <joncham@gmail.com>
625
626         * DrawTreeNodeEventArgs.cs: Added.
627
628 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
629         
630         * InternalWindowManager.cs: Remove an unused field.
631         
632 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
633
634         * InternalWindowManager.cs:
635         - Save the point where the title bar is clicked.
636         
637         * MdiWindowManager.cs:
638         - Only allow moving of the window as long as the 
639         clicked point on the title bar does not get out of
640         MdiClient's rectangle. Fixes #79982.
641         
642         * MdiClient.cs:
643         - Added Horizontal/VerticalScrollbarVisible.
644         - Simplified the scrollbar sizing algorithm.
645         - Cache the difference in scrolled value in
646         H/VBarValueChanged and move the calculation out
647         of the for loop.
648
649 2006-12-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
650
651         * Control.cs: Make the Console.WriteLine in WndProc 
652         write more info.
653
654 2006-12-05  Chris Toshok  <toshok@ximian.com>
655
656         * ToolStripManager.cs, ToolStripButton.cs,
657         ToolStripContentPanel.cs, ToolStripComboBox.cs, ToolStrip.cs,
658         ToolStripMenuItem.cs, ToolStripItem.cs, ToolStripControlHost.cs,
659         ToolStripSplitButton.cs, ToolStripSeparator.cs,
660         ToolStripRenderer.cs, ToolStripDropDownItem.cs,
661         ToolStripProgressBar.cs, ToolStripContainer.cs,
662         ToolStripTextBox.cs, ToolStripPanel.cs, ToolStripDropDown.cs: move
663         to using System.ComponentModel.EventHandlerList.
664
665 2006-12-04  Chris Toshok  <toshok@ximian.com>
666
667         * LinkLabel.cs: fix up compiler warnings.
668
669         * TableLayoutSettings.cs: same.
670
671         * TreeView.cs: same.
672
673         * ToolBar.cs: same.
674
675         * TabControl.cs: same.
676
677         * RichTextBox.cs: same.
678
679         * ListViewItem.cs: same.
680
681         * PropertyGrid.cs: same.
682
683         * DataGridViewRowPostPaintEventArgs.cs: corcompare fix.
684
685         * ToolTip.cs same.
686
687         * TextRenderer.cs: fix up compiler warnings.
688
689         * Label.cs: same.
690
691         * Form.cs: corcompare fixes.
692
693         * PictureBox.cs: fix up compiler warnings.
694
695         * ImageListStreamer.cs: same.
696
697         * TrackBar.cs: corcompare fix.
698
699         * Control.cs: fix up compiler warnings.
700
701         * SplitterPanel.cs: same.
702
703         * NumericTextBox.cs: same.
704
705         * ImageList.cs: same.
706
707         * StatusStrip.cs: same.
708
709         * ProgressBar.cs: corcompare fix.
710
711         * ToolStripButton.cs: fix up compiler warnings.
712
713         * ToolStripStatusLabel.cs: same.
714
715         * ToolStripSplitButton.cs: same.
716
717         * ToolStripSeparator.cs: same.
718
719         * ToolStripProgressBar.cs: same.
720
721         * ToolStripDropDownMenu.cs: same
722
723         * ToolStripDropDown.cs: same.
724
725         * ToolStripDropDownButton.cs: same.
726
727         * ToolStrip.cs: same.
728
729         * ToolStripControlHost.cs: same.
730
731         * ToolStripContentPanel.cs: same.
732
733         * ToolStripDropDown.cs: same.
734
735         * ToolStripContainer.cs: same.
736
737         * ToolStripPanel.cs: same, and add "new" where we need it to work
738         with the new ArrangedElementCollection.
739
740         * ToolStripItemCollection.cs: add "new" where we need it to work
741         with the new ArrangedElementCollection.
742
743 2006-12-04  Andreia Gaita <avidigal@novell.com>
744
745         * TabControl.cs: Fix default tab selection to after TabControl
746         gets focus and not before. Fixes #80128
747
748 2006-12-04  Chris Toshok  <toshok@ximian.com>
749
750         * DataGridTableStyle.cs: remove the gross calling of
751         datagrid.Refresh from here.  It's a broken idea and it doesn't
752         work anyway.
753
754         * DataGrid.cs: instead, just register/unregister from the
755         DataGridTableStyle events in CurrentTableStyle.  we play it
756         conservatively and EndEdit + CalcAreasAndInvalidate on any event,
757         even though some would most likely not require it.  Fixes bug
758         #80115 (and one portion of #80117 as a side effect).
759
760 2006-12-04  Chris Toshok  <toshok@ximian.com>
761
762         * DataGrid.cs (set_CaptionVisible): EndEdit before doing the work
763         so the textbox (if any) goes away.  Fixes bug #80117.
764
765 2006-12-04  Chris Toshok  <toshok@ximian.com>
766
767         * DataGridColumnStyle.cs: set the column's readonly property
768         initially based on the property descriptor's IsReadOnly.  Fixes
769         bug #80044.
770
771 2006-12-04  Chris Toshok  <toshok@ximian.com>
772
773         * ComboBox.cs: wrap the dropdown style changing work in
774         SuspendLayout/ResumeLayout.  Fixes bug #79968.
775
776 2006-12-04  Jackson Harper  <jackson@ximian.com>
777
778         * TextBoxBase.cs: Fix off by one, since these are one-based.
779         * TextBox.cs: Select all the text when we get focus.  The TextBox
780         does this but the RTB does not.
781
782 2006-12-04  Chris Toshok  <toshok@ximian.com>
783
784         * DataGridTextBoxColumn.cs: remove some spew.
785
786         * DataGridColumnStyle.cs (SetColumnValueAtRow): this seems right
787         but some part of me is saying "it shouldn't be here.."  At any
788         rate, it fixes bug #80046.  Call IEditableObject.EndEdit after
789         setting the value.
790
791 2006-12-04  Chris Toshok  <toshok@ximian.com>
792
793         * DataGridColumnStyle.cs (SetDataGrid): call CheckValidDataSource
794         to reassign the propertydescriptor.
795
796 2006-12-04  Jackson Harper  <jackson@ximian.com>
797
798         * TextBoxBase.cs:
799         * TextControl.cs: Remove some unused variables.  Maybe this will
800         patch things up between mike and I.
801         - don't split lines less then one char wide, if the viewport is
802         that small text won't be visible anyways.
803         
804 2006-12-04  Jackson Harper  <jackson@ximian.com>
805
806         * TextBoxBase.cs: Default selection length is -1, need to do some
807         more testing on windows to see when this is used for the property.
808         - Redid the Lines [] property to that we properly remove soft line
809         breaks
810         - added support for preserving carriage returns
811         -  CanUndo is not a variable like 'is undo enabled' it just returns
812         true if there is undo operations available.
813         - AppendText doesn't need to grab the last tag itself anymore,
814         this happens automatically when we move the cursor.
815         * TextControl.cs: Add CompoundActions to the undo class. This
816         allows combining the other operations into one big option.  ie a
817         paste will combine { delete old, insert new, move cursor }
818         - Add InsertString undo operation
819         - New method for deleting multiline text
820         - Add carriage returns to lines. So we can preserve carriage
821         returns when text is 'roundtripped'
822
823 2006-12-04  Chris Toshok  <toshok@ximian.com>
824
825         * DataGrid.cs (CalcCellsArea): cells_area.Width/Height are at a
826         minimum 0.  Fixes the scrollbar exception in bug #80136.
827
828 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
829
830         * MdiClient.cs: 
831         * MdiWindowManager: Removed unused fields and methods.
832         
833 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
834         
835         * StatusBar.cs: Update all panels when a AutoSize=Contents
836         panel needs updating.
837         
838         * StatusBarPanel.cs: Remove twidth and only use initialize.
839         Fixes #80031.
840                 
841 2006-12-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
842
843         * Form.cs: When a form's MdiParent is set add it directly
844         on top of the z-order in stead of relying on MdiClient's
845         ActivateChild to do it. Fixes #80135.
846         
847         * MdiClient.cs: 
848         - Remove original_order, mdi_child_list is already doing
849         the same thing.
850         - Create mdi_child_list on construction in
851         stead of first use (avoids a few null checks).
852
853         * MenuItem.cs: Use an already existing list of mdi children
854         to get the correct order of children and remove the other
855         redundant list.
856
857 2006-12-04  Chris Toshok  <toshok@ximian.com>
858
859         * PropertyGridView.cs: cached_splitter_location is only used in
860         !DOUBLEBUFFER code.
861
862         * PropertyGrid.cs: implement the ComComponentNameChanged event
863         using Events, hoping that would fix the warning.  Looks like a
864         compiler bug instead (#80144).
865
866         * PropertyManager.cs: remove unused method.
867
868 2006-11-04  Everaldo Canuto  <everaldo@simios.org>
869
870         * ThemeWin32Classic.cs: Dont draw arrow when menuitem on menubar, 
871         include parentesis to fix expression evaluation. Fixes #79634.
872
873 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
874         
875         * MenuAPI.cs:
876         - Changes to fix behavior in Menu control, some reported in #80097
877         and other detected during behavior refactory like a select event
878         problems.
879         - Remove unneded "if's" conditions.
880         - Created an internal to flag when popup is active in control, we need 
881         it because in .NET you can have menu active but without popup active
882         when you active menu using popup without visible items.
883         - Mimic win32 behavior for Select and Popup events.  
884         - Dont open popup menu when you dont have visible subitems.
885         - Do nothing when click on disabled menu item.
886         - Some small changes to follow the coding style guidelines.
887         - Unselect menu only when another control gives focus. Fixes #80097.
888         - Remove unused code.
889         
890         * MenuItem.cs: internal VisibleItems method to check if menu
891         theres visible subitems, it will be usefull to fix some 
892         behavior in Menu control.
893         
894 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
895         
896         * Timer.cs: Tag property for 2.0 profile.
897         
898 2006-12-01  Chris Toshok  <toshok@ximian.com>
899
900         [ after removing all warning suppressions, this cleans up over 100 warnings. ]
901         
902         * Win32DnD.cs: comment out some unused fields.
903
904         * XplatUIWin32.cs: comment out some unused pinvokes, and remove
905         some unused properties/methods.
906
907         * XplatUIX11.cs: fix MousePosition so we override the base class's
908         property instead of conflicting with it.
909
910         * PictureBox.cs: comment out some unused fields
911
912         * OSXStructs.cs: make some struct fields public.
913
914         * XplatUIOSX.cs: comment out some unused pinvokes, and fix
915         MousePosition so we override the base class's property instead of
916         conflicting with it.
917
918         * X11Dnd.cs: comment out some unused fields
919
920         * X11DesktopColors.cs: fix some struct field visibility to quiet
921         the compiler.
922
923         * X11Dnd.cs: remove some debug code.
924
925         * ThemeClearlooks.cs: comment out unused field.
926
927         * ThemeNice.cs: mark some methods as overriding ThemeWin32Classic as needed.
928
929         * ThemeGtk.cs: comment out some unused pinvokes.
930
931         * Timer.cs: remove some unused fields.
932
933         * ThemeClearlooks.cs: comment out unused field.
934
935         * UpDownBase.cs: comment out unused field.
936
937         * DataObject.cs: comment out unused field.
938
939         * DataGridBoolColumn.cs: reomve unused field.
940
941         * DataGrid.cs: remove unused field.
942
943         * Cursor.cs: remove old ToBitmap code.
944
945         * ControlPaint.cs: remove unused method.
946
947         * ScrollBar.cs: remove unused fields.
948
949         * ComboBox.cs: remove unused field, and chain up to
950         AccessibleObject ctor.
951
952         * ListBox.cs: remove unused field.
953
954         * ButtonBase.cs: wrap a couple fields in NET_2_0.
955
956         * GridEntry.cs: remove unused fields.
957
958         * Binding.cs: remove unused fields.
959
960         * AxHost.cs: remove unused method.
961
962         * ContainerControl.cs: remove unused field.
963
964         * ScrollableControl.cs: remove unused fields.
965
966 2006-12-01  Chris Toshok  <toshok@ximian.com>
967
968         * XplatUI.cs, XplatUIWin32.cs, XplatUIGTK.cs: nuke
969         the Where/WhereString stuff.  it's easy enough to CWL
970         Environment.StackTrace.
971
972         * XplatUIX11.cs: same, but also fix up a lot of mcs warnings about
973         unused private fields.
974
975 2006-12-01  Jackson Harper  <jackson@ximian.com>
976
977         * TextControl.cs: Do not update the view while inserting multiline
978         text. If we update the view we might wrap lines, before entering
979         the new lines, which causes the new line insertion calculations to
980         be totally fubared.
981         - Remove an old TODO
982         - Make debug output a little nicer
983         
984 2006-12-01  Chris Toshok  <toshok@ximian.com>
985
986         * ToolBar.cs: revert the ImeMode fix here and add an XXX comment.
987
988 2006-12-01  Chris Toshok  <toshok@ximian.com>
989
990         [ fix the majority of the CS0108 warnings we've been suppressing ]
991         
992         * TreeView.cs: mark BackgroundImageChanged as 'new'.
993
994         * ToolBar.cs: ImeMode just passes stuff to Control.  Rename Layout
995         to "LayoutToolBar" to quiet mcs.
996         
997         * TabControl.cs: mark our ControlCollection class as 'new'.
998
999         * TextBoxBase.cs: mark some events as 'new'.
1000
1001         * Splitter.cs: TabStop is 'new'.
1002
1003         * ControlBindingsCollection.cs: mark a few methods as new since
1004         they change the visibility from protected to public.
1005
1006         * RadioButton.cs: DoubleClick -> base class, and remove unused
1007         HaveDoubleClick.
1008
1009         * MonthCalendar.cs: ImeMode property -> base class, and mark many
1010         events as new.
1011
1012         * NumericUpDown.cs: TextChanged -> base class.
1013
1014         * CheckedListBox.cs: mark our ObjectCollection class as new to
1015         quiet mcs.
1016
1017         * FolderBrowserDialog.cs: make HelpRequest event new and have it
1018         muck with the base class.
1019
1020         * StatusBar.cs: fix some mcs warnings about Update being the same
1021         name as a base class method.
1022
1023         * RichTextBox.cs: mark some events as new, and make them do things
1024         to the base class impl.
1025
1026         * UserControl.cs: mark TextChanged as new, and have it manipulate
1027         base.TextChanged.
1028
1029         * UpDownBase.cs: mark some things new.
1030
1031         * CheckBox.cs: mark DoubleClick "new", and add some text about
1032         what we need to look at.
1033
1034         * Panel.cs: make the events "new", and manipulate the base
1035         version.  these are just here for attributes.
1036
1037         * AccessibleObject.cs: make owner private.
1038
1039         * Control.cs: deal with AccessibleObject.owner being private.
1040         cache our own copy if we need it.
1041
1042         * Button.cs: add "new" to the DoubleClickEvent.
1043
1044         * ListBox.cs: no need to track our own has_focus here.  let
1045         Control.has_focus do it for us.  Also some other work to clear up
1046         warnings about not overriding base class methods of the same name.
1047         
1048         * ComboBox.cs: clear up some warnings about not override base
1049         class methods of the same name.
1050
1051 2006-12-01  Chris Toshok  <toshok@ximian.com>
1052
1053         * Form.cs: flag a few things as "new" to quiet some of the mcs
1054         warnings.
1055
1056         * AxHost.cs: same.
1057
1058         * PrintPreviewDialog.cs: same.
1059
1060         * DataGridView.cs: fix a ton of corcompare warnings.  not all, but
1061         now DGV isn't so horrible on the class status page.  also, move
1062         all events to using System.ComponentModel.EventHandlerList.  my
1063         wrists hurt.
1064
1065 2006-12-01  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1066
1067         * MdiWindowManager.cs:
1068         - Set form to active mdi child if shown,
1069         and update the active mdi child to the next 
1070         remaining child in the z-order if the form is hidden.
1071
1072         * Form.cs: 
1073         - Track if the form has been visible and if its 
1074         visibility is beeing changed, so that the MdiClient
1075         can properly decide the ActiveMdiChild. The MdiClient 
1076         cannot track this since the form can change visibility 
1077         before MdiClient is created.
1078
1079         * MdiClient.cs:
1080         - Don't activate anything of the parent form is changing
1081         its visibility.
1082         - Rework ActiveMdiChild to only return visible mdi 
1083         children and take into account several other corner 
1084         cases.
1085
1086 2006-12-01  Chris Toshok  <toshok@ximian.com>
1087
1088         * IBindableComponent.cs: new 2.0 interface.
1089
1090 2006-12-01  Gert Driesen  <drieseng@users.sourceforge.net>
1091
1092         * DataGrid.cs: Font for caption area is bold by default.
1093
1094 2006-12-01  Everaldo Canuto  <everaldo@simios.org>
1095
1096         * Menu.cs: Tag property for 2.0.
1097         
1098 2006-11-01  Everaldo Canuto  <everaldo@simios.org>
1099
1100         * ThemeWin32Classic.cs: Adjust menu separator drawing. 
1101         
1102 2006-12-01  Chris Toshok  <toshok@ximian.com>
1103
1104         * TreeView.cs: doh, the Begin* events should be
1105         TreeViewCancelEventHandler.
1106
1107 2006-12-01  Chris Toshok  <toshok@ximian.com>
1108
1109         * Form.cs: Form.ControlCollection already stores off the
1110         form_owner field.  don't access the base class's internal "owner"
1111         field.
1112
1113         * Control.cs: make all the fields in Control.ControlCollection
1114         private.  there's no need for any internal fields here.
1115
1116 2006-12-01  Chris Toshok  <toshok@ximian.com>
1117
1118         * DataGrid.cs: call SetDataSource instead of CalcGridAreas in
1119         OnHandleCreated.  Fixes bug #80109.
1120
1121 2006-12-01  Chris Toshok  <toshok@ximian.com>
1122
1123         * Button.cs, PropertyGridTextBox.cs, ComboBox.cs,
1124         SplitContainer.cs, Control.cs, StatusStrip.cs,
1125         DataGridTableStyle.cs, MenuItem.cs, DomainUpDown.cs, ImageList.cs,
1126         NumericTextBox.cs, NumericUpDown.cs, Panel.cs, CommonDialog.cs,
1127         DataGrid.cs, ScrollBar.cs, TrackBar.cs, PictureBox.cs,
1128         DateTimePicker.cs, StatusBar.cs, Form.cs, PrintPreviewDialog.cs,
1129         Label.cs, UserControl.cs, CheckBox.cs, RadioButton.cs,
1130         LinkLabel.cs, ListControl.cs, PropertyGrid.cs, Splitter.cs,
1131         MenuStrip.cs, FolderBrowserDialog.cs, NotifyIcon.cs,
1132         TextBoxBase.cs, ListView.cs, DataGridBoolColumn.cs,
1133         PrintPreviewControl.cs, RichTextBox.cs, ListBox.cs, TabControl.cs,
1134         DataGridColumnStyle.cs, ContextMenu.cs, TreeView.cs:
1135
1136         do most of the work to convert our code over to use
1137         System.ComponentModel.Component.Events for
1138         adding/removing/dispatching events.
1139
1140
1141 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1142
1143         * DataGridView.cs: Fix an ArgumentNullException reported 
1144         twice today in IRC.
1145
1146 2006-11-30  Mike Kestner  <mkestner@novell.com>
1147
1148         * ComboBox.cs: fix the scrollbar mouse event forwarding in the 
1149         grabbed listbox.  Fixes #80036 and #80101.
1150
1151 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1152
1153         * Message.cs: Changed ToString() to match MS.
1154         
1155 2006-11-30  Jackson Harper  <jackson@ximian.com>
1156
1157         * TextBoxBase.cs: You can still change the selected text on a read
1158         only textbox.
1159         * TextControl.cs: Lower magic number for wrap calculations. This
1160         lets text get closer to the right (far) edge.
1161
1162 2006-11-30  Jonathan Pobst  <monkey@jpobst.com>
1163
1164         * Control.cs: Tweak 2.0 layout properties.
1165         * Form.cs: Switch ToolStripMenuTracker hooks to ToolStripManager.
1166         * TextRenderer.cs: Add a new overload.
1167         * ToolStrip*: Huge amount of changes and new features.
1168
1169 2006-11-30  Mike Kestner  <mkestner@novell.com>
1170
1171         * ComboBox.cs: fixes for LargeChange and Maximum to get the 
1172         scroll range correct.  Fixes #79994.
1173
1174 2006-11-30  Rolf Bjarne Kvinge <RKvinge@novell.com>
1175
1176         * MdiWindowManager.cs: Update main form's text when
1177         a form is closed. (fixes #80038)
1178         
1179 2006-11-30  Everaldo Canuto  <everaldo@simios.org>
1180
1181         * ToolBar.cs:
1182         - Fix an regression in ButtonSize.
1183         - Get ImeMode default value change to "Disable".
1184         - Get ShowTooltips default value change to true, default value is 
1185         "false" but after make a test in .NET we get "true" result as default.
1186         
1187 2006-11-29  Jonathan Pobst  <monkey@jpobst.com>
1188
1189         * ToolStripDropDown.cs: Fix for SupportsTransparency change.
1190
1191 2006-11-29  Chris Toshok  <toshok@ximian.com>
1192
1193         * XplatUIWin32.cs (GetWindowTransparency): check return value of
1194         GetLayeredWindowAttributes.  if it's 0, return 1.0, as
1195         SetWindowTransparency hasn't been called.
1196
1197 2006-11-29  Chris Toshok  <toshok@ximian.com>
1198
1199         * Form.cs (set_TransparencyKey): only call SetWindowTransparency
1200         if it's supported.
1201         (set_AllowTransparency): reorder things a little so that the
1202         WS_EX_LAYERED style is removed properly.
1203
1204 2006-11-29  Chris Toshok  <toshok@ximian.com>
1205
1206         [ totally cosmetic eye-candy feature, fixes bug #80089 ]
1207         
1208         * Form.cs: only call the XplatUI transparency method (get/set) if
1209         SupportsTransparency says it's supported. Otherwise fallback to
1210         doing nothing (in the set case) or returning the instance field we
1211         cache (in the get case).
1212
1213         * XplatUIStructs.cs: add TransparencySupport flag enum.
1214         
1215         * XplatUIDriver.cs: add abstract GetWindowTransparency, and track
1216         change to SupportsTransparency.
1217
1218         * XplatUIOSX.cs: stub out GetWindowTransparency, and return
1219         TransparencySupport.None from SupportsTransparency.
1220
1221         * XplatUIX11.cs: Stub out GetWindowTransparency, and return
1222         TransparencySupport.Set from SupportsTransparency.
1223
1224         * XplatUIWin32.cs: implement GetWindowTransparency calling
1225         GetLayeredWindowAttributes, and implement SupportsTransparency by
1226         checking whether or not both
1227         GetWindowTransparency/SetWindowTransparency are available
1228         entrypoints.  We need to do this since SetWindowTransparency is
1229         available as of win2k, but GetWindowTransparency requires winxp.
1230         yay win32 api.
1231
1232         * XplatUI.cs: Add GetWindowTransparency, and change
1233         SupportsTransparency to allow for either/both Get/Set.
1234
1235 2006-11-29  Chris Toshok  <toshok@ximian.com>
1236
1237         * DataGrid.cs: keep from going into an infinite loop redrawing a
1238         datagrid that has no datasource.  Fixes bug #80033.
1239
1240 2006-11-29  Chris Toshok  <toshok@ximian.com>
1241
1242         * MenuItem.cs: fix the NRE when we assign text (and therefore call
1243         Invalidate) before the mainmenu has been assigned to a control.
1244
1245 2006-11-29  Chris Toshok  <toshok@ximian.com>
1246
1247         * DataGrid.cs: detect when we should be double the double click
1248         row/column autosize stuff, although that codepath has yet to be
1249         written.  part of the work for bug #79891.
1250
1251 2006-11-29  Chris Toshok  <toshok@ximian.com>
1252
1253         * Binding.cs (SetControl): fix unit test.
1254
1255 2006-11-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
1256
1257         * PageSetupDialog.cs: Validate the margins and set them in
1258         PageSettings. 
1259         * NumericTextBox.cs: New class to mimic the behavior of the
1260         textboxes used in the printing dialogs.
1261
1262 2006-11-29  Andreia Gaita  <avidigal@novell.com>
1263         
1264         * Form.cs: Revert previous change (remove call UpdateBounds
1265         from form constructor), because it messes with the handle creation
1266         order, and that one needs lots and lots of love.
1267         * PrintPreviewDialog.cs: Revert change to CreateHandle (add check
1268         for valid printer and throw InvalidPrinterException if document
1269         is set but printer not valid), adding a MonoTODO. Once 
1270         handle creation is done properly, we can put this back in.
1271
1272 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1273
1274         * MenuItem.cs: Create a invalidate method for menu item, to be
1275         calling from set text, it make text changes to imadiate update
1276         on screen. Fixes #80013. 
1277         
1278 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1279
1280         * ToolBar.cs: Fixes and simplify toolbar button layout, it 
1281         fixes bug #80070 and some other problem on toolbar buttons
1282         layout.
1283
1284 2006-11-28  Everaldo Canuto  <everaldo@simios.org>
1285
1286         * ThemeWin32Classic.cs: Paint toolbar toggle button background 
1287         with dotted brush.      Fixes #79564
1288         
1289 2006-11-28  Andreia Gaita  <avidigal@novell.com>
1290
1291         * Form.cs: Removed call to UpdateBounds on Form
1292         constructor, it was causing a call to CreateHandle
1293         before it was supposed to.
1294         * PrintControllerWithStatusDialog: Applied patch
1295         by Chris Toshok to hide controller when there are
1296         no printers available.
1297         PrintDialog.cs: initialize printer settings to 
1298         null - correct DefaultValues test #5
1299         * PrintPreviewControl.cs: Move PrintController
1300         initialization to GeneratePreview
1301         * PrintPreviewDialog.cs: 
1302         - Remove Preview generation     from Document_set(). It is 
1303         called on OnPaint
1304         - Throw InvalidPrinterException on CreateHandle if
1305         a Document is set but there are no printers or 
1306         printer is not valid.
1307         * ThemeWin32Classic: don't paint PrintPreviewControl
1308         if there is nothing to paint    
1309
1310 2006-11-28  Miguel de Icaza  <miguel@novell.com>
1311
1312         * Form.cs: Add another popular method.
1313
1314         * TabPage.cs: ditto.
1315
1316 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1317
1318         * MenuItem.cs: Fixed a warning.
1319         * InternalWindowManager: Fixed a warning.
1320
1321 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1322
1323         * MenuItem.cs:
1324         - When cloning a menu also clone MdiList and clone the 
1325           window menu items properly (as the forms and menuitems
1326           are kept in an internal hashtable, these need updating 
1327           as well)
1328         - Rewrote the window menu code, menu items are added in the
1329           order the forms were added to their parent, and they are
1330           updated every time the window menu is shown (before the
1331           list was only generated once, in the current order of the
1332           forms, and would never be updated). A checkmark is shown
1333           next to the item corresponding to the active mdi child.
1334
1335 2006-11-28  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1336
1337         * XplatUIStructs.cs: 
1338         - Added WM_NCMOUSEHOVER and WM_NCMOUSELEAVE.
1339         
1340         * XplatUIWin32.cs: 
1341         - Added TME_NONCLIENT to TMEFlags.
1342         - Handles WM_NCMOUSEMOVE in GetMessage to 
1343           generate WM_NCMOUSEHOVER and WM_NCMOUSELEAVE messages.
1344
1345         * MdiWindowManager:
1346         - Now merges mdi child menu to parent menu when maximized.
1347         - Recalculate NC areas of both mdi child and mdi parent. 
1348           Fixes #79757 (4).
1349           on window state and size changes.Fixes #79844 (3).
1350         - Handle WM_NCCALCSIZE to properly calculate borders.
1351
1352         * Form.cs:
1353         - Add/remove to the mdi containers list of mdi children 
1354           in the order they are added.
1355         - Pass on WM_NCLBUTTONUP, WM_NCMOUSEMOVE and WM_NCMOUSELEAVE 
1356           to the maximized mdi child.
1357         
1358         * InternalWindowManager.cs:
1359         - Only execute a click on the control buttons on the mouse up,
1360           not on the mouse down. Show the state of the button 
1361           (was only showing Normal state, never Pressed state). The
1362           pressed button now follows the mouse (if you click the Close 
1363           button and move the mouse over the Maximize button, the 
1364           Maximize button will be shown as pressed). Since Win32 does
1365           not generate WM_NCLBUTTONUP if you release the button outside
1366           of the nc area, we need to handle WM_NCMOUSELEAVE and treat
1367           it as a mouse up.
1368         
1369         * ThemeWin32Classic.cs:
1370         - Draw a missing border around mdi child forms. Fixes #79844 (2).
1371
1372         * MdiClient.cs:
1373         - Added a list of forms which contains the order the forms are
1374           added to the mdi parent.
1375         - Handle WM_NCPAINT to properly draw a 3D border. Fixes #79844 (2).
1376         - Handle WM_NCCALCSIZE to properly calculate the 3D border.
1377         - If the active form changes set the scrollbars to the top
1378           of the Z order, otherwise the form could hide them.
1379         - Scrollbars are now sized according to ClientSize, not 
1380           to Size, and they take into account the other scrollbar
1381           to determine maximum.
1382         
1383 2006-11-28  Rolf Bjarne Kvinge <RKvinge@novell.com>
1384         
1385         * XplatUI.cs:
1386         * XplatUIDriver.cs:
1387         * XplatUIX11.cs:
1388         * XplatUIWin32.cs:
1389         * XplatUIOSX.cs:
1390         - Added RequestAdditionalWM_NCMessages for windows to 
1391           opt in for WM_NCMOUSELEAVE and WM_NCMOUSEHOVER.
1392           Currently only implemented in XplatUIWin32.
1393
1394 2006-11-27  Chris Toshok  <toshok@ximian.com>
1395
1396         * Hwnd.cs: only add the hwnd to the windows hash in
1397         set_WholeWindow and set_ClientWindow if whole_window/client_window
1398         are not IntPtr.Zero.  also, remove the unused SetObjectWindow.
1399
1400 2006-11-27  Mike Kestner  <mkestner@novell.com>
1401
1402         * ComboBox.cs: remove redundant OnDropDown call.  It is called
1403         from the ComboListBox.ShowWindow code. Fixes #79969.
1404
1405 2006-11-27  Chris Toshok  <toshok@ximian.com>
1406
1407         * Hwnd.cs: remove the setters for ExposePending and
1408         NCExposePending - noone uses them.
1409
1410 2006-11-27  Jackson Harper  <jackson@ximian.com>
1411
1412         * TextControl.cs: new param for ReplaceSelection which determines
1413         whether we select the new selection, or set the cursor to the end
1414         of the new selection.
1415         * TextBoxBase.cs: Use new param for ReplaceSelection.  When
1416         pasting, select the new text.
1417         * RichTextBox.cs: Use new param for ReplaceSelection.
1418
1419 2006-11-27  Jackson Harper  <jackson@ximian.com>
1420
1421         * TextBoxBase.cs: Set the selection to the caret after the caret
1422         is moved, otherwise they get out of sync.
1423
1424 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1425
1426         * ToolBar.cs: Fixe size of ToolBar when AutoSize is false,
1427         it fixes #80015
1428
1429 2006-11-26  Everaldo Canuto  <everaldo@simios.org>
1430
1431         * ThemeWin32Classic.cs: 
1432         - Fix toolbar drop down arrow position.
1433         - Fix drop down appearance when ToolBar.Appearance is normal,
1434         it fixes #80018.
1435         
1436 2006-11-26  Gert Driesen  <drieseng@users.sourceforge.net>
1437
1438         * ProgressBar.cs: GetStyle fixes for 2.0 profile.
1439         * Control.cs: Same.
1440         * UpDownBase.cs: Same.
1441         * ButtonBase.cs: Same.
1442         * ScrollBar.cs: Same.
1443         * TrackBar.cs: Same.
1444         * PictureBox.cs: Same.
1445         * UserControl.cs: Same.
1446         * Label.cs: Same.
1447         * ListControl.cs: Same.
1448         * TextBoxBase.cs: Same.
1449         * ListView.cs: Same.
1450         * RichTextBox.cs: Same.
1451         * TreeView.cs: Same.
1452
1453 2006-11-25  Jordi Mas i Hernandez <jordimash@gmail.com>
1454
1455         * PrintDialog.cs:
1456         - Text label for where 
1457         - Text label comment was not shown
1458
1459 2006-11-23  Everaldo Canuto  <everaldo@simios.org>
1460
1461         * ThemeWin32Classic.cs: Fix toolbar drop down arrow size.
1462
1463 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1464
1465         * InternalWindowManager.cs: 
1466         - Handle WM_PARENTNOTIFY to activate the form
1467         if any child control is clicked.
1468         - The form is only sizable if not minimized.
1469
1470         * MdiWindowManager.cs:
1471         - Save the IconicBounds if the form is moved.
1472         - Rework SetWindowState, now the window bounds 
1473         are stored only if the old window state is Normal.
1474         
1475         * MdiClient.cs:
1476         - In SetWindowStates store the old window state if 
1477         the window is maximized and restore window state if
1478         the window looses focus.
1479         - Don't handle any scrollbar value changes if 
1480         initializing the scroll bars. Fixes #79771.
1481         - Reworked ArrangeIconicWindows. Current algorithm
1482         tests bounds agains all other minimized windows, if
1483         any intersections create new bounds (going left to 
1484         right, bottom to top) and then test again. When 
1485         successful the bounds are saved and never computed
1486         again. Fixes #79774.
1487
1488 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1489
1490         * InternalWindowManager.cs: Added HandleTitleBarUp.
1491
1492 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1493
1494         * NumericUpDown.cs: In .NET 1.1, user entered text is still
1495         hexadecimal in ParseUserEdit.
1496
1497         
1498 2006-11-23  Rolf Bjarne Kvinge  <RKvinge@novell.com> 
1499
1500         * MdiWindowManager.cs: 
1501         - Handle a click on the form's icon to show the 
1502         system menu (when maximized). Fixes #79775.
1503         - Change the existing click handler for the form's
1504         icon when not maximized to show on MouseUp.
1505         Fixes #79776.
1506
1507         * Form.cs: In OnResize only layout the mdi child's
1508         parent if it actually has a parent. Might not if
1509         the window is closing.
1510
1511
1512 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1513
1514         * MdiClient.cs: Ignore active MDI client for text of parent, if
1515         child has no text set.
1516
1517 2006-11-23  Gert Driesen  <drieseng@users.sourceforge.net>
1518
1519         * ToolBar.cs: Fixed ToString to match MS.
1520
1521 2006-11-22  Andreia Gaita  <avidigal@novell.com>
1522
1523         * NumericUpDown: 
1524         - Fix DecimalPlaces, Hexadecimal and ThousandsSeparator to 
1525         update inner values on set. Fixes #79966.
1526         - Override OnLostFocus to update value on NET 2. Fixes #79950.
1527         - Fix hexadecimal parsing.
1528         
1529         * UpDownBase: Override OnGotFocus and OnLostFocus to notify 
1530         parent. Fixes #79957
1531
1532 2006-11-22  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1533
1534         * Control.cs: After calling SetWindowsPos in SetBoundsCore 
1535         the actual size has to be queried, since if height /
1536         width is negative Win32 changes it to 0. 
1537         Fixes #79999 on Windows.
1538         
1539         * XplatUIX11.cs: Set height / width to 0 if negative
1540         in SetWindowPos. Fixes #79999 on Linux.
1541         
1542 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1543
1544         * ThemeWin32Classic.cs: Fix text redenring when button is
1545         pressed.
1546
1547 2006-11-22  Everaldo Canuto  <everaldo@simios.org>
1548
1549         * MenuAPI.cs: Fixes behavior when menu is opened by kerboard
1550         and later navigate by mouse. Fixes #79528.
1551
1552 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1553
1554         * ToolBar.cs: Set default value for TabStop to false in
1555         constructor, it fixes remaining behavior of bug #79863.
1556
1557 2006-11-21  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1558
1559         * MdiWindowManager.cs:
1560         * InternalWindowManager.cs:
1561         - Moved a few methods specific to Mdi from 
1562         InternalWindowManager to MdiWindowManager.
1563         Fixes #79996.
1564         
1565 2006-11-21  Chris Toshok  <toshok@ximian.com>
1566
1567         * XplatUIOSX.cs: stub out InvalidateNC.
1568
1569         * XplatUIWin32.cs: implement InvalidateNC using the call I found
1570         at http://www.dotnet247.com/247reference/msgs/58/292037.aspx.
1571
1572         * XplatUIX11.cs: rename InvalidateWholeWindow to InvalidateNC.
1573
1574         * XplatUIDriver.cs: add InvalidateNC abstract method.
1575
1576         * XplatUI.cs: add InvalidateNC.
1577
1578 2006-11-21  Everaldo Canuto  <everaldo@simios.org>
1579
1580         * ToolBar.cs: Invalidate complete button area when pressed status 
1581         was changed.
1582         * ToolButton.cs: Fix InvalidateBorder for DropDown buttons.
1583         * ThemeWin32Classic.cs: Increase vertical and horizontal position 
1584         by 1 when button is pressed.
1585
1586 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1587
1588         * ToolButton.cs: Invalidate middle of DropDown button when
1589         ToolBar theres DropDownArrows.
1590         * ThemeWin32Classic.cs: Change position of DropDown arrow and
1591         fix DropDown drawing operations.
1592
1593 2006-11-20  Chris Toshok  <toshok@ximian.com>
1594
1595         * NativeWindow.cs: fix the formatting of functions ('{' on the
1596         following line), and enable the thread exception dialog.
1597
1598         * Application.cs: remove the duplicate exception catching from
1599         here.
1600
1601 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1602
1603         * Toolbar.cs: Triggers button click event when click on icon
1604         of dropdown ToolBarButton. Fixes #79912.
1605         
1606 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1607
1608         * Theme.cs:
1609         * ThemeWin32Classic.cs:
1610         - Added a property WindowBorderFont to enable themeing
1611           of mdi child windows' Text.
1612           
1613 2006-11-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1614
1615         * InternalWindowManager.cs:
1616         * Form.cs:
1617         * MdiClient.cs:
1618         * MdiWindowManager.cs: 
1619         - If mdi child is maximized, set mdi parent's
1620           text to "Parent - [Child]". Fixes #79770.
1621         - If there is any maximized mdi child windows, only the active 
1622           window (and any new windows) is maximized, the rest are normal.
1623         - On a WindowState change only save mdi child's window bounds 
1624           if the old window state was normal. Fixes #79774.
1625         - The scroll bars are now calculated on hopefully all
1626           necessary events. Fixed #79771 / #79844->6 / #79906.
1627         - MdiClient.SizeScrollBars() now takes into account docked 
1628           controls in the parent when calculating available space.
1629         - InternalWindowManager now always repaints the entire title
1630           area. Fixes #79844->1/4/5.
1631         - Added RequestNCRecalc on mdi child windowstate changes.
1632           Fixes #79772.
1633
1634 2006-11-20  Mike Kestner  <mkestner@novell.com>
1635
1636         * ComboBox.cs: setup LargeChange on the scrollbar. Invoke FireMouseUp
1637         in the MouseUp handler of the listbox and move the return handling
1638         code to FireMouseUp to avoid scrolling on ups.  Fixes #79952.
1639
1640 2006-11-20  Everaldo Canuto  <everaldo@simios.org>
1641
1642         * Toolbar.cs: Ignore right mouse clicks in toolbar. Fixes #79855. 
1643
1644 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1645
1646         * MimeIcon.cs: Seems that DllImports that were fine in 1.2 are not
1647           working in 1.2.x anymore. So, updated.
1648
1649 2006-11-19  Gert Driesen  <drieseng@users.sourceforge.net>
1650
1651         * NumericUpDown.cs: Use NegativeSign, NumberDecimalSeparator and
1652         NumberGroupSeparator of current culture instead of assuming en-US.
1653         Fixed bug #79967.
1654
1655 2006-11-17  Mike Kestner  <mkestner@novell.com>
1656
1657         * Control.cs: Add the concept of implicit bounds setting so that
1658         dock/undock round trips preserve explicitly set size/locations.
1659         Fixes #79313.
1660
1661 2006-11-17  Alexander Olk  <alex.olk@googlemail.com>
1662
1663         * FileDialog.cs: Trim all filters, otherwise DirInfo.GetFiles
1664           can't handle those filters. (Fixes bug #79961)
1665
1666 2006-11-17  Chris Toshok  <toshok@ximian.com>
1667
1668         [ fixes the exit/crashes associated with #79835.  it's clearly
1669         suboptimal though, we need to figure out a better way to solve
1670         this. ]
1671         
1672         * PrintPreviewControl.cs: deal with the new invalid printer
1673         exceptions.
1674
1675         * PageSetupDialog.cs: if the printer is invalid, pop up a dialog
1676         and return false (so CommonDialog.ShowDialog doesn't actually show
1677         the form.)
1678
1679         * PrintDialog.cs: enable/disable the Ok button depending on
1680         whether or not the printer is valid.
1681
1682         * CommonDialog.cs (ShowDialog): only actually show the form if
1683         RunDialog returns true.
1684
1685 2006-11-17  Jackson Harper  <jackson@ximian.com>
1686
1687         * TextControl.cs: When soft splitting a line, mark it as a soft
1688         split line. Also carry over the current line break to the next
1689         line.
1690
1691 2006-11-17  Chris Toshok  <toshok@ximian.com>
1692
1693         * XplatUIX11.cs: when scrolling a window with an invalid area, we
1694         only want to shift the part of the invalid area that overlaps the
1695         area we're scrolling.  we also don't want to clear the invalid
1696         area unless the invalid area was entirely contained within the
1697         scrolling area.
1698
1699 2006-11-16  Chris Toshok  <toshok@ximian.com>
1700
1701         * XplatUIX11.cs: remove the handling of the TimerEvent stuff, and
1702         also make sure to free the memory returned by XGetWindowProperty
1703         in GetText().
1704
1705         * X11Structs.cs: remove the TimerEvent stuff, it's unused.
1706
1707 2006-11-16  Chris Toshok  <toshok@ximian.com>
1708
1709         * XplatUI.cs: add a new super secret way to get at the totally
1710         unsupported X11 backend.
1711
1712 2006-11-16  Gert Driesen  <drieseng@users.sourceforge.net>
1713
1714         * NumericUpDown.cs: Allow lowercase letters when in hex-mode.
1715
1716 2006-11-16  Jackson Harper  <jackson@ximian.com>
1717
1718         * TreeView.cs: Allow more explicit setting of top node position
1719         for scrollbars. Slower algo, but more accurate.
1720         - CollapseAll should maintain the current top node.
1721         * TextBoxBase.cs: When positioning the caret, use the line, pos
1722         method, since the x, y method does not grab the correct tag, and
1723         the caret height never gets set correctly. (Maybe I should just do
1724         away with the caret having its own height, and always use the
1725         carets current tag for height).
1726
1727 2006-11-16  Jonathan Pobst  <monkey@jpobst.com
1728
1729         [Fixes 79778, 79923]
1730
1731         * XplatUIWin32.cs: Don't allow a parent to be set to IntPtr.Zero.
1732         Parent to the FosterParent instead.
1733
1734 2006-11-16  Jackson Harper  <jackson@ximian.com>
1735
1736         * TreeView.cs: Need to recalc the topnode when we expand or
1737         collapse. The scrolling methods can't handle this on their own,
1738         since they use differences between the last scroll position, and
1739         those difference get completely messed up since we are expanding
1740         nodes.  This problem should probably be fixed in the scrolling
1741         methods, so they can figure out exactly where they are, but this
1742         will slow things down a little.
1743         * ThemeWin32Classic.cs: Special case for groupboxes with empty
1744         strings, makes nunit-gui look a lot nicer.
1745
1746 2006-11-16  Chris Toshok  <toshok@ximian.com>
1747
1748         * XplatUIX11.cs: nasty, nasty, nasty changes required because of
1749         the broken multithreaded event handling we have in here.  File
1750         this entry under "Why we should move to the new X11 backend".
1751
1752         Any thread can make it into UpdateMessageQueue, which gets events
1753         from the X socket - some of which could belong to hwnds being
1754         managed by a different thread.  We can also have multiple threads
1755         in UpdateMessageQueue at the same time, with each one reading from
1756         the X socket.  This leads to many problems, with the following
1757         solutions:
1758
1759         We can't use hwnd.Queue.Enqueue anywhere in here and must use
1760         EnqueueLocked.
1761
1762         The MotionNotify compression we do can't work across threads
1763         (without locking the entire queue, perhaps) since we call
1764         hwnd.Queue.Peek, so we just punt and don't compress motion events
1765         unless the owning thread is the one which got the X event.
1766
1767         ConfigureNotify is another fun one, since it modifies the hwnd's
1768         bounds and then enqueues the event.  We add a lock to Hwnd which
1769         is held when setting configure_pending to true (and enqueuing the
1770         event).
1771
1772         There is a race wrt the wake socket.  we need to make sure that
1773         only 1 thread is waiting on that socket, or else a thread could
1774         sleep waiting for data that never comes.  It's difficult (but not
1775         impossible) to make happen, because it seems to require something
1776         like the following:
1777
1778             1. Thread 1 polls on wake_receive
1779         
1780             2. poll returns saying there's data to be read on
1781                wake_receive.
1782         
1783             3. Thread 2 polls on wake_receive and immediately returns
1784                saying there's data to be read.
1785
1786             4. Thread 2 reads the wakeup byte from wake_receive
1787
1788             5. Thread 1 attempts to read the wakeup byte from
1789                wake_receive.
1790
1791             6. Thread 2 exits (due to a form closing, perhaps).
1792
1793             7. Thread 1 blocks forever.
1794         
1795         Fun, eh?
1796
1797         Fixing the Expose handling isn't done yet, and the races inherent
1798         in that piece of code are responsible for the drawing mistakes you
1799         see when generating expose events in a MT app (like NPlot).  This
1800         one is the likely to be the hardest to bandaid, and it doesn't
1801         appear to cause anything but drawing problems.  The other issues
1802         caused apps to exit or hang.
1803
1804         * XEventQueue.cs: output some spew when Dequeue/Enqueue/Peek are
1805         called from a different thread than the one that should be calling
1806         these functions.
1807
1808         * Hwnd.cs: add some locks to be used by the XplatUIX11 code.
1809
1810 2006-11-15  Chris Toshok  <toshok@ximian.com>
1811
1812         * Application.cs: null out the context's MainForm when we exit
1813         RunLoop.  Fixes a newly checked in unit test as well as the last
1814         ODE from bug #79933.
1815
1816 2006-11-15  Chris Toshok  <toshok@ximian.com>
1817
1818         * Form.cs (set_Owner): allow a null value so we can clear the
1819         form's owner.
1820         (Dispose): set all our owned_form's Owner properties to null, and
1821         clear the owned_forms collection.
1822         (WM_CLOSE): clean up this a little bit.. still not right though.
1823
1824         * ApplicationContext.cs: OnMainFormClosed should only call
1825         ExitThreadCore if the main form isn't recreating.  Fixes unit
1826         test.
1827
1828 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1829
1830         [Fixes 78346]
1831
1832         * ComboBox.cs: Set the Hwnd.no_activate flag for the ComboListBox.
1833
1834 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1835
1836         [Fixes 79433]
1837
1838         * Hwnd.cs: Add a flag to show a window, but not activate it, to 
1839         keep popup window types from stealing focus from the main form
1840         on Windows.
1841
1842         * XPlatUIWin32.cs: Use SW_SHOWNOACTIVATE if above field is true.
1843
1844         * MenuAPI.cs: Set above flag to true.
1845
1846 2006-11-15  Chris Toshok  <toshok@ximian.com>
1847
1848         * XplatUIX11.cs: mimic win32 behavior on BUTTONUP events, where
1849         the button being released is not in wParam.
1850
1851 2006-11-15  Jonathan Pobst  <monkey@jpobst.com>
1852
1853         * Form.cs: Add the released button to MouseEventArgs.Button
1854         for the OnMouseUp call to the MenuTracker.  Fixes menu clicking
1855         on Win32.
1856
1857 2006-11-15  Chris Toshok  <toshok@ximian.com>
1858
1859         * XplatUIX11.cs: add (untested) a _NET_WM_NAME implementation of
1860         GetText().  untested because it's unused in our implementation.
1861         Control.Text always caches the text, even if
1862         ControlStyles.CacheText is not set.
1863
1864         fixes bug #79939.
1865
1866 2006-11-15  Chris Toshok  <toshok@ximian.com>
1867
1868         [ fixes #79933 ]
1869         
1870         * Form.cs: in Close() don't do anything after we send the WM_CLOSE
1871         message.  no hiding, no disposing.
1872
1873         in the WM_CLOSE handler, hide the form if it's modal.
1874
1875 2006-11-15  Chris Toshok  <toshok@ximian.com>
1876
1877         * XplatUIX11.cs: use AddExpose instead of sending a message.
1878         fixes textbox border drawing.
1879
1880 2006-11-15  Chris Toshok  <toshok@ximian.com>
1881
1882         * PropertyGridView.cs: keep from crashing on mouse move/down when
1883         the property grid is empty.
1884
1885 2006-11-14  Jackson Harper  <jackson@ximian.com>
1886
1887         * TextControl.cs: Make PageUp and PageDown more like the MS
1888         versions.
1889         * TextBoxBase.cs: When we set the text property position the
1890         cursor at the beginning of the document.
1891
1892 2006-11-14  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1893
1894         * Form.cs: if a mdi child's WindowState has changed
1895         before it's creation, it would display wrong control
1896         buttons.
1897         
1898 2006-11-14  Alexander Olk  <alex.olk@googlemail.com>
1899
1900         * TreeView.cs: De-uglify TreeView checkbox checkmarks.
1901           (Fixes bug #79927)
1902
1903 2006-11-14  Rolf Bjarne Kvinge <RKvinge@novell.com> 
1904
1905         * XplatUIX11.cs: send a WM_NCPAINT on WM_NCCALCSIZE so that 
1906         the window gets to paint its borders even if the window is
1907         getting smaller.
1908         
1909         * Form.cs: on a WM_NCPAINT invalidate the entire menu, 
1910         otherwise the old control buttons would still be painted 
1911         if the window gets bigger.
1912         
1913         * PaintEventArgs.cs: add an internal method so that the clip 
1914         rectangle can be changed.
1915         
1916 2006-11-13  Chris Toshok  <toshok@ximian.com>
1917
1918         [ fixes bug #79745 ]
1919         
1920         * NotifyIcon.cs: lots of cleanup.
1921
1922         * X11Structs.cs: add an enum for XEMBED messages.
1923
1924         * XplatUIX11.cs: reindent one of the giant switch statements, it
1925         was taking up an additional tab stop, and this file is already way
1926         too wide for my laptop's screen.
1927
1928         Also, add handling for the XEmbed EMBEDDED_NOTIFY message.  When
1929         we get it, resize the hwnd to the WMNormalHints max_width/height.
1930
1931 2006-11-13  Jackson Harper  <jackson@ximian.com>
1932
1933         * TextBoxBase.cs: Compute the value changes for the mouse wheel
1934         teh simple way.
1935
1936 2006-11-13  Chris Toshok  <toshok@ximian.com>
1937
1938         * XplatUIX11.cs, XplatUIStructs.cs: kind of a gross fix for
1939         #79898.  force a reference to the Region to stick around so the
1940         unmanaged object isn't collected (rendering our handle in the MSG
1941         stale).
1942
1943 2006-11-13  Chris Toshok  <toshok@ximian.com>
1944
1945         * XplatUIX11.cs: fix #79917 for window managers which support
1946
1947         using XStoreName on the raw utf8, and we need to convert to
1948         COMPOUND_TEXT if it's non-latin1.
1949
1950 2006-11-13  Chris Toshok  <toshok@ximian.com>
1951
1952         * Form.cs (set_DialogResult): we need to set closing to false if
1953         we're setting our result to None.  fixes bug #79908.
1954
1955 2006-11-13  Jackson Harper  <jackson@ximian.com>
1956
1957         * TextControl.cs: When formatting text, compute the adjusted tag
1958         lengths correctly, using FindTag for the end tag instead of trying
1959         to figure it out outselves.
1960         * TreeNode.cs: Use ActualItemHeight, which is the actual height of
1961         the item, ItemHeight doesn't work, because trees with large
1962         imagelists use those for their height
1963         * TreeView.cs: ActualItemHeight factors in the image height
1964         - compute left edge of checkboxes correctly
1965         - when expanding/collapsing move the bottom down one pixel, so we
1966         aren't moving part of the node
1967
1968 2006-11-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
1969
1970         * XplatUIX11.cs: The PaintEventArgs is also added to the drawing
1971         stack in PaintEventStart so that it won't get disposed by the gc
1972         before reaching PaintEventEnd.
1973
1974 2006-11-13  Jackson Harper  <jackson@ximian.com>
1975
1976         * TextBoxBase.cs: Don't select the word if we are on a line with
1977         no text.
1978         - We don't need to position the caret on mouse up, since the mouse
1979         move handler should be doing this
1980         - When double clicking a blank line, the caret is advanced to the
1981         next line.
1982
1983 2006-11-13  Gert Driesen  <drieseng@users.sourceforge.net>
1984
1985         * TreeNodeCollection.cs: Avoid duplicating indexer code.
1986
1987 2006-11-12  Gert Driesen  <drieseng@users.sourceforge.net>
1988
1989         * ColorDialog.cs: Reset size of dialog between calls to ShowDialog.
1990         Fixes part of bug #79910.
1991
1992 2006-11-11  Alexander Olk  <alex.olk@googlemail.com>
1993
1994         * ColorDialog.cs: Fix a NRE when adding a color to custom colors
1995           (bug #79903). Some minor string updates to match ms.
1996
1997 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
1998
1999         * FileDialog.cs: Don't add an extension if the filename
2000           already ends with that extension.
2001
2002 2006-11-10  Jackson Harper  <jackson@ximian.com>
2003
2004         * TreeView.cs: Use the currently highlighted node for the
2005         BeforeSelect event.
2006         * TextBoxBase.cs: There is no need to expand selection on
2007         MouseMove.
2008         - CanUndo means 'is there any undo operations', not 'is undo
2009         allowed on this textcontrol. Fixed ClearUndo unit test.
2010
2011 2006-11-10  Andreia Gaita  <shana.ufie@gmail.com>
2012
2013         * Button.cs: only perform click when button is Selectable (so as 
2014         not to activate default buttons when they're disabled)
2015         
2016         * Control.cs: Rewrite of the SelectNextControl and related 
2017         methods. HandleClick now selects next control if the current one
2018         is being disabled.
2019         
2020         * Form.cs: OnActivated selects next active control only if Load 
2021         has already occurred. If Load hasn't run, there's no point in 
2022         selecting here, Load might change the state of controls.
2023         
2024         * FocusTest.cs: Tests marked as working again for these fixes
2025
2026 2006-11-10  Chris Toshok  <toshok@ximian.com>
2027
2028         * XplatUIX11.cs: a couple of fixes.
2029
2030         - use XInternAtoms with almost all the atoms we need to register,
2031         instead of many, many calls to XInternAtom.  should help a bit on
2032         startup time, at the expense of making the code look a little
2033         worse.
2034
2035         - fall back to setting TransientFor on TOOLWINDOW's if their hwnd
2036         isn't reparented (which seems to be a clue that we're running fon
2037         compiz) and they have an Owner form.  This fixes the tool windows
2038         in paint.net when running under compiz.
2039
2040         - when setting the opacity of a window, support both the case
2041         where the window has been reparented and also when it hasn't been.
2042         Since compiz/beryl doesn't seem to reparent windows, and these are
2043         the only window managers which support translucency, I'm not sure
2044         why we need the hwnd.reparented case at all.. but leave it in.
2045         now we get translucent windows in paint.net under compiz/beryl.
2046
2047 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2048
2049         * FileDialog.cs: Always return the value for FilterIndex that
2050           was set. Internally convert it to values that make sense.
2051
2052 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2053         
2054         * ThemeWin32Classic.cs: Fix drowp down arrow borders.
2055
2056 2006-11-10  Everaldo Canuto  <everaldo@simios.org>
2057
2058         * Toolbar.cs: Change default value of DropDownArrows to true, the 
2059         signature still using false to make it compatible with MS but the 
2060         initial value is true. Fixes #79855.
2061
2062 2006-11-10  Alexander Olk  <alex.olk@googlemail.com>
2063
2064         * MimeIcon.cs: Don't throw an exception on windows. Mime stuff is
2065           only available on Linux.
2066
2067 2006-11-09  Everaldo Canuto  <everaldo@simios.org>
2068
2069         * Toolbar.cs, ToolBarButton.cs: Fix wrong separator size and
2070         reduce number of calls to redraw method during toolbar creation.
2071
2072 2006-11-09  Mike Kestner  <mkestner@novell.com>
2073
2074         * ListView.cs : raise SelectedIndexChanged when an item is selected
2075         programmatically via the Item.Selected property.  Gert's nice 
2076         ListViewSelectedIndexChanged test fixture now runs clean.
2077
2078 2006-11-09  Mike Kestner  <mkestner@novell.com>
2079
2080         * ListView.cs : raise SelectedIndexChanged when a selected item is
2081         removed from the item collection using Remove or RemoveAt.
2082
2083 2006-11-09  Mike Kestner  <mkestner@novell.com>
2084
2085         * ListView.cs : raise SelectedIndexChanged once per selected item
2086         for compat with MS.  Fixes #79849+.
2087
2088 2006-11-09  Chris Toshok  <toshok@ximian.com>
2089
2090         * TabControl.cs: initialize row_count to 0, and set it to 1 when
2091         we need to (if we have any tab pages).  Fixes unit test.
2092
2093 2006-11-09  Chris Toshok  <toshok@ximian.com>
2094
2095         * Label.cs (CalcPreferredWidth): if Text == "", our preferred
2096         width is 0, not 3.  Fixes a unit test.
2097
2098 2006-11-09  Mike Kestner  <mkestner@novell.com>
2099
2100         * ListView.cs : use Implicit scrollbars so that focus isn't 
2101         stolen from the listview when they are clicked. Fixes #79850.
2102
2103 2006-11-09  Chris Toshok  <toshok@ximian.com>
2104
2105         * PropertyGridView.cs (OnPaint): only call DrawGridItems if we
2106         have a root item.  Fixes #79879.
2107
2108 2006-11-09  Alexander Olk  <alex.olk@googlemail.com>
2109
2110         * FileDialog.cs:
2111           - Fix ToString ()
2112           - An ArgumentException is now thrown if a wrong filter
2113             is applied (matches ms). The previous filter doesn't change
2114             anymore if an exception is thrown.
2115           - Changing the FileName property also affects FileNames
2116         * ColorDialog.cs: The length of the CustomColors array is always
2117           16. It doesn't matter if we use a smaller array or null to update
2118           or change the custom colors property.
2119         * FolderBrowserDialog.cs: Throw an InvalidEnumArgumentException if
2120           for RootFolder if we get a undefined value.
2121
2122 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2123
2124         * StatusBarPanel.cs: 
2125         - Width is set to MinWidth if Width is smaller than
2126         MinWidth. Fixes #79842.
2127         - MinWidth now always overrides Width (MSDN says MinWidth
2128         is set to Width when AutoSize = None, but they do not 
2129         behave like that).
2130         - Style has now the the correct default value.
2131         
2132 2006-11-09  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2133  
2134         * TrackBar.cs: 
2135         - The control is completely invalidated on 
2136         Got/LostFocus to draw the focus rectangle correctly.
2137         - When AutoSize then height is always 45 (width for 
2138         vertical controls).
2139         
2140         * ThemeWin32Classic.cs: The TrackBar thumb is now centered
2141         on the mouse when moved and it doesn't move when grabbed
2142         until the mouse moves as well. Also fixed some wrong 
2143         calculations when clicking on the thumb (control thought
2144         click was outside of thumb and didn't grab it).
2145         Fixes some of the issues in #79718.
2146
2147 2006-11-08  Everaldo Canuto  <everaldo@simios.org>
2148
2149         * Toolbar.cs: Prevent disabled button to highlight. Fixes #79868.
2150
2151 2006-11-08  Chris Toshok  <toshok@ximian.com>
2152
2153         * PropertyGridView.cs: only call ToggleValue if the item is not
2154         readonly.
2155
2156 2006-11-08  Jackson Harper  <jackson@ximian.com>
2157
2158         * TextBoxBase.cs: The RichTextBox and textbox have very different
2159         word selection methods.  Implement the textbox's simple word
2160         selection here, and let the RichTextBox override and provide it's
2161         own.
2162         - Don't do extra selection on mouseup
2163         * RichTextBox.cs: Use the documents word selection algorithm, I
2164         think ideally, this function will be pulled into the
2165         RichTextBox.cs code someday.
2166
2167 2006-11-08  Chris Toshok  <toshok@ximian.com>
2168
2169         * RootGridEntry.cs: new class to represent GridItemType.Root.
2170
2171         * CategoryGridEntry.cs: reformat, and add boilerplate.
2172         
2173         * GridEntry.cs: remove the UIParent stuff - turns out .Parent
2174         returns the UI parent anyway, and we need special handling to
2175         implement the GetTarget method in the face of it.  Also, implement
2176         Select().
2177
2178         * PropertyGrid.cs, PropertyGridView.cs: a number of fixes.  create
2179         a root grid item, and use that instead of PropertyGrid.grid_items.
2180         Also, make use of TypeConverters (and add limitted support for
2181         ICustomTypeDescriptors) when initially populating the grid.
2182         Arrays now show up more or less properly.
2183
2184 2006-11-08  Chris Toshok  <toshok@ximian.com>
2185
2186         * Application.cs: set the modal dialog to non modal after we close
2187         it.  Fixes bug #79866.
2188
2189 2006-11-08  Jackson Harper  <jackson@ximian.com>
2190
2191         * TextControl.cs: When combining lines carry over the line end
2192         style from the end line.
2193         - Invalidate the selected area when setting it, if it is visible.
2194         * TextBoxBase.cs: Only rich text box can do full line selects.
2195         - Make sure to set the cursor position when there is a click,
2196         otherwise two clicks in separate areas could cause a large chunk
2197         to be selected.
2198
2199 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2200
2201         * Toolbar.cs: Release flat button borders when Toolbar lost focus. 
2202         Fixes #79863.
2203
2204 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2205
2206         * Toolbar.cs: Prevent toolbar to open more than one tooltip at same
2207         time. Remove tooltips when ToolButton click events.  Fixes #79856.
2208
2209 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2210
2211         * MenuAPI.cs: Ignore right click for menu actions and fixes
2212         menu border when clicked.  Fixes #79846.
2213
2214 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2215
2216         * XplatUIX11.cs, XplatUIX11.cs: Fix MouseRelease to only release
2217         MouseState after create wParam for message, this fixes mouse button 
2218         equal none in mouse up events.
2219         
2220 2006-11-07  Andreia Gaita  <shana.ufie@gmail.com>
2221
2222         * Control.cs : Focus() now calls Select to set the Container's
2223         Active Control and to give it focus. To avoid infinite recursion
2224         (because ActiveControl also calls Focus at one point), a check 
2225         is made in Focus with the help of a new internal variable
2226         is_focusing.
2227
2228 2006-11-07  Mike Kestner  <mkestner@novell.com>
2229
2230         * ListView.cs : raise OnSelectedIndexChanged in CreateHandle
2231         if there's a selection.  Fixes #79849.
2232
2233 2006-11-07  Gert Driesen  <drieseng@users.sourceforge.net>
2234
2235         * PropertyGrid.cs: Avoid fixed height of help description label.
2236         Fixes part of bug #79829.
2237
2238 2006-11-07  Chris Toshok  <toshok@ximian.com>
2239
2240         * XplatUIX11.cs: fix #79790 again, by using the
2241         _NET_WM_STATE_SKIP_TASKBAR atom to implement Form.ShowInTaskbar.
2242
2243 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2244
2245         * ToolBar.cs: Fix left click checking.
2246
2247 2006-11-07  Chris Toshok  <toshok@ximian.com>
2248
2249         * ProgressBar.cs: fix a typo in ToString().  fixes a unit test.
2250
2251 2006-11-07  Chris Toshok  <toshok@ximian.com>
2252
2253         * RelatedPropertyManager.cs: set property_name in our ctor.  fixes
2254         PropertyManager unit tests.
2255
2256         * PropertyManager.cs: make property_name internal.
2257
2258 2006-11-07  Chris Toshok  <toshok@ximian.com>
2259
2260         * ButtonBase.cs: initialize base.ime_mode to ImeMode.Disable to
2261         pass a unit test.  Also, don't set image_index to anything in
2262         response to setting the ImageList property.
2263
2264 2006-11-07  Everaldo Canuto  <everaldo@simios.org>
2265
2266         * ToolBar.cs: Ignore click events when mouse button is not a
2267         left button, only accepts other button for dropdown menus.  
2268         Fixes #79854.
2269
2270 2006-11-07  Chris Toshok  <toshok@ximian.com>
2271
2272         * DataGrid.cs: make the back and parent row buttons a little less
2273         ugly.
2274
2275 2006-11-07  Jackson Harper  <jackson@ximian.com>
2276
2277         * TextBoxBase.cs: When converting to Text don't put line breaks in
2278         for soft line breaks.
2279         * TextControl.cs: There is an initial "fake" line in the document,
2280         this is now a soft break line, so that an extra line feed doesn't
2281         get added to the end of documents.
2282
2283 2006-11-07  Chris Toshok  <toshok@ximian.com>
2284
2285         [ fix bug #79778 ]
2286         
2287         * CurrencyManager.cs: if the list is readonly, don't bother
2288         checking if IBindingList.AllowNew is true.
2289
2290         * ThemeWin32Classic.cs (DataGridPaintParentRow): make this work
2291         for non-DataRowView datasources..  or rather, make it not crash.
2292         (DataGridPaintRelationRow): make sure we limit the row painting to
2293         the area not covered by the row header, and make our cell width at
2294         least large enough to cover the relation area.  This allows grids
2295         that have relations but no rows to render correctly.
2296         (DataGridPaintRowContents): same type of changes here.
2297         (SetDataSource): move back to always calling
2298         CalcAreasAndInvalidate.  this fixes a crash/drawing problem when
2299         navigating back through relations.
2300         (HitTest): handle the case where we have no cells but have
2301         relations.  Right now we generate a hit in cell 0 of whatever the
2302         row is, not sure if this is strictly correct, but it works for our
2303         purposes.
2304         
2305         * DataGrid.cs (EndEdit, CancelEdit): if we have no columns, don't
2306         bother doing anything.
2307
2308 2006-11-07  Jonathan Pobst  <monkey@jpobst.com>
2309
2310         * StatusStrip.cs, ToolStripStatusLabel.cs: By request, an
2311         early version of StatusStrip.  Not responsible for eaten
2312         application or firstborn children.
2313
2314 2006-11-06  Chris Toshok  <toshok@ximian.com>
2315
2316         * TabControl.cs: in OnGotFocusInternal/OnLostFocusInternal don't
2317         call GetTabRect with a -1 index.  Fixes #79847.
2318
2319 2006-11-06  Jackson Harper  <jackson@ximian.com>
2320
2321         * TreeNodeCollection.cs: Update scrollbars after clearing.
2322
2323 2006-11-06  Chris Toshok  <toshok@ximian.com>
2324
2325         * NumericUpDown.cs: fix the ToString method for some unit test
2326         love.
2327
2328 2006-11-06  Chris Toshok  <toshok@ximian.com>
2329
2330         * PropertyGrid.cs:
2331         - set the initial SelectedGridItem if we can.
2332
2333         - Exclude non-mergable properties only if we're merging > 1
2334         object.  Merging 1 object isn't really merging, obviously.
2335
2336         - Handle PropertySort.NoSort just like Alphabetical, which is
2337         wrong of course, but at least gets things on the screen.
2338         
2339         * PropertyGridView.cs:
2340         - Add method "FindFirstItem" which finds the first property grid
2341         item, so we can select it by default.
2342
2343         - make use of GridEntry.CanResetValue.
2344
2345         - Don't call RedrawBelowItemOnExpansion here anymore, the
2346         individual GridEntry's will do that.
2347
2348         - Remove the ITypeDescriptorContextImpl internal class.
2349         
2350         * GridEntry.cs:
2351         - this class needs to implement ITypeDescriptorContext, as it's
2352         what MS's PropertyDescriptorGridEntry does, which means we can
2353         remove the ITypeDescriptorContextImpl internal class from
2354         PropertyGrid.cs.  This fixes the crashing portion of bug #79829.
2355
2356         - keep a reference to our PropertyGridView, and move the call to
2357         RedrawBelowItemOnExpansion here from PGV.  This means
2358         programmaticly setting Expanded actually does something visible.
2359
2360         - add a CanResetValue() function which takes into account our
2361         possibly multiple "selected_objects" in the merged case.  Shifting
2362         PropertyGridView to use this method fixes another unreported
2363         crasher found running the test for #79829.
2364
2365         - when Top or Bounds is updated, make sure the PropertyGridTextBox
2366         is updated to reflect this.
2367
2368         * CategoryGridEntry.cs: the ctor takes the PGV now.
2369         
2370 2006-11-06  Jackson Harper  <jackson@ximian.com>
2371
2372         * TextControl.cs: These are 1 based.
2373         * TextBoxBase.cs: When setting the selected text, don't change the
2374         selected text tags, this is done by ReplaceText, just position the
2375         cursor at the end of the new text.
2376
2377 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2378
2379         * ListView.cs: Allow label edit only when, when LabelEdit is
2380           set to true.
2381
2382 2006-11-06  Jackson Harper  <jackson@ximian.com>
2383
2384         * TextControl.cs: If a suitable wrapping position isn't found,
2385         just wrap right in the middle of a word.
2386
2387 2006-11-06  Alexander Olk  <alex.olk@googlemail.com>
2388
2389         * ListView.cs, ListViewItem.cs: Implement LabelEdit. Fixes
2390           bug #79820.
2391
2392 2006-11-06  Jackson Harper  <jackson@ximian.com>
2393
2394         * TreeView.cs: Can't use the VisibleCount property when setting
2395         scrollbar heights, because this doesn't take into account whether
2396         or not the horz scrollbar just came visible.
2397
2398 2006-11-05  Everaldo Canuto  <everaldo@simios.org>
2399
2400         * MenuAPI.cs: Deactivate menu on mouse up when menus it is already
2401         activated.  Fixes #79369, #79832.
2402
2403 2006-11-05  Alexander Olk  <alex.olk@googlemail.com>
2404
2405         * FileDialog.cs: *sigh* Because of recent runtime changes (r67043) I
2406           had to remove support for links that point to a directory. FileInfo
2407           returns no usefull information (means, the directory they point to)
2408           for such links. Replaced some empty string ("") with String.Empty.
2409
2410 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2411
2412         * TreeNodeCollection.cs: To match MS, in 1.0 profile throw 
2413         NullReferenceException when attempting to remove node that is not in
2414         collection. Throw NullReferenceException when null is passed to 
2415         Remove. Allow first element of the collection to be removed. Fixes
2416         bug #79831.  In GetEnumerator ().Current return null if positioned 
2417         before the first element of the collection. In GetEnumerator ().Reset,
2418         position before first element of the collection.
2419
2420 2006-11-04  Gert Driesen  <drieseng@users.sourceforge.net>
2421
2422         * PropertyGrid.cs: To match MS, remove default title and description
2423         for panel. Fixed tooltips for Categorized and Alphabetic toolbar
2424         buttons.
2425
2426 2006-11-04  Chris Toshok  <toshok@ximian.com>
2427
2428         * Theme.cs: add a Clamp method, just for kicks.
2429
2430         * ThemeWin32Classic.cs: clamp all color components to [0..255].
2431
2432 2006-11-04  Chris Toshok  <toshok@ximian.com>
2433
2434         * Form.cs: if the form isn't visible, Close() does nothing.
2435
2436 2006-11-03  Chris Toshok  <toshok@ximian.com>
2437
2438         * Form.cs (Close): if the form is modal, don't Dispose of it, only
2439         Hide it.
2440         (WndProc): don't Dispose after handling the WM_CLOSE message.
2441
2442         * Application.cs (RunLoop): toplevels is a list of Forms, so treat
2443         them as such, instead of using casts from Control to Form.  Also,
2444         don't Dispose of the modal dialog when we fall out of the loop -
2445         Close() it instead.
2446
2447         fixes bug #79813.
2448
2449 2006-11-03  Chris Toshok  <toshok@ximian.com>
2450
2451         * Control.cs (Dispose): only go through the dispose thing if we're
2452         @disposing, and we haven't already been disposed.  Fixes bug
2453         #79814.
2454
2455         * Form.cs: no reason to call "base.Dispose()" here instead of
2456         "Dispose()".
2457
2458 2006-11-03  Mike Kestner  <mkestner@novell.com>
2459
2460         * ComboBox.cs : use ToString instead of casts in AddItem for
2461         sorting functionality.  Fixes #79812.
2462
2463 2006-11-03  Chris Toshok  <toshok@ximian.com>
2464
2465         * Application.cs: pave the way for actually using the thread
2466         exception dialog.  it's ifdefed out at the moment.
2467
2468 2006-11-03  Chris Toshok  <toshok@ximian.com>
2469
2470         * ThreadExceptionDialog.cs: until we get a better layout, actually
2471         hide the details textbox and label when we shouldn't see them.
2472
2473 2006-11-03  Jackson Harper  <jackson@ximian.com>
2474
2475         * TextBoxBase.cs: Don't bail from the scrollbar calcs for non
2476         multiline textboxes anymore.  This method also determines the
2477         width/height of a textboxes canvas area.
2478         - Sorta a revert of the last patch.  For multiline just position
2479         the controls, then bail.  This way the scrollbar width won't be
2480         altered.
2481
2482 2006-11-03  Everaldo Canuto  <everaldo@simios.org>
2483
2484         * ThemeWin32Classic.cs: Dont paint inner lines of 3D border when
2485         it dont need.  Fixes #79537.
2486
2487 2006-11-02  Jackson Harper  <jackson@ximian.com>
2488
2489         * X11Dnd.cs: We always allow copy, since XDND implies Copy.  Also
2490         send the status after firing the DndOver event.
2491
2492 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2493
2494         * TrackBar.cs: Now orientation only switches height / width if
2495         the control's handle is created (Win32 does it like this). Also 
2496         fixed a typo in ToString() for a test to pass, changed the 
2497         exception thrown in set_LargeChange and set_SmallChange to 
2498         match Win32 behaviour, and added TrackBar tests to the unit 
2499         tests.
2500
2501 2006-11-02  Chris Toshok  <toshok@ximian.com>
2502
2503         * XplatUIX11.cs: the atom we want is _NET_WM_STATE_SKIP_TASKBAR,
2504         not _NET_WM_STATE_NO_TASKBAR.
2505
2506 2006-11-02  Jackson Harper  <jackson@ximian.com>
2507
2508         * TextControl.cs: Increment count by one, since in the update view
2509         count - 1 is used.
2510
2511 2006-11-02  Jackson Harper  <jackson@ximian.com>
2512
2513         * TextBoxBase.cs: Use client rectangle not bounds for checking if
2514         the mouse is in the client rectangle (duh).
2515
2516 2006-11-02  Rolf Bjarne Kvinge  <RKvinge@novell.com>
2517         
2518         * TrackBar.cs: Fixed trackbar jumping around when clicking
2519         on it - the trackbar was not detecting correctly at which
2520         side of the thumb the click was done. (fixes #79718)
2521
2522 2006-11-02  Everaldo Canuto  <everaldo@simios.org>
2523
2524         * ListBox.cs: scroll visible area when change SelectedIndex to
2525         a non visible area.  Fixes #79481.
2526
2527 2006-11-01  Jackson Harper  <jackson@ximian.com>
2528
2529         * TextControl.cs: When replacing the selection move the selection
2530         start/end/anchor to the end of the new text.
2531
2532 2006-11-01  Jackson Harper  <jackson@ximian.com>
2533
2534         * XplatUIWin32.cs: When setting the parent change the controls
2535         visibility to it's visibility flag, not to it's old parents
2536         visibility (.Visible walks the parent chain).
2537
2538 2006-11-01  Chris Toshok  <toshok@ximian.com>
2539
2540         * XplatUIX11.cs: revert the #79790 fix, as the simple.
2541         XSetTransientForHint fix breaks paint .net's tool windows.  more
2542         work needed for that one.
2543
2544 2006-11-01  Chris Toshok  <toshok@ximian.com>
2545
2546         * ScrollBar.cs: throw ArgumentException instead of Exception in
2547         LargeChange/SmallChange setters.  fixes unit tests.
2548
2549 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2550
2551         * ContainerControl.cs: reverted rev.67183 (which was itself
2552         a reversion of rev.66853... eh).
2553         
2554         * Control.cs: Fixes Reflector hang by changing Focus() call
2555         to what it was before rev.66643 (calling Select() here sets 
2556         ActiveControl, which in some situations calls back Focus and 
2557         eventually does a stack overflow). Temp fix.    
2558         Changes to GetNextControl() to not look for children to select when
2559         parent cannot be selectable (so it looks for siblings instead)  
2560         
2561 2006-10-31  Mike Kestner  <mkestner@novell.com>
2562
2563         * CheckedListBox.cs : off by one error in returned index from
2564         ObjectCollection.Add.  Fixes #79758.
2565
2566 2006-10-31  Chris Toshok  <toshok@ximian.com>
2567
2568         * UpDownBase.cs: remove the OnGotFocusInternal/OnLostFocusInternal
2569         calls for the textbox/spinner, to keep from recursing to the point
2570         where we crash.  Fixes #79760.
2571
2572 2006-10-31  Chris Toshok  <toshok@ximian.com>
2573
2574         * ListControl.cs (set_SelectedValue): don't throw exceptions on
2575         null/"" value, just return.  matches ms's behavior and fixes some
2576         failing tests.
2577
2578 2006-10-31  Chris Toshok  <toshok@ximian.com>
2579
2580         * Control.cs (set_Capture): make a logic a little easier to
2581         follow.
2582
2583         * XplatUIX11.cs (CleanupCachedWindows): zero out the Grab window
2584         if it's being destroyed.  A necessary fix surely, but a bandaid
2585         also, to fix the stuck capture problem in bug #78413.
2586
2587 2006-10-31  Chris Toshok  <toshok@ximian.com>
2588
2589         * XplatUIX11.cs: fix a couple of compiler warnings, and follow the
2590         convention of clearing hwnd.ClientRect when we set the
2591         width/height (so it'll be recalculated by Hwnd).
2592
2593 2006-10-31      Andreia Gaita <shana.ufie@gmail.com>
2594
2595         * ContainerControl.cs: reversed Contains check from
2596         ActiveControl due to hanging problems. This fix
2597         partly regresses #79667 (button does not have
2598         initial focus), so this might be a symptom for 
2599         a larger parenting problem (set_ActiveControl
2600         is being called but the child control does
2601         not have the parent set yet?)   
2602         
2603 2006-10-31  Mike Kestner  <mkestner@novell.com>
2604
2605         * MenuAPI.cs : fix keynav when menu is click activated.
2606
2607 2006-10-31  Jonathan Pobst  <monkey@jpobst.com>
2608
2609         * ToolStrip*: Version 0.2.
2610
2611         * MenuStrip.cs: Version 0.1.
2612
2613         * Form.cs: Add a 2.0 MenuStrip tracker like the 1.1 Menu one.
2614
2615 2006-10-30  Chris Toshok  <toshok@ximian.com>
2616
2617         [ fixes the oversized notify icon issue in bug #79745 ]
2618         
2619         * NotifyIcon.cs: scale the icon down to the size we're given by
2620         the XplatUI layer (this would be faster if we did it once instead
2621         of whenever we paint..)  Also, remove the WM_NCPAINT handling,
2622         since it's never invoked.
2623
2624         * XplatUIX11.cs: the gnome and kde systrays use icons that are 24
2625         pixels high by default, so let's hardcode our systray icon to that
2626         size.  The SYSTEM_TRAY protocol should really have a way for
2627         client apps to query for the correct icon size.. but oh well.  A
2628         couple of patches to deal with the screwy client_window ==
2629         whole_window notifyicon stuff (we don't want to PerformNCCalc, for
2630         instance, and also make sure we don't XSelectInput twice).
2631
2632 2006-10-30  Chris Toshok  <toshok@ximian.com>
2633
2634         * Control.cs: ugh, the unit test fix (CH11, yesterday) breaks when
2635         recreating forms.  Control recreation is the bane of my existence.
2636         Fix it in a way that keeps everyone happy.
2637
2638 2006-10-30  Chris Toshok  <toshok@ximian.com>
2639
2640         * XplatUIX11.cs: use StructureNotifyMask on all whole_windows, not
2641         just non-CHILD ones.  otherwise sometimes scrollbars end up with
2642         client_windows not being resized to the proper size (ReportBuilder
2643         shows this extremely well).
2644
2645 2006-10-30  Chris Toshok  <toshok@ximian.com>
2646
2647         * XplatUIX11.cs (SetWMStyles): reinstate the XSetTransientForHint
2648         for non-WS_EX_APPWINDOW windows.  This is what keeps them from
2649         showing up in the gnome taskbar.  Fixes bug #79790.
2650
2651 2006-10-30  Chris Toshok  <toshok@ximian.com>
2652
2653         * ApplicationContext.cs: guard against a NRE.
2654
2655         * Application.cs: null out the old MainForm for the context, so we
2656         don't try to use it again once it's disposed.  Fixes bug #79783.
2657
2658 2006-10-30  Chris Toshok  <toshok@ximian.com>
2659
2660         * DataGrid.cs (set_DataSource, set_DataMember): if we have a
2661         BindingContext, set the data source directly, otherwise do the
2662         lazy approach - the actual ListManager will be created when we get
2663         a BindingContext. Fixes bug #79700.
2664
2665 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2666
2667         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
2668           XplatUIX11.cs: Remove old 2 parameter SetVisible.
2669
2670         * Control.cs: Use the new 3 parameter SetVisible with activate = true.
2671
2672 2006-10-30  Jonathan Pobst  <monkey@jpobst.com>
2673
2674         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Add an overload
2675         of SetVisible that allows a window to be shown, but not activated.
2676         This is needed on Windows for MenuStrip, and can probably be used
2677         with MainMenu and ComboBox to fix the focus stealing issues on
2678         Windows.
2679
2680         * XplatUIOSX.cs, XplatUIX11.cs: Not needed, call existing SetVisible.
2681
2682 2006-10-30  Alexander Olk  <alex.olk@googlemail.com>
2683
2684         * PictureBox.cs: Fix the output of the ToString method.
2685
2686 2006-10-29  Chris Toshok  <toshok@ximian.com>
2687
2688         * Control.cs (get_TopLevelControl): fix bug #79781.
2689
2690 2006-10-29  Chris Toshok  <toshok@ximian.com>
2691
2692         * ListControl.cs (set_DataSource): throw Exception here, not
2693         ArgumentException, to match MS behavior.
2694
2695 2006-10-29  Chris Toshok  <toshok@ximian.com>
2696
2697         * Form.cs: remove the try-catch's around calls to GetWindowState.
2698         We can just check the return value.
2699
2700         * XplatUIX11.cs: don't throw exceptions from GetWindowState.
2701         Instead return -1.
2702
2703         * XplatUI.cs: Add note about additional return value for
2704         GetWindowState.
2705
2706 2006-10-29  Chris Toshok  <toshok@ximian.com>
2707
2708         * Control.cs (CreateHandle): when we create our handle, we also
2709         create the handles of our child controls.  Fixes one of the
2710         Control unit tests (CH11).
2711
2712 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2713
2714         * MimeIcon.cs: If a gnome icon doesn't exist add a default icon.
2715
2716 2006-10-28  Alexander Olk  <alex.olk@googlemail.com>
2717
2718         * ThemeClearlooks.cs: A little speedup.
2719
2720 2006-10-27  Chris Toshok  <toshok@ximian.com>
2721
2722         * Control.cs: implement Control.FromChildHandle in a way that
2723         matches the docs (and fixes the failed test.)
2724
2725 2006-10-27  Chris Toshok  <toshok@ximian.com>
2726
2727         * DataGridTableStyle.cs: reproduce buggy MS behavior (with
2728         comments).
2729
2730         * DataGrid.cs: implement ResetForeColor such that the tests
2731         succeed.
2732         
2733 2006-10-27  Chris Toshok  <toshok@ximian.com>
2734
2735         * ToolBarButton.cs: setting text/tooltiptext to null results in it
2736         being set to "".  Fixes bug #79759.
2737
2738 2006-10-27  Jackson Harper  <jackson@ximian.com>
2739
2740         * TextControl.cs: We need to clear the entire selection area when
2741         setting the start, otherwise multiline selections are still
2742         visible.
2743
2744 2006-10-26  Chris Toshok  <toshok@ximian.com>
2745
2746         * PropertyGridView.cs: 
2747
2748         - ifdef all the code specific to the double
2749         buffer case, and provide some alternatives in the non-doublebuffer
2750         code, which makes heavy use of XplatUI.ScrollWindow to move things
2751         around without having to invalidate (and cause flicker).  There
2752         are still some drawing problems in the non-doublebuffered case, so
2753         DOUBLEBUFFER is defined by default.
2754
2755         - Fix the way dropdowns are handled.  now we explicitly watch for
2756         the events which might cause the dropdown to close, and break out
2757         of the nested event loop there.  This gets rid of all Capture
2758         code, at the expense of the Msg special casing.  Seems to work,
2759         though, and fixes bug #79743.
2760
2761 2006-10-27  Rolf Bjarne Kvinge <RKvinge@novell.com>
2762         * Control.cs: SetIsRecreating now recreates implicitly added
2763         child controls as well. Finally fixes #79629. The flag passed to 
2764         SetIsRecreating has also been removed since it wasn't used.
2765         
2766 2006-10-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
2767
2768         * PageSetupDialog.cs: Clean some code, fix some bits, 
2769         add some checks, and add a printer sub-dialog.
2770
2771 2006-10-26  Chris Toshok  <toshok@ximian.com>
2772
2773         * PropertyGrid.cs: make set_SelectedObject call
2774         set_SelectedObjects, and move the duplicate logic to the
2775         SelectedObjects setter.  Also, raise SelectedObjectsChanged.
2776
2777         * PropertyGridView.cs: hide the textbox when we get a
2778         SelectedObjectsChanged event.
2779
2780         Fixes bug #79748.
2781
2782 2006-10-26  Chris Toshok  <toshok@ximian.com>
2783
2784         * PropertyGridView.cs: deal with the type converter not supporting
2785         GetStandardValues() or GetStandardValues() returning null, which
2786         is does in the default case.  Fixes #79742.
2787
2788 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2789
2790         * CheckedListBox.cs: nunit no longer crashes when selecting 
2791         Project/Edit menu option
2792         
2793 2006-10-25  Andreia Gaita <shana.ufie@gmail.com>
2794
2795         * MenuAPI.cs: prevent ExecFocusedItem from blowing up if there
2796         is no menu selected. fixes #79739
2797
2798 2006-10-25  Chris Toshok  <toshok@ximian.com>
2799
2800         * PropertyGridView.cs: factor out the splitter invalidation code
2801         into the SplitterPercent setter, and for kicks implement the
2802         Ctrl-Left/Ctrl-Right handling that moves the splitter by a small
2803         amount in either direction.
2804
2805 2006-10-25  Chris Toshok  <toshok@ximian.com>
2806
2807         * PropertyGridView.cs: do some cleanup of the brush used to draw
2808         text - read only fields should be grayed out.  not sure how to do
2809         this with the textbox, though.  but the textbox's should also be
2810         readonly now at least.  Also, hide/show the textbox when resizing
2811         the control.
2812         
2813         * CursorConverter.cs: use System.Reflection when getting the
2814         properties of Cursors, as TypeDescriptor.GetProperties isn't
2815         returning static properties.
2816
2817 2006-10-25  Chris Toshok  <toshok@ximian.com>
2818
2819         * PropertyGridView.cs: factor out the up/down handling, and reuse
2820         it for page up/down.  also add End/Home support.
2821
2822 2006-10-25  Chris Toshok  <toshok@ximian.com>
2823
2824         * PropertyGridView.cs:
2825
2826         - ensure the selected grid item is visible in the scrolled area,
2827         fixes bug #79572.
2828
2829         - fix Keys.Down handling when you're on the last item in the
2830         propertygrid.
2831
2832 2006-10-25  Mike Kestner  <mkestner@novell.com>
2833
2834         * MenuAPI.cs : set the ActiveTracker for MainMenu non-popup 
2835         clicks too.  Fixes #79725.
2836
2837 2006-10-24  Chris Toshok  <toshok@ximian.com>
2838
2839         * PropertyGrid.cs: use property.Converter instead of
2840         TypeDescriptor.GetConverter(property.PropertyType), so we catch
2841         TypeConverters declared on the property as well as on the
2842         PropertyType.  Fixes bug #79678.
2843
2844 2006-10-24  Alexander Olk  <alex.olk@googlemail.com>
2845
2846         * MimeIcon.cs, Mime.cs:
2847           Fallback to the default platform handler if no shared mime info
2848           stuff exists (fixes #79693).
2849
2850 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2851         * ContainerControl.cs: Incorrect contains check in ActiveControl 
2852         from previous fix (duh).
2853
2854 2006-10-20  Chris Toshok  <toshok@ximian.com>
2855
2856         * PropertyGridView.cs: the dropdown should be MIN(number of items
2857         in list, 15).  Fixes #79551.
2858
2859 2006-10-20 Andreia Gaita <shana.ufie@gmail.com>
2860         Fixes #79384, #79394, #79652, #79667
2861         * Application.cs: 
2862         
2863         - Modal windows are now destroyed in the proper order for windows
2864         
2865         * ContainerControl.cs:
2866         
2867         - ActiveControl setter has more conditions on when to return:
2868                 - if we're reselecting the active control, but it actually
2869                 didn't have focus (window hidden or some such), it runs
2870                 - if the active control being selected doesn't actually 
2871                 exist in the container, it returns
2872         
2873         * Form.cs
2874         
2875         - The ShowDialog now gets the current form as the owner when
2876         invoking without parameters, and correctly activates the owner 
2877         when returning
2878         
2879         * MessageBox.cs
2880         
2881         - MessageBox now catches the Escape key to exit
2882
2883 2006-10-20  Chris Toshok  <toshok@ximian.com>
2884
2885         * PropertyGridView.cs: fix a number of issues (bug #78565, and
2886         most of bug #79676):
2887
2888         - you can navigate around the property grid with the arrow keys.
2889
2890         - the dropdown is sized properly when the pg has a vertical
2891         scrollbar.
2892
2893         - fix the indentation for subentries, and properly select the
2894         entire label rect.
2895
2896         - fix the gray bar's drawing (only draw it to the last element,
2897         not for the height of the control.  Also make sure we draw that
2898         last horizontal grid line.
2899
2900         - use the same mechanism the datagrid uses wrt the editing textbox
2901         when scrolling/resizing/etc.  Namely, we hide it first, do the
2902         operation, then show it again (if it's still visible).
2903         
2904         - aggressively remove a lot of unnecessary refreshes (and also
2905         calls to Invalidate(). call more limited variants, and only redraw
2906         what we need.)
2907         
2908         * PropertyGrid.cs:
2909
2910         - when we're populating the merged collection, fill in the UI
2911         parent with either the passed in item, or the category item we
2912         create.
2913
2914         - remove the Refresh call from the BorderHelpControl.OnSizeChanged.
2915
2916         * GridItem.cs: drop some fully qualified names.
2917         
2918         * GridEntry.cs: add a "UIParent", which is basically the parent
2919         treenode.
2920
2921         * GridItemCollection.cs: add an IndexOf method.
2922
2923 2006-10-20  Mike Kestner  <mkestner@novell.com>
2924
2925         * MainMenu.cs : go back to Draw in OnMenuChanged.  Until we get
2926         a working win32 NC invalidation mechanism, we can't invalidate
2927         menus.  [Fixes #79705]
2928
2929 2006-10-20  Mike Kestner  <mkestner@novell.com>
2930
2931         * ListBox.cs : don't update the VScrollbar if the list is empty,
2932         just hide it.  [Fixes #79692]
2933
2934 2006-10-20  Jackson Harper  <jackson@ximian.com>
2935
2936         * RichTextBox.cs: Handle some special chars better, and don't skip
2937         the entire group when we encounter a special char that we don't
2938         handle correctly.
2939
2940 2006-10-18  Chris Toshok  <toshok@ximian.com>
2941
2942         * PropertyGridView.cs: address a number of issues from bug #79676,
2943         mostly of the cosmetic variety.
2944
2945         - The highlight rectangle for indented items not extends all the
2946         way to the left.
2947
2948         - Indented items aren't indented so much.
2949
2950         - the dropdown is properly sized width-wise if the pg has a
2951         vertical scrollbar.
2952
2953 2006-10-18  Chris Toshok  <toshok@ximian.com>
2954
2955         * XplatUIX11.cs (SystrayAdd): a rather convoluted change, but the
2956         systray stuff is rather convoluted to begin with.
2957
2958         systray icons are a single window for some reason (that I haven't
2959         figured out yet), and for them, client_window == whole_window.
2960         Given the way the tests are structured elsewhere to determine
2961         which paints are pending (client vs. nc), that situation will
2962         always yield PAINT, not NCPAINT.  So, if we have a pending
2963         nc_expose and no pending expose, remove the hwnd from the paint
2964         queue, and also set nc_expose_pending to false, to keep us from
2965         blocking further expose's adding the hwnd to the paint queue.
2966
2967         phew.  like i said, a rather convoluted change.  Fixes the
2968         notifyicon repaint issues in bug #79645.
2969
2970 2006-10-18  Chris Toshok  <toshok@ximian.com>
2971
2972         * Form.cs: when getting the backcolor of the form, don't get
2973         base.BackColor, as this allows parents to influence the background
2974         color.  This breaks mdi forms.  Instead, if the background_color
2975         is empty, return the default.
2976
2977 2006-10-18  Chris Toshok  <toshok@ximian.com>
2978
2979         * XplatUIX11.cs: change some debug ifdefs, and return XGetParent
2980         to being private instead of internal static.
2981
2982         * Control.cs: remove all the stupid ParentWaitingOnRecreation
2983         crap, it wasn't working for more deeply nested controls anyway,
2984         and we already have the is_recreating flag - use that instead.
2985         Before calling DestroyHandle in RecreateHandle, recurse through
2986         the control tree setting it to true.  this returns the recreate
2987         code to much of its original simplicity, while now guaranteeing we
2988         actually recreate everything we're supposed to.  This change gets
2989         fyireporting actually showing mdi children.
2990
2991 2006-10-17  Chris Toshok  <toshok@ximian.com>
2992
2993         * Form.cs: remove some debug spew, and collapse some duplicate
2994         code at the end of SetClientSizeCore.
2995
2996         * XplatUIX11.cs: 
2997         - add some more debug spew here too wrt Destroy handling.
2998         - don't call hwnd.Dispose in DestroyWindow, it's effectively done
2999         in Control's handling of WM_DESTROY.
3000         - Remove the handling of zombie window DestroyNotifies from the
3001         event loop - we don't need it.  Now the only DestroyNotifies we
3002         actually handle are ones generated by X.
3003         - When sending _NET_ACTIVE_WINDOW, the first param should be 1, to
3004         match gtk's (functioning) handling of this. This keep metacity
3005         from leaving droppings in the form of wm borders with no window
3006         contents all over the place.
3007
3008         * Control.cs:
3009         - add a bunch of debug spew wrt control recreation.
3010         - fix a bug where we weren't tracking Visible properly on
3011         recreated hwnds.
3012         - fixed the WM_PAINT double buffer handling to support re-entrant
3013         calls (yes, i know it's gross, but it's happening to us).
3014
3015 2006-10-17  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3016         * ThemeWin32Classic.cs: changed drawing of selected days
3017         to make them look better.
3018
3019 2006-10-16  Chris Toshok  <toshok@ximian.com>
3020
3021         * Hwnd.cs: replace the user_data/client_dc/non_client_dc with
3022         drawing_stack.  Nuke the ClientDC/NonClientDC properties.
3023
3024         * XplatUIX11.cs: move away from using hwnd.client_dc and
3025         hwnd.non_client_dc and on to a stack of dc's (and in window's
3026         case, PAINTSTRUCT's), so we can deal with nested Paint calls
3027         without puking or not disposing of Graphics objects.
3028
3029         * XplatUIOSX.cs: same.
3030
3031         * XplatUIWin32.cs: same.
3032
3033 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3034
3035         * FileDialog.cs: Don't call on_directory_changed inside
3036           OnSelectedIndexChanged (it changes the SelectedIndex too).
3037           Instead move it to OnSelectionChangeCommitted.
3038
3039 2006-10-13  Chris Toshok  <toshok@ximian.com>
3040
3041         * XplatUIX11.cs: more Destroy work.  the current code does the
3042         following things, in order:
3043
3044         1. Enumerates all handles of all controls at or below the one
3045         being destroyed, in pre-order.  As it is doing this, it marks the
3046         handles as zombie and clears all references to them.
3047         
3048         2. calls XDestroyWindow on the window passed in.
3049
3050         3. SendMessage's WM_DESTROY to all he handles in the accumulated
3051         list.
3052
3053 2006-10-13  Chris Toshok  <toshok@ximian.com>
3054
3055         * XplatUIX11.cs: set hwnd.zombie to true before calling
3056         SendMessage (WM_DESTROY).  this keeps us from marking the new
3057         window a zombie, and also keeps us from calling sendmessage at
3058         all.
3059
3060 2006-10-13  Jackson Harper  <jackson@ximian.com>
3061
3062         * TextControl.cs: Do not show the caret and selection at the same
3063         time.  Reduces ugliness by 35%.
3064
3065 2006-10-13  Chris Toshok  <toshok@ximian.com>
3066
3067         * XplatUIX11.cs (SendWMDestroyMessages): set the hwnd to be a
3068         zombie after we do the recursive call, so we actually do call
3069         SendMessage on the children controls.
3070         (GetMessage): if we find a pending paint event for a zombie hwnd,
3071         remove the hwnd from the paint queue, or else it will always be
3072         there (and we'll effectively loop infinitely)
3073
3074 2006-10-13  Mike Kestner  <mkestner@novell.com>
3075
3076         * MenuItem.cs : add Selected format under keynav too.
3077         Fixes #79528.
3078
3079 2006-10-13  Gert Driesen  <drieseng@users.sourceforge.net>
3080
3081         * PropertyGrid.cs: Fixed some NRE's and small difference between our
3082         implementation and that of MS.
3083
3084 2006-10-13  Chris Toshok  <toshok@ximian.com>
3085
3086         * Control.cs (OnInvalidated) only futz with the invalid_region if
3087         the control is double buffered.  this fixes the apparent hang in
3088         the ListView unit tests.  Someone needs to make the
3089         BeginEndUpdateTest not call OnInvalidated 15004 times, though..
3090
3091 2006-10-13  Chris Toshok  <toshok@ximian.com>
3092
3093         * PropertyGridView.cs:
3094
3095         - do a little refactoring so that only one place calls
3096         dropdown_form.Hide, and that is CloseDropDown.  make everywhere
3097         else call that.  Also make it Refresh, since there are redraw bugs
3098         otherwise (we should take a look at that...)
3099
3100         - do a little more refactoring work to share the body of code
3101         involved with the drop down.  it was duplicated in the code
3102         dealing with the listbox handling and in the code dealing with the
3103         UITypeEditors.
3104
3105         - add a Capture to the dropdown form's control once it's
3106         displayed, and add a MouseDown handler that checks to make sure
3107         the position is inside the control.  If it's not, close the
3108         dropdown.  This fixes #78190.
3109
3110         - in SetPropertyValueFromUITypeEditor, only call SetPropertyValue
3111         if the value is different than the initial value.
3112         
3113 2006-10-13  Andreia Gaita  <shana.ufie@gmail.com>
3114
3115         * Control.cs: see #78650
3116         - Fixed GetNextControl for several cases:
3117                 - Changed FindFlatForward to return 
3118                 correct sibling control when more than one
3119                 control has same TabIndex as the currently 
3120                 focused one.
3121                 - Changed FindFlatBackward to loop children
3122                 from last to first and apply same logic as in
3123                 FindFlatForward
3124                 - Changed FindControlForward to search for
3125                 children when control is not a container
3126                 but has children, or search for siblings if
3127                 control is a container...
3128                 - Changed FindControlBackward   to continue
3129                 searching for child controls when hitting 
3130                 Panel-like parents
3131                 
3132         - Fixed Focus method to update ActiveControl
3133         (FocusTest.FocusSetsActive failure)
3134         
3135         * TabControl.cs:
3136         - Focus rectangle now refreshes when gaining
3137         or losing focus
3138         - Removed grab for Tab key on IsInputKey that 
3139         was keeping tab navigation from working (#78650)
3140
3141 2006-10-13  Chris Toshok  <toshok@ximian.com>
3142
3143         * PropertyGridView.cs:
3144         - Rewrite SetPropertyValue to loop over SelectedGridItem's
3145         SelectedObjects.
3146
3147         - Deal with GridItem.Value == null a few places.
3148
3149         * PropertyGrid.cs: 
3150         - replace the PopulateGridItemCollection with a pair of methods
3151         which compute the intersection of all the properties in the
3152         SelectedObjects array.  Fixes #79615.
3153
3154         - Throw ArgumentException from set_SelectedObjects if there's a
3155         null in the array.
3156
3157         - Add GetTarget method which can be used to traverse up the
3158         GridItem.Parent chain.  It depends on the assumption that
3159         selected_objects for different GridEntries are always in the same
3160         order (a safe assumption).  Use this method and loop over all the
3161         selected objects in the entry when calling RemoveValueChanged and
3162         AddValueChanged.
3163         
3164         * GridEntry.cs: Make this handle multiple selected objects.
3165         .Value returns null if not all the selected objects share the same
3166         value.
3167
3168 2006-10-12  Jonathan Pobst  <monkey@jpobst.com>
3169         * ToolStrip.cs, ToolStripButton.cs, ToolStripComboBox.cs,
3170           ToolStripControlHost.cs, ToolStripItem.cs, ToolStripLabel.cs,
3171           ToolStripProfessionalRenderer.cs, ToolStripProgressBar.cs,
3172           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs,
3173           ToolStripTextBox.cs: Add accessibility, fix attributes/API and
3174         add additional functionality.
3175
3176 2006-10-12  Mike Kestner  <mkestner@novell.com>
3177
3178         * ErrorProvider.cs : new ToolTipWindow ctor sig.
3179         * HelpProvider.cs : new ToolTipWindow ctor sig.
3180         * ToolTip.cs : remove ToolTip param from Window sig since it is
3181         not used.
3182         * ToolBar.cs : add tooltip support.  Fixes #79565.
3183
3184 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3185
3186         * ComboBox.cs: move the events in set_SelectedIndex to 
3187         after the call to HighlightIndex in order to avoid 
3188         possible recursion and subsequent problems with the call
3189         to HighlightIndex and include a range check in 
3190         set_HighlightIndex. Fixes #79588
3191         
3192 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3193
3194         * MonthCalendar.cs: When FirstDayOfWeek is default set firstday 
3195         to ui thread's settings instead of sunday. 
3196         * ThemeWin32Classic.cs: Localize the day string. Fixes #79563
3197
3198 2006-10-12  Rolf Bjarne Kvinge  <rolfkvinge@ya.com>
3199
3200         * DateTimePicker.cs
3201         * MonthCalendar.cs
3202         * ThemeWin32Classic.cs: rewrote DateTimePicker to fix bug #78364
3203         and implement missing functionality (selecting different parts 
3204         of the date and edit them individually with the keyboard).
3205         
3206 2006-10-11  Chris Toshok  <toshok@ximian.com>
3207
3208         * Control.cs (OnInvalidated): fix NRE relating to last change.
3209
3210 2006-10-11  Chris Toshok  <toshok@ximian.com>
3211
3212         * XplatUIX11.cs (SetWMStyles): make sure we include the MAXIMIZED
3213         atoms in _NET_WM_STATE here if the window is maximized.  We need
3214         to do this because we're *replacing* the existing _NET_WM_STATE
3215         property, so those atoms will be lost otherwise, and any further
3216         call to GetWindowState will return Normal for a window which is
3217         actually maximized.  Fixes #79338.
3218
3219 2006-10-11  Jackson Harper  <jackson@ximian.com>
3220
3221         * TextControl.cs: Special case for setting selection end to
3222         selection start, we basically kill the anchor.
3223         - some todo comments.
3224
3225 2006-10-11  Chris Toshok  <toshok@ximian.com>
3226
3227         * Control.cs: switch to using an "invalid_region" to track which
3228         parts of the image buffer need updating.  This is more code than
3229         the simple fix from r66532.  That version just attempted to always
3230         fill the entire buffer on redraw, which turns out to be
3231         inefficient when invalidating small rectangles.  This version
3232         simply adds the invalid rectangle to the invalid region.  When we
3233         get any WM_PAINT message we see if it can be filled using the
3234         image buffer, and if it can't (if the paint event's clip rectangle
3235         is visible in the invalid region) we first fill the image buffer.
3236         So, the image buffer is still a cache, we just fill it lazily.
3237
3238         * PaintEventArgs.cs: remove the SetClipRectangle method, we don't
3239         need it any longer.
3240
3241 2006-10-11  Chris Toshok  <toshok@ximian.com>
3242
3243         * XplatUIX11.cs (SetWindowPos): we need to update both position as
3244         well as size after calling XMoveResizeWindow.  This keeps us from
3245         ignoring future SetWindowPos calls.  Fixes the disappearing
3246         DateTimePicker in the ToolBarDockExample from bug #72499.
3247
3248 2006-10-11  Chris Toshok  <toshok@ximian.com>
3249
3250         * TextBoxBase.cs: reorder things a bit when it comes to
3251         resizing-causing-recalculation.  we were recalculating the
3252         document when our position was changed, which shouldn't happen.
3253         We only care about size changes.  Clear up some more redundant
3254         recalculation calls while I'm at it.  This makes the toolbar dock
3255         example snappy when you're just dragging toolbars around (since it
3256         causes a relayout whenever you move one.)
3257
3258 2006-10-11  Chris Toshok  <toshok@ximian.com>
3259
3260         * ToolBarButton.cs (get_Rectangle): this only returns
3261         Rectangle.Empty if Visible == false, or Parent == null.
3262         Parent.Visible doesn't matter.
3263
3264 2006-10-10  Chris Toshok  <toshok@ximian.com>
3265
3266         * Control.cs, PaintEventArgs.cs: "internal set { .. }" isn't loved
3267         by .net 1.1, so switch to an internal method instead.
3268
3269 2006-10-10  Chris Toshok  <toshok@ximian.com>
3270
3271         * Control.cs (WM_PAINT): when a control is double buffered we draw
3272         initially to the ImageBuffer and then copy from there.  But when a
3273         parent control which has child controls is double buffered, the
3274         initial drawing doesn't encompass the entire ClientRectangle of
3275         the parent control, so we end up with uninitialized bits (this is
3276         easily seen by dragging the top toolbar in
3277         wf-apps/ToolBarDockExample to the right, quickly).  The fix is to
3278         manually set the ClipRectangle of the paint_event (only the one we
3279         use to populate the ImageBuffer) to ClientRectangle.  Fixes more
3280         of the nastiness in bug #72499.
3281
3282         * PaintEventArgs.cs: Add an internal setter for ClipRectangle,
3283         which we use in Control.cs's WM_PAINT handling.
3284
3285 2006-10-10  Jackson Harper  <jackson@ximian.com>
3286
3287         * TextBoxBase.cs: Finish off the autoscrolling stuff.
3288
3289 2006-10-10  Chris Toshok  <toshok@ximian.com>
3290
3291         * Cursor.cs: Apply a slightly different patch to the one suggested
3292         in #79609.
3293
3294 2006-10-10  Jackson Harper  <jackson@ximian.com>
3295
3296         * MenuItem.cs: Make sure to put the mdi child in the hashtable,
3297         not the parent form.
3298         * TextControl.cs: use difference in old line count vs new count to
3299         calculate how many lines were added, this takes into account soft
3300         line breaks properly.
3301
3302 2006-10-10  Chris Toshok  <toshok@ximian.com>
3303
3304         * LinkLabel.cs: don't call MeasureCharacterRanges against a
3305         rectangle located at 0,0 and the size of the text.  Use
3306         ClientRectangle instead.  This fixes rendering of non-left aligned
3307         link labels.
3308
3309 2006-10-10  Jackson Harper  <jackson@ximian.com>
3310
3311         * TextBoxBase.cs: When we set the selection start position the
3312         caret.
3313         * TextControl.cs: Need to update the caret when we decrement it to
3314         zero.
3315         - Make sure that the selection_visible flag gets reset to false if
3316         the selection isn't visible.  Before this you could get it set to
3317         visible by changing the selection start, then changing the end to
3318         equal the start.
3319
3320 2006-10-09  Jackson Harper  <jackson@ximian.com>
3321
3322         * TreeView.cs: Don't update scrollbars when we aren't visible.
3323         * TreeNodeCollection.cs: Only need to update scrollbars if being
3324         added to an expanded visible node or the root node.
3325
3326 2006-10-09  Chris Toshok  <toshok@ximian.com>
3327
3328         * XplatUIX11.cs (SendMessage): fix NRE.
3329
3330 2006-10-09  Jackson Harper  <jackson@ximian.com>
3331
3332         * TextBoxBase.cs: Implement horizontal autoscrolling.
3333         * TextControl.cs: Add a movement types that allows moving forward
3334         and backwards without wrapping.
3335
3336 2006-10-09  Mike Kestner  <mkestner@novell.com>
3337
3338         * ListViewItem.cs : layout changes for wrapped LargeIcon labels
3339         with focus "expansion" of labels.  Fixes #79532 and then some.
3340         * ThemeWin32Classic.cs : add LineLimit to ListView label format
3341         when wrapping.
3342
3343 2006-10-09  Jackson Harper  <jackson@ximian.com>
3344
3345         * TextBoxBase.cs: Set the default max values to MaxValue since
3346         we use the scrollbar for autoscrolling and the default value is
3347         100.  If we don't do this the caret won't keep up with typing
3348         after about 18 characters.
3349         * TextControl.cs: Make sure the selection is offset by the
3350         viewport x.  This fixes selection when using auto scrolling.
3351
3352 2006-10-07  Andreia Gaita <shana.ufie@gmail.com>
3353         
3354         * Form.cs: The active control should be selected after the 
3355         OnLoad so that any child control initialization that affects
3356         the selection is done. Fixes #79406
3357
3358 2006-10-06  Chris Toshok  <toshok@ximian.com>
3359
3360         * XplatUIX11.cs: This is perhaps a dangerous change, but it seems
3361         to have no evil effects.
3362
3363         - Stop selecting StructureNotifyMask on non-toplevel windows.
3364
3365           The only way children should be resized is by using the SWF api,
3366           and we already send WM_WINDOWPOSCHANGED messages in those cases.
3367           Toplevel windows can be interacted with via the window manager,
3368           and so we keep the input mask there.
3369
3370           The other event StructureNotifyMask gives us (that we care
3371           about) is DestroyNotify.  The code is already structured such
3372           that it assumes we won't be getting a DestroyNotify event for
3373           the window we pass to XDestroyWindow (which is what
3374           StructureNotifyMask is supposed to guarantee.)  So, that code
3375           shouldn't be affected by this either.
3376
3377         - Stop selecting VisibilityChangeMask altogether.
3378
3379           We weren't doing anything with the resulting events anyway.
3380         
3381         This vastly reduces the number of X requests and events we see
3382         when resizing/laying out a large ui.
3383
3384 2006-10-06  Chris Toshok  <toshok@ximian.com>
3385
3386         * ScrollableControl.cs (DisplayRectangle): we need to take into
3387         account the DockPadding regardless of whether or not auto_scroll
3388         == true.  rework this slightly to this effect, and fix bug #79606,
3389         and part of #72499 (you can now see the drag handles and drag
3390         toolbars around).
3391
3392 2006-10-06  Gert Driesen  <drieseng@users.souceforge.net>
3393
3394         * ListViewItem.cs: Collections of selected and checked items are now
3395         dynamically rebuilt. Whenever an item is (un)checked or (de)selected
3396         we mark the collection "dirty".
3397         * ListView.cs: Marked collections readonly. Modified UpdateSelection
3398         to only clear SelectedItems when a new item is selected and MultiSelect
3399         is enabled. CheckedItems and SelectedItems now subscribe to Changed
3400         event of ListViewItemCollection, and mark its list dirty whenever
3401         that event is fire. This allows us to return selected/checked items 
3402         in the same order as they are in the Items collection. This matches
3403         the MS behavior.
3404
3405 2006-10-06  Chris Toshok  <toshok@ximian.com>
3406
3407         * NotifyIcon.cs (HandleMouseUp): only show the context menu on
3408         right mouse clicks.  Fixes bug #79593.
3409
3410 2006-10-06  Chris Toshok  <toshok@ximian.com>
3411
3412         * Splitter.cs: doh, fix splitters that don't want to cancel the
3413         movement when you drag them.  Also, impose the limits on the
3414         values we send to the SplitterMovingEvent.  Fixes #79598.
3415
3416 2006-10-06  Jackson Harper  <jackson@ximian.com>
3417
3418         * TextBoxBase.cs: Ignore whether or not the scrollbar is enabled,
3419         since we use this for auto scrolling also.
3420
3421 2006-10-05  Chris Toshok  <toshok@ximian.com>
3422
3423         * DataGridBoolColumn.cs: Nuke the code from ConcedeFocus.  I'm
3424         beginning to think that most datagrid column types don't need this
3425         method.  Fixes bug #79392.
3426
3427 2006-10-05  Chris Toshok  <toshok@ximian.com>
3428
3429         * DataGrid.cs: move back to a more lazy scheme for creating the
3430         CurrencyManager, so we aren't updating it every time you set
3431         either DataSource or DataMember.  Also, don't call
3432         RecreateDataGridRows if the currency manager hasn't changed.
3433
3434 2006-10-05  Chris Toshok  <toshok@ximian.com>
3435
3436         * ComboBox.cs: by the time the OnSelectionChangeCommitted event is
3437         emitted, SelectedIndex should already be updated.  Fixes bug
3438         #78929.
3439
3440 2006-10-05  Jonathan Pobst  <monkey@jpobst.com>
3441
3442         * ToolStripComboBox.cs, ToolStripControlHost.cs, ToolStripProgressBar,
3443           ToolStripTextBox.cs: Initial commit.
3444         * ToolStripItem.cs: Fixes for OnLayout, BackColor, Parent.
3445
3446 2006-10-05  Jackson Harper  <jackson@ximian.com>
3447
3448         * TabControl.cs: We need to invalidate the tab control area when
3449         new ones are added (duh).
3450
3451 2006-10-03  Chris Toshok  <toshok@ximian.com>
3452
3453         * Form.cs (ProcessDialogKey): if the focused control is in this
3454         form and is a button, call its PerformClick method here.  Fixes
3455         #79534.
3456
3457 2006-10-04  Jackson Harper  <jackson@ximian.com>
3458
3459         * TabPage.cs: Ignore setting of Visible, and add an internal
3460         method for setting the controls visibility.  TabPage's Visible
3461         property is a little strange on MS, this seems to make us
3462         compatible, and fixes cases where people set all the tab pages to
3463         visible.
3464         * TabControl.cs: Use the new internal setting on tab pages
3465         visibility.
3466
3467 2006-10-03  Mike Kestner  <mkestner@novell.com>
3468
3469         * ComboBox.cs : raise Click on ComboTextBox clicks. Fixes #79555.
3470
3471 2006-10-03  Mike Kestner  <mkestner@novell.com>
3472
3473         * ListView.cs : use is_visible instead of Visible to check if 
3474         scrollbars should be placed/sized.  Also some max_wrap_width
3475         love for LargeIcon view.  [Fixes #79533]
3476
3477 2006-10-03  Atsushi Enomoto  <atsushi@ximian.com>
3478
3479         * TextControl.cs :
3480           Make set_TextAlign() do actually update the align. Fixed #78403.
3481
3482 2006-10-03  Chris Toshok  <toshok@ximian.com>
3483
3484         * DataGrid.cs: fix a crash when switching datasources if the
3485         vertical scrollbar is at someplace other than Value = 0.  Also,
3486         reduce the number of recalculation passes we do in SetDataSource
3487         from 2 to 1.
3488
3489 2006-10-03  Jackson Harper  <jackson@ximian.com>
3490
3491         * TextBoxBase.cs: Move the if value the same bail check up, we
3492         don't want to empty the document if it is already empty, this
3493         seems to severly mess up the caret.  TODO: I should probably fix
3494         the empty statement to update teh caret somehow.
3495
3496 2006-10-03  Chris Toshok  <toshok@ximian.com>
3497
3498         * ThemeWin32Classic.cs, DataGrid.cs: some changes so that the
3499         incredibly hacky Windows.Forms FAQ autosize rows entry (it uses
3500         reflection, an internal row type, properties on said type, etc.)
3501         will work with our datagrid.  Fixes #79531.
3502
3503 2006-10-03  Alexander Olk  <alex.olk@googlemail.com>
3504
3505         * FileDialog.cs: Don't crash if a path is not accessible
3506           (System.UnauthorizedAccessException). Fixes #79569.
3507         * MimeIcon.cs: Workaround for a Uri bug. Unix paths/files can have
3508           a ':' too. Return unknown icon for those paths/files.
3509
3510 2006-10-03  Sebastien Pouliot  <sebastien@ximian.com>
3511
3512         * ToolTip.cs: Fix rare, but possible, NRE on MouseEnter when 
3513         GetContainerControl returns null.
3514
3515 2006-10-02  Chris Toshok  <toshok@ximian.com>
3516
3517         * XplatUIX11.cs (GetWindowState): use hwnd.client_window in the
3518         call to XGetWindowAttributes instead of "handle".  fixes an X
3519         error using notifyicon after the NotifyIconWindow to Form base
3520         class switch.
3521
3522 2006-10-02  Chris Toshok  <toshok@ximian.com>
3523
3524         * XplatUIX11.cs (QueryPointer): new function, encapsulating the
3525         server grab and looping we need to do to get down to the most
3526         deeply nested child window.
3527         (SetCursorPos): use QueryPointer instead of GetCursorPos, and call
3528         QueryPointer again after the WarpPointer so we can generate a
3529         proper (fake) MotionNotify event to be enqueued in the destination
3530         window's queue.
3531         (GetCursorPos): call QueryPointer.
3532
3533         Fixes #79556.
3534
3535 2006-10-02  Jackson Harper  <jackson@ximian.com>
3536
3537         * NotifyIcon.cs: Derive the notify icon from a form, so things
3538         like FindForm work on it.
3539         - Swallow the WM_CONTEXTMENU message, since that is generated on
3540         mouse down, and context menu is a mouse up kinda guy.  I believe
3541         the correct fix here is probably to make the notify icon entirely
3542         NC area, but this seems to work fine for anyone not manipulating
3543         WndProc.
3544
3545 2006-10-02  Jonathan Pobst  <monkey@jpobst.com>
3546
3547         * ToolStrip.cs, ToolStripButton.cs, ToolStripItem.cs,
3548           ToolStripItemCollection.cs, ToolStripLabel.cs,
3549           ToolStripProfessionalRenderer.cs, ToolStripRenderer.cs,
3550           ToolStripSeparator.cs, ToolStripSplitStackLayout.cs:
3551           Initial implementation.
3552         * TextRenderer.cs: Provide padding to MeasureText.
3553
3554 2006-10-02  Sebastien Pouliot  <sebastien@ximian.com>
3555
3556         * ButtonBase.cs: Fix CreateAccessibilityInstance to return an instance
3557         of ButtonBaseAccessibleObject. Fix bug #79552.
3558
3559 2006-10-02  Jackson Harper  <jackson@ximian.com>
3560
3561         * MdiWindowManager.cs: When maximizing use the containers client
3562         rect, not it's bounds, so nc area is accounted correctly.
3563         - Use the parent form's size for the menu position, since the
3564         client isn't always the full form size.
3565
3566 2006-10-01  Chris Toshok  <toshok@ximian.com>
3567
3568         * ScrollableControl.cs: make sure neither right_edge or
3569         bottom_edge are < 0, since they're used as LargeChange for the
3570         horiz/vert scrollbars respectively.  Fixes #79539.
3571
3572 2006-10-01  Chris Toshok  <toshok@ximian.com>
3573
3574         * NotifyIcon.cs: add NotifyIconWindow.InternalRecreateHandle, so
3575         the xplatuix11 code can cause us to destroy/recreate our handle.
3576
3577         * XplatUIX11.cs
3578         (SystrayAdd):
3579         - this code can be invoked many times for the same Hwnd.  Make
3580           sure we only destroy the client window once (the first time this
3581           method is called).  This fixes bug #79544.
3582         - Remove the call to the improperly bound XSync.  why we had two
3583           bindings to this, I will never know, but this call resulted in
3584           events being discarded from the queue(!).
3585         - correct a misunderstanding of _XEMBED_INFO - the second atom is
3586           not our current state but the state we wish to be in.  So, 0 if
3587           we don't want to be mapped.  Change it to 1.
3588         (SystrayRemove): The XEMBED spec makes mention of the fact that
3589         gtk doesn't support the reparent of client windows away from the
3590         embedder.  Looking at gtksocket-x11.c seems to agree with this.
3591         The only avenue we have for removing systray icons is to destroy
3592         them.  We don't want the handle to go away for good, though, so
3593         call InternalRecreateHandle on the NotifyIconWindow.  Fixes
3594         #79545.
3595         
3596 2006-10-01  Chris Toshok  <toshok@ximian.com>
3597
3598         * Form.cs (WndProc): inline the native_enabled variable usage into
3599         the cases in which it's used.  Fixes #79536.
3600
3601 2006-09-29  Mike Kestner  <mkestner@novell.com>
3602
3603         * ListView.cs : toggle the selection state for ctrl clicks in 
3604         multiselect mode. [Fixes #79417]
3605
3606 2006-09-29  Mike Kestner  <mkestner@novell.com>
3607
3608         * ListView.cs : kill CanMultiSelect and refactor the selection
3609         code to support multiselection in the absence of mod keys. Steal
3610         arrow/home/end keys by overriding InternalPreProcessMessage to
3611         restore regressed keynav behavior.
3612         [Fixes #79416]
3613
3614 2006-09-29  Jackson Harper  <jackson@ximian.com>
3615
3616         * MdiClient.cs: Repaint the titlebars when the active window is
3617         changed.
3618
3619 2006-09-29  Chris Toshok  <toshok@ximian.com>
3620
3621         * Application.cs: when entering a runloop with a modal, make sure
3622         the hwnd is enabled.  Fixes #79480.
3623
3624 2006-09-29  Chris Toshok  <toshok@ximian.com>
3625
3626         * DataGrid.cs (CurrentCell): if we try to navigate to the add row
3627         when ListManager.CanAddRows == false, bump us back one.
3628
3629         * DataGridColumnStyle.cs (ParentReadOnly): remove the
3630         listmanager.CanAddRows check.  This makes ArrayLists uneditable
3631         using a datagrid, which is not right.
3632         (SetColumnValueAtRow): call IEditable.BeginEdit if source[rowNum]
3633         is an IEditable, but call property_descriptor.SetValue regardless.
3634         fixes #79435.
3635
3636 2006-09-29  Chris Toshok  <toshok@ximian.com>
3637
3638         * DataGridBoolColumn.cs: we need to test equality in the face of
3639         possible null values (as is the case with the default NullValue).
3640         This patch keeps us from crashing in that case.
3641
3642 2006-09-29  Jackson Harper  <jackson@ximian.com>
3643
3644         * TreeNodeCollection.cs: Don't do a recalculate/updatescrollbars
3645         here, since it will get called for every node collection in the
3646         tree. This is now done in the treeview once the sorting is
3647         finished.
3648         * TreeView.cs: Recalculate the visible order, and update the
3649         scrollbars after sorting, set the top nope to the root so that the
3650         recalc actually works.
3651
3652 2006-09-29  Chris Toshok  <toshok@ximian.com>
3653
3654         * LinkLabel.cs: more handling of the default link collection in
3655         the face of LinkArea manipulation.  The default link collection
3656         contains 1 element (start=0,length=-1).  If the user sets LinkArea
3657         to anything and the links collection is the default, clear it.
3658         Then only add the link if its nonempty.  Fixes #79518.
3659
3660 2006-09-29  Chris Toshok  <toshok@ximian.com>
3661
3662         * LinkLabel.cs (CreatePiecesFromText): calculate the length of a
3663         piece correctly when we hit a '\n'.  Fixes #79517.
3664
3665 2006-09-29  Chris Toshok  <toshok@ximian.com>
3666
3667         * MimeIcon.cs, ThemeGtk.cs, X11DesktopColors.cs, XplatUIX11GTK.cs:
3668         change the binding of gdk_init_check to take two IntPtr's, and
3669         pass IntPtr.Zero for both of them.  Fixes #79520.
3670
3671 2006-09-29  Mike Kestner  <mkestner@novell.com>
3672
3673         * ComboBox.cs : raise TextChanged on ComboTextBox.TextChanged.
3674         [Fixes #78779]
3675
3676 2006-09-28  Jackson Harper  <jackson@ximian.com>
3677
3678         * XplatUIX11.cs: When translating NC messages make sure we go from
3679         whole window to screen, not client window to screen.
3680         * MdiClient.cs: Remove the calls to PaintWindowDecorations, this
3681         method doesn't exist
3682         - Skip over controls that aren't forms when arranging.
3683
3684 2006-09-28  Jackson Harper  <jackson@ximian.com>
3685
3686         * XplatUIWin32.cs: Clip the rect to the parent window.
3687         * XplatUIStructs.cs: Add clipping modes struct.
3688         * InternalWindowManager.cs: New private method that factors title
3689         bar heights in when calculating the pos of an NC mouse message.
3690         - Use SendMessage to force a paint when the form's size is changed
3691         instead of painting the decorations immediately.
3692         - Don't let the NC button click messages get to DefWndProc,
3693         because they will attempt to handle windowing themself, and this
3694         messes up z-order (it will put them in front of the scrollbars).
3695         * XplatUIX11.cs: Make sure that we don't reset window managers if
3696         we already have one (ie the window is an MDI window).
3697
3698 2006-09-28  Chris Toshok  <toshok@ximian.com>
3699
3700         * MainMenu.cs: fix #79405 by way of a disgusting hack.  all the
3701         menu code really needs going over.
3702
3703 2006-09-27  Chris Toshok  <toshok@ximian.com>
3704
3705         * XplatUIX11.cs (SetWMStyles): more metacity wonderment.  turns
3706         out metacity ignores the MAXIMIZE_HORZ/VERT messages unless the
3707         window is maximizable.  So, we need to make sure that even if we
3708         clear the border/wm frame of those functions, they're still
3709         available (basically, we remove the decoration without removing
3710         the function).  Half the fix for #79338.
3711
3712 2006-09-27  Chris Toshok  <toshok@ximian.com>
3713
3714         * DataGrid.cs (ProcessGridKey): implement Shift-Tab handling.
3715         Fixes bug #79515.
3716
3717 2006-09-27  Chris Toshok  <toshok@ximian.com>
3718
3719         * Splitter.cs: reorder things a bit so that we don't actually
3720         draw/move the splitter until after calling OnSplitterMoving.  This
3721         lets users cancel/disallow the movement by explicitly setting
3722         event.SplitX/SplitY.  Fixes #79372.
3723
3724 2006-09-27  Jackson Harper  <jackson@ximian.com>
3725
3726         * XplatUIX11.cs: Don't hide the caret when it is being destroyed,
3727         because it is most likely on a window being destroyed, and that
3728         will give us an X11 error.
3729
3730 2006-09-27  Chris Toshok  <toshok@ximian.com>
3731
3732         * PropertyGridView.cs: half of the fix for #78190.  Clicking on
3733         the dropdown button now toggles between showing and hiding the
3734         dropdown.  Also, get rid of dropdown_form_showing and just use
3735         dropdown_form.Visible.  We still don't do a grab, but I'll leave
3736         that part to someone who has handled Capture-fu before.
3737
3738 2006-09-27  Chris Toshok  <toshok@ximian.com>
3739
3740         * DataGrid.cs: return false if alt isn't pressed when '0' is
3741         pressed.  this keeps the '0' key from being swallowed, and fixes
3742         bug #79350.
3743
3744 2006-09-27  Chris Toshok  <toshok@ximian.com>
3745
3746         * ComboBox.cs: use Invalidate when scrolling the dropdown list.
3747         Calling Refresh (in response to a scrollbar event) screws up the
3748         scrollbar painting.  Fixes bug #78923.
3749
3750 2006-09-27  Chris Toshok  <toshok@ximian.com>
3751
3752         * Theme.cs (SystemResPool): make the "if hashtable[key] == null
3753         then insert into hashtable" blocks threadsafe.
3754
3755 2006-09-27  Chris Toshok  <toshok@ximian.com>
3756
3757         * MessageBox.cs (CreateParams): the styles should be |'ed with our
3758         baseclass's, since otherwise the
3759         ControlBox/MinimizeBox/MaximizeBox assignments above have no
3760         effect.  This gets the close button back in messageboxes.
3761
3762 2006-09-27  Chris Toshok  <toshok@ximian.com>
3763
3764         * XplatUIX11.cs: make StyleSet and ExStyleSet check == with the
3765         flag, not just != 0.  this makes flags that are actually multiple
3766         bits (like WS_CAPTION) work.  fixes bug #79508.
3767
3768 2006-09-27  Jordi Mas i Hernandez <jordimash@gmail.com>
3769
3770         * PageSetupDialog.cs: add support for getting and settings the 
3771         paper size, source and orientation.
3772
3773 2006-09-26  Chris Toshok  <toshok@ximian.com>
3774
3775         * XplatUIX11.cs (SetWMStyles): turns out when SYSMENU is not set
3776         and caption == "", we need to remove the resize handles as well as
3777         the title bar.
3778
3779         * Control.cs (set_Text): turns out that setting Text on a form
3780         should change the WM styles on the window, since if ControlBox ==
3781         false, the only way to get a window border is to have a non-""
3782         Text property.  check winforms/forms/text.cs for an example.  so,
3783         call both XplatUI.SetWindowStyle and XplatUI.Text here to properly
3784         update both window styles and title.  This fixes a lot of dialogs
3785         (including the preferences dialog in MonoCalendar.)
3786
3787 2006-09-26  Chris Toshok  <toshok@ximian.com>
3788
3789         * XplatUIWin32.cs (SetParent): if parent == IntPtr.Zero (and the
3790         control isn't a Form), call Win32ShowWindow to hide the window,
3791         but don't update the control Visible property.  When we reparent
3792         back to a parent control, call SetVisible in order for the
3793         window's visibility to be reinstated.
3794
3795         * XplatUIX11.cs (SetParent): if hwnd.parent == null, reparent to
3796         the FosterParent.
3797
3798         * Control.cs (ControlCollection.Remove): remove that value.Hide()
3799         call for good, since it breaks MonoCalendar (and other things I'm
3800         sure.) Also, set all_controls to null *after* the owner calls,
3801         which end up regenerating it.
3802         (ChangeParent): allow new_parent to be == null, passing
3803         IntPtr.Zero down to XplatUI.
3804
3805         this fixes #79294 the right way.
3806
3807 2006-09-26  Mike Kestner  <mkestner@novell.com>
3808
3809         * GridEntry.cs : internal SetParent method.
3810         * PropertyGrid.cs : attach to property changed on the proper
3811         target if we have a hierarchical grid with subobjects. Setup
3812         GridItem.Parent for hierarchical items.
3813         * PropertyGridView.cs : Set value on the correct target for
3814         hierarchical grids. [Fixes #78903]
3815
3816 2006-09-26  Chris Toshok  <toshok@ximian.com>
3817
3818         * Control.cs (ChildNeedsRecreating): this should return true if
3819         either we're being recreated and the child is in our list, or our
3820         parent is waiting for our recreation.
3821
3822 2006-09-26  Chris Toshok  <toshok@ximian.com>
3823
3824         * Control.cs (ControlCollection.Remove): reinstate the
3825         value.Hide() call as suggested in bug #79294.
3826
3827 2006-09-26  Sebastien Pouliot  <sebastien@ximian.com>
3828
3829         * XplatUIX11.cs: Fixed SetCursorPos to move the cursor to screen
3830         coordinates (versus a relative move).
3831
3832 2006-09-26  Chris Toshok  <toshok@ximian.com>
3833
3834         * Control.cs: rework child recreation a little bit.  It turns out
3835         that we race between the DestroyNotify the WM_DESTROY message.  If
3836         the parent gets its DestroyNotify before the child gets the
3837         WM_DESTROY message, the child ends up not recreating (since the
3838         parent finishes its recreation on DestroyNotify, and the child
3839         checks ParentIsRecreating.)
3840
3841         So, instead we store off a list of all the child controls which
3842         need to be recreated when the parent control starts to recreate
3843         itself.  Then, when child controls get their WM_DESTROY message we
3844         check to see if they're in the parent's pending recreation list,
3845         and if so, we recreate.  This removes all dependency on ordering
3846         from the code and fixes the initial MonoCalendar upgrade dialog.
3847         
3848 2006-09-26  Jackson Harper  <jackson@ximian.com>
3849
3850         * TextControl.cs: Use the Line to get the length of the line,
3851         since soft line breaks can change the end line.
3852
3853 2006-09-26  Chris Toshok  <toshok@ximian.com>
3854
3855         * Control.cs (ControlCollection.AddImplicit): don't add the
3856         control again if it's already in one of our lists.  This keeps us
3857         from adding controls over and over again for comboboxes when their
3858         handle gets recreated (as the combobox adds implicit controls in
3859         OnHandleCreated).  Fixes the X11 errors in bug #79480.
3860
3861 2006-09-26  Jackson Harper  <jackson@ximian.com>
3862
3863         * TextControl.cs: When deleting characters make sure that any
3864         orphaned zero lengthed tags get deleted.
3865         - Fix ToString for zero lengthed tags.
3866
3867 2006-09-25  Jackson Harper  <jackson@ximian.com>
3868
3869         * TextControl.cs: When getting a tag at the location there can be
3870         multiple tags at the same spot, these are 0-lengthed tags that
3871         appear when extra formatting has been stuck in a location.  We
3872         need to pull out the last of these 0 lengthed tags.
3873
3874 2006-09-25  Jackson Harper  <jackson@ximian.com>
3875
3876         * TextControl.cs: Fix print out in debug method.
3877         * TextBoxBase.cs: When text is set bail if we are setting to the
3878         previous value.
3879         
3880 2006-09-24  Alexander Olk  <alex.olk@googlemail.com>
3881
3882         * FontDialog.cs: Fixed the up/down arrow keys issue from bug #79478.
3883           It is now possible to change the selected index in a FontXXXListBox
3884           with the up and down arrow keys from the FontXXXTextBoxes.
3885           Also, send the FontXXXTextBox mouse wheel event to the corresponding
3886           FontXXXListBoxes to match ms.
3887
3888 2006-09-22  Sebastien Pouliot  <sebastien@ximian.com>
3889
3890         * SystemInformation.cs: Return a clone of the theme's MenuFont because
3891         anyone can dispose it, anytime. All other properties returns enums, 
3892         structs or basic types so they don't need such tricks.
3893
3894 2006-09-22  Jackson Harper  <jackson@ximian.com>
3895
3896         * XplatUI.cs:
3897         * XplatUIWin32.cs:
3898         * Clipboard.cs:
3899         * DataFormats.cs:
3900         * XplatUIOSX.cs:
3901         * XplatUIDriver.cs: Update interface to add a primary selection
3902         flag, so the driver can use the primary selection buffer if
3903         needed.
3904         * XplatUIX11.cs: Allow the clipboard to retrieve from PRIMARY.
3905
3906         * RichTextBox.cs: We need to supply the data object to paste now
3907         (so we can choose to supply CLIPBOARD or PRIMARY).
3908         * TextBoxBase.cs: Supply data object to paste (see above).
3909         - Middle click uses the primary selection data object.
3910         
3911 2006-09-21  Chris Toshok  <toshok@ximian.com>
3912
3913         * XplatUIX11.cs: first little cleanup of the StyleSet (...) block
3914         of SetWMStyles.  It's still a rat's nest and is largely
3915         order-dependent which I dislike immensely.  This also fixes the X
3916         button disappearing from toplevel forms.
3917
3918 2006-09-21  Mike Kestner <mkestner@novell.com>
3919
3920         * ListBox.cs: move Jordi's click/dblclick raising code to the
3921         mouse up handler.
3922
3923 2006-09-21  Jordi Mas i Hernandez <jordimash@gmail.com>
3924
3925         * ListBox.cs: Fixes 79450
3926
3927 2006-09-21  Mike Kestner <mkestner@novell.com>
3928
3929         * TreeView.cs: guard against disposed conditions in UpdateScrollbars
3930         to deal with people updating the TreeNodeCollection after the tree
3931         is disposed.  "Fixes" 79330.
3932
3933 2006-09-20  Jackson Harper <jackson@ximian.com>
3934
3935         * TextControl.cs: Push the cursor record onto the undo stack
3936         before the delete action. This fixes 78651.
3937
3938 2006-09-20  Jonathan Chambers  <joncham@gmail.com>
3939
3940         * PropertyGridView.cs: Remove WindowStyles.WS_VISIBLE from
3941         CreateParams. Fixes 79329.
3942
3943 2006-09-19  Chris Toshok  <toshok@ximian.com>
3944
3945         * XplatUIX11.cs: a couple of blanket code massage passes to clean
3946         things up a bit.  First, get rid of the NetAtoms array (and the NA
3947         enum), and just embed the atoms as static fields.  Also, add a
3948         couple of functions (StyleSet and ExStyleSet) to clean up all the
3949         bitmask testing of styles.
3950
3951         * X11Structs.cs: remove the NA enum, not needed anymore.
3952         
3953 2006-09-19  Chris Toshok  <toshok@ximian.com>
3954
3955         * XplatUIX11.cs: apply Alexander's tool window fix for bug #79245
3956         (mapping them to _NET_WM_WINDOW_TYPE_UTILITY).  and add a little
3957         added cleanup to get MessageBox titles appearing again, which were
3958         broken by my earlier fix for caption-less/ControlBox-less windows.
3959
3960 2006-09-18  Jonathan Pobst <monkey@jpobst.com>
3961
3962         * ToolStripArrowRenderEventArgs.cs, ToolStripArrowRenderEventHandler.cs,
3963           ToolStripContentPanelRenderEventArgs.cs, ToolStripContentPanelRenderEventHandler.cs,
3964           ToolStripGripRenderEventArgs.cs, ToolStripGripRenderEventHandler.cs,
3965           ToolStripItemClickedEventArgs.cs, ToolStripItemClickedEventHandler.cs,
3966           ToolStripItemEventArgs.cs, ToolStripItemEventHandler.cs,
3967           ToolStripItemImageRenderEventArgs.cs, ToolStripItemImageRenderEventHandler.cs,
3968           ToolStripItemRenderEventArgs.cs, ToolStripItemRenderEventHandler.cs,
3969           ToolStripItemTextRenderEventArgs.cs, ToolStripItemTextRenderEventHandler.cs,
3970           ToolStripPanelRenderEventArgs.cs, ToolStripPanelRenderEventHandler.cs,
3971           ToolStripRenderEventArgs.cs, ToolStripRenderEventHandler.cs,
3972           ToolStripSeparatorRenderEventArgs.cs, ToolStripSeparatorRenderEventHandler.cs:
3973             Inital import.
3974         * ToolStripPanel.cs, ToolStripContentPanel.cs, ToolStripSeparator.cs,
3975           ToolStripButton.cs: Stubs needed for above.
3976         * ToolStrip.cs, ToolStripItem.cs: Stub a few variables/properties for above.
3977
3978 2006-09-15  Chris Toshok  <toshok@ximian.com>
3979
3980         * XplatUIX11.cs:
3981         - make the MessageQueues hashtable Synchronized.
3982         
3983         - SendMessage: if the Hwnd is owned by a different thread, use the
3984         AsyncMethod stuff to dispatch the SendMessage on the hwnd's
3985         thread.  Fixes bug #79201.
3986
3987 2006-09-15  Chris Toshok  <toshok@ximian.com>
3988
3989         * XplatUIX11.cs (SetWMStyles): rework the #79368 fix slightly.  If
3990         ControlBox == false, we disallow maximize/minimize/close.  If the
3991         form Caption is "" we also disallow move (and get rid of the Title
3992         decoration).  Unfortunately, regardless of how things are set,
3993         we're stuck with the Title and WM menu.
3994
3995 2006-09-15  Chris Toshok  <toshok@ximian.com>
3996
3997         * Application.cs: add locking around the static message_filters
3998         ArrayList, part of #79196.
3999
4000 2006-09-15  Chris Toshok  <toshok@ximian.com>
4001
4002         * XplatUIX11.cs (SetWMStyles): if Form.Text == "" and
4003         Form.ControlBox == false, the window has no titlebar nor resize
4004         handles.  fixes bug #79368.
4005
4006 2006-09-15  Chris Toshok  <toshok@ximian.com>
4007
4008         * TextBoxBase.cs: in CalculateScrollBars make sure LargeChange is
4009         >= 0.  Fixes bug #79370.
4010
4011 2006-09-15  Jonathan Pobst <monkey@jpobst.com>
4012         * FlowLayoutPanel.cs, FlowLayoutSettings.cs: Initial commit.
4013         * Control.cs:
4014             Add properties: LayoutEngine, Margin, DefaultMargin.
4015             Add method: GetPreferredSize.
4016             Move layout logic from PerformLayout to layout engines. 
4017
4018 2006-09-13  Chris Toshok  <toshok@ximian.com>
4019
4020         * XplatUIX11.cs: more destroy work.  Jackson pointed out that my
4021         fix for #79326 broke #78718, so this change addresses that.
4022
4023         - in SendWMDestroyMessages remove the call to
4024         CleanupCachedWindows, since we might be recreating the control and
4025         need to maintain the references to right Hwnd handles.  Also, set
4026         the zombie flag to true for each of the children in the hierarchy
4027         instead of calling hwnd.Dispose.  This will cause GetMessage to
4028         ignore all events for the window except for DestroyNotify.
4029
4030         - In GetMessage, ignore messages except for DestroyNotify for
4031         zombie hwnds.
4032         
4033         * Control.cs: revert the is_recreating fix from the last
4034         ChangeLog.  It's definitely "right", but it breaks switching from
4035         an MDI form to a non-MDI form.  Will need to revisit that.
4036
4037         * Hwnd.cs: add a zombie flag, which means "the
4038         client_window/whole_window handles are invalid, but we're waiting
4039         for the DestroyNotify event to come in for them".  Set the flag to
4040         false explicitly if setting WholeWindow/ClientWindow, and also
4041         when Disposing.
4042         
4043 2006-09-13  Chris Toshok  <toshok@ximian.com>
4044
4045         * XplatUIX11.cs: rework window destruction slightly.
4046
4047         - when destroying the windows associated with a control, we don't
4048         need 2 separate XDestroyWindow calls.  Just the one for the
4049         whole_window (or for client_window if whole_window is somehow
4050         IntPtr.Zero -- can this happen?) is enough.
4051
4052         - reworked SendWMDestroyMessages slightly, so we always dispose
4053         the child control hwnd's after sending the messages.
4054         
4055         - refactored out the ActiveWindow/FocusWindow/Caret clearing from
4056         the two places it was used (one was even using hwnd.Handle and the
4057         other hwnd.client_window.  ugh), adding another call in
4058         SendWMDestroyMessages.  We need this new call because now the
4059         DestroyNotify events in the queue will be ignored for the child
4060         controls (as their hwnd's were disposed, and the window id's
4061         removed from the hashtable in SendWMDestroyMessages.) fun, eh?
4062
4063         - this fixes bug #79326.
4064
4065 2006-09-13  Chris Toshok  <toshok@ximian.com>
4066
4067         * Control.cs: don't always set is_recreating to false at the end
4068         of RecreateHandle, since sometimes we're not done (and won't be
4069         until WndProc handles the WM_DESTROY message).  Also, set
4070         is_recreating to false in the WM_DESTROY handling code.  Part of
4071         the fix for bug #79326.
4072
4073 2006-09-13  Miguel de Icaza  <miguel@novell.com>
4074
4075         * X11DesktopColors.cs: Start the droppage of debugging messages.
4076
4077         * FileDialog.cs: Store the configuration file in ~/.mono/mwf_config
4078
4079 2006-09-13  Jonathan Pobst <monkey@jpobst.com>
4080
4081         * SplitContainer.cs, SplitterPanel.cs: Initial implementation [2.0].
4082
4083 2006-09-12  Chris Toshok  <toshok@ximian.com>
4084
4085         * DataGrid.cs (get_ListManager): if the list_manager is null, try
4086         to create it using SetDataSource.  Fixes bug #79151.
4087
4088 2006-09-11  Chris Toshok  <toshok@ximian.com>
4089
4090         * XEventQueue.cs: add a DispatchIdle property.
4091
4092         * XplatUIX11.cs (UpdateMessageQueue): only emit the Idle event if
4093         either the queue is null, or the queue has DispatchIdle set to
4094         true.
4095         (DoEvents): set queue.DispatchIdle to false around the
4096         peek/translate/dispatch message loop in this method.  This keeps
4097         Application.Doevents from emitting idle events.  Part of the fix
4098         for #78823.
4099
4100 2006-09-11  Chris Toshok  <toshok@ximian.com>
4101
4102         * DataGrid.cs (set_DataSource): make this work for both the
4103         winforms/datagrid test and ReportBuilder.  It seems as though when
4104         we've created a ListManager (or maybe it's if we have a
4105         BindingContext?), when we set the DataSource it clears the
4106         DataMember to "".  otherwise we reuse the datamember.  Fixes bug
4107         #79333.
4108
4109 2006-09-11  Chris Toshok  <toshok@ximian.com>
4110
4111         * XplatUIX11.cs: deal with queue being null, which happens in all
4112         the Clipboard functions.  Fixes one of the two problems mentioned
4113         in #78612.
4114
4115 2006-09-11  Chris Toshok  <toshok@ximian.com>
4116
4117         * MenuAPI.cs: rework OnMouseUp a bit so that releasing the mouse
4118         button on various spots (including outside the menu) works closer
4119         to MS, and doesn't crash.  Fixes #79343.
4120
4121 2006-09-11  Gert Driesen  <drieseng@users.sourceforge.net>
4122
4123         * ListView.cs: Do not initialize item_sorter in init. To match MS,
4124         return null for ListViewItemSorter if View is SmallIcon or LargeIcon
4125         and the internal comparer is set. When a new ListViewItemSorter is set,
4126         sort the items. Use Enum.IsDefined to verify whether a valid SortOrder
4127         was specified. No further processing is necessary if SortOrder is set
4128         to it's current value. If Sorting is modified to None, and View is
4129         neither SmallIcon nor LargeIcon then: on 2.0 profile set item_sorter
4130         (either custom or our internal ItemComparer) to null, on 1.0 profile
4131         only set item_sorter to null if its our internal IComparer. If Sorting
4132         is modified to Ascending or Descending, then use our internal IComparer
4133         if none is set, and if the current IComparer is our internal one then:
4134         on 2.0 profile always replace it with one for new Sorting, and on 1.0
4135         profile only use new Sorting if view is not SmallIcon or LargeIcon. Use
4136         Enum.IsDefined to verify whether a valid View value is specified in
4137         its setter. Automatically sort listview items when listview is
4138         created. In Sort, do nothing if ListView is not yet created, or if
4139         no item_sorter is set (no Sorting was set, Sorting was explicitly set
4140         to None or ListViewItemSorter was set to null). Added Sort overload
4141         taking a bool to indicate whether the ListView should be redrawn when
4142         items are sorted (we use this in ListViewItemCollection to avoid double
4143         redraws). Modified our internal IComparer to take the sort order into
4144         account. In Add and AddRange methods of ListViewItemCollection, also
4145         call Sort if Sorting is None (necessary for SmallIcon and LargeIcon
4146         view), but use overload with noredraw option to avoid double redraw.
4147         On 2.0 profile, throw NotSupportedException when setting CheckBoxes to
4148         true when View is Tile, and do the same when attempting to set View to
4149         Tile when CheckBoxes is true. Avoid maintaining separate ArrayLists
4150         for selected/checked indices, as it involves overhead when sorting is
4151         done while these collections are not used all that often. Instead
4152         we'll build the indices on demand. Modified IList implementation of
4153         CheckedIndexCollection to use public methods if object is int.
4154         Modified CheckedListViewItemCollection to hide checked items if
4155         ListView.CheckBoxes is false. Removed LAMESPEC remark in 
4156         ListViewItemCollection as the .NET SDK docs have been fixed. Modified
4157         IList implementation in SelectedIndexCollection to use public methods
4158         if object is int. Modified SelectedListViewItemCollection to hide
4159         selected items if listview is not yet created.
4160         * ListViewItem.cs: CheckedIndices list no longer needs to be
4161         maintained separately (see ListView changes). Also clone font, fixes
4162         test failure.
4163
4164 2006-09-11  Mike Kestner  <mkestner@novell.com>
4165
4166         * ComboBox.cs: if we are updating the contents of the currently
4167         selected index, refresh the control or the textbox selection.
4168         [Fixes #79066]
4169
4170 2006-09-11  Mike Kestner  <mkestner@novell.com>
4171
4172         * ComboBox.cs (UpdateBounds): use SetBounds not SetBoundsCore since 
4173         the 'specified' logic has been moved there.  This seems like a bug 
4174         in Control.cs, since our current SetBoundsCore completely ignores 
4175         the specified parameter.  Peter's commit seems to indicate that is 
4176         the way the MS control implementation works.  [Fixes #79325]
4177
4178 2006-09-10  Jonathan Chambers  <joncham@gmail.com>
4179
4180         * XplatUI.cs: Set default_class_name to be composed
4181         of current domain id. This allows MWF to be loaded in multiple
4182         domains on Win32.
4183
4184 2006-09-09  Miguel de Icaza  <miguel@novell.com>
4185
4186         * X11Keyboard.cs: If we are unable to obtain the input method, do
4187         not call CreateXic to create the input context.   Should fix
4188         #78944/79276.
4189
4190 2006-09-08  Alexander Olk  <alex.olk@googlemail.com>
4191
4192         * MimeIcon.cs: Rewrote major parts. Dropped KDE support for now.
4193           Simplified gnome support by adding more pinvokes to get the
4194           icon for a file or mime type.
4195
4196 2006-09-08  Jackson Harper  <jackson@ximian.com>
4197
4198         * MenuAPI.cs: Deslect popup context menu items before closing the
4199         window, so that you don't see the previously selected item
4200         selected when you reopen the menu.
4201         * TextControl.cs: Update the cursor position even if we don't have
4202         focus.  This fixes typing in things like the ComboBox.  I'm not
4203         totally sure we should always set the visibility if we don't have
4204         focus, but couldn't find any corner cases where the cursor showed
4205         up when it shouldn't.
4206
4207 2006-09-08  Chris Toshok  <toshok@ximian.com>
4208
4209         * X11Keyboard.cs: In UpdateKeyState vkey can be any integer, but
4210         our arrays are length 256.  & 0xff before indexing.  Fixes the
4211         crash in bug #78077.
4212         
4213 2006-09-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4214
4215         * ThemeWin32Classic.cs: 
4216         * DateTimePicker.cs: Draw check box if DateTimePicker.ShowCheckBox
4217         is true. Handle that check box too.
4218
4219 2006-09-07  Chris Toshok  <toshok@ximian.com>
4220
4221         * MenuAPI.cs: move the PerformClick call to OnMouseUp.  Fixes bug
4222         79244.
4223
4224 2006-09-07  Chris Toshok  <toshok@ximian.com>
4225
4226         * Control.cs: in set_BackColor only do the work if
4227         background_color != value.
4228
4229         * XplatUIX11.cs: move the clearing of invalid areas (both client
4230         and nc) to the same block of code where we set (nc_)expose_pending
4231         to false.  That is, move it from PaintEventEnd to PaintEventStart,
4232         so things that cause invalidates from within OnPaint will trigger
4233         another call to OnPaint.  Fixes bug #79262.
4234
4235 2006-09-07  Alexander Olk  <alex.olk@googlemail.com>
4236
4237         * Theme.cs: Use correct icon for UIIcon.PlacesPersonal
4238         * FileDialog.cs: Fix typo
4239
4240 2006-09-07  Jackson Harper  <jackson@ximian.com>
4241
4242         * ThemeWin32Classic.cs:  oops, forgot to commit.  Draw the images
4243         for tab pages if they have any.
4244
4245 2006-09-06  Mike Kestner  <mkestner@novell.com>
4246
4247         * Splitter.cs: use the "current" rect when finishing drag handle
4248         to avoid an artifact demonstrated by resedit.exe.  [Fixes #79251]
4249
4250 2006-09-06  Mike Kestner  <mkestner@novell.com>
4251
4252         * Splitter.cs: draw the drag handle at X or Y instead of 0 to deal
4253         support offset splitters. [Fixes #79298]
4254
4255 2006-09-06  Alexander Olk  <alex.olk@googlemail.com>
4256
4257         * Mime.cs: Fixed a bug that could override the global mime type
4258           result.
4259
4260 2006-09-05  Jackson Harper  <jackson@ximian.com>
4261
4262         * TabControl.cs: Better calculation method for setting the slider
4263         pos. Prevents crashes on really wide tabs.
4264         - Draw Image on tab pages if an image list is used.
4265
4266 2006-09-02  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4267
4268         * MonthCalendar.cs: When Font changes, the Size should be
4269         updated to fit the new font's space requirements.
4270
4271 2006-09-02  Alexander Olk  <alex.olk@googlemail.com>
4272
4273         * ListBox.cs: If the items are cleared with Items.Clear set
4274           top_index to 0.
4275
4276 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4277
4278         * MonthCalendar.cs: Handle arrow keys as input keys. Also
4279         fire DateChanged event instead of DateSelected event when
4280         the date was changed by keyboard interaction.
4281
4282 2006-09-01  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4283
4284         * DateTimePicker.cs: Handle DateChanged for the associated
4285         month_calendar control, and set month_calendar.Font from 
4286         OnFontChanged method, as well as resize the height of the
4287         control when needed. Make PreferredHeight proportional.
4288
4289 2006-09-01  Chris Toshok  <toshok@ximian.com>
4290
4291         * DataGrid.cs: grr, stop overthinking the DataMember/DataSource
4292         properties.
4293
4294         * BindingContext.cs (HashKey.GetHashCode): use ^ instead of +.
4295
4296 2006-09-01  Peter Dennis Bartok  <pbartok@novell.com> 
4297
4298         * FileDialog.cs: Set ClientSize instead of window size, to allow space
4299           for decorations (Fixes #79219)
4300
4301 2006-09-01  Mike Kestner  <mkestner@novell.com>
4302
4303         * ComboBox.cs: first stab at sorting plus some selection handling
4304         fixes to bring us more in line with MS behavior.  Also switches back
4305         to index based selection.  Alternative patches for index-based 
4306         selection were provided by Jackson Harper, Carlos Alberto Cortez, 
4307         and latency@gmx.de on bug 78848.  I assume they were similar to this
4308         code I've had simmering in my tree forever.
4309         [Fixes #78848]
4310
4311 2006-09-01  Chris Toshok  <toshok@ximian.com>
4312
4313         * CurrencyManager.cs (ListChangedHandler): in the ItemAdded case,
4314         when setting list position guard against ending up with a -1 index
4315         (the other part of the fix for #78812).  Should probably make sure
4316         we don't need the analogous fix in the ItemDeleted case.
4317
4318         * DataGrid.cs:
4319         - in SetDataSource, work around the fact that the way
4320         OnBindingContextChanged is invoked will cause us to re-enter this
4321         method.  I'll remove the hack once I investigate
4322         OnBindingContextChanged.
4323
4324         - fix the logic in set_DataSource and set_DataMember (basically
4325         what to do if the other of the two is null.)
4326         
4327         - in OnListManagerItemChanged, we need to take into account the
4328         edit row when deciding whether or not to call RecreateDataGridRows
4329         (part of the fix for #78812).
4330
4331 2006-09-01  Jackson Harper  <jackson@ximian.com>
4332
4333         * Splitter.cs: Don't do anything if there is no control to affect
4334         (prevents us from crashing in weird tet cases).
4335         * TreeView.cs: Bounding box for the mouse movement reverting
4336         focus/selection back to previously selected node.  This matches
4337         MS, and makes the tree a lot more useable.
4338         * GroupBox.cs: Instead of drawing over the lines of the groupbox,
4339         use clipping so they are not drawn.  This fixes when the control
4340         is set to have a transparent background, or if it was over an
4341         image.
4342
4343 2006-09-01  Alexander Olk  <alex.olk@googlemail.com>
4344
4345         * MimeIcon.cs: Improved handling for reading default icons when
4346           using gnome (2.16 made it necessary). Check and read svg icons
4347           first, then 48x48 and then 32x32 icons.
4348
4349 2006-08-31  Chris Toshok  <toshok@ximian.com>
4350
4351         * DataGridTextBoxColumn.cs: only hide the textbox if it's still
4352         visible.
4353
4354         * DataGridTextBox.cs: Pass Tab's up to the datagrid by calling
4355         ProcessKeyPreview.  Fixes part of #77806.
4356
4357         * DataGrid.cs: big patch.
4358
4359         - revert the queueing up of DataSource/DataMember if inside
4360         BeginInit/EndInit calls.  That's not the way the datagrid achieves
4361         its delayed databinding.  Instead, call SetDataSource in
4362         OnBindingContextChanged.  This mimic's MS's behavior, and fixes
4363         #78811.
4364
4365         - Also, it wasn't mentioned in #78811, but the test case exhibits
4366         behavior that was lacking in our datagrid implementation - Columns
4367         that have mapping names that don't exist in the datasource's
4368         properties aren't shown.  Yuck.  To fix this I added the bound
4369         field to the column style, and basically any calculation to figure
4370         out anything about columns uses a loop to find the bound columns.
4371         still need to investigate if I can cache an array of the bound
4372         columns or if the indices must be the same.
4373
4374         - When setting CurrentCell, we no longer abort if the cell being
4375         edited was in the add row.  This fixes the other part of #77806.
4376
4377         - The new code also fixes #78807.
4378         
4379         * ThemeWin32Classic.cs: perpetrate the same disgusting
4380         column.bound field hack, and only render bound fields.
4381
4382 2006-08-31  Chris Toshok  <toshok@ximian.com>
4383
4384         * DataGridColumnStyle.cs: add bound field.  this field is true if
4385         the datasource has a property corresponding to the mapping name.
4386
4387         * DataGridTableStyle.cs: set the bound field on the column styles
4388         depending on whether or not we have a column for that property.
4389
4390 2006-08-31  Peter Dennis Bartok  <pbartok@novell.com> 
4391
4392         * Splitter.cs (SetBoundsCore): Don't ignore width/height of the 
4393           splitter control (fixes #79228)
4394
4395 2006-08-31  Chris Toshok  <toshok@ximian.com>
4396
4397         * DataGridColumnStyle.cs: we need to delay the assignment of
4398         property descriptor until the last possible moment due to the lazy
4399         databinding stuff in the datagrid.  Also, fix the exceptions
4400         thrown by CheckValidDataSource to match MS.
4401
4402 2006-08-31  Jackson Harper  <jackson@ximian.com>
4403
4404         * Form.cs: When activated select the active control, if there is
4405         no active control, we select the first control.
4406         * XplatUIX11.cs: If there is no focus control when we get a
4407         FocusIn event, find the toplevel form and activate it.  This
4408         occurs when you popup a window, it becomes the focus window, then
4409         you close that window, giving focus back to the main window.
4410
4411 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4412
4413         * MonthCalendar.cs: 
4414         * ThemeWin32Classic.cs: Cache Font in bold style, as well
4415         as StringFormat with Center alignments in MonthCalendar,
4416         instead of creating new ones when drawing the control. 
4417         Also, draw the month name in bold style.
4418
4419 2006-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
4420
4421         * Control.cs:
4422           - PerformLayout(): It would seem MS performs the fill even if the 
4423             control is not visible (part of #79218 fix)
4424           - ResetBackColor(): Use the setter to reset the color, to allow
4425             overriders to catch the change.
4426         * Form.cs:
4427           - .ctor: Call UpdateBounds to adjust client rectangle (part of #79218 fix)
4428           - CreateHandle(): dito (part of $79218 fix)
4429           - Don't set an icon if we have a dialog
4430         * ScrollableControl.cs:
4431           - set_AutoScrollMinSize: Setting the property enables AutoScroll (#79218)
4432           - ScrollIntoView(): No need to scroll if control is already visible
4433             (resolves fixme and fixes #79218)
4434
4435 2006-08-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4436
4437         * MonthCalendar.cs: Change proportions in SingleMonthSize
4438         to match the aspect of the original control.
4439
4440 2006-08-29  Alexander Olk  <alex.olk@googlemail.com>
4441
4442         * XplatUIX11.cs: Fix for a metacity/X problem where windows don't
4443           get updated when they get maximized.
4444
4445 2006-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
4446
4447         * XplatUIX11.cs: Handle windows with no border (Fixes part of #79160)
4448
4449 2006-08-29  Chris Toshok  <toshok@ximian.com>
4450
4451         * XplatUIX11.cs: when destroying the FocusWindow, send KILLFOCUS.
4452
4453 2006-08-29  Jackson Harper  <jackson@ximian.com>
4454
4455         * TreeView.cs: Need to track selected node and highlighted node,
4456         they aren't always the same thing, when the mouse is down on a
4457         node it is hilighted, but not selected yet.
4458         - Do the HideSelection stuff right
4459         - Need to focus on rbutton mouse down. And redraw selection when
4460         right click is mouse upped.
4461
4462 2006-08-29  Mike Kestner  <mkestner@novell.com>
4463
4464         * ThemeWin32Classic.cs: draw selections for columns in FullRowSelect
4465         when SubItems.Count < Columns.Count.  [Fixes #79167]
4466
4467 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com> 
4468
4469         * TextControl.cs (FindCursor): Fix math error (Fixes #78402)
4470
4471 2006-08-28  Peter Dennis Bartok  <pbartok@novell.com>
4472
4473         * XplatUIX11.cs: Preempt the roundtrip for getting the location back
4474           from X. Only send based on ConfigureNotify if we don't have the
4475           correct location in hwnd (if the window manager moved us)
4476
4477 2006-08-28  Mike Kestner  <mkestner@novell.com>
4478
4479         * ListView.cs: remove a TODO. 
4480         * ThemeWin32Classic.cs: implement HideSelection support for ListView.
4481         [Fixes ListView part of #79166]
4482
4483 2006-08-28  Mike Kestner  <mkestner@novell.com>
4484
4485         * ListView.cs: move wheel handler to parent since it is focused
4486         instead of the item_control now.  [Fixes #79177]
4487
4488 2006-08-28  Mike Kestner  <mkestner@novell.com>
4489
4490         * ThemeWin32Classic.cs: only highlight subitems in fullrowselect
4491         when the control is focused. [Fixes #79171]
4492
4493 2006-08-28  Mike Kestner  <mkestner@novell.com>
4494
4495         * ListView.cs: size the item and header controls for empty and
4496         unscrollable views.
4497         * ThemeWin32Classic.cs: draw disabled backgrounds.
4498         [Fixes #79187]
4499
4500 2006-08-28  Chris Toshok  <toshok@ximian.com>
4501
4502         * Form.cs: remove unused "active_form" static field.
4503
4504         * Hwnd.cs: lock around accesses to static windows collection.
4505
4506         * Application.cs: lock threads in Exit ().
4507
4508 2006-08-28  Chris Toshok  <toshok@ximian.com>
4509
4510         * NativeWindow.cs: lock around accesses to window_collection.
4511         
4512 2006-08-28  Chris Toshok  <toshok@ximian.com>
4513
4514         * Control.cs: err, fix this the right way, by locking on controls
4515         when using it.  not by making it synchronized.
4516
4517 2006-08-28  Chris Toshok  <toshok@ximian.com>
4518
4519         * Control.cs: make the static "controls" field synchronized, as it
4520         gets updated from multiple threads.
4521
4522 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4523
4524         * XplatUIX11.cs: PostQuitMessage is thread-specific not app-specific.
4525           Prevent other threads from exiting when calling thread sets quit state.
4526         * XEventQueue.cs: Added PostQuitState property
4527
4528 2006-08-27  Chris Toshok  <toshok@ximian.com>
4529
4530         * AsyncMethodData.cs: add a slot for the window handle.
4531
4532         * XplatUIX11.cs (SendAsyncMethod): send the event to the right
4533         window (the destination control's window, not the foster window).
4534
4535         * Control.cs (BeginInvokeInternal): store the window's handle in
4536         the AsyncMethodData.
4537         
4538
4539 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com>
4540
4541         * XplatUIX11.cs:
4542           - PostQuitMessage: Removed resetting S.D display handle, we might have
4543             another loop started after calling PostQuitMessage (Fixes #79119)
4544           - Created destructor to reset S.D handle
4545
4546 2006-08-27  Peter Dennis Bartok  <pbartok@novell.com> 
4547
4548         * XplatUIX11.cs (SetCursor): Issue flush after setting the cursor (#79168)
4549
4550 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4551
4552         * TextControl.cs (Insert): Update the caret position even if we don't
4553           have a handle yet, just don't call the driver in that case.
4554         * TextBoxBase.cs (set_SelectedText): Set the Start and End selection
4555           to the end of the new selection text (Fixes #79184)
4556
4557 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4558
4559         * Form.cs (Activate): Only activate if the handle is created)
4560         * Control.c:
4561           - Mark window as invisible when it's disposed
4562           - Check if window handle is created when setting window visible, 
4563             instead of relying just on the is_created variable
4564           - Check if object is disposed when creating the control (Fixes #79155)
4565
4566 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4567
4568         * ScrollableWindow.cs (ScrollWindow): Don't actually perform layouting
4569           when allowing layout again. Otherwise we re-generate the anchoring 
4570           distance to the border again and actually alter what the user wanted
4571           This is ugly, it'd be better if we used DisplayRectangle instead of
4572           ClientRectangle for Control.UpdateDistances, but that causes us to
4573           have other problems (initial anchoring positons would be wrong)
4574           (Fixes #78835)
4575
4576 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4577
4578         * Control.cs:
4579           - The size and location setters shouldn't go directly to 
4580             SetBoundsCore, but to SetBounds, which triggers layout on the
4581             parent, then calls SetBoundsCore. (Related to fix for #78835)
4582           - SetBounds: Moved actual location update code into this function
4583             from SetBoundsCore, to match MS. Added call to PerformLayout if
4584             we have a parent (to trigger resizing of anchored parents if the 
4585             child size has changed (see testcase for #78835) 
4586         * ListBox.cs, Form.cs: Call SetBounds instead of SetBoundsCore to match 
4587           new control code
4588         * ScrollableControl.cs (CalculateCanvasSize): Use shortcut variable
4589
4590 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4591
4592         * XplatUIX11.cs: Don't reset the DisplayHandle that's stored in
4593           System.Drawing when a toplevel window gets closed; there might
4594           be other toplevel windows belonging to the same app (Fixes #78052)
4595
4596 2006-08-26  Alexander Olk  <alex.olk@googlemail.com>
4597
4598         * FileDialog.cs: After reading FileDialog settings from mwf_config
4599           use Desktop prefix only if a real folder doesn't exist anymore.
4600         * FontDialog.cs: Added char sets.
4601           It is now possible to select the font, size or style with the
4602           textboxes.
4603
4604 2006-08-25  Kornél Pál  <kornelpal@gmail.com>
4605
4606         * PrintPreviewDialog.cs: Use assembly name constants.
4607
4608 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4609
4610         * XplatUIWin32.cs (ScrollWindow): Use clipping rectangle arg (prevents
4611           scrollbar from whacking it's buttons)
4612
4613 2006-08-24  Chris Toshok  <toshok@ximian.com>
4614
4615         * ScrollableControl.cs: fix #78271.  There's a lot of misc stuff
4616         in this patch (aggregating setting Left/Top/Width/Height to
4617         setting Bounds on the scrollbars), but the crux of the fix is in
4618         Recalculate, where we scroll by the remaining scroll_position if
4619         we're hiding a scrollbar.  The 2*$5 reward in the comment is
4620         serious.
4621
4622 2006-08-24  Jackson Harper  <jackson@ximian.com>
4623
4624         * MdiClient.cs:
4625         * MdiWindowManager.cs: If the form is made a non-mdi window we
4626         need to remove the form closed event so that closing forms works
4627         correctly.
4628
4629 2006-08-24  Jackson Harper  <jackson@ximian.com>
4630
4631         * Control.cs: Make IsRecreating internal so that the driver can
4632         check it
4633         - Temporarily remove the Hide when controls are removed, its
4634         making a whole bunch of things not work because visibility isn't
4635         getting reset elsewhere correctly
4636         * Form.cs: Need to do a full handle recreation when the mdi parent
4637         is set.
4638         * XplatUIX11.cs: If we are recreating handles don't dispose the
4639         HWNDs.  What was happening is the handles were being recreated in
4640         SendWMDestroyMessages, but then flow continued on in that method
4641         and destroyed the new handles.
4642
4643 2006-08-23  Jackson Harper  <jackson@ximian.com>
4644
4645         * Form.cs: MdiClient is always at the back of the bus
4646         * Control.cs: When the order of items in the collection is changed
4647         we need to reset the all_controls array
4648         - do the same sorta setup thats done when adding a control when a
4649         control is set on the collection.
4650
4651 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com>
4652
4653         * TextBoxBase.cs (get_Text): Return an empty array if our document
4654           is empty (fixes #79052)
4655
4656 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4657
4658         * Control.cs: We should call IsInputChar on only on WM_CHAR but not
4659           on WM_SYSCHAR messages (fixes #79053)
4660
4661 2006-08-23  Chris Toshok  <toshok@ximian.com>
4662
4663         * DataGrid.cs: fix flickering when scrolling vertically.
4664
4665 2006-08-23  Chris Toshok  <toshok@ximian.com>
4666
4667         * DataGrid.cs (EndEdit): only invalidate the row header when we
4668         need to.
4669
4670 2006-08-23  Chris Toshok  <toshok@ximian.com>
4671
4672         * ThemeWin32Classic.cs: fix the clip munging of the datagrid paint
4673         methods.  fixes the flicker when scrolling around.
4674
4675 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4676
4677         * FileDialog.cs: Making sure the control is created before we get a 
4678           chance to use it with BeginInvoke (Fixes #79096)
4679
4680 2006-08-23  Chris Toshok  <toshok@ximian.com>
4681
4682         * ThemeWin32Classic.cs (DataGridPaintRows): calculate the proper
4683         width to use when painting the rows.
4684
4685 2006-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
4686
4687         * TextBoxBase.cs:
4688           - Throw ArgumentException if a negative value is passed to SelectionLength
4689           - Update the selection end if start is moved. end needs to be always
4690             after start. (Fixes #79095)
4691           - Track selection length; MS keeps the selection length even if start
4692             is changed; reset on all other operations affection selection
4693
4694 2006-08-22  Jackson Harper  <jackson@ximian.com>
4695
4696         * TreeView.cs: Make sure both scrollbars get displayed and sized
4697         correctly when the other bar is visible.
4698         - Use the original clip rectangle for checking if the area between
4699         the two scrollbars is visible, not the viewport adjusted clipping
4700         rectangle.
4701
4702 2006-08-22  Jackson Harper  <jackson@ximian.com>
4703
4704         * Binding.cs: We don't use IsBinding because it requires the
4705         control to be created, which really shouldn't be necessary just to
4706         set a property on the control.
4707
4708 2006-08-21  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4709
4710         * ComboBox.cs: Some CB.ObjectCollection methods must throw
4711         ArgumentNullReferenceException when the argument is null.
4712
4713 2006-08-21  Jackson Harper  <jackson@ximian.com>
4714
4715         * Timer.cs: Track the thread that the timer is started in (NOT
4716         CREATED), this way messages for it will only be triggered on its
4717         queue.
4718         * XEventQueue.cs: Track the timers here, this makes timers per
4719         thread, like MS.
4720         * XplatUIX11.cs: The timers are moved to the XEventQueue.
4721
4722 2006-08-19  Chris Toshok  <toshok@ximian.com>
4723
4724         * XplatUIX11.cs: after further communication with pdb, we get the
4725         best of both worlds.  SetZOrder working for un-Mapped windows, and
4726         no X errors for un-mapped windows.
4727
4728 2006-08-19  Chris Toshok  <toshok@ximian.com>
4729
4730         * XplatUIX11.cs (SetZOrder): remove the if (!hwnd.mapped) check,
4731         as it was causing pdn toolbars to not have the correct stacking.
4732
4733 2006-08-18  Mike Kestner  <mkestner@novell.com> 
4734
4735         * ListView.cs : guard against negative ClientArea.Width in scrollbar
4736         calculation.  Not sure why control should ever be setting a negative
4737         width though.  Fixes #78931.
4738
4739 2006-08-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4740
4741         * ComboBox.cs: Throw ArgumentNullException when adding/modifyng
4742         null items in ObjectCollection class.
4743         * ListBox.cs.: Likewise.
4744
4745 2006-08-18  Atsushi Enomoto  <atsushi@ximian.com>
4746
4747         * ThemeNice.cs, ThemeClearlooks.cs : remove RadioButton_DrawFocus()
4748           as the base method in ThemeWin32Classic should work fine.
4749           Fixed bug #78607.
4750
4751 2006-08-18  Jackson Harper  <jackson@ximian.com>
4752
4753         * Binding.cs: When validating if the value entered doesn't convert
4754         properly reset to the old value.
4755         * RadioButton.cs: Don't fire click when we get focus.
4756
4757 2006-08-18  Jackson Harper  <jackson@ximian.com>
4758
4759         * FileDialog.cs: Paint the selection on the directory combobox the
4760         same way as on MS. 
4761
4762 2006-08-17  Jackson Harper  <jackson@ximian.com>
4763
4764         * ErrorProvider.cs: Don't allow the error control to be selected.
4765         * Control.cs: Don't send the SetFocus messages, the control
4766         activation will do this, and if we do it blindly here validation
4767         does not work.
4768
4769 2006-08-17  Jackson Harper  <jackson@ximian.com>
4770
4771         * Control.cs:
4772         * ContainerControl.cs: Make validation events fire in the correct
4773         order.  TODO: For some reason the first validation event is not
4774         getting fired.
4775
4776 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4777
4778         * ComboBox.cs : some null guarding for ComboListBox.Scroll.
4779
4780 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4781
4782         * ComboBox.cs : implement scroll wheel support for popped-down
4783         state. Fixes #78945. 
4784
4785 2006-08-17  Jackson Harper  <jackson@ximian.com>
4786
4787         * TreeView.cs: Specify treeview actions (old patch that didn't get
4788         committed for some reason).
4789         - Don't let the mouse wheel scroll us too far.  Just want to make
4790         the bottom node visible, not scroll it all the ways to the top.
4791
4792 2006-08-17  Jackson Harper  <jackson@ximian.com>
4793
4794         * XplatUIX11.cs: Mouse wheel events go to the focused window.
4795
4796 2006-08-17  Mike Kestner  <mkestner@novell.com> 
4797
4798         * ComboBox.cs : don't do mouseover selection in simple mode.
4799
4800 2006-08-16  Jackson Harper  <jackson@ximian.com>
4801
4802         * Form.cs: Fire the closing events for all the mdi child windows
4803         when a window is closed.  If the cancel args are set to true, the
4804         main window still gets the event fired, but it doesn't not close.
4805         * MdiWindowManager.cs: Do this closing cleanup in a Closed
4806         handler, instead of when the button is clicked, so cancelling the
4807         close works correctly.
4808         * ComboBox.cs: Send the mouse down to the scrollbar.
4809
4810 2006-08-16  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4811
4812         * ListBox.cs: When passing 'null' to SelectedItem,
4813         set SelectedIndex to -1, to unselect items. This is the
4814         observed behaviour in .Net.
4815
4816 2006-08-16  Peter Dennis Bartok  <pbartok@novell.com> 
4817
4818         * TextBoxBase.cs: Overriding HandleClick to get clicks in spite of
4819           MS flags saying there won't be any. (fixes #78800)
4820         * Control.cs (HandleClick): Made virtual
4821
4822 2006-08-16  Atsushi Enomoto  <atsushi@ximian.com>
4823
4824         * PageSetupDialog.cs : use Yard-Pound units only in en-GB and en-US
4825           cultures. Fixed bug #78399.
4826
4827 2006-08-16  Jackson Harper  <jackson@ximian.com>
4828
4829         * Form.cs: Use the MdiClients MdiChildren property to access
4830         MdiChildren instead of creating the array from the child controls.
4831         * MdiClient.cs: Maintain a separate array of the mdi children, so
4832         that insertion order is maintained when the Z-order is changed.
4833
4834 2006-08-16  Mike Kestner  <mkestner@novell.com> 
4835
4836         * ListView.cs : add an ItemComparer and default to it for sorting.
4837         Fixes #79076, but sorting needs a complete overhaul to be compat with
4838         MS.
4839
4840 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4841
4842         * XplatUIX11.cs (SetZOrder): Fix debugging leftover (fixes #79080)
4843
4844 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4845
4846         * Hwnd.cs (Mapped): Properly traverse the tree
4847
4848 2006-08-15  Chris Toshok  <toshok@ximian.com>
4849
4850         * Binding.cs: fix PullData/SetPropertyValue.  We don't want to
4851         pass manager.Current.GetType() to ParseData.  It has to be the
4852         property type.  So, hold off doing the ParseData until we're in
4853         SetPropertyValue where we know the type.  This fixes the crash in
4854         #78821 but the textbox is still empty.
4855
4856 2006-08-15  Chris Toshok  <toshok@ximian.com>
4857
4858         * DataGrid.cs:
4859         - when we're scrolling, only call Edit() again if the
4860         current cell is still unobscured. Fixes bug #78927.
4861         - when handling mousedown on a cell, ensure the cell is visible
4862         before calling Edit.
4863         - remove the properties from DataGridRow, and remove the
4864         DataGridParentRow class altogether.
4865         
4866
4867 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4868
4869         * TextBoxBase.cs (set_Text): Don't use base.Text, instead just
4870           fire OnTextChanged by ourselves. There's no point calling base,
4871           we don't set the base value anywhere else. Fixes #78773.
4872
4873 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4874
4875         * ListBox.cs: Call CollectionChanged when modifying
4876         an item from Items indexer, to update the actual items
4877         in the list box.
4878
4879 2006-08-15  Carlos Alberto Cortez <calberto.cortez@gmail.com>
4880
4881         * PrintDialog.cs: Small fixes for focus and a pair of checks,
4882         to match .Net behaviour.
4883
4884 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4885
4886         * XplatUIX11.cs (SetZOrder): Handle raising toplevel windows
4887
4888 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com> 
4889
4890         * Control.cs: Handle BringToFront for toplevel windows (Fixes #78737)
4891
4892 2006-08-15  Peter Dennis Bartok  <pbartok@novell.com>
4893
4894         * MessageBox.cs: Prevent potential NRE exception.
4895         * TextBoxBase.cs: AutoSize only applies if MultiLine is false. Fixes #78889
4896
4897 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4898
4899         * MessageBox.cs: Calculate the owner of a messagebox, also make
4900           it topmost. Fixes #78753
4901
4902 2006-08-14  Chris Toshok  <toshok@ximian.com>
4903
4904         * XplatUIX11.cs: A couple of fixes so that metacity will let us
4905         programmatically move windows.  first, set the PPosition hint as
4906         well as the USPosition hint.  Second include some code from pdb
4907         that sets the window type to NORMAL when we set the transient for
4908         hint.  This is because, in the absence of a window type, metacity
4909         thinks any window with TransientFor set is a dialog, and refuses
4910         to let us move it programmatically.  fascists.
4911
4912 2006-08-14  Peter Dennis Bartok  <pbartok@novell.com>
4913
4914         * XplatUIX11.cs: When setting normal hints, take into consideration
4915           an different hints previously set so we don't delete them (fixes #78866)
4916
4917 2006-08-12  Chris Toshok  <toshok@ximian.com>
4918
4919         * ToolBarButton.cs: make Layout return a boolean, if something to
4920         do with the button's layout changed.
4921
4922         * ToolBar.cs:
4923         - add another parameter to Redraw, @force, which all existing
4924           calls set to true.
4925         - make the Layout function return a boolean which is true if the
4926           layout has actually changed.  Redraw now uses this (and @force)
4927           to determine when to invalidate.  At present the only place
4928           where @force can be false is the call from OnResize, when
4929           background_image == null.  So, resizing a toolbar when the
4930           layout doesn't change results in no drawing.
4931
4932 2006-08-12  Chris Toshok  <toshok@ximian.com>
4933
4934         * ThemeWin32Classic.cs: fix the bottom right corner painting.  had
4935         the VScrollBar and HScrollbar reversed.  oops.
4936
4937         * DataGrid.cs: fix the logic that assigns sizes to the implicit
4938         scrollbars.  we were assigning them twice (once in
4939         Calc{Horiz,Vertical}Scrollbar, and once in CalcGridAreas),
4940         therefore causing two scrollbar resizes (and redraws?) to happen
4941         per grid resize.
4942
4943 2006-08-12  Chris Toshok  <toshok@ximian.com>
4944
4945         * ToolBarButton.cs: redraw the entire button if the theme tells us
4946         to.
4947
4948         * Theme.cs: add ToolBarInvalidateEntireButton.
4949
4950         * ThemeWin32Classic.cs: we don't need to redraw the entire toolbar
4951         buttons, just the border.
4952
4953         * ThemeNice.cs: redraw the entire toolbar button since we need to
4954         draw the highlight image.
4955
4956         * ThemeClearlooks.cs: the rounded corners of toolbar buttons mean
4957         we need to redraw the entire button (not just the border).
4958
4959 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4960
4961         * TextBoxBase.cs (CalculateScrollbars): Set the proper thumb size
4962           for vertical bars. Fixes the mismatches shown by #78513
4963
4964 2006-08-11  Alexander Olk  <alex.olk@googlemail.com>
4965
4966         * FileDialog.cs: If a saved/remembered path doesn't exist
4967           anymore, fall back to "Desktop".
4968
4969 2006-08-11  Peter Dennis Bartok  <pbartok@novell.com>
4970
4971         * Form.cs (CreateParams): Don't use Parent.Handle unless we have a
4972           parent. It's apparently legal to not have one
4973         * XplatUIX11.cs:
4974           - SetZOrder: Don't try to set Z-Order on an unmapped window
4975           - CreateWindow: 0,0 are legal coordinates for a window. don't move
4976             it unless the coordinates are negative
4977
4978 2006-08-10  Mike Kestner  <mkestner@novell.com>
4979
4980         * ListControl.cs: allow null for DataSource.  Clear DisplayMember
4981         when setting to null per msdn docs.  Fixes #78854.
4982
4983 2006-08-10  Chris Toshok  <toshok@ximian.com>
4984
4985         * Menu.cs, MainMenu.cs, MenuAPI.cs: get rid of most of the
4986         flickering by setting a clip rectangle on the Graphics when we
4987         need to redraw just a particular menuitem.  Also, rename "OnClick"
4988         to "OnMouseDown" to reflect what it actually is.
4989         
4990         * Form.cs: track the OnMouseDown change.
4991
4992 2006-08-10  Peter Dennis Bartok  <pbartok@novell.com>
4993
4994         * CommonDialog.cs: Properly inherit the CreateParams from the form
4995           and only change what we need. Fixes #78865
4996
4997 2006-08-10  Chris Toshok  <toshok@ximian.com>
4998
4999         * ToolBar.cs, ToolBarButton.cs: fix the redraw-on-highlight
5000         flickering in flat mode (and most of the flickering in general) by
5001         only invalidating the button border (and not the entire rectangle)
5002         when the state changes.  A couple of cases still flicker:
5003         ToggleButtons, and the dropdown arrow case when the user mouse
5004         ups.
5005
5006 2006-08-10  Alexander Olk  <alex.olk@googlemail.com>
5007
5008         * X11Keyboard.cs: Fixed handling of the Del key on the cursorblock
5009           for german keyboards. Numlock state shouldn't affect the behaviour
5010           of the Del key. Fixes bug #78291.
5011
5012 2006-08-10  Chris Toshok  <toshok@ximian.com>
5013
5014         * ListControl.cs: remove the items.Clear line from BindDataItems,
5015         as this is the first thing done by both subclasses in their
5016         SetItemsCore overrides.  Also, add a ItemChanged handler, and when
5017         passed -1, refresh the list.  This gets databinding working when
5018         the datasource is set on the list before the datasource is
5019         populated (as in wf-apps/ReportBuilder.)
5020
5021         * ComboBox.cs: remove the argument to BindDataItems.  This call
5022         should really go away, and be initiated by the ListControl code.
5023
5024         * ListBox.cs: same.
5025
5026 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5027
5028         * TextControl.cs (Document.ctor): Initialize caret so we don't crash
5029           if no data is in the document when the control is displayed
5030
5031 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com> 
5032
5033         * TextBoxBase.cs: Don't try moving the caret if we don't have a window
5034           yes (fixes #78806)
5035         * TextControl.cs: 
5036           - PositionCaret: Allow positioning of caret but don't call methods 
5037             requiring a handle if the window isn't created yet
5038           - CharIndexToLineTag: Fix ending loop early error. Lines is 1 based
5039           - owner_HandleCreated: Don't position the caret, just update it's 
5040             location. User might have already set a different position
5041
5042 2006-08-09  Peter Dennis Bartok  <pbartok@novell.com>
5043
5044         * XplatUIWin32.cs: Don't use the desktop as basis for foster-parented
5045           windows. Screws up the returned coordinates for child windows. 
5046           Fixes #78825. I'm hoping this doesn't break something, since the
5047           code was explicitly put in 8 months ago, but no bug was attached.
5048           Menus still seem to work properly.
5049
5050 2006-08-08  Chris Toshok  <toshok@ximian.com>
5051
5052         * DataGrid.cs: make BeginInit/EndInit actually do what they're
5053         supposed to do - delay data binding until the EndInit call.  Also,
5054         make the table style collection's CollectionChangeAction.Refresh
5055         work properly.
5056
5057         * GridTableStylesCollection.cs: raise a CollectionChangeEvent
5058         (with action = Refresh) when a consituent table's MappingName is
5059         changed.
5060
5061 2006-08-08  Chris Toshok  <toshok@ximian.com>
5062
5063         * ToolBarButton.cs: in set_Text, call Parent.Redraw, not
5064         Invalidate, since changing the text can change the size of the all
5065         toolbar buttons.
5066
5067 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5068
5069         * Form.cs (AddOwnedForm): Still need to add the form to our listif
5070           we don't have it yet
5071
5072 2006-08-08  Chris Toshok  <toshok@ximian.com>
5073
5074         * PrintControllerWithStatusDialog.cs: don't .Close() the status
5075         dialog, as this causes X errors later on, since we actually
5076         destroy the window.  Instead, .Hide() it.
5077
5078 2006-08-08  Peter Dennis Bartok  <pbartok@novell.com>
5079
5080         * ComboBox.cs: Added focus reflection for popup window
5081         * XplatUIX11.cs: 
5082           - Removed transient setting for non-app windows for now, not sure it
5083             was needed
5084           - Fixed logic checking if we have captions when deciding 
5085             override_redirect, WS_CAPTION is two bits and a 0 check was not
5086             sufficient
5087           - Removed the WINDOW_TYPE stuff, it was unneeded and making things
5088             complicated
5089         * Form.cs: 
5090           - AddOwnedForm: Don't just add the form to the list, call the property
5091             to ensure the driver is informed about the ownership as well
5092           - CreateHandle: Set the TopMost status in the driver if we have an owner
5093         * XplatUI.cs: Fixed debug statement
5094
5095 2006-08-08  Jonathan Pobst <monkey@jpobst.com>
5096         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5097           GroupBoxRenderer.cs, ProgressBarRenderer.cs, RadioButtonRenderer.cs,
5098           ScrollBarRenderer.cs, TabRenderer.cs, TextBoxRenderer.cs, 
5099           TrackBarRenderer.cs: Make constructor private.
5100         * ProfessionalColors.cs, ProfessionalColorTable.cs: Fix misnamed properties.
5101         * ProfessionalColorTable.cs: Make properties virtual.
5102
5103 2006-08-06  Duncan Mak  <duncan@novell.com>
5104
5105         * NumericUpDown.cs (Value): Don't call OnValueChanged if the value
5106         is not changing.
5107
5108 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5109         * ButtonRenderer.cs, CheckBoxRenderer.cs, ComboBoxRenderer.cs
5110           GroupBoxRenderer.cs, ProfessionalColors.cs, ProfessionalColorTable.cs,
5111           ProgressBarRenderer.cs, RadioButtonRenderer.cs, ScrollBarRenderer.cs,
5112           TabRenderer.cs, TextBoxRenderer.cs, TextRenderer.cs, TrackBarRenderer.cs:
5113           Initial import of new 2.0 classes.
5114
5115 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5116         * Application.cs: Add 2.0 VisualStyles properties.
5117
5118 2006-08-04  Jonathan Pobst <monkey@jpobst.com>
5119         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
5120           XplatUIX11.cs: Create property to allow access to existing private
5121           variable "themes_enabled"
5122
5123 2006-08-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
5124
5125         * ImageListStreamer.cs: generate the MemoryStreams with the exact BMP
5126         file size, as otherwise our class libraries fail using windows. Fixes
5127         bug #78759.
5128
5129 2006-08-04  Jackson Harper  <jackson@ximian.com>
5130
5131         * Form.cs:
5132         * XplatUIX11.cs: Move the toolwindow window manager creation into
5133         the X11 driver, this way on win32 we can let windows create/handle
5134         the toolwindows.
5135
5136 2006-08-04  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5137
5138         * PrintDialog.cs: Remove some redundant checks, add some others,
5139         clean some code, and move the focus to the text boxes when the
5140         values are incorrect.
5141
5142 2006-08-04  Alexander Olk  <alex.olk@googlemail.com>
5143
5144         * FontDialog.cs: Remove Form.MinimumSize. It's not needed.
5145
5146 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5147
5148         * NumericUpDown.cs: Setting the Minimum and Maximum is now
5149           handled correctly. Fixes bug #79001.
5150
5151 2006-08-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5152
5153         * PrintDialog.cs: The "Copies" numeric up down must have
5154         set the Minimum property to 1; only if the value is bigger
5155         than 1, activate "Collate" check box. This is the behaviour of .Net.
5156         Also modify the Document elements only if it is not null.
5157
5158 2006-08-03  Jackson Harper  <jackson@ximian.com>
5159
5160         * TreeNodeCollection.cs: Fix copyto to use the correct nodes
5161         length. (We have a larger array then actual node count).
5162                 
5163 2006-08-03  Jackson Harper  <jackson@ximian.com>
5164
5165         * ComboBox.cs: Don't show selection by default.
5166         - The SelectAll isn't needed here, since the focus code should do
5167         that
5168         - DDL style lists to manual selection drawing, so when they
5169         get/lose focus they have to invalidate.
5170
5171 2006-08-03  Peter Dennis Bartok  <pbartok@novell.com>
5172
5173         * TextBoxBase.cs: Don't always show all selections by default.
5174
5175 2006-08-03  Jonathan Pobst  <monkey@jpobst.com>
5176         * ControlUpdateMode.cs, DataSourceUpdateMode.cs,
5177           HelpNavigator.cs, WebBrowserEncryptionLevel.cs:
5178           Fixed various typos.
5179
5180 2006-08-03  Alexander Olk  <alex.olk@googlemail.com>
5181
5182         * Control.cs: Removing the controls in a ControlCollection with
5183           Clear now hides the controls as expected. Fixes bug #78804. 
5184
5185 2006-08-03  Jackson Harper  <jackson@ximian.com>
5186
5187         * Control.cs: Revert previous focus patch, it breaks reflector.
5188
5189 2006-08-03  Jackson Harper  <jackson@ximian.com>
5190
5191         * ComboBox.cs: Cleanup selection and focus with the combobox.
5192         This also eliminates some duplicated keyboard code, since now
5193         everything is handled by the main class.
5194         - Make list selection work on mouse up instead of down, to match
5195         MS.
5196
5197 2006-08-02  Jackson Harper  <jackson@ximian.com>
5198
5199         * Control.cs: Setting focus needs to go through the whole
5200         selection mechanism.
5201
5202 2006-08-02  Chris Toshok  <toshok@ximian.com>
5203
5204         * PrintPreviewDialog.cs: change MinimumSize to use
5205         base.MinimumSize so it works.
5206
5207 2006-08-02  Peter Dennis Bartok  <pbartok@novell.com>
5208
5209         * TextControl.cs:
5210           - UpdateCaret: Added sanity check in case caret isn't defined yet
5211           - Line.Delete: Now updating selection and caret markers if we're
5212             transfering a node (Properly fixes #78323)
5213           - SetSelectionEnd: Added sanity check
5214         * TextBoxBase.cs: Removed broken attempt to fix #78323
5215
5216 2006-08-01  Chris Toshok  <toshok@ximian.com>
5217
5218         * PrintPreviewDialog.cs: the CancelEventArgs stuff surrounding the
5219         Close() call is handled in Form, not here.
5220
5221 2006-08-01  Chris Toshok  <toshok@ximian.com>
5222
5223         * Theme.cs, ThemeWin32Classic.cs: fix the PrintPreviewControl
5224         layout/rendering.
5225
5226         * PrintPreviewDialog.cs: add scrollbars, and add an image cache
5227         for sizes < 100% zoom.  The code now aggressively attempts to keep
5228         from calling document.Print (), and tries not to use the scaling
5229         g.DrawImage whenever possible (it still does if you scale to >
5230         100%, since usually that involves huge images).
5231
5232         * PrintPreviewControl.cs: hook up the close button.
5233
5234 2006-08-01  Jonathan Pobst  <monkey@jpobst.com>
5235         * ColumnClickEventHandler.cs, DrawItemEventHandler.cs,
5236           ItemChangedEventHandler.cs, ItemCheckEventHandler.cs,
5237           ItemDragEventHandler.cs, LabelEditEventHandler.cs,
5238           LinkClickedEventHandler.cs, LinkLabelLinkClickedEventHandler.cs,
5239           MeasureItemEventHandler.cs, MethodInvoker.cs, PaintEventHandler.cs,
5240           PropertyTabChangedEventHandler.cs, PropertyValueChangedEventHandler.cs,
5241           SelectedGridItemChangedEventHandler.cs, ToolBarButtonClickEventHandler.cs:
5242           Removed [Serializable] for 2.0 Event Handlers.
5243
5244 2006-07-31  Jackson Harper  <jackson@ximian.com>
5245
5246         * TextBoxBase.cs: Make ShowSelection invalidate when changed.
5247         * TextControl.cs: Uncomment out the body of this method.
5248
5249 2006-07-31  Alexander Olk  <alex.olk@googlemail.com>
5250
5251         * XplatUIX11.cs: Use the correct cursor shapes for arrow and default
5252           standard cursors.
5253
5254 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5255
5256         * TextBoxBase.cs: Added internal property ShowSelection to allow controls
5257           that embed TextBox and need selections visible even if textbox is not
5258           focused to enforce that behaviour.
5259         * TextControl.cs (Draw): Use ShowSelection instead of has_focus to determine
5260           selection drawing
5261
5262 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5263
5264         * TextControl.cs:
5265           - Added new SetSelectionStart/SetSelectionEnd overloads
5266           - Fixed viewport width assignment to be accurate
5267           - Adjusted alignment line shift calculations to allow cursor on right
5268             aligned lines to be always visible at the right border (like MS)
5269         * TextBoxBase.cs:
5270           - SetBoundsCore: Re-adjust caret location after resize (Fixes #78323)
5271           - TextBoxBase_SizeChanged: recalculating canvas on size changes
5272           - CalculateScrollBars: Use ViewPort size instead of window size, to
5273             properly consider space occupied by the border and scrollbars 
5274             (Fixes #78661)
5275           - hscroll_ValueChanged, vscroll_ValueChanged: Fixed scroll 
5276             calculations; no longer leaves artifacts
5277           - CaretMoved: Adjusted window scrolling to match MS and fixed several
5278             calculation bugs (Still missing right/center align calculations)
5279
5280 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com> 
5281
5282         * XPlatUIWin32.cs: Made ScrollRectEx a bit more flexible, and removed
5283           use of both scroll rect and clip rect, as they do the same.
5284
5285 2006-07-31  Peter Dennis Bartok  <pbartok@novell.com>
5286
5287         * Control.cs (WM_CHAR WndProc): 2.0 profile allows changing the key 
5288           in the event handler (fixes #78912)
5289
5290 2006-07-31  Chris Toshok  <toshok@ximian.com>
5291
5292         * ThemeWin32Classic.cs: use grid.RowsCount here instead of
5293         grid.ListManager.Count, since grid.ListManager might be null.
5294         This of course begs the question "why are we drawing rows for a
5295         grid with no list manager (and therefor no rows)?"  Fixes the
5296         crash in bug #78929.
5297
5298 2006-07-31  Chris Toshok  <toshok@ximian.com>
5299
5300         * RelatedPropertyManager.cs: Don't always chain up to the parent
5301         ctor.  instead, call SetDataSource if the parent's position is !=
5302         -1.  Fixes the crash in #78822.
5303
5304 2006-07-31  Chris Toshok  <toshok@ximian.com>
5305
5306         * DataGrid.cs (get_ListManager): use field instead of property
5307         accessors for datasource and datamember.
5308         (RowsCount): make internal again.
5309         (OnMouseDown): end edits before resizing columns/rows.
5310         (OnMouseUp): restart edits after resizing columns/rows.
5311
5312 2006-07-30  Peter Dennis Bartok  <pbartok@novell.com>
5313
5314         * XplatUIX11.cs: Default cursor cannot be 0 or it will not get set.
5315           This fixes the situation where the last set cursor is displayed
5316           whenever the mouse is over scrollbars.
5317
5318 2006-07-30  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5319
5320         * PrintDialog.cs: Fix the behaviour of PrinterSettings and
5321         Document properties, as well as initial values.
5322
5323 2006-07-29  Peter Dennis Bartok  <pbartok@novell.com>
5324
5325         * XplatUIWin32.cs (SetBorderStyle): Setting both border
5326           and ClientEdge results in a 3-pixel border, which is
5327           wrong.
5328
5329 2006-07-28  Jackson Harper  <jackson@ximian.com>
5330
5331         * TreeNodeCollection.cs: Fix the clear method.
5332         - Fix the Shrink also
5333
5334 2006-07-27  Jackson Harper  <jackson@ximian.com>
5335
5336         * TreeView.cs: Make sure the visible order is computed when we
5337         attempt to size the scrollbars (for trees that mess with the
5338         scrolling when they shouldn't.
5339         - Make sure to give the scrollbars valid values.
5340
5341 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5342
5343         * XplatUIX11.cs: Move motion compression code to where it
5344           has less performance impact
5345
5346 2006-07-26  Jackson Harper  <jackson@ximian.com>
5347
5348         * UpDownBase.cs: When the control is selected make the child
5349         controls non selectable, so that a click on them won't do a
5350         focus/unfocus cycle.
5351         - Don't give focus to the text box when the spinner is selected.
5352         * XEventQueue.cs: Peek on both the x11 queue and the lock queue.
5353
5354 2006-07-26  Chris Toshok  <toshok@ximian.com>
5355
5356         * ThemeWin32Classic.cs: add print preview rendering.  I'm not
5357         satisfied with this solution.  If the bitmaps are small, we should
5358         just cache them in the PrintPreviewDialog and draw them here.
5359         Also, the layout is broken for the 2-up and 3-up cases.
5360
5361         * Theme.cs: add PrintPReviewControlPaint.
5362
5363         * PrintPreviewDialog.cs: first pass implementation.
5364
5365         * PrintPreviewControl.cs: first pass implementation.  No
5366         scrollbars yet.
5367
5368         * PrintDialog.cs: only validate fields if that particular portion
5369         of the UI is enabled.  Also, set the document's controller to a
5370         PrintControllerWithStatusDialog wrapping the document's print
5371         controller.
5372
5373         * PrintControllerWithStatusDialog.cs: if we're printing to a file,
5374         bring up a SaveFileDialog (i hope we don't want to match the
5375         behavior of the crappy windows file entry) and set the
5376         PrinterSettings.PrintFileName accordingly.
5377
5378 2006-07-26  Jackson Harper  <jackson@ximian.com>
5379
5380         * ContainerControl.cs: Add a field that disables auto selecting
5381         the next control in a container when the container is activated.
5382         * UpDownBase.cs: Don't select the text box when the up down is
5383         selected.
5384
5385 2006-07-26  Peter Dennis Bartok  <pbartok@novell.com> 
5386
5387         * XEventQueue.cs: Added methods for peeking (used for compression
5388           of successive events)
5389         * XplatUIX11.cs (GetMessage): We're now compressing consecutive
5390           mouse move events (fixes #78732)
5391
5392 2006-07-25  Jackson Harper  <jackson@ximian.com>
5393
5394         * UpDownBase.cs: Use an internal class for the textbox so that we
5395         can control focus.  the updown control should always have focus,
5396         if either the text area or the buttons are clicked.
5397         - Send the key messages to the textbox, since it never actually
5398         has focus
5399         - Activate and decativate the textbox caret.
5400
5401 2006-07-24  Jackson Harper  <jackson@ximian.com>
5402
5403         * Control.cs: Use the directed select when selecting a control,
5404         this way the container controls override will get called and the
5405         whole ActiveControl chain will get triggered.  TODO: probably need
5406         to make sure this gets done everywhere instead of the old
5407         Select(Control).
5408         * ContainerControl.cs: Implement the directed Select method to
5409         find and activate the correct child control.    
5410         
5411 2006-07-22  Mike Kestner  <mkestner@novell.com>
5412
5413         * Form.cs: use Control.MousePosition for NCLBUTTONDOWN in the menu
5414         menu handling code so that clicks without a grab work too.
5415         [Fixes #78914]
5416
5417 2006-07-22  Alexander Olk  <alex.olk@googlemail.com>
5418
5419         * FileDialog.cs: Enable the BackButton when dirstack has one element.
5420           Added some small optimizations.
5421
5422 2006-07-21  Matt Hargett  <matt@use.net>
5423
5424         * Control.cs: Implemented 2.0 MinimumSize/MaximumSize properties
5425
5426 2006-07-21  Peter Dennis Bartok  <pbartok@novell.com> 
5427
5428         * Control.cs (GetNextControl): Fixes to make all of Jackson's unit 
5429           tests pass and match MS in some strange border cases.
5430
5431 2006-07-21  Chris Toshok  <toshok@ximian.com>
5432
5433         * ThemeWin32Classic.cs: handle drawing of the relation links and
5434         parent row buttons.
5435
5436         * Theme.cs: change args to DataGridPaintParentRow.
5437
5438         * DataGrid.cs: Don't use controls for the relation links and
5439         parent buttons, so we have to handle all their interactions in
5440         MouseMove, MouseDown, MouseUp, etc.  Also, store a lot more stuff
5441         when we're navigating through child tables, so we can reinstate
5442         selection, expanded state, current cell, etc.
5443
5444 2006-07-20  Chris Toshok  <toshok@ximian.com>
5445
5446         * ToolBar.cs: When we redraw a button, for whatever reason,
5447         there's no reason to redraw the entire toolbar.  Also, don't call
5448         Control.Refresh from within Redraw, as it's much heavier than
5449         Invalidate (which is really what we want).
5450
5451 2006-07-20  Chris Toshok  <toshok@ximian.com>
5452
5453         * DataGrid.cs, CurrencyManager.cs, DataGridColumnStyle.cs,
5454         DataGridTextBoxColumn.cs, DataGridTextBox.cs,
5455         ThemeWin32Classic.cs, ListControl.cs: After staring at stack
5456         traces from within a debug IBindingList datasource
5457         (in mono/winforms/datagrid) for *days*, I've finally gotten things
5458         to work in a similar fashion.
5459
5460 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5461
5462         * ListBox.cs: Don't call Sort () when setting 
5463         the Sorted property to false (avoid an unnecessary sort).
5464
5465 2006-07-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5466
5467         * ListControl.cs: DataSource should throw an ArgumentException
5468         instead of a normal exception when the argument is not of the 
5469         correct type.
5470
5471 2006-07-20  Mike Kestner  <mkestner@novell.com>
5472
5473         * Control.cs: add InternalPreProcessMessage to allow us to steal
5474         key events before MWF gets its paws on them.  Adapted from a
5475         suggestion by eno.
5476         * ToolBar.cs: add GotLostFocus handing for flat toolbars, with 
5477         up/down/left/right navigation. Override the new internal control
5478         method to steal the events since they never make it to WndProc.
5479         * ToolBarButton.cs: don't worry about pushed when setting hilight
5480         since the drawing code prefers pushed to hilight. Invalidate on 
5481         Hilight changes. Fixes #78547 and #78525.
5482
5483 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5484
5485         * ScrollableControl.cs: Consider AutoScrollMinSize when calculating
5486           the canvas size. Fixes #78868
5487
5488 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com>
5489
5490         * Splitter.cs: Track requested split position until first layout
5491           is performed. Fixes #78871
5492
5493 2006-07-20  Peter Dennis Bartok  <pbartok@novell.com> 
5494
5495         * Application.cs: Removed code that forces 1.x for the version
5496           number if the version started with 0. Not sure why that code was
5497           there and I couldn't find any bugs that indicated we needed it.
5498           Fixes #78869
5499
5500 2006-07-20  Alexander Olk  <alex.olk@googlemail.com>
5501
5502         * ThemeWin32Classic.cs: Don't throw a NotImplementedException in
5503           ResetDefaults(), just write some output to the console until it's
5504           implemented. Fixes bug #78907 for now. Eliminated two warnings.
5505
5506 2006-07-19  Jonathan Chambers  <joncham@gmail.com>
5507
5508         * PropertyGridView.cs: set StartPosition of drop down forms
5509         so they appear in correct initial spot.  Fixes #78190.
5510
5511 2006-07-19  Mike Kestner  <mkestner@novell.com>
5512
5513         * ThemeWin32Classic.cs: use parent background color when drawing
5514         flat toolbars.  Restructure the conditionals to make sure non-flat
5515         non-Divider toolbars are filled too.  Fixes #78837.
5516
5517 2006-07-19  Mike Kestner  <mkestner@novell.com>
5518
5519         * ListBox.cs: Sort on collection changes even if the handle
5520         isn't created yet.  Fixes #78813.
5521
5522 2006-07-18  Carlos Alberto Cortez <calberto.cortez@gmail.com>
5523
5524         * ListControl.cs: DisplayMember should never be null,
5525         and now we assign String.Empty when null is passed to it (this
5526         is the .Net way).
5527
5528 2006-07-17  Mike Kestner  <mkestner@novell.com>
5529
5530         * ListViewItem.cs: restructure Font and subitem Font handling 
5531         to hold a specific font and refer back to owner on null.
5532         Fixes #78761.
5533
5534 2006-07-17  Mike Kestner  <mkestner@novell.com>
5535
5536         * ToolBar.cs: bandaid for side-effect of previous patch which was
5537         discarding explicit heights for non-AutoSize toolbars.  Need to
5538         extend my format tester to deal with AutoSize=false. Fixes #78864.
5539
5540 2006-07-15  Jackson Harper  <jackson@ximian.com>
5541
5542         * LabelEditTextBox.cs:
5543         * TreeView.cs: Use a new LabelEdit class for node editing, this
5544         class automatically 'closes' itself when it gets the enter key or
5545         loses focus.
5546         - Use the client rectangle when setting the trees scrollbars, so
5547         border style is taken into account.
5548         
5549 2006-07-14  Jackson Harper  <jackson@ximian.com>
5550
5551         * TreeNode.cs:
5552         * TreeView.cs: Make the editing work similar to MSs, firing the
5553         events correctly and ending edits correctly.
5554
5555 2006-07-14  Mike Kestner  <mkestner@novell.com>
5556
5557         * ToolBarButton.cs:
5558         * ToolBar.cs: layout restructuring and redraw enhancements to support
5559         formatting changes gracefully, like setting TextAlign, ImageList, 
5560         ButtonSize, and Appearance.  Handles explicit button sizing quirks
5561         of the MS controls.  Things like flat toolbars ignoring button size
5562         but becoming constant sized at the largest button's size.  Normal
5563         toolbars with an image set cannot be shrunk smaller than the image,
5564         but text can be clipped/ignored.
5565         * ThemeWin32Classic.cs: don't draw text if text_rect height or width
5566         is zero.  Seems like DrawString should be smart enough to not put
5567         anything on screen though. Also trim labels and ellipsize at the char
5568         boundary, not word.
5569         Fixes #78711 and #78483.
5570
5571 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5572
5573         * FolderBrowserDialog.cs: Disable "New Folder" button and
5574           "New Folder" contextmenu menuitem if a folder like "My Computer"
5575           is selected.
5576
5577 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5578
5579         * FileDialog.cs: Don't create a new folder in "MyComputer" folder.
5580         * FolderBrowserDialog.cs:
5581           - Use MWFConfig to store and read size and position settings
5582           - Added code to create a new folder (button or context menu).
5583             Use TreeView labeledit to change the name of the new folder.
5584
5585 2006-07-14  Jackson Harper  <jackson@ximian.com>
5586
5587         * TreeView.cs: Raise the OnAfterLabelEdit event correctly.  Also,
5588         when the tree is scrolled we end editing.
5589
5590 2006-07-14  Alexander Olk  <alex.olk@googlemail.com>
5591
5592         * ThemeWin32Classic.cs: Fixed position of CPDrawScrollButton Up and
5593           Down arrows
5594
5595 2006-07-14  Jonathan Pobst  <monkey@ipobst.com> 
5596
5597         WebBrowserProgressChangedEventHandler.cs, BindingCompleteEventArgs.cs,
5598         BindingCompleteEventHandler.cs, BindingManagerDataErrorEventArgs.cs,
5599         BindingManagerDataErrorEventHandler.cs, CacheVirtualItemsEventArgs.cs,
5600         CacheVirtualItemsEventHandler.cs, ColumnReorderedEventArgs.cs,
5601         ColumnReorderedEventHandler.cs, ColumnWidthChangedEventArgs.cs,
5602         ColumnWidthChangedEventHandler.cs, ColumnWidthChangingEventArgs.cs,
5603         ColumnWidthChangingEventHandler.cs, FormClosedEventArgs.cs,
5604         FormClosedEventHandler.cs, FormClosingEventArgs.cs,
5605         FormClosingEventHandler.cs, ItemCheckedEventArgs.cs,
5606         ItemCheckedEventHandler.cs, ListControlConvertEventArgs.cs,
5607         ListControlConvertEventHandler.cs, ListViewItemMouseHoverEventArgs.cs,
5608         ListViewItemMouseHoverEventHandler.cs, ListViewItemSelectionChangedEventArgs.cs,
5609         ListViewItemSelectionChangedEventHandler.cs,
5610         ListViewVirtualItemsSelectionRangeChangedEventArgs.cs,
5611         ListViewVirtualItemsSelectionRangeChangedEventHandler.cs,
5612         MaskInputRejectedEventArgs.cs, MaskInputRejectedEventHandler.cs,
5613         PopupEventArgs.cs, PopupEventHandler.cs, PreviewKeyDownEventArgs.cs,
5614         PreviewKeyDownEventHandler.cs, RetrieveVirtualItemEventArgs.cs,
5615         RetrieveVirtualItemEventHandler.cs, SearchForVirtualItemEventArgs.cs,
5616         SearchForVirtualItemEventHandler.cs, SplitterCancelEventArgs.cs,
5617         SplitterCancelEventHandler.cs, TabControlCancelEventArgs.cs, 
5618         TabControlCancelEventHandler.cs, TabControlEventArgs.cs, 
5619         TabControlEventHandler.cs, TableLayoutCellPaintEventArgs.cs,
5620         TableLayoutCellPaintEventHandler.cs, ToolStripDropDownClosedEventArgs.cs,
5621         ToolStripDropDownClosedEventHandler.cs, ToolStripDropDownClosingEventArgs.cs,
5622         ToolStripDropDownClosingEventHandler.cs, TreeNodeMouseClickEventArgs.cs,
5623         TreeNodeMouseClickEventHandler.cs, TreeNodeMouseHoverEventArgs.cs,
5624         TreeNodeMouseHoverEventHandler.cs, TypeValidationEventArgs.cs,
5625         TypeValidationEventHandler.cs, WebBrowserDocumentCompletedEventArgs.cs,
5626         WebBrowserDocumentCompletedEventHandler.cs, WebBrowserNavigatedEventArgs.cs,
5627         WebBrowserNavigatedEventHandler.cs, WebBrowserNavigatingEventArgs.cs,
5628         WebBrowserNavigatingEventHandler.cs, 
5629         WebBrowserProgressChangedEventArgs.cs: New 2.0 Event Handlers
5630
5631 2006-07-14  Jonathan Pobst  <monkey@ipobst.com>
5632
5633         MergeAction.cs, PowerLineStatus.cs, PowerState.cs, PreProcessControlState.cs,
5634         RichTextBoxLanguageOptions.cs, ScreenOrientation.cs, ScrollOrientation.cs,
5635         SearchDirectionHint.cs, SystemParameter.cs, TabControlAction.cs,
5636         TableLayoutPanelCellBorderStyle.cs, TextDataFormat.cs, TextImageRelation.cs,
5637         ToolStripDropDownCloseReason.cs, ToolStripDropDownDirection.cs,
5638         ToolStripGripDisplayStyle.cs, ToolStripGripStyle.cs,
5639         ToolStripItemAlignment.cs, ToolStripItemDisplayStyle.cs,
5640         ToolStripItemImageScaling.cs, ToolStripItemOverflow.cs,
5641         ToolStripItemPlacement.cs, ToolStripLayoutStyle.cs,
5642         ToolStripManagerRenderMode.cs, ToolStripRenderMode.cs,
5643         ToolStripStatusLabelBorderSides.cs, ToolStripTextDirection.cs,
5644         ToolTipIcon.cs, TreeNodeStates.cs, TreeViewDrawMode.cs,
5645         TreeViewHitTestLocations.cs, UnhandledExceptionMode.cs, ValidationConstraints.cs,
5646         WebBrowserEncryptionLevel.cs, WebBrowserReadyState.cs, WebBrowserRefreshOption.cs,
5647         ArrowDirection.cs, AutoCompleteMode.cs, AutoCompleteSource.cs, AutoSizeMode.cs,
5648         AutoValidate.cs, BatteryChargeStatus.cs, BindingCompleteContext.cs,
5649         BindingCompleteState.cs, CloseReason.cs, ColumnHeaderAutoResizeStyle.cs,
5650         ControlUpdateMode.cs, DataSourceUpdateMode.cs, DockingBehavior.cs,
5651         FixedPanel.cs, FlowDirection.cs, GetChildAtPointSkip.cs,
5652         HtmlElementInsertionOrientation.cs, InsertKeyMode.cs, ListViewHitTestLocations.cs,
5653         ListViewItemStates.cs, MaskFormat.cs: Added
5654
5655 2006-07-13  Jonathan Chambers  <joncham@gmail.com>
5656
5657         * PropertyGridView.cs: Fix keyboard navigation of drop down.
5658         Patch from eno for bug 78558.
5659         
5660 2006-07-13  Jackson Harper  <jackson@ximian.com>
5661
5662         * TreeView.cs: When an edit is finished make sure that the
5663         selected node is visible.
5664         - When setting the top/bottom use the scrollbars is_visible, so
5665         everything will be set correctly even if the tree isn't visible
5666         yet.
5667
5668 2006-07-13  Jackson Harper  <jackson@ximian.com>
5669
5670         * ComboBox.cs: Revert the item->index part of my previous patch.
5671         * TreeView.cs: Use LostFocus instead of Leave for detecting when
5672         the edit box has lost focus (duh).
5673         - Just make the edit box not visible when we get return, that will
5674         take the focus, which will call EndEdit
5675         * TreeNode.cs When we start editing, notify the treeview.
5676
5677 2006-07-12  Jackson Harper  <jackson@ximian.com>
5678
5679         * ComboBox.cs: Clear out old items before setting the item list.
5680         This prevents databound controls from having their items added
5681         twice.
5682         - Switch the combobox to use indices whereever possible instead of
5683         using Item's.  This allows usto navigate through lists that have
5684         more then one item with the same string value (ie a, b, b, a).
5685         - Scroll the listboxes scrollbar when a non visible item is
5686         highlighted
5687         - Allow keypress to cycle through all the possible values. For
5688         example if you have b1, b2, b3 and hold down the B key all the
5689         values will be cycled through.
5690         
5691 2006-07-12  Jackson Harper  <jackson@ximian.com>
5692
5693         * TextBoxBase.cs:
5694         * ListView.cs: Don't need to override SETFOCUS anymore, we can do
5695         this using the internal methods.
5696         * Control.cs: Add OnGotFocusInternal.  A new method that allows
5697         controls to "override" OnGotFocus and change focus behavior if
5698         needed.
5699         - Same thing for LostFocus
5700         * ComboBox.cs: Pass off focus to the text control properly.
5701
5702 2006-07-12  Alexander Olk  <alex.olk@googlemail.com>
5703
5704         * FileDialog.cs: Added GetFoldersOnly to MWFVFS
5705         * FolderBrowserDialog.cs: Almost a complete rewrite.
5706           - Better support for Environment.Specialfolders
5707           - Added support for MWFVFS
5708           - Made setting SelectedPath work
5709
5710 2006-07-12  Jackson Harper  <jackson@ximian.com>
5711
5712         * Control.cs: Optimze getting all the controls.
5713
5714 2006-07-11  Jackson Harper  <jackson@ximian.com>
5715
5716         * ContainerControl.cs: Override SETFOCUS in the container control,
5717         so that it is not selected on mouse click.
5718
5719 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com> 
5720
5721         * LinkLabel.cs: Hack to handle Shift-Tabbing to the linklabel. 
5722           Hopefully we will have a better way once all of focus is complete.
5723
5724 2006-07-11  Peter Dennis Bartok  <pbartok@novell.com>
5725
5726         * ThemeWin32Classic.cs: Commented out some debug code and fixed
5727           a compile error with csc.
5728
5729 2006-07-11  Jackson Harper  <jackson@ximian.com>
5730
5731         * Control.cs: When hiding a control only select the next control
5732         if the current control was focused.
5733         - Don't handle enter/leave when setting/killing focus, this is
5734         done by the container control.
5735         - Remove is_selected, it's not needed anymore.
5736         - Add utility methods for selecting a child control, and for
5737         firing the Enter/Leave events.
5738         * ContainerControl.cs: When a control is activated fire the
5739         enter/leave events.
5740         - Don't wrap when processing the tab key, so that focus can be
5741         moved outside of the container.
5742         - Use the correct active control
5743
5744 2006-07-11  Jackson Harper  <jackson@ximian.com>
5745
5746         * ComboBox.cs: Remove some debug code that was blinding me.
5747         * UpDownBase.cs: These controls actually aren't implicit, they are
5748         visible to the user.
5749
5750 2006-07-10  Chris Toshok  <toshok@ximian.com>
5751
5752         * DataGrid.cs: move back to the is_adding boolean field.  god i
5753         hate this is_editing/is_adding/is_changing stuff.
5754
5755 2006-07-10  Chris Toshok  <toshok@ximian.com>
5756
5757         * DataGridTableStyle.cs: just check if the property type is bool.
5758         if it is, use DataGridBoolColumn, otherwise DataGridTextBoxColumn.
5759         Don't use CanRenderType.
5760
5761         * DataGridTextBoxColumn.cs: set the value to DBNull.Value, not "",
5762         if our text == NullText.  Remove CanRenderType.
5763
5764         * DataGridBoolColumn.cs: nuke CanRenderType.
5765
5766         * DataGrid.cs: reenable some code to end the current edit inside
5767         of set_CurrentCell.  This fixes the other 1.1.16 regression.
5768         Also, remove rowhdrs_maxheight and just use rowhdrs_area.Height.
5769         Also, remove the visible_row_count arg from CalcRowHeaders, since
5770         we don't need to worry about the actual height of the area.
5771
5772 2006-07-10  Chris Toshok  <toshok@ximian.com>
5773
5774         * DataGridTextBoxColumn.cs: if when we Commit we're in navigate
5775         mode, just return.
5776
5777         * DataGridTextBox.cs: change "isedit" to "isnavigating" to reflect
5778         the real sense of the IsInEditOrNavigateMode property (true =
5779         navigate, false = edit).  Also, update OnKeyPress to reflect this.
5780
5781         * DataGridTableStyle.cs (CreateColumnsForTable): even if the
5782         column style exists, we still need to set its property descriptor
5783         to match up with our list manager.
5784
5785 2006-07-10  Chris Toshok  <toshok@ximian.com>
5786
5787         * ThemeWin32Classic.cs: implement the new row/header painting
5788         approach.  The parent row painting will likely go away and
5789         replaced with label controls, but the rest seems to work ok (and
5790         efficiently).
5791
5792         * Theme.cs: change the way we draw datagrid rows.  we don't draw
5793         the row headers as a block now.  Instead we draw them in the
5794         normal draw-row loop.  Add some calls for drawing parent rows and
5795         relation rows.
5796
5797         * DataGridTableStyle.cs: add tons of ArgumentExceptions if this is
5798         a default table style.  Set the defaults from ThemeEngine.Current,
5799         not SystemColors.  Fix lots of misc issues with property setters.
5800
5801         * DataGrid.cs: move loads of style information out of this class
5802         as it's being duplicated with DataGridTableStyle.  keep track of a
5803         special DataGridTableStyle for the properties we used to mirror
5804         here.  Switch all the style properties to access this table style
5805         instead of instance fields of this class.  Also add a internal
5806         class to represent parent rows (more needs to be stored here, like
5807         the selection state from the parent table, as well as the
5808         expansion state.)  Also, for datasources with relations, do the
5809         right thing for collapse/expand, and add support for the
5810         navigation/parent row buttons.
5811
5812         Lastly, fix the crash in the 1.1.16 build.
5813
5814         * GridTableStylesCollection.cs: make the explicit interface
5815         implementations call the class's methods as opposed to duplicating
5816         them.
5817
5818         * DataGridTextBoxColumn.cs: set the x/y offset of the textfield to
5819         0 so the text doesn't jump around when we move the cursor.
5820
5821 2006-07-10  Jackson Harper  <jackson@ximian.com>
5822
5823         * TextBoxBase.cs:
5824         * ListBox.cs: Match MS's ToString (this makes debugging focus
5825         stuff infinitely easier).
5826
5827 2006-07-10  Jackson Harper  <jackson@ximian.com>
5828
5829         * Control.cs (SelectNextControl): When checking the control's
5830         parent use this instead of ctrl.parent so that null can be passed
5831         to SelectNextControl. (I have unit tests for this).
5832         - Remove unused var.
5833
5834 2006-07-10  Chris Toshok  <toshok@ximian.com>
5835
5836         * CurrencyManager.cs: correct one regression, the removal of the
5837         finalType field.  Also, add a MonoTODO on CanAddRows, implement
5838         Refresh() correctly, and fix some event emission in
5839         ListChangedHandler.
5840
5841 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5842
5843         * FileDialog.cs: Don't use brackets for new folders if they exist
5844           under *nix. Instead use -(number of existing folders +1).
5845
5846 2006-07-07  Alexander Olk  <alex.olk@googlemail.com>
5847
5848         * FileDialog.cs:
5849           - Fixed really nasty bug #78771
5850           - Don't block the whole GUI when reading directories with a lot of
5851             entries. Use an other thread instead and call BeginInvoke to
5852             update the ListView in MWFFileView
5853
5854 2006-07-07  Chris Toshok  <toshok@ximian.com>
5855
5856         * Control.cs (Dispose): release any Capture when disposing.
5857
5858 2006-07-07  Chris Toshok  <toshok@ximian.com>
5859
5860         * LinkLabel.cs (Select): if we chain up to the parent, set
5861         focused_index to -1 so we'll search for the first available link
5862         the next time the user tabs into us.  Also, if the direction is
5863         backward and focused_index == -1, start the search from the last
5864         element.
5865
5866 2006-07-07  Chris Toshok  <toshok@ximian.com>
5867
5868         * LinkLabel.cs (CreatePiecesFromText): if the link's range piece
5869         is beyond the end of the text, don't do anything.
5870         (CreateLinkPieces): set our ControlStyles.Selectable based on
5871         whether or not we have any links.
5872         (Link.Invalidate): use a loop instead of foreach.
5873         (Link.set_Start): null out owner.sorted_links so it'll be
5874         recreated by CreateLinkPieces.
5875
5876 2006-07-06  Chris Toshok  <toshok@ximian.com>
5877
5878         * LinkLabel.cs: revert the SetStyle change.
5879
5880 2006-07-06  Chris Toshok  <toshok@ximian.com>
5881
5882         * LinkLabel.cs (.ctor): SetStyle Selectable to true.
5883         (OnEnableChanged): s/Refresh/Invalidate
5884         (OnGotFocus): if we have a focused index already, refocus it (so
5885         if we mouse out/in to the window it'll focus the right link).
5886         (OnKeyDown): move the tab handling out of here.
5887         (OnLostFocus): don't set focused_index to -1, so we can refocus it
5888         when we lose focus.
5889         (OnMouseDown): don't Capture here - Control handles it.  Also,
5890         focus the active link.
5891         (OnMouseUp): don't deal with Capture.
5892         (OnPaintBackgroundInternal): remove.
5893         (OnTextAlignChanged): CreateLinkPieces before calling the
5894         superclass's method.
5895         (OnTextChanged): call CreateLinkPieces before calling superclass's
5896         method.
5897         (ProcessDialogKey): handle Tab here, and call Select(bool,bool) to
5898         move around.
5899         (Select): implement this, moving the selection between different
5900         links, and call parent.SelectNextControl if we don't have another
5901         link to focus in the given direction.
5902         (CreateLinkPieces): call Invalidate instead of Refresh.
5903         
5904 2006-07-06  Chris Toshok  <toshok@ximian.com>
5905
5906         * ThemeWin32Classic.cs: DrawLinkLabel changes to accomodate the
5907         new LinkLabel internals.
5908
5909         * LinkLabel.cs: fairly major rewrite.  get rid of all the loops
5910         over pieces looking for active/focused/etc links.  also, deal with
5911         runs of text (and links) with embedded \n's in them, and use
5912         MeasureCharacterRanges instead of MeasureString to figure out the
5913         regions text occupies.  Lastly, do the usual s/Refresh/Invalidate
5914         two-step.
5915
5916 2006-07-04  Jackson Harper  <jackson@ximian.com>
5917
5918         * XplatUIX11.cs: Enable key auto repeat. If the user doesn't have
5919         XKB or key auto repeat, do it manually.  Without key auto repeat,
5920         when a key is held down we get key press, key release, key press,
5921         key release, ... with auto repeat we get key press, key press, key
5922         press ..., and then a release when the key is actually released.
5923
5924 2006-07-03  Jackson Harper  <jackson@ximian.com>
5925
5926         * TabControl.cs:
5927         * ThemeWin32Classic.cs: Tabs do not obey normal background color
5928         rules, they are always control color regardless of the background
5929         color.
5930
5931 2006-07-02  Alexander Olk  <alex.olk@googlemail.com>
5932
5933         * FileDialog.cs: Added internal class MWFConfig.
5934           Removed Registry support and replaced it with support for the new
5935           MWFConfig class. See MWFConfig comments for more information.
5936
5937 2006-06-30  Alexander Olk  <alex.olk@googlemail.com>
5938
5939         * ThemeWin32Classic.cs: Added RadioButton and CheckBox focus
5940           rectangle. Added some patches from eno from bug #78490 and fixed
5941           the arrow position for small up and down CPDrawScrollButtons.
5942
5943 2006-06-30  Jackson Harper  <jackson@ximian.com>
5944
5945         * InternalWindowManager.cs: Remove some debug code.
5946         * Form.cs: When an MdiParent is set to null, the window is
5947         "detatched" and becomes a normal window.
5948         * MdiClient.cs: Don't bring the new child form to the front until
5949         it is activated (setting it as active does this), this makes the
5950         previously active forms titlebar get redrawn as inactive.
5951
5952 2006-06-29  Peter Dennis Bartok  <pbartok@novell.com>
5953
5954         * PrintDialog.cs: Labels need a tab index too, otherwise they overlap
5955           with later controls
5956
5957 2006-06-29  Mike Kestner  <mkestner@novell.com>
5958
5959         * MenuAPI.cs: handle arrow keys in keynav state. Go active on down
5960         arrow in keynav state.  Fixes #78682.
5961
5962 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5963
5964         * PrintDialog.cs: Reorder, relayout, remove extra code, set tab 
5965           order (fixes #78393)
5966
5967 2006-06-28  Jonathan Pobst  <monkey@ipobst.com>
5968
5969         * AccessibleRole.cs, AccessibleStates.cs, AnchorStyles.cs, 
5970           ArrangeDirection.cs, ArrangeStartingPosition.cs, ColorDepth.cs,
5971           ControlStyles.cs, DataGridViewImageCellLayout.cs, DrawMode.cs,
5972           FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs,
5973           GridItemType.cs, HelpNavigator.cs, ImeMode.cs, ItemActivation.cs,
5974           ItemBoundsPortion.cs, Keys.cs, ListViewAlignment.cs, 
5975           PictureBoxSizeMode.cs, PropertySort.cs, SelectionMode.cs,
5976           Shortcut.cs, SizeGripStyle.cs, SortOrder.cs, StructFormat.cs,
5977           TextFormatFlags.cs, ToolBarAppearance.cs, ToolBarButtonStyle.cs,
5978           ToolBarTextAlign.cs, View.cs: 2.0 Changes to existing 1.x
5979           enumerations (FlagsAttribute, SerializableAttribute, added/removed
5980           values)
5981
5982 2006-06-28  Mike Kestner  <mkestner@novell.com>
5983
5984         * ComboBox.cs: implement scroll wheel support. Fixes #78360.
5985
5986 2006-06-28  Atsushi Enomoto  <atsushi@ximian.com>
5987
5988         * PropertyGrid.cs,
5989           PropertyGridTextBox.cs : explicitly set BackColor to differentiate
5990           item lines from other area (It also makes BackColor consistent and
5991           compatible with .NET). Fixed bug #78564.
5992
5993 2006-06-28  Jonathan Chambers  <jonathan.chambers@ansys.com>
5994
5995         * PropertyGrid.cs: refresh toolbar when PropertySort is set.
5996         Patch from Eno for #78555.
5997
5998 2006-06-27  Chris Toshok  <toshok@ximian.com>
5999
6000         * ThemeWin32Classic.cs: s/grid.grid_drawing/grid
6001
6002         * DataGridColumnStyle.cs: same.
6003
6004         * DataGrid.cs: Roll DataGridDrawingLogic.cs into this file.
6005         
6006         * DataGridDrawingLogic.cs: nuke.
6007
6008 2006-06-27  Chris Toshok  <toshok@ximian.com>
6009
6010         * DataGridTableStyle.cs: clean up the constructors, and build the
6011         list of child relations for this table.  I have no idea if this is
6012         where we should be doing it (it probably isn't), but since we're
6013         already iterating over the properties..
6014
6015         * DataGrid.cs: add row resizing.  for now we add a DataGridRow
6016         struct and array for keeping track of row information, similar to
6017         what's shown in a hack on
6018         http://www.syncfusion.com/FAQ/WindowsForms/FAQ_c44c.aspx.
6019
6020         * Theme.cs: be consistent about the naming of DataGrid methods,
6021         prefering ColumnWidths and RowHeights over columnsWidths and
6022         RowsHeights.
6023
6024         * ThemeWin32Classic.cs: same, and also add support for variable
6025         sized rows (and the +/- expansion icons for related rows).
6026
6027 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6028
6029         * TextBoxBase.cs: Applied Eno's patch from #78660
6030
6031 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6032
6033         * Form.cs (ScaleCore): We don't want to scale our form if it's
6034           state is minimized or maximized, but we still need to scale our
6035           child windows. Also, added try/finally block to ensure layout
6036           gets reset (Fixes #78697)
6037
6038 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com>
6039
6040         * Control.cs: Added 2.0 Scale(SizeF) method (Fixes 78700)
6041
6042 2006-06-27  Peter Dennis Bartok  <pbartok@novell.com> 
6043
6044         * Form.cs: Fixed c+p error and added check to resize form if minimum
6045           size is bigger than current size (Fixes #78709)
6046
6047 2006-06-26  Peter Dennis Bartok  <pbartok@novell.com> 
6048
6049         * ThemeEngine.cs (..ctor): Properly use ToLower() (Fixes #78704)
6050
6051 2006-06-26  Mike Kestner  <mkestner@novell.com>
6052
6053         * ComboBox.cs: only do Keypress handling in the combo when there  
6054         are items in the collection. Fixes #78710.
6055
6056 2006-06-26  Chris Toshok  <toshok@ximian.com>
6057
6058         * Binding.cs: make this work bi-directionally.  also, clear up
6059         other mixups between Push/Pull Data (e.g. we're supposed to pull
6060         data when validating).
6061
6062         * BindingManagerBase.cs: trim some fully qualified collection
6063         types.
6064
6065         * PropertyManager.cs (get_IsSuspended): oops, fix this check.
6066
6067 2006-06-23  Chris Toshok  <toshok@ximian.com>
6068
6069         * PropertyManager.cs: It appears (according to the unit tests)
6070         that PropertyManager doesn't use
6071         PropertyDescriptor.AddValueChanged to track propery value changes
6072         in its datasource, but uses the same scheme as Binding, where it
6073         looks for a <Property>Changed event and binds to it.
6074
6075         Also, according to the docs, IsSuspended always returns false for
6076         a property manager with a non-null datasource.
6077
6078 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com> 
6079
6080         * Form.cs: (ShowDialog): If we're returning a forced cancel we still
6081           need to update the actual DialogResult. (Fixes #78613)
6082
6083 2006-06-22  Peter Dennis Bartok  <pbartok@novell.com>
6084
6085         * Form.cs (ShowDialog): Release any captures before running the
6086           new message pump (fixes #78680)
6087
6088 2006-06-22  Mike Kestner  <mkestner@novell.com>
6089
6090         * ListView.cs: Layout column widths properly in details mode even 
6091         if HeaderStyle.None is set.  Fixes #78691.
6092
6093 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com>
6094
6095         * FileDialog.cs: Fixed taborder to match MS. Fixes #77873 partially.
6096
6097 2006-06-21  Peter Dennis Bartok  <pbartok@novell.com> 
6098
6099         * Control.cs (ContainsFocus): Using new driver method to get focused
6100           window, instead of trying to use internal tracking var, which can
6101           recursion issues (Fixes #78685)
6102         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
6103           XplatUIWin32.cs: Added GetFocus method to return focused window
6104
6105 2006-06-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6106
6107         * ColorDialog.cs: when the mouse button is pressed inside the color
6108         matrix, don't let the cursor move out of it until the button is
6109         released, which is the behavior on windows. Changed 'colours' by
6110         'colors' to use the same word consistently.
6111
6112 2006-06-21  Chris Toshok  <toshok@ximian.com>
6113
6114         * DataGrid.cs: add in some basic navigation stuff (navigating to a
6115         child relation and back, using a stack).  Also, remove
6116         GetDataSource and the code that calls it - it's not needed.  Also,
6117         track CurrencyManager.ListName's removal.
6118
6119 2006-06-21  Chris Toshok  <toshok@ximian.com>
6120
6121         * CurrencyManager.cs: push some of the original type checking from
6122         BindingContext.CreateBindingManager to here, and remove some of
6123         the finalType stuff.  Need more tests to make sure I've got the
6124         ListName part right, and we might need more in SetDataSource.
6125
6126         * PropertyManager.cs: add a ctor that takes just the datasource,
6127         and no property name.  Make SetDataSource work with a null
6128         property_name, and make Current return the data_source if the
6129         property descriptor is null.  this makes 'string foo = "hi";
6130         BindingContext[foo].Current' return "hi" as it should.
6131
6132         * RelatedCurrencyManager.cs: make this code more generic - there's
6133         no reason the parent manager has to be CurrencyManager, and
6134         there's no reason to pass the DataRelation.  It suffices to use a
6135         BindingManagerBase and PropetyDescriptor.
6136
6137         * RelatedPropertyManager.cs: make a similar change here.
6138         
6139         * BindingContext.cs: make CreateBindingManager the beautiful, tiny
6140         flower I knew it could be.
6141
6142 2006-06-20  Chris Toshok  <toshok@ximian.com>
6143
6144         * PropertyManager.cs: the PropertyChangedHandler is invoked when
6145         data in the source has changed and we need to update the control,
6146         so s/PullData/PushData.
6147
6148         * CurrencyManager.cs: Refresh is meant to update the control from
6149         data in the datasource.  So, s/PullData/PushData.
6150
6151         * BindingContext.cs: add more ugliness (we weren't handling the
6152         case where data_source = DataTable and data_member = column_name).
6153
6154         * Binding.cs: fix PushData/PullData mixup.  Both are interpreted
6155         from the perspective of the datasource.  PullData pulls from the
6156         control, PushData pushes to the control.
6157
6158 2006-06-20  Chris Toshok  <toshok@ximian.com>
6159
6160         * BindingContext.cs: rewrite the CreateBindingManager code to
6161         handle navigation paths more or less properly.  This could
6162         definitely stand some more work, in particular to push the
6163         recursion up to the toplevel.  But that relies on fixes in other
6164         places (System.Data comes to mind).
6165
6166         Also, move to a flat hashtable (and encode the twolevel nature of
6167         the dictionary into the hash key).  This lets us implement the
6168         IEnumerable.GetEnumerator method.
6169
6170         * RelatedCurrencyManager.cs: new class.  Update our view based on
6171         our relation and our parent CurrencyManager's position.
6172
6173         * CurrencyManager.cs: split out some logic from the ctor into
6174         SetView, so it can be called from the new RelatedCurrencyManager
6175         subclass.
6176
6177         * RelatedPropertyManager.cs: new class.  Update our datasource
6178         based on the position of our parent CurrencyManager.
6179
6180         * PropertyManager.cs: split out some logic from the ctor into
6181         SetDataSource, so it can be called from the new RelatedDataSource
6182         subclass.  Also, make the Current getter return the value
6183         of the PropertyDescriptor, not the data_source.
6184
6185         * Binding.cs: no need to duplicate the string splitting code here.
6186
6187 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6188
6189         * Control.cs:
6190           - set_Enabled: OnEnabledChanged is not called if the inherited state 
6191             of the control is not altered, even though  we might be changing the
6192             internal state of the control (#78458)
6193           - set_Enabled: (Re)Moved the enabling/disabling of the window to 
6194             OnEnabledChanged, to allow easy altering of any child window state
6195           - OnEnabledChanged: Added code to enable/disable driver window state
6196           - OnParentEnabledChanged: Instead of firing the event, call 
6197             OnEnabledChanged, which will fire the event and also a) set driver
6198             window state and pass the enabled state to any grandchildren (#78458)
6199
6200 2006-06-19  Jackson Harper  <jackson@ximian.com>
6201
6202         * InternalWindowManager.cs: We don't set the cursor explicitly
6203         thats done via the response to NCHITTESTs.
6204         - Don't need to adjust for titlebar heights anymore, the
6205         coordinates are coming in the correct coordinates now (see peters
6206         last patch).
6207
6208
6209 2006-06-19  Peter Dennis Bartok  <pbartok@novell.com> 
6210
6211         * XplatUIX11.cs (GetMessage): WM_NCxBUTTONx messages were wrongly
6212           being translated relative to whole window, instead of client window.
6213           That caused broken offsets on mouseclick (and caused gas for our
6214           InternalWindowManager)
6215
6216 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6217
6218         * TextControl.cs:
6219           - MoveCaret: Implemented PgUp, PgDown, CtrlPgUp and CtrlPgDown
6220           - Undo(): Added replay of cursor move on DeleteChars action; added
6221             calling Undo() again if a recorded cursor move is invalid (to
6222             ensure that some action is performed on Undo)
6223         * TextBoxBase.cs (ProcessKey): Added handling of PgUp and PgDown (#78482)
6224
6225 2006-06-16  Jackson Harper  <jackson@ximian.com>
6226
6227         * MdiClient.cs: Instead of just sizing maximized windows when
6228         there is a resize we also have to adjust the Y of minimized
6229         windows, so they stay pinned to the bottom of the mdi container.
6230         - Eliminate separate tracking of the active control, we can just
6231         get this from the controls collection.
6232         - Paint the decorations for the newly activated titlebar so we get
6233         a pretty blue bar.
6234         * InternalWindowManager.cs:
6235         * ThemeWin32Classic.cs: Minimized windows get all three buttons
6236         even if they are a tool window.
6237         
6238 2006-06-15  Peter Dennis Bartok  <pbartok@novell.com> 
6239
6240         * TextControl.cs (Undo): Handle non-existent cursor locations in the
6241           undo buffer, these can happen when text was deleted and the cursor
6242           was recorded first. Since we will also have a recorded cursor
6243           after the delete this is not an issue. (Fixes #78651)
6244
6245 2006-06-14  Peter Dennis Bartok  <pbartok@novell.com> 
6246
6247         * AccessibleObject.cs: Remove dependence on Control.is_selected;
6248           instead properly track control states internally (allows us to
6249           remove is_selected from Control)
6250
6251 2006-06-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6252
6253         * ImageListStreamer.cs: correctly generate the 1bpp mask for images
6254         whose width is not a multiple of 8.
6255
6256 2006-06-13  Jackson Harper  <jackson@ximian.com>
6257
6258         * MdiClient.cs:  Only maximize the next child if the current one
6259         is maximized.
6260
6261 2006-06-13  Chris Toshok  <toshok@ximian.com>
6262
6263         * DataGridColumnStyle.cs: Invalidate the column when HeaderText is
6264         modified.  Also, guard against grid or grid_drawing being null in
6265         Invalidate.
6266
6267         * DataGrid.cs: Reformat tons of getters/setters.  In the
6268         DataMember setter, just call SetNewDataSource instead of
6269         duplicating some of its functionality.  In SetNewDataSource, don't
6270         check ListManager for null, since the property getter creates the
6271         object if needed.
6272
6273         * DataGridTableStyle.cs: don't set TableStyle or call
6274         SetDataGridInternal on the column here, it's done in
6275         GridColumnStylesCollection.Add.
6276
6277         * GridColumnStylesCollection.cs: fix all the explicit interface
6278         implementations to just call our methods.  Nuke AddInternal() and
6279         move the body of it to Add().  Also, add a call to
6280         column.SetDataGridInternal to Add().
6281
6282         * DataGridTextBoxColumn.cs (.ctors): call this() instead of
6283         base()+duplicate code.  Also, use the Format property instead of
6284         format to generate an Invalidate ala MS.  Lastly, create the
6285         textbox here, unconditionally.
6286         (set_Format): call Invalidate.
6287         (get_TextBox): no need to call EnsureTextBox.
6288         (Commit): remove the message box.
6289         (Edit) remove the call to EnsureTextBox.
6290         (EndEdit): call HideEditBox instead of ReleaseHostedControl.
6291         (EnterNullValue): no need to check textbox for null.
6292         (HideEditBox): no need to check textbox for null.
6293         (SetDataGridInColumn): add the textbox to the grid's controls.
6294         (EnsureTextBox): nuke.
6295         
6296 2006-06-13  Jackson Harper  <jackson@ximian.com>
6297
6298         * MdiWindowManager.cs: Hook up to the maximized menus paint event
6299         and redraw the buttons when needed. Unhook when the window is
6300         unmaximized.
6301         * MainMenu.cs: Add an internal Paint event, the mdi window manager
6302         needs this so that it can redraw its buttons when the menu is
6303         repainted.
6304         * InternalWindowManager.cs:
6305         * Form.cs: The method order has changed for DrawMaximizedButtons,
6306         so that it can be a PaintEventHandler.
6307         
6308 2006-06-13  Jackson Harper  <jackson@ximian.com>
6309
6310         * MdiClient.cs: When we close a maximized mdi window, the next mdi
6311         window is activated and maximized, even if it wasn't before.
6312         - When  a new window is activated repaint the decorations of the
6313         old one, so that it no longer has the Active "look" (the blue
6314         titlebar).
6315         * InternalWindowManager.cs: Open up CreateButtons to base classes
6316         so they can recreate the buttons on state changes.
6317         - If a window is maximized give it all three buttons
6318         * MdiWindowManager.cs: Create the titlebar buttons when the state
6319         is changed, this is needed because a toolwindow will not have all
6320         three buttons until it is maximized.
6321
6322 2006-06-13  Atsushi Enomoto  <atsushi@ximian.com>
6323
6324         * ProgressBar.cs : PerformStep() shouldn't exceed Maximum.
6325           Fixed bug #78609.
6326
6327 2006-06-12  Jackson Harper  <jackson@ximian.com>
6328
6329         * KeysConverter.cs: Make sure we handle the Ctrl special case
6330         if its the only key.
6331         
6332 2006-06-12  Jackson Harper  <jackson@ximian.com>
6333
6334         * Theme.cs: Add a method to get the size of a managed window
6335         toolbar button.
6336         * InternalWindowManager.cs: Remove the ButtonSize property, this
6337         should be retrieved from the theme.
6338         * MdiWindowManager.cs: Get the button size from the theme
6339         * ThemeWin32Classic.cs: Make the method to get the managed window
6340         titlebar button size public.
6341         - Handle the different button sizes of maximized toolwindows
6342         (should match any maximized window).
6343         - Get the titlebar height from the theme, not the WM (which gets
6344         it from the theme).
6345
6346 2006-06-12  Jackson Harper  <jackson@ximian.com>
6347
6348         * InternalWindowManager.cs: Handle NC Double Clicks, passing the
6349         event down to the mdi window manager.
6350         - Expose some extra stuff to base classes
6351         - Make sure to end the Capture on an NC Mouse up, so that we can
6352         get double clicks properly, and the sizing doens't stick.
6353         - When doing PointToClient contain it in the workable desktop
6354         area, this prevents windows from changing size when the cursor is
6355         pulled outside of the working area while sizing.
6356         * MdiWindowManager.cs: When we get a double click maximize the
6357         window.
6358         - Reset the cursor after handling mode changes.
6359
6360 2006-06-12  Peter Dennis Bartok  <pbartok@novell.com> 
6361
6362         * XplatUIX11.cs (WorkingArea): Read the actual workarea for the 
6363           current desktop, instead of just assuming a 0, 0 origin. This
6364           is needed for our internal window manager, to know the top
6365           margin of the desktop
6366
6367 2006-06-12  Chris Toshok  <toshok@ximian.com>
6368
6369         * DataGrid.cs (set_CurrentCell): concede focus as we move around.
6370         we need this to get rid of the selected background in the bool
6371         column.
6372         (CancelEditing): move the ConcedeFocus call to above the Abort
6373         call.  Also, set is_changing to false and invalidate the row
6374         header if we were changing before.
6375         (ProcessKeyPreviewInternal): remove, since noone outside this
6376         class calls it anymore.  Roll the code into ProcessKeyPreview.
6377         (EndEdit): remove the internal version.
6378         (InvalidateCurrentRowHeader): make private.
6379
6380         * DataGridBoolColumn.cs: simplify this class a bunch.  remove the
6381         Keys.Escape handling (and with it the last call to
6382         DataGrid.EndEdit from outside the class.)
6383
6384
6385 2006-06-12  Chris Toshok  <toshok@ximian.com>
6386
6387         * DataGridTextBox.cs (.ctor): isedit defaults to false.
6388         (OnKeyPress): set isedit to true.
6389         (ProcessKeyMessage): remove Keys.Enter handling from here.  it's
6390         already handled by the grid.
6391
6392         * DataGrid.cs (set_CurrentCell): more work here.  it's still not
6393         right.  ugh.
6394         (set_DataSource): SetDataSource always returns true, so stop
6395         putting it in an if statement.
6396         (EndEdit): get rid of some {}'s
6397         (ProcessGridKey): return true in case Keys.Escape.
6398         (ProcessKeyPreviewInternal): only handle KEYDOWN messages.
6399         (ConnectListManagerEvents,DisconnectListManagerEvents): connect to
6400         PositionChanged, stopped connecting to CurrentChanged.
6401         (GetDataSource): simplify this a bunch.
6402         (SetDataSource): change return type from bool to void.
6403         (OnListManagerPositionChanged): rename OnListManagerCurrentChanged
6404         to this, and make sure we don't set ListManager.Position inside
6405         set_CurrentCell.
6406         (OnListManagerItemChanged): if we're passed an actual index,
6407         redraw that row.
6408
6409         * CurrencyManager.cs (set_Position): don't call PullData here.
6410
6411 2006-06-09  Jackson Harper  <jackson@ximian.com>
6412
6413         * TreeNode.cs:  Recalculate the visible order before doing the
6414         Expand/Collapse Below calls, because those calls generate an
6415         expose.
6416         - Reduce calls to the TreeView property, which is mildly expensive
6417         by using a local var.
6418         * Form.cs: Layout the MDI child windows when creating the parent
6419         form.
6420         - Don't use the internal constructor anymore
6421         * MdiClient.cs: use the parent form width/height (if available)
6422         when laying out the child windows, we do this because the
6423         mdiclient isn't docked yet when the initial layout is done.
6424         - Don't need an internal constructor anymore.
6425
6426 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6427
6428         * FileDialog.cs: handle access errors when trying to create a folder
6429         or changing to a directory. No need to initialize out parameters.
6430
6431 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6432
6433         * FileDialog.cs: Append a number when creating a new folder if the
6434           folder already exists (use parenthesis instead of square brackets)
6435
6436 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6437
6438         * FileDialog.cs:
6439           - Disabled registry support for windows and added better registry
6440             error checking for other systems (need to investigate why it
6441             works perfectly on my system)
6442           - If a folder already exist show an error MessageBox instead of
6443             trying to create an indexed name.
6444           - Fixed a non intentional typo.
6445
6446 2006-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6447
6448         * FileDialog.cs: (SetFileName) don't crash if CurrentRealFolder is null.
6449
6450 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6451
6452         * FileDialog.cs: When creating a new folder don't crash if the
6453           folder already exists.
6454
6455 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6456
6457         * FileDialog.cs: Allmost a complete rewrite.
6458           - added a "virtual" file system that handles the differences
6459             between unix and windows file systems (especially the directory
6460             structure). Moved most of the directory and file handling code
6461             into the vfs.
6462             Added vfs classes: MWFVFS, FileSystem, WinFileSystem,
6463             UnixFileSystem and FSEntry.
6464           - Recently used folder/directory, size, location and used file names
6465             (file name ComboBox) are now stored in the registry and get read
6466             before the dialog shows up (fixes part 6 of bug #78446).
6467           - Creation of new folders/directories is now possible (context menu
6468             or ToolBar). Added TextEntryDialog for this that fills in the gap
6469             until ListView.LabelEdit works.
6470           - Fixed cursor handling (bug #78527) and focus handling for
6471             PopupButtonPanel
6472           - Various "Search in" ComboBox enhancements. The content of the
6473             dropdown listbox now almost matches ms.
6474           - Changed the behaviour when the user switches to SpecialFolder
6475             Recent to show the ListView in View.Details.
6476           - Beside using the ToolBar to change the View property of the
6477             file ListView it is now possible to use the context menu too.
6478
6479 2006-06-08  Alexander Olk  <alex.olk@googlemail.com>
6480
6481         * ComboBox.cs: Don't create a new ObjectCollection when an item
6482           gets inserted. Just insert the item in the existing object_items
6483           ArrayList.
6484
6485 2006-06-08  Jackson Harper  <jackson@ximian.com>
6486
6487         * OpenTreeNodeEnumerator.cs: Fix to use the Parent property, so
6488         that the treeview and root node checks are done also, this fixes a
6489         regression i caused in the unit tests.
6490
6491 2006-06-07  Wade Berrier <wberrier@novell.com> 
6492
6493         * RichTextBox.cs: More ISO8859-1 -> unicode
6494
6495 2006-06-07  Mike Kestner  <mkestner@novell.com>
6496
6497         * ComboBox.cs : use items to hold highlight/selection so that
6498         collection insertions don't require synchronization.
6499
6500 2006-06-07  Jackson Harper  <jackson@ximian.com>
6501
6502         * InternalWindowManager.cs: Simplify (and FIX) the window sizing
6503         routine.  We now always keep the sized edge at the cursor instead
6504         of computing movement and adjusting rects.  There is one buglet
6505         with this method though when the cursor is moved over area that
6506         the window can not expand too (such as the toolbars on the desktop).
6507
6508 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6509
6510         * XplatUIX11.cs: (IsEnabled,IsVisible) the window handler can be null
6511         here. Fixes crash on startup in AlbumSurfer.
6512
6513 2006-06-07  Peter Dennis Bartok  <pbartok@novell.com> 
6514
6515         * RichTextBox.cs: Replaced embedded ISO8859-1 chars with proper unicode
6516           values
6517
6518 2006-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6519
6520         * XplatUIX11.cs: call XPending and XNextEvent inside the same lock()
6521         statement to avoid calling XNextEvent which will block if another thread
6522         took the event that we were expecting. Fixes bug #78605.
6523
6524 2006-06-07  Mike Kestner  <mkestner@novell.com>
6525
6526         * ListView.cs : isolated checkbox clicking from the selection logic.
6527         Toggle check state on item doubleclicks.  Really fixes #78454 part2.
6528
6529 2006-06-06  Carlos Alberto Cortez <calberto.cortez@gmail.com>
6530
6531         * Form.cs: Check that the value passed to Form.DialogResult
6532         is a valid enum value.
6533
6534 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6535
6536         * FileDialog.cs: disable the up button when in 'Recently Used' or 'My
6537         Computer'. Clicking it in the network view goes to 'My Computer'.
6538         Added CIFS filesystem type. Display the mount point of filesystems.
6539         Avoid duplicate mount points (happens for me with CIFS);
6540
6541 2006-06-06  Jackson Harper  <jackson@ximian.com>
6542
6543         * InternalWindowManager.cs: Draw the maximized windows buttons
6544         when resizing.
6545
6546 2006-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6547
6548         * Form.cs: when running a modal dialog, ignore WM_CLOSE requests for
6549         all other dialogs. Fixes bug #78585.
6550
6551 2006-06-06  Mike Kestner  <mkestner@novell.com>
6552
6553         * CheckedListBox.cs : apply CheckOnClick behavior to unchecking too.
6554         Only invalidate checkbox on checkstate changes to avoid flicker.
6555         * ListBox.cs : avoid unselect/select when clicking selected item.
6556         avoid reselection flicker for already multiselected items.
6557         Fixes #78382.
6558
6559 2006-06-06  Jackson Harper  <jackson@ximian.com>
6560
6561         * MdiWindowManager.cs: When the window is closed do an NCRecalc on
6562         the parent form so that the menu is removed if needed.
6563
6564 2006-06-06  Mike Kestner  <mkestner@novell.com>
6565
6566         * ListBox.cs : add ScrollWindow call to UpdateTopItem.  fix
6567         Prev/Next/PrevPage/NextPage/Home/End index calculation.  Fixes #78559.
6568
6569 2006-06-06  Mike Kestner  <mkestner@novell.com>
6570
6571         * CheckedListBox.cs : rebuild check collection on Add.  Fixes #78426.
6572
6573
6574 2006-06-06  Jackson Harper  <jackson@ximian.com>
6575
6576         * Control.cs: Use the property (instead of the field) to get the
6577         default cursor so it is instantiated correctly.
6578         * InternalWindowManager.cs: The OS doesn't give us an NCPAINT with
6579         resizes so we need to manually repaint the window decorations here.
6580         - Set the titlebar button locations as soon as they are created,
6581         otherwise they are not set correctly on win32.
6582         
6583 2006-06-06  Chris Toshok  <toshok@ximian.com>
6584
6585         * CurrencyManager.cs (set_Position): call PullData before
6586         OnCurrentChanged.
6587         (AddNew): after calling IBindingList.AddNew, update our
6588         listposition, and call OnCurrentChanged/OnPositionChanged (without
6589         calling PullData).
6590         (OnCurrentChanged): remove the call to PullData from here.
6591         (OnItemChanged): remove the call to PushData from here.
6592         (OnPositionChanged): change the test from == null to != null to
6593         match the other methods.
6594         (ListChangedHandler): the grossest part of the patch.  Implement
6595         this such that it passes the unit tests in CurrencyManagerTest and
6596         the output more or less matches that of MS's implementation.
6597  
6598 2006-06-06  Mike Kestner  <mkestner@novell.com>
6599
6600         * ListView.cs : only update check state on single click.
6601         * ThemeWin32Classic.cs : fix focus drawing for details view without
6602         fullrowselect.  Fixes #78454.
6603         * XplatUIX11.cs : fix for double click emission.
6604
6605 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
6606
6607         * PropertyGridView.cs : Applied Atsushi's patch to fix
6608         font dialog bug  (#78197).
6609
6610 2006-06-05  Jackson Harper  <jackson@ximian.com>
6611
6612         * TreeNode.cs: Compute the next node for expanding/collapsing
6613         correctly. We now factor in nodes without a NextNode
6614         correctly. (Fixes somes cases in nunit-gui).
6615         * InternalWindowManager.cs: Set the bounds when updating the
6616         virtual position of a tool window.
6617         
6618 2006-06-05  Chris Toshok  <toshok@ximian.com>
6619
6620         * DataGrid.cs: rename cached_currencymgr to list_manager.
6621         (set_CurrentCell): move SetCurrentCell code here, and clean it up
6622         some.
6623         (CurrentRow, CurrentColumn): single accessors so we can make the
6624         cursor movement code a lot easier to understand.
6625         (CurrentRowIndex): implement this in terms of CurrentRow.
6626         (BeginEdit): clean this up a bit.
6627         (CancelEditing): sort out the is_editing/is_changing/is_adding
6628         stuff a little.
6629         (EndEdit): minor changes.
6630         (OnKeyDown): add a comment about a (most likely) unnecessary
6631         check.
6632         (OnMouseDown): cancel editing when we click on a row header.  And
6633         use the CurrentRow setter, not CurrentCell.
6634         (ProcessDialogKey): directly call ProcessGridKey.
6635         (UpdateSelectionAfterCursorMove): factor out this common block of
6636         code (it's used everywhere that we move the cursor by updating row
6637         or column).
6638         (ProcessGridKey): pretty substantial overhaul.  Use the
6639         CurrentRow/CurrentColumn properties to make the code a lot more
6640         readable.  Only use the CurrentCell property when we have to
6641         modify both row and column at once.  Tab behavior is still broken,
6642         and Delete is untested.
6643         (Select): if we have no selected rows, set selection_start to
6644         @row.
6645         (EditCurrentCell): rename EditCell this.  It was only ever invoked
6646         with CurrentCell as the arg, so drop the arg and rename it.
6647
6648         * DataGridColumnStyle.cs: clean up the constructors a little, and
6649         drop CommonConstructor().
6650
6651         * DataGridTextBox.cs (.ctor): set accepts_return to true so we
6652         actually get notified when the user hits it.
6653         (ProcessKeyMessage): *substantially* simplify this method.
6654         There's no reason (that I can see) for the textbox to be making
6655         calls into the datagrid at all.  Remove all of them but the ones
6656         for Enter handling.  those will take some more work.
6657
6658         * DataGridTextBoxColumn.cs (ConcedeFocus): implement this by
6659         calling HideEditBox.
6660         (HideEditBox): if we have an active textbox, render it invisible
6661         without causing a re-layout of the datagrid.
6662
6663 2006-06-05  Mike Kestner  <mkestner@novell.com>
6664
6665         * ListView.cs : fix NRE crasher when focuseditem is cleared by
6666         collection changes by resetting it to Items[0].  Fixes #78587.
6667
6668 2006-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6669
6670         * MessageBox.cs: if the height of the text is larger than the icon_size,
6671         use that. Fixes bug #78575.
6672
6673 2006-06-05  Jackson Harper  <jackson@ximian.com>
6674
6675         * TreeView.cs: Fix line drawing when scrolling.  To do this each
6676         node is basically responsible for drawing its entire horizontal
6677         area.  When drawing a node it draws its parent node lines if
6678         needed.
6679         - Adjust the clip area to the viewport rectangle
6680         - Fix Left/Right key handling to match MS. (It expand/collapses
6681         and moves to parents/first child but does not move selection to
6682         sibling nodes).
6683         - Fix SetTop to work with new bound calculation code
6684         - When scrollbars are no longer needed we need to reset scrolling
6685         vars and recalculate the visible order so the redraw is correct
6686         * TreeNode.cs: We can't expand/collapse nodes with no children.
6687
6688 2006-06-03  John Luke  <john.luke@gmail.com> 
6689
6690         * X11DesktopColors.cs: dllimport the exact gtk and gdk versions
6691         so the colors work without dev packages
6692         
6693 2006-06-02  Peter Dennis Bartok  <pbartok@novell.com> 
6694
6695         * Control.cs 
6696           - Select: Implemented to just use activate. Seems to match MS 
6697             behaviour closest. Documented to only do actual control walking 
6698             based on it's parameters if in a container control so I moved 
6699             the code there.
6700           - Removed selection check logic from our internal Select() method
6701         * ContainerControl.cs:
6702           - Select: Moved selection logic from Control here, since MS documents
6703             that containers obey the bool arguments. No longer calling base
6704
6705 2006-06-02  Jackson Harper  <jackson@ximian.com>
6706
6707         * TreeView.cs: If the selected node isn't changed when we get
6708         focus update the previously selected node so that we see the
6709         selection box.
6710
6711 2006-06-02  Mike Kestner  <mkestner@novell.com>
6712
6713         * ComboBox.cs: restructure grab and general mouse event handling.
6714         Make the composite control raise mouse events like it was a single
6715         control for leaves/enters/motion/up/down events.  fix dropdown list
6716         coordinate mangling and refactor it into the scrollbar subclass to
6717         reduce code duplication.  Fixes #78282 #78361 and #78457.
6718
6719 2006-06-02  Mike Kestner  <mkestner@novell.com>
6720
6721         * ScrollBar.cs: remove Capture setting/clearing, as it happens
6722         automatically in the Control.WndProc.
6723
6724 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6725
6726         * FileDialog.cs: fix crash when running SharpChess, which sets the
6727         FilterIndex to 2 with only one Filter.
6728
6729 2006-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6730
6731         * ToolBar.cs: add SizeSpecified property.
6732         * ToolBarButton.cs: when the ButtonSize is calculated by the container,
6733         try to figure out our real size, otherwise fallback to what the
6734         container says.
6735
6736 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
6737
6738         * XplatUIX11.cs (DefWndProc): WM_MOUSEWHEEL needs to be passed up
6739         * Control.cs (WndProc): MS always calls the DefWndProc to pass
6740           up the event
6741
6742 2006-06-01  Mike Kestner  <mkestner@novell.com>
6743
6744         * ListView.cs: revamp the focus management in ListView.  It still
6745         causes churn of LostFocus/GotFocus emissions on clicks, but it's
6746         better than not handling focus at all.  Will revisit when pdb feels
6747         the general focus handling is solid.  Fixes #78526.
6748
6749 2006-06-01  Jackson Harper  <jackson@ximian.com>
6750
6751         * TreeView.cs: Set the default border style in the constructor.
6752         - Move painting to use OnPaintInternal instead of capturing
6753         WM_PAINT, this is the correct way of doing things
6754         - UpdateBelow shouldn't invalidate the scrollbar area
6755         - Cap the top on update below in case the node was above the top
6756         of the viewport rectangle.
6757         - ExpandBelow and Collapse below need to obey Begin/End Update.
6758         * TreeNode.cs: Make is_expanded internal so the treenode
6759         collection can change it without firing the whole event chain.
6760         * TreeNodeCollection.cs: When clearing all the child nodes make
6761         sure to recalc the visible order.
6762         - Improve algo for remove the top node
6763
6764 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com> 
6765
6766         * XplatUIX11.cs (SetFocus): Make sure we can handle re-entrancy due to
6767           SendMessage directly calling window procedures, which in turn might
6768           call SetFocus()
6769
6770 2006-06-01  Peter Dennis Bartok  <pbartok@novell.com>
6771
6772         * Control.cs: Don't handle WM_SETFOCUS if the same window already
6773           has focus (works around X11 sending a FocusIn after our SetFocus)
6774         * XplatUIX11.cs: Send KILLFOCUS before setting SETFOCUS on new window
6775
6776 2006-06-01  Alexander Olk  <alex.olk@googlemail.com>
6777
6778         * Mime.cs: Fix for the NET_2_0 build.
6779           NameValueCollection needs StringComparer now.
6780
6781 2006-05-31  Chris Toshok  <toshok@ximian.com>
6782
6783         * DataGridDrawingLogic.cs (FromPixelToColumn): modify this to also
6784         return (via an out parameter) the starting X of the column.
6785         (UpdateVisibleColumn): track change to FromPixelToColumn.
6786         (HitTest): add a ColumnResize case here.
6787         (DrawResizeLine): new function, probably poorly named.
6788
6789         * DataGrid.cs (.ctor): get rid of cached_currencymgr_events.  We
6790         only need to keep one reference.
6791         (set_ListManager): same.
6792         (OnMouseDown): call HitTest instead of grid_drawing.HitTest.
6793         Also, add support for HitTestType.ColumnResize.
6794         (OnMouseMove): add column resize behavior here, and change the
6795         cursor to the correct one as we move around the datagrid.
6796         (OnMouseUp): terminate the column resize if we're resizing.
6797         (ProcessGridKey): from the MS docs, Alt-0 enters the null value
6798         for the current cell.
6799         (ConnectListManagerEvents): use cached_currencymgr.
6800         (DisconnectListManagerEvents): fill this in, using
6801         cached_currencymgr.
6802         (SetCurrentCell): remove cached_currencymgr_events handling.
6803         (SetDataMember): only call DisconnectListManagerEvents if
6804         cached_currencymgr is != null.
6805         (SetDataSource): same.
6806         (OnListManagerCurrentChanged): cached_currencymgr_events ->
6807         cached_currencymgr.
6808
6809 2006-05-31  Jackson Harper  <jackson@ximian.com>
6810
6811         * BindingManagerBase.cs: Remove somedebug code that creeped into
6812         SVN.
6813         * TreeNode.cs: We get the indent level dynamically right now, so
6814         don't track it as a member.
6815         * TreeNodeCollection.cs: Make sure all nodes added to the list
6816         have parents, treeviews/topnodes setup properly.
6817         - Don't attempt to track indent level.
6818
6819 2006-05-30  Jackson Harper  <jackson@ximian.com>
6820
6821         * BindingContext.cs: Create the currency manager tables here.
6822         This allows us to more easily create null tables (when bad data
6823         members are used), and more easily create related currency
6824         managers.
6825         * CurrencyManager.cs: All the table creation stuff is done by the
6826         binding context now.
6827         - Current should throw an exception if listposition is -1.
6828         - CancelCurrentEdit/EndCurrentEdit, do nothing if the list hasn't
6829         been bound yet.
6830
6831 2006-05-30  Mike Kestner  <mkestner@novell.com>
6832
6833         * ListView.cs: allow reexpansion of zero-width column headers.
6834         Fixes #78528.
6835
6836 2006-05-28  Chris Toshok  <toshok@ximian.com>
6837
6838         * CurrencyManager.cs (get_Current): after the late binding
6839         listposition = -1 fix, we need to guard against it here and return
6840         null, otherwise we raise an exception (which is swallowed
6841         elsewhere, and breaks datagrid databinding.)
6842
6843 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6844
6845         * MenuAPI.cs (ProcessMenuKey): We can legally get msg types other
6846           than WM_SYSKEY, don't throw if get something unexpected (#78507)
6847
6848 2006-05-26  Jackson Harper  <jackson@ximian.com>
6849
6850         * ControlPaint.cs:
6851         * ThemeWin32Classic.cs: For color comparisons just use the ARGB
6852         values, it's faster and it's all we care about (we don't care if
6853         the names aren't equal).
6854         * KeyboardLayouts.cs: Eliminate some dead code.
6855         - Lazy init things
6856         * X11Keyboard.cs: Lazy init keyboard detection.
6857         - Cleanup access modifiers a little.
6858
6859 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com>
6860
6861         * XplatUIX11.cs: Once again, attempting to get layout just right.
6862
6863 2006-05-26  Peter Dennis Bartok  <pbartok@novell.com> 
6864
6865         * LinkLabel.cs (CreateLinkPieces): Use MeasureString to calculate
6866           the sizes of each link section, that will result in sizes that
6867           match DrawString's layout (Fixes #78391)
6868
6869 2006-05-27  Alexander Olk  <alex.olk@googlemail.com>
6870
6871         * FileDialog.cs: If AddExtension property is true autocomplete the
6872           extensions in SaveFileDialog correctly. Fixes bug #78453.
6873           Set MyNetwork and MyComputer to "C:\" for windows. This should
6874           fix part 8 of bug #78446 for now.
6875
6876 2006-05-26  Chris Toshok  <toshok@ximian.com>
6877
6878         * DataGrid.cs (ColumnStartedEditing): fill these in.  for now just
6879         invalidate the current row header if we need to, but presumably
6880         we'll invalidate the row corrsponding to the bounds or
6881         editingControl.
6882         (GridHScrolled): switch back to this method, as it's part of the
6883         public api.  *sigh*.
6884         (GridVScrolled): same.
6885         (OnMouseWheel): hack up something that more or less works.  Call
6886         GridHScrolled/GridVScrolled directly, instead of duplicating much
6887         of their code here.
6888         (EnsureCellVisibility): reinstate a bunch of this code, since we
6889         can't just set the scrollbar Value and expect to do all the work
6890         in the ValueChanged handler.  Also, Call Update() after scrolling
6891         in one direction so the other XplatX11.ScrollWindow call has the
6892         proper stuff in the proper places.
6893         (EditCell): set is_editing to true before calling .Edit.
6894
6895         * DataGridTextBox.cs (set_IsInEditOrNavigateMode): just set it,
6896         don't bother comparing first.
6897         (OnKeyPress): call grid.ColumnStartedEditing before calling
6898         base.OnKeyPress.  this will set is_changing and invalidate the row
6899         header if necessary.
6900         (ProcessKeyMessage): for WM_CHAR messages, call
6901         ProcessKeyEventArgs directly.  swallow anything other than WM_CHAR
6902         and WM_KEYDOWN.
6903         
6904         * DataGridBoolColumn.cs (Edit): don't set is_editing to true here.
6905         it's done in the DataGrid.
6906         (NextState): call grid.ColumnStartedEditing, which takes care of
6907         invalidating the row header (and setting is_changing).
6908
6909         * DataGridTextBoxColumn.cs (Edit): don't set is_editing to true
6910         here.  it's done in the DataGrid.
6911
6912 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6913
6914         * Control.cs: allow changing the cursor when the mouse position is
6915         out of bounds but Capture is set.
6916         * LinkLabel.cs: handle the case when the mouse button is pressed on the
6917         linklabel but released somewhere else.
6918
6919 2006-05-25  Jackson Harper  <jackson@ximian.com>
6920
6921         * TreeView.cs: When we get focus if there is no selected node make
6922         it the top node
6923         - Remove some uneeded setup code from Draw.
6924         * TreeNodeCollection.cs: If the tree doesn't have a top node when
6925         a new node is inserted make the new node the top.
6926         * XplatUIX11.cs:
6927         * Timer.cs: Use Utc time so that no local time zone stuff needs to
6928         be used (should be faster).
6929         
6930 2006-05-25  Chris Toshok  <toshok@ximian.com>
6931
6932         * DataGrid.cs (EnsureCellVisibility): remove some code to fix a
6933         problem with the last commit.
6934
6935 2006-05-25  Chris Toshok  <toshok@ximian.com>
6936
6937         * DataGridTextBoxColumn.cs (ReleaseHostedControl): turns out we do
6938         need the invalidate call here, while scrolling right-to-left via
6939         the left arrow key (i.e. moving the editing cell while scrolling).
6940
6941         * DataGrid.cs (.ctor): remove the initialization of
6942         ctrl_pressed/shift_pressed.  We no longer track them using key
6943         up/down handlers, but by using Control.ModifierKeys.  Also, switch
6944         to using ValueChanged handlers on the scrollbars instead of
6945         Scrolled event handlers.  This simplifies a bunch of the scrolling
6946         code.
6947         (GridHValueChanged): rename from GridHScrolled, and change it to
6948         work with the new event args.
6949         (GridVValueChanged): same.
6950         (OnMouseDown): initialize ctrl_pressed/shift_pressed here.
6951         (OnMouseWheel): actually scroll the datagrid.  Don't change the
6952         selected cell.
6953         (ProcessGridKey): correct all the keyboard navigation stuff I
6954         could find.  Ctrl up/down/left/right/home/end work now.
6955         (EnsureCellVisibility): correct method name spelling.  Also,
6956         simplify this a touch by not explicitly calling the
6957         ScrollToRow/ScrollToColumnInPixels methods.  We just set the
6958         scrollbar value.
6959         (OnKeyUpDG): no need for this method now.
6960         
6961 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
6962
6963         * LinkLabel.cs: display the OverrideCursor when hovering the label.
6964         Fixes bug #78392.
6965
6966 2006-05-25  Chris Toshok  <toshok@ximian.com>
6967
6968         * ThemeWin32Classic.cs: fix datagrid clipping problems caused by
6969         r61019.
6970
6971 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
6972
6973         * Application.cs: Moved setting of is_modal and closing to before
6974           we create the control, to allow the event handlers called as a
6975           result of creation affect closing. Also removed Gonzalo's previous
6976           change to setting DialogResult, the behaviour has been moved to 
6977           Form.ShowDialog()
6978         * Form.cs: 
6979           - ShowDialog(): Removed explicit creation of the form, let RunLoop
6980             handle it instead
6981           - ShowDialog(): If no dialog result is set, we need to return Cancel
6982           - WM_CLOSE: Fire Closing/Closed events, and reset dialog result if
6983             the close is cancelled
6984
6985 2006-05-25  Jackson Harper  <jackson@ximian.com>
6986
6987         * StatusBar.cs: We only need to update the sizes of the other
6988         panels when we have auto size contents.  Also we are only updating
6989         the contents of the panel, not the borders, so compensate for the
6990         border width (TODO: get this width from the theme somehow).
6991         * TreeView.cs: Scrollable is true by default
6992         - Use invalidate instead of refresh where needed
6993         - Factor the scrollable value into scrollbar updating
6994         - Update the scrollbars if the Scrollable property is altered
6995         - Update the selected node if its ImageIndex is changed
6996         - Handle null nodes in UpdateNode (mainly so we don't have to
6997         check if selected is null when updating it
6998         - Fix VisibleCount to use the ViewportRectangle so that scrollbars
6999         are factored into the visible count
7000         - Use VisibleCount for clarity in the code
7001         - When the font is changed we need to recurse through all the
7002         nodes and invalidate their sizes
7003         
7004 2006-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7005
7006         * Application.cs: set the DialogResult to fixed when the main form is
7007         hidden or destroyed while being modal.
7008
7009 2006-05-25  Miguel de Icaza  <miguel@novell.com>
7010
7011         * Theme.cs: Use Tangoified messagebox icons. 
7012
7013         (GetSizedResourceImage): Also cope with width = 0 and do not
7014         trigger a warning in that case (0 means "give me your icon from
7015         the resouce, no special size needed).
7016
7017 2006-05-25  Peter Dennis Bartok  <pbartok@novell.com> 
7018
7019         * Application.cs: Leave runloop if the the main modal form is 
7020           hidden (fixes #78484)
7021
7022 2006-05-25  Atsushi Enomoto  <atsushi@ximian.com>
7023
7024         * BindingContext.cs : reject null datasource in Contains() and
7025           Item[].
7026         * CurrencyManager.cs : check data_member validity when data_source
7027           is dataset. When it is late binding, the initial position is -1.
7028
7029 2006-05-24  Jackson Harper  <jackson@ximian.com>
7030
7031         * TreeNodeCollection.cs: Dont't recalculate the visible order on
7032         inserted nodes that aren't visible.  This changes the
7033         max_visible_order which confuses scrollbar settings.
7034         - Use the enumerator to get the prev node instead of duplicating
7035         code.
7036         * TreeView.cs: Use new method for setting scrollbar values
7037         - Don't set the bounds every time the scrollbar is updated
7038         - When updating below the root node use an invalidate instead of a
7039         refresh to prevent the child controls (scrollbars) from being
7040         refreshed. (UpdateBelow still needs to be reworked anyways).
7041         - Reenable SetBottom now that visible orders are set correctly,
7042         added some debug code incase we ever get bad values there again.
7043         - Set the scrollbar max to 2 less then the max value, this
7044         compensates for the max value being one above the node count, and
7045         for scrollbars adding one extra "notch".
7046         - When drawing image nodes if there is an imagelist we draw the
7047         first image in the list if the supplied image index is out of the
7048         image list's bounds.
7049         
7050 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7051
7052         * XplatUIX11.cs: Don't blindly cache hwnd.ClientRect, reset it when 
7053           we receive a size change from the WM (Fixes #78503)
7054
7055 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com>
7056
7057         * XplatUIWin32.cs, XplatUIX11.cs: Refresh when setting the Clip 
7058           rectangle (Fixes #78501)
7059
7060 2006-05-24  Peter Dennis Bartok  <pbartok@novell.com> 
7061
7062         * ButtonBase.cs: 
7063           - Fixed MouseUp, MouseDown and MouseMove to treat mouseevent.Button 
7064             as a bitfield.
7065           - Fixed MouseMove to no longer switch pressed state unless the left
7066             mouse button is pressed. Atsushi provided the original patch (#78485)
7067           
7068 2006-05-24  Jackson Harper  <jackson@ximian.com>
7069
7070         * ScrollBar.cs: New internal methods that allow us to change a
7071         couple values on the scrollbar (the most common case is maximum
7072         and large change) without getting multiple invalidates.
7073
7074 2006-05-24  Chris Toshok  <toshok@ximian.com>
7075
7076         * DataGridBoolColumn.cs (Abort): revert back to the saved setting.
7077         (Edit): save off the original state in oldState, and set
7078         grid.is_editing to true.
7079         (OnKeyDown): abort editing if escape is pressed.  also, call
7080         NextState if space is pressed.
7081         (OnMouseDown): call NextState.
7082         (NextState): factor out shared code from OnKeyDown and OnMouseDown
7083         here.  Also, only invalidate the row header once (on the initial
7084         is_changing switch) to save on redraws.
7085
7086 2006-05-24  Chris Toshok  <toshok@ximian.com>
7087
7088         * DataGridTextBoxColumn.cs (Commit): only call SetColumnValueAtRow
7089         if the value in the cell is different than it was before.  This
7090         keeps us from triggering a layout when we move around a datarid
7091         with a highlighted cell.
7092         (Edit): suspend layout when creating/positining the text box, and
7093         resume passing false so we don't ever actually re-layout.
7094         (ReleaseHostedControl): same.
7095         (EnsureTextBox): reformat slightly, and set WordWrap to false.
7096
7097         * DataGridTextBox.cs (ProcessKeyMessage): it's not true that all
7098         control-key sequences should go to the datagrid - remove that
7099         lock.  Also, modify the conditions under which we move between
7100         cells when moving the cursor within a cell, and remove the "this"
7101         and "base" from field accesses.  We weren't even consistent, given
7102         they all were in the base class.
7103
7104 2006-05-24  Atsushi Enomoto  <atsushi@ximian.com>
7105
7106         * Binding.cs : (.ctor)
7107           An obvious NRE fix for BindingTest.CtorNullTest().
7108
7109 2006-05-23  Chris Toshok  <toshok@ximian.com>
7110
7111         * TextBoxBase.cs (get_Text): don't add a trailing newline, add
7112         them between lines.  This fixes some quirks editing cells in the
7113         datagrid.
7114
7115 2006-05-23  Jackson Harper  <jackson@ximian.com>
7116
7117         * TreeView.cs: Use begin/end update when doing expand/collapse all
7118         so that we don't get flicker on the scrollbar.
7119
7120 2006-05-23  Jackson Harper  <jackson@ximian.com>
7121
7122         * TreeNode.cs: Bounds are computed 'on the fly' now.  This allows
7123         treenode calculations to be independant of the painting code. To
7124         do this nodes track a visible order which is calculated by the
7125         treeview.
7126         - Call new methods for expanding/collapsing nodes.  These methods
7127         use scrollwindow so we don't have to update everything below the
7128         node.
7129         * TreeView.cs: Refactored drawing and scrolling code.  We don't
7130         need to update nodes when drawing anymore or calculate scrollbar
7131         stuff.
7132         - Added new methods for expanding/collapsing nodes. These methods
7133         use ScrollWindow so as to not have to redraw all the nodes below.
7134         * TreeNodeCollection.cs: Recalc visible order and scrollbars when
7135         we add/remove nodes or sort.
7136         - Handle removing the selected and the top node properly.
7137
7138 2006-05-23  Chris Toshok  <toshok@ximian.com>
7139
7140         * DataGridTextBoxColumn.cs (Edit): set grid.is_editing to true.
7141         maybe this should actually happen in the datagrid code?
7142         (EndEdit): no need to invalidate anything, given that
7143         ReleaseHostedControl causes the datagrid to relayout, which
7144         invalidates everything anyway.
7145
7146         * DataGrid.cs (set_CurrentCell): remove duplicate check (it's also
7147         in SetCurrentCell).
7148         (set_SelectionBackColor): call InvalidateSelection instead of
7149         Refresh.
7150         (set_SelectionForeColor): same.
7151         (BeginEdit): Flesh this out a bit.
7152         (CancelEditing): only do any of this if we're editing/adding.
7153         (EndEdit): same.
7154         (OnMouseDown): there's no need to cancel editing here, it's done
7155         in SetCurrentCell.
7156         (SetCurrentCell): only invalidate the current row header if it's a
7157         different row than the new one.
7158         (ShiftSelection): fix this to work like MS does.
7159         (ResetSelection): factor out the invalidation of selected_rows to
7160         InvalidateSelection.
7161         (SetDataSource): cancel any editing that's going on.
7162
7163         * DataGridColumnStyle.cs
7164         (IDataGridColumnStyleEditingNotificationService.ColumnStartedEditing):
7165         call the non-interface version.
7166
7167         * ThemeWin32Classic.cs (DataGridPaintColumsHdrs): intersect the
7168         header rectangle with the clip rectangle so we don't redraw the
7169         entire header for just a small area.  Gets rid of the last flicker
7170         when horizontally scrolling.
7171         (DataGridPaintRow): same.
7172
7173 2006-05-23  Mike Kestner  <mkestner@novell.com>
7174
7175         * ListViewItem.cs: remove size for line hack from LargeIcon layout.
7176         * ThemeWin32Classic.cs: don't draw line.  it's really the top of a
7177         poorly placed checkbox on the MS control.  Fixes Alex's unfiled
7178         Critical bug report.
7179
7180 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7181
7182         * PictureBox.cs: Fixed broken ControlStyles. Unit test no longer fails,
7183           and this fixes #78493
7184
7185 2006-05-23  Miguel de Icaza  <miguel@novell.com>
7186
7187         * Theme.cs (GetSizedResourceImage): Scale images if the proper
7188         size is not found.  
7189         
7190         * FileDialog.cs: Do not change the background for the side bar as
7191         it wont work nicely with the theme, and also reduces the artifacts
7192         in rendering the icons (which I want to fix too).
7193
7194         * MimeIcon.cs (ResourceImageLoader): Load images from assembly
7195         resources, not resgen resources. 
7196
7197         (PlatformDefaultHandler): Pull images using the new API.
7198
7199 2006-05-23  Peter Dennis Bartok  <pbartok@novell.com> 
7200
7201         * Hwnd.cs (Dispose): Remove any pending exposures. XEventQueue holds
7202           a reference to the hwnd and will not remove it unless there are
7203           no pending exposures (fixes #78341)
7204         * XplatUI.cs: Improved debug
7205
7206 2006-05-23  Atsushi Enomoto  <atsushi@ximian.com>
7207
7208         * MenuAPI.cs : don't handle OnClick event when it was not the left
7209           button. Fixed bug #78487.
7210
7211 2006-05-23  Mike Kestner  <mkestner@novell.com>
7212
7213         * MenuAPI.cs: fix placement of submenus for multi-row menu bars, and
7214         prefer submenus to the top menu for item lookup, to avoid popping down
7215         top-row items.
7216
7217 2006-05-23  Alexander Olk  <alex.olk@googlemail.com>
7218
7219         * ThemeWin32Classic.cs: Rewrote CPCPDrawScrollButton to drop
7220           Graphics.FillRectangle as the visual results are really bad (even
7221           on win). We now draw perfect arrows (and perfect shadows when the
7222           scrollbar is disabled). Simplified CPDrawGrid. CPDrawGrid now uses
7223           Pen.DashPattern to draw the dots of each line.
7224
7225 2006-05-22  Alexander Olk  <alex.olk@googlemail.com>
7226
7227         * FileDialog.cs: Update the filename combobox when navigating through
7228           the ListView with the cursor keys. Fixes part 7 of bug #78446.
7229
7230 2006-05-22  Mike Kestner  <mkestner@novell.com>
7231
7232         * ListView.cs: raise SelectedIndexChanged on keyboard selection.
7233         Fixes #78463.
7234
7235 2006-05-22  Mike Kestner  <mkestner@novell.com>
7236
7237         * ComboBox.cs: Refresh in EndUpdate to pick up all the dropped Paint
7238         requests. Fix a misspelled parameter and a copy paste exception error
7239         in Select.
7240
7241 2006-05-22  Peter Dennis Bartok  <pbartok@novell.com> 
7242
7243         * ThemeWin32Classic.cs: Changed DefaultFont emSize from 8.25 to 8
7244           to get the same width/height (5/13) on X11 as the default font has on
7245           win32. This means that our DefaultFont emSize is smaller than the 
7246           the MS SWF equivalent (even thought the width/height stays the same)
7247
7248 2006-05-20  Jackson Harper  <jackson@ximian.com>
7249
7250         * MdiClient.cs:
7251         * MdiWindowManager.cs:
7252         * InternalWindowManager.cs: Make sure to use the border width from
7253         the theme.
7254
7255 2006-05-20  Jordi Mas i Hernandez <jordimash@gmail.com>
7256
7257         * PrintDialog.cs: Implements printer details
7258
7259 2006-05-19  Alexander Olk  <alex.olk@googlemail.com>
7260
7261         * FileDialog.cs: Added focus handling for PopupButtonPanel.
7262           Fixes part 1 and 2 of bug #78446
7263
7264 2006-05-19  Peter Dennis Bartok  <pbartok@novell.com> 
7265
7266         * XplatUIX11.cs (SetWindowPos): Recalculate client area size on resizes
7267           instead of sticking to the first ever calculated value
7268
7269 2006-05-19  Mike Kestner  <mkestner@novell.com>
7270
7271         * ComboBox.cs: fix mouse motion selection to use MousePosition and
7272         PointToClient, since Capture is set. Fixes #78344.
7273
7274 2006-05-19  Mike Kestner  <mkestner@novell.com>
7275
7276         * ListView.cs: match MS behavior in Details view where items are not
7277         drawn if Columns.Count == 0. 
7278         * ThemeWin32Classic.cs: only highlight ListView selection if focused.
7279         Use a separate pen to draw the check, since changing the width affects
7280         the box as well.  Fixes #78454.
7281
7282 2006-05-18  Miguel de Icaza  <miguel@novell.com>
7283
7284         * ListView.cs: ArgumentOutOfRangeException, single versions of the
7285         exception should throw the name of the invalid argument.
7286
7287         * FileDialog.cs (OnClickOpenSaveButton): Avoid crash in open if
7288         there are no files listed. 
7289
7290 2006-05-18  Jackson Harper  <jackson@ximian.com>
7291
7292         * ThemeWin32Classic.cs: Don't use endcaps, they mess the drawing
7293         up.
7294
7295 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7296
7297         * Control.cs: Brought back our old UpdateZOrder method as a private
7298           function and switched our calls from UpdateZOrder to the new one.
7299           This fixes the Paint.Net canvas disappearing bug.
7300
7301 2006-05-18  Jackson Harper  <jackson@ximian.com>
7302
7303         * Theme.cs:
7304         * ThemeWin32Classic.cs:
7305         * InternalWindowManager.cs: Move the drawing into the theme,
7306         expose everything the theme should need from the window manager.
7307
7308 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7309
7310         * XplatUIX11.cs (DefWndProc): WM_SETCURSOR: Assign the return value 
7311           from the call to NativeWindow to avoid walking up the parent chain
7312           further than needed (speeds up setting cursors and avoids setting
7313           the wrong cursor if a parent has another cursor defined)
7314         * Cursor.cs: When loading an icon as cursor, MS uses the center of
7315           the icon as hotspot, not what's contained as hotspot in the icon
7316           file. This fixes the perceived drawing offset seen with Paint.Net
7317         
7318 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com> 
7319
7320         * XplatUIX11.cs: 
7321           - Store the calculated rectangle in Hwnd object and use it when 
7322             setting the client size
7323           - Force Toolwindows to always be type Dock, to ensure they're on top
7324
7325 2006-05-18  Mike Kestner  <mkestner@novell.com>
7326
7327         * ComboBox.cs: first pass at ComboBox rework.  Layout is more
7328         consistent with MS positioning.  IntegralHeight, ItemHeight, Sizing.
7329         Correctly initialize textcontrol and ListBox on DropDownStyle changes. 
7330         Substantial refactoring to remove confusing nested classes. Coding
7331         standard and Get+Set->property refactorings.  Shift to index based
7332         highlighting in ComboListBox instead of constantly using IndexOf and
7333         Items[]. Add invalidations on resize for DropDownList to fix ugliness
7334         in FileDialog growth.  Draw borders manually since Simple mode needs
7335         to look like two independent controls.  Make listbox border
7336         conditional to DropDownStyle.  Improved OwnerDraw support.
7337
7338 2006-05-18  Sebastien Pouliot  <sebastien@ximian.com>
7339
7340         * PaintEventArgs.cs: For 2.0, check for a null Graphics in the .ctor. 
7341         Don't set the disposed graphics to null, so we can throw the "right"
7342         exception if the graphics is reused later (added a flag to avoid 
7343         double disposing). Some behaviours are different under 2.0 and are
7344         filled under bug #78448.
7345
7346 2006-05-18  Peter Dennis Bartok  <pbartok@novell.com>
7347
7348         * Control.cs: When double-buffering is enabled, we need to reset
7349           our graphics context between paint calls. Otherwise, any 
7350           transformations and other alterations on the context will 
7351           become cumulative (#77734)
7352
7353 2006-05-18  Mike Kestner  <mkestner@novell.com>
7354
7355         * ListView.cs: do focused item selection like MS on clicks. 
7356         Rework focus handling for ItemControl so LostFocus invalidates as
7357         well.
7358         * ThemeWin32Classic.cs: only draw focus rectangle for ListViewItems if
7359         the ListView ItemControl has focus.
7360
7361 2006-05-17  Peter Dennis Bartok  <pbartok@novell.com>
7362
7363         * XplatUIX11.cs: If client_window ends up being width or height zero
7364           due to border settings, move it off window inside whole_window (#78433)
7365
7366 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7367
7368         * Mime.cs: Shrink the mime file cache correctly.
7369
7370 2006-05-17  Alexander Olk  <alex.olk@googlemail.com>
7371
7372         * ThemeWin32Classic.cs: Readded button focus drawing code. (#78429)
7373
7374 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7375
7376         * XplatUIX11.cs (AddExpose): More sanity checks
7377
7378 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7379
7380         * XplatUIX11.cs:
7381           - AddExpose: Don't add expose ranges outside the size of our
7382             window
7383           - Cast opacity values to Int32 to avoid crashes with certain
7384             values
7385           - Added disabled code paths that protect against illegal cross-
7386             thread painting (Developers.exe)
7387
7388 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7389
7390         * ProgressBar.cs: Invalidate the control when it's resized
7391           since block size is based on control size. (#78388)
7392
7393 2006-05-16  Miguel de Icaza  <miguel@novell.com>
7394
7395         * DataGrid.cs (SetDataBinding): per the discussion on irc, instead
7396         of setting the incoming argument to the "reset" value, we set the
7397         this.datamember to string.empty (before we were invalidating the
7398         incoming data).   
7399
7400         Fixes 78420
7401
7402 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7403
7404         * Form.cs: Only apply transparency settings after the form
7405           is created. (Fixes #77800)
7406
7407 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com>
7408
7409         * ApplicationContext.cs: Grab the HandleDestroyed event so
7410           we know when to fire OnMainFormClosed 
7411
7412 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7413
7414         * Application.cs: Introduced sub-class to allow tracking of
7415           threads and centralized triggering of the event mess for
7416           ThreadExit, AppExit, etc..  (#76156)
7417
7418 2006-05-16  Alexander Olk  <alex.olk@googlemail.com>
7419
7420         * MimeIcon.cs:
7421           - Do not return a null icon index value for a mime subclass.
7422             Instead try the main mime type class too.
7423           - Seems that some newer distributions don't have a link to some
7424             gnome default icons anymore. So check the default gnome dir too.
7425           
7426
7427 2006-05-16  Jackson Harper  <jackson@ximian.com>
7428
7429         * MdiClient.cs: Don't paint the parent background image if we have
7430         our own background image.
7431
7432 2006-05-16  Peter Dennis Bartok  <pbartok@novell.com> 
7433
7434         * Control.cs:
7435           - PerformLayout: Do not shrink space filled by DockStyle.Fill
7436             controls, all filled controls are supposed to overlap (#78080)
7437           - UpdateZOrder is supposed to update the control's z-order in the
7438             parent's z-order chain. Fixed to behave like that
7439           - BringToFront: Removed obsolete code
7440           - SendToBack: Simplyfied
7441           - SetChildIndex: Trigger layout calculations when Z-order changes
7442             since layout is done by z-order
7443
7444 2006-05-16  Chris Toshok  <toshok@ximian.com>
7445
7446         [ fixes bug #78410 ]
7447         * DataGrid.cs (set_AlternatingBackColor): use
7448         grid_drawing.InvalidateCells instead of Refresh().
7449         (set_BackColor): call grid_drawing.InvalidateCells.
7450         (set_BackgroundColor): use Invalidate instead of Refresh.
7451
7452         * DataGridDrawingLogic.cs (InvalidateCells): new function, just
7453         invalidate the cell area.
7454
7455 2006-05-15  Chris Toshok  <toshok@ximian.com>
7456
7457         [ fixes bug #78011 ]
7458         * ThemeWin32Classic.cs (DataGridPaintRows): pass the clip argument
7459         on to DataGridPaintRow.
7460         (DataGridPaintRow): take a clip argument, and only draw the cells
7461         which intersect it.  same with the not_usedarea.
7462
7463         * Theme.cs (DataGridPaintRow) add @clip parameter.
7464
7465         * DataGrid.cs (ScrollToColumnInPixels): simplify, use
7466         XplatUI.ScrollWindow.
7467         (ScrollToRow): same.
7468
7469         * DataGridDrawingLogic.cs (UpdateVisibleColumn): fix corner case
7470         with last column which was causing a gray swath to appear with the
7471         XplatUI.ScrollWindow code.
7472
7473 2006-05-15  Chris Toshok  <toshok@ximian.com>
7474
7475         * ListBox.cs (HorizontalScrollEvent): in the non-multicolumn case,
7476         use XplatUI.ScrollWindow.
7477         (VerticalScrollEvent): use XplatUI.ScrollWindow.
7478
7479 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com> 
7480
7481         * TextBoxBase.cs: Added handling of middle-button paste for X11. (#78375)
7482
7483 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7484
7485         * Cursors.cs: For X11, read NWSE and NESW cursors from our resource
7486           file since there are no equivalent X11 cursors
7487
7488 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7489
7490         * MonthCalendar.cs : DateTimePicker should reflect selected date
7491           on mouse*up*, not mouse*down*. Fixed originally reported part of
7492           bug #76474.
7493
7494 2006-05-15  Atsushi Enomoto  <atsushi@ximian.com>
7495
7496         * TabControl.cs : When argument index is equal or more than tab
7497           count, just ignore. Fixed bug #78395.
7498
7499 2006-05-15  Peter Dennis Bartok  <pbartok@novell.com>
7500
7501         * Control.cs: Dispose all child controls when control is diposed (#78394)
7502
7503 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7504
7505         * ColorDialog.cs: Finally it is possible to select the color with
7506           the text boxes
7507
7508 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7509
7510         * PrintDialog.cs: Fix typo
7511
7512 2006-05-14  Alexander Olk  <alex.olk@googlemail.com>
7513
7514         * PrintDialog.cs: PrintDialog is not resizable
7515         * ThemeWin32Classic.cs: Draw non links in LinkLabel with the correct
7516           color. Made some ToolBar drawing methods protected virtual.
7517
7518 2006-05-13  Jordi Mas i Hernandez <jordimash@gmail.com>
7519
7520         * PrintDialog.cs: Implementation of the PrintDialog
7521
7522 2006-05-12  Chris Toshok  <toshok@ximian.com>
7523
7524         * ScrollBar.cs (set_Value): don't use Dirty/Invalidate to move the
7525         thumb, instead use MoveThumb.  This has the side effect of making
7526         most of the other thumb moving machinery use MoveThumb as well.
7527         (OnHandleCreated): pass false for @dirty to UpdateThumbPos, as we
7528         need to actually invalidate the rectangle where the new thumb will
7529         go.
7530         (MoveThumb): use XplatUI.ScrollWindow to move the thumb around.
7531         We force an Update() after, so it's not as fast as it could be,
7532         but at least there's zero flicker and no droppings.
7533         (OnMouseMoveSB): in the thumb dragging case, use MoveThumb.
7534         (UpdateThumbPos): add another argument (dirty), which says whether
7535         or not to calculate/add dirty regions which we later invalidate.
7536         For cases where we know we're going to use MoveThumb, we pass
7537         false for this.  Otherwise, pass true.
7538
7539 2006-05-12  Jackson Harper  <jackson@ximian.com>
7540
7541         * ThemeWin32Class.cs: Fixes for alignment and icon rendering in
7542         the status bar.
7543         
7544 2006-05-12  Peter Dennis Bartok  <pbartok@novell.com>
7545
7546         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new SetClipRegion
7547           and GetClipRegion methods and UserClipWontExposeParent property.
7548         * XplatUIWin32.cs: Implemented SetClipRegion/GetClipRegion methods,
7549           overriding UserClipWontExposeParent property, setting to false, since
7550           Win32 handles the required expose messages to draw our clipped parent
7551           areas internally
7552         * XplatUIX11.cs: Implemented SetClipRegion and GetClipRegion; updated
7553           PaintEventStart to set the user clip region if set.
7554         * Control.cs: 
7555           - Now internally tracking the Region for the control since we need to
7556             store it if the handle is not yet created and only set it when it
7557             becomes created. Before setting the region forced handle creation
7558           - Added code to draw the parents underneath a user-clipped region
7559         * Hwnd.cs: Added UserClip property
7560
7561 2006-05-12  Chris Toshok  <toshok@ximian.com>
7562
7563         * ScrollBar.cs (set_LargeChange): Refresh() -> InvalidateDirty()
7564         (set_Maximum): same.
7565         (set_Minimum): same.
7566         (set_SmallChange): same.
7567         (OnMouseUpSB): remove the call to refresh when releasing the
7568         thumb.  We shouldn't need it.
7569         
7570 2006-05-12  Miguel de Icaza  <miguel@novell.com>
7571
7572         * StatusBar.cs (UpdatePanel): If the panel being refreshes has the
7573         AutoSize set to None, we do not need to relayout everything, we
7574         just need to invalidate the current region.
7575
7576         (Draw): Do not draw the entire ClientArea, just redraw the
7577         clip area being passed.
7578
7579         * MdiClient.cs: Make MdiClient constructor with the Form argument
7580         internal. 
7581
7582 2006-05-12  Jackson Harper  <jackson@ximian.com>
7583
7584         * ThemeWin32Classic.cs (DrawToolBar): Flat toolbars get their
7585         parents background image,  but strangely not their own.
7586         - (DrawStatusBarPanel): Take into account horizontal alignment
7587         when drawing the strings and icons.
7588
7589 2006-05-12  Mike Kestner  <mkestner@novell.com>
7590
7591         * ListBox.cs: avoid invalidations for focus when the collection is
7592         empty. 
7593
7594 2006-05-12  Chris Toshok  <toshok@ximian.com>
7595
7596         * ScrollBar.cs (OnMouseMoveSB): when dragging the thumb, don't
7597         invalidate the entire thumb area.  Call InvalidateDirty which
7598         limits the redraw to the thumb itself and surrounding pixels.
7599
7600         * XplatUIX11.cs (ScrollWindow): optimize copying.
7601         
7602 2006-05-12  Chris Toshok  <toshok@ximian.com>
7603
7604         * DataGridDrawingLogic.cs: make CalcGridAreas non-reentrant.
7605         Figure out the positioning/layout in a single pass instead of
7606         multiple recursive invocations.  Speeds up the initial display of
7607         the data grid.  Also, make many things private that were
7608         originally public but unused outside this class.
7609
7610 2006-05-11  Jackson Harper  <jackson@ximian.com>
7611
7612         * MdiClient.cs: Improved layout code.
7613
7614 2006-05-11  Jonathan Chambers  <jonathan.chambers@ansys.com>
7615
7616         * PropertyGrid.cs : Only check GetPropertiesSupported for properties,
7617           not SelectedObject.
7618
7619 2006-05-11  Chris Toshok  <toshok@ximian.com>
7620
7621         * Hwnd.cs (Invalid): don't start off with Rectangle.Empty, as
7622         union of that will always be {0,0,width,height}.
7623
7624 2006-05-11  Jackson Harper  <jackson@ximian.com>
7625
7626         * Form.cs: Match MS's DefaultSize for forms (they must have
7627         changed the size in sp2).
7628
7629 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7630
7631         * TextBoxBase.cs : implement CTRL+A (select all). Fixed bug #78368.
7632
7633 2006-05-11  Atsushi Enomoto  <atsushi@ximian.com>
7634
7635         * TextControl.cs : Fixed bug #78109. This incorrect position
7636           comparison caused crash on automatic line split.
7637         * TextBoxBase.cs : reduce duplicate code.
7638
7639 2006-05-10  Jackson Harper  <jackson@ximian.com>
7640
7641         * MdiClient.cs: Active form is only sent to the back when using
7642         the Next form functionality, when a form is clicked the current
7643         active shouldn't be sent to the back.
7644         - Layout the mdi windows when the container is first made visible.
7645         * Form.cs: Give the MdiClient a ref to the containing form when we
7646         create it.
7647         
7648 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7649
7650         * LinkLabel.cs : link_font could be uninitialized, so populate one
7651           before actual use. Fixed bug #78340.
7652
7653 2006-05-10  Atsushi Enomoto  <atsushi@ximian.com>
7654
7655         * XplatUIX11.cs : clipboard format native value is IntPtr.
7656           Fixed bug #78283.
7657
7658 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7659
7660         * Control.cs: 
7661           - Instead of showing context menus directly we send WM_CONTEXTMENU, 
7662             which is passed up the parent chain by DefWndProc
7663           - We now handle WM_CONTEXTMENU to display any menu, or pass it 
7664             to DefWndProc (#77956)
7665         * XplatUIX11.cs: Added handling of WM_CONTEXTMENU (pass up) to DefWndProc
7666
7667 2006-05-10  Jackson Harper  <jackson@ximian.com>
7668
7669         * MdiClient.cs: We need to remove the controls from the mdi
7670         collection, when we close the window.
7671         * MdiWindowManager.cs: Special handling of closing mdi windows.
7672         * InternalWindowManager.cs: Make the close method virtual so the
7673         mdi window manager can handle it specially.
7674
7675 2006-05-10  Jordi Mas i Hernandez <jordimash@gmail.com>
7676
7677         * DataGrid.cs:
7678           - Recalculate grid when the data source has changed
7679           - Matches styles provided by user from all data sources types
7680         * DataGridTableStyle.cs: For columns that provided by the user set the
7681         with the preferred value is there was unassigned.
7682         * CurrencyManager.cs: throw OnItemChanged event
7683
7684 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com> 
7685
7686         * PictureBox.cs: Don't animate until handle is created. Start animation
7687           when handle is created.
7688
7689 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7690
7691         * XplatUIX11.cs, Hwnd.cs: Adopted Mike's patch from #77979 to match
7692           current codebase.
7693         * XEventQueue.cs: We don't need to provide the extra info
7694
7695 2006-05-10  Jackson Harper  <jackson@ximian.com>
7696
7697         * MdiClient.cs: If the mdi clients parent form has a background
7698         image set, we draw that background image for the mdi area's
7699         background.
7700
7701 2006-05-10  Peter Dennis Bartok  <pbartok@novell.com>
7702
7703         * TextBoxBase.cs: Set IBeam cursor (#78347)
7704
7705 2006-05-10  Mike Kestner  <mkestner@novell.com>
7706
7707         * ToolBar.cs: fix some text padding issues with ButtonSize
7708         calculation. Update the default size to match MS documentation.
7709         * ToolBarButton.cs: use ToolBar.ButtonSize for layout of unspecified
7710         button size. Fixes #78296.
7711
7712 2006-05-10  Mike Kestner  <mkestner@novell.com>
7713
7714         * ListBox.cs: use is_visible for scrollbar positioning in case the
7715         control isn't on screen yet.  Fix off by one with Right vs Width
7716         usage.  Update Scrollbars in SetBoundsCore. Fixes #78188 and #78258.
7717         
7718 2006-05-10  Jackson Harper  <jackson@ximian.com>
7719
7720         * X11Dnd.cs: Drop to a control with another control on top of it.
7721         * ToolBar.cs: Work on a copy of the buttons list, so that it can
7722         be modified in click handlers. TODO: Look for similar problems in
7723         other controls.
7724
7725 2006-05-09  Jackson Harper  <jackson@ximian.com>
7726
7727         * Form.cs: Window managers need the old window state when setting
7728         window state now.
7729         * InternalWindowManager.cs: Allow the base mdi window manager to
7730         handle more of the MDI only stuff (like maximize buttons).
7731         * MdiWindowManager.cs: Fix some snafus in changing the window
7732         state.  Add all the menu functionality, for both popup and
7733         maximized menus.
7734         * MdiClient.cs: When a new form is selected the currently
7735         activated form is sent to the back, this matches MS.
7736         - Implement a new method to activate the next mdi child window.
7737
7738 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com>
7739
7740         * Control.cs: 
7741           - Added new InternalCapture method to allow controls to prevent
7742             the capture behaviour on the click handlers
7743           - Switched to use InternalCapture
7744         * ComboBox.cs:
7745           - Using InternalCapture to prevent mouse captures from being released
7746             on mouse button release (Fixes #78100)
7747         * XplatUIX11.cs (DeriveStyles): Now checks caption state and only
7748           returns Form borders if a caption is present. (Fixes #78310)
7749
7750 2006-05-08  Peter Dennis Bartok  <pbartok@novell.com> 
7751
7752         * TreeNode.cs: Changed serialization .ctor to not require every field
7753           to be present. (#78265)
7754         * OwnerDrawPropertyBag.cs: Added serialization .ctor
7755
7756 2006-05-05  Alexander Olk  <alex.olk@googlemail.com>
7757
7758         * MimeIcon.cs: for is faster than foreach for strings.
7759
7760 2006-05-05  Mike Kestner  <mkestner@novell.com>
7761
7762         * CheckedListBox.cs: update check handling code to not use selected.
7763         * ListBox.cs: rewrite of mouse selection handling to correspond to MS
7764         behavior for visual feedback, motion response, shift/ctrl handling,
7765         and properly deal with all 4 selection modes. Updates to bounds
7766         handling logic.  Add scroll wheel support. [Fixes #77842]
7767
7768 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7769
7770         * ListView.cs:
7771           - Moved adding of Implicit controls into .ctor. That way, subsequent
7772             creation of the controls will not cause them to think they are 
7773             toplevel windows (fixes #78200 header problem)
7774           - Added 2.0 ShowGroups and UseCompatibleStateImageBehaviour
7775           - Switched visibility setting of header control to use internal field
7776             to avoid triggering handle creation
7777           - Now checking if handle is created before causing a refresh when items
7778             are added (This makes us now match handle creation time with MS)
7779         * Splitter.cs: Removed loading of private splitter cursor, switched to
7780           Cursors version now that that is loading the right ones
7781         * Cursors.cs: Load proper splitter cursors from resources
7782         * Cursor.cs: Added second method of loading resource cursors for the 
7783           VS.Net users amongst us
7784
7785 2006-05-05  Mike Kestner  <mkestner@novell.com>
7786
7787         * ListView.cs: give header_control a minimum size based on the
7788         ListView size.
7789
7790 2006-05-05  Peter Dennis Bartok  <pbartok@novell.com> 
7791
7792         * XplatUIX11.cs: WS_EX_TOPMOST requires window to be on top. A dock
7793           window seems to do that with metacity, so set that type. (#78120)
7794
7795 2006-05-05  Mike Kestner  <mkestner@novell.com>
7796
7797         * ListViewItem.cs: fix Details mode checkbox layout bug.
7798         * ThemeWin32Classic.cs: draw a ListView column header for unused space
7799         at the end of the header, if it exists. [Fixes for #78200]
7800
7801 2006-05-04  Jackson Harper  <jackson@ximian.com>
7802
7803         * MdiClient.cs: Add a helper property to get the container form.
7804         * MdiWindowManager.cs: We have to make sure to use the menu origin
7805         when drawing the icons and buttons, this fixes maximized window
7806         icons/buttons on win32.
7807         * InternalWindowManager.cs: Reset the restore captions when a
7808         window goes from Maximized to Minimized and vice versa. Move the
7809         DrawMaximizedButtons into the MdiWindowManager source, tool
7810         windows can't be maximized. NOTE: This could use a little
7811         refactoring if time ever permits.
7812         
7813 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7814
7815         * TextBox.cs: Add MWFCategoryAttributes
7816         * TextBoxBase.cs: Add MWFCategoryAttributes
7817         * Form.cs: Add MWFCategoryAttributes
7818
7819 2006-05-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
7820
7821         * Control.cs: Add MWFCategoryAttributes
7822         * ScrollableControl.cs: Add MWFCategoryAttributes
7823
7824 2006-05-03  Alexander Olk  <alex.olk@googlemail.com>
7825
7826         * ThemeWin32Classic.cs: Draw the ToolBar top border only if
7827           Divider is true. Fix a little glitch in PropertyToolBar
7828           drawing code
7829
7830 2006-05-02  Peter Dennis Bartok  <pbartok@novell.com> 
7831
7832         * Control.cs:
7833           - Dispose: Call base.Dispose, this causes the disposed event
7834             to be fired (and probably other, more important stuff)
7835           - SetVisibleCore: Set is_visible to true after creating the
7836             window so that the window still gets created invisible (if
7837             WM_VISIBLE isn't set). That will cause the ShowWindow afterwards
7838             to generate a WM_ACTIVE message
7839         * Form.cs: Call Dispose when we want to destroy the window, instead of
7840           just destroying the handle (Dispose will do that for us)
7841         * XplatUIX11.cs:
7842           - RootWindow also needs a queue, so we can properly process the
7843             property change events from RootWindow (like Activate)
7844           - Generatic synthetic WM_ACTIVE message when the active window is
7845             being destroyed
7846
7847 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7848
7849         * LinkLabel.cs: Trigger a recalc of our label dimensions when
7850           bounds are changed
7851
7852 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com>
7853
7854         * ThemeWin32Classic.cs (ButtonBase_DrawImage): Use the proper image
7855           for determining width and height (image might not be assigned if
7856           we're drawing an imagelist)
7857
7858 2006-05-01  Peter Dennis Bartok  <pbartok@novell.com> 
7859
7860         * XplatUI.cs, XplatUIDriver.cs: Added MenuHeight property
7861         * XplatUIWin32.cs: Overriding new MenuHeight property, retrieving
7862           height from system
7863         * Theme.cs: No longer returns hardcoded menu height, instead calls
7864           new driver method
7865         * Form.cs (OnLoad): Scaling happens before triggering Load events 
7866           on MS (# 78257)
7867
7868 2006-05-01  Mike Kestner  <mkestner@novell.com>
7869
7870         * MenuItem.cs: fix NRE for text == null.  Fixes #78250.
7871
7872 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com> 
7873
7874         * TextBoxBase.cs: Removed Fixme
7875         * RichTextBox.cs (set_RTF): Invalidate document after update (#78247)
7876
7877 2006-04-30  Peter Dennis Bartok  <pbartok@novell.com>
7878
7879         * XplatUIX11.cs:
7880           - ScrollWindow: We were passing hwnd.ClientRectangle which returns
7881             the rectangle relative to the parent, considering borders. We
7882             don't really want that.
7883           - ScrollWindow: Fixed warning to be more understandable
7884         * TextBoxBase.cs: Fixed ScrollWindow calculations to consider our
7885           scrollbars and scroll only the visible area
7886         * RichTextBox.cs: Removed debug output
7887
7888 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7889
7890         * NumericUpDown.cs (Text): Just use base
7891         * UpDownBase.cs: Ensure txtView is created before using it
7892
7893 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7894
7895         * XplatUIX11.cs (SetWindowTransparency): Casting opacity to int before
7896           casting to IntPtr to avoid 64bit overflow errors
7897
7898 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7899
7900         * Control.cs:
7901           - AllowDrop: Don't force handle creation.
7902           - CreateHandle: Added call to tell driver if we're allowed to drop
7903
7904 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7905
7906         * FileDialog.cs: Remember the last directory not only for the
7907           current instance but also for new FileDialog instances.
7908
7909 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com> 
7910         
7911         * XplatUIX11.cs: Forgot to set the queue on the foster parent. That
7912           broke sending async messages
7913
7914 2006-04-29  Peter Dennis Bartok  <pbartok@novell.com>
7915
7916         * XplatUIX11.cs:
7917           - ScrollWindow: Fixed method. We finally generate expose events again
7918             for scrolled areas. This was causing 'garbage' when scrolling
7919             textbox and other controls that used ScrollWindow
7920           - Switched from using the regular queue for paint events to the MS 
7921             model of 'generating' paint events when the queue is empty.
7922             We use the new XQueueEvent.Paint subclass to store which windows
7923             need painting.
7924           - AddExpose now takes the x/y/width/height of the exposed area
7925             and inserts the window into the paint queue if not already there
7926           - InvalidateWholeWindow: Switched to use new AddExpose method
7927           - UpdateMessageQueue: Added which queue to monitor for paint events
7928           - DefWndProc: Added default handler for WM_PAINT and WM_NCPAINT in
7929             the unlikely case nothing above handles it. We reset the expose
7930             pending states to get them off the queue.
7931           - GetMessage: Now pulls a paint event if no other events are in the
7932             queue
7933           - Invalidate: Switched to new AddExpose method
7934           - PeekMessage: Updated to understand pending paint events
7935           - UpdateWindow: Fixed logic bug. We were only updating if the window
7936             didn't need updating. Also switched to sending WM_PAINT directly,
7937             like MS does.
7938         * XEventQueue.cs: Added Paint queue support. Allows enqueue/dequeue
7939           and random access Remove(). The random access is needed to handle
7940           UpdateWindow() where a WM_PAINT is sent directly without accessing
7941           the queue.
7942         * ScrollBar.cs: Added Update() calls to cause immediate updates to
7943           allow for better feedback when scrolling. Scrollbars are small and
7944           the immediate update should make it 'feel' more responsive without
7945           slowing things down. ScrollBar still needs it's invaliate logic
7946           updated to not always invalidate the whole bar on certain changes.
7947
7948 2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
7949
7950         * Control.cs:
7951         (BackColor): if the control does not support a transparent background,
7952         return the default backcolor when the parent backcolor is transparent.
7953
7954 2006-04-28  Peter Dennis Bartok  <pbartok@novell.com>
7955
7956         * Application.cs: Updated to new StartLoop/GetMessage API
7957         * RichTextBox.cs: Provide some output on RTF parsing errors
7958         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs: Added
7959           new queue_id argument to GetMessage and PeekMessage to allow faster
7960           handling of per-thread queues in drivers.
7961         * Hwnd.cs: Added Queue tracking and property
7962         * MenuAPI.cs: Updated to new StartLoop/GetMessage API
7963         * XEventQueue.cs: Added thread trackingA
7964         * PropertyGridView.cs: Updated to new StartLoop/GetMessage API
7965         * XplatUIX11.cs:
7966           - Implemented new per-thread queue
7967           - GetMessage: Fixed return/break behaviour on several cases. We were
7968             returning stale messages in some cases, instead of just processing
7969             the next message
7970
7971 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7972
7973         * PropertyGrid.cs: Call GetPropertiesSupported on TypeConverter.
7974
7975 2006-04-27  Peter Dennis Bartok  <pbartok@novell.com>
7976
7977         * ThemeWin32Classic.cs (DrawToolBar): Refactored, simplified the logic,
7978           fixed off-by-one comparisons between Width/Height and Right/Bottom.
7979
7980 2006-04-27  Jonathan Chambers  <jonathan.chambers@ansys.com>
7981
7982         * PropertyGridView.cs: Fix drop down width.
7983
7984 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7985
7986         * ThemeWin32Classic.cs: Peter thinks that three additional lines are
7987           a mess in DrawToolBar, so I removed one of them.
7988
7989 2006-04-27  Alexander Olk  <alex.olk@googlemail.com>
7990
7991         * ThemeWin32Classic.cs: Draw the ToolBar border lines only if
7992           needed (clip). Otherwise we get artifacts.
7993
7994 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
7995
7996         * FixedSizeTextBox.cs: Added constructor to allow specifying which
7997           dimension is fixed
7998         * UpDownBase.cs: Set the spinner control to be fixed height vertical,
7999           and switched FixedSizeTextBox to only be fixed vertical (#78116)
8000         * Form.cs: Not applying the 'MS 0.08 fudge factor' for a given dimension
8001           if it matches the scale base font (avoids unneeded scaling)
8002
8003 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8004
8005         * X11DesktopColors.cs: One gtk_init_check should be enough
8006
8007 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com> 
8008
8009         * TextBoxBase.cs: Moved Backspace handling into WM_CHAR block to
8010           match MS behaviour
8011
8012 2006-04-26  Peter Dennis Bartok  <pbartok@novell.com>
8013
8014         * TextBoxBase.cs: 
8015           - Generate OnTextChanged for Backspace even if we're only deleting
8016             the current selection
8017           - When setting the Text property, only select all text if the
8018             control does not have focus when it is being set. Otherwise
8019             just place the cursor at the beginning of the control
8020
8021 2006-04-26  Alexander Olk  <alex.olk@googlemail.com>
8022
8023         * ThemeWin32Classic.cs: ToolBars get drawn with two lines at the top.
8024           Added a little helper to draw PropertyGrid ToolBar with a different
8025           border and a different BackColor.
8026         * PropertyGrid.cs: Some background parts didn't get painted with the
8027           correct background color. Added a class that helps us to draw the
8028           correct border for PropertyGridView and a class that helps us to
8029           draw ToolBars with a different backcolor
8030         * PropertyGridView.cs: Draw PlusMinus with the correct colors.
8031
8032 2006-04-25  Jonathan Chambers  <jonathan.chambers@ansys.com>
8033
8034         * PropertyGrid.cs: Bug 78196, font size, and splitter location.
8035         * PropertyGridView.cs: Bug 78196, font size, and splitter location.
8036
8037 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8038
8039         * XplatUIWin32.cs (DIBtoImage): ORing instead of ANDing the alpha
8040           into the palette entries. Also, since we're working on a copy
8041           we needed to copy the palette back onto the bitmap.
8042         * Cursor.cs: Same fix as XplatUIWin32.cs.
8043
8044 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com>
8045
8046         * ImageListStreamer.cs: Need to read the var (or we're off)
8047
8048 2006-04-25  Peter Dennis Bartok  <pbartok@novell.com> 
8049
8050         * TextControl.cs, ComboBox.cs, CommonDialog.cs, Theme.cs, 
8051           XplatUIWin32.cs, RichTextBox.cs, ImageListStreamer.cs,
8052           TextBoxBase.cs: Unused var fixes
8053         * AxHost.cs: Small 2.0 fix
8054         * XplatUIX11.cs: Switched to IntPtr from int for XA_CARDINAL atoms 
8055           as it seems that is what at least Metacity expects. This will make
8056           icons show up on 64bit platforms. We still have some 64bit size
8057           issues, though, since the startup app window size still won't match.
8058
8059 2006-04-25  Mike Kestner  <mkestner@novell.com>
8060
8061         * *.cs: cleanup newly reported exception var unused warnings.
8062
8063 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8064
8065         * ThemeWin32Classic.cs: Button image alignment now matches exactly
8066           ms
8067
8068 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8069
8070         * ThemeWin32Classic.cs: Fixed drawing code for buttons with an
8071           image. The image position is always the same, no matter if the
8072           button is pressed or not.
8073
8074 2006-04-25  Alexander Olk  <alex.olk@googlemail.com>
8075
8076         * FileDialog.cs: SaveFileDialog shouldn't rely on a MWFFileView
8077           selection and set the correct filename for SaveFileDialog.
8078           Patch by Emery Conrad.
8079
8080 2006-04-24  Mike Kestner  <mkestner@novell.com>
8081
8082         * ListView.cs (LastVisibleIndex): when in List mode of Alignment.Left,
8083         check for item.X outside the ClientRect instead of item.Y. Fixes
8084         #78151.
8085
8086 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8087
8088         * ImageListStreamer.cs: some images store a wrong grow factor, so don't
8089         trust that value blindly and do some sanity check. Fixes bug #77814.
8090
8091 2006-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8092
8093         * ImageListStreamer.cs: save the mask as a 1bpp image.
8094
8095 2006-04-21  Mike Kestner  <mkestner@novell.com>
8096
8097         * CheckedListBox.cs: maintain CheckStatus here. Use DrawItemState to
8098         pass Checked and Indeterminate to the Theme Engine. Improve
8099         encapsulation with ListBox.
8100         * ListBox.cs: Keep a StringFormat instead of calculating it every item
8101         draw. Kill ListBoxItem. Refactor away the ListBoxInfo and ListBoxItem
8102         nested types.  Move all CheckState functionality to CheckedListBox.
8103         Make IntegralHeight work like MS.  Rewrite of Layout engine.  Fix
8104         OwnerDrawVariable layout/rendering.  Fix multicolumn rendering.  Fix
8105         ScrollAlwaysVisible handling. Refactor "selected" collections to use a
8106         single base list. Fix scrollbar sizing and placement to mirror MS.
8107         * Theme.cs: remove CheckedListBoxCheckRectangle. It wasn't really
8108         used.
8109         * ThemeWin32Classic.cs: implement Indeterminate CheckState rendering
8110         for CheckedListBox by using new DrawItemState info.  Center the
8111         checkboxes on the items. Use new StringFormat property.
8112
8113 2006-04-18  Jackson Harper  <jackson@ximian.com>
8114
8115         * Form.cs: MdiChildren don't do default locations the same way as
8116         regular forms.  This prevents a crash when trying to position the
8117         mdi windows.
8118
8119 2006-04-17  Jonathan Chambers  <jonathan.chambers@ansys.com>
8120
8121         * PropertyGridTextBox.cs: Formatting, copyright
8122         * PropertiesTab.cs: Formatting
8123         * PropertyGrid.cs: Formatting
8124         * PropertyGridView.cs: Formatting, fix drop down, enabled double 
8125           click toggling of values
8126           
8127 2006-04-17  Peter Dennis Bartok  <pbartok@novell.com> 
8128
8129         * KeyPressEventArgs: Added 2.0 only setter for KeyChar
8130         * Control.cs (.ctor): verify_thread_handle is static, don't reset
8131           every time a control is created
8132         * Application.cs: Removed obsolete EnableRTLMirroring method
8133
8134 2006-04-18  Gert Driesen  <drieseng@users.sourceforge.net>
8135
8136         * TabControl.cs: Avoid ArgumentOutOfRangeException when setting
8137         SelectedIndex to -1. Fixes bug #78121.
8138
8139 2006-04-17  Jackson Harper  <jackson@ximian.com>
8140
8141         * Binding.cs: Handle null values for Current and BindingContext.
8142         This occurs when binding is a little delayed.
8143         * CurrencyManager.cs: return null for Current when there are no
8144         items in the list.
8145         - Hookup to the listchanged event on the DataView and update
8146         bindings when the list is changed.  This fixes late binding of
8147         controls.
8148
8149 2006-04-17  Jackson Harper  <jackson@ximian.com>
8150
8151         * X11Dnd.cs:
8152         * XplatUIX11.cs: Drops should not create a mousedown. Patch by Tim
8153         Ringenbach.
8154
8155 2006-04-15  Alexander Olk  <alex.olk@googlemail.com>
8156
8157         * ThemeWin32Classic.cs: Draw disabled combo button in the correct
8158           place
8159         * ComboBox.cs: If the combobox is disabled call CPDrawComboButton
8160           with the correct ButtonState
8161
8162 2006-04-14  Peter Dennis Bartok  <pbartok@novell.com>
8163
8164         * XplatUIX11.cs: Improved distinguishing between window types to
8165           tell the WM a type closer to what the app wants (Fixes #78107)
8166
8167 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8168
8169         * ThemeWin32Classic.cs: Fixed drawing of ContainerGrabHandle and
8170           GrabHandle
8171
8172 2006-04-14  Alexander Olk  <alex.olk@googlemail.com>
8173
8174         * ThemeWin32Classic.cs: Fixed size grip drawing and updated StatusBar
8175           drawing code to reflect the size grip changes
8176
8177 2006-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8178
8179         * ImageListStreamer.cs: fix handling of the mask that follows the main
8180         bitmap when deserializing and serialize it properly. The generated mask
8181         should better be a 1bpp image, but I'll do that later.
8182
8183 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8184
8185         * FileDialog.cs: Show something in the DirComboBox on *nix if the
8186           path doesn't fit into some of our Current.Places
8187
8188 2006-04-13  Jackson Harper  <jackson@ximian.com>
8189
8190         * ComboBox.cs: Use borders instead of drawing our own decorations,
8191         try to obey correct rules for heights.
8192         * Theme.cs:
8193         * ThemeNice.cs:
8194         * ThemeClearLooks.cs:
8195         * ThemeWin32Classic.cs: Remove combobox decoration drawing code,
8196         this is now handled by borders.
8197         - Remove unused DrawListBoxDecorationSize method.
8198         
8199 2006-04-13  Mike Kestner  <mkestner@novell.com>
8200
8201         * MenuAPI.cs: null guarding for the disbled click check fixes crash
8202         reported by Alex.
8203
8204 2006-04-13  Alexander Olk  <alex.olk@googlemail.com>
8205
8206         * ThemeWin32Classic.cs: 
8207           - Fixed CPDrawStringDisabled
8208           - Corrected drawing of disabled menu items
8209           - Fixed drawing of disabled radio buttons (bug #78095)
8210           - Draw check in a disabled CheckBox with color ControlDark 
8211
8212 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8213
8214         * Form.cs: Use the provided width when calculating the menu size;
8215           when being maximized we get WM_NCCALCSIZE before WM_WINDOWPOSCHANGED
8216           and ClientSize.Width won't be updated yet
8217         * Application.cs: Use Visible instead of Show() to make form visible,
8218           this way we create the handle later and menusize is considered
8219
8220 2006-04-12  Mike Kestner  <mkestner@novell.com>
8221
8222         * MenuAPI.cs: ignore clicks on disabled menu items. Thanks to Alex for
8223         reporting.
8224
8225 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8226
8227         * TextBox.cs: Implemented context menu
8228
8229 2006-04-12  Mike Kestner  <mkestner@novell.com>
8230
8231         * ListView.cs: implement box selection. fixes #77838.
8232         * ThemeWin32Classic.cs: draw box select rect, remove a ResetClip.
8233
8234 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8235
8236         * XplatUIX11.cs: Added setting of window type when transient window
8237           is created (metacity would move it otherwise)
8238         * X11Structs.cs: Added WINDOW_TYPE atoms
8239         * LinkLabel.cs: Override OnPaintBackgroundInternal and draw the
8240           background (the control is Opaque but still wants transparent
8241           backgrounds)
8242
8243 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8244
8245         * Control.cs: Added OnPaintBackgroundInternal to allow controls
8246           that set Opaque but don't mean it (like all ButtonBase-derived
8247           controls) to still draw their background
8248         * ButtonBase.cs: Override OnPaintBackgroundInternal and draw
8249           the background
8250
8251 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com> 
8252
8253         * Control.cs (PaintControlBackground): Set the graphics object
8254           on our PaintEvent to null to prevent it from being disposed
8255           when the PaintEvent gets disposed
8256
8257 2006-04-12  Alexander Olk  <alex.olk@googlemail.com>
8258
8259         * ThemeWin32Classic.cs: Use even more SystemBrushes and SystemPens
8260         * ThemeNice.cs, ThemeClearlooks.cs: fix typo
8261
8262 2006-04-12  Peter Dennis Bartok  <pbartok@novell.com>
8263
8264         * Control.cs: 
8265           - Added transparency check to BackColor property. Transparent
8266             backgrounds are only allowed if the control styles permit it
8267           - Added recursive painting of parent control background and
8268             foreground if a control with a transparent backcolor is drawn
8269             (Thanks to Tim Ringenback for providing his 'hack' as a base
8270              for this patch) Fixes #77985 and #78026.
8271           - Added Opaque style check before calling OnPaintBackground, no
8272             need to draw the background if the control is opaque
8273           - Removed ControlAccessibleObject owner variable (inherited from
8274             base, no need to define again)
8275           - Added some documentation links explaining the drawing events
8276             and styles
8277
8278 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8279
8280         * Splitter.cs (CalculateSplitPosition): Corrected the bad assumption
8281           that the affected control is the located at the left border of our
8282           parent (Fixes #77936)
8283
8284 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8285
8286         * TextBoxBase.cs: When rendering disabled or readonly controls,
8287           draw the background with 'Control' instead of 'Window' color as
8288           long as the user hasn't specifically set a color
8289
8290 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com> 
8291
8292         * TextBoxBase.cs: Don't try to shortcut by checking against base.Text
8293           since that won't be updated if the user types text (only if it's
8294           programatically set)
8295
8296 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8297
8298         * ScrollableControl.cs: Calculate DisplayRect dynamically, so that
8299           layout changes do to app-triggered resizes will have the proper
8300           display rectangle for layout
8301
8302 2006-04-11  Alexander Olk  <alex.olk@googlemail.com>
8303
8304         * ThemeWin32Classic.cs:
8305           - Make use of the SystemBrushes and SystemPens wherever possible
8306           - Corrected some highlight colors
8307           - Corrected RadioButton and CheckBox FlatStyle.Flat and Popup
8308             drawing
8309         * Theme.cs: Added Empty field to CPColor struct
8310
8311 2006-04-11  Peter Dennis Bartok  <pbartok@novell.com>
8312
8313         * ScrollabeControl.cs: We need to consider whether or not a scrollbar
8314           is displayed when calculating the display rectangle. Thanks to Mike
8315           for teaching me the err of my ways.
8316
8317 2006-04-10  Peter Dennis Bartok  <pbartok@novell.com>
8318
8319         * ScrollableControl.cs:
8320           - Rewrote DisplayRectangle code, now returning the proper x/y coords 
8321             (instead of 0,0) and we now return the real width/height instead of
8322             just the clientrectangle, adjusted for padding. The rectangle is
8323             now cached and created by the new CalculateDisplayRectangle method.
8324           - Created new CalculateDisplayRectange method, which basically does
8325             what get_DisplayRectangle() did originally, but now using the 
8326             right edge instead of DisplayRectangle to determine the size of
8327             our scrollbars
8328           - get_Canvas(): Fixed it to properly calculate canvas for 
8329             right/bottom controls which seem to be placed to the right/bottom
8330             of any controls that have a fixed location
8331           - Removed TODO that's taken care of
8332           - Removed NotImplementeds and attempted to implement AdjustFormScrollBars
8333             and SetDisplayRectLocation according to new MSDN2 docs
8334           - Added call to PerformLayout in OnVisibleChanged, MS causes a layout
8335             event when that is called, this is added for compatibility
8336           - ScrollControlIntoView(): Implemented.
8337           - Switched scrollbars to be implicit, they shouldn't be selectable
8338         * ContainerControl: Now that ScrollControlIntoView is implemented, we 
8339           call it when the active control is set/changed
8340         * ScrollBar.cs: Added support for generating Win32 scrollbar messages
8341         * ImplicitHScrollBar.cs, ImplicitVScrollBar.cs: Now setting new base
8342           implicit_control variable (used for native Win32 message generation)
8343         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs: Added new 
8344           HorizontalScrollBarHeight and VerticalScrollBarWidth properties
8345         * ThemeWin32Classic.cs: Now calling the driver for the scrollbar sizes
8346         * XplatUIStructs.cs: Added ScrollBarCommands enum
8347
8348 2006-04-10  Jackson Harper  <jackson@ximian.com>
8349
8350         * ButtonBase.cs:
8351         * CheckedListBox.cs:
8352         * ComboBox.cs:
8353         * DataGrid.cs:
8354         * DataGridView.cs:
8355         * Form.cs:
8356         * GroupBox.cs:
8357         * ListBox.cs:
8358         * PrintPreviewControl.cs:
8359         * ProgressBar.cs:
8360         * PropertyGrid.cs:
8361         * Splitter.cs:
8362         * StatusBar.cs:
8363         * TrackBar.cs:
8364         * UpDownBase.cs: Fixup base event overrides.
8365         
8366 2006-04-06  Mike Kestner  <mkestner@novell.com>
8367
8368         * ScrollBar.cs: fix "new event" declarations (#76509) and bounds check
8369         all user-initiated value changes to min <= value <= max-thumbsz+1.
8370         (set_Value): check for vert/horiz when calculating new thumb position.
8371         (LargeIncrement): bounds check to stop pos at max - thumb_size + 1
8372         like MS does.
8373         (OnMouseMoveSB): refactor the thumb dragging code and refine
8374         invalidation logic to reduce flicker.
8375         (SetEndPosition): bounds check to stop pos at max - thumb_size + 1
8376         (SmallIncrement): bounds check to stop pos at max - thumb_size + 1
8377         (UpdateThumbPosition): small code readability cleanup
8378
8379 2006-04-10  Alexander Olk  <alex.olk@googlemail.com>
8380
8381         * ThemeNice.cs: Small UI polishing. Draw borders a little bit
8382           different
8383
8384 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8385
8386         * ThemeNice.cs: Use a better graphics effect when a button is pressed
8387
8388 2006-04-08  Alexander Olk  <alex.olk@googlemail.com>
8389
8390         * Theme.cs: Added GetDashPen and GetSizedPen to SystemResPool
8391         * ThemeWin32Classic.cs: Make use of the new SystemResPool methods.
8392           This dramatically reduces the number of Pen.Dispose calls. 
8393           Where possible call ResPool methods only once instead of calling it
8394           over and over again (for example for the same color).
8395
8396 2006-04-06  Mike Kestner  <mkestner@novell.com>
8397
8398         * TabControl.cs: fix for SelectedIndex updating on TabPage removals.
8399         Also remove an unused private field on the collection. Fixes #77972.
8400
8401 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8402
8403         * ThemeNice.cs: Added ToolBar drawing code
8404
8405 2006-04-06  Mike Kestner  <mkestner@novell.com>
8406
8407         * Form.cs (ShowDialog): MS allows IWin32Window param to be a non-form.
8408         I'm assuming that means we need to look up the toplevel for the
8409         provided control. Fixes the crash trace in #77911 but exposes another
8410         crash in some strange reflection usage in NDocGui.
8411
8412 2006-04-06  Alexander Olk  <alex.olk@googlemail.com>
8413
8414         * ThemeNice.cs: Gave it a little silver touch and added Images
8415           method
8416         * FontDialog.cs: FontDialog is not resizable
8417         * FileDialg.cs: Added SizeGripStyle.Show
8418
8419 2006-04-05  Jackson Harper  <jackson@ximian.com>
8420
8421         * KeyboardLayouts.cs: Remove warning.
8422
8423 2006-04-05  Jackson Harper  <jackson@ximian.com>
8424
8425         * Control.cs: Enable OnPaintInternal so we can use it for drawing
8426         all of our controls instead of Paint +=.
8427         * ListBox.cs:
8428         * ListView.cs:
8429         * MenuAPI.cs:
8430         * MessageBox.cs:
8431         * NotifyIcon.cs:
8432         * ProgressBar.cs:
8433         * ScrollBar.cs:
8434         * Splitter.cs:
8435         * StatusBar.cs:
8436         * TabControl.cs:
8437         * TextBoxBase.cs:
8438         * ToolBar.cs:
8439         * TrackBar.cs:
8440         * UpDownBase.cs:
8441         * ComboBox.cs: Remove handling of WM_PAINT and WM_ERASEBKGND and
8442         use OnPaintInternal. Remove Width/Height and Visible checks in
8443         paint handler, this is done at a higher level now.
8444         * GroupBox.cs: Don't need to handle WM_ERASEBKGND anymore.
8445         * PaintEventArgs.cs: Add a handled flag so controls that don't
8446         want anymore painting after OnPaintInternal can make sure OnPaint
8447         isn't called.
8448
8449 2006-04-05  Mike Kestner  <mkestner@novell.com>
8450
8451         * Form.cs: fix the menu WndProc hacks to respect the native enabled
8452         state of the form, so that we don't process events when Modal dialogs
8453         are up. Fixes #77922.
8454
8455 2006-04-05  Alexander Olk  <alex.olk@googlemail.com>
8456
8457         * Mime.cs: Default for range length is 1 not 0. If set to 0 no match
8458           checking is done.
8459
8460 2006-04-05  Mike Kestner  <mkestner@novell.com>
8461
8462         * XplatUIX11.cs: fix typo in the EX_APPWINDOW transient patch.
8463
8464 2006-04-05  Mike Kestner  <mkestner@novell.com>
8465
8466         * ListView.cs (HeaderMouseMove): null guarding for the over column
8467         when setting up the drag_to_index.  Fixes #78015.
8468
8469 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com>
8470
8471         * XplatUIX11.cs: If WS_EX_APPWINDOW isn't set we don't want to show up
8472           in the taskbar. Transient windows seem to accomplish that.
8473
8474 2006-04-04  Peter Dennis Bartok  <pbartok@novell.com> 
8475
8476         * Form.cs:
8477           - Re-enabled CreateParams.X/Y code for FormStartPosition
8478           - Added code for manual placement when creating the Control
8479           - Incomplete patch to treat MDI forms differently when
8480             setting the ClientSizeCore. (Still need to figure out handling
8481             x/y coords there)
8482         * XplatUIX11.cs:
8483           - When we're explicitly setting the X/Y position of a non-Child
8484             window, let the WM know. Metacity really wants this.
8485
8486 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8487
8488         * ThemeNice.cs: Added CPDrawButton
8489
8490 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8491
8492         * ThemeNice.cs: Changed the color for focused buttons and activated
8493           the arrows for small scroll buttons.
8494
8495 2006-04-04  Alexander Olk  <alex.olk@googlemail.com>
8496
8497         * ThemeWin32Classic.cs: Removed DrawFlatStyleButton, not needed
8498           anymore. Changed some method modifiers to protected (virtual)
8499         * ThemeClearlooks.cs: Updated to reflect the ThemeWin32Classic
8500           changes
8501         * ThemeNice.cs: Updated to reflect the ThemeWin32Classic changes.
8502           Updated drawing of menus, buttons and progressbars; added
8503           CPDrawBorder3D 
8504
8505 2006-04-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
8506
8507         * ImageListStreamer.cs: implemented serialization/deserialization
8508         of the images.
8509
8510 2006-04-03  Alexander Olk  <alex.olk@googlemail.com>
8511
8512         * ThemeWin32Classic.cs:
8513           - Removed all the DrawFrameControl stuff; CPDrawButton,
8514             CPDrawCheckBox and CPDrawRadioButton are now handled directly
8515             inside the methods
8516           - Updated and corrected the drawing code of CPDrawButton,
8517             CPDrawCheckBox and CPDrawRadioButton to better match ms
8518           - Updated theme checkbox and radiobutton code to use the CP*
8519             methods
8520
8521 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8522
8523         * XplatUIX11.cs: Enable clipping again now that the libgdiplus
8524           bug is fixed
8525
8526 2006-03-31  Jackson Harper  <jackson@ximian.com>
8527
8528         * XplatUIX11.cs: Somehow we get SETCURSORS for bad windows
8529         sometimes.
8530         * UpDownBase.cs: Don't CreateGraphics manually, use a
8531         Refresh. Ideally we would invalidate the correct areas here.
8532
8533 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com> 
8534
8535         * XplatUIX11.cs: 
8536           - We now track the mapping state of windows. If a window (or 
8537             one of it's parents) is not mapped we no longer permit
8538             WM_PAINT messages to be generated since we'd otherwise get 
8539             lots of BadMatch X errors. Jackson did all the work figuring
8540             out the problem.
8541           - Destroying the caret if the window it's contained in is 
8542             destroyed. Can't use regular DestroyCaret method since it
8543             might fall into a drawing function (trying to remove the
8544             caret) and with that generate new BadMatch errors. Again,
8545             Jackson tracked this down.
8546           - Changed DestroyChildWindows to SendWMDestroyMessages, we now
8547             make sure we send the messages to all windows. (The old code
8548             would send the WM_DESTROY to the window, and then all child
8549             windows would be 'gone' because the WM_DESTROY handle lookup
8550             would no longer find the destroyed window)
8551         * Hwnd.cs: Added Mapping property to track mapping state of hwnd
8552         * X11Structs.cs: Added WindowType enum for MapWindow/UnmapWindow
8553
8554 2006-03-31  Jackson Harper  <jackson@ximian.com>
8555
8556         * ScrollableControl.cs: Dont recalc if we are not visible.
8557
8558 2006-03-31  Mike Kestner  <mkestner@novell.com>
8559
8560         * Control.cs (SetVisibleCore): move the CreateControl call up ahead of
8561         the visibility branch.
8562
8563 2006-03-31  Jackson Harper  <jackson@ximian.com>
8564
8565         * ScrollBar.cs: Cap values when incrementing/decrementing.
8566
8567 2006-03-31  Mike Kestner  <mkestner@novell.com>
8568
8569         * MenuAPI.cs: setup menu.tracker for popup/context menus.
8570         * ToolTip.cs: guard against timer expirations with no active control.
8571         Not sure why it happened.
8572
8573 2006-03-31  Mike Kestner  <mkestner@novell.com>
8574
8575         * ThemeWin32Classic.cs: add some horizontal padding space for the tip
8576         text.
8577         * ToolTip.cs: Position the tooltip based on where the cursor is at
8578         popup time, not at MouseEnter time.  Add a Down state so that we don't
8579         redisplay tips without a Leave. Use faked XplatUI.GetCursorInfo for
8580         positioning offset. Lookup DisplaySize at positioning time, since it
8581         can theoretically change during invocation.
8582         * XplatUIWin32.cs: fake GetCursorInfo until pdb can do it properly.
8583         * XplatUIX11.cs: fake GetCursorInfo until pdb can do it properly.
8584
8585 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8586
8587         * ThemeWin32Classic.cs: Use CPDrawBorder3D to draw a GroupBox.
8588           Fixes behaviour when the Text property of the box is String.Empty
8589
8590 2006-03-31  Peter Dennis Bartok  <pbartok@novell.com>
8591
8592         * XplatUIX11.cs: Only send mouseleave for our client windows, not
8593           for the whole window (otherwise we get WM_MOUSE_LEAVE twice for
8594           a window)
8595
8596 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8597
8598         * FileDialog.cs: Visual enhancement for the popup buttons in 
8599           PopupButtonPanel
8600
8601 2006-03-31  Alexander Olk  <alex.olk@googlemail.com>
8602
8603         * ColorDialog.cs, FontDialog.cs: Make use of the updated 3D border
8604           code
8605
8606 2006-03-30  Alexander Olk  <alex.olk@googlemail.com>
8607
8608         * ThemeWin32Classic.cs: Updated MainMenu drawing of selected and
8609           highlighted menu items to match ms
8610
8611 2006-03-30  Peter Dennis Bartok  <pbartok@novell.com> 
8612
8613         * XplatUIX11.cs: Don't set a clip rectangle unless it's not empty
8614
8615 2006-03-30  Mike Kestner  <mkestner@novell.com>
8616
8617         * Menu.cs (SelectedItem): use new MenuItem.Selected prop.
8618         * MenuAPI.cs: use new MenuItem.Selected prop. redraw MainMenu when we
8619         go active to account for HotLight to Selected transition.
8620         * MenuItem.cs: add internal Selected prop. Fill out the Status
8621         property by calculating it from item info. Add HotLight,
8622         NoAccelerator, Checked, Grayed, and Disabled flags where appropriate.
8623
8624 2006-03-30  Mike Kestner  <mkestner@novell.com>
8625
8626         * MenuItem.cs: only emit DrawItem and MeasureItem for OwnerDraw.
8627
8628 2006-03-29  Jackson Harper  <jackson@ximian.com>
8629
8630         * Form.cs: Implement TODO.
8631
8632 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com> 
8633
8634         * PrintPreviewDialog.cs: Implemented missing methods and events; still
8635           missing proper dialog setup in the constructor
8636
8637 2006-03-29  Peter Dennis Bartok  <pbartok@novell.com>
8638
8639         * ProgressBar.cs: Added 2.0 Style property that apps seem to use
8640         * Control.cs:
8641           - Implemented CheckForIllegalCrossThreadCalls, removed TODO
8642           - Fixed ResetBindings and removed TODO
8643           - Added check for cross-thread calls to get_Handle()
8644           - Added Marshaller attribute for set_Font to satisfy class status
8645         * FontDialog.cs: Removed TODOs that seemed implemented
8646         * UpDownBase.cs: Removed unneeded TODO and Fixme
8647         * MessageBox.cs: Implemented support for Default button and removed TODO
8648         * FileDialog.cs: Removed obsolete TODO
8649         * DomainUpDown.cs: Removed obsolete TODO
8650         * ButtonBase.cs: Removed obsolete TODO
8651         * XplatUIWin32.cs: Removed obsolete TODO
8652         * Form.cs:
8653           - Removed obsolete TODO
8654           - Calling CheckAcceptButton when the acceptbutton is changed to allow
8655             internal status updates
8656           - Making sure the active control is selected when the control is created
8657         * CurrencyManager.cs: Removed obsolete TODO
8658
8659 2006-03-29  Mike Kestner  <mkestner@novell.com>
8660
8661         * *.cs: fix remaining corcompare issues for 1.1 API with the exception
8662         of PrintPreviewDialog and RichTextBox.
8663
8664 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8665
8666         * Theme.cs: Added a little helper to SystemResPool to get the Dark,
8667           DarkDark, Light and LightLight colors for a specific color
8668         * ThemeWin32Classic.cs:
8669           - Use Button drawing code to draw RadioButtons and CheckBoxes with
8670             Appearance = Button 
8671           - Make use of the new ResPool helper CPColor
8672           - Draw ProgressBar and StatusBar with correct 3D borders
8673
8674 2006-03-29  Alexander Olk  <alex.olk@googlemail.com>
8675
8676         * ColorDialog.cs: Return selected color. Fixes bug #77940.
8677
8678 2006-03-28  Mike Kestner  <mkestner@novell.com>
8679
8680         * ListView.cs: fix Icon layout to plan for scrollbar widths when
8681         calculating col/row counts.
8682
8683 2006-03-28  Mike Kestner  <mkestner@novell.com>
8684
8685         * ColumnHeader.cs:
8686         * ListView.cs:
8687         * ListViewItem.cs:
8688         * Menu.cs: 
8689         switch to explicit interface method implementation for some methods
8690         corcompare identifies as inconsistent with MS.
8691
8692 2006-03-28  Mike Kestner  <mkestner@novell.com>
8693
8694         * MainMenu.cs: 
8695         * Menu.cs:
8696         add a few missing methods from the class status output.
8697
8698 2006-03-28  Alexander Olk  <alex.olk@googlemail.com>
8699
8700         * ControlPaint.cs: Fixed ControlPaint.Light method. Results are now
8701           correct.
8702
8703 2006-03-28  Mike Kestner  <mkestner@novell.com>
8704
8705         * MenuAPI.cs: Deactivate on MainMenu item click. Fixes #77917.
8706
8707 2006-03-27  Mike Kestner  <mkestner@novell.com>
8708
8709         * ThemeWin32Classic.cs: Switch flat toolbars to use RaisedInner for
8710         the Hilight state to adapt to Alex's CPDrawBorder3D changes.
8711
8712 2006-03-27  Alexander Olk  <alex.olk@googlemail.com>
8713
8714         * ThemeWin32Classic.cs: Rewrote Button drawing code to match ms.
8715
8716 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8717
8718         * ThemeWin32Classic.cs:
8719           - GroupBox: Inserted a little gap between the text and the lines
8720             on the right side
8721           - Made the code in CPDrawBorder3D more readable
8722           - Corrected the drawing location of the up and down arrows in 
8723             CPDrawScrollButton
8724
8725 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8726
8727         * ControlPaint.cs: Corrected line widths in DrawBorder for
8728           ButtonBorderStyle Inset and Outset
8729
8730 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8731
8732         * ThemeWin32Classic.cs:
8733           - Rewrote the totally broken CPDrawBorder3D method. That was
8734             one of the main problems for the terrific ThemeWin32Classic
8735             look
8736           - Updated and corrected Button drawing
8737           - Correct the dimensions of the SizeGrip to match ms ones
8738           - Removed a small drawing glitch in DrawComboBoxEditDecorations
8739         * XplatUIX11.cs: Draw borders with BorderStyle = Fixed3D with
8740           Border3DStyle.Sunken to match ms.
8741
8742 2006-03-25  Alexander Olk  <alex.olk@googlemail.com>
8743
8744         * ThemeWin32Classic.cs: First small part of the "de-uglify
8745           ThemeWin32Classic" effort, SizeGrip
8746
8747 2006-03-24  Jackson Harper  <jackson@ximian.com>
8748
8749         * XplatUIX11.cs: Give a max idle time of one second, this matches
8750         MS and forces an Idle event every second when there are no other
8751         events in the queue.
8752
8753 2006-03-24  Mike Kestner  <mkestner@novell.com>
8754
8755         * ListView.cs: Handle (Large|Small)ImageList == null more robustly.
8756         * ListView.Item.cs: fix layout issues with null image lists and images
8757         smaller than checkbox size.
8758         * ThemeWin32Classic.cs: Draw a 12 pixel line in ListView LargeIcon
8759         mode like MS does.  It's weird, but consistent.  ;-)
8760         Fixes #77890.
8761
8762 2006-03-24  Mike Kestner  <mkestner@novell.com>
8763
8764         * ListView.cs: Scroll wheel support for the item control.  Fixes
8765         #77839.
8766
8767 2006-03-23  Jackson Harper  <jackson@ximian.com>
8768
8769         * ScrollableControl.cs: Special case negative sized areas, not
8770         zero.
8771         * MonthCalendar.cs: Save the rect of the clicked date so we can
8772         use it for invalidation.
8773         - Try to cut down on the number of invalidates
8774         - Invalidate the rect the mouse is over and was over when moving
8775         the mouse, so we get the focus box following the cursor.
8776
8777 2006-03-23  Mike Kestner  <mkestner@novell.com>
8778
8779         * ThemeWin32Classic.cs: fix FullRowSelect selection background and
8780         focus rectangle drawing. Fixes #77835.
8781
8782 2006-03-23  Mike Kestner  <mkestner@novell.com>
8783
8784         * XplatUIX11.cs: rework the fix for #77828 by changing the order of
8785         the if and else if and reverting back to the original == check on the
8786         None conditional.
8787
8788 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8789
8790         * FontDialog.cs: Update the example panel if the selected index of
8791           the fontListBox changes.
8792
8793 2006-03-23  Alexander Olk  <alex.olk@googlemail.com>
8794
8795         * FileDialog.cs: Make FileDialog remember which directory it was in
8796           last in the same execution.
8797
8798 2006-03-22  Mike Kestner  <mkestner@novell.com>
8799
8800         * FileDialog.cs: make the DropDownMenu on the toolbar display
8801         RadioChecks since they are mutually exclusive and that's what MS does.
8802
8803 2006-03-22  Mike Kestner  <mkestner@novell.com>
8804
8805         * Theme.cs: add Color param to CPDrawMenuGlyph.
8806         * ThemeWin32Classic.cs: do color specific menu glyph rendering so that
8807         checks and radio marks and arrows are visible on highlighted items.
8808         * ControlPaint.cs: update to use new Theme signature.
8809
8810 2006-03-22  Mike Kestner  <mkestner@novell.com>
8811
8812         * MenuAPI.cs: only process Enter and arrow keypresses if the tracker
8813         is active. Fixes #77870.
8814
8815 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8816
8817         * FileDialog.cs: Corrected TabIndex order and set fileNameComboBox
8818           to be focused/selected after startup
8819
8820 2006-03-22  Alexander Olk  <alex.olk@googlemail.com>
8821
8822         * ColorDialog.cs: 
8823           - Corrected behaviour of Color, AllowFullOpen, FullOpen,
8824             CustomColors and ShowHelp properties
8825           - Some internal rewrites to get better results when using the
8826             ColorMatrix
8827
8828 2006-03-22  Mike Kestner  <mkestner@novell.com>
8829
8830         * ListView.cs: hook into Peter's new ResetMouseHover capability to fix
8831         HoverSelection.  Fixes #77836.
8832
8833 2006-03-22  Mike Kestner  <mkestner@novell.com>
8834
8835         * FileDialog.cs: bugfixes for the toolbar.  Use PushButtons instead of
8836         ToggleButtons.  (De)Sensitize the Back button around a stack count of
8837         1, not 0.  Update ButtonSize based on a pixel count of the win32
8838         control.  Adjust the toolbar size/location for new button size.
8839
8840 2006-03-22  Jackson Harper  <jackson@ximian.com>
8841
8842         * XplatUIX11.cs: Don't handle configurenotifys if PostQuitState is
8843         true.
8844         * ScrollBar.cs: When doing increments and decrements we need to
8845         set the Value property so that ValueChanged gets raised. A
8846         possible optimization here would be to make an internal SetValue
8847         that doesn't invalidate immediately.
8848         * ToolTip.cs: Tooltips get added to their container (when
8849         supplied) so they get disposed when the container is disposed.
8850         - Don't create tooltips for String.Empty. This prevents all these
8851         little 2-3 pixel windows from showing up when running nunit-gui
8852         and driving me mad.
8853         * Form.cs: Don't set topmost when setting the owner if the handles
8854         haven't been created yet.  The topmost set will happen when the
8855         handles are created.
8856
8857 2006-03-22  Peter Dennis Bartok  <pbartok@novell.com> 
8858
8859         * XplatUIX11.cs:
8860           - DeriveWindowStyles: Fixed typo in borderstyle generation (#77828)
8861           - SetVisible: Sending WINDOWPOSCHANGED for all controls when made 
8862             visible (to allow them to recalculate their sizes)
8863
8864 2006-03-21  Mike Kestner  <mkestner@novell.com>
8865
8866         * ThemeWin32Classic.cs: major refactoring of the ToolBar rendering
8867         methods. Removed a ton of redundant code.  Still not really happy with
8868         the border rendering, but I think that's mainly because of the
8869         ControlDarkDark being black instead of a dark grey. Depending on how 
8870         close we want to be, we might want to revisit those color choices.
8871         Among the new features added during the refactor were DropDownArrow
8872         pressed rendering, Disabled image rendering.  Proper flat appearance
8873         boundary rendering.  Removed the Divider and Wrapping dividers since I
8874         can't figure out any combination of themes and conditions to make the
8875         MS control draw a horizontal line on a toolbar despite what the
8876         Divider property docs indicate.
8877         * ToolBar.cs: rewrite the layout engine. Fixes numerous flicker
8878         conditions and incorrect layout.  Updated to coding standard.
8879         * ToolBarButton.cs: refactored layout and positioning code from
8880         ToolBar to here.  Invalidate wherever possible instead of forcing
8881         redraws of the whole toolbar. 
8882         (Known remaining issues: explicit ButtonSize smaller than provided
8883         images.)
8884
8885 2006-03-21  Mike Kestner  <mkestner@novell.com>
8886
8887         * ContextMenu.cs (Show): use the position parameter instead of just
8888         showing at the MousePosition.
8889
8890 2006-03-21  Jackson Harper  <jackson@ximian.com>
8891
8892         * TabControl.cs: Remove the call to ProcessKeyEventArgs and let
8893         control handle this.
8894         * TreeNodeCollection.cs: If we are clearing the root node we need
8895         to reset top_node so calcs can still happen.
8896         * ThemeWin32Classic.cs: This is a Flags so we need to check
8897         properly.
8898         
8899 2006-03-21  Jackson Harper  <jackson@ximian.com>
8900
8901         * DataGrid.cs: Create columns when the binding context has been
8902         changed.
8903         * X11Structs.cs: Keysyms are uints.
8904         - Add size to fix build.
8905
8906 2006-03-21  Peter Dennis Bartok  <pbartok@novell.com> 
8907
8908         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
8909           XplatUIOSX.cs: 
8910           - Added ResetMouseHover method to allow controls to retrigger
8911             hovering if they need it more than once
8912           - Implemented MouseHoverTime and MouseHoverSize properties
8913         * Timer.cs: Start() must reset the interval
8914         * SystemInformation.cs: Added 2.0 MouseHoverTime and MouseHoverSize
8915           properties
8916
8917 2006-03-21  Jackson Harper  <jackson@ximian.com>
8918
8919         * X11Keyboard.cs: improved layout detection. Move the nonchar
8920         tables into this file.
8921         * KeyboardLayouts.cs: Move the tables into resource files.
8922
8923 2006-03-21  Mike Kestner  <mkestner@novell.com>
8924
8925         * ListView.cs: use OnItemActivated to raise events. Fixes #77834.
8926
8927 2006-03-21  Alexander Olk  <alex.olk@googlemail.com>
8928
8929         * Mime.cs: Various speed optimizations. Looking up mime types
8930           is now 2 times faster than before
8931
8932 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com> 
8933
8934         * CreateParams.cs: Added internal menu field
8935         * Control.cs: 
8936           - Switched call order for UpdateBounds; now we always call
8937             the one that also takes ClientSize, and we're calculating the 
8938             client size via driver method in the others. The previous
8939             method of tracking client size by difference wasn't working
8940             for forms where even the starting client size wouldn't match
8941             the overall form size (due to borders) (Part of fix for #77729)
8942           - CreateParams(): Do not use parent.Handle unless the handle is
8943             already created. Causes havoc with Nexxia and throws off our
8944             creation of controls
8945         * XplatUIX11.cs:
8946           - Created new PerformNCCalc method to trigger WM_NCCALCSIZE message
8947           - Switched handling of ConfigureNotify over to new PerformNCCalc 
8948             method (consolidates code)
8949           - Changed RequestNCRecalc to use new PerformNCCalc method
8950           - Added calls to RequestNCRecalc when menus and borders are changed
8951             to allow app to set NC size. (Part of fix for #77729) This matches
8952             when MS send a WM_NCRECALC on Win32 windows.
8953           - Now sending WM_WINDOWPOSCHANGED when toplevel for is made visible
8954             (Part of fix for #77729). This matches what MS does, they also
8955             send that message when the form is made visible.
8956           - XException.GetMessage: Improved usability of X errors by including
8957             a translation of the window into Hwnd and Control class
8958           - Improved debug info for window creation, reparenting and destruction
8959           - Created helper method WindowIsMapped() [Currently not used]
8960         * XplatUIWin32.cs: Added ToString() debug helper to RECT structure
8961         * Form.cs:
8962           - CreateParams: Now setting our menu on the new internal menu field
8963           - SetClientSizeCore: Now passing cp.menu instead of ActiveMenu to
8964             avoid calculating the same property twice
8965         * Hwnd.cs:
8966           - Improved usability of ToString() for debugging purposes
8967           - GetWindowRectangle(): Now uses proper CalcMenuBarSize method to
8968             determine the height of the menu, instead of just the font. This
8969             required to also create a graphics context and to keep a bmp 
8970             around (for performance reasons)
8971
8972 2006-03-17  Peter Dennis Bartok  <pbartok@novell.com>
8973
8974         * MenuAPI.cs: Added OnMouseUp method
8975         * Form.cs:
8976           - Now remembering the requested client size, avoids size errors
8977           - WndProc: Now handling WM_xBUTTONUP and passing it to MenuTracker
8978             instead of base if the menu is active. This is required due to
8979             control now capturing and releasing on down/up and it would
8980             prematurely release our menu capture
8981
8982 2006-03-17  Jackson Harper  <jackson@ximian.com>
8983
8984         * KeyboardLayouts.cs: Add the czech layouts.
8985
8986 2006-03-16  Jackson Harper  <jackson@ximian.com>
8987
8988         * Control.cs: Use the viewport space when sizing not the controls
8989         client size, so things like ScrollableControl that effect the
8990         viewport size (when scrollbars are added) are computed correctly.
8991         * BindingContext.cs: Cleanup to use the DataSourceEntrys instead
8992         of ManagerEntrys.
8993         - Handle creating BindingManagers for null data sources.
8994         * DataGrid.cs: Bind the cached_currencymgr_events to the real data
8995         source, otherwise when rows are added they are added to the 'fake'
8996         datasource and we will crash when trying to set the position in
8997         those rows.
8998         - Use Implicit scrollbars on the datagrid so they arent
8999         selectable.
9000         
9001 2006-03-16  Jackson Harper  <jackson@ximian.com>
9002
9003         * Binding.cs:
9004         * InternalWindowManager.cs:
9005         * MdiWindowManager.cs:
9006         * X11Keyboard.cs: I really want Mike to love me again (fix
9007         compiler warnings).
9008
9009 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com>
9010
9011         * DataGrid.cs:
9012           - OnMouseDown: Switch to editing mode when clicking on the cell
9013                          even if we're clicking on the cell that's currently 
9014                          selected
9015           - ProcessGridKey: Left/Right now wrap like MS.Net does
9016           - ProcessGridKey: Tab now knows to add a new row when tab is
9017                             pressed in the cell of the last column of the 
9018                             last row
9019           - ProcessGridKey: Enter now adds another row  if pressed in the last
9020                             row and selectes the new row, same column cell
9021           - ProcessGridKey: Home/End navigate columns, not rows, like 
9022                             originally implemented
9023           - Broke ProcessKeyPreview code out into an extra Internal method
9024             so it can be called from the edit code
9025         * DataGridTextBox.cs (ProcessKeyMessage):
9026           - Switched to accept Tab keypresses
9027           - Added F2 handling to allow jumping to the end of the edited cell
9028           - Added logic to allow moving caret left/right inside edited cell
9029             and making the edited cell jump when the caret hits cell borders
9030           - Tab and Enter are now passed to the datagrid after being handled
9031         * TextBoxBase.cs:
9032           - Removed capture code now that Control handles it
9033           - set_SelectionStart now ensures caret is visible
9034
9035 2006-03-16  Jackson Harper  <jackson@ximian.com>
9036
9037         * TrackBar.cs: Debackwards the increment/decrement for handling
9038         mouse clicks on the bar with vertical trackbars.
9039         * ThemeWin32Classic.cs: Draw vertical trackbars with 0 at the
9040         bottom to match MS.
9041
9042 2006-03-16  Mike Kestner  <mkestner@novell.com>
9043
9044         * ListView.cs: make shift/ctrl keyboard and mouse selection 
9045         consistent with the MS control. Fix a bug in
9046         SelectedListViewItemCollection.Clear that was pissing me off for the
9047         better part of a day because the collection was being altered
9048         underneath us as we walked the list.
9049
9050 2006-03-16  Peter Dennis Bartok  <pbartok@novell.com> 
9051
9052         * Control.cs: Not sure how we could miss this so long, but it seems
9053           that MS.Net has Capture set all the way from before calling 
9054           OnMouseDown through sending the mouse events until after
9055           OnMouseUp. This will fix DataGrid's selection being set to end
9056           at the location of the MouseUp.
9057
9058 2006-03-15  Jackson Harper  <jackson@ximian.com>
9059
9060         * BindingContext.cs: Check the binding after its added so that it
9061           can initialize the binding managers and hookup to events.
9062         * Binding.cs: Data members seem to sometimes include rows/cols in
9063           the format Row.Column we now take this into account.
9064           - Hookup to the position changed event so we can update the
9065           control when the position has changed in the data set.
9066         * CurrencyManager.cs: Take into account the row/col naming
9067           convention when creating dataset tables.
9068         * BindingContext.cs: Using a newer better way of storing
9069           datasource/datamember pairs.  Hopefully this better matches MS for
9070           looking up binding managers.
9071
9072
9073 2006-03-15  Jackson Harper  <jackson@ximian.com>
9074
9075         * BindingContext.cs: The currency manager needs the data member
9076         name, if the member is a data set we use the name to find the
9077         correct table.
9078         * CurrencyManager.cs: When creating the list prefer an IList over
9079         an IListSource.
9080         - Attempt to create a DataTable from a DataSet (TODO: might need
9081         some better error checking here, although MS doesn't seem to have much)
9082         - If we have a DataTable create a view and use it as our list.
9083
9084 2006-03-15  Mike Kestner  <mkestner@novell.com>
9085
9086         * ListView.cs: keep a matrix of the icon mode layout to facilitate
9087         keyboard navigation. Support Up/Down/Left/Right selection correctly
9088         for all 4 View modes.
9089         * ListViewItem.cs: add internal row/col fields for icon layouts.
9090
9091 2006-03-15  Jackson Harper  <jackson@ximian.com>
9092
9093         * TabControl.cs: Redraw the tabs when we resize so their newly
9094         calculated sizes are drawn on screen.
9095         * X11Keyboard.cs: Begginnings of XIM support.  We also now support
9096         composite characters.
9097         * XplatUIX11.cs: Keyboard driver needs to know about focus changes
9098         - filter events so that composite characters can be created
9099         patches by peter
9100         * X11Structs.cs: Add XIMProperties enum.
9101
9102 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9103
9104         * Control.cs (BringToFront, SendToBack): Don't use window or handle
9105           unless it's created
9106
9107 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9108
9109         * Control.cs (PerformLayout): We don't need to consider visiblity
9110           for anchoring, only for docking. This fixes 'whacky' alignment
9111           in listbox and other controls that use implicit scrollbars after
9112           the previous PerformLayout patch
9113         * ListBox.cs: Switched to use implicit scrollbars
9114           
9115 2006-03-14  Mike Kestner  <mkestner@novell.com>
9116
9117         * ToolBar.cs: 
9118         * VScrollBar.cs:
9119         - chain up the "new event" overrides to base and use
9120         OnEvent to raise them.  Part of fix for bug #76509.
9121
9122 2006-03-14  Alexander Olk  <alex.olk@googlemail.com>
9123
9124         * FileDialog.cs: Do not select an item in the parent directory
9125           on backspace
9126
9127 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com> 
9128
9129         * Control.cs (PerformLayout): It would seem that we considered
9130           invisible windows for our layout. Not quite the right thing
9131           to do. Now we don't any longer, thereby fixing bug #76889.
9132
9133 2006-03-14  Peter Dennis Bartok  <pbartok@novell.com>
9134
9135         * Control.cs (CanFocus): I goofed. A control can have focus 
9136           even though it's not selectable. Made it match MS docs.
9137
9138 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9139
9140         * ControlPaint.cs (DrawBorder3D): DrawBorder3D does not fill the
9141           center by default (fixes #76895)
9142         * ThemeWin32Classic.cs, ThemeNice.cs, ThemeClearlooks.cs: Replaced 
9143           all uses of Border3DSides.All with the explicit ORd together
9144           Left|Right|Top|Bottom because I assume that nobody was aware 
9145           that All also implies a center fill. Most places I checked had
9146           a fill right above.
9147         * ProgressBarStyle.cs: Added
9148
9149 2006-03-13  Mike Kestner  <mkestner@novell.com>
9150
9151         * ListView.cs: fix breakage in drag shadow header positioning 
9152         from Peter's csc compilation fix.
9153
9154 2006-03-13  Mike Kestner  <mkestner@novell.com>
9155
9156         * ListView.cs: fix NRE produced by backspacing twice in a focused
9157         FileDialog.
9158
9159 2006-03-13  Mike Kestner  <mkestner@novell.com>
9160
9161         * ListView.cs: proxy Key(Down|Up) from ItemControl to ListView.
9162
9163 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9164
9165         * Hwnd.cs: Added fixed_size field to track windows whose size cannot
9166           be changed
9167         * XplatUIX11.cs: Now setting fixed_size on hwnd and if set, re-setting
9168           the allowed size before making programmatic size changes
9169
9170 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com> 
9171
9172         * XplatUIX11.cs: Don't call XSetWMNormalHints if no flags are 
9173           set, metacity is broken and will still use the emty sizes in 
9174           the struct. (Fix for #77089)
9175
9176 2006-03-13  Peter Dennis Bartok  <pbartok@novell.com>
9177
9178         * XplatUIStructs.cs: Split WindowStyles into WindowStyles and 
9179           WindowExStyles and marked both enums as Flags
9180         * Form.cs, ComboBox.cs, ToolTip.cs, Control.cs, PropertyGridView.cs,
9181           NotifyIcon.cs, MenuAPI.cs, XplatUIOSX.cs, MonthCalendar.cs: Updated
9182           to match WindowStyles split
9183         * XplatUIX11.cs:
9184           - SetWMStyles: Added cehck to not apply WM attributes to Child windows
9185           - Updated to match WindowStyles split
9186         * XplatUIWin32.cs:
9187           - Fixed FosterParent creation, was using ExStyle on the Style field
9188             (This should help with Popup focus issues)
9189           - Updated to match WindowStyles split
9190
9191 2006-03-13  Jackson Harper  <jackson@ximian.com>
9192
9193         * MdiWindowManager.cs: Use the system menu height. Fixes some
9194         strange sizing issues.
9195
9196 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9197
9198         * RichTextBox.cs: Need to scroll to caret after text is inserted (#77672)
9199         * TextBoxBase.cs:
9200           - Scroll to caret after inserting text (#77672)
9201           - Make scroll range one pixel higher, fixes off-by-one error (and
9202             makes underlines visible on the last line)
9203
9204 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com> 
9205
9206         * XplatUIX11.cs: Added call to new Keyboard.ResetKeyState to prevent
9207           the keyboard state from being stuck with keys in 'pressed' state when
9208           focus is switched away via keyboard
9209         * X11Keyboard.cs: Added new ResetKeyState method to allow drivers to
9210           reset the keyboard if no X11 KeyUp events are expected to come
9211         * X11Structs.cs: Switched type of Visible to bool to match driver
9212
9213 2006-03-12  Peter Dennis Bartok  <pbartok@novell.com>
9214
9215         * TextControl.cs:
9216           - Switched caret to be just 1 pixel wide, matches MS and looks less
9217             clunky
9218           - Moved caret display 1 pixel down from the top of the control
9219             to improve view
9220           - InsertCharAtCharet: Update the selection start if moving the caret
9221             (fixes bug #77696; based on patch suggested by kazuki@panicode.com)
9222           - No longer always creating the caret when the caret methods are
9223             called. Only the actual ShowCaret/HideCaret will do that now
9224           - Only setting caret visible if the owner control has focus
9225           - UpdateView: Added invalidation-shortcut logic for center and right 
9226             aligned text. Previously we'd update all according to the left
9227             logic which caused drawing errors. Also fixed height of invalidated
9228             areas, now properly invalidating the whole area (was off-by-one)
9229           - owner_HandleCreated: Always generate the document when the
9230             handle is created; this ensures that 
9231         * TextBoxBase.cs:
9232           - Fixed situation where caret would disappear under the right
9233             window border, also improved scrolling behaviour on left-
9234             aligned textboxes
9235           - Fixed right-aligned textboxes to have a border to the
9236             right instead of the caret being under the right border
9237         * XplatUIX11.cs:
9238           - Switched from 'nested' to simple visible/not visible tracking 
9239             for caret (part of fix for #77671)
9240           - No longer passing through translated FocusIn/FocusOut messages
9241             since we were notifying too often and the wrong windows. Instead
9242             we just notify our focussed window of receiving or loosing focus
9243         * XplatUIWin32.cs: Switched from 'nested' show/hide 
9244           counting for caret to simple visible yes/no behaviour (part of 
9245           fix for #77671)
9246
9247 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9248
9249         * Mime.cs: Remove debug code...
9250
9251 2006-03-11  Alexander Olk  <alex.olk@googlemail.com>
9252
9253         * MimeGenerated.cs: Removed
9254         * Mime.cs: Mime now reads the mime data (magic, globs, aliases
9255           and subclasses) from /usr/(local/)share/mime and
9256           $HOME/.local/share/mime.
9257
9258 2006-03-10  Jackson Harper  <jackson@ximian.com>
9259
9260         * MdiWindowManager.cs: Recalc the NC area when a window is
9261         maximized/restored so that the menu area is drawn on forms that
9262         don't have a menu.
9263
9264 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9265
9266         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
9267           XplatUIX11.cs: Added RequestNCRecalc method to driver to allow
9268           us to force a WM_NCCALCRESIZE message being sent. This is needed
9269           for MDI maximizing.
9270
9271 2006-03-10  Jackson Harper  <jackson@ximian.com>
9272
9273         * Form.cs: We need to use the ActiveMenu when calculating menu
9274         height.
9275         - Fix nullref when the window manager hasn't been created yet.
9276         * Control.cs: Fix nullref when we try to bring a control to the
9277         front that has no parent.
9278         * MdiWindowManager.cs: Use the MaximizedMenu for calculating
9279         height.
9280         - Add a dummy item to the maximized menu so it always has the
9281         correct height. Otherwise when there are no menus we don't get our
9282         icon and buttons.
9283         
9284
9285 2006-03-10  Jackson Harper  <jackson@ximian.com>
9286
9287         * MenuAPI.cs: Make this available elsewhere. I need it in some MDI
9288         stuff.
9289         * Form.cs: Make the window_state internal so the window managers
9290         can track it.
9291         - When an MDI child is maximized let its window manager create the
9292         main menu (so it can add its icon).
9293         - Notify the window managers of state changes
9294         - Let the window manager paint its buttons and handle button
9295         clicks on the menu when it is maximized.
9296         * InternalWindowManager.cs: Move the prev_bounds into the mdi
9297         window manager, since tool windows don't use it, only mdi windows.
9298         - Tell the main form that we don't want it to handle NCPAINT
9299         itself to avoid extra painting.
9300         - Handle clicks on a maximized windows menu.
9301         - Handle window state changes
9302         - Handle minimize/maximize clicks correctly by setting the window state.
9303         * MdiWindowManager.cs: Add an icon menu that (the menu you get
9304         when clicking on the forms icon).
9305         - New method to create a forms maximized menu. This is its normal
9306         menu + an icon.
9307         - Handle window state changes.
9308         - Handle sizing of maximized windows.  Maximized windows are just
9309         drawn bigger then the parent visible area. All controls are still
9310         there, they are just outside the visible area (this matches windows).
9311         * MdiClient.cs: No scrollbars when a child window is maximized.
9312         - Let the children windows figure out how big they should be when
9313         sizing maximized windows.
9314         - Implement a version of ArrangeIconicWindows somewhat similar to
9315         Windows version.  There are some little differences, but I don't
9316         think any app will rely on the layout of minimized mdi windows.
9317
9318 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9319
9320         * Padding.cs: Several fixes to allow compiling with csc 2.0
9321
9322 2006-03-09  Jackson Harper  <jackson@ximian.com>
9323
9324         * Menu.cs:
9325         * MenuItem.cs: Cheap hack so we can add items to the list without
9326         the events being raised.  This allows adding mdi items during
9327         drawing. TODO: Should probably find a better time to add the items.
9328
9329 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9330
9331         * ThemeWin32Classic.cs:
9332           - CheckBox_DrawText: Added logic to not wrap if not enough space
9333             is available (Fix for bug #77727)
9334           - RadioButton_DrawText: Added logic not to wrap if not enough
9335             space is available (Fix for bug #77727). Also removed some
9336             duplicate code, DrawString always drawing the regular text
9337             before hitting the if statement.
9338
9339 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com> 
9340
9341         * XplatUIX11.cs: Handle an unmapped window state in SetWindowState
9342
9343 2006-03-10  Peter Dennis Bartok  <pbartok@novell.com>
9344
9345         * PictureBox.cs: Implemented ISupportInitialize interface (fixes #77726)
9346         * ContainerControl.cs: Partial implementation of some 2.0 scaling
9347           methods. Moved the new 2.0 properties into alphabetical order with
9348           other properties and added MonoTODO tags
9349
9350 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9351
9352         * AutoScaleMode.cs: Added. Fix build.
9353
9354 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9355
9356         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs, 
9357           XplatUIOSX.cs: Removed HWnd argument from CalcuateClientRect, not used
9358           and was requiring premature handle creation for calls from above
9359         * Form.cs, Control.cs: Removed handle arguments from calls to
9360           CalculateClientRect()
9361
9362 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9363
9364         * ListView.cs (HeaderMouseMove): Fix csc compilation. 
9365           drag_column.column_rect is MarshalByRef and can't be used that way
9366
9367 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9368
9369         * AxHost.cs: Added deserialization constructor for 
9370           AxHost+State (fixes 77743)
9371
9372 2006-03-09  Mike Kestner  <mkestner@novell.com>
9373
9374         * ListView.cs: 
9375         - Added column drag reordering for details view.
9376         - fixed behavior when mouse is dragged off column and
9377         AllowColumnReorder is false.
9378         * ColumnHeader.cs: clone the format too in Clone.
9379         * Theme.cs: add DrawListViewHeaderDragDetails method.
9380         * ThemeWin32Classic.cs:
9381         - impl new method for drawing drag column shadows and targets.
9382         - support column offset for details mode in DrawListViewItem.
9383
9384 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9385
9386         * TextControl.cs: Reset the char_count when the document is cleared
9387           (Fixes bug reported on mono-winforms mailing list)
9388
9389 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com> 
9390
9391         * TextBoxBase.cs: Honor the Handled state of KeyPress events. Instead
9392           of calling base we simply process the key ourselves, since both
9393           DefWindowProc and the handled method would set m.Result. 
9394           (Fixes #77732)
9395
9396 2006-03-09  Peter Dennis Bartok  <pbartok@novell.com>
9397
9398         * Form.cs(ScaleCore): No longer calling base.ScaleCore since that
9399           method also moves the window; instead implemented a copy of
9400           Control.ScaleCore (Part of fix for #77456)
9401         * TextBoxBase.cs: 
9402           - Created new CreateGraphicsInternal method to allow providing
9403             a graphics context when no handle is created without triggering
9404             handle creation. (Part of fix for #77456)
9405           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9406         * TextControl.cs: 
9407           - Switched Constructor to require TextBoxBase instead of Control (to
9408             allow uncast access to CreateGraphicsInternal)
9409           - Safeguarded use of owner.Handle property. No longer accessing it
9410             unless the handle is already created.
9411           - Replaced use of Control.CreateGraphics with CreateGraphicsInternal
9412           - Now triggering a recalc when owning control becomes visible
9413         * TextBox.cs, RichTextBox.cs: Switched to use new internal 
9414           TextBoxBase.CreateGraphicsInternal() method to avoid triggering
9415           premature handle creation (Part of fix for #77456)
9416         * Control.cs:
9417           - We now only destroy our double-buffering buffers when the
9418             control is resized or disposed, but not when visibility
9419             changes. (The code even re-created them twice every time)
9420           - Now requiring a redraw of the buffer on visibility changes
9421             (fixes bug 77654 part 2)
9422           - Not passing OnParentVisibleChanged up unless the control
9423             is visible
9424           - CanFocus: Fixed to match MS documentation
9425           - Focus: Fixed to return actual focus state and to check if
9426             setting focus is legal before setting it
9427
9428 2006-03-08  Peter Dennis Bartok  <pbartok@novell.com>
9429
9430         * ThemeWin32Classic.cs: TabPages cannot have focus. Determine
9431           when to draw focus rectangle by looking at parent focus and
9432           selected state instead. This fixes TabPages on Linux sometimes
9433           having none or multiple focus rectangles.
9434         * XplatUIX11.cs (SetFocus): 
9435           - Don't set the focus if the same window already has focus
9436           - Use SendMessage instead of PostMessage (like it's Win32
9437             equivalent) and send the WM_SETFOCUS before the WM_KILLFOCUS
9438             to match MS behaviour
9439         * TabControl.cs(SelectedIndex): Don't set Focus on TabPage, TabPages
9440           are not selectable.
9441
9442 2006-03-07  Jackson Harper  <jackson@ximian.com>
9443
9444         * PictureBox.cs: Revert line I accidently committed last week.
9445
9446 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
9447
9448         * Control.cs: 
9449           - Added new IsRecreating and ParentIsRecreating properties to
9450             allow testing if RecreateHandle has been called on ourselves
9451             or one of our parents
9452           - WndProc(WM_DESTROY): If our control handle is being recreated
9453             we immediately need to create the handle when receiving the
9454             destroy, that way our child windows find a valid parent handle
9455             when they themselves are being recreated upon WM_DESTROY receipt
9456             (fix for bug #77654 part 1)
9457         * XplatUIX11.cs:
9458           - DestroyWindow: WM_DESTROY must be sent to our own window before
9459             notifying any child windows. MS documents that child windows
9460             are still valid when WM_DESTROY is received. (Control now relies on
9461             this behaviour)
9462           - Added some fine-grain debug options
9463
9464 2006-03-06  Jackson Harper  <jackson@ximian.com>
9465
9466         * MdiClient.cs: Redid scrolling logic a bit to create a virtual
9467         box and base calculations off this.
9468         * MdiChildContext.cs:
9469         * MdiWindowManager.cs: Don't need to ensure scrollbars here
9470         anymore.
9471         
9472 2006-03-06  Peter Dennis Bartok  <pbartok@novell.com>
9473
9474         * Splitter.cs: In situations where the affected control is added
9475           to the parent's control list after the splitter, we would not
9476           populate affected. Now we try populating it on mousedown, if
9477           it's not already set, and force it to be re-set whenever our
9478           parent changes.
9479
9480 2006-03-03  Matt Hargett  <matt@use.net>
9481
9482         * Control.cs: implement Control.Padding
9483         * Padding.cs: -Padding.All returns -1 when constructing with the
9484         implicit default ctor
9485         -Padding.ToString() matches MS.NET
9486         * ContainerControl.cs: implement
9487         ContainerControl.AutoScaleDimensions
9488         * ListControl.cs: implement ListControl.FormattingEnabled
9489         * TextBox.cs: Implemented TextBox.UseSystemPasswordChar.
9490         * ButtonBase.cs:
9491         * TabPage.cs: Implement UseVisualStyleBackColor.
9492         * PictureBox.cs: Implement PictureBox.InitialImage.
9493
9494 2006-03-03  Mike Kestner  <mkestner@novell.com>
9495
9496         * ListView.cs: Refactor into HeaderControl and ItemControl. Fix new
9497         event declarations to proxy to base event.
9498         * ListViewItem.cs: update to use ItemControl.
9499         * Theme.cs: make DrawListViewHeader. s/DrawListView/DrawListViewItems.
9500         * ThemeWin32Classic.cs: update to new ListView theme API and fix
9501         column header label rendering for 0 width columns.
9502
9503 2006-03-03  Peter Dennis Bartok  <pbartok@novell.com>
9504
9505         * Control.cs (ControlCollection.SetChildIndex): Avoid using a call
9506           that causes the control to be created. Fixes #77476.
9507
9508 2006-03-02  Jackson Harper  <jackson@ximian.com>
9509
9510         * Hwnd.cs: Clear the nc pending when clearing the NC area, not the
9511         expose_pending.
9512
9513 2006-03-02  Peter Dennis Bartok  <pbartok@novell.com>
9514
9515         * Control.cs: Implemented 2.0 feature where OnClick has MouseEventArgs
9516           passed in for the EventArgs (fixes #77690)
9517
9518 2006-03-01  Jackson Harper  <jackson@ximian.com>
9519
9520         * ScrollBar.cs: Refresh afterbeing resized.
9521
9522 2006-02-28  Mike Kestner  <mkestner@novell.com>
9523
9524         * MenuAPI.cs: Call PerformPopup internal method to emit Popup.
9525         Clean up a tracker compile warning.
9526         * MenuItem.cs: add internal PerformPopup method.
9527         [Fixes #77457]
9528
9529 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9530
9531         * TextBoxBase.cs (set_Text): Recalculate the document (causing an
9532           implicit expose) when the text is set to null
9533
9534 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com>
9535
9536         * RichTextBox.cs (FlushText): When newline is true, we always
9537           need to split the line, even if no text is on it and we may
9538           never eat newlines. (Fixes #77669)
9539
9540 2006-02-28  Mike Kestner  <mkestner@novell.com>
9541
9542         * ListView.cs: Add UpdateSelection internal method. Remove SelectItem 
9543         and set Selected instead.
9544         * ListViewItem.cs: Call owner.UpdateSelection to manipulate the 
9545         collections.
9546
9547 2006-02-28  Peter Dennis Bartok  <pbartok@novell.com> 
9548
9549         * ComboBox.cs: Allow setting SelectedIndex to -1. Fixes #77665
9550
9551 2006-02-28  Alexander Olk  <alex.olk@googlemail.com>
9552
9553         * FontDialog.cs:
9554           - Got rid of the panel. All controls are now directly added to
9555             the dialog form
9556           - It is now possible to set a font with the Font property
9557           - MinSize and MaxSize property do now what they should
9558           - ShowApply, ShowHelp, ShowColor, ShowEffects likewise
9559           - Searching and selecting a font with the font textbox works now,
9560             the same applies to the style and size textbox
9561           - Draw the correct 3D border in the example panel
9562           - Fixed a little mem leak (unused fonts didn't get disposed)
9563           - Many other internal updates/rewrites...
9564           - Fix typo
9565
9566 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9567
9568         * TextControl.cs: 
9569           - InsertRTFFromStream: Added 'number of characters inserted' argument
9570           - set_SelectedRTF: Now using the number of characters to calculate
9571             the new location for the selection and cursor (x/y cannot be used
9572             due to potentially already wrapped text)
9573
9574 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com>
9575
9576         * TextControl.cs: Added property and implemented means to allow 
9577           disabling recalculation of a document (can be used to speed up
9578           multiple inserts and is needed to make RTF inserts predictable, see
9579           bug #77659)
9580         * RichTextBox.cs: Using the new NoRecalc property of Document to
9581           keep x/y insert locations predictable. Also makes it faster inserting
9582           large chunks of RTF
9583
9584 2006-02-27  Peter Dennis Bartok  <pbartok@novell.com> 
9585
9586         * Control.cs: Separated special WM_SYSKEYUP keyboard handling. That way
9587           it's easier for a child control to handle the other messages without
9588           having to duplicate the special functionality
9589         * TextBoxBase.cs
9590           - WndProc: Removed calling base handler for WM_KEYDOWN and added 
9591             code to handle processing the key ourselves, in order to get 
9592             access to the result of KeyEventArgs.Handled. We now only call 
9593             ProcessKey if they key hasn't been handled already. Fixes #77526.
9594           - set_Text: If null or empty string is given, just clear the 
9595             document. Fixes part of #77526
9596
9597 2006-02-27  Jackson Harper  <jackson@ximian.com>
9598
9599         * SizeGrip.cs: Paint the background color before painting the grip
9600         so things look right.
9601         * MdiClient.cs: Add the sizegrip when both scrollbars are used.
9602
9603 2006-02-27  Mike Kestner  <mkestner@novell.com>
9604
9605         * ListView.cs:
9606           - Restructure layout and invalidation model to remove a ton of
9607           flicker from the control and speed up performance in general.
9608           - Add manual column resize, flickers like crazy, but I already have
9609           some ideas on how I'll fix that. (#76822)
9610           - Merge the three Icon-based views into a single layout method.
9611           - Move item selection interaction logic from the item since 
9612           interaction with the collections is more appropriate to the view.
9613           - Deselection on non-item clicks.
9614         * ListViewItem.cs:
9615           - Encapsulate most of the layout. Add some internal props to trigger
9616           layout.  Move to a model where Items invalidate themselves instead
9617           of just invalidating the whole control every time something changes.
9618           - Invalidate on Text/Caption changes.
9619           - switch to an offset based layout model to avoid having to absolute
9620           position every element on item moves.
9621           - correct checkbox layout to conform to MS layout.
9622         * ThemeWin32Classic.cs:
9623           - refactor some column header drawing code.
9624           - fix string justification for column headers (#76821)
9625           - make SmallIcon labels top justified for compat with MS impl.
9626         * ThemeClearlooks.cs:
9627           - adjust to new ListViewItem internal checkbox bounds api.
9628
9629 2006-02-27  Jackson Harper  <jackson@ximian.com>
9630
9631         * Control.cs:  Change where implicit controls fall in the zorder.
9632         They are now on top of all children.
9633         - Synced AddImplicit code with Add
9634         - Removed unused enumerator.
9635         * SizeGrip.cs: Remove the TODO as its been TODONE.
9636
9637 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com> 
9638
9639         * TextControl.cs(Insert): Combine the last lines unless the insertion
9640           string ends with \n\n, otherwise we leave one line too many (Fixes
9641           something I noticed with the testapp for #77526; the bug itself was
9642           already fixed in the previous checkin)
9643
9644 2006-02-26  Peter Dennis Bartok  <pbartok@novell.com>
9645
9646         * RichTextBox.cs:
9647           - SelectionColor and SelectionFont methods no longer set absolute
9648             styles. Instead, the keep font or color respectively (This 
9649             resolves a long-standing FIXME in the code)
9650           - When flushing RTF text, the insert code now considers text trailing
9651             behind the insertion point (Fixes the bug where when replacing
9652             the selected text via SelectedRTF the remainder of the line behind 
9653             the selection would stay on the first insertion line)
9654         * TextBoxBase.cs:
9655           - AppendText now updates the selection points after inserting text
9656           - AppendText now ensures that the last tag (sometimes 0-length) of
9657             the document is used for the style information (Fixes part of 
9658             bug #77220)
9659         * TextControl.cs:
9660           - Created new FontDefiniton class to allow describing partial style
9661             changes
9662           - StreamLine() now takes a lines argument, to allow it to decide
9663             whether an encountered zero-length tag is the last in the document
9664             (which must be kept to not loose the font/color contained in it,
9665             for later appends)
9666           - Created Combine() and Split() methods for Marker structs, to 
9667             support marker updates due to reformatted documents (soft line
9668             wraps)
9669           - Implemented Document.CaretTag setter
9670           - Fixed MoveCaret(CtrlEnd) handling, now moves to the last character
9671             of the last line (Not the cause, but also exposed by bug #77220)
9672           - Added LineTag argument to InsertString method, to allow callers
9673             to force a certain tag to be used (required to force use of the
9674             trailing zero-length tag of a document)
9675           - Now updating markers in Combine(), to avoid stale tag markers
9676           - Added some method descriptions to aid maintenance
9677           - Implemented new FormatText concept, allowing additive/subtractive
9678             formatting by only specifying the components that are to be 
9679             changed. This was needed for resolving the RTB.SelectedColor/
9680             RTB.SelectedFont fixmes
9681           - Added Break() support method to allow breaking up linetags (used
9682             for partial formatting)
9683           - Added GenerateTextFormat() method. It is used for partial 
9684             formatting and allows to generate a full font/color from given
9685             attributes and an existing tag.
9686
9687 2006-02-26  Jackson Harper  <jackson@ximian.com>
9688
9689         * XplatUIX11.cs:  Use the correct caption height.
9690         - Translate hittest coordinates to screen coords to match MS.
9691         * XplatUIWin32.cs: When we create MDI windows we need to reset
9692         some of the style flags, so we get a nice blank window, and can
9693         draw all the decorations ourselves.
9694         - Set a clipping rectangle on the non client paint event, the
9695         window manager drawing code needs one.
9696         * Form.cs: The window manager needs to know when the window state
9697         has been updated.
9698         * Hwnd.cs: The window manager stuff now does a proper NCCALC so we
9699         don't need to factor in border and title sizes in these
9700         methods. TODO: Remove the args and fix the call points.
9701         * InternalWindowManager.cs: Handle NCHITTEST and NCCALCAREA
9702         properly.
9703         - Let the driver set the cursors.
9704         - Improve active window handling
9705         - Correct sizes for title bars and buttons.
9706         - Match MS drawing better
9707         * MdiWindowManager.cs: We don't need to handle border style
9708         updates specially anymore.
9709         - Check for scrollbars when windows are done moving
9710         - Handle Active properly.
9711         * MimeIcon.cs: Don't crash when we can't load the GNOME stuff
9712         correctly. I am spewing the exception though, so we don't hide the
9713         bugs.
9714         
9715 2006-02-26  Pedro Martinez Julia  <pedromj@gmail.com>
9716
9717         * DataGridViewRowPostPaintEventArgs.cs,
9718           DataGridViewCellPaintingEventArgs.cs,
9719           DataGridViewRowCollection.cs,
9720           DataGridViewRowPrePaintEventArgs.cs,
9721           DataGridViewCell.cs: Clear a few warnings and implement a few
9722           exceptions that should be thrown.
9723
9724 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
9725
9726         * ScrollBar.cs (ctor): Explicitly set a cursor to avoid
9727           'inheriting' our parent's (non-default) cursor. (Part of
9728            the fix for #77479)
9729
9730 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com> 
9731
9732         * XplatUIX11.cs: Fixed cast to make csc happy
9733
9734 2006-02-22  Peter Dennis Bartok  <pbartok@novell.com>
9735
9736         * Control.cs (WndProc): Only handle WM_SETCURSOR messages if
9737           it's for the client area (part of fix for #77479 and needed
9738           for MDI window cursor handling)
9739         * XplatUIX11.cs
9740           - DefWindowProc: Now handles the WM_SETCURSOR messages, setting
9741             the appropriate default cursors and also passing the message
9742             up the parent chain 
9743           - GetMessage: Now generating WM_NCHITTEST and WM_SETCURSOR even
9744             for non-client areas
9745
9746 2006-02-15  Jackson Harper  <jackson@ximian.com>
9747
9748         * XplatUIWin32.cs: Since we fake MDI dont tell Windows that this
9749         is a real MDI window
9750
9751 2006-02-14  Alexander Olk  <alex.olk@googlemail.com>
9752
9753         * X11DesktopColors.cs: Instead of checking the desktop session
9754           string for "KDE" check if it starts with "KDE"
9755
9756 2006-02-10  Jackson Harper  <jackson@ximian.com>
9757
9758         * XplatUIX11.cs: These should be unsigned (fixes crash on 32 bit
9759         systems).
9760
9761 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9762
9763         * FileDialog.cs: Added Refresh to RunDialog to fix some drawing
9764           errors
9765         * ColorDialog.cs:
9766           - Got rid of the panel. All controls are now directly added to
9767             the dialog form
9768           - Changed to mono coding style
9769
9770 2006-02-10  Jackson Harper  <jackson@ximian.com>
9771
9772         * InternalWindowManager.cs: We don't need the set visibility to
9773         false hack anymore now that peter has written beautiful shutdown
9774         code.
9775
9776 2006-02-10  Peter Dennis Bartok  <pbartok@novell.com>
9777
9778         * XplatUIX11.cs: Ignore DestroyNotify messages for windows that
9779           where already explicitly destroyed
9780
9781 2006-02-10  Jackson Harper  <jackson@ximian.com>
9782
9783         * MdiClient.cs: Handle the case where windows are too high or to
9784         the left and we need scrollbars.
9785
9786 2006-02-10  Alexander Olk  <alex.olk@googlemail.com>
9787
9788         * MimeIcon.cs: Added some icons
9789         * FileDialog.cs:
9790           - Fixed bug #77477
9791           - Got rid of the panel. All controls are now directly added to
9792             the dialog form
9793           - Changed to mono coding style
9794           - On Linux "My Computer" and "My Network" will now show some
9795             more usefull information. A new class, MasterMount, gathers
9796             this information from /proc/mount. Updated MWFFileView to make
9797             use of this information
9798           - Fixed a bug that caused FileDialog to crash when
9799             ".recently_used" file had a zero size
9800           - FilterIndex does now what it should
9801           - Some Refactoring
9802         * OpenFileDialog.cs, SaveFileDialog.cs: Updated to reflect latest
9803             FileDialog changes
9804
9805 2006-02-09  Jackson Harper  <jackson@ximian.com>
9806
9807         * ComboBox.cs: Don't touch if null.
9808
9809 2006-02-09  Peter Dennis Bartok  <pbartok@novell.com>
9810
9811         * Cursor.cs: 64bit safeness fix
9812         * XplatUIX11.cs: Removed several unneeded and one moronic cast.
9813
9814 2006-02-09  Jackson Harper  <jackson@ximian.com>
9815
9816         * Form.cs: If a form is made into an MDI form update the styles so
9817         all the props can get set correctly.
9818         - Kill the mdi_container when we dont need it anymore.
9819         * InternalWindowManager.cs: Add missing NOT
9820
9821 2006-02-08  Jackson Harper  <jackson@ximian.com>
9822
9823         * InternalWindowManager.cs: Respek clipping when drawing MDi
9824         decorations.
9825
9826 2006-02-08  Jackson Harper  <jackson@ximian.com>
9827
9828         * Hwnd.cs: Add bits to track non client expose events.
9829         * XplatUIX11.cs: Track non client expose events on the hwnd. This
9830         gives us a proper invalid rect and will allow for some nice
9831         optimizations with NC client drawing
9832         - MDI windows are children windows, so move their style handling
9833         into the child window block.
9834         * InternalWindowManager.cs: Remove a state reset that was
9835         getting invoked at the wrong time. Fixes managed windows getting
9836         into a 'stuck' captured state.
9837
9838 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9839
9840         * TextControl.cs (Document.ctor): Now initializing 
9841           selection_anchor. Fixes #77493
9842
9843 2006-02-07  Jackson Harper  <jackson@ximian.com>
9844
9845         * TrackBar.cs: The increment/decrements were backwards.
9846
9847 2006-02-07  Mike Kestner  <mkestner@novell.com>
9848
9849         * Theme*.cs : remove ThemeEngine.Current usage as it just points back
9850         to the instance itself.
9851
9852 2006-02-07  Peter Dennis Bartok  <pbartok@novell.com>
9853
9854         * X11DesktopColors.cs, ThemeGtk.cs: The GObject structure is based
9855           on ulongs and pointers, the size differs between 32bit and 64bit
9856           systems. 
9857
9858 2006-02-07  Mike Kestner  <mkestner@novell.com>
9859
9860         * XplatUIX11.cs : force the WorkingArea away from XGetWindowProperty
9861         for 64 bit platforms to work around a metacity bug. 
9862
9863 2006-02-07  Jackson Harper  <jackson@ximian.com>
9864
9865         * TrackBar.cs: Process the input keys we need, and hookup to
9866         KeyDown instead of using WndProc, so we get key messages.
9867
9868 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com>
9869
9870         * XplatUIX11.cs: Atoms are only 32bit on the wire, no matter what
9871           machine we're on. 
9872         * X11Dnd.cs(SetAllowDrop): Since atoms are always 32bit on the wire
9873           we need to translate the XdndVersion atoms array before sending it
9874
9875 2006-02-06  Peter Dennis Bartok  <pbartok@novell.com> 
9876
9877         * XplatUIX11.cs: 
9878           - The preceeding 64bit fixes had a bug: ChangeProperty expects the
9879             number of bits for the property, not the number of bytes. The
9880             change to provide IntPtr.Size broke 32bit. (64bit was also wrong
9881             but would not crash since it specified 8 bits instead of 4 bits)
9882           - More 64bit fixes: Switched all atoms from int to IntPtr (they are
9883             defined as XID -> long in the C headers)
9884           - Removed 'new IntPtr((int))' and '(IntPtr)' casts from all NetAtoms 
9885             references since those are now IntPtr to begin with
9886           - Switched all Atom.XXX 'int' casts to IntPtr casts
9887           - Fixed XGrabPointer DllImport signature to work for 64bit (cursor arg)
9888           - Fixed XInternAtom signature for 64bit, now returns an IntPtr
9889           - Added XChangeActivePointerGrab DllImport (for X11DnD)
9890         * X11Structs.cs:
9891           - Changed 'int' type for Atoms in XEvent structures to IntPtr
9892           - Changed atom in HoverStruct to be IntPtr
9893         * X11DnD.cs:
9894           - Removed local DllImports, switched code to use those from XplatUIX11
9895           - Removed/fixed casts related to the switch of Atom to be a IntPtr
9896
9897 2006-02-06  Mike Kestner  <mkestner@novell.com>
9898
9899         * XplatUIX11.cs : many more 64 bit pinvoke changes.  I've audited all the 
9900         method signatures in the import region.  There may still be some
9901         lingering struct marshaling issues, as I didn't drill down into those.
9902         Yet.
9903
9904 2006-02-06  Jackson Harper  <jackson@ximian.com>
9905
9906         * ComboBox.cs: Dont manually set the top_item, this is computed
9907         when the scrollbar position is set.
9908
9909 2006-02-06  Mike Kestner  <mkestner@novell.com>
9910
9911         * XplatUIX11.cs : 64 bit changes to XGetWindowProperty usage. Fixes
9912         startup crashes on amd64.  There's other fixes needed.  All pinvoke
9913         usage of Atom needs to be mapped to IntPtr for example.  And there are
9914         likely other int/long issues to be addressed.
9915
9916 2006-02-04  Alexander Olk  <alex.olk@googlemail.com>
9917
9918         * FileDialog.cs: One more...
9919
9920 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9921
9922         * FileDialog.cs: Next try
9923
9924 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9925
9926         * FileDialog.cs: First part of fix for #77464
9927
9928 2006-02-03  Alexander Olk  <alex.olk@googlemail.com>
9929
9930         * ButtonBase.cs, ContainerControl.cs, Forms.cs,
9931           ThemeWin32Classic.cs: Fix for #77458. Correct handling of
9932           AcceptButton border drawing.
9933
9934 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com> 
9935
9936         * Form.cs: Moved positioning of form after auto scaling is applied,
9937           otherwise it would possibly use wrong form size.
9938
9939 2006-02-03  Peter Dennis Bartok  <pbartok@novell.com>
9940
9941         * Control.cs (RecreateHandle): No need to re-create any child
9942           controls, the child windows will get destroyed automatically by
9943           the windowing system or driver, and re-created when the handle
9944           is being accessed the first time. Fixes #77456
9945         * Form.cs: No longer setting the form to closing if the handle is 
9946           being recreated. This seems like the right thing to do, don't
9947           have a bug or testcase for this, though.
9948
9949 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9950
9951         * FileDialog.cs: Suspend/Resume layouting when changing sizes of
9952           controls to avoid unwanted side effects
9953
9954 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com> 
9955
9956         * Control.cs: 
9957           - ScaleCore needs to scale the bounds, not the ClientSize of the 
9958             control. Fixes #77416.
9959           - DefaultSize is 0,0 for control
9960         * TextBoxBase.cs: 
9961           - DefaultSize is 100, 20
9962           - SetBoundsCore: Now enforcing the height, no matter if the provided
9963             height is more or less than the preferred one, as long as AutoSize
9964             is on
9965         * Form.cs: Apply documented fudge factor. Part of item 3 fix for #77416
9966
9967 2006-02-02  Peter Dennis Bartok  <pbartok@novell.com>
9968
9969         * Control.cs:
9970           - ResumeLayout: Fixed logic when to call PerformLayout, we may not
9971             call unless both performLayout is true *and* we have a pending
9972             layout change
9973           - ResumeLayout: MS does not completely nest Suspend and Resume,
9974             they bottom out at 0, fixed our code to match that.
9975           - UpdateBounds/SetBoundsCore: Moved calling of UpdateDistances() to
9976             SetBoundsCore, we were updating even when we shouldn't. This fixes
9977             swf-anchors mis-anchoring when resizing the app fast and lots.
9978           - UpdateDistances: Now only setting the left and top distance if 
9979             we have a parent and are not suspended, this is based on
9980             a suggestion by Don Edvaldson in bug #77355.
9981           - OnVisibleChanged: Fixed logic when to create the control. We may
9982             not create the control if we have no parent or if it's not visible;
9983             switched to using Visible property instead of is_visible field 
9984             since the property also considers parent states. This fixes a bug
9985             when starting Paint.Net
9986
9987 2006-02-02  Jackson Harper  <jackson@ximian.com>
9988
9989         * Form.cs: If the forms handle hasn't been created yet don't call
9990         into xplatui to make it top most, just set the topmost flag on the
9991         form in CreateParams
9992         * XplatUIX11.cs: Handle WS_EX_TOPMOST.
9993
9994 2006-02-01  Jackson Harper  <jackson@ximian.com>
9995
9996         * ScrollableControl.cs: Refactored the Recalculate method a
9997         little, this wasn't handling all the variants of bottom and right
9998         bars needed to be added and added/removed based on their
9999         counterparts being added/removed (which changes the drawable
10000         size). Also we special case client widths and heights of 0 and
10001         don't add the scrollbar for those.
10002
10003 2006-02-01  Peter Dennis Bartok  <pbartok@novell.com>
10004
10005         * XplatUIX11.cs: 
10006           - Added method to get AbsoluteGeometry(); currently unused, but might
10007             be used in the future, if we try again to figure out toplevel
10008             coordinates with some more crappy window managers
10009           - Added FrameExtents() method to retrieve the WM set decoration size
10010           - Tried to fix up AddConfigureNotify and handling of ReparentNotify 
10011             to deal with at least KDE, FVWM and metacity (Fixes #77092)
10012         * Hwnd.cs: 
10013           - Added whacky_wm tracking var for metacity
10014           - Added logic to have default menu height if the actual menu height
10015             has not yet been calculated (part of fix for #77426)
10016         * Form.cs: Keep track whether client size has been set and re-set 
10017           it if a menu is added/removed afterwards (Fixes #77426)
10018
10019 2006-01-31  Jackson Harper  <jackson@ximian.com>
10020
10021         * Control.cs: When a new Site is set on the component attempt to
10022         pull the AmbientProperties from it.
10023
10024 2006-01-31  Peter Dennis Bartok  <pbartok@novell.com>
10025
10026         * ThemeWin32Classic.cs: Menu background is drawn in ColorMenu, not
10027           in the background of the owning form. Fixes #77332
10028
10029 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10030
10031         * MimeIcon.cs: Fix for #77409
10032
10033 2006-01-31  Alexander Olk  <alex.olk@googlemail.com>
10034
10035         * XplatUIX11GTK.cs: Initial import
10036
10037 2006-01-31  Jordi Mas i Hernandez <jordimash@gmail.com>
10038
10039         * FixedSizeTextBox: fixes class signature
10040
10041 2006-01-30  Jackson Harper  <jackson@ximian.com>
10042
10043         * FixedSizeTextBox.cs: New internal class that represents a
10044         textBox that will not be scaled.
10045         * TreeView.cs:
10046         * ComboBox.cs:
10047         * UpDownBase.cs: Use the new FixedSizeTextBox instead of a
10048         standard TextBox.
10049                 
10050 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com> 
10051
10052         * XplatUIX11.cs: Retrieve default screen number instead of
10053           assuming 0. Attempted fix for #77318
10054
10055 2006-01-30  Peter Dennis Bartok  <pbartok@novell.com>
10056
10057         * XplatUIWin32.cs: 
10058           - GetWindowPos: When a window is parented by FosterParent, use 
10059             the desktop instead of FosterParent as the base to get coordinates
10060           - CreateWindow: Don't make FosterParent the parent window for Popups
10061             if we don't want a taskbar entry, Popups automatically don't get one
10062         * Hwnd.cs: Need to call remove to actually remove the key from the
10063           hash table
10064
10065 2006-01-30  Mike Kestner  <mkestner@novell.com>
10066
10067         * MenuAPI.cs: adjust MainMenu item popup location to y=0.
10068
10069 2006-01-30  Jackson Harper  <jackson@ximian.com>
10070
10071         * TreeView.cs:
10072         * TreeNode.cs: Raise events no matter how the treenode is
10073         checked. Patch by Don Edvalson.
10074
10075 2006-01-30  Jackson Harper  <jackson@ximian.com>
10076
10077         * TreeNode.cs: Signature fix.
10078
10079 2006-01-29  Alexander Olk  <alex.olk@googlemail.com>
10080
10081         * ThemeClearlooks.cs: Fixed a crash in ProgressBar drawing.
10082
10083 2006-01-20  Mike Kestner  <mkestner@novell.com>
10084
10085         * Form.cs: Add ActiveTracker property to do Captures and perform mouse
10086         event forwarding when menus are active.
10087         * MenuAPI.cs: kill the GrabControl hack.  Use Form.ActiveTracker.
10088         Most of the patch is pdb's with a little rework.
10089
10090 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10091
10092         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs: 
10093           Removed GetMenuDC and ReleaseMenuDC methods; replaced
10094           by PaintEventStart(handle, false) and PaintEventEnd(handle, false)
10095         * Form.cs: Changed WM_NCPAINT handler to use PaintEventStart and End
10096         * InternalWindowManager.cs: Added use of PaintEventStart/End to
10097           handling of WM_NCPAINT message, now passing the PaintEventArgs to
10098           the PaintWindowDecorations method
10099         * MainMenu.cs: Switched logic from GetMenuDC to PaintEventStart
10100         * MdiChildContext.cs: Switched logic from GetMenuDC to PaintEventStart
10101         * MenuAPI.cs: Made tracker window invisible
10102         * XplatUIWin32.cs:
10103           - Removed GetMenuDC and ReleaseMenuDC methods
10104           - Implemented the client=false path for PaintEventStart and
10105             PaintEventEnd
10106
10107 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10108
10109         * XplatUIWin32.cs(SetBorderStyle): Fixed3D needs a border
10110         * XplatUIX11.cs(DeriveWindowStyles): Updated to match fixed Form
10111           styles
10112         * Form.cs: 
10113           - MaximizeBox, MinimizeBox: Recreate the handle when setting
10114             the style
10115           - CreateParams: Reworked the styles to match MS look'n'feel,
10116             removed automatic setting of MinimizeBox, MaximizeBox, etc. via
10117             the WS_OVERLAPPEDWINDOW style. This fixes #76823.
10118
10119 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com> 
10120
10121         * XplatUIX11.cs(GetWindowState): Now throwing an exception when the 
10122           window is not mapped, since otherwise every form that's being 
10123           created is considered minimized, which is wrong.
10124         * Form.cs: Catching the exception and returning our internal value
10125           instead
10126
10127 2006-01-26  Peter Dennis Bartok  <pbartok@novell.com>
10128
10129         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added new driver method
10130           SetWindowMinMax() to have means to tell the driver about the minimum,
10131           maximum and maximized state window sizes. (Part of the fix for #76485)
10132         * Form.cs:
10133           - Implemented tracking of minimum and maximum window size, now calling
10134             new SetWindowMinMax() driver method to tell the driver (Part of the
10135             fix for #76485)
10136           - Finished handling of WM_GETMINMAXINFO method, now setting all values
10137             (Completes fix for #76485)
10138           - Calling new SetWindowMinMax driver method when the handle for a 
10139             form is created, to make sure the driver knows about it even if
10140             the values have been set before the window was created
10141           - Now eating the WM_WINDOWPOSCHANGED message if the form is minimized
10142             to avoid messing up our anchoring calculations (partial fix
10143             for #77355)
10144         * XplatUIStructs.cs: Added MINMAXINFO struct (moved from Win32 driver)
10145         * XplatUIX11.cs:
10146           - Added _NET_WM_STATE_HIDDEN property for detecting minimized state
10147           - Improved GetWindowState() to detect 'Minimized' state on Metacity 
10148             (and presumably other freedesktop.org compliant WMs). Left the
10149             assumption unmapped=minimized, needed for SetVisible to work.
10150           - Now setting the window state when creating windows
10151           - Fixed SetVisible to consider/set the window state when mapping
10152             a Form. We cannot set the state before it's mapped, and we cannot
10153             use Form.WindowState once it's mapped (since it would ask the
10154             driver and get 'normal'. Therefore, we grab the state before
10155             mapping, map, and then set state.
10156           - Implmemented SetWindowMinMax method; Metacity does not seem to
10157             honor the ZoomHints, though.
10158         * XplatUIWin32.cs:
10159           - Removed MINMAXINFO (moved to XplatUIStructs)
10160           - Added SetWindowMinMax stub (on Win32 the only way to set that
10161             information is in response to the WM_GETMINMAXINFO message, which
10162             is handled in Form.cs)
10163           - Added logic to SetVisible to set the proper window state when a 
10164             form is made visible (fixes #75720)
10165
10166 2006-01-26  Jackson Harper  <jackson@ximian.com>
10167
10168         * Control.cs (BeginInvoke): Automagically handle EventHandlers the
10169         same way we handle them with Invoke.
10170
10171 2006-01-25  Peter Dennis Bartok  <pbartok@novell.com> 
10172
10173         * Form.cs:
10174           - Added tracking of window state so CreateParams can return
10175             the appropriate style
10176           - Moved setting of WS_CAPTION style in CreateParams to allow
10177             styles without caption
10178         * DataGridTextBoxColumn.cs: We are now also creating the TextBox 
10179           control if the TextBox property is accessed. Fixes #77345
10180         * Control.cs:
10181           - get_Created: now uses is_disposed and is_created to determine
10182             return value (suggested by Jackson)
10183           - CreateHandle: No longer exits if the handle is being recreated
10184           - RecreateHandle: If the handle is not yet created call the 
10185             appropriate method to create either control or handle. If the
10186             control is already created CreateHandle will simply exit instead
10187             of just creating the handle
10188         * Hwnd.cs: Removed expose_pending tracking, no longer needed since we
10189           now SendMessage WM_DESTROY directly to the control when DestroyWindow
10190           is called.
10191         * XplatUIX11.cs: 
10192           - When DestroyWindow is called, instead of waiting for the 
10193             DestroyNotification from X11, we directly post it to the WndProc
10194             and immediately dispose the hwnd object.
10195             Same applies to DestroyChildWindows, and this obsoletes the
10196             expose_pending tracking. Contrary to Win32 behaviour we destroy our
10197             child windows before our own, to avoid X11 errors.
10198           - Removed the direct sending of WM_PAINT on UpdateWindow
10199         * XplatUIWin32.cs:
10200           - Reworked DoEvents and GetMessage to allow access to internal queue
10201             even when trying non-blocking access to the queue.  Fixes #77335. 
10202             Based on a patch suggestion by Don Edvalson. The new private
10203             GetMessage can now also be used as a backend for a PeekMessage
10204             frontend version.
10205         * XplatUI.cs: Improved debug output for CreateWindow
10206
10207 2006-01-25  Jackson Harper  <jackson@ximian.com>
10208
10209         * Help.cs: Allow param to be null. Patch by Don Edvalson.
10210
10211 2006-01-24  Jackson Harper  <jackson@ximian.com>
10212
10213         * ComboBox.cs: Clamp the max value set for the vertical scrollbar
10214         when we have a MaxDropItems lower then the selected index.
10215
10216 2006-01-24  Jackson Harper  <jackson@ximian.com>
10217
10218         * Control.cs: Don't allow selection of non visible controls, allow
10219         selection of controls without parents.
10220
10221 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10222
10223         * ThemeWin32Classic.cs: Fixes Datagrid drawing issues
10224         * DataGridDrawingLogic.cs: Add editing row only when is necessary
10225
10226 2006-01-23  Jackson Harper  <jackson@ximian.com>
10227
10228         * UpDownBase.cs: Make the textbox handle all the selection and
10229         tabbing. This fixes tabing to updown controls.
10230
10231 2006-01-24  Jordi Mas i Hernandez <jordimash@gmail.com>
10232
10233         * TextBoxBase.cs: fixes exception thown the object was null
10234
10235 2006-01-23  Jackson Harper  <jackson@ximian.com>
10236
10237         * ButtonBase.cs: Just use the base CreateParams. They set
10238         visibility and enabled correctly.
10239         * ComboBox.cs:
10240         * TrackBar.cs:
10241         * MonthCalendar.cs: Lets let the base set as much of the
10242         createparams as possible so we don't have duplicate code all over
10243         the place.
10244
10245 2006-01-22  Alexander Olk  <alex.olk@googlemail.com>
10246
10247         * ThemeGtk.cs: Added TrackBar and some experimental code to
10248           get double buffering back
10249
10250 2006-01-21  Jordi Mas i Hernandez <jordimash@gmail.com>
10251
10252         * DataGrid.cs: Allows row number set internally higher than the last
10253         when creating a new row. Restores the editing functionality.
10254
10255 2006-01-20  Mike Kestner  <mkestner@novell.com>
10256
10257         * MimeIcon.cs: delay Image creation until the icons are accessed
10258         instead of creating 190 scaled images on GnomeHandler startup.
10259
10260 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com> 
10261
10262         * TextBoxBase.cs (WndProc): When handling WM_KEYDOWN we need to
10263           first call base before processing the event. Fixes #77279
10264
10265 2006-01-19  Peter Dennis Bartok  <pbartok@novell.com>
10266
10267         * XplatUIWin32.cs, Cursor.cs: Fixed code that wrongly assumed
10268           that the stride for the GDI bitmap would match the stride of
10269           a DIB or a Cursor.
10270
10271 2006-01-19  Alexander Olk  <alex.olk@googlemail.com>
10272
10273         * ThemeGtk.cs: Added ProgressBar, RadioButton, CheckBox
10274
10275 2006-01-19  Jackson Harper  <jackson@ximian.com>
10276
10277         * ComboBox.cs: Hookup the text controls keydown event so we get
10278         those when the text control has the focus.
10279
10280 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10281
10282         * Label.cs: Now using the base events instead of defining new ones;
10283           this allows us to just call the base properties without having to
10284           duplicate all base property logic 
10285
10286 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10287
10288         * Label.cs: A label by default is not a tabstop (Fixes one of our
10289           failing nunit tests)
10290
10291 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com> 
10292
10293         * XplatUIWin32.cs: Fixed wrong DoEvents logic. Fixes #77282
10294         * XplatUIX11.cs: Removed WM_PAINT check from DoEvents. Fixes #77282
10295
10296 2006-01-18  Peter Dennis Bartok  <pbartok@novell.com>
10297
10298         * Cursor.cs: Reimplemented creating cursor bitmaps without using
10299           the Bitmap(Stream) constructor which is semi-broken on MS GDI+.
10300           This fixes #77218
10301         * XplatUIWin32.cs: 
10302           - Reimplemented creating Bitmaps from DIBs since the Bitmap(Stream) 
10303             constructor creates images that can't be saved. Part of the fix
10304             for #76103
10305           - Added handling of CF_BITMAP as CF_DIB to clipboard code (Fixes #76103)
10306           - SetWindowState: Switched ShowWindow flags (part of an upcoming 
10307             bug fix for handling window state in forms properly)
10308
10309 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10310
10311         * ThemeGtk.cs: Simplify ScrollBar drawing
10312
10313 2006-01-18  Jackson Harper  <jackson@ximian.com>
10314
10315         * Splitter.cs: Set the default dock style for the splitter control
10316         in the constructor.
10317
10318 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10319
10320         * ThemeGtk.cs: Corrected StateType and ShadowType for
10321           gtk_paint_box
10322
10323 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10324
10325         * Control.cs: Make use of Theme.DoubleBufferingSupported
10326         * ThemeGtk.cs:
10327           - Added drawing for flat style buttons
10328           - Added ScrollBar drawing
10329
10330 2006-01-18  Alexander Olk  <alex.olk@googlemail.com>
10331
10332         * ThemeClearlooks.cs: Removed some unneeded code.
10333         * ThemeGtk.cs: First part of ThemeGtk enhancements.
10334
10335 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10336
10337         * LinkLabel.cs: We need to update the hover drawing when
10338           leaving the control as well.
10339
10340 2006-01-18  Jordi Mas i Hernandez <jordimash@gmail.com>
10341
10342         * DataGrid.cs: Clicking on non empty areas in the columns
10343            area was giving an exception
10344
10345 2006-01-17  Jackson Harper  <jackson@ximian.com>
10346
10347         * ThemeWin32Classic.cs:
10348         * ListView.cs: Do not draw/clip the headers when the header style
10349         is None.
10350
10351 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10352
10353         * DataGrid.cs: Fixes 77260
10354         
10355 2006-01-17  Jordi Mas i Hernandez <jordimash@gmail.com>
10356
10357         * DataGrid.cs: Clicking on a column on a empty grid was giving
10358           an exception
10359
10360 2006-01-17  Peter Dennis Bartok  <pbartok@novell.com>
10361
10362         * DataGrid.cs (OnKeyDown): Don't use the array if it's empty
10363           or any keypress will crash the grid.
10364
10365 2006-01-17  Mike Kestner  <mkestner@novell.com>
10366
10367         * MainMenu.cs (OnMenuChanged): set Height=0 to cause relayout.
10368         * ThemeWin32Classic.cs (CalcItemSize): clear Height/Width for 
10369         invisible/previously-visible items.
10370         [Fixes #76909]
10371
10372 2006-01-17  Alexander Olk  <alex.olk@googlemail.com>
10373
10374         * ThemeClearlooks.cs:
10375         - Added CL_Draw_Button method; now other theme controls that are 
10376           not derived from button or do not have a button can draw buttons
10377           too
10378         - Updated ComboBox drawing
10379         - Beautified RadioButton drawing
10380         - Corrected drawing of bottom and left tabs
10381         - Beautified DateTimePicker and MonthCalendar
10382         - Added CPDrawButton and CPDrawRadioButton
10383
10384 2006-01-16  Jackson Harper  <jackson@ximian.com>
10385
10386         * ComboBox.cs: Set the initial value of the scrollbar to the
10387         current index. Reduce the numbers of refreshs and IndexOfs called.
10388
10389 2006-01-14  Alexander Olk  <alex.olk@googlemail.com>
10390
10391         * FileDialog.cs: When the file listview is focused hitting the
10392           backspace key moves the fileview to the parent directory
10393
10394 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10395
10396         * Form.cs: 
10397           - Added RecreateHandle call when changing taskbar visibility to 
10398             trigger reparenting in Win32 driver (Fixes #75719)
10399           - If a window has minimize or maximize buttons, it cannot have
10400             a help button
10401         * XplatUIWin32.cs:
10402           - CreateWindow: When no WS_EX_APPWINDOW style is found we parent
10403             the toplevel form with FosterParent (A toolwindow not on the
10404             taskbar) (Fixes #75719)
10405           - Made FosterParent a toolwindow
10406
10407 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10408
10409         * FileDialog.cs: Don't crash if InitialDirectory doesn't exist
10410
10411 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10412
10413         * ToolTip.cs: If SetToolTip is called from a control and the mouse
10414           is currently over that control, make sure that tooltip_window.Text
10415           gets updated
10416
10417 2006-01-13  Mike Kestner  <mkestner@novell.com>
10418
10419         * MimeIcon.cs: size_t on lp64 fix for gdk_pixbuf_save_to_file extern.
10420
10421 2006-01-13  Jackson Harper  <jackson@ximian.com>
10422
10423         * TreeView.cs: On MS GetNodeAt never actually factors in the X
10424         value passed.  Also redraw the selected node when we recieve
10425         focus, so tabbing between trees works correctly.
10426
10427 2006-01-13  Alexander Olk  <alex.olk@googlemail.com>
10428
10429         * MimeIcon.cs: GnomeHandler: older gnome versions don't have
10430           ~/.gconf/%gconf-tree.xml, so use
10431           .gconf/desktop/gnome/interface/%gconf.xml
10432
10433 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10434
10435         * TextControl.cs: Draw text in gray if control is disabled
10436
10437 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com> 
10438
10439         * TreeView.cs: Draw the focus rectangle outside the highlight, to
10440           make sure it's always visible. Fixes #76680.
10441
10442 2006-01-13  Peter Dennis Bartok  <pbartok@novell.com>
10443
10444         * TreeView.cs: Implemented Wheel scrolling. Fixes #76531
10445
10446 2006-01-13  Jonathan Chambers  <jonathan.chambers@ansys.com>
10447
10448         * PageSetupDialog.cs: Added.
10449         * PrintDialog.cs: Attributes.
10450         * PrintPreviewControl.cs: Updates.
10451         * PrintPreviewDialog.cs: Updates.
10452         
10453 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10454
10455         * Control.cs: Undid my selection check fix, since it's not needed
10456         * TextBoxBase.cs:
10457           - Now considering the presence of hscroll/vscroll when sizing
10458             vscroll/hscroll respectively. Fixed bug #77077
10459           - Added Left/Up/Down/Right to IsInputKey list to prevent
10460             ContainerControl from stealing them. This fixes what I broke
10461             with my last checkin.
10462
10463 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com> 
10464
10465         * ScrollableControl.cs: Implemented dockpadding. Fixes #77166. And
10466           I finally understand how the property can be set without a setter :-)
10467
10468 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10469
10470         * Application.cs:
10471           - Switched RunLoop to use static Message.Create to create a 
10472             Message object
10473           - Added PreProcessMessage call in runloop for keyboard events; this
10474             is part of the fix for #77219, I overlooked this originally in the
10475             MSDN doc for PreProcessMessage
10476         * Control.cs:
10477           - Removed call to PreProcessMessage from handling of keyboard 
10478             messages; it's supposed to be done in the message pump
10479           - Moved call to ProcessKeyEventArgs inside ProcessKeyMessage as
10480             per MSDN documentation.
10481           - IsInputChar: All chars are input chars by default; removed the 
10482             parent calling chain, MS does not document that
10483           - PreProcessMessage: If IsInputChar is true, we want to return false
10484             to allow dispatching of the message
10485           - When selecting the next control, now also check that we're not
10486             selecting ourselves again and therefore return a false positive.
10487         * TextBoxBase.cs:
10488           - Tried to match return values for IsInputKey and ProcessDialogKey
10489             to what MS returns; moved processing of our special keys outside
10490             ProcessDialogKey since MS does not seem to return true on those.
10491           - Moved code that previously was in ProcessDialogKey into new private
10492             ProcessKey method, which gets called upon receipt of WM_KEYDOWN
10493           - Reworked handling of WM_CHAR to not have to duplicate code from
10494             Control.cs anymore, instead we simply call down to base.
10495            
10496 2006-01-12  Jackson Harper  <jackson@ximian.com>
10497
10498         * ComboBox.cs: We always need to refresh the text area when
10499         EndUpdate is called. Fixes the combobox in the file dialog.
10500         * Control.cs: Don't create the creator_thread until the controls
10501         handle is created.  Also in InvokeRequired we check if the
10502         creator_thread is null. This gives the effect of InvokeRequired
10503         returning true if the controls handle is not created yet, and
10504         matches MS.
10505
10506 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10507
10508         * XplatUI.cs:
10509           - Added StartLoop() driver method. This is used to allow drivers to
10510             prepare for an upcoming GetMessage/TranslateMessage/DispatchMessage
10511             loop for a particular thread
10512           - Added EndLoop() driver method. This is called once the message
10513             pump for the thread is shut down
10514           - Added SupportsTransparency method to allow the driver to indicate
10515             opacity support for windows
10516         * Form.cs:
10517           - Removed TODO attribute, completed AllowTransparency property
10518           - Added documented logic to Opacity
10519         * GroupBox.cs, Label.cs, LinkLabel.cs, PropertyGrid.cs, Control.cs,
10520           ButtonBase.cs, CheckedListBox.cs: Combined Jackson's and Miguel's
10521           versions of CompatibleTextRendering
10522         * X11Structs.cs: Added opacity atom to our atom enumeration
10523         * Hwnd.cs: Added opacity tracking (we need to track since the opacity
10524           of a form might be set before it's reparented by the WM, and we need
10525           the opacity value without calling up to Form)
10526         * XplatUIDriver.cs: Added StartLoop(), EndLoop() and 
10527           SupportsTransparency() driver methods
10528         * Application.cs: Now calling StartLoop and EndLoop driver methods
10529         * XplatUIX11.cs:
10530           - Added opacity atom registration
10531           - Added StartLoop()/EndLoop() methods. They're empty right now but
10532             will need to get implemented when we switch to a per-thread queue
10533           - Implemented SupportsTransparency() method
10534           - Implemented SetWindowTransparency() method
10535           - Added support for setting the opacity value when a window is
10536             reparented (since the opacity needs to be set on the WM frame)
10537         * XplatUIOSX.cs, XplatUIWin32.cs:
10538           - Added SupportsTransparency(), StartLoop() and EndLoop() methods
10539
10540 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10541
10542         * ThemeClearlooks.cs: Don't crash if TabControl.Parent is null.
10543
10544 2006-01-12  Alexander Olk  <alex.olk@googlemail.com>
10545
10546         * FileDialog.cs: Added ToolTip for MWFFileView
10547         * MimeIcon.cs: Rewrote GnomeHandler.
10548           - Get currently used gnome icon theme from
10549             ($HOME)/.gconf/%gconf-tree.xml
10550           - Make use of inherited icon themes
10551           - Support SVG icon themes like Tango via librsvg
10552
10553 2006-01-12  Miguel de Icaza  <miguel@novell.com>
10554
10555         Revert's Jackson's revert which broke 2.0 builds.   Fix both
10556         builds. 
10557         
10558         * Application.cs: Move the use_compatible_text_rendering outside
10559         the NET_2_0 define.  If we ever need to use the
10560         use_compatible_text_rendering on the individual controls they will
10561         access the variable from the common shared code paths.
10562
10563 2006-01-12  Peter Dennis Bartok  <pbartok@novell.com>
10564
10565         * XplatUI.cs:
10566           - Added more granular debug options
10567           - Added method to print both window text and id
10568           - Switched debug output to use new Window() debug method
10569           - Added IsEnabled() driver method
10570           - Added EnableWindow() driver method
10571         * Form.cs:
10572           - Removed end_modal; no longer needed, new loop handles termination
10573             via 'closing' variable
10574           - If form is modal, setting DialogResult will now initiate loop
10575             termination via 'closing' variable
10576           - Added support for is_enabled/WS_DISABLED to CreateParams
10577           - Close() now just send the WM_CLOSE message; the WM_CLOSE handler
10578             does all the work
10579           - Removed code that's now in RunLoop from ShowDialog()
10580           - Added various documented sanity checks to ShowDialog()
10581           - Added handling of WM_DESTROY message; we set 'closing' on getting
10582             the message to indicate the message pump to terminate
10583           - Added handling of new internal WM_CLOSE_INTERNAL message - it's
10584             send by the Application.ExitThread method. (We send the message
10585             to destroy the window after all other events have been
10586             processed through the queue, instead of destroying the handle 
10587             directly)
10588           - Moved code from Close() method to WM_CLOSE handler; added logic
10589             to only send close-related events if the form is not displayed
10590             modal
10591         * Splitter.cs (..ctor): Fixed typo in resource name
10592         * Control.cs:
10593           - DrawBackgroundImage: Explicitly selecting the wrap mode for the
10594             brush now
10595           - set_Cursor: Now only setting calling into XplatUI if the handle for
10596             the control is already created; this avoids implict handle creation
10597             or crashes if it's not created
10598           - set_Enabled: Now setting the enabled state via the new driver method
10599             instead of just tracking it
10600           - CreateParams: Added logic to set WS_DISABLED based on enabled state
10601           - CreateControl: Reordered event firing and method calls to more
10602             closely fire events in the order MS does. Now setting the
10603             enabled state in the driver when creating the control.
10604           - SetVisibleCore: Moved when the OnVisibleChanged event is fired to
10605             match MS order
10606         * FolderBrowserDialog.cs, MessageBox.cs, ButtonBase.cs, TrackBar.cs,
10607           MonthCalendar.cs: get_CreateParams: Added setting of WS_DISABLED 
10608         * XplatUIStructs.cs: Added internal WM_CLOSE_INTERNAL mesage id
10609         * Hwnd.cs:
10610           - Added tracking of window enabled state (get_Enabled/set_Enabled)
10611           - Added EnabledHwnd property to easily allow a driver to find the
10612             handle of the first enabled window in the parent chain (this is
10613             used by drivers to pass up input events of disabled windows)
10614         * XplatUIDriver.cs: Added IsEnabled() method
10615         * Application.cs:
10616           - Removed crude and obsolete exiting tracking variable
10617           - Removed internal ModalRun(); replaced by RunLoop()
10618           - Implemented private CloseForms() method to allow closing all 
10619             windows owned by a particular (or all) threads
10620           - Exit() now properly closes all windows without forcing the message
10621             pump to quit
10622           - Removed obsolete InternalExit() method
10623           - Changed Run() methods to use new RunLoop() message pump
10624           - Implemented new RunLoop() method for both modal and non-modal forms
10625         * CommonDialog.cs:
10626           - get_CreateParams: Added setting of WS_DISABLED
10627           - Simplified ShowDialog(); now all the work is done in RunLoop(),
10628             invoked via Form.ShowDialog()
10629         * NativeWindow.cs: We don't remove the window from the collection when
10630           the handle is destroyed; there might still be messages for it in the
10631           queue (mainly the resulting WM_DESTROY); instead it will be removed
10632           when Control calls InvalidateHandle in the WM_DESTROY handler
10633         * XplatUIX11.cs:
10634           - CreateWindow: Added logic to handle the WS_DISABLED window style
10635           - EnableWindow: Implemented based on Hwnd.Enabled
10636           - GetMessage: Reset PostQuitState so the method can be called again
10637           - Implemented support for disabled windows (passing messages to the
10638             first enabled parent) in handling all input messages
10639           - Added optimizations for handling Expose events
10640           - Implemeted new driver method IsEnabled()
10641           - Now always resetting paint pending tracking vars when we start paint
10642           - Re-implemented UpdateWindow via just sending a WM_PAINT message
10643         * XplatUIOSX.cs: Added IsEnabled method stub
10644         * XplatUIWin32.cs: Implemented new IsEnabled() method
10645
10646 2006-01-11  Jackson Harper  <jackson@ximian.com>
10647
10648         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10649         LinkLabel.cs, PropertyGrid.cs: Unbreak 1.1 build. Consolidate the
10650         variables a little.
10651         * ColorDialog.cs: Clear out the old form before adding the new
10652         panel.  
10653
10654 2006-01-11  Jackson Harper  <jackson@ximian.com>
10655
10656         * X11Dnd.cs: Make sure to add all the text formats when adding
10657         strings to the data object.
10658         * TreeNodeCollection.cs: When adding to a sorted tree we need to
10659         do some redrawing too.  Also change the UpdateNode to an
10660         UpdateBelow so the newly added node gets painted.
10661         
10662 2006-01-11  Miguel de Icaza  <miguel@novell.com>
10663
10664         * ButtonBase.cs, CheckedListBox.cs, GroupBox.cs, Label.cs,
10665         LinkLabel.cs, PropertyGrid.cs: Implement the
10666         UseCompatibleTextRendering property for 2.x
10667
10668         * Application.cs (SetCompatibleTextRenderingDefault): Add. 
10669
10670 2006-01-11  Jackson Harper  <jackson@ximian.com>
10671
10672         * TreeView.cs: Use the property for setting the selected node so
10673         the correct events get raised.
10674         * TreeNode.cs: Update the tree when the fore/back colours of a
10675         node are set.
10676
10677 2006-01-10  Jackson Harper  <jackson@ximian.com>
10678
10679         * TreeView.cs: Allow setting SelectedNode to null.
10680
10681 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10682
10683         * Form.cs: Fix support for Form TransparencyKey and Opacity on Windows.
10684
10685 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10686
10687         * PrintControllerWithStatusDialog.cs: Update page number in dialog.
10688
10689 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10690
10691         * PrintDialog.cs: Added attributes and set default property values.
10692
10693 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10694
10695         * PrintControllerWithStatusDialog.cs: 
10696         Added PrintControllerWithStatusDialog.
10697
10698 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10699
10700         * XplatUI.cs, Form.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs, 
10701         XplatUIWin32.cs: Added support for Form TransparencyKey and Opacity on Windows.
10702
10703 2006-01-9  Jonathan Chambers  <jonathan.chambers@ansys.com>
10704
10705         * ComboBox.cs: Fix crash when there is no selected item (due to last commit)
10706
10707 2006-01-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
10708
10709         * ComboBox.cs: Added KeyDown event handler for processing arrow keys
10710         and PgUp/PgDown. Also, scroll to selected item upon dropdown. Bugs 76857 and 76788.
10711
10712 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10713
10714         * MimeIcon.cs: Added internal class SVGUtil.
10715
10716 2006-01-08  Alexander Olk  <alex.olk@googlemail.com>
10717
10718         * FileDialog.cs: Don't crash if there are two files with the
10719           same name but different locations.
10720
10721 2006-01-08  John BouAntoun  <jba-mono@optusnet.com.au>
10722
10723         * MonthCalendar.cs: Fixed annoying rendering bug when selecting
10724         dates across multiple month grids. Used to not highlight entire 
10725         month, but does now.
10726         
10727 2006-01-06  Jackson Harper  <jackson@ximian.com>
10728
10729         * MonthCalendar.cs: Removed DoEvents call to prevent a running
10730         message loop. Change timer intervals to numbers that seem more
10731         natural.
10732
10733 2006-01-06  John BouAntoun  <jba-mono@optusnet.com.au>
10734
10735         * DateTimePicker.cs: Modified CalculateDropDownLocation to use the screen
10736           object for location info since screen object is now implemented.
10737
10738 2006-01-05  Jackson Harper  <jackson@ximian.com>
10739
10740         * AsyncMethodData.cs: Check if the call is complete before doing a WaitOne
10741         * AsyncMethodResult.cs: We no longer use a WeakReference for the
10742         AsyncMethodResult, this is because we ALWAYS want the
10743         ManualResetEvent to get set.
10744         * Control.cs: When disposing use an async invoke to call shutdown
10745         code, so that thigns don't block on the finalizer thread.  Also
10746         check if we even have a message loop before trying to send
10747         messages, if we don't then don't bother sending messages.
10748         - No more weak references for async methods
10749         * XplatUIDriver.cs: No more weak references for async methods.
10750
10751 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10752
10753         * FontDialog.cs: Fix, don't throw an exception if FontFamily.Families
10754           returns two FontFamily with the same name
10755
10756 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
10757
10758         * ThemeWin32Classic.cs, ThemeClearlooks.cs: Dropped stupid scheme of 
10759           drawing disabled text. Instead using the ColorGrayText color
10760
10761 2006-01-04  Jackson Harper  <jackson@ximian.com>
10762
10763         * TreeNode.cs: redraw the node when its image index is changed.
10764
10765 2006-01-04  Peter Dennis Bartok  <pbartok@novell.com>
10766
10767         * RichTextBox.cs: Same fix as last, just for SelectionColor. This
10768           time I checked there are no others like it.
10769
10770 2006-01-04  Jackson Harper  <jackson@ximian.com>
10771
10772         * AsyncMethodResult.cs: Use a ManualResetEvent instead of a mutex,
10773         this gives the behavoir I was looking for.
10774         * Control.cs: Special case Invoking EventHandlers, this matches MS
10775         and fixes part of bug #76326.
10776
10777 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10778
10779         * ThemeClearlooks.cs, FileDialog.cs:
10780           - Reflect the latest Theme class changes
10781           - Remove Mono.Unix.Syscall.time in FileDialg and replace it 
10782             with DateTime
10783             
10784 2006-01-04  Alexander Olk  <alex.olk@googlemail.com>
10785
10786         * Theme.cs: Cache UI resource images and resize them if needed
10787
10788 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10789
10790         * RichTextBox.cs: FormatText is 1-based, make it so when SelectionFont
10791           is called. This fixes the crash in Nexxia when setting the font
10792           attributes in the chat. [However, RTF needs a look-over to make sure
10793           that all SelectionXXX methods handle the special case that selection
10794           is empty and therefore the change must be applied to all text starting
10795           at the cursor/selection start]
10796
10797 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com> 
10798
10799         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
10800           XplatUIOSX.cs: Added SendMessage and PostMessage methods
10801         * X11Keyboard.cs: Switched to new way of calling PostMessage
10802
10803 2006-01-03  Peter Dennis Bartok  <pbartok@novell.com>
10804
10805         * Theme.cs: Added theme interface for images to allow the theme to
10806           control what images are used for things like FileDialog, MessageBox
10807           icons, etc.
10808         * MessageBox.cs: Now uses the new Theme icon/image interfaces
10809
10810 2006-01-03  Alexander Olk  <alex.olk@googlemail.com>
10811
10812         * FileDialog.cs:
10813           - Removed some dead code
10814           - Opening a recently used file does work now
10815           - Small UI enhancements
10816           - Refactoring
10817
10818 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10819
10820         * FileDialog.cs: Forgot too add __MonoCS__
10821
10822 2006-01-02  Alexander Olk  <alex.olk@googlemail.com>
10823
10824         * FileDialog.cs: We are able to read recently used files now let's
10825           go on and write them.
10826
10827 2006-01-01  Alexander Olk  <alex.olk@googlemail.com>
10828
10829         * FileDialog.cs: Breathe some life into "last open"/"recently used"
10830           button
10831         * MimeIcon.cs: Do a check for the top level media type also
10832
10833 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10834
10835         * ThemeClearlooks.cs:
10836           - Added CPDrawStringDisabled
10837           - ButtonBase_DrawText: Workaround for a DrawString bug; cut off
10838             some chars if the text doesn't fit into text_rect
10839           - DrawListViewItem: If View = View.LargeIcon center the image;
10840             rewrote the drawing of ListViewItem.Text if View = 
10841             View.LargeIcon
10842
10843 2005-12-31  Alexander Olk  <alex.olk@googlemail.com>
10844
10845         * MimeIcon.cs: Use default KDE icon theme if there is no
10846           "48x48" directory for the current icon theme, fixes #77114
10847         * Mime.cs: Disable not working and actually not used code. 
10848         * ThemeWin32Classic.cs:
10849           - Replace "new SolidBrush" in GetControlBackBrush and
10850             GetControlForeBrush with ResPool.GetSolidBrush
10851           - Changed DrawListViewItem from private to protected virtual
10852         * FileDialog.cs:
10853           - Added form.MaximizeBox = true
10854           - Don't throw an exception if there is a broken symbolic link
10855
10856 2005-12-23  Jackson Harper  <jackson@ximian.com>
10857
10858         * TabControl.cs: Give the panels focus, keyboard navigation is
10859         fixed so this works correctly now.
10860         - We need these key events also.
10861         * ToolBar.cs: Remove some of the poor mans double buffering.
10862         
10863 2005-12-24  Alexander Olk  <alex.olk@googlemail.com>
10864
10865         * ComboBox.cs: The internal TextBox now returns the focus.
10866
10867 2005-12-23  Jackson Harper  <jackson@ximian.com>
10868
10869         * ThemeWin32Classic.cs:  Draw the text for all tab appearances.
10870
10871 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10872
10873         * Control.cs: Removed debug code
10874         * XplatUIX11.cs: Changed DestroyChildWindows to also consider
10875           implicit children
10876
10877 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com> 
10878
10879         * Control.cs: When creating the control, update the Z-order after
10880           all it's children are created, too. (Fixes nexxia not showing
10881           picturebox bug)
10882
10883 2005-12-23  Peter Dennis Bartok  <pbartok@novell.com>
10884
10885         * Control.cs: Do not update the anchoring distances if layout is
10886           suspended, instead do it once layout is resumed
10887
10888 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com> 
10889
10890         * Control.cs: 
10891           - After many hours of debugging, for both Jackson and
10892             myself, it turns out that it helps to set the parent of a control
10893             if you want to actually see it onscreen. In the spirit of that
10894             discovery, we're now setting the parent of the control and
10895             it's children when the control's handle is created. This fix
10896             will make Lutz Roeder's Reflector run happily. 
10897           - now just creating the handle instead of the whole control when
10898             getting a graphics context for the control.
10899
10900 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10901
10902         * ScrollableControl.cs: When calculating the canvas, don't consider
10903           the scrollbar widths. Instead, predict if horizontal scrollbar
10904           will affect canvas when deciding on vertical display and vice versa.
10905
10906 2005-12-22  Peter Dennis Bartok  <pbartok@novell.com>
10907
10908         * RichTextBox.cs: Set default RTF font for documents that don't
10909           have a font table (Fixes #77076)
10910
10911 2005-12-22  Jackson Harper  <jackson@ximian.com>
10912
10913         * TextBoxBase.cs: It's difficult to do, but you can have an empty
10914         clipboard. This prevents a NullRef in that case.
10915         * XplatUIX11.cs: Use CLIPBOARD not PRIMARY for our
10916         clipboard. PRIMARY is for the currently selected text only. (We
10917         should implement PRIMARY at some point.
10918
10919 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10920
10921         * XplatUIWin32.cs: Fixed the TEXTMETRIC structure, we were calling
10922           a Unicode function with a structure that was defined in Ansi way.
10923           This fixes #76942.
10924
10925 2005-12-21  Jackson Harper  <jackson@ximian.com>
10926
10927         * StatusBar.cs: Statusbar handles its fore/back colours on it's
10928         on. Because thats how it rolls. (and this avoids it using ambient
10929         colours).
10930         * ThemeWin32Classic.cs: Use the proper back color for filling.
10931         * Menu.cs: Use the system menu bar color for drawing menu
10932         bars. Using the window back color will bring ambient colours into
10933         the picture.
10934
10935 2005-12-21  Alexander Olk  <alex.olk@googlemail.com>
10936
10937         * ColorDialog.cs: Fixed a memory leak that caused a SIGSEV. A lot of
10938           Bitmaps were created and not disposed.
10939
10940 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10941
10942         * Control.cs (CreateControl): Don't do anything if the control is
10943           already created, otherwise we'd fire the OnCreated event more than
10944           once
10945
10946 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10947
10948         * ComboBox.cs (FindStringCaseInsensitive): Don't search for emtpy strings,
10949           will always match. Instead return -1. Fixes #76464.
10950
10951 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com>
10952
10953         * TextControl.cs (RecalculateLine): Only wrap if the wrap point is
10954           neither the beginning nor the end of the line (Fixes bug #76479)
10955
10956 2005-12-21  Peter Dennis Bartok  <pbartok@novell.com> 
10957
10958         * Control.cs:
10959           - ControlNativeWindow.ControlFromHandle(): Now handling situation
10960             where handle is invalid
10961           - FromHandle(): Now using hashtable-based ControlFromHandle() lookup
10962             instead of slower linear search
10963         * NativeWindow.cs: Don't remove the window from the hashtable until
10964           after the driver has destroyed it (since the driver might use
10965           Control.FromHandle to lookup the control object
10966         * Hwnd.cs: Added DestroyPending property to track if a window is 
10967           already destroyed as far as the driver is concerned and only hasn't
10968           yet notified the control
10969         * XplatUIX11.cs:
10970           - Activate(): Check if the window is still valid before using the 
10971             handle
10972           - Implemented DestroyChildWindow() method to mark child windows as
10973             destroyed when a window is destroyed. This prevents situations 
10974             where we might call an X method based on queued events for a
10975             window that already has been destroyed but we haven't yet pulled
10976             the destroy method from the queue.
10977           - Added a call to the new DestroyChildWindow() method to the drivers
10978             DestroyWindow code. Also now marking the destroyed window itself
10979             as pending
10980
10981 2005-12-20  Jackson Harper  <jackson@ximian.com>
10982
10983         * StatusBar.cs:
10984         * StatusBarPanel.cs: Don't calculate panel sizes on draw
10985         anymore. Just do them when needed, also track the rects of panels
10986         so that we can optimize refreshing more in the future.
10987
10988 2005-12-20  Alexander Olk  <alex.olk@googlemail.com>
10989
10990         * ColorDialog.cs: Fixed focus drawing in small color controls
10991
10992 2005-12-19  Jackson Harper  <jackson@ximian.com>
10993
10994         * InternalWindowManager.cs:
10995         * MdiWindowManager.cs: Cleanup some coordinate system changes so
10996         moving windows works properly.
10997
10998 2005-12-19  Peter Dennis Bartok  <pbartok@novell.com> 
10999
11000         * Control.cs: 
11001           - Removed call to InitLayout() from SetBoundsCore(); doc says
11002             it's only called when a control is added to a container
11003           - Split InitLayout logic, moved to separate UpdateDistances() method
11004             since we need to perform those calculations more often than just
11005             when adding the control to a container. (Needed to fix #77022)
11006           - Now calling UpdateDistances() from UpdateBounds() (fixes #77022)
11007           - Reduced the OnBindingContextChanged events count, don't send them
11008             unless the control is created, we still aren't totally matching
11009             MS, but I can't quite figure out some of their rules
11010
11011 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11012
11013         * ThemeClearlooks.cs: Corrected distance between ProgressBar
11014           stripes
11015
11016 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11017
11018         * ThemeClearlooks.cs:
11019           - Updated ProgressBar drawing
11020           - Corrected drawing of ScrollBars and scroll buttons
11021           - Some temporary fixes for minor pixel artefacts
11022
11023 2005-12-18  Peter Dennis Bartok  <pbartok@novell.com> 
11024
11025         * Control.cs:
11026           - Reworked Controls.Add(), Controls.Remove() and set_Parent() to
11027             cause events to be sent in the same order as MS does.
11028           - Added ChangeParent() method to trigger various OnXXXChanged events
11029             that need to be fired when a parent changes (This is a reworking
11030             of the patch from r54254, with the X11 errors fixed)
11031           - Removed SuspendLayout()/ResumeLayout() calls from Controls.Clear()
11032             since on MS we get OnLayoutChanged events when calling Clear()
11033           - Changed Enabled property to consider parent state as well, if a
11034             parent is not enabled, the control will not be either
11035           - Changed Parent property to simply call Controls.Add() since that
11036             now does all the work required, this way we avoid code duplication
11037           - Threw in a few OnBindingsContextChanged calls to try and match
11038             when MS sends them. We seem to send a few too many, though.
11039           - Added call to CreateControl when adding the control to a parent.
11040             We were never calling CreateControl. Still needs some work, in
11041             some places we treat HandleCreated and ControlCreated as equal, 
11042             which is wrong
11043           - Removed obsolete commented out code from UpdateZOrder()
11044
11045 2005-12-18  Alexander Olk  <alex.olk@googlemail.com>
11046
11047         * ThemeClearlooks.cs: Updated TrackBar drawing.
11048
11049 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11050
11051         * FileDialog.cs: Patch for #76901 by Atsushi Enomoto
11052
11053 2005-12-17  Alexander Olk  <alex.olk@googlemail.com>
11054
11055         * FileDialog.cs: Add the Help button and the open readonly
11056           checkbox only if needed
11057
11058 2005-12-16  Jackson Harper  <jackson@ximian.com>
11059
11060         * Control.cs: Make sure we have an active menu before trying to
11061         process commands on it. Prevents menu-less forms from crashing
11062         when Alt is pressed.
11063         * TreeNodeCollection.cs: Some fixes to prevent null refs. Patch by
11064         Dieter Bremes.
11065         * RichTextBox.cs: Expand statement to help out gmcs and fix the
11066         2.0 build.
11067
11068 2005-12-16  Jackson Harper  <jackson@ximian.com>
11069
11070         * InternalWindowManager.cs: Don't translate tool windows screen
11071         coordinates. This fixes windows 'bouncing' around when being moved.
11072
11073 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11074
11075         * TextBoxBase.cs:
11076           - MaxLength now treats 2^31-1 equal to unlimited length (this is
11077             not quite MS compatible, MS uses that number only for single line
11078             and 2^32-1 for multi-line, but I figure it won't hurt keeping
11079             the limit at 2GB)
11080           - Now enforcing the MaxLength limit when entering characters
11081           - Added argument to internal Paste() method to track if it's called
11082             from programatically or via keyboard, since keyboard driven pastes
11083             need to enforce max-length
11084           - Added logic to Paste to only paste as many chars as MaxLength 
11085             allows
11086         * RichTextBox.cs: Updated to use new obey argument for internal Paste()
11087         * TextControl.cs:
11088           - Added Length property to return number of characters in document
11089           - Added private CharCount property which only tracks actual chars
11090             in the document (no linefeeds) and fires event when CharCount
11091             changes
11092           - Added tracking of character count to all methods that alter it
11093           - Added LengthChanged event to allow applications to subscribe
11094             to any changes to the document
11095
11096 2005-12-15  Peter Dennis Bartok  <pbartok@novell.com> 
11097
11098         * TextBox.cs: 
11099           - Removed local password_char field (moved to TextBoxBase)
11100           - Now setting the document's password var when password is
11101             set
11102         * TextBoxBase.cs:
11103           - Added password_char field (needed here so MultiLine can
11104             access it)
11105           - Added logic to MultiLine property setter to set the document's
11106             variable when password display is allowed
11107           - Removed debug code and made some debug code conditional
11108         * TextControl.cs:
11109           - Added RecalculatePasswordLine() method to handle special password
11110             char only lines
11111           - Added PasswordChar property, also added related tracking vars
11112           - Draw() method now uses local text var for grabbing text to draw,
11113             this var is set to line.text unless we're doing password display,
11114             then it is set to the pre-generated all-password-chars line
11115           - Added calling RecalculatePasswordLine() method for password lines
11116
11117 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11118
11119         * Hwnd.cs: 
11120           - Added Reparented property to allow tracking of Window Manager
11121             reparenting actions (which affect X/Y calculations of toplevel 
11122             windows)
11123           - Made ToString() print window handles in hex
11124         * XplatUIX11.cs:
11125           - AddConfigureNotify(): Now uses reparented state off Hwnd to
11126             determine if X/Y needs offsetting
11127           - AddConfigureNotify(): Fixed offset calculations
11128           - Now adds ReparentNotify messages into the queue
11129           - Now processes ReparentNotify messages and causes a 
11130             WM_WINDOWPOSCHANGED message to be sent upstream if a window
11131             is reparented (as most likely it's X/Y coordinates are changed
11132             due to that)
11133
11134 2005-12-14  Jackson Harper  <jackson@ximian.com>
11135
11136         * XplatUIX11.cs: Tool windows still need to respek focus.
11137
11138 2005-12-14  Peter Dennis Bartok  <pbartok@novell.com> 
11139
11140         * Control.cs: Undid 54254 (causing XConfigure errors) so we can
11141           have a working release
11142
11143 2005-12-13  Jackson Harper  <jackson@ximian.com>
11144
11145         * Form.cs: Update styles after setting the border style regardless
11146         of whether or not the window is using a window manager.
11147
11148 2005-12-13  Jackson Harper  <jackson@ximian.com>
11149
11150         * Form.cs: We now hook into an internal window manager instead of just an
11151         MDI subsystem, this is so we can have properly behaving tool windows.
11152         * MdiClient.cs: Naming change, MdiChildContext is now WindowManager
11153         * InternalWindowManager.cs: New internal class that acts as a
11154         window manager for tool windows and as a base for mdi windows.
11155         * MdiWindowManager.cs: New class that acts as a window manager for
11156         mdi windows.
11157
11158 2005-12-12  Jackson Harper  <jackson@ximian.com>
11159
11160         * Control.cs: Updates so we match behavoir for for implicit
11161         controls. Fixes explosions in MDI.
11162
11163 2005-12-12  Jackson Harper  <jackson@ximian.com>
11164
11165         * Control.cs: Implement Invalidate (Region).
11166
11167 2005-12-12  Peter Dennis Bartok  <pbartok@novell.com> 
11168
11169         * Control.cs: 
11170           - Changed handling of Controls.Add/Controls.Remove to fire (almost) 
11171             the same events as MS does. MS fires events for each property 
11172             except, for unknown reasons, Cursor, when the control is reparented. 
11173             I can't seem to totally match add/remove since MS also fires some 
11174             VisibleChanged events, which makes no sense. Consolidated the
11175             parenting code into a separate method so it can be called from
11176             both Add and Remove. set_Parent no longer needs any special logic
11177             as it calls the parent's add method which implicitly fires
11178             all events
11179           - Removed some obsolete code and debug output
11180           - Enabled state is inherited from parents, if this is enabled
11181
11182 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com> 
11183
11184         * Form.cs: Removed commented out code
11185
11186 2005-12-08  Peter Dennis Bartok  <pbartok@novell.com>
11187
11188         * Control.cs:
11189           - Added internal version of Invoke, with additional argument 
11190             indicating if we're calling it from a Dispose() handler. That
11191             way we can avoid BeginInvoke throwing an exception if we're
11192             calling for an already destroyed window.
11193           - Added a dispose argument to BeginInvokeInternal, and made the
11194             check if a valid window handle chain exists conditional on
11195             it not being a dispose call
11196           - Removed code in DestroyHandle to destroy our children. Since we
11197             now handle the WM_DESTROY message we will catch all our children
11198             being destroyed.
11199           - Now calling OnHandleDestroyed from our new WM_DESTROY handler
11200         * Form.cs:
11201           - Added a field to track the application context of the form.
11202           - No need to set closing variable as response to WM_CLOSE, instead
11203             we destroy the window. We also call PostQuitMessage if the form
11204             has an application context (which makes it the main app form,
11205             which, when closed terminates the app)
11206         * XplatUI.cs:
11207           - Dropped Exit() method, it's naming was confusing
11208           - Added PostQuitMessage() which causes GetMessage to return false
11209             once the message queue is empty
11210         * XplatUIDriver.cs, XplatUIWin32.cs: Dropped Exit(), added 
11211           PostQuitMessage()
11212         * XplatUIOSX.cs: Switched signature for Exit method since Exit() is
11213           no longer a valid XplatUI method, but left it in since it's used
11214           internally. Added empty PostQuitMessage() method.
11215         * MenuAPI.cs: Replaced call to Exit() with call to
11216           PostQuitMessage, even though this is probably no longer needed.
11217         * Hwnd.cs: Added 'pretty' ToString() to support debugging.
11218         * X11Structs.cs: Added pretty XEvent.ToString() to support debugging.
11219         * Application.cs:
11220           - Replaced call to XplatUI.Exit() with PostQuitMessage()
11221           - Removed old debug code that would call XplatUI for exception
11222             display, enabled standard exception handling (Still not enabled
11223             though, until NativeWindow's ExternalExceptionHandler define
11224             is removed
11225         * NativeWindow.cs:
11226           - Added internal method to allow control to update NativeWindow
11227             after a window has been destroyed
11228           - Added handling of already destroyed windows when calling i
11229             DestroyWindow
11230           - Added removal of handle from list on ReleaseHandle
11231         * XplatUIX11.cs:
11232           - Dropped GetMessageResult var and related code
11233           - Added PostQuitState to field to track if PostQuitMessage has been
11234             called
11235           - Dropped Exit() method
11236           - Added PostQuitMessage() method
11237           - GetMessage now will return false if PostQuitState is set and no
11238             more messages are in the queue.
11239           - Expose handler will no longer generate WM_PAINT messages if we are
11240             in PostQuitState since it's very likely any windows have already
11241             been destroyed, and since Hwnd won't get updated until we have
11242             processed the DestroyNotify we'd be causing X errors.
11243         
11244 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11245
11246         * Control.cs(WndProc): Apparently I'm suffering from brain cloud.
11247           Thanks to Mike for pointing out the err of my ways.
11248
11249 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11250
11251         * Control.cs(PreProcessMessage): Moved menu handling back, but
11252           after all other key handling, to match MS (who handles Menu in
11253           DefWndProc)
11254         * Menu.cs (WndProc): Removed my brainfart
11255
11256 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11257
11258         * Control.cs(PreProcessMessage): Removed special menu handling 
11259         * Menu.cs (WndProc): Added handling of WM_SYSKEYUP for menu purposes.
11260
11261 2005-12-07  Mike Kestner  <mkestner@novell.com>
11262
11263         * Control.cs : special case SYSKEYUP so that we can adjust keynav
11264         state according in tracker.
11265         * Menu.cs : promote tracker field to base class and provide a tracker
11266         lookup capability.  Add/Remove shortcuts dynamically if the top menu
11267         has a tracker. Unparent items that are removed from the collection.
11268         * MenuAPI.cs : implement mnemonic, shortcut, and arrow-based keynav.
11269         * Theme*.cs: add always_show_hotkeys field to support configurability
11270         of mnemonic display.  win32 doesn't show mnemonics until Alt is
11271         pressed.
11272
11273 2005-12-07  Jackson Harper  <jackson@ximian.com>
11274
11275         * MdiChildContext.cs: Use Control.ResetCursor.
11276         * Control.cs: ResetCursor needs to set the property so that the
11277         correct XplatUI call gets made.
11278
11279 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11280
11281         * Control.cs: More fixes to make our key events match MS. We
11282           were not setting the modifier state on KeyData, and we were
11283           not generating any events when Alt was pressed with a key
11284           since handling of WM_SYSxxx was missing for the OnKey methods.
11285
11286 2005-12-07  Jackson Harper  <jackson@ximian.com>
11287
11288         * MdiChildContext.cs: reenable the sizing code.
11289         - When the mouse leaves a window reset its cursor.
11290
11291 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11292
11293         * ThemeClearlooks.cs: Reflect latest Hwnd changes
11294
11295 2005-12-07  Peter Dennis Bartok  <pbartok@novell.com>
11296
11297         * Hwnd.cs: Now using the theme 3d bordersize to calculate
11298           widths of Fixed3D borders
11299
11300 2005-12-07  Jackson Harper  <jackson@ximian.com>
11301
11302         * MdiClient.cs: Fix warnings. Earn Mike's love.
11303
11304 2005-12-07  Alexander Olk  <alex.olk@googlemail.com>
11305
11306         * ThemeClearlooks.cs:
11307           - Adjusted mouse over button color
11308           - Added first parts of CheckBox drawing
11309           - Added correct color for selected text background
11310           - Fixed ComboBox drawing
11311           - Added CPDrawBorder3D and CPDrawBorder
11312
11313 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11314
11315         * XplatUIX11.cs: Added call to XBell for AudibleAlert
11316
11317 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com> 
11318
11319         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIWin32.cs,
11320           XplatUIOSX.cs: Added AudibleAlert() method to have a means to
11321           alert users via sound. We could add an enum arg with different
11322           types of alerts in the future
11323
11324 2005-12-06  Peter Dennis Bartok  <pbartok@novell.com>
11325
11326         * Control.cs: Fix behaviour problems pointed out by Mike
11327
11328 2005-12-05  Mike Kestner  <mkestner@novell.com>
11329
11330         * StatusBarPanel.cs: add Invalidate method and hook it into all the
11331         prop setters.  Calls parent.Refresh for now, but could be maybe be
11332         optimized with an internal method on StatusBar at some point.
11333         [Fixes #76513]
11334
11335 2005-12-05  Peter Dennis Bartok  <pbartok@novell.com> 
11336
11337         * RichTextBox.cs: Implemented get_SelectionColor
11338
11339 2005-12-05  Alexander Olk  <alex.olk@googlemail.com>
11340
11341         * ThemeClearlooks.cs:
11342           - Removed dead code
11343           - Draw black button border only if button is Form.AcceptButton
11344           - Draw correct button color for pressed RadioButton if the mouse 
11345             has entered the button
11346           - Updated ProgressBar drawing!
11347           - Updated CPDrawSizeGrip drawing
11348           - Updated StatusBarPanel drawing
11349
11350 2005-12-05  Mike Kestner  <mkestner@novell.com>
11351
11352         * Control.cs (PreProcessMessage): add Keys.Alt based on LParam value.
11353         * X11Keyboard.cs (SendKeyboardInput): formal lParam for alt mod.
11354
11355 2005-12-04  Alexander Olk  <alex.olk@googlemail.com>
11356
11357         * ThemeClearlooks.cs: Initial check-in, activate with
11358           export MONO_THEME=clearlooks
11359         * ThemeEngine.cs: Added ThemeClearlooks
11360
11361 2005-12-03  Mike Kestner  <mkestner@novell.com>
11362
11363         * MenuAPI.cs: deactivate menus prior to calling item.PerformClick.
11364         [Fixes #76897]
11365
11366 2005-12-02  Jackson Harper  <jackson@ximian.com>
11367
11368         * Form.cs: If the child form has no menu the default main menu is
11369         used as the active menu.
11370
11371 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com> 
11372
11373         * ListBox.cs: Check if any items exist before trying to resolve 
11374           coordinates into items
11375
11376 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11377
11378         * ThemeWin32Classic.cs: Hatchbrush on Win32 seems to always use white
11379           as the second color for the background hatch
11380
11381 2005-12-02  Peter Dennis Bartok  <pbartok@novell.com>
11382
11383         * TextBoxBase.cs: Now uses Jackson's new and improved ImplicitScrollbar
11384         * RichTextBox.cs: FormatText position arguments are 1-based, now making
11385           sure that what we pass to FormatText is always 1-based. Fixes #76885
11386
11387 2005-11-29  Miguel de Icaza  <miguel@novell.com>
11388
11389         * NumericUpDown.cs (EndInit): When we are done initializing,
11390         reflect any updates on the UI.
11391
11392 2005-12-02  Jackson Harper  <jackson@ximian.com>
11393
11394         * ImplicitHScrollBar.cs:
11395         * ImplicitVScrollBar.cs: New scrollbars that don't take focus from
11396         their container controls.
11397         * TreeView.cs: Use the new implicit scrollbars.
11398
11399 2005-12-02  Jackson Harper  <jackson@ximian.com>
11400
11401         * TreeView.cs: Make top_node internal so the TreeNodeCollections
11402         can play with it.
11403         * TreeNodeCollection.cs: If we remove the topnode we need to
11404         update topnode to the next node in line.
11405         - When clearing nodes go through the same process as removing
11406         them, so they get depareneted and checked if they are top node.
11407
11408 2005-12-01  Jackson Harper  <jackson@ximian.com>
11409
11410         * TreeView.cs: When imagelists are used the image area is
11411         selectable as well as the text.
11412         - If there are no selected nodes select the first one.
11413         * TreeNodeCollection.cs: Getting the TreeView is mildly expensive,
11414         so don't do it more then we need to.
11415
11416 2005-12-01  Jackson Harper  <jackson@ximian.com>
11417
11418         * ThemeWin32Classic.cs: Reimplement the scroll arrow drawing so
11419         that arrows can be scaled.
11420
11421 2005-12-01  Jackson Harper  <jackson@ximian.com>
11422
11423         * TreeNode.cs : Fixed bugs that caused FullPathTest + Traverse to
11424         fail. Patch by Dieter Bremes
11425
11426 2005-11-30  Jackson Harper  <jackson@ximian.com>
11427
11428         * Form.cs: Property is 2.0 only
11429         * PrintDialog.cs: Signature fix.
11430
11431 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11432
11433         * TextControl.cs: 
11434           - No longer artificially moves text 2 pixels down (now that we have
11435             borders this is no longer needed)
11436           - Added calcs for left, hanging and right indent
11437
11438 2005-11-23  Mike Kestner  <mkestner@novell.com>
11439
11440         * Menu.cs: mark MenuChanged internal, since it's not exposed by MS.
11441
11442 2005-11-30  Jackson Harper  <jackson@ximian.com>
11443
11444         * MdiChildContext.cs: Set the cloned menus forms, as these don't
11445         get cloned as part of CloneMenu ().
11446         * Menu.cs: Make sure the parent of the items get set correctly
11447         when they are added.  And the owners are notified of the changes.
11448         * Form.cs: Create an ActiveMenu property, so that when MDI is used
11449         we can change the menu being displayed/handled by the form without
11450         changing the menu assosciated with the form.
11451         - Don't let Mdi children draw/handle menus.
11452         
11453 2005-11-30  Jackson Harper  <jackson@ximian.com>
11454
11455         * Menu.cs: Switch the MenuChanged method to OnMenuChanged and add
11456         a MenuChanged event. Just to make the API a little more
11457         consistent.
11458         * MainMenu.cs:
11459         * MenuItem.cs: Use the new OnMenuChanged
11460         * MdiChildContext.cs: Handle menu merging.
11461         * Form.cs: Implement MergedMenu.
11462         
11463 2005-11-30  Jackson Harper  <jackson@ximian.com>
11464
11465         * Menu.cs: We were misusing Add. Add goes behind the specified
11466         index according to the docs, and does not replace the specified
11467         index. So I added an Insert method.
11468
11469 2005-11-30  Peter Dennis Bartok  <pbartok@novell.com>
11470
11471         * TextBoxBase.cs:  Implemented Ctrl-Ins (Copy), Shift-Ins (Paste) and
11472           Shift-Del (Cut), apparently Emacs uses these old Win 2.x keys. This
11473           is for Jackson
11474         * RichTextBox.cs: Added calls to base for DnD events
11475
11476 2005-11-28  Peter Dennis Bartok  <pbartok@novell.com>
11477
11478         * TextControl.cs:
11479           - Fixed drag-selection related crash; style fixes
11480           - Implemented undo class
11481             o Implemented method to capture document state for specified
11482               range in document tree
11483             o Implemented method to restore captured document state
11484             o Implemented cursor tracking
11485             o Implemented basic undo stack
11486           - Added undo cursor tracking to methods altering cursor location
11487           - Added undo tracking to selection deletion (still missing
11488             other text-altering hookups)
11489         * RichTextBox.cs:
11490           - Added SelectionLength property
11491           - Implemented CanPaste()
11492           - Implemented Paste()
11493           - Added missing protected methods
11494           - Fixed RTF->Document conversion; now uses font index 0 and color 
11495             index 0 as the default font for the parsed text
11496           - Fixed RTF<->Document font size translation
11497           - Fixed RTF generation, now properly handles cross-tag boundaries
11498             for single line selection
11499           - No longer always appends blank line to generated RTF
11500           - Removed TODOs
11501           - Added missing attributes
11502           - Hooked up undo-related methods
11503         * TextBoxBase.cs:
11504           - Implemented Copy()
11505           - Implemented Paste()
11506           - Implemented Cut()
11507           - Fixed caret mis-behaviour on backspace across line-boundaries
11508
11509 2005-11-29  Jackson Harper  <jackson@ximian.com>
11510
11511         * MdiClient.cs: Add a method for activating mdi children. Very
11512         basic right now. I imagine someday it might need more girth.
11513         * MenuItem.cs: Implement MDI lists. When mdilist is true the mdi
11514         children windows names are added to the menu item.
11515         * ThemeWin32Classic.cs: Draw the arrow if the item is an
11516         mdilist. This happens regardless of whether or not there are any
11517         mdi windows to see in the list, and according to my tests happens
11518         before the items are even added. Also happens if there isn't even
11519         an mdi client to get windows from.
11520
11521 2005-11-29  Alexander Olk  <alex.olk@googlemail.com>
11522
11523         * ThemeWin32Classic.cs: Make DrawFlatStyleRadioButton protected
11524         * ThemeNice.cs: Fix drawing of flatstyle radiobuttons
11525
11526 2005-11-29  Jordi Mas i Hernandez <jordimash@gmail.com>
11527
11528         * DataGridTableStyle.cs:
11529           - Create always the styles for the missing columns even if they are
11530             provided by the user (not default table style)
11531         * DataGrid.cs:
11532           - Fixes bug 76770
11533           - Fixes SetDataBinding (always re-attach source)
11534           - Fixes SetNewDataSource (only clear styles if they are not for 
11535             this source)
11536          -  Expands OnTableStylesCollectionChanged to handle style refresh 
11537             and remove properly
11538
11539 2005-11-29  Jackson Harper  <jackson@ximian.com>
11540
11541         * FileDialog.cs: Implement missing bits, remove some dead
11542         code.
11543         * FontDialog.cs: Implement missing Apply stuff, and ToString. Move
11544         creation of the panel so that the options set on the dialog are
11545         seen when the panel is created.
11546         * TreeView.cs: raise a click when items are clicked.
11547         
11548 2005-11-29  Jackson Harper  <jackson@ximian.com>
11549
11550         * MdiClient.cs: Pass some signature methods through to base.
11551
11552 2005-11-28  Jackson Harper  <jackson@ximian.com>
11553
11554         * ListView.cs: Raise the click event when items are clicked.
11555
11556 2005-11-28  Jackson Harper  <jackson@ximian.com>
11557
11558         * MdiClient.cs: Make this algorithm even more beautiful.  And fix
11559         a nullref.
11560
11561 2005-11-27  Alexander Olk  <alex.olk@googlemail.com>
11562
11563         * ThemeNice.cs: - Removed 1 pixel bitmaps
11564           - Use SmoothingMode.AntiAlias where it makes sense
11565             (ScrollButton arrow for example)
11566           - Enhanced Button focus drawing
11567           - Fixed ComboBox drawing (no artefacts anymore, focus
11568             rectangle is back again, reduced size of ComboButton, etc.)
11569           - Fixed RadioButton focus drawing for Appearence.Button
11570           - Slight ScrollButton redesign
11571           - Some LinearGradientBrush size fixes
11572           - GroupBoxes have now rounded edges
11573           - Fixed StatusBar drawing
11574
11575 2005-11-25  Alexander Olk  <alex.olk@googlemail.com>
11576
11577         * ThemeNice.cs: - Remove dead code
11578           - use correct background colors for menus, etc.
11579           - Fake pixel drawing with 1 pixel bitmaps
11580
11581 2005-11-24  Jackson Harper  <jackson@ximian.com>
11582
11583         * MdiClient.cs: Size the scrollbars when resizing the window.
11584         - Resize the maximized windows when the client is resized
11585         * Form.cs: Make the child context available
11586         
11587 2005-11-23  Jackson Harper  <jackson@ximian.com>
11588
11589         * MdiChildContext.cs: Don't size windows if they are maximized.
11590
11591 2005-11-23  Mike Kestner  <mkestner@novell.com>
11592
11593         * ContextMenu.cs: use MenuTracker.
11594         * Control.cs: remove menu handle usage.
11595         * Form.cs: remove menu handle usage.
11596         * Hwnd.cs: remove menu handle usage.
11597         * MainMenu.cs: Draw method moved here from MenuAPI.DrawMenuBar. Proxy
11598         motion and clicks to the new Tracker handlers.
11599         * Menu.cs: add sizing accessors, SelectedItem prop, kill CreateItems
11600         and handle usage.
11601         * MenuAPI.cs: refactored to combine popup and menubar event handling.
11602         Killed the MENU and MENUITEM data types and associated collections
11603         since we now keep the info on Menu and MenuItem. Expanded TRACKER into
11604         MenuTracker class that exposes the leftovers from the old MenuAPI
11605         static methods. Restructured Capture handling so that only one grab is
11606         done for the entire menu hierarchy instead of handing off grabs to
11607         submenus. Tracker now has an invisible control to Capture when active.
11608         * MenuItem.cs: add sizing accessors, kill Create
11609         and handle usage.
11610         * Theme.cs: remove menu handle and MENU(ITEM) usage.
11611         * ThemeWin32Classic.cs: use Menu/MenuItem sizing props instead of
11612         MENU(ITEM). remove menu handle usage, use Menu directly.
11613         * XplatUIDriver.cs: remove menu handle usage.
11614         * XplatUIOSX.cs: remove menu handle usage.
11615         * XplatUIWin32.cs: remove menu handle usage.
11616         * XplatUIX11.cs: remove menu handle usage.
11617
11618 2005-11-22  Jackson Harper  <jackson@ximian.com>
11619
11620         * Hwnd.cs: Don't compute the menu size for
11621         DefaultClientRectangle.
11622         - Reenable menu sizes being computed for GetClienRectangle.
11623         * Form.cs: Remove comment of trechery
11624         
11625 2005-11-22  Jackson Harper  <jackson@ximian.com>
11626
11627         * Hwnd.cs: The adjustments for the menu bar are made when it is
11628         attached to the form.
11629
11630 2005-11-19  Jackson Harper  <jackson@ximian.com>
11631
11632         * XplatUIX11.cs: Create an HGRN of the invalid area for WM_NCPAINT
11633         (just like on windows).
11634
11635 2005-11-19  Jackson Harper  <jackson@ximian.com>
11636
11637         * MdiChildContext.cs: Handle all the buttons ourselves. We can't
11638         use real buttons anymore because they are in non client area. The
11639         one TODO here is that I need to somehow invalidate a section of
11640         the non client area.
11641
11642 2005-11-18  Jackson Harper  <jackson@ximian.com>
11643
11644         * Control.cs: Put the enum check back in now that MDI doesnt have
11645         to use this to set border styles.
11646         * Form.cs: Only set mdi child windows borders if the handle has
11647         been created.
11648         * MdiChildContext.cs: Don't set the InternalBorderStyle, just pass
11649         this directly on to the driver.
11650         - Get the move start position before adjusting for the titlebar
11651         height, this fixes the windows "skipping" when they are first
11652         moved.
11653
11654 2005-11-18  Jackson Harper  <jackson@ximian.com>
11655
11656         * XplatUIX11.cs: Just compute the mdi borders separately as they
11657         don't totally match up with normal form borders.
11658
11659 2005-11-18  Jackson Harper  <jackson@ximian.com>
11660
11661         * Control.cs: Set WS_ styles for borders, so that the driver does
11662         not have to retrieve the control instance to figure out what kind
11663         of borders it should have.
11664         * Form.cs: Set the WS_EX_MDICHILD flag on mdi children, so the
11665         driver can know its an mdi child easily.
11666         * XplatUIX11.cs: Get the border styles and whether the window is
11667         MDI from the Styles and ExStyles params instead of having to get a
11668         control. This prevents a chicken and egg problem.       
11669
11670 2005-11-18  Jackson Harper  <jackson@ximian.com>
11671
11672         * MdiClient.cs: Fix typo so scrollbars show up correctly.
11673
11674 2005-11-18  Jackson Harper  <jackson@ximian.com>
11675
11676         * MdiClient.cs: Calculate when to add and remove scrollbars
11677         correctly.
11678         * MdiChildContext.cs: Adjust the y position to take the titlebar
11679         into account.
11680         - No height for FormBorderStyle.None
11681
11682 2005-11-18  Jackson Harper  <jackson@ximian.com>
11683
11684         * Control.cs: Allow non enum values to be used for
11685         InternalBorderStyle.  MDI does this to set a special border style.
11686         - New utility methods for converting points to/from client coords
11687         - Add the newly created control to the Controls collection before
11688         updating its style. This way UpdateStyle can walk the control
11689         heirarchy to find the control if needed.
11690         so I don't need to create a new Point object all the time.
11691         * Form.cs: Let MDI windows handle their border styles.
11692         - Set styles on MDI windows so the correct title style is derived.
11693         * MdiChildContext.cs: Move all the painting and window handling
11694         into the non client area.
11695         - Use correct sizing and put correct buttons on frames based on
11696         the FormBorderStyle.
11697         - Notify the mdi client about scrolling
11698         - Need to handle the buttons ourselves now, because they are all
11699         in non client areas and we can't add controls there.
11700         * MdiClient.cs: Halfway to scrolling, this implementation is
11701         somewhat broken though, we need to check to make sure other
11702         windows aren't causing scrolling before removing the bars. Also
11703         the bars need to be drawn on top, maybe I can switch implicit
11704         controls to be on top.
11705         * Hwnd.cs: caption_height and tool_caption_height are now
11706         properties of an hwnd, this way they can be set by the driver
11707         based on the type of window they are.  In X11 the window manager
11708         handles the decorations so caption_height is zero unless its an
11709         MDI window.
11710         - Add 3 pixel borders for MDI windows (0xFFFF).
11711         - Get rid of some code duplication, have DefaultClientRectanle
11712         just call GetClientRectangle.
11713         * XplatUIX11.cs: Pass caption_height and tool_caption_height to
11714         Hwnd now.
11715         - Set border styles differently for mdi windows.
11716         * XplatUIOSX.cs: Pass caption_height and tool_caption_height to
11717         Hwnd now.
11718         
11719 2005-11-15  Mike Kestner  <mkestner@novell.com>
11720
11721         * Menu.cs: when adding an item to the collection, if item is already 
11722         parented, remove it from the parent.
11723
11724 2005-11-13  Alexander Olk  <alex.olk@googlemail.com>
11725
11726         * X11DesktopColors.cs: Added KDE support
11727
11728 2005-11-11  Peter Dennis Bartok  <pbartok@novell.com>
11729
11730         * XplatUIWin32.cs: 
11731           - Clipboard methods now can translate Rtf format
11732           - No longer removes clipboard contents whenever a new format is added
11733             to allow placing multiple formats on the clipboard
11734         * Clipboard.cs: Clipboard now supports getting a IDataObject and
11735           will place all formats contained in it onto the clipboard. Also
11736           now cleans the clipboard before placing a new object onto it
11737         * RichTextBox.cs:
11738           - Implemented set_Rtf
11739           - Implemented set_SelectedRtf
11740           - Created InsertRTFFromStream() method to allow single code base
11741             for all properties and methods that insert RTF into document
11742           - Removed debug output
11743         * TextControl.cs:
11744           - Fixed Delete(int) to fix up line numbers
11745           - Fixed ReplaceSelection to combine start and end line
11746           - Fixed serious DeleteChars bug that would leave the document tree
11747             broken
11748           - Improved DumpTree with several logic checks to detect broken
11749             document trees
11750           - Removed debug lines
11751           - Fixed Caret.WordForward/WordBack moving code, now always also 
11752             updates caret.tag (fixes crash when word-selecting across tag
11753             boundaries via keyboard)
11754           - Added Insert() method for inserting multiline text into documents
11755           - Fixed DeleteChars() calculation errors that would cause a broken
11756             tag chain with multiple tag lines
11757           - DeleteChars() no longer crashes on multi-tag lines if not all tags
11758           - Split() no longer moves caret if split is at caret location
11759           - ReplaceSelection() now updates the cursor and re-displays it
11760           - ReplaceSelection() now uses new Insert() method to avoid code
11761             duplication
11762           - FormatText() can now handle formatting partial lines
11763         * TextBoxBase.cs:
11764           - Append now uses new TextControl.Insert() method (this avoids 
11765             duplicate code)
11766           - Implemented Ctrl-X (Cut) (
11767           - Implemented Ctrl-C (Copy)
11768           - Implemented Ctrl-V (Paste) (Still some bugs related to screen 
11769             regeneration when pasting text; roundtripping Copy&Paste within
11770             edit control still fails due to some calculation bugs in GenerateRTF)
11771           - The Delete key will now remove the current selection if it is visible
11772         * TextBox.cs: Removed debug lines
11773         * XplatUI.cs: Trigger initialization of DataFormats (which requires the
11774           driver to be initialized and can't therefore be done via a static ctor)
11775
11776 2005-11-10  Peter Dennis Bartok  <pbartok@novell.com>
11777
11778         * TextControl.cs: Added backend code for finding char arrays and strings
11779         * TextBoxBase.cs:
11780           - Added mouse wheel scroll support
11781           - Added support for VScroll and HScroll events
11782         * RichTextBox.cs:
11783           - Implemented all seven Find() variants
11784           - Implemented GetCharFromPosition()
11785           - Implemented GetCharIndexFromPosition()
11786           - Implemented GetLineFromIndex()
11787           - Implemented GetPositionFromCharIndex();
11788           - Implemented SaveFile for PlainText and UnicodeText
11789           - Fixed set_Font, now setting a new font applies that font to
11790             the whole document
11791           - Implemented generic Document to RTF converter
11792           - Implemented SaveFile for RichText format (still missing unicode
11793             conversion for non-ansi chars)
11794           - Implemented get_Rtf
11795           - Implemented get_SelectedRtf
11796
11797 2005-11-09  Peter Dennis Bartok  <pbartok@novell.com>
11798
11799         * Control.cs (WndProc): Call HandleClick after having sent OnMouseUp
11800           to allow any captures to be released before triggering OnClick. This
11801           way a click handler may capture the mouse without interference.
11802         * XplatUIX11.cs: Always send mouse messages to grab window if one exists.
11803           This way we send them even though X may not allow a grab (if the window
11804           isn't visible, for example)
11805
11806 2005-11-08  Pedro Martinez Julia <pedromj@gmail.com>
11807
11808         * DataGridViewRowEventArgs.cs: DataGridView implementation
11809         * DataGridViewElement.cs: DataGridView implementation
11810         * DataGridViewComboBoxCell.cs: DataGridView implementation
11811         * DataGridViewDataErrorContexts.cs: DataGridView implementation
11812         * DataGridViewCellErrorTextNeededEventArgs.cs: DataGridView implementation
11813         * DataGridViewColumnHeadersHeightSizeMode.cs: DataGridView implementation
11814         * ImageLayout.cs: DataGridView implementation
11815         * DataGridViewComboBoxColumn.cs: DataGridView implementation
11816         * DataGridViewCellMouseEventHandler.cs: DataGridView implementation
11817         * DataGridViewSelectionMode.cs: DataGridView implementation
11818         * IDataGridViewEditingControl.cs: DataGridView implementation
11819         * DataGridViewSortCompareEventHandler.cs: DataGridView implementation
11820         * DataGridViewCellStyleContentChangedEventHandler.cs: DataGridView implementation
11821         * DataGridViewAutoSizeModeEventHandler.cs: DataGridView implementation
11822         * DataGridViewColumnStateChangedEventHandler.cs: DataGridView implementation
11823         * DataGridViewColumnSortMode.cs: DataGridView implementation
11824         * DataGridView.cs: DataGridView implementation
11825         * DataGridViewRowStateChangedEventHandler.cs: DataGridView implementation
11826         * DataGridViewRowPostPaintEventArgs.cs: DataGridView implementation
11827         * DataGridViewDataErrorEventArgs.cs: DataGridView implementation
11828         * Padding.cs: DataGridView implementation
11829         * DataGridViewCellParsingEventArgs.cs: DataGridView implementation
11830         * DataGridViewCellStateChangedEventHandler.cs: DataGridView implementation
11831         * DataGridViewRowEventHandler.cs: DataGridView implementation
11832         * DataGridViewCellPaintingEventHandler.cs: DataGridView implementation
11833         * DataGridViewCellFormattingEventHandler.cs: DataGridView implementation
11834         * DataGridViewButtonCell.cs: DataGridView implementation
11835         * DataGridViewCellStyleContentChangedEventArgs.cs: DataGridView implementation
11836         * DataGridViewEditMode.cs: DataGridView implementation
11837         * DataGridViewCellValueEventArgs.cs: DataGridView implementation
11838         * DataGridViewRowCancelEventArgs.cs: DataGridView implementation
11839         * DataGridViewRowHeadersWidthSizeMode.cs: DataGridView implementation
11840         * DataGridViewCheckBoxColumn.cs: DataGridView implementation
11841         * DataGridViewCellToolTipTextNeededEventHandler.cs: DataGridView implementation
11842         * DataGridViewAutoSizeColumnsMode.cs: DataGridView implementation
11843         * DataGridViewCellEventHandler.cs: DataGridView implementation
11844         * DataGridViewEditingControlShowingEventHandler.cs: DataGridView implementation
11845         * DataGridViewCellStyleConverter.cs: DataGridView implementation
11846         * DataGridViewSelectedRowCollection.cs: DataGridView implementation
11847         * DataGridViewBindingCompleteEventHandler.cs: DataGridView implementation
11848         * DataGridViewColumnEventArgs.cs: DataGridView implementation
11849         * DataGridViewRowHeightInfoPushedEventHandler.cs: DataGridView implementation
11850         * DataGridViewRowContextMenuStripNeededEventHandler.cs: DataGridView implementation
11851         * QuestionEventArgs.cs: DataGridView implementation
11852         * IDataGridViewEditingCell.cs: DataGridView implementation
11853         * DataGridViewTriState.cs: DataGridView implementation
11854         * DataGridViewColumnDesignTimeVisibleAttribute.cs: DataGridView implementation
11855         * DataGridViewCellStateChangedEventArgs.cs: DataGridView implementation
11856         * DataGridViewColumnCollection.cs: DataGridView implementation
11857         * DataGridViewCellValueEventHandler.cs: DataGridView implementation
11858         * DataGridViewRowDividerDoubleClickEventHandler.cs: DataGridView implementation
11859         * DataGridViewCellFormattingEventArgs.cs: DataGridView implementation
11860         * DataGridViewColumn.cs: DataGridView implementation
11861         * DataGridViewCellBorderStyle.cs: DataGridView implementation
11862         * DataGridViewCellContextMenuStripNeededEventHandler.cs: DataGridView implementation
11863         * DataGridViewCellValidatingEventArgs.cs: DataGridView implementation
11864         * DataGridViewRow.cs: DataGridView implementation
11865         * DataGridViewImageCellLayout.cs: DataGridView implementation
11866         * DataGridViewImageCell.cs: DataGridView implementation
11867         * DataGridViewTopLeftHeaderCell.cs: DataGridView implementation
11868         * DataGridViewCheckBoxCell.cs: DataGridView implementation
11869         * DataGridViewHeaderCell.cs: DataGridView implementation
11870         * DataGridViewCellErrorTextNeededEventHandler.cs: DataGridView implementation
11871         * DataGridViewRowHeightInfoPushedEventArgs.cs: DataGridView implementation
11872         * DataGridViewAutoSizeColumnsModeEventHandler.cs: DataGridView implementation
11873         * DataGridViewTextBoxColumn.cs: DataGridView implementation
11874         * QuestionEventHandler.cs: DataGridView implementation
11875         * DataGridViewCellStyleScopes.cs: DataGridView implementation
11876         * DataGridViewSortCompareEventArgs.cs: DataGridView implementation
11877         * DataGridViewCellContextMenuStripNeededEventArgs.cs: DataGridView implementation
11878         * DataGridViewCell.cs: DataGridView implementation
11879         * DataGridViewCellEventArgs.cs: DataGridView implementation
11880         * DataGridViewClipboardCopyMode.cs: DataGridView implementation
11881         * DataGridViewCellStyle.cs: DataGridView implementation
11882         * DataGridViewColumnHeaderCell.cs: DataGridView implementation
11883         * DataGridViewRowPrePaintEventHandler.cs: DataGridView implementation
11884         * DataGridViewRowCancelEventHandler.cs: DataGridView implementation
11885         * TextFormatFlags.cs: DataGridView implementation
11886         * DataGridViewCellToolTipTextNeededEventArgs.cs: DataGridView implementation
11887         * DataGridViewDataErrorEventHandler.cs: DataGridView implementation
11888         * DataGridViewAdvancedCellBorderStyle.cs: DataGridView implementation
11889         * DataGridViewCellPaintingEventArgs.cs: DataGridView implementation
11890         * DataGridViewButtonColumn.cs: DataGridView implementation
11891         * DataGridViewRowsRemovedEventArgs.cs: DataGridView implementation
11892         * HandledMouseEventArgs.cs: DataGridView implementation
11893         * DataGridViewCellParsingEventHandler.cs: DataGridView implementation
11894         * DataGridViewColumnDividerDoubleClickEventHandler.cs: DataGridView implementation
11895         * DataGridViewCellMouseEventArgs.cs: DataGridView implementation
11896         * DataGridViewAutoSizeRowsMode.cs: DataGridView implementation
11897         * DataGridViewRowCollection.cs: DataGridView implementation
11898         * DataGridViewAdvancedBorderStyle.cs: DataGridView implementation
11899         * DataGridViewCellCancelEventHandler.cs: DataGridView implementation
11900         * DataGridViewHitTestType.cs: DataGridView implementation
11901         * DataGridViewAutoSizeModeEventArgs.cs: DataGridView implementation
11902         * DataGridViewColumnStateChangedEventArgs.cs: DataGridView implementation
11903         * DataGridViewColumnEventHandler.cs: DataGridView implementation
11904         * DataGridViewRowDividerDoubleClickEventArgs.cs: DataGridView implementation
11905         * DataGridViewAutoSizeRowMode.cs: DataGridView implementation
11906         * DataGridViewRowHeightInfoNeededEventArgs.cs: DataGridView implementation
11907         * DataGridViewRowsDeletedEventArgs.cs: DataGridView implementation
11908         * DataGridViewTextBoxEditingControl.cs: DataGridView implementation
11909         * DataGridViewContentAlignment.cs: DataGridView implementation
11910         * DataGridViewRowPostPaintEventHandler.cs: DataGridView implementation
11911         * DataGridViewComboBoxEditingControl.cs: DataGridView implementation
11912         * DataGridViewCellValidatingEventHandler.cs: DataGridView implementation
11913         * DataGridViewSelectedColumnCollection.cs: DataGridView implementation
11914         * DataGridViewPaintParts.cs: DataGridView implementation
11915         * DataGridViewCellCollection.cs: DataGridView implementation
11916         * DataGridViewRowsAddedEventArgs.cs: DataGridView implementation
11917         * DataGridViewImageColumn.cs: DataGridView implementation
11918         * DataGridViewRowsRemovedEventHandler.cs: DataGridView implementation
11919         * DataGridViewElementStates.cs: DataGridView implementation
11920         * DataGridViewRowHeightInfoNeededEventHandler.cs: DataGridView implementation
11921         * DataGridViewColumnDividerDoubleClickEventArgs.cs: DataGridView implementation
11922         * DataGridViewRowPrePaintEventArgs.cs: DataGridView implementation
11923         * DataGridViewRowStateChangedEventArgs.cs: DataGridView implementation
11924         * DataGridViewEditingControlShowingEventArgs.cs: DataGridView implementation
11925         * DataGridViewCellCancelEventArgs.cs: DataGridView implementation
11926         * DataGridViewRowHeaderCell.cs: DataGridView implementation
11927         * DataGridViewBindingCompleteEventArgs.cs: DataGridView implementation
11928         * DataGridViewTextBoxCell.cs: DataGridView implementation
11929         * DataGridViewBand.cs: DataGridView implementation
11930         * DataGridViewAutoSizeColumnModeEventArgs.cs: DataGridView implementation
11931         * DataGridViewHeaderBorderStyle.cs: DataGridView implementation
11932         * DataGridViewRowsAddedEventHandler.cs: DataGridView implementation
11933         * DataGridViewAutoSizeColumnMode.cs: DataGridView implementation
11934         * DataGridViewAutoSizeColumnModeEventHandler.cs: DataGridView implementation
11935         * DataGridViewAutoSizeColumnsModeEventArgs.cs: DataGridView implementation
11936         * DataGridViewRowErrorTextNeededEventHandler.cs: DataGridView implementation
11937         * DataGridViewSelectedCellCollection.cs: DataGridView implementation
11938         * DataGridViewRowContextMenuStripNeededEventArgs.cs: DataGridView implementation
11939         * DataGridViewRowErrorTextNeededEventArgs.cs: DataGridView implementation
11940         * DataGridViewComboBoxDisplayStyle.cs: DataGridView implementation
11941
11942 2005-11-08  Peter Dennis Bartok  <pbartok@novell.com>
11943
11944         * ThemeWin32Classic.cs: 
11945           - Draw the outside focus rectangle around buttons
11946           - Use CPDrawFocusRectangle to draw focus rectangles until Cairo
11947             doesn't use end caps for every dash of a line anymore. This
11948             workaround ignores the forecolor.
11949
11950 2005-11-08  Kornél Pál  <kornelpal@hotmail.com>
11951
11952         * ImageList.cs: Don't use ArgbColor with LayoutKind.Explicit as it isn't
11953           endian safe.
11954
11955 2005-11-07  Jackson Harper  <jackson@ximian.com>
11956
11957         * X11Dnd.cs: Set the X/Y positions on the DragEventArgs correctly.
11958
11959 2005-11-07  Jackson Harper  <jackson@ximian.com>
11960
11961         * ScrollableControl.cs: Calculate the maximum and change vars
11962         (more) correctly so that scrollbars appear as a sensible size.
11963
11964 2005-11-04  Jackson Harper  <jackson@ximian.com>
11965
11966         * TreeNodeCollection.cs: Refresh when nodes are cleared from the
11967         collection.
11968         * TreeView.cs: When the tree is sorted null out the top_node so
11969         that it is recalculated.
11970         - Use dotted lines instead of dashed lines to match MS better.
11971
11972 2005-11-04  Jordi Mas i Hernandez <jordimash@gmail.com>
11973
11974         * ListView.cs: 
11975           - Implements key search for items. Useful when browsing files with FileDialog
11976           - When changing view mode or when clear the items reset scrollbar positions
11977
11978 2005-11-04  Jackson Harper  <jackson@ximian.com>
11979
11980         * CurrencyManager.cs: Implement the MetaDataChanged event, the
11981         Reset method, and the CheckEmpty. CheckEmpty is just a total guess
11982         as to what the method may do as there is no real way of creating a
11983         derived CurrencyManager and calling the method. 
11984
11985 2005-11-03  Jackson Harper  <jackson@ximian.com>
11986
11987         * ThemeWin32Classic.cs: Implement ownerdrawing in the tab control
11988         * TabControl.cs: Add Ownerdrawing bits, add the UpdateTabSelection
11989         method which seems to just be used internally to refresh the tabs.
11990
11991 2005-11-03  Jackson Harper  <jackson@ximian.com>
11992
11993         * TabControl.cs: Implement the remove method. Fix some broken
11994         comments.
11995
11996 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
11997
11998         * DateTimePicker.cs:
11999           - Added missing DateTimePickerAccessibleObject class
12000           - Added missing events
12001           - Added OnFontChanged method
12002         * Form.cs: Added missing attributes
12003         * TreeView.cs: Added missing attributes
12004
12005 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com> 
12006
12007         * GridItemCollection.cs: Fix signatures
12008
12009 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12010
12011         * XplatUI.cs: Updated build rev/date
12012         * ComboBox.cs, DataGridTextBoxColumn.cs Control.cs, 
12013           DataGridTableStyle.cs, DataGrid.cs, DateTimePicker.cs: Signature fixes
12014         * Application.cs: Trigger context-specific ExitThread events
12015
12016 2005-11-03  Jackson Harper  <jackson@ximian.com>
12017
12018         * Menu.cs:
12019         * MainMenu.cs:
12020         * GridTableStylesCollection.cs:
12021         * Timer.cs:
12022         * TabPage.cs:
12023         * HelpProvider.cs:
12024         * StatusBar.cs:
12025         * MonthCalendar.cs: Signature fixes
12026
12027 2005-11-03  Jackson Harper  <jackson@ximian.com>
12028
12029         * TreeNodeCollection.cs: Remove should not be virtual.
12030         * TreeView.cs: Implement the last of the missing methods.
12031
12032 2005-11-03  Jackson Harper  <jackson@ximian.com>
12033
12034         * TreeNodeConverter.cs: Implement to get off my class-status back.
12035
12036 2005-11-03  Jackson Harper  <jackson@ximian.com>
12037
12038         * TreeView.cs: Hookup the bits for drag and drop.
12039         * TreeNode.cs: Don't cache the tree_view or index anymore, now
12040         that nodes can be moved from tree to tree easily this just causes
12041         all sorts of problems.
12042         * TreeNodeCollection: Don't need to give treenodes an index and
12043         treeview anymore when they are added, these are computed on the
12044         fly. Also make sure to remove a node before its added.
12045
12046 2005-11-03  Peter Dennis Bartok  <pbartok@novell.com>
12047
12048         * TextControl.cs:
12049           - Added CaretSelection enum
12050           - Added comparison methods to Marker struct, makes selection code
12051             more readable
12052           - Added SelectionStart and SelectionEnd as 'moveable' location for
12053             the CaretDirection enum and handler
12054           - Added selection_prev variable to track optimized invalidation for
12055             word and line selection
12056           - Added SelectionVisible property (returns true if there is a valid 
12057             selection)
12058           - Switched CaretHasFocus to only display the caret if there is no
12059             visible selection
12060           - Avoiding StringBuilder.ToString to retrieve a single char, instead
12061             using the direct character index; should be much faster
12062           - Added various conditional debug statements
12063           - Fixed invalidation calculation for selection ranges
12064           - Added ExpandSelection() method to support word and line selection
12065           - Switched SetSelectionToCaret to use new Marker compare overloads
12066           - Added central IsWordSeparator() method to determine word 
12067             separators/whitespace and FindWordSeparator() to streamline common
12068             usage of IsWordSeparator()
12069         * TextBoxBase.cs:
12070           - Removed unneeded grabbed variable, it was just mirroring
12071             Control.Capture
12072           - No longer firing OnTextChanged event when Text setter is called,
12073             since the base will fire the event for us
12074           - Added handling of Ctrl-Up/Down selection
12075           - Added handling of Shift-Cursorkey selection
12076           - Added handling for Ctrl-Delete and Ctrl-Backspace to remove
12077             words
12078           - Added handling of Shift and Ctrl-Shift-Home/End selection
12079           - Removed some debug output
12080           - Added handling for single/double/tripple-click to place caret/
12081             select word/select line respectively (Fixes bug #76031)
12082           - Added support for drag expansion of word/line selection
12083         * RichTextBox.cs: Handle GotFocus event to trigger redrawing of
12084           current selection
12085
12086 2005-11-02  Jackson Harper  <jackson@ximian.com>
12087
12088         * X11Dnd.cs: If the drag is going to and from a MWF window just
12089         copy the data instead of sending it out through the X Selection
12090         mechanism.
12091
12092 2005-11-02  Jackson Harper  <jackson@ximian.com>
12093
12094         * X11Dnd.cs:
12095         * XplatUIX11.cs: When in a drag we don't want motion notify
12096         messages to get passed on to the other controls. This prevents
12097         mouse move messages from showing up in the drag source.
12098
12099 2005-11-02  Jackson Harper  <jackson@ximian.com>
12100
12101         * X11Dnd.cs: Remove unneeded call to XAllowEvents.  Make sure that
12102         the correct button is release to end a drag.
12103         * XplatUIX11.cs: Make the button state internal so the drag system
12104         can access it.  Dragging needs to know about all button releases,
12105         not just left button.
12106
12107 2005-11-02  Miguel de Icaza  <miguel@novell.com>
12108
12109         * Form.cs (Icon): If the icon is null, reset the icon to the
12110         default value. 
12111
12112         * Cursor.cs: When writing the AND-mask bitmap do not include the
12113         number of colors, but hardcode those to two (black and white),
12114         fixes the loading of color cursors (Paint Dot Net).
12115
12116         * Form.cs: To debug, allow MONO_MWF_SCALING=disable variable to
12117         turn off autoscaling.
12118
12119         * Cursor.cs: Allow resource type to be 1 or 2 (from ImageMagic).
12120
12121 2005-11-02  Jackson Harper  <jackson@ximian.com>
12122
12123         * X11Dnd.cs: Make sure to send a status message if the pointer
12124         enters a control that can not accept a drop, otherwise the cursor
12125         isn't updated correctly. Also tried to compress the lines of code
12126         a bit.
12127
12128 2005-11-02  Jackson Harper  <jackson@ximian.com>
12129
12130         * X11Dnd.cs: Change cursors based on drag action. Also attempt to
12131         set actions correctly.  This isn't perfect as XDND and win32 have
12132         some differences on how you allow actions. I'll clear this up by
12133         adding a path for drag from MWF to MWF windows.
12134         * XplatUIX11.cs: Hook into the dnd system.
12135
12136 2005-11-02  Jordi Mas i Hernandez <jmas@softcatala.org>
12137
12138         * ListView.cs: Fixes scroll bar visibility. Hide them if they were
12139         previously shown but they are no longer need it. Very obvious when 
12140         browsing files with FileDialog.
12141
12142 2005-11-01  Peter Dennis Bartok  <pbartok@novell.com>
12143
12144         * Control.cs: We always need to call OnPaintBackground. We pretty much
12145           ignore AllPaintingInWmPaint and always do the painting there, whether 
12146           it's set or not, since we always ignore the WM_ERASEBKGND message 
12147           (which we don't generate on X11). This fixes #76616.
12148         * Panel.cs: Removed unneeded background painting. This happens properly
12149           in Control.cs already
12150
12151 2005-10-31  Mike Kestner  <mkestner@novell.com>
12152
12153         * Menu.cs: Add items to collection before setting their index.
12154         * MenuItem.cs : add range checking with ArgumentException like MS.
12155         [Fixes #76510]
12156
12157 2005-10-31  Jackson Harper  <jackson@ximian.com>
12158
12159         * ListBox.cs: Invalidate if the area is visible at all not just
12160         contained in the visible rect. Fixes unselection of semi visible
12161         items.
12162
12163 2005-10-31  Jackson Harper  <jackson@ximian.com>
12164
12165         * Control.cs: Consistently name the dnd methods. Make them
12166         internal so we can override them to match some MS behavoir
12167         internally.
12168         * Win32DnD.cs: Use the new consistent names.
12169
12170 2005-10-31  Jackson Harper  <jackson@ximian.com>
12171
12172         * TreeView.cs: Don't draw the selected node when we lose focus.
12173
12174 2005-10-31  Jackson Harper  <jackson@ximian.com>
12175
12176         * X11Dnd.cs: We still need to reset the state even though a full
12177         reset isn't being done, otherwise status's still get sent all over
12178         the place.
12179
12180 2005-10-31  Jackson Harper  <jackson@ximian.com>
12181
12182         * Control.cs: Make the dnd_aware flag internal so the dnd
12183         subsystem can check it. Catch exceptions thrown in dnd handlers to
12184         match MS behavoir.
12185         * Hwnd.cs: Add a flag for whether or not a window is dnd aware.
12186         * X11Dnd.cs: Handle null data in the converters. Set the XDND
12187         version when sending a XdndEnter. Use the control/hwnd dnd_aware
12188         flags to reduce the number of dnd enters/status's sent.
12189
12190 2005-10-31  Jackson Harper  <jackson@ximian.com>
12191
12192         * X11Dnd.cs: Don't need the sizeof here. Patch by Jordi Mas.
12193
12194 2005-10-31  Jordi Mas i Hernandez <jordi@ximian.com>
12195
12196         * PictureBox.cs: Fixes 76512
12197
12198 2005-10-28  Jackson Harper  <jackson@ximian.com>
12199
12200         * X11Dnd.cs: Early implementation to support winforms being a drag
12201         source for data on X11. Also restructured the converters so they
12202         can go both ways now.
12203         * XplatUIX11.cs: Tie ins to the the Dnd stuff.
12204         
12205 2005-10-27  Peter Dennis Bartok  <pbartok@novell.com>
12206
12207         * XplatUIX11.cs: Fixed FIXME - implemented ASCII encoding for XA_STRING
12208           clipboard requests
12209
12210 2005-10-27  Jackson Harper  <jackson@ximian.com>
12211
12212         * TreeNode.cs: Implement serialization so my DnD examples will work.
12213
12214 2005-10-24  Kornél Pál  <kornelpal@hotmail.com>
12215
12216         * ButtonBase.cs, ListView.cs, NotifyIcon.cs, PictureBox.cs, ToolBar.cs,
12217           TreeView.cs: Don't dispose objects that are not owned.
12218           
12219 2005-10-24  Peter Dennis Bartok  <pbartok@novell.com>
12220
12221         * Cursor.cs: Defaulting the Current cursor to Cursors.Default. We
12222           should retrieve the current cursor and report that, but XplatUI
12223           doesn't (yet) have an interface for that (and I'm not sure I even
12224           can, on X11)
12225         * XplatUIWin32.cs: Fixed override behaviour. The override is temporary,
12226           until any message loop processing is done (and the WM_SETCURSOR
12227           replaces the cursor to the proper one)
12228         * XplatUIX11.cs: 
12229           - Fixed override behaviour, we can't set the cursor globally on X11, 
12230             just for our windows.
12231           - Invalidating the System.Drawing X11 display handle when we are
12232             shutting down
12233         * Control.cs: Fix to make csc happy
12234
12235 2005-10-23  Peter Dennis Bartok  <pbartok@novell.com>
12236
12237         * TextBoxBase.cs: 
12238           - get_Text: Add last line (without trailing newline) to returned
12239             value (Fixes 76212)
12240           - get_TextLength: Count last line in returned length
12241           - ToString: Call Text property instead of duplicating code
12242
12243 2005-10-23  Kornél Pál  <kornelpal@hotmail.com>
12244
12245         * ImageList.cs: Dispose ImageAttributes objects.
12246
12247 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12248
12249         * ImageList.cs: Use attribute constructors with less arguments where
12250           possible.
12251
12252 2005-10-22  Kornél Pál  <kornelpal@hotmail.com>
12253
12254         * ImageList.cs: Added lastKeyIndex field and use in IndexOfKey.
12255           Use typeof instead of strings when assembly is referenced. Added
12256           some more comments.
12257
12258 2005-10-21  Jackson Harper  <jackson@ximian.com>
12259
12260         * ListView.cs: Raise a double click event. Also tried to somewhat
12261         fix when the selectedindexchanged event is raised. Its still
12262         broken though.
12263
12264 2005-10-21  Jackson Harper  <jackson@ximian.com>
12265
12266         * TreeView.cs: New method to invalidate the plus minus area of a
12267         node without invalidating the whole node (maybe this can be used
12268         in some more places).
12269         * TreeNodeCollection.cs: When adding to an empty node we need to
12270         invalidate its plus minus area so the little block shows up.
12271         
12272 2005-10-21  Jackson Harper  <jackson@ximian.com>
12273
12274         * TreeView.cs: Make sure that when we invalidate a node the bounds
12275         are big enough to cover the selected box and the focus
12276         rectangle. Use a different colour for the lines connecting nodes
12277         so they show up with all themes.
12278
12279 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12280
12281         * NativeWindow.cs: Don't call anything that could call into the driver,
12282           we might be on a different thread.
12283
12284 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com> 
12285
12286         * Control.cs(Dispose): Since Dispose might run on a different thread,
12287           make sure that we call methods that could call into the driver via
12288           invoke, to avoid thread issues
12289
12290 2005-10-21  Peter Dennis Bartok  <pbartok@novell.com>
12291
12292         * XplatUI.cs: Removed finalizer
12293         * XplatUIX11.cs: Removed Destructor, was causing crashes due to X11
12294           not allowing to be called on the finalizer thread.
12295
12296 2005-10-21  Kornél Pál  <kornelpal@hotmail.com>
12297
12298         * ImageList.cs:
12299           - Reverted r51889 and r51891.
12300           - Added ImageListItem class that stores unmodified image items and image
12301             properties required to create list images until handle is created.
12302           - Added AddItem and moved image creation logic to AddItemInternal.
12303           - Added CreateHandle method that creates images based on unmodified items.
12304           - Added DestroyHandle that changes state to store unmodified items.
12305           - Add and AddStrip methods no more create handle.
12306           - ReduceColorDepth has no return value.
12307           - Dispose destroys handle.
12308           - Modified other methods to reflect the above changes.
12309           - Implemented key support.
12310           - Added profile 2.0 members and attributes.
12311           - Added private Reset and ShouldSerialize methods that provide the same
12312             behavior as MS.NET but the Visual Studio .NET designer seems to ignore
12313             them as they are private.
12314           - Added some more comments about implementation details.
12315
12316 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12317
12318         * DataGrid.cs: Adds support for vertical scrolling using the mousewheel
12319
12320 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12321
12322         * Binding.cs: No PushData/PullData if there is no binding (fixes crash)
12323
12324 2005-10-21  Jordi Mas i Hernandez <jordi@ximian.com>
12325
12326         * DataGridDrawingLogic.cs: Fixes column hit calcultation
12327         * DataGridColumnStyle.cs: Remove debug message
12328
12329 2005-10-20  Jackson Harper  <jackson@ximian.com>
12330
12331         * TreeView.cs: We can always get input keys regardless of whether
12332         or not editing is enabled. They are used for navigation.
12333
12334 2005-10-20  Jackson Harper  <jackson@ximian.com>
12335
12336         * TreeNode.cs: Use the viewport rect for determining if a node
12337         needs to be moved for visibility. Don't use Begin/End edit. This
12338         calls a full refresh when its done.
12339         * TreeView.cs: New SetBottom works correctly.  Make the viewport
12340         rect property internal so the treenodes can see it. When clicking
12341         on a node we need to ensure that its visible because it might just
12342         be partly visible when clicked.
12343
12344 2005-10-20  Jackson Harper  <jackson@ximian.com>
12345
12346         * TreeNodeCollection.cs: Remove debug code.
12347
12348 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12349
12350         * Datagrid.cs: Implements column sorting in Datagrid
12351         * DataGridColumnStyle.cs: Implements column sorting in Datagrid
12352
12353 2005-10-20  Jackson Harper  <jackson@ximian.com>
12354
12355         * TreeNodeCollection.cs: Remove items properly. Update the correct
12356         area after removing them.
12357
12358 2005-10-20  Jordi Mas i Hernandez <jordi@ximian.com>
12359
12360         * Datagrid.cs: Should not call base.OnPaintBackground
12361
12362 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12363
12364         * XplatUIX11.cs (GetMessage):
12365           - Now properly calculates NC_xBUTTONDOWN coordinates off the whole
12366             window instead of client window
12367           - Now properly calculates NC_xBUTTONUP message coordinates
12368           - ScreenToMenu now properly calculates it's coordinates of whole 
12369             window, since menus are in the whole window, not in the client
12370             window
12371           - Added WholeToScreen coordinate translation method
12372
12373 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com> 
12374
12375         * XplatUIX11.cs (GetMessage): Don't return in situations where we don't
12376           want to return a message, loop back to the beginning of the function
12377           and grab the next real message to process instead.
12378
12379 2005-10-20  Peter Dennis Bartok  <pbartok@novell.com>
12380
12381         * Splitter.cs: Properly set limits if no filler control is used
12382
12383 2005-10-19  Jackson Harper  <jackson@ximian.com>
12384
12385         * ColorDialog.cs: Don't show the help button if it is not enabled
12386         instead of disabling it (this is what MS does). Don't create the
12387         panel until the dialog is run, otherwise the vars (such as
12388         ShowHelp) are not set yet.
12389
12390 2005-10-19  Jackson Harper  <jackson@ximian.com>
12391
12392         * TreeView.cs: Implement Begin/EndEdit more correctly so refreshes
12393         are reduced when adding nodes.
12394         * TreeNode.cs:
12395         * TreeNodeCollection.cs: Use UpdateNode instead of refreshing the
12396         tree.
12397         
12398 2005-10-19  Jackson Harper  <jackson@ximian.com>
12399
12400         * FolderBrowserDialog.cs: End editing our treeview so the window
12401         actually gets refreshed.
12402
12403 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12404
12405         * Control.cs: Fixed logic flip on when to call OnPaintBackground. 
12406           Obsoleted handling of WM_ERASEBKGND, now always draws our background
12407           inside of WM_PAINT
12408
12409 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12410
12411         * MenuAPI.cs: Returns after Hidding window
12412         * XplatUIX11.cs: Added TODO found while debugging menu issues
12413
12414 2005-10-18  Peter Dennis Bartok  <pbartok@novell.com>
12415
12416         * XplatUIX11.cs: Do not re-map the whole window when it's size
12417           becomes non-zero unless it's supposed to be actually visible
12418
12419 2005-10-18  Jackson Harper  <jackson@ximian.com>
12420
12421         * TreeView.cs: We don't need to keep a count anymore.
12422         * TreeNodeCollection.cs: Fix off by one in RemoveAt, Insert can
12423         use the Grow method.
12424
12425 2005-10-18  Jackson Harper  <jackson@ximian.com>
12426
12427         * TreeNodeCollection.cs: Insert is not supported on arrays, so
12428         implement it manually here.
12429
12430 2005-10-18  Jackson Harper  <jackson@ximian.com>
12431
12432         * ImageList.cs: Dont kill the list when the colour depth is
12433         changed, just change the colour depth of all the images.
12434         - Same goes for setting the image size. Just resize them all
12435         instead of killing the list softly.
12436
12437 2005-10-18  Jackson Harper  <jackson@ximian.com>
12438
12439         * Control.cs: Don't invalidate empty rectangles.
12440
12441 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12442
12443         * ListViewItem.cs:
12444           - Adds checked item to the Checked/Item lists (where empty before)
12445           - Do not add items to the Selected lists if they are already present
12446         * ListView.cs:
12447           - Fixes IsFixedSize, SyncRoot, IsReadOnly in many collections
12448           - When deleting items make sure that we delete them for the Selected
12449           and Checked list also.
12450
12451 2005-10-18  Jordi Mas i Hernandez <jordi@ximian.com>
12452
12453         * Label.cs: Dispose objects no longer used
12454         * ThemeWin32Classic.cs: Dispose objects no longer used
12455
12456 2005-10-18  Jackson Harper  <jackson@ximian.com>
12457
12458         * TabControl.cs: Don't refresh the whole control when the tabs are
12459         scrolled, we just need to refresh the tab area.
12460
12461 2005-10-17  Jackson Harper  <jackson@ximian.com>
12462
12463         * XplatUIX11.cs: Compress code a little bit. Only calculate the
12464         after handle when we need it.
12465
12466 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12467
12468         * Control.cs: When the parent size changes, recalculate anchor 
12469           positions. Partial fix for #76462
12470
12471 2005-10-17  Peter Dennis Bartok  <pbartok@novell.com>
12472
12473         * ThemeWin32Classic.cs: Make sure the picturebox has it's background 
12474           drawn. Fixes #76462
12475
12476 2005-10-17  Jackson Harper  <jackson@ximian.com>
12477
12478         * MonthCalendar.cs: Don't create the numeric up down until our
12479         handle is created. Otherwise our handle is created in the
12480         constructor and we don't know if we are a WS_CHILD or WS_POPUP
12481         yet.
12482
12483 2005-10-17  Jackson Harper  <jackson@ximian.com>
12484
12485         * TreeView.cs: Merge in patch by Rafael Teixeira to align strings
12486         correctly.
12487
12488 2005-10-17  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
12489         * TreeNode.cs : small logical fix (was using local var instead of field)
12490         
12491 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12492
12493         * ThemeWin32Classic.cs: Fixes vert/horz scrollbar colours
12494
12495 2005-10-17  Jordi Mas i Hernandez <jordi@ximian.com>
12496
12497         * ThemeWin32Classic.cs: Fixes focus drawing in for non-flat/popup buttons
12498
12499 2005-10-16  Peter Dennis Bartok  <pbartok@novell.com> 
12500
12501         * Control.cs: 
12502           - Re-implemented anchoring code. My first version was really broken.
12503             This fixes bug #76033. Unlike the previous implementation we will
12504             no longer have round errors since all numbers are calculated from
12505             scratch every time. Removed various anchor-related obsolete vars.
12506           - InitLayout no longer causes layout event firing and layout to be 
12507             performed
12508
12509 2005-10-16  Jackson Harper  <jackson@ximian.com>
12510
12511         * Hwnd.cs: Compute invalid area correctly (fixes my last commit
12512         which was broken).
12513
12514 2005-10-16  Jackson Harper  <jackson@ximian.com>
12515
12516         * TabControl.cs: Remove debug code.
12517
12518 2005-10-16  Jackson Harper  <jackson@ximian.com>
12519
12520         * XEventQueue.cs: Increase the default queue size (very simple
12521         apps needed to grow the queue).
12522         * Hwnd.cs: No finalizer so we don't need to suppress
12523         finalization. Compute the invalid area manually so a new rectangle
12524         does not newto be created.
12525         * ScrollableControl.cs: Don't set any params (otherwise visibility
12526         isn't set correctly).
12527         * MdiChildContext.cs: New constructor takes the mdi parent so it
12528         doesn't have to be computed and avoids a crash on windows. Draw
12529         the window icon properly, and allow the text to be seen.
12530         * Form.cs: Use new MdiChildContext constructor. Make sure the
12531         child context isn't null in wndproc.
12532         * TabControl.cs: Don't set focus, this is muddling keyboard
12533         behavoir. Expand the tab rows when a window size increase will
12534         allow extra tabs to be seen. Don't allow tabs smaller than the
12535         width of a window to be scrolled out of view.
12536         * TreeNode.cs:
12537         * TreeView.cs: Use measure string to calculate a nodes width, the
12538         width is cached and only updated when the text or the font is
12539         changed. Don't check for expand/collapse clicks on the first level
12540         nodes if root lines are disabled.
12541         
12542 2005-10-16  Ritvik Mayank  <mritvik@novell.com>
12543
12544         * TextBoxBase.cs: Fixes #76352 (passing tab key in a multiline textbox)
12545
12546 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12547
12548         * DataGridBoolColumn.cs: fixes warning
12549
12550 2005-10-16  Jordi Mas i Hernandez <jordi@ximian.com>
12551
12552         * ControlPaint.cs: Fixes methods Dark, DarkDark, Light, LightLight
12553         to match more to match more precisely the MS Net behavior
12554
12555 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12556
12557         * Hwnd.cs: Added field to track if window is mapped
12558         * XplatUIX11.cs: 
12559           - Unmap windows if they become 0-size, re-map when 
12560             they are >0 again; fixes #76035
12561           - Re-set our error handler after initializing X11Desktop
12562             to override any error handlers Gtk or whatever was called
12563             may have set.
12564
12565 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com> 
12566
12567         * CheckedListBox.cs: Removed unused vars
12568         * ListView.cs: Fixed signatures
12569         * RichTextBox.cs: Removed unused vars
12570         * TextBoxBase.cs: Removed unused vars
12571         * XplatUIWin32.cs: Removed unused vars
12572         * XplatUIX11.cs: Removed unused vars
12573         * XplatUI.cs: Updated version and date to latest published
12574
12575 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12576
12577         * Cursor.cs: Added private .ctor to work around a bug in
12578           resourceset (Thanks to Geoff Norton for the help on this)
12579         * SplitterEventArgs.cs: Made fields accessible so we don't
12580           waste boatloads of objects and can reuse the same one
12581           in Splitter
12582         * XplatUIWin32.cs(DrawReversibleLine): Now also considers
12583           any captions and borders when generating screen coordinates
12584         * Splitter.cs: Reimplemented control, now fully complete, uses
12585           rubberband drawing, supports and obeys all properties, has
12586           proper cursors
12587
12588 2005-10-13  Miguel de Icaza  <miguel@novell.com>
12589
12590         * Form.cs (Form): Setup default values for autoscale and
12591         autoscale_base_size;  Make these instance variables, not static
12592         variables. 
12593
12594         (OnLoad): on the first load, adjust the size of the form.
12595
12596 2005-10-13  Peter Dennis Bartok  <pbartok@novell.com>
12597
12598         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs: Added 
12599           width argument to DrawReversibleRectangle()
12600         * XplatUIWin32.cs, XplatUIX11.cs: 
12601           - Implemented width for DrawReversibleRectangle()
12602           - Added logic to DrawReversibleRectangle that recognizes a zero
12603             width or height and only draws a line in that situation
12604         
12605 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com> 
12606
12607         * XplatUI.cs, XplatUIDriver.cs: Added GetAutoScaleSize()
12608         * XplatUIOSX.cs: Stubbed GetAutoScaleSize() method
12609         * XplatUIWin32.cs, XplatUIX11.cs: Implemented GetAutoScaleSize()
12610           method (it uses our FosterParent window to get a graphics context)
12611
12612 2005-10-12  Peter Dennis Bartok  <pbartok@novell.com>
12613
12614         * XplatUI.cs, XplatUIDriver.cs: Removed EraseWindowBackground 
12615           and SetWindowBackground methods
12616         * Control.cs:
12617           - Setting proper ControlStyles
12618           - We no longer call XplatUI.SetWindowBackground and XplatUI.
12619             EraseWindowBackground, instead we draw the window background
12620             ourselves in PaintControlBackground. This behaviour is
12621             required to match MS, where, when OnPaintBackground is not
12622             called, the background is not drawn.
12623           - Removed unneeded Refresh() in set_Text
12624         * Hwnd.cs: Dropped the ErasePending support. No longer needed
12625         * XplatUIX11.cs:
12626           - Created DeriveStyles method to translate from CreateParams to
12627             FormBorderStyle and TitleStyle, also handles BorderStyle (which
12628             matches FormBorderStyle enum values)
12629           - Consolidated SetHwndStyles and CalculateWindowRect border/title
12630             style calculations into single DeriveStyles method
12631           - Fixed CreateWindow to (finally) use Gravity. This prevents X11
12632             from redrawing the whole window on any resize or expose.
12633           - Fixed CreateWindow usage of SetWindowValuemask. Before not
12634             all styles were applied to our whole/client window appropriately
12635           - Removed EraseWindowBackground() and SetWindowBackground() methods
12636           - Removed handling of WM_ERASEBKGND message from DefWndProc, we
12637             no longer clear/redraw the background through X
12638           - Removed handling of erase_pending bit, we have no use for it (or
12639             so it seems)
12640         * XplatUIOSX.cs:
12641           - Removed generation and handling of WM_ERASEBKGND message
12642           - Removed EraseWindowBackground() and SetWindowBackground() methods
12643           - Removed handling of hwnd.ErasePending flag
12644         * XplatUIWin32.cs:
12645           - Removed EraseWindowBackground() and SetWindowBackground() methods
12646           - We no longer call EraseWindowBackground on PaintEventStart, we 
12647             ignore the fErase flag, erasing is handled in Control in the
12648             background handler
12649         * Button.cs, GroupBox.cs, Label.cs, CheckBox.cs, ProgressBar.cs,
12650           LinkLabel.cs, ListControl.cs, TabPage.cs, UpDownBase.cs,
12651           TextBoxBase.cs, TextBox.cs, ListView.cs, ButtonBase.cs, 
12652           CheckedListBox.cs, MdiClient.cs, Panel.cs, DataGrid.cs, 
12653           DataGridTextBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, 
12654           TabControl.cs, ScrollableControl.cs, ToolBar.cs, PictureBox.cs,
12655           DateTimePicker.cs, StatusBar.cs, MonthCalendar.cs: Setting proper ControlStyles
12656
12657 2005-10-12  Jonathan Chambers <jonathan.chambers@ansys.com>
12658
12659         * PropertyGrids.cs: Get sub properties
12660         * PropertyGridView.cs: Fix drawing code
12661
12662 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12663
12664         * ListBox.cs: Fixes 76383
12665
12666 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12667
12668         * DataGridTextBoxColumn.cs: Sets location and size before attachment
12669         * ThemeWin32Classic.cs: Fixes border drawing and calculations
12670         * DataGridDrawingLogic.cs: Fixes border drawing and calculations
12671
12672
12673 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12674
12675         * ComboBox.cs: Fixes border drawing
12676
12677 2005-10-10  Miguel de Icaza  <miguel@novell.com>
12678
12679         * MimeIcon.cs: Ignore errors if the file can not be read.
12680
12681 2005-10-11  Jordi Mas i Hernandez <jordi@ximian.com>
12682
12683         * Theme.cs, ThemeWin32Classic.cs, ListBox.cs:
12684          - Fixed border calculations
12685          - Fixed horizontal scrolling in single column listboxes
12686          - Fixed drawing issues
12687
12688 2005-10-10  Peter Dennis Bartok  <pbartok@novell.com>
12689
12690         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched from BorderStyle to 
12691           FormBorderStyle enum
12692         * XplatUIX11.cs: Switched BorderStyle to FormBorderStyle, added 
12693           code to determine FormBorderStyles from CreateParams
12694         * Form.cs:
12695           - Fixed bug where we'd set the wrong window styles if we were
12696             not creating an MDI window
12697           - Added call to XplatUI.SetBorderStyle when form borders are set
12698         * Control.cs: Casting BorderStyles to accommodate changed XplatUI APIs
12699         * Hwnd.cs:
12700           - Removed obsolete edge style
12701           - Switched from BorderStyle to FormBorderStyle
12702         
12703 2005-10-10  Jackson Harper  <jackson@ximian.com>
12704
12705         * Form.cs: Use the property to get the window handle instead of
12706         accessing it directly. Prevents a null reference exception.
12707
12708 2005-10-10  Jackson Harper  <jackson@ximian.com>
12709
12710         * TreeView.cs: Don't adjust the rect given to DrawString now that
12711         our libgdiplus draws correctly.
12712
12713 2005-10-08  Jackson Harper  <jackson@ximian.com>
12714
12715         * TreeView.cs: Don't try to find the clicked on node if there are
12716         no nodes in the tree.
12717
12718 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
12719
12720         * RichTextBox.cs:
12721
12722           restore
12723
12724 2005-10-08  Alexander Olk  <alex.olk@googlemail.com>
12725
12726         * ImageListStreamer.cs, TreeView.cs, UpDownBase.cs, RichTextBox.cs,
12727           ColorDialog.cs, TextControl.cs, Panel.cs, MdiChildContext.cs,
12728           ErrorProvider.cs:
12729           Use ResPool for brushes and dispose System.Drawing objects that
12730           are not used anymore.
12731
12732 2005-10-07  Jackson Harper  <jackson@ximian.com>
12733
12734         * MdiChildContext.cs: Use the new borders instead of drawing them
12735         ourselves.
12736
12737 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
12738
12739         * Calling UpdateBounds after changing the window's BorderStyle 
12740         since the style can change the ClientSize
12741
12742 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12743
12744         * Control.cs: Made PaintControlBackground virtual
12745         * Panel.cs: Overriding PaintControlBackground instead of using paint
12746           event; paint event method was interfering with 'real' users of the
12747           event.
12748
12749 2005-10-06  Jordi Mas i Hernandez <jordi@ximian.com>
12750
12751         * ThemeWin32Classic.cs: remove border drawing since it is handled
12752         by the base control class now and was causing double border drawing.
12753
12754 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12755
12756         * Panel.cs: Redraw our background on paint. Not a pretty solution,
12757           but it does seem to match MS behaviour. This fixes bug #75324
12758
12759 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12760
12761         * XplatUIX11.cs: A better DrawReversibleRectangle version, however
12762           somewhat hackish looking
12763
12764 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12765
12766         * TextBoxBase.cs:
12767           - We now accept Enter even if AcceptEnter is false, if the containing
12768             form does not have an AcceptButton configured (fixes bug #76355)
12769           - Calculations are now fixed to no longer use Width/Height, but
12770             ClientSize.Width/Height, since we now support borders (this was
12771             a result of fixing borders and therefore bug #76166)
12772           - We no longer show the horizontal scrollbar if TextBox.WordWrap is 
12773             true (fixes bug #76354)
12774         
12775 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12776
12777         * Control.cs: 
12778           - Defaulting BorderStyle and setting it in XplatUI when our window 
12779             is created
12780           - Added enum check to InternalBorderStyle setter
12781         * XplatUIX11.cs: 
12782           - Added drawing of window borders
12783           - Now properly calculates WM decorations offset for toplevel 
12784             windows (fixes bug #74763)
12785         * XplatUIWin32.cs: 
12786           - Implemented BorderStyles for windows (we're letting win32 draw 
12787             the border for us)
12788           - Fixed the signature for SetWindowLong
12789         * PictureBox.cs, DataGrid.cs, TextBoxBase.cs, ToolBar.cs, Panel.cs,
12790           ListBox.cs, Label.cs: Now uses Control.InternalBorderStyle for 
12791           setting borders
12792         * UpDownBase.cs: Remove drawing of borders, this is handled by
12793           the driver, outside the client area
12794         * ListView.cs: Removed bogus border calculations. The control should
12795           be oblivious to borders, since those are not part of the client
12796           area. 
12797         * X11DesktopColors.cs: Commented out (currently) unneeded variables
12798         * ThemeWin32Classic.cs: Removed border calculations from ListView 
12799           drawing code
12800
12801 2005-10-06  Jackson Harper  <jackson@ximian.com>
12802
12803         * MdiChildContext.cs: Clear out the old virtual position remove
12804         all the unneeded calls to CreateGraphics.
12805
12806 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12807
12808         * TextControl.cs: Use proper color for highlighted text; fixes #76350
12809
12810 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com> 
12811
12812         * Form.cs: 
12813           - Added loading and setting of our new default icon
12814           - Only set icon if window is already created
12815
12816 2005-10-06  Peter Dennis Bartok  <pbartok@novell.com>
12817
12818         * Label.cs:
12819           - Do not explicitly set the foreground and background colors, to
12820             allow inheriting from parents (fixes #76302)
12821           - Use Control's InternalBorderStyle property to deal with borders
12822
12823 2005-10-06  Jackson Harper  <jackson@ximian.com>
12824
12825         * MdiChildContext.cs: Use the new xplatui function to draw a
12826         reversible rect.
12827
12828 2005-10-06  Jackson Harper  <jackson@ximian.com>
12829
12830         * Form.cs: Add the parent before creating the child context cause
12831         we need the parent when setting up the child.
12832
12833 2005-10-06  Jackson Harper  <jackson@ximian.com>
12834
12835         * FolderBrowserDialog.cs: redo the tree population code so a
12836         second thread isn't used. Should be a lot faster and more stable
12837         now.
12838
12839 2005-10-05  Jackson Harper  <jackson@ximian.com>
12840
12841         * TreeView.cs: There are no expand/collapse boxes if the node has
12842         no children.
12843
12844 2005-10-05  Jackson Harper  <jackson@ximian.com>
12845
12846         * X11DesktopColors.cs: Get menu colours for the gtk theme.
12847
12848 2005-10-05  Alexander Olk  <alex.olk@googlemail.com>
12849
12850         * FileDialog.cs: Fix InitialDirectory
12851
12852 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12853
12854         * ComboBox.cs:
12855                 - Fixes changing between styles
12856                 - Fixes simple mode
12857                 - Fixes last item crashing when navigating with keyboard
12858
12859 2005-10-05  Jordi Mas i Hernandez <jordi@ximian.com>
12860
12861         * LinkLabel.cs: Related to 76045. Stops the LinkLabel been drawn as a Label
12862
12863 2005-10-05  Jackson Harper  <jackson@ximian.com>
12864
12865         * TreeView.cs: If updating the root node do a full refresh.
12866         * TreeNode.cs: The root node should be expanded by default. Also
12867         added a utility prop to tell if we are the root node.
12868         * TreeNodeCollection.cs: Only refresh if the node we are being
12869         added to is expanded. Also added a comment on a potential
12870         optimization.
12871         
12872 2005-10-04  Peter Dennis Bartok  <pbartok@novell.com>
12873
12874         * Cursor.cs, Hwnd.cs: Added call to GC.SuppressFinalize() 
12875           in dispose method. Fixes #76330
12876
12877 2005-10-04  Jordi Mas i Hernandez <jordi@ximian.com>
12878
12879         * ListView.cs, ThemeWin32Classic.cs, ListViewItem.cs:
12880
12881                 - Implements vertical and horizontal scrolling using XplatUI
12882                 - Fixes keyboard navagation
12883                 - Fixes EnsureVisible
12884                 - Drawing fixes
12885                 - Handles and draws focus properly
12886
12887
12888 2005-10-04  Kornél Pál  <kornelpal@hotmail.com>
12889
12890         * ImageList.cs: Use upper case initials for internal fields. ImageStream:
12891           Create handle. NET_2_0: Destroy handle when value is null.
12892
12893 2005-10-03  Jackson Harper  <jackson@ximian.com>
12894
12895         * ScrollBar.cs: My last scrollbar patch was broken. This is a
12896         revert and a new patch to prevent the thumb from refreshing so
12897         much.
12898
12899 2005-10-02  Jackson Harper  <jackson@ximian.com>
12900
12901         * ScrollBar.cs: Don't update position if it hasn't actually
12902         changed. This occurs when you hold down the increment/decrement
12903         buttons and the thumb gets to the max/min.
12904
12905 2005-10-01  Jackson Harper  <jackson@ximian.com>
12906
12907         * Form.cs:
12908         * MdiChildContext.cs:
12909         * MdiClient.cs: Implement ActiveMdiChild in Form.
12910
12911 2005-10-01  Jordi Mas i Hernandez <jordi@ximian.com>
12912
12913         * ComboBox.cs: Include ComboBoxEdit flag for the edit item
12914
12915 2005-10-01  Peter Dennis Bartok  <pbartok@novell.com>
12916
12917         * X11DesktopColors.cs: Bow out gracefully if the Gtk libs cannot
12918           be found
12919
12920 2005-09-30  Jackson Harper  <jackson@ximian.com>
12921
12922         * ListBox.cs: Don't do a full refresh unless some data has
12923         actually changed.
12924
12925 2005-09-30  Jackson Harper  <jackson@ximian.com>
12926
12927         * TreeView.cs: Make sure that the checkboxes size is factored in
12928         even when not visible.
12929
12930 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12931
12932         * FileDialog.cs: Fix Jordi's build break
12933
12934 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12935
12936         * FileDialog.cs: 
12937                 - Use standard the Windows colours for the combobox as espected
12938                 - Dispose objects that use resouces when no longer need them
12939
12940 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com> 
12941
12942         * X11DesktopColors.cs: Initial incomplete implementation
12943         * XplatUIX11.cs: Added call to initialize X11DesktopColors
12944
12945 2005-09-30  Peter Dennis Bartok  <pbartok@novell.com>
12946
12947         * Theme.cs: 
12948           - Switched Theme color names to match the names defined in 
12949             System.Drawing.KnownColors. Life's hard enough, no need to make 
12950             it harder.
12951           - Added setters to all theme color properties so themes can set
12952             their color schemes. The setters also propagate the color changes
12953             to System.Drawing.KnownColors via reflection
12954         * ControlPaint.cs,  Label.cs, TextControl.cs, ToolTip.cs, ThemeNice.cs,
12955           ComboBox.cs, MdiChildContext.cs, TextBoxBase.cs, DateTimePicker.cs
12956           DataGridColumnStyle.cs, MonthCalendar.cs, TreeView.cs: Updated to
12957           use the new, more logical theme color names
12958         * XplatUIWin32.cs: Updated the GetSysColorIndex enum to include new
12959           post-NT colors
12960         * ThemeWin32Classic.cs:
12961           - Removed code to set the old classic Windows colors. Instead it
12962             now relies on the colors returned by System.Drawing.KnownColors
12963             which will be either modern static colors (Unix) or colors
12964             read from the user's configuration (Win32)
12965           - Updated to use the new, more logical theme color names
12966           - Switched DataGrid drawing code to use only Theme colors instead of
12967             a mix of System.Drawing.KnownColors and Theme colors
12968           - DrawFrameControl(): Removed code that fills the button area, the
12969             fill would overwrite any previous fill done by a control. This
12970             fixes bug #75338 
12971           - Added DrawReversibleRectangle() stub
12972         * ScrollableControl.cs: Set visible state to false when scrollbars
12973           are removed (pdn fix)
12974         * XplatUI.cs, XplatUIOSX.cs, XplatUIDriver.cs: Added 
12975           DrawReversibleRectangle() method to allow drawing primitive 
12976           'rubber bands'
12977         * XplatUIX11.cs: Implemented DrawReversibleRectangle()
12978
12979 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12980
12981         * ImageList.cs: Add(Icon): Create handle.
12982
12983 2005-09-30  Jordi Mas i Hernandez <jordi@ximian.com>
12984
12985         * ListView.cs:
12986         * ThemeWin32Classic.cs:
12987                 - Fixes detail mode
12988                 - Sets clippings
12989                 - Issues with drawing
12990
12991 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12992
12993         * ImageList.cs: Moved RecreateHandle back to ImageList as event
12994           source has to be the ImageList.
12995
12996 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
12997
12998         * ImageList.cs: Add(Icon): Use Graphics.DrawIcon instead of Icon.ToBitmap.
12999
13000 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13001
13002         * ImageList.cs: ReduceColorDepth: Clean up pointer operations.
13003
13004 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13005
13006         * ImageList.cs: ImageCollection: Removed owner field as it is no more used.
13007
13008 2005-09-29  Jonathan Chambers <jonathan.chambers@ansys.com>
13009         * GridItem.cs: Fixed TODOs
13010         * GridItemCollection.cs: Added ICollection interface
13011
13012 2005-09-30  Kornél Pál  <kornelpal@hotmail.com>
13013
13014         * ImageList.cs: Resize icons when needed.
13015
13016 2005-09-29  Jordi Mas i Hernandez <jordi@ximian.com>
13017
13018         * ListViewItem.cs
13019                 - Fixes GetBounds and returns on screen rects
13020         * ListView.cs:
13021                 - Fixes vertical and horzintal scrolling of items
13022         * ThemeWin32Classic.cs:
13023                 - Fixes drawing
13024                 
13025 2005-09-29  Raja R Harinath  <harinath@gmail.com>
13026
13027         * ImageList.cs (ImageStream) [NET_2_0]: Reflect re-factoring.
13028
13029 2005-09-29  Kornél Pál  <kornelpal@hotmail.com>
13030
13031         * ImageList.cs: Added comments about handle creation. Moved Handle,
13032           HandleCreated and OnRecreateHandle implementations to ImageCollection.
13033           Handle is created in Add methods.
13034
13035 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13036          
13037         * DataGridDrawingLogic.cs: 
13038                 - Takes rows into account on Colum calculations
13039                 - Returns the column when clickig
13040         * DataGrid.cs:
13041                 - Fixes default HitTestInfo values
13042                 - Fixes HitTestInfo.ToString
13043                 - Fixes ResetBackColor          
13044         
13045 2005-09-28  Jackson Harper  <jackson@ximian.com>
13046
13047         * MdiChildContext.cs: Obey rules for fixed sized windows (no
13048         sizing or cursor changes). Also added some temp code to draw the
13049         titlebars text (Makes dev a little easier).
13050
13051 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13052
13053         * ImageList.cs: AddStrip: Throw ArgumentException when Image is not a Bitmap.
13054
13055 2005-09-28  Jordi Mas i Hernandez <jordi@ximian.com>
13056          
13057         * ListBox.cs: Fixes bug 76253
13058
13059 2005-09-28  Kornél Pál  <kornelpal@hotmail.com>
13060
13061         * ImageList.cs: Added comments about the current implementation. Added
13062           ReduceColorDepth, IndexedColorDepths and GetNearestColor to can use
13063           Format32bppArgb to preserve transparency and can use Graphics.FromImage
13064           while using the specified ColorDepth. ReduceColorDepth uses unsafe code
13065           with Bitmap.LockBits for better performance. Revised the whole file to
13066           match MS.NET behaviour and provide better performance. Non-public
13067           interface members are calling public members even when they throw
13068           NotSupportedException for better maintainability. Moved ColorDepth,
13069           ImageSize, ImageStream and TransparentColor implementations to
13070           ImageCollection for better performance as these properties are not used
13071           by ImageList.
13072         * ImageListStreamer.cs: Added a new internal constructor that takes an
13073           ImageList.ImageCollection and serializes Images based on
13074           ImageCollection.ToArray(). Renamed ImageColorDepth to ColorDepth to
13075           match ImageList property name.
13076
13077 2005-09-28  Kazuki Oikawa <kazuki@panicode.com>
13078
13079         * ListBox.cs: Fixes IndexFromPoint for last item
13080
13081 2005-09-27  Jackson Harper  <jackson@ximian.com>
13082
13083         * Form.cs: Set the position of new mdi children correctly.
13084
13085 2005-09-27  Jackson Harper  <jackson@ximian.com>
13086
13087         * MdiClient.cs: New mdi children need to be added to the back of
13088         the controls collection so the zorder is set correctly. Also add a
13089         count of all the child windows that have been created.
13090
13091 2005-09-27  Jackson Harper  <jackson@ximian.com>
13092
13093         * Form.cs (CreateParams): Setup MDI forms correctly.
13094
13095 2005-09-27  Jackson Harper  <jackson@ximian.com>
13096
13097         * MdiChildContext.cs:
13098         * MonthCalendar.cs:
13099         * UpDownBase.cs:
13100         * ListBox.cs:
13101         * ListView.cs:
13102         * TextBoxBase.cs:
13103         * TreeView.cs:
13104         * ScrollableControl.cs:
13105         * ComboBox.cs: Add implicit controls using the new implict control
13106         functionality in ControlCollection. Also try to block multiple
13107         control add in a suspend/resume layout to save some cycles.
13108         
13109 2005-09-27  Jackson Harper  <jackson@ximian.com>
13110
13111         * Control.cs: Add functionality to the controls collection to add
13112         'implicit controls' these are controls that are created by the
13113         containing control but should not be exposed to the user. Such as
13114         scrollbars in the treeview.
13115         * Form.cs: The list var of the ControlsCollection is no longer
13116         available because of the potential of implicit controls getting
13117         ignored by someone accessing the list directly.
13118
13119 2005-09-26  Peter Dennis Bartok  <pbartok@novell.com>
13120
13121         * Control.cs: Fixed SetChildIndex; it no longer causes a child to
13122           loose it's parent. (Fixed bug introduced in r49103 when we added
13123           setting the child parent to null on Remove)
13124
13125 2005-09-26  Gert Driesen  <drieseng@users.sourceforge.net>
13126
13127         * DataGridBoolColumn.cs: Marked CheckState private to fix public API.
13128         * Splitter.cs: Added missing attributes for BorderStyle property.
13129         * TextBoxBase.cs: Marked Calculate* methods internal.
13130         * TextBox.cs: Fixed DefaultValue for PasswordChar property to match
13131         MS.NET.
13132
13133 2005-09-26  Jordi Mas i Hernandez <jordi@ximian.com>
13134          
13135         * ListBox.cs: Fixes navigation to the last item in multicolumn lists
13136
13137 2005-09-25  Jackson Harper  <jackson@ximian.com>
13138
13139         * TreeView.cs: Update the node bounds correctly regardless of
13140         whether the node is visible.
13141
13142 2005-09-25  Jackson Harper  <jackson@ximian.com>
13143
13144         * ImageList.cs: Don't dispose the image after it is added to the
13145         image list. Only reformat images that need to be resized.
13146
13147 2005-09-25  Jackson Harper  <jackson@ximian.com>
13148
13149         * ImageList.cs: Don't set the format when changing the image.
13150
13151 2005-09-25  Jackson Harper  <jackson@ximian.com>
13152
13153         * TreeView.cs: We can't just assume the node has a font. Use the
13154         treeviews font if no node font is available.
13155
13156 2005-09-25  Jackson Harper  <jackson@ximian.com>
13157
13158         * TreeView.cs: Allow the scrollbars to be reset with negative
13159         values.
13160         - Don't add scrollbars to negative sized windows.
13161
13162 2005-09-23  Jackson Harper  <jackson@ximian.com>
13163
13164         * XplatUIX11.cs: Update to use Mono.Posix.Native instead of plain
13165         old Mono.Posix. Also remove some stray code that shouldn't have
13166         been committed.
13167
13168 2005-09-23  Jackson Harper  <jackson@ximian.com>
13169
13170         * TreeView.cs: Attempt at proper sizing of the horizontal
13171         scrollbar. Also don't resize the scrollbars unless they are
13172         visible.
13173
13174 2005-09-23  Jackson Harper  <jackson@ximian.com>
13175
13176         * TreeView.cs: We don't need to expand the invalid area when the
13177         selection changes, as this is all drawn in the node's bounding
13178         box. The area needs to be expanded (previous typo was contracting
13179         it) when the focus rect moves.
13180
13181 2005-09-23  Jackson Harper  <jackson@ximian.com>
13182
13183         * TreeView.cs: Display the selection box under the correct
13184         circumstances. We were rendering white text with no selection box
13185         before.
13186
13187 2005-09-23  Peter Dennis Bartok  <pbartok@novell.com>
13188
13189         * TextControl.cs(Split): Now updates selection start/end if it points 
13190           into a line that's being split. Fixes a FIXME and bug #75258
13191
13192 2005-09-23  Jackson Harper  <jackson@ximian.com>
13193
13194         * Binding.cs:
13195         * ListControl.cs: Don't use the path when retrieving binding
13196         managers from the binding context. My bat sense tells me that the
13197         path is only used on insertion.
13198
13199 2005-09-22  Jackson Harper  <jackson@ximian.com>
13200
13201         * Splitter.cs: Set the cursor an easier way. (Thanks peter).
13202
13203 2005-09-22  Jackson Harper  <jackson@ximian.com>
13204
13205         * Splitter.cs: There are special cursors used for splitting.
13206         * XplatUIX11.cs: The VSplit and HSplit cursors were backwards.
13207
13208 2005-09-22  Jackson Harper  <jackson@ximian.com>
13209
13210         * Splitter.cs: Change the cursor appropriately when the splitter
13211         is moused over, so the user actually knows there is a splitter
13212         there.
13213
13214 2005-09-22 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13215
13216        * Label.cs : Fix ToString method to give same output as MS.NET
13217
13218 2005-09-22  Jackson Harper  <jackson@ximian.com>
13219
13220         * TreeView.cs: Create the scrollbars when the handle is created
13221         and add them right away, just make them invisble. Also account for
13222         the window being shrunk vertically to the point that the vert
13223         scrollbar needs to be added.
13224         - Remove some 0.5 adjustments to get around anti aliasing issues.
13225         
13226 2005-09-22  Jordi Mas i Hernandez <jordi@ximian.com>
13227          
13228         * MainMenu.cs: Fixes default value
13229         * MenuItem.cs: Fixes default value
13230
13231 2005-09-22  Kazuki Oikawa  <kazuki@panicode.com>
13232
13233         * AsyncMethodResult.cs: Fixes Control.Invoke is blocked infinitely.
13234
13235 2005-09-21  Jackson Harper  <jackson@ximian.com>
13236
13237         * Control.cs: Don't try to set the border style on the window if
13238         it hasn't been created. When the window is created the border
13239         style will be used.
13240
13241 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13242
13243         * Control.cs (Update): Don't call XplatUI if we don't have a
13244           window handle yet
13245
13246 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13247
13248         * ContainerControl.cs: Instead of throwing an exception, print
13249           a one-time warning about Validate not being implemented
13250         * XplatUIWin32.cs: Removed debug output
13251
13252 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com> 
13253
13254         * Control.cs: Only set XplatUI background if we expect the windowing
13255           system to handle the background. This stops controls that draw their
13256           own background from flickering
13257
13258         * XplatUIX11.cs: Support custom visuals and colormaps for window 
13259           creation. This allows, amongst other things, using MWF X11 windows 
13260           with OpenGL.
13261
13262 2005-09-21  Peter Dennis Bartok  <pbartok@novell.com>
13263
13264         * OpenFileDialog.cs, ContentsResizedEventArgs.cs, LibSupport.cs, GridItem.cs,
13265           CursorConverter.cs, SplitterEventHandler.cs, PropertyGridTextBox.cs,
13266           GridTablesFactory.cs, MethodInvoker.cs, AccessibleEvents.cs,
13267           SplitterEventArgs.cs, XplatUI.cs, Mime.cs, PropertySort.cs,
13268           TreeViewCancelEventHandler.cs, Form.cs, PropertyGridCommands.cs,
13269           IDataGridEditingService.cs, DateBoldEventHandler.cs, Label.cs,
13270           KeyboardLayouts.cs, TextControl.cs, ProgressBar.cs, ToolTip.cs,
13271           RadioButton.cs, OSFeature.cs, LinkLabel.cs, ColorDialog.cs,
13272           ThemeNice.cs, ErrorIconAlignment.cs, TreeNode.cs, MimeGenerated.cs,
13273           ComboBox.cs, DataGridTextBoxColumn.cs, ArrangeStartingPosition.cs,
13274           GridColumnStylesCollection.cs, 
13275           IDataGridColumnStyleEditingNotificationService.cs,
13276           PropertyGrid.cs, IFeatureSupport.cs, ICommandExecutor.cs,
13277           MdiLayout.cs, GridEntry.cs, ControlBindingsCollection.cs,
13278           GridTableStylesCollection.cs, TreeViewCancelEventArgs.cs, 
13279           TreeNodeCollection.cs, AmbientProperties.cs, 
13280           RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
13281           DataObject.cs, ErrorProvider.cs, Splitter.cs,
13282           DataGridLineStyle.cs, Shortcut.cs, Control.cs,
13283           FontDialog.cs, SecurityIDType.cs, GridItemType.cs,
13284           BindingMemberInfo.cs, DataGridCell.cs, MdiChildContext.cs,
13285           IRootGridEntry.cs, PropertyGridView.cs, DataGridParentRowsLabelStyle.cs,
13286           FolderBrowserDialog.cs, OpacityConverter.cs, HelpProvider.cs,
13287           IComponentEditorPageSite.cs, DataGridTableStyle.cs, NavigateEventArgs.cs,
13288           NotifyIcon.cs, ContentsResizedEventHandler.cs, MenuItem.cs,
13289           PropertyTabChangedEventHandler.cs, TextBoxBase.cs, OpenTreeNodeEnumerator.cs,
13290           SelectionMode.cs, TextBox.cs, ListBindingConverter.cs,
13291           FileDialog.cs, KeysConverter.cs, DomainUpDown.cs,
13292           DataFormats.cs, SaveFileDialog.cs, GridItemCollection.cs,
13293           ArrangeDirection.cs, FeatureSupport.cs, SelectionRangeConverter.cs,
13294           RichTextBoxScrollBars.cs, NodeLabelEditEventHandler.cs, TreeNodeConverter.cs,
13295           MimeIcon.cs, X11Structs.cs, PropertyGridEntry.cs,
13296           ImageList.cs, ThemeWin32Classic.cs, X11Keyboard.cs,
13297           CheckedListBox.cs, HelpNavigator.cs, DateTimePickerFormat.cs,
13298           MdiClient.cs, DataGridDrawingLogic.cs, DataGridBoolColumn.cs,
13299           NodeLabelEditEventArgs.cs, Screen.cs, PropertyManager.cs,
13300           ComponentModel.cs, PropertiesTab.cs, CurrencyManager.cs,
13301           SizeGrip.cs, DateBoldEventArgs.cs, X11Dnd.cs, Panel.cs,
13302           Hwnd.cs, OSXStructs.cs, DrawMode.cs, XplatUIDriver.cs,
13303           RichTextBox.cs, PropertyTabChangedEventArgs.cs, CommonDialog.cs,
13304           DataGrid.cs, XplatUIX11.cs, RichTextBoxStreamType.cs, Win32DnD.cs,
13305           ErrorBlinkStyle.cs, TreeViewEventHandler.cs,
13306           PropertyValueChangedEventHandler.cs, IFileReaderService.cs,
13307           DataGridTextBox.cs, SelectedGridItemChangedEventArgs.cs, ScrollBar.cs,
13308           ListBox.cs, TreeViewAction.cs, Help.cs, TrackBar.cs,
13309           AxHost.cs, PropertyValueChangedEventArgs.cs, XplatUIOSX.cs,
13310           RichTextBoxFinds.cs, UpDownEventArgs.cs, Cursors.cs,
13311           CategoryGridEntry.cs, RichTextBoxWordPunctuations.cs, DataGridColumnStyle.cs,
13312           SelectedGridItemChangedEventHandler.cs, DateTimePicker.cs, NavigateEventHandler.cs,
13313           Clipboard.cs, UpDownEventHandler.cs, MonthCalendar.cs,
13314           SendKeys.cs, DataGridPreferredColumnWidthTypeConverter.cs, TreeView.cs,
13315           ThreadExceptionDialog.cs, ImageListConverter.cs, XplatUIWin32.cs,
13316           TreeViewEventArgs.cs: Fixed whitespace and set eol-style:native attribute
13317
13318 2005-09-21  Jackson Harper  <jackson@ximian.com>
13319
13320         * TreeNode.cs: Call Before/After Expand not Collapse when
13321         expanding.
13322
13323 2005-09-20  Jackson Harper  <jackson@ximian.com>
13324         
13325         * XplatUIX11.cs: Use the more hand looking hand (in most themes).
13326
13327 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13328          
13329         * ListViewItem.cs:
13330                 - Fixes bug 76120
13331                 - Fixes proper storing of subitems
13332                 - Fixes not updated items
13333
13334 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com>
13335
13336         * Control.cs, TextBoxBase.cs, TextControl.cs: Don't do certain
13337           things if our window handle isn't created yet. Also disabled 
13338           debug for TextBoxBase
13339
13340 2005-09-20  Peter Dennis Bartok  <pbartok@novell.com> 
13341
13342         * MenuAPI.cs: Remove filtering of events to allow menu usage
13343
13344 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13345
13346         * Cursor.cs: Allow null to be passed to Cursor.Current.
13347
13348 2005-09-20  Alexander Olk  <alex.olk@googlemail.com>
13349
13350         * ThemeWin32Classic.cs:
13351           - Change some private methods/fields to protected virtual so that 
13352             they can be accessed and overriden in derived classes
13353           - First refactoring of some methods. Derived themes now don't 
13354             need to duplicate the complete code from ThemeWin32Classic
13355         * ThemeNice.cs:
13356           - Added nice StatusBar
13357           - Derive from ThemeWin32Classic and not Theme
13358           - Removed duplicate ThemeWin32Classic code
13359
13360 2005-09-20  Miguel de Icaza  <miguel@novell.com>
13361
13362         * Control.cs (ControlCollection.Add): If the value null is passed
13363         the control is ignored. 
13364
13365         Optimize this loop.
13366
13367 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com> 
13368
13369         * MenuAPI.cs: Replaced Application.Run() with a loop that tracks
13370           PostQuitMessage state.
13371         * XplatUIWin32.cs: Removed bogus PostQuitMessage P/Invoke with HWND arg
13372
13373 2005-09-19  Peter Dennis Bartok  <pbartok@novell.com>
13374
13375         * Application.cs: Our constructor will never get called, move 
13376           initialization to fields; fixes bug #75933
13377
13378 2005-09-19 Hisham Mardam Bey <hisham.mardambey@gmail.com>
13379
13380         * FileDialog.cs :
13381                 - Allow files to be selected properly using file name
13382                 combo box.
13383                 - Add ability to change diretory (absolute / relative)
13384                 using file name combo box.
13385
13386 2005-09-16  Jordi Mas i Hernandez <jordi@ximian.com>
13387          
13388         * ListBox.cs: 
13389                 - Fixes Multicolumn listboxes item wrong calculations
13390                 - Allows to click when only one item is in the listbox
13391                 - Fixes crash when no items using keyboard navigation
13392
13393 2005-09-16  Alexander Olk  <alex.olk@googlemail.com>
13394
13395         * ComboBox.cs: Reverted almost everything from the latest patch which
13396           broke ComboBox
13397
13398 2005-09-16  Kazuki Oikawa <kazuki@panicode.com>
13399         
13400         * ToolTip.cs:
13401                 - Fixed #Mtd2 of ToolTipTest.RemoveToolTipTest.
13402         * ComboBox.cs:
13403                 - When DropDownStyle is Simple, it does not show scrollbar 
13404                 to the last item of the list.
13405                 - When DropDownStyle is Simple, it crashed when the list was 
13406                 scrolled down with the down cursor key.
13407                 - Fixed a bug that when DropDownStyle is DropDownList, the 
13408                 selected item was not shown.
13409                 - The position of the selected item was not preserved when 
13410                 the next dropdown happened.
13411         * ThemeWin32Classic.cs:
13412                 - Items were wrapped at the right end.
13413         * CheckedListBox.cs:
13414                 - Fixed Add method
13415         * ListBox.cs:
13416                 - Items should be fully shown.
13417                 - When resizing and vertical scrollbar disappeared, the item 
13418                 of index 0 should be on the top of the list.
13419                 - GetItemRectangle should consider the size of ver. scrollbar
13420         * StatusBar.cs:
13421                 - SizingGrip area should not be allocated when it is not 
13422                 displayed.
13423                 - Now it reflects MinWidth of the containing panel and 
13424                 fixed a crash that happens when its width becomes so small.
13425
13426 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13427
13428         * CheckedListBox.cs: Fixes bug 76028
13429         * ListBox.cs: Fixes bug 76028
13430
13431 2005-09-13  Jordi Mas i Hernandez <jordi@ximian.com>
13432
13433         * ThemeWin32Classic.cs: Sets clipping on DataGridPaintRowsHeaders
13434         * DataGridDrawingLogic.cs: fixes issues with Datagrid drawing
13435
13436 2005-09-12  Jordi Mas i Hernandez <jordi@ximian.com>
13437
13438         * XplatUIX11.cs: fixes System.NullReferenceException in some situations
13439
13440 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13441
13442         * IRootGridEntry.cs: Changed namespace to PropertyGridInternal 
13443
13444 2005-09-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
13445
13446         * IRootGridEntry.cs: Added
13447         * PropertyGridCommands.cs: Added
13448         * PropertiesTab.cs: Added missing methods and property
13449         * PropertyGridView.cs: Made class internal
13450         * PropertyGridTextBox.cs: Made class internal
13451
13452 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13453
13454         * MimeIcon.cs: Try to check some other environment variables
13455           if "DESKTOP_SESSION" returns "default"
13456
13457 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13458
13459         * ThemeNice.cs: Corrected background colors (e.g. menus)
13460         * ColorDialog.cs: Use correct background colors for controls
13461
13462 2005-09-09  Alexander Olk  <alex.olk@googlemail.com>
13463
13464         * ThemeNice.cs: Merged r49535 from ThemeWin32Classic
13465
13466 2005-09-08  Peter Dennis Bartok  <pbartok@novell.com>
13467
13468         * RichTextBox.cs: Added initial implementation
13469         * lang.cs: Removed. Was accidentally checked in long time ago
13470         * TODO: Removed. Contents were obsolete
13471
13472 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13473                                                                                 
13474         * PropertiesTab.cs : Added
13475
13476 2005-09-06  Jonathan Chambers  <jonathan.chambers@ansys.com>
13477                                                                                 
13478         * PropertyGrid.cs : Update
13479         * PropertyGridView.cs : Update
13480         * System.Windows.Forms.resx : Added images and strings
13481
13482 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com> 
13483
13484         * ThemeNice.cs: Do not dispose Pens retrieved from ResPool
13485  
13486 2005-09-06  Peter Dennis Bartok  <pbartok@novell.com>
13487
13488         * XplatUIX11.cs: Force a flush after Ungrab; if case the app enters
13489           a busy loop right after the Ungrab the X11 display is otherwise 
13490           blocked
13491
13492 2005-09-06  Jordi Mas i Hernandez <jordi@ximian.com>
13493
13494         * ThemeWin32Classic.cs: Optimise the use of clipping
13495
13496 2005-09-05  Jordi Mas i Hernandez <jordi@ximian.com>
13497
13498         * DataGrid.cs: fixes recursion bug
13499
13500 2005-09-03  Alexander Olk  <alex.olk@googlemail.com>
13501
13502         * ThemeNice.cs: 
13503           - Draw RadioButton and CheckBox Buttons with DrawButtonBase
13504           - Cleanup
13505
13506 2005-09-02  Alexander Olk  <alex.olk@googlemail.com>
13507
13508         * ThemeNice.cs: Draw nice ProgressBars
13509
13510 2005-09-01  Miguel de Icaza  <miguel@novell.com>
13511
13512         * VScrollBar.cs: Another buglet found by Aaron's tool. 
13513
13514         * ProgressBar.cs: Fix three recursive bugs found by Aaron Tomb's
13515         bug finder.
13516
13517 2005-08-30  Alexander Olk  <alex.olk@googlemail.com>
13518
13519         * ThemeNice.cs:
13520           - Added nicer menu drawing
13521           - Updated DrawTab
13522           - some refactoring
13523
13524 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13525
13526         * CreateParams.cs (ToString): Made output match MS
13527         * Control.cs (Text): Don't set Text or Focus via XplatUI unless 
13528             handle is already created (to avoid forcing window creation)
13529         * XplatUIX11.cs: Set window text to caption after creating window,
13530           in case Text was set before window was created
13531         * Form.cs: Use this.Text instead of a static string as caption
13532
13533 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13534
13535         * NotifyIcon.cs: Don't set the window to visible; this screws
13536           up Win32 (causes WM_NCPAINT to be sent on Win32, which calls
13537           OnPaint without a bitmap)
13538         * XplatUIX11.cs: Removed Visible optimization in AddExpose; doesn't 
13539           happen very often anyway; we could add the check to the WM_PAINT 
13540           event generation code
13541
13542 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com>
13543
13544         * NotifyIcon.cs: Fill the icon area with a background color, to 
13545           avoid 'residue' when transparent icons are drawn
13546         * XplatUIX11.cs:
13547           - Handle whole_window == client_window when destroying windows
13548           - SystrayAdd(): Set client_window to whole_window value to
13549             get mouse and other events passed to NotifyIcon
13550
13551 2005-08-30  Peter Dennis Bartok  <pbartok@novell.com> 
13552
13553         * Form.cs: Set proper default for Opacity property
13554         * NotifyIcon.cs:
13555           - ShowSystray(): Don't bother creating telling the OS
13556             about the systray item if no icon is provided
13557           - Now handles WM_NCPAINT message to deal with whole/client window
13558             split
13559           - Create window as visible to not get caught by Expose optimization
13560         * Hwnd.cs: Removed debug message
13561         * ComboBox.cs, ScrollBar.cs, ListBox.cs, TrackBar.cs, TabControl.cs,
13562           StatusBar.cs, TreeView.cs, XplatUIOSX.cs, XplatUIWin32.cs: Switched 
13563             PaintEventStart/End to use new client argument
13564         * TextBoxBase.cs:
13565           - Commented out debug messages
13566           - Switched PaintEventStart/End to use new client argument
13567         * XplatUI.cs: Added client window bool to PaintEventStart()/
13568           PaintEventEnd() calls, to support drawing in non-client areas
13569         * XplatUIDriver.cs: 
13570           - Added client window bool to PaintEventStart()/PaintEventEnd() 
13571             calls, to support drawing in non-client areas
13572           - Added conditional compile to allow using MWF BeginInvoke 
13573             on MS runtime
13574         * XplatUIX11.cs:
13575           - Added some conditional debug output
13576           - Fixed SystrayAdd() method to support new (for SystrayAdd, anyway)
13577             whole/client window split
13578           - Implemented handling of client argument to PaintEventStart()/End()
13579         * Control.cs:
13580           - Throw exception if BeginInvoke() is called and the window handle
13581             or one of the window's parent handles is not created
13582           - Added conditional compile to allow using MWF BeginInvoke on
13583             MS runtime
13584           - get_Parent(): Only sets parent if handle is created. This avoids
13585             forcing window handle creation when parent is set.
13586           - Now fires Layout and Parent changed events in proper order
13587           - Switched to use Handle instead of window.Handle for Z-Order setting,
13588             the get_Parent() patch above causes us to possibly get null for 'window'
13589           - Implemented handling of client argument to PaintEventStart()/End()
13590           - Now reports back to windows that WM_SETCURSOR was handled (to avoid
13591             default handling)
13592           - Now sends a Refresh() to all child windows when Refresh() is called
13593
13594 2005-08-29  Peter Dennis Bartok  <pbartok@novell.com> 
13595
13596         * Form.cs: Added (non-functional) Opacity property
13597         * XplatUIWin32.cs (SystrayAdd): Removed bogus line of code
13598
13599 2005-08-29  Alexander Olk  <xenomorph2@onlinehome.de>
13600         * ThemeNice.cs: New theme for MWF, based on ThemWin32Classic
13601           use export MONO_THEME=nice to activate it.
13602           Currently supported controls:
13603           - Button
13604           - ComboBox
13605           - ScrollBar
13606           - TabControl (TabAlignment.Top only, other will follow)
13607         * ThemeEngine.cs: Add theme nice
13608         * ButtonBase.cs: Redraw button on MouseEnter and MouseLeave everytime,
13609           if enabled
13610
13611 2005-08-25  Jonathan Chambers  <jonathan.chambers@ansys.com> 
13612
13613         * Splitter.cs: Resize docked control and its neighbor.
13614
13615 2005-08-24  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13616         -- Making Windows with Menus layout correctly --
13617         * Form.cs : The first leg of the fix
13618                 Menu setter - adjust Client Size as needed to make space for the menu
13619                 SetClientSizeCore - doesn't call base version to be able to pass the 
13620                         menu handle to XplatUI.CalculateWindowRect
13621         * Hwnd.cs: Fix for menu_height, now gets from MenuAPI.MENU
13622         * XplatUIX11.cs: The critical second leg of the fix
13623                 GetWindowPos needs to use a recalculated client_rect
13624                 so that resizing the window doesn't break layout of child controls. 
13625                 Also a more complete rule to avoid X Server roundtrips in SetWindowPos
13626                 Lots of \t\n killed
13627
13628 2005-08-23  Peter Dennis Bartok  <pbartok@novell.com> 
13629
13630         * Label.cs: Now properly recalculates width and height on Font and Text
13631           changes if AutoSize is set
13632
13633 2005-08-19  Rafael Teixeira <rafaelteixeirabr@hotmail.com> 
13634         * TreeView.cs : Revamped drawing logic, and support for FullRowSelect
13635
13636 2005-08-19  Jordi Mas i Hernandez <jordi@ximian.com>
13637
13638         * ImageList.cs: Makes ToString method compatible with MS
13639
13640 2005-08-18  Jordi Mas i Hernandez <jordi@ximian.com>
13641
13642         * MenuAPI.cs: fixes bug 75716
13643
13644 2005-08-11 Umadevi S <sumadevi@novell.com>
13645         * Control.cs: Fixed Remove & RemoveAt to make the parent of the control null.
13646
13647 2005-08-11 Umadevi S <sumadevi@novell.com>
13648         * Contorl.cs: Fixed ResetRightToLeft and ResetImeMode to work correctly
13649
13650 2005-08-10  Umadevi S <sumadevi@novell.com>
13651         * CheckedListBox.cs: Fixed event firing on Adding to the CheckedListBox
13652
13653 2005-08-07  Jordi Mas i Hernandez <jordi@ximian.com>
13654
13655         * Menu.cs: fixes bug 75700
13656         * MenuAPI.cs: fixes navigation issues
13657
13658 2005-08-09  Umadevi S <sumadevi@novell.com>
13659         * CheckedListBox.cs - simple fix for GetItemChecked.
13660
13661 2005-08-08  Jordi Mas i Hernandez <jordi@ximian.com>
13662
13663         * ComboBox.cs: Serveral fixes
13664         * ListBox.cs: Serveral fixes
13665
13666 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13667
13668         * ComboBox.cs: Fixes FindString methods and GetItemHeight
13669         * ListBox.cs: Fixes FindString methods
13670
13671 2005-08-05  Jordi Mas i Hernandez <jordi@ximian.com>
13672
13673         * DataGrid.cs: fixes bugs exposed by new tests
13674
13675 2005-08-04  Peter Dennis Bartok  <pbartok@novell.com> 
13676
13677         * Mime.cs: Compile Mono assembly references only if compiling
13678           with Mono (Allows to build with VS.Net again)
13679
13680 2005-07-28  Marek Safar  <marek.safar@seznam.cz>
13681
13682         * Control.cs (PaintControlBackground): Draw background image
13683         corrrectly.
13684         (CheckForIllegalCrossThreadCalls): Stubbed.
13685         
13686         * Form.cs (OnCreateControl): Center when should be centered.
13687         
13688         * ThemeWin32Classic.cs (DrawPictureBox): Pass size.
13689
13690 2005-07-19  Jordi Mas i Hernandez <jordi@ximian.com>
13691
13692         * Binding.cs: Binding to properties should be case unsensitive
13693
13694 2005-07-18 vlindos@nucleusys.com
13695
13696         * DataGrid.cs: fixes setmember order
13697
13698 2005-07-07  Alexander Olk  <xenomorph2@onlinehome.de>
13699
13700         * MimeIcon.cs: added MimeIcon stuff (MimeIconEngine)
13701         * FileDialog.cs: FileDialog is now resizable and uses the new
13702           MimeIconEngine
13703
13704 2005-07-06  Jordi Mas i Hernandez <jordi@ximian.com>
13705
13706         * DataGridTextBoxColumn.cs: default value
13707         * GridColumnStylesCollection.cs: fixes event firing, checking MappingName
13708         * GridTableStylesCollection.cs: fixes checking MappingName
13709         * DataGridDrawingLogic.cs: fixes drawing logic issues
13710         * DataSourceHelper.cs: rewritten to make compatible with more data sources
13711         * DataGrid.cs: fixes    
13712
13713 2005-07-06  Alexander Olk  <xenomorph2@onlinehome.de>
13714
13715         * MimeGenerated.cs: Use case sensitive comparer for
13716           NameValueCollections
13717
13718 2005-07-01  Jordi Mas i Hernandez <jordi@ximian.com>
13719
13720         * DataGridTextBoxColumn.cs: bug fixes, code refactoring 
13721         * ThemeWin32Classic.cs: bug fixes, code refactoring
13722         * DataGridDrawingLogic.cs:  bug fixes, code refactoring
13723         * DataGrid.cs: bug fixes, code refactoring
13724         * DataGridTextBox.cs: bug fixes, code refactoring
13725         * DataGridColumnStyle.cs:  bug fixes, code refactoring
13726         * Theme.cs:  bug fixes, code refactoring
13727
13728 2005-07-01  Peter Bartok  <pbartok@novell.com> 
13729
13730         * TextControl.cs: Quick fix for the reported crash on ColorDialog
13731           and other text box usage
13732
13733 2005-07-01  Jackson Harper  <jackson@ximian.com>
13734
13735         * TabControl.cs: Make sure the bottom of the tab covers the pages
13736         border.
13737
13738 2005-06-30  Peter Bartok  <pbartok@novell.com> 
13739
13740         * Form.cs (ShowDialog): Assign owner of the dialog
13741         * TextBoxBase.cs: Always refresh caret size when deleting, caret
13742           might have been moved to a tag with different height
13743
13744 2005-06-30  Jackson Harper  <jackson@ximian.com>
13745
13746         * Form.cs: Don't create an infinite loop when setting focus
13747         * MenuItem.cs: Don't dirty the parents if we don't have any
13748
13749 2005-06-29  Ben Maurer  <bmaurer@ximian.com>
13750
13751         * LibSupport.cs: Rename
13752
13753 2005-06-29  Peter Bartok  <pbartok@novell.com>
13754
13755         * TextBoxBase.cs: Re-align caret after deleting a character
13756         * TextControl.cs:
13757           - DeleteChars(): Ensure that tag covers the provided position
13758           - StreamLine(): Drop reference for dropped tag
13759
13760 2005-06-29  Peter Bartok  <pbartok@novell.com> 
13761
13762         * TextControl.cs: 
13763           - Selections now work properly, anchoring at the initial location
13764             and properly extending in either direction (SetSelectionToCaret(),
13765             SetSelectionStart() and SetSelectionEnd())
13766           - No longer redraws the whole control on selection change, now
13767             calculates delta between previous and new selection and only
13768             invalidates/redraws that area
13769           - Fixed FindPos() math off-by-one errors
13770           - Changed DeleteChars() to verify the provided tag covers the
13771             provided position, selections may have a tag that doesn't cover
13772             the position if the selection is at a tag border
13773           - Fixed off-by-one errors in DeleteChars()
13774           - Added missing streamlining check in DeleteChars() to remove
13775             zero-length tags
13776           - Implemented Invalidate() method, now properly calculates exposures
13777             between two given lines/positions
13778           - Implemented SetSelection()
13779           - Obsoleted and removed FixupSelection()
13780           - Improved RecalculateDocument() logic, removing code duplication
13781
13782 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13783
13784         * LibSupport.cs: changes to match different input/output arguments.
13785
13786 2005-06-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13787
13788         * LibSupport.cs: added libsupport.so init routine.
13789
13790 2005-06-29  Jordi Mas i Hernandez <jordi@ximian.com>
13791         
13792         * ControlBindingsCollection.cs
13793                 - Throws an exception on null datasource when adding
13794                 - Checks for duplicated bindings when adding
13795
13796 2005-06-28  Jackson Harper  <jackson@ximian.com>
13797
13798         * TreeView.cs (OnKeyDown): Support left and right properly
13799         (navigates as well as expanding and collapsing.
13800         - Add support for Multiply, this expands all the selected nodes
13801         children.
13802         - Fix some tabbing.
13803
13804 2005-06-28  Jackson Harper  <jackson@ximian.com>
13805
13806         * TreeView.cs: Implement keyboard navigation, currently supports,
13807         LEFT, RIGHT, UP, DOWN, PGUP, PGDOWN, HOME, END, ADD, SUBTRACT. Add
13808         support for toggling checkboxes with the space bar.
13809
13810 2005-06-28  Jackson Harper  <jackson@ximian.com>
13811
13812         * OpenTreeNodeEnumerator.cs: Don't move past the begining of the
13813         tree.
13814
13815 2005-06-28  Jackson Harper  <jackson@ximian.com>
13816
13817         * TreeView.cs: Add missing event.
13818
13819 2005-06-27  Peter Bartok  <pbartok@novell.com> 
13820
13821         * TextControl.cs:
13822           - Made line ending size configurable (now allows for counting 
13823             lineendings as \n or \r\n)
13824           - Added margin to viewport to keep caret visible on right side
13825           - Fixed translation routines for line/pos to documentpos to consider
13826             cr/lf when counting (Fixes RichTextBox.SelectionFont issues)
13827           - Fixed some line-endings to be unix style
13828           - Fixed Document.FormatText to perform it's calculations 1-based
13829           - Added descriptions for a few methods that might otherwise get 
13830             used wrong
13831           - Added NOTE section with some basic conventions to remember at 
13832             the top of the file
13833           - Major fixup for RichTextBox selection drawing:
13834             * Fixed crashes when multiple tags on a single line were selected
13835             * fixed selection box drawing not overlaying text
13836             * fixed bogus offset calculation for tags not starting at index 1
13837             * Switched behaviour from using multiple Substrings of a 
13838               StringBuilder.ToString() to using multiple 
13839               StringBuilder.ToString(start, length) statements, hoping this is
13840               faster (kept original version commented out in the code, in case
13841               original version was faster)
13842         * TextBox.cs (set_TextAlignment): TextBox always needs to wrap if 
13843           alignment != Left
13844         * TextBoxBase.cs (CalculateDocument): Made protected so RichTextBox can
13845           call it as well
13846
13847 2005-06-27  Jackson Harper  <jackson@ximian.com>
13848
13849         * TabControl.cs: Move to the left and right with the arrow
13850         keys. These keys don't cycle beyond first and last like
13851         tab. Refresh all the tabs when scrolling them to the left or
13852         right.
13853
13854 2005-06-27  Jackson Harper  <jackson@ximian.com>
13855
13856         * TabControl.cs:
13857           - ToString: Added method
13858           - CreateParams: Remove TODO and comment
13859           - OnKeyDown: Cycle through bounds properly.
13860           - SelectedIndex: Scroll to the right or left if we need to
13861           display the newly selected tab.
13862
13863 2005-06-23  Jackson Harper  <jackson@ximian.com>
13864
13865         * TabControl.cs: Stay in bounds when cycling. Make sure Handled is
13866         set.
13867
13868 2005-06-23  Jackson Harper  <jackson@ximian.com>
13869
13870         * TabControl.cs: Keyboard handling. We now support CTRL-TAB,
13871         CTRL-SHIFT-TAB, and HOME, END are there any others?
13872
13873 2005-06-23  Jackson Harper  <jackson@ximian.com>
13874
13875         * XplatUIX11.cs: Get the modifier keys from the keyboard driver.
13876
13877 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13878         
13879         * DataGridTextBoxColumn.cs: fixes and enhancements
13880         * ThemeWin32Classic.cs: fixes and enhancements
13881         * DataGridBoolColumn.cs:  fixes and enhancements
13882         * DataGridDrawingLogic.cs:  fixes and enhancements
13883         * CurrencyManager.cs: fixes and enhancements
13884         * DataGrid.cs: fixes and enhancements
13885         * DataGridColumnStyle.cs:  fixes and enhancements
13886
13887 2005-06-22  Jackson Harper  <jackson@ximian.com>
13888
13889         * TabControl.cs: Add some missing methods that just call into the
13890         base. Make the TabPageCollection's IList interface behave in the
13891         same manner as the MS implementation.
13892
13893 2005-06-22  Peter Bartok  <pbartok@novell.com> 
13894
13895         * TextControl.cs: Added sanity check
13896         * TextBoxBase.cs: 
13897           - Fixed wrapping behaviour, don't set wrap on single line controls
13898             (this fixes the breakage of colordialog introduced in an earlier
13899              checkin)
13900           - Added rudimentary support for autoscrolling right-aligned controls
13901             (still needs fixing, also, center alignment scroll is missing)
13902
13903 2005-06-22  Jordi Mas i Hernandez <jordi@ximian.com>
13904         
13905         * ScrollBar.cs: Fixes thumbpos on Maximum values
13906
13907 2005-06-21  Jonathan Chambers <jonathan.chambers@ansys.com>
13908         
13909         * PropertyGridView.cs: Pass context information to UITypeEditors 
13910
13911 2005-06-21  Peter Bartok  <pbartok@novell.com> 
13912
13913         * TextBoxBase.cs:
13914           - Now calling PositionCaret with absolute space coordinates
13915           - Enabled vertical scrolling
13916           - Better tracking of scrollbar changes, tied into WidthChange
13917             event
13918           - Improved cursor tracking
13919           - Removed debug output
13920         * TextControl.cs:
13921           - PositionCaret coordinates are now works in absolute space, not 
13922             the canvas
13923           - Improved tracking of document size
13924           - Added events for width and height changes
13925
13926 2005-06-21  Peter Bartok  <pbartok@novell.com>
13927
13928         * Form.cs: Set focus to active control when form is activated
13929         * TextControl.cs: 
13930           - Added word-wrap functionality to RecalculateLine() 
13931           - Added some short function descriptions for VS.Net to aid in
13932             writing dependent controls
13933           - Added Caret property, returning the current coords of the caret
13934           - Added ViewPortWidth and ViewPortHeight properties
13935           - Added Wrap property
13936           - Added CaretMoved event
13937           - Removed some old debug code
13938           - Split() can now create soft splits
13939           - Added PreviousTag()/NextTag() to allow walking "tag-lists"
13940           - Added method to format existing text
13941           - Fixed size/alignment calculations to use viewport
13942           - RecalculateDocument now can handle changing line-numbers while
13943             calculating lines
13944
13945         * TextBox.cs:
13946           - Added some wrap logic, we don't wrap if alignment is not left
13947           - Added casts for scrollbar var, base class switched types to
13948             also support RichTextBoxA
13949           - Implemented handling of scrollbar visibility flags
13950
13951         * TextBoxBase.cs:
13952           - Switched scrollbars type to RichTextBoxScrollBars to support
13953             RichTextBox
13954           - Added tracking of canvas width/height
13955           - Switched scrollbars to be not selectable (to keep focus on text)
13956           - Added central CalculateDocument() method to handle all redraw
13957             requirements
13958           - Added ReadOnly support
13959           - Added WordWrap support
13960           - Fixed handling of Enter key (we now treat it as a DialogKey)
13961           - Fixed caret positioning when h or v scroll is not zero
13962           - Fixed placing/generation of vertical scrollbar
13963           - Added CalculateScrollBars() method to allow updating scrollbar
13964             limits and visibility
13965           - Fixed handling of horizontal scroll
13966           - Added handling of vertical scroll
13967           - Implemented auto-'jump' when caret moves to close to a left or
13968             right border and there is text to be scrolled into view (currently
13969             there's the potential for a stack overflow, until a bug in
13970             scrollbar is fixed)
13971
13972 2005-06-21  Geoff Norton  <gnorton@customerdna.com>
13973         
13974         * XplatUIOSX.cs: Initial implementation of WM_ERASEBKGND
13975
13976 2005-06-19  Alexander Olk  <xenomorph2@onlinehome.de>
13977
13978         * Mime.cs:
13979         - added inodes.
13980         - return application/x-zerosize for files with size zero
13981           (if no extension pattern matches).
13982         - check matches collection for strings too.
13983         - return only the first mime type if the name value
13984           collection has more than one mime type.
13985
13986 2005-06-18  Jonathan Chambers <jonathan.chambers@ansys.com>
13987         
13988         * PropertyGrid.cs: Cleaned up some TODOs
13989         * PropertyGridView.cs: Added support for UITypeEditors
13990
13991 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13992         
13993         * DataGrid.cs: clears cached value
13994
13995 2005-06-17  Jordi Mas i Hernandez <jordi@ximian.com>
13996
13997         * DataGridTextBoxColumn.cs: new rows, speed improvements, fixes, readonly prop.
13998         * DataGridDrawingLogic.cs: new rows, speed improvements, fixes, readonly prop.
13999         * DataGrid.cs: new rows, speed improvements, fixes, readonly prop.
14000         * DataGridColumnStyle.cs: new rows, speed improvements, fixes, readonly prop.
14001         
14002 2005-06-16  Jordi Mas i Hernandez <jordi@ximian.com>
14003
14004         * ThemeWin32Classic.cs: fixes colour
14005
14006 2005-06-15  Peter Bartok  <pbartok@novell.com>
14007
14008         * MWFCategoryAttribute.cs: Added (Needed for PropertyGrid designer support)
14009         * MWFDescriptionAttribute.cs: Added (Needed for PropertyGrid designer support)
14010         * ButtonBase.cs: Added MWFCategory and MWFDescription attributes
14011         * Control.cs: Added some MWFCategory and MWFDescription attributes
14012         * ScrollBar.cs: Added some MWFCategory and MWFDescription attributes
14013
14014 2005-06-15  Alexander Olk  <xenomorph2@onlinehome.de>
14015
14016         * Mime.cs, MimeGenerated.cs: First draft of MWF mime stuff, see Mime.cs for
14017         usage
14018
14019 2005-06-14  Jordi Mas i Hernandez <jordi@ximian.com>
14020
14021         * DataGridTextBoxColumn.cs: default datagrid settings for Default Styles, fixes
14022         * DataGridTableStyle.cs: default datagrid settings for Default Styles, fixes
14023         * DataGridDrawingLogic.cs: default datagrid settings for Default Styles, fixes
14024         * DataGridBoolColumn.cs: default datagrid settings for Default Styles, fixes
14025         * DataGrid.cs: default datagrid settings for Default Styles, fixes
14026         * DataGridColumnStyle.cs: default datagrid settings for Default Styles, fixes
14027
14028 2005-06-13  Jackson Harper  <jackson@ximian.com>
14029
14030         * XplatUIX11.cs: Override SetAllowDrop on X11 so an error message
14031         isn't printed when the user enables dropping. (X11 does accept
14032         drops).
14033         
14034 2005-06-13  Jackson Harper  <jackson@ximian.com>
14035
14036         * TreeView.cs: Remove some TODOS.
14037
14038 2005-06-13  Jackson Harper  <jackson@ximian.com>
14039
14040         * Form.cs: Hook into the mdi framework.
14041         * MdiClient.cs: Use the base control collections add method so
14042         parents get setup correctly. Set the default back colour and dock
14043         style.
14044         * MdiChildContext.cs: New class, this bad actor handles an
14045         instance of an MDI window. Right now there is only basic
14046         support. You can drag, close, and resize windows. Minimize and
14047         Maximize are partially implemented.
14048
14049 2005-06-13  Jackson Harper  <jackson@ximian.com>
14050
14051         * XplatUIX11.cs: Mash numbers together properly, otherwise we get
14052         freaky when both vals are negative. NOTE: There are probably other
14053         places in XplatUIX11 that this needs to be done.
14054
14055 2005-06-13  Jordi Mas i Hernandez <jordi@ximian.com>
14056
14057         * DataGrid.cs: implement missing methods, move KeyboardNavigation
14058         * DataGridColumnStyle.cs: fixes signature
14059
14060 2005-06-12  Jackson Harper  <jackson@ximian.com>
14061
14062         * XplatUIX11.cs: Use sizing cursors similar to the ones on
14063         windows.
14064
14065 2005-06-11  Jackson Harper  <jackson@ximian.com>
14066
14067         * StatusBarPanel.cs: Signature cleanups. Implement
14068         BeginInit/EndInit.
14069
14070 2005-06-10  Jordi Mas i Hernandez <jordi@ximian.com>
14071
14072         * DataGridTextBoxColumn.cs: Honors aligment
14073         * GridColumnStylesCollection.cs: Contains is case unsensitive
14074         * GridTableStylesCollection.cs: several fixes
14075         * DataGridTableStyle.cs: default column creation
14076         * DataGridDrawingLogic.cs: fixes
14077         * CurrencyManager.cs: ListName property
14078         * DataGrid.cs: multiple styles support
14079         * DataGridColumnStyle.cs: fixes
14080         
14081
14082 2005-06-10  Peter Bartok  <pbartok@novell.com>
14083
14084         * Control.cs(Select): Moved SetFocus call to avoid potential
14085           loops if controls change the active control when getting focus
14086         * UpDownBase.cs: Fixes to allow proper keyboard focus after clicking
14087           the up/down buttons
14088
14089 2005-06-10  Matthias Felgner  <matthiasf@voelcker.ocm>
14090
14091         * ImageListConverter.cs: Implemented
14092
14093 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14094
14095         * MonthCalendar.cs: Wired in NumericUpDown control for year
14096
14097 2005-06-10  John BouAntoun <jba-mono@optusnet.com.au>
14098
14099         * MonthCalendar.cs: Removed MonoTodo attributes on Click and
14100           DoubleClick events, since they are not meant to be fired.
14101
14102 2005-06-09  Peter Bartok  <pbartok@novell.com>
14103
14104         * UpDownBase.cs, NumericUpDown.cs, DomainUpDown.cs: Integrated
14105           Jonathan's standalone controls into MWF, implemented missing
14106           events, attributes and methods; added xxxAccessible classes
14107         * AccessibleObject.cs: Made fields internal so other classes
14108           can change them if needed
14109
14110 2005-06-09  Jonathan Gilbert  <2a5gjx302@sneakemail.com>
14111
14112         * UpDownBase.cs: Complete implementation
14113         * NumericUpDown.cs: Complete implementation
14114         * DomainUpDown.cs: Complete implementation
14115
14116 2005-06-09  Jordi Mas i Hernandez <jordi@ximian.com>
14117
14118         * DataGridTextBoxColumn.cs: drawing fixes
14119         * DataGridCell.cs: fixes ToString method to match MSNet
14120         * DataGridTableStyle.cs: fixes
14121         * DataGridBoolColumn.cs: fixes, drawing
14122         * DataGridDrawingLogic.cs: fixes, new methods
14123         * DataGridTextBox.cs: Keyboard and fixes
14124         * DataGrid.cs:
14125                 - Keyboard navigation
14126                 - Scrolling fixes
14127                 - Row selection (single, multiple, deletion, etc)
14128                 - Lots of fixes
14129         
14130 2005-06-07  Jackson Harper  <jackson@ximian.com>
14131
14132         * ThemeWin32Classic.cs: Clear the background area when drawing
14133         buttons.
14134
14135 2005-06-06  Peter Bartok  <pbartok@novell.com>
14136
14137         * ImageListStreamer.cs: Fixed signature for GetData
14138         * CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
14139         * ComboBox.cs:
14140           - Added missing ChildAccessibleObject class
14141           - Added missing OnXXXFocus overrides, switched to using those
14142             instead of the event handler
14143         * Control.cs:
14144           - Added Parent property for ControlAccessibleObject
14145           - Fixed signatures
14146           - Fixed attributes
14147           - Added ResetBindings()
14148         * ListBindingConverter.cs: Implemented some methods
14149         * ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
14150         * ImageList.cs: Implemented basic handle scheme, removed TODOs
14151         * ContainerControl.cs: Fixed signature, now subscribing to the
14152           ControlRemoved event instead of overriding the handler, LAMESPEC
14153         * CurrencyManager.cs: Added missing attribute
14154         * MonthCalendar.cs: Added missing properties
14155
14156 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14157
14158         * DataGridColumnStyle.cs: fixes for DataGridColumnStyle
14159         
14160 2005-06-06  Gaurav Vaish and Ankit Jain
14161
14162         * DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
14163         * DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding
14164         
14165 2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>
14166
14167         * Control.cs: fixes CreateParams Width / Height.
14168
14169 2005-06-05  Peter Bartok  <pbartok@novell.com>
14170
14171         * Win32DnD.cs: Removed compilation warnings
14172
14173 2005-06-05  Peter Bartok  <pbartok@novell.com>
14174
14175         * Control.cs (CreateParams): Since we don't know if one of the
14176           properties we use is overridden, lets make sure if we fail accessing
14177           we continue with a backup plan
14178
14179 2005-06-05  Peter Bartok  <pbartok@novell.com>
14180
14181         * Win32DnD.cs:
14182           - Removed debug output
14183           - Added MarshalAs attribute to ensure proper marshalling of FORMATETC
14184             struct
14185           - Plugged resource leak
14186         * XplatUIStructs.cs: Changed ClipboardFormats size to ushort, to match
14187           MS size
14188
14189 2005-06-05  Peter Bartok  <pbartok@novell.com>
14190
14191         * XplatUIWin32.cs: Removed DnD code
14192         * Win32DnD.cs: Implemented drop source and drop target functionality
14193
14194 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
14195
14196         * UpDownBase.cs: remove duplicate addition of event, enable some code
14197         that was commented out.
14198         * NumericUpDown.cs: added missing attributes and Hexadecimal property.
14199         Validate input when a key is pressed. It works fine now for every
14200         combination of Hexadecimal. Only missing some drawing love when sharing
14201         space with other controls.
14202
14203 2005-06-04  Peter Bartok  <pbartok@novell.com>
14204
14205         * Control.cs:
14206           - We need to pass a window for DragDrop, so enable callback events
14207           - Added DnD callback events when being a DragSource
14208         * XplatUI.cs (StartDrag): Added window handle argument
14209         * XplatUIDriver.cs (StartDrag): Added window handle argument
14210         * QueryContinueDragEventArgs: Made fields internally accessible so
14211           drivers can set them
14212         * GiveFeedbackEventArgs: Made fields internally accessible so drivers
14213           can set them
14214
14215 2005-06-03  Jordi Mas i Hernandez <jordi@ximian.com>
14216
14217         * DataGridTextBoxColumn.cs: column text editing
14218         * DataGridTableStyle.cs: Respect columns styles created by the user
14219         * DataGridDrawingLogic.cs: lots of drawing fixes and enhanments
14220         * DataGridBoolColumn.cs: bool column editing
14221         * DataGrid.cs: fixes to scrolling, properties, etc
14222         * DataGridTextBox.cs: handle keyboard
14223         * DataGridColumnStyle.cs: fixes
14224
14225 2005-06-02  Jackson Harper  <jackson@ximian.com>
14226
14227         * ImageListStreamer.cs: Somewhat broken implementation of
14228         GetObjectData. The RLE needs some work to match MS properly.
14229
14230 2005-06-02  Jackson Harper  <jackson@ximian.com>
14231
14232         * X11Dnd.cs: Attempting to keep at least one file in MWF
14233         monostyled.
14234
14235 2005-06-02  Peter Bartok  <pbartok@novell.com>
14236
14237         * X11DnD.cs: Use Marshal.SizeOf instead of sizeof, no /unsafe required
14238           that way
14239
14240 2005-06-02  Peter Bartok  <pbartok@novell.com>
14241
14242         * Control.cs: Removed MonoTODO from DoDragDrop and added call to Xplat
14243         * XplatUI.cs: Added DoDragDrop() method
14244         * XplatUIDriver.cs: Added DoDragDrop() method
14245
14246 2005-06-02  Jackson Harper  <jackson@ximian.com>
14247
14248         * Splitter.cs: Implement BorderStyle.
14249
14250 2005-06-02  Jackson Harper  <jackson@ximian.com>
14251
14252         * XplatUIX11.cs: Tie into the X11Dnd subsystem.
14253         * X11Dnd.cs: New file. A subsystem that handles drag and drop on
14254         X11 using XDND.
14255
14256 2005-06-02  Peter Bartok  <pbartok@novell.com>
14257
14258         * DataObject.cs:
14259           - Added Data setter
14260           - Fixed broken insertion code for SetData, now also
14261             overwrites any existing entry of the same format name
14262         * Hwnd.cs: Added list of pointers that automatically gets
14263           freed when the window is disposed
14264         * XplatUI.cs: Call driver initialization method when loading
14265           a driver
14266         * Control.cs:
14267           - OnDragLeave takes EventArgs, not DragEventArgs
14268           - Added setting of WS_EX_ACCEPTFILES style when dropping is
14269             supported
14270           - Forces style update when drop state changes
14271         * XplatUIWin32.cs: Implemented Drag'n'Drop (as good as possible,
14272           not perfect since we cannot (yet) call the IDataObject.GetData()
14273           method, we keep getting 0x80004005 error, dunno why)
14274
14275 2005-06-02  Peter Bartok  <pbartok@novell.com>
14276
14277         * DragEventArgs.cs: Make fields internal so we can cache the
14278           object and re-set the fields from XplatUI
14279
14280 2005-06-02  Jackson Harper  <jackson@ximian.com>
14281
14282         * Control.cs: Add some internal methods so the DnD subsystem can
14283         raise DnD events. Also call into the driver when AllowDrop is set.
14284         * XplatUI.cs:
14285         * XplatUIDriver.cs: New method for setting whether or not a window
14286         is allowed to accept drag and drop messages.
14287                 
14288 2005-06-01  Jordi Mas i Hernandez <jordi@ximian.com>
14289         
14290         * ScrollBar.cs: Make sure that values sent in Scroll events
14291         are always between Maximum and Minimum.
14292
14293 2005-06-01  Marek Safar  <marek.safar@seznam.cz>
14294
14295         * Menu.cs: Call MenuChanged when menuitem visibility has been
14296         changed.
14297         * MenuItem.cs: Rebuild menu when item is (not) visible.
14298         * MainMenu.cs: MainMenu has special MenuChanged.
14299         * Theme.cs: Caption and FrameBorderSize are not fixed.
14300         * XplatUI.cs: Added CaptionHeight,FrameBorderSize.
14301         * XplatUIDriver.cs: Introduced Caption and FrameBorderSize.
14302         * XplatUIX11.cs,
14303         * XplatUIOSX: Caption and FrameBorderSize not implemented yet.
14304         * XplatUIWin32.cs: Get Caption and FrameBorderSize from system.
14305
14306 2005-05-30  Jackson Harper  <jackson@ximian.com>
14307
14308         * DataFormat.cs: We can't statically initialize this stuff because
14309         it calls into the xplatui and could create a loop. So we lazy init
14310         it.
14311
14312 2005-05-28  Jackson Harper  <jackson@ximian.com>
14313
14314         * Control.cs: Proper implementation of Product(Name/Version).
14315
14316 2005-05-27  Jackson Harper  <jackson@ximian.com>
14317
14318         * DataObject.cs: Dont crash if no data is found.
14319
14320 2005-05-26  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
14321         * MdiClient.cs: Add missing Localizable attribute to BackgroundImage property
14322                 as per status page, guessing it should be set to true
14323
14324 2005-05-26  Jordi Mas i Hernandez <jordi@ximian.com>
14325
14326         * DataGridTextBoxColumn.cs: Draws text and basic text formatting
14327         * DataGridTableStyle.cs: set proper formatting text, def header text
14328         * ThemeWin32Classic.cs: new themable paramaters
14329         * DataGridBoolColumn.cs: paint check box, get data, fixes
14330         * DataGridDrawingLogic.cs: huge improvements in painting, fixes, new methods
14331         * DataGrid.cs: fixes properties, implements vertical and horizontal scrolling
14332         * DataGridColumnStyle.cs: fixes
14333         * Theme.cs: new themable paramaters
14334                 
14335 2005-05-26  Peter Bartok  <pbartok@novell.com>
14336
14337         * ContainerControl.cs: Pass AdjustFormScrollbars() call on to base
14338
14339 2005-05-24 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14340         * Control.cs: Fixed LowOrder and HighOrder to preserve sign.
14341
14342 2005-05-24  Peter Bartok  <pbartok@novell.com>
14343
14344         * OpenFileDialog.cs, Form.cs, Menu.cs, GroupBox.cs, UserControl.cs,
14345           Label.cs, DataGridTextBoxColumn.cs, PropertyGrid.cs, ErrorProvider.cs
14346           Splitter.cs, Control.cs, FontDialog.cs, TabPage.cs,
14347           FolderBrowserDialog.cs, HelpProvider.cs, DataGridTableStyle.cs,
14348           NotifyIcon.cs, FileDialog.cs, ListView.cs, SaveFileDialog.cs,
14349           ToolBarButton.cs, ImageList.cs, DataGridBoolColumn.cs, Panel.cs,
14350           DataGrid.cs, DataGridTextBox.cs, ListBox.cs, TrackBar.cs,
14351           AxHost.cs, TabControl.cs, ScrollableControl.cs, ToolBar.cs,
14352           DataGridColumnStyle.cs, PictureBox.cs, DateTimePicker.cs,
14353           StatusBar.cs, MonthCalendar.cs, TreeView.cs: Added
14354           missing attributes, etc
14355         * DataGridPreferredColumnWidthTypeConverter.cs: Added
14356
14357 2005-05-24  Peter Bartok  <pbartok@novell.com>
14358
14359         * Help.cs: Added, implemented trivial functions, throws up MessageBox
14360           when user tries to get help
14361         * DataObject.cs, DataFormats.cs, LinkArea.cs,
14362           SelectionRangeConverter.cs, Clipboard.cs : Removed unused variables
14363           to suppress warnings
14364         * XplatUIWin32.cs, XplatUIOSX.cs, XplatUIX11.cs: Removed unused code to
14365           avoid unreachable code warning
14366
14367 2005-05-20  Peter Bartok  <pbartok@novell.com>
14368
14369         * CursorConverter.cs (ConvertTo): Switched to use Cursor.GetObjectData
14370
14371 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14372
14373         * DataGridTextBoxColumn.cs: Basic painting methods
14374         * DataGridTableStyle.cs: Set table style in the column
14375         * ThemeWin32Classic.cs: Use Theme for colors
14376         * DataGridDrawingLogic.cs: Implement more drawing
14377         * DataGrid.cs: drawing, theming, enhacements, fixes
14378         * DataGridColumnStyle.cs: fixes, drawing
14379         * Theme.cs: theming for Datagrid
14380
14381 2005-05-20  Peter Bartok  <pbartok@novell.com>
14382
14383         * Cursor.cs: Implemented GetObjectData() method
14384
14385 2005-05-20  Peter Bartok  <pbartok@novell.com>
14386
14387         * Cursors.cs: Added setting of cursor name
14388         * Cursor.cs:
14389           - Implemented constructors
14390           - Implemented Draw and DrawStretched
14391           - Implemented Current property
14392           - Implemented == and != operators
14393           - Implemented Dispose()
14394           - Implemented ToString
14395           - Added missing attributes
14396         * XplatUIX11.cs:
14397           - Added missing reset for OverrideCursor when DoEvents is called
14398           - Fixed creation of cursor, logic was wrong
14399         * XplatUIWin32.cs:
14400           - Added missing reset for OverrideCursor when DoEvents is called
14401           - Fixed creation of cursor, bit arrays were swapped
14402         * Clipboard.cs: Removed obsolete MonoTODO attribute
14403
14404 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14405
14406         * ComboBox.cs: fixes OnSelectedItemChanged
14407         * ControlBindingsCollection.cs: fixes item range check
14408
14409 2005-05-20  Jordi Mas i Hernandez <jordi@ximian.com>
14410
14411         * UpDownBase.cs:
14412                 - Calc preferred height properly
14413                 - Implement missing properties
14414                 
14415         * NumericUpDown.cs: Implement missing events
14416
14417 2005-05-19  Jackson Harper  <jackson@ximian.com>
14418
14419         * TabControl.cs: New method that resizes the tab pages before
14420         redrawing them. This as needed as the control is double buffered
14421         and sizing will not be recalculated unless ResizeTabPages is
14422         called.
14423         * TabPage.cs: Set base.Text instead of Text in the constructor so
14424         that UpdateOwner does not get called. Use the new Redraw method of
14425         TabControl instead of Refresh so the sizing is recalculated.
14426         * ThemeWin32Classic.cs: Draw the text for button tabs.
14427
14428 2005-05-19  Jackson Harper  <jackson@ximian.com>
14429
14430         * Control.cs: Paint control background images. Fix typo where
14431         PaintControlBackground was not getting called correctly.
14432
14433 2005-05-19  Peter Bartok  <pbartok@novell.com>
14434
14435         * ScrollableControl.cs (DisplayRectangle): Undid my last change until
14436           I can investigate, apparently I broke FileDialog
14437
14438 2005-05-19  Marek Safar  <marek.safar@seznam.cz>
14439
14440         * AxHost.cs: Some simple properties.
14441         * Control.cs: window must be accessible after ctor.
14442         * Form.cs: Added TransparencyKey property.
14443         * TextBoxBase.cs: Implemented Clear. Text property can be null.
14444         * XplatUIWin32.cs: SetBorderStyle implemented.
14445
14446 2005-05-18  Peter Bartok  <pbartok@novell.com>
14447
14448         * DataObject.cs: Entries are not global but particular to the
14449           DataObject, now it behaves that way
14450         * XplatUIWin32.cs: Implemented Clipboard methods
14451         * Clipboard.cs: Implemented
14452         * ScrollableControl.cs (DisplayRectangle): Fixed calculation
14453         * XplatUIOSX.cs: Updated to final clipboard prototypes
14454         * XplatUIX11.cs: Implemented Clipboard methods
14455         * XplatUIDriver.cs: Updated to final clipboard prototypes
14456         * XplatUIStructs.cs:
14457           - Added BITMAPINFOHEADER struct
14458           - Added ClipboardFormats enum
14459         * X11Structs.cs:
14460           - Added ClipboardStruct
14461           - Added Atom enum items for clipboard types
14462           - Fixed atom types for Selection event structures
14463         * DataFormats.cs:
14464           - Added internal properties and methods for drivers to enumerate
14465             all known formats
14466           - Switched initialization method to allow drivers to assign their
14467             own IDs even for the MS predefined clipboard IDs
14468         * XplatUI.cs: Updated to final clipboard interface
14469
14470 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14471         * PropertyGridView.cs: Fixed compiler warnings.
14472
14473 2005-05-18 Jonathan S. Chambers <jonathan.chambers@ansys.com>
14474         * PropertyGrid.cs: Added some event calls
14475         * PropertyGridView.cs: Change drawing code to use double buffering
14476         * PropertyGridTextBox.cs: Changed Text property name
14477         * GridItem.cs: Added Bounds property.
14478         * GridEntry.cs: Added Bounds property.
14479
14480 2005-05-17  Lluis Sanchez Gual  <lluis@novell.com>
14481
14482         * Binding.cs: Use IsInstanceOfType instead of IsAssignableFrom
14483         since GetType() may not return the correct type if the object is
14484         a remoting proxy.
14485
14486 2005-05-17  Jordi Mas i Hernandez <jordi@ximian.com>
14487
14488         * TreeNodeCollection.cs: fixes get/set item ranges
14489         
14490 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14491
14492         * ListBox.cs: Kazuki Oikawa's PreferredHeight and ItemHeight fixes
14493                 
14494 2005-05-15  Jordi Mas i Hernandez <jordi@ximian.com>
14495
14496         * ComboBox.cs: Fix item range comparation
14497         * ListView.cs: Fix item range comparation
14498
14499 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14500
14501         * FontDialog.cs:
14502           - Clear example panel when OnPaint is called
14503           - Better solution for displaying the example panel text
14504           - Select default indexes in the ListBoxes
14505
14506 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14507
14508         * XplatUIOSX.cs: Avoid painting into invisible views.  Fixes #74926
14509
14510 2005-05-11  Peter Bartok  <pbartok@novell.com>
14511
14512         * LinkArea.cs: Added and implemented LinkAreaTypeConverter class
14513         * SelectionRangeConverter.cs: Implemented
14514         * PropertyGrid.cs: Fixed attribute value
14515         * Control.cs:
14516           - Invoke(): Don't call Begin/EndInvoke if it is not neccessary
14517           - Added Sebastien Pouliot's CAS Stack Propagation fixes
14518         * XplatUIDriver.cs: Added new XplatUIDriverSupport class, for code
14519           that's common to all drivers. First methods to go there are
14520           Sebastien Pouliot's CAS Stack Propagation helper methods
14521         * XplatUIWin32.cs, XplatUIX11.cs, AsyncMethodData.cs: Fixes by
14522           Sebastien Pouliot for CAS Stack Propagation
14523
14524 2005-05-11  Geoff Norton  <gnorton@customerdna.com>
14525
14526         * OSXStructs.cs:
14527           XplatUIOSX.cs: More cosmetic cleanup courtesy of Artyom Tyazhelov (Artyom.Tyazhelov@helmes.ee)
14528
14529 2005-05-12  Jordi Mas i Hernandez <jordi@ximian.com>
14530
14531         * DataGridTextBoxColumn.cs: fixed some members
14532         * GridColumnStylesCollection.cs: indexed column is case insensitive
14533         * DataGridTableStyle.cs: fixes
14534         * ThemeWin32Classic.cs: add new theme parameter
14535         * Theme.cs: add new theme parameter
14536         * DataGridDrawingLogic.cs: Datagrid's drawing logic
14537         * DataGrid.cs: fixes, new internal properties, etc.
14538         * DataGridColumnStyle.cs: allows to set grid value
14539         *
14540
14541 2005-05-10  Peter Bartok  <pbartok@novell.com>
14542
14543         * AccessibleObject.cs:
14544           - Removed MonoTODO attribute on help, method is correct
14545           - Fixed Bounds property
14546         * AxHost.cs: Moved MonoTODO
14547         * ButtonBase.cs: Now setting AccessibleObject properties
14548         * RadioButton.cs: Setting proper AccessibleObject role
14549         * CheckBox.cs: Setting proper AccessibleObject role
14550         * ControlBindingsCollection.cs: Added properties, methods and attributes
14551         * DataFormats.cs: Fixed awkward internal API, and changed to enable
14552           userdefined DataFormats.Format items as well
14553         * ListControl.cs: Removed data_member from the public eye
14554         * OpenFileDialog.cs:
14555           - Made class sealed
14556           - Added missing attributes
14557         * SaveFileDialog.cs: Added missing attributes
14558         * ImageListStreamer.cs: Fixed code that caused warnings
14559         * LinkLabel.cs: Removed unreachable code
14560         * TreeView.cs: Fixed code that caused warnings
14561         * PropertyGridView.cs: Fixed code that caused warnings
14562         * GridColumnStylesCollection.cs: Added missing attributes
14563         * GridTableStylesCollection: Added missing attribute
14564         * PropertyManager: Added .ctor
14565         * SecurityIDType: Added
14566         * DataObject.cs: Implemented class
14567         * LinkArea.cs: Added missing attribute
14568
14569 2005-05-11  Jordi Mas i Hernandez <jordi@ximian.com>
14570
14571         * RadioButton.cs: call base method to allow to fire OnClick event
14572         * UpDownBase.cs: OnMouseUp call base method
14573         * CheckedListBox.cs: call base method before returning
14574         * TrackBar.cs: call base method before returning
14575         
14576
14577 2005-05-10  Peter Bartok  <pbartok@novell.com>
14578
14579         * XplatUIX11.cs: Fix for #74902, check pending timers when peeking
14580           for messages
14581
14582 2005-05-10  Peter Bartok  <pbartok@novell.com>
14583
14584         * DataFormats.cs: Implemented
14585         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs,
14586           XplatUIX11.cs: Added Clipboard APIs
14587         * XplatUIWin32.cs: Implemented Clipboard APIs
14588         * FolderBrowserDialog.cs: Added missing event, attributes
14589
14590 2005-05-10  Jordi Mas i Hernandez <jordi@ximian.com>
14591
14592         * CheckBox.cs: call base method to allow to fire OnClick event
14593
14594 2005-05-09  Sebastien Pouliot  <sebastien@ximian.com>
14595
14596         * XplatUI.cs: Use PlatformID.Unix under NET_2_0.
14597
14598 2005-05-06  Peter Bartok  <pbartok@novell.com>
14599
14600         * XplatUIX11.cs: Redid Jackson's fix, it was causing a busy loop
14601         * Screen.cs: Implemented
14602         * HelpNavigator.cs: Added
14603         * XplatUIWin32.cs: Added SystemParametersInfo call, fixed WorkArea
14604           property
14605         * HelpProvider.cs: Implemented all we can do until we have a CHM
14606           help library (which means that "What's This" does work now)
14607
14608 2005-05-06  Jackson Harper  <jackson@ximian.com>
14609
14610         * XplatUIX11.cs: Fix waking up the main loop.
14611                 
14612 2005-05-05  Peter Bartok  <pbartok@novell.com>
14613
14614         * XplatUI.cs: Updated revision
14615         * Form.cs: Removed enless loop
14616         * GroupBox.cs (OnPaint): Added call to base.OnPaint()
14617         * Label.cs (OnPaint): Added call to base.OnPaint()
14618         * ToolTip.cs: Made ToolTipWindow reusable for other controls
14619         * LinkLabel.cs (OnPaint): Added call to base.OnPaint()
14620         * UpDownBase.cs (OnPaint): Moved base.OnPaint() call to end of method
14621         * AxHost.cs: Added
14622         * ButtonBase.cs: Moved base.OnPaint() call to end of method
14623         * ThemeWin32Classic.cs: Replaced references to ToolTip with references
14624           to ToolTip.ToolTipWindow for drawing and size methods; this allows
14625           reuse of ToolTipWindow by other controls
14626         * SizeGrip.cs: Moved base.OnPaint() call to end of method
14627         * XplatUIX11.cs: Now clipping drawing area (experimental)
14628         * PictureBox.cs: Moved base.OnPaint() call to end of method
14629         * Theme.cs: Fixed ToolTip abstracts to match new format
14630         * ErrorProvider.cs: Implemented
14631
14632 2005-05-05  Jordi Mas i Hernandez <jordi@ximian.com>
14633
14634         * Label.cs: fire events using OnAutoSizeChanged and OnTextAlignChanged
14635         * LinkLabel.cs:
14636                 - Adds cursors
14637                 - Handles focus
14638                 - Implements LinkBehavior
14639                 - Fixes many issues
14640
14641 2005-05-03  Jackson Harper  <jackson@ximian.com>
14642
14643         * ListView.cs: Calculate the scrollbar positioning on resize and
14644         paint, so they get put in the correct place.
14645
14646 2005-05-03  Alexander Olk  <xenomorph2@onlinehome.de>
14647
14648         * ColorDialogs.cs: The small color panels are now handled by
14649           SmallColorControl. This fixes drawing of the focus rectangle
14650           and adds a 3D border.
14651
14652 2005-05-03  Peter Bartok  <pbartok@novell.com>
14653
14654         * Control.cs: Modified version of Jonathan Chamber's fix for
14655           double-buffering
14656
14657 2005-05-03  Jackson Harper  <jackson@ximian.com>
14658
14659         * ListView.cs: Remove redraw variable. Control now handles whether
14660         or not a redraw needs to be done, and will only raise the paint
14661         event if redrawing is needed.
14662
14663 2005-05-03  Jackson Harper  <jackson@ximian.com>
14664
14665         * Splitter.cs: No decorations for the splitter form. Cache the
14666         hatch brush.
14667
14668 2005-05-03  Jackson Harper  <jackson@ximian.com>
14669
14670         * TreeView.cs: Use dashed lines to connect nodes. Use the
14671         ControlPaint method for drawing the focus rect instead of doing
14672         that in treeview.
14673
14674 2005-05-02  Peter Bartok  <pbartok@novell.com>
14675
14676         * LinkLabel.cs: Fixed the fixes from r43566 and 43521
14677
14678 2005-04-29  Jackson Harper  <jackson@ximian.com>
14679
14680         * ThemeWin32Classic.cs: Don't clear the GC that will clear the
14681         entire image buffer. Just clear the clipping rectangle.
14682
14683 2005-04-29  Jackson Harper  <jackson@ximian.com>
14684
14685         * ThemeWin32Classic.cs: Don't draw list view items that are
14686         outside the clipping rectangle.
14687
14688 2005-04-29  Jordi Mas i Hernandez <jordi@ximian.com>
14689
14690         * ListBox.cs: added horizontal item scroll
14691
14692 2005-04-29  Jackson Harper  <jackson@ximian.com>
14693
14694         * ThemeWin32Classic.cs: Remove some old debug code that was
14695         causing flicker with the new double buffering code.
14696
14697 2005-04-29  John BouAntoun  <jba-mono@optusnet.com.au>
14698
14699         * MonthCalendar.cs, DateTimePicker.cs: Made monthcalendar dropdwon
14700         behave like combobox and comboboxlist (still not sure if this is
14701         correct though).
14702
14703 2005-04-28  Jackson Harper  <jackson@ximian.com>
14704
14705         * ThemeWin32Classic.cs: Don't fill the middle of progress
14706         bars. This fills areas outside of the clip bounds that don't need
14707         to be filled.
14708
14709 2005-04-28  Jackson Harper  <jackson@ximian.com>
14710
14711         * Control.cs: Don't expose functionality to touch the image buffers.
14712         * ProgressBar.cs:
14713         * ListView.cs: We do not need to (and no longer can) manipulate
14714         the image buffers directly. All of this is handled by Control.
14715
14716 2005-04-28  Peter Bartok  <pbartok@novell.com>
14717
14718         * RichTextBoxSelectionAttribute.cs, RichTextBoxSelectionTypes.cs,
14719           RichTextBoxScrollBars.cs, RichTextBoxStreamType.cs,
14720           RichTextBoxFinds.cs, RichTextBoxWordPunctuations.cs: Added
14721
14722 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
14723
14724         * Combobox:
14725                 - Adjust control's height for non-simple comboboxes (bug fix)
14726                 - Remove dead code
14727         * MenuAPI.cs: remove unused var
14728         * ScrollBar.cs: remove unsed var
14729                  
14730         * ListBox.cs: unselect items when clearing
14731
14732 2005-04-28  Jordi Mas i Hernandez <jordi@ximian.com>
14733
14734         * ListControl.cs: honors OnPositionChanged and default Selected Item
14735         * ListBox.cs: unselect items when clearing
14736
14737 2005-04-27  Jackson Harper  <jackson@ximian.com>
14738
14739         * X11Keyboard.cs: Initialize a default keyboard and give a warning
14740         if a "correct" keyboard is not found. This will make us not crash,
14741         but might give some users bad keyboard layouts...seems to be the
14742         same thing rewind does.
14743
14744 2005-04-27  Jackson Harper  <jackson@ximian.com>
14745
14746         * BindingManagerBase.cs: Attach the current/position changed
14747         handlers to their respective events.
14748
14749 2005-04-27  Jackson Harper  <jackson@ximian.com>
14750
14751         * Control.cs: Make sure that the first WM_PAINT does a full draw,
14752         not just a blit.
14753         * ThemeWin32Classic.cs: Don't fill the background for picture
14754         boxes. This could overright user drawing.
14755         * ComboBox.cs: Just fill the clipping rect not the entire client
14756         rect when drawing the background. This prevents pieces of the
14757         image buffer from getting overwritten and is theoretically faster.
14758
14759 2005-04-26  Jordi Mas i Hernandez <jordi@ximian.com>
14760
14761         * ComboBox.cs: Databinding support fixes, fire missing events
14762         * ListControl.cs: implement missing methods and properties, fixes
14763         * ThemeWin32Classic.cs: Databiding support on Drawing
14764         * CheckedListBox.cs: Databinding support fixes, fire missing events
14765         * ListBox.cs: Databinding support fixes, fire missing events
14766         
14767 2005-04-25  Peter Bartok  <pbartok@novell.com>
14768
14769         * LinkLabel.cs: Length of LinkArea is not allowed to be negative
14770
14771 2005-04-25  Jackson Harper  <jackson@ximian.com>
14772
14773         * TreeView.cs: Use the horizontal scrollbars height not width when
14774         determining how much of the client area is available.
14775
14776 2005-04-25  Jackson Harper  <jackson@ximian.com>
14777
14778         * Control.cs: Double buffering is handled differently now. As per
14779         the spec, the extra buffer is created in the WM_PAINT message and
14780         passed down to the control's drawing code.
14781         * GroupBox.cs:
14782         * Label.cs:
14783         * CheckBox.cs:
14784         * ProgressBar.cs:
14785         * RadioButton.cs:
14786         * ColorDialog.cs:
14787         * ComboBox.cs:
14788         * PropertyGridView.cs:
14789         * UpDownBase.cs:
14790         * MessageBox.cs:
14791         * MenuAPI.cs:
14792         * ListView.cs:
14793         * ButtonBase.cs:
14794         * SizeGrip.cs:
14795         * ScrollBar.cs:
14796         * ListBox.cs:
14797         * TrackBar.cs:
14798         * ToolBar.cs:
14799         * PictureBox.cs:
14800         * DateTimePicker.cs:
14801         * StatusBar.cs:
14802         * TreeView.cs: Update to new double buffering system.
14803         * MonthCalendar.cs: Uncomment block, as Capture is now
14804         working. Update to new double buffering
14805         * LinkLabel.cs: Lazy init the link collection. Update to new double buffering
14806         * PaintEventArgs.cs: New internal method allows us to set the
14807         graphics object. This is used for double buffering.
14808         * ThemeWin32Classic.cs: Give the picture box drawing code a clip
14809         rectangle. The internal paint_area var has been removed from
14810         StatusBar. The clipping rect should be used instead.
14811         * Theme.cs: Give the PictureBox drawing method a clipping rect.
14812         * TabPage.cs: The RefreshTabs method was removed, so just call the
14813         tab controls Refresh method now.
14814         * TabControl.cs: Update to new double buffering. Make sure the
14815         handle is created before sizing the tab pages, otherwise we will
14816         get stuck in a loop.
14817
14818 2005-04-24  Borja Sanchez Zamorano <borsanza@gmail.com>
14819
14820         * LinkLabel.cs: Fix typo, bug #74719; patch
14821           from Borja Sanchez Zamorano
14822
14823 2005-04-22  Jackson Harper  <jackson@ximian.com>
14824
14825         * TreeNode.cs: Implement Handle stuff.
14826         * TreeView.cs: Utility methods so nodes can get/lookup by handle.
14827
14828 2005-04-22  Jordi Mas i Hernandez <jordi@ximian.com>
14829
14830         * DataGridTextBoxColumn.cs: call base constructors, fixes
14831         * GridColumnStylesCollection.cs: missing events, methods, and functionality
14832         * GridTableStylesCollection.cs: fixes, check duplicate mapping names
14833         * DataGridTableStyle.cs: implements create default column styles
14834         * DataGridBoolColumn.cs: which types can handle
14835         * DataGrid.cs: missing methods, fixes, new functionality
14836         * DataGridColumnStyle.cs: fixes
14837
14838 2005-04-20  Alexander Olk  <xenomorph2@onlinehome.de>
14839         * FolderBrowserDialog.cs:
14840         - Use a thread to fill the TreeView
14841         - Adjusted some sizes
14842
14843 2005-04-19  Peter Bartok  <pbartok@novell.com>
14844
14845         * LinkLabel.cs: (Re-)create the pieces when setting the Text
14846           property. Fixes #74360.
14847
14848 2005-04-19  Jackson Harper  <jackson@ximian.com>
14849
14850         * XEventQueue.cs: Lock when getting the lockqueue size.
14851         * PictureBox.cs: Call base OnPaint
14852         
14853 2005-04-19  Peter Bartok  <pbartok@novell.com>
14854
14855         * XplatUIX11.cs: Fixed bug introduced with the HWND rewrite, Async
14856           messages were no longer being processed (this broke BeginInvoke)
14857
14858           
14859 2005-04-18  Jackson Harper  <jackson@ximian.com>
14860
14861         * TreeView.cs: buglet that caused node images to get drawn
14862         regardless of whether or not they were in the clipping rectangle.
14863
14864 2005-04-18  Jackson Harper  <jackson@ximian.com>
14865
14866         * CurrencyManager.cs: There are four rules for GetItemProperties:
14867         - If the type is an array use the element type of the array
14868         - If the type is a typed list, use the type
14869         - If the list contains an Item property that is not an object, use
14870         that property
14871         - use the first element of the list if there are any elements in
14872         the list.
14873         
14874 2005-04-17  Jackson Harper  <jackson@ximian.oom>
14875
14876         * TreeView.cs: Calculate plus minus and checkbox bounds when there is a
14877         click. This handles offsets for scrolling properly and reduces
14878         memory. Also fixed GetNode to not offset now that TopNode works
14879         properly.
14880         * TreeNode.cs: No longer need to track the plus minus or checkbox bounds.
14881         
14882 2005-04-17  Jackson Harper  <jackson@ximian.com>
14883
14884         * CursorConverter.cs: Initial implementation.
14885
14886 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14887
14888         * ListControl.cs: work towards complex data binding support on ListControl
14889         * CurrencyManager.cs: work towards complex data binding support on ListControl
14890         * ListBox.cs: work towards complex data binding support on ListControl
14891
14892
14893 2005-04-15  Jordi Mas i Hernandez <jordi@ximian.com>
14894
14895         * GridTableStylesCollection.cs: fixes name and constructor
14896         * DataGridTableStyle.cs: fixes
14897         * DataGridBoolColumn.cs: fixes names and constructors
14898         * DataGrid.cs: define methods and properties. Some init implementations
14899         * DataGridCell.cs: define methods and properties. Some init implementations
14900         * GridTablesFactory.cs: Define methods and properties
14901
14902 2005-04-15  Geoff Norton  <gnorton@customerdna.com>
14903
14904         * XplatUIOSX.cs:  Handle proper mouse tracking even if the current
14905         graphics port changes.  We still want the coordinates in global screen
14906         coordinates.
14907
14908 2005-04-14  Jackson Harper  <jackson@ximian.com>
14909
14910         * TreeView.cs: Handle clicks when plus minus is disabled. Don't
14911         check plus minus or checkbox clicks unless those features are enabled.
14912
14913 2005-04-14  Jackson Harper  <jackson@ximian.com>
14914
14915         * TreeView.cs: Add methods for setting the top and bottom visible
14916         nodes. TreeNode::EnsureVisible uses these methods.
14917         * TreeNode.cs: Implement EnsureVisible
14918
14919 2005-04-13  Jordi Mas i Hernandez <jordi@ximian.com>
14920
14921         * Form.cs: Pospone menu assignation if the window has not been created yet
14922         * XplatUIWin32.cs: Fixes Win32SetWindowPos, then does not change window
14923         size and position
14924
14925 2005-04-12  Jackson Harper  <jackson@ximian.com>
14926
14927         * TreeView.cs: Set the TopNode properly when scrolling
14928         occurs. This has the added benifit of reducing the amount of
14929         walking that needs to be done when drawing. Also removed an old
14930         misleading TODO.
14931         * OpenTreeNodeEnumerator.cs: Fix moving backwards.
14932         
14933 2005-04-11  Jordi Mas i Hernandez <jordi@ximian.com>
14934
14935         * Timer.cs: fixes interval setting when the timer is already enabled
14936         
14937 2005-04-10  Alexander Olk  <xenomorph2@onlinehome.de>
14938
14939         * FolderBrowserDialog.cs: First approach
14940
14941 2005-04-09  Peter Bartok  <pbartok@novell.com>
14942
14943         * FolderBrowserDialog: Added
14944
14945 2005-04-07  Jordi Mas i Hernandez <jordi@ximian.com>
14946
14947         * LinkLabel.cs: move drawing code into the theme
14948         * ThemeWin32Classic.cs: drawing code and painting background bugfix
14949         * Theme.cs: define DrawLinkLabel method
14950
14951 2005-04-05  Jackson Harper  <jackson@ximian.com>
14952
14953         * BindingContext.cs: Use weak references so these bad actors don't
14954         stay alive longer then they need to.
14955
14956 2005-04-05  Jackson Harper  <jackson@ximian.com>
14957
14958         * ListControl.cs: Basic implementation of complex databinding.
14959         * ComboBox.cs:
14960         * ListBox.cs: Add calls to ListControl databinding methods.
14961
14962 2005-04-05  Alexander Olk  <xenomorph2@onlinehome.de>
14963
14964         * FileDialog.cs:
14965           - Don't change PopupButtonState to Normal when the
14966             PopupButton gets pressed several times.
14967           - Renamed ButtonPanel to PopupButtonPanel
14968
14969 2005-04-05  Jordi Mas i Hernandez <jordi@ximian.com>
14970
14971         * ColorDialog.cs: Use cached objects instead of creating them
14972         * LinkLabel.cs: Use cached objects instead of creating them
14973         * Splitter.cs: Use cached objects instead of creating them
14974         * FontDialog.cs: Use cached objects instead of creating them
14975         * PropertyGridView.cs: Use cached objects instead of creating them
14976         * MessageBox.cs: Use cached objects instead of creating them
14977         * FileDialog.cs: Use cached objects instead of creating them
14978         * ThemeWin32Classic.cs: Use cached objects instead of creating them
14979         * TreeView.cs: Use cached objects instead of creating them
14980         
14981 2005-04-04  Jordi Mas i Hernandez <jordi@ximian.com>
14982
14983         * Control.cs: use Equals to compare the font since no == op
14984         * ScrollBar.cs: use Equals to compare the font since no == op
14985
14986 2005-04-04  Alexander Olk  <xenomorph2@onlinehome.de>
14987
14988         * SaveFileDialog.cs: Open stream in OpenFile with FileMode Create
14989
14990 2005-04-01  Jackson Harper  <jackson@ximian.com>
14991
14992         * Binding.cs: Implement IsBinding.
14993         * BindingManagerBase.cs:
14994         * PropertyManager.cs:
14995         * CurrencyManager.cs: Add IsSuspended property.
14996
14997 2005-04-01  Jackson Harper  <jackson@ximian.com>
14998
14999         * Binding.cs: Had some IsAssignableFrom calls backwards.
15000
15001 2005-04-01  Jackson Harper  <jackson@ximian.com>
15002
15003         * Binding.cs: Handle null data members when pulling data.
15004         * PropertyManager.cs: Handle the data member being a property that
15005         does not exist.
15006
15007 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15008
15009         * DataGridTextBoxColumn.cs: fixes signature
15010         * DataGrid.cs: calls right constructor
15011
15012 2005-04-01  Jordi Mas i Hernandez <jordi@ximian.com>
15013
15014         * DataGridTextBoxColumn.cs: implements DataGridTextBoxColumn class
15015         * GridColumnStylesCollection.cs: implements GridColumnStylesCollection
15016         * GridTableStylesCollection.cs: implements GridTableStylesCollection
15017         * DataGridTableStyle.cs: implements DataGridTableStyle
15018         * DataGridBoolColumn.cs: implements DataGridBoolColumn
15019         * DataGridTextBox.cs: implements DataGridTextBox
15020         * DataGridColumnStyle.cs: implements DataGridColumnStyle
15021
15022 2005-03-31  Alexander Olk  <xenomorph2@onlinehome.de>
15023
15024         * FileDialog.cs: Added simple PopupButton class for ButtonPanel
15025
15026 2005-03-29  Peter Bartok  <pbartok@novell.com>
15027
15028         * Application.cs:
15029           - Properly implemented CompanyName property
15030           - Fixed LocalUserAppDataPath and UserAppDataPath, now properly
15031             returns a path that includes CompanyName, ProductName and
15032             Version (fixes bug #70330)
15033
15034 2005-03-29  Stefan Buehler  <sbuehler@gmx.ch>
15035
15036         * TabPage.cs: Don't use Owner.DisplayRectangle unless owner is valid,
15037           fixes bug #72588.
15038
15039 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15040
15041         * FileDialog.cs, SaveFileDialog.cs OpenFileDialog.cs:
15042         
15043           - Added ReadOnly CheckBox
15044           - Further refactoring: moved some code from Open-/SaveFileDialog
15045             to FileDialog
15046
15047 2005-03-28  Alexander Olk  <xenomorph2@onlinehome.de>
15048
15049         * OpenFileDialog.cs: Fixed CheckFileExists
15050         * FileDialog.cs:
15051           Moved FileView and DirComboBox outside FileDialog class.
15052           They can now be used outside FileDialog
15053
15054 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15055
15056         * FileDialog.cs: Added a contextmenu to change ShowHiddenFiles
15057         * SaveDialog.cs, OpenFileDialog.cs: Fixes for Reset() method
15058
15059 2005-03-27  Alexander Olk  <xenomorph2@onlinehome.de>
15060
15061         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15062           - Added missing CreatePrompt property in SaveDialog
15063           - Overall SaveDialog handling should be better now
15064           - Added non standard ShowHiddenFiles property
15065           - Added extension, CreatePrompt and OverwritePrompt support in SaveDialog
15066           - Added InitialDirectory and RestoreDirectory support
15067
15068 2005-03-26  Alexander Olk  <xenomorph2@onlinehome.de>
15069
15070         * FileDialog.cs: Made dirComboBox usable
15071
15072 2005-03-24  Alexander Olk  <xenomorph2@onlinehome.de>
15073
15074         * FileDialog.cs: Added Filter support (case sensitiv)
15075
15076 2005-03-24  Jackson Harper  <jackson@ximian.com>
15077
15078         * TabControl.cs: Need a couple more pixels for the lines.
15079
15080 2005-03-23  Jackson Harper  <jackson@ximian.com>
15081
15082         * TabControl.cs: Give the tab page focus when it is selected.
15083
15084 2005-03-23  Jackson Harper  <jackson@ximian.com>
15085
15086         * TabControl.cs: Account for the drawing of tabs borders when
15087         invalidating. If the slider was clicked dont do click detection on
15088         the tabs.
15089
15090 2005-03-23  Jackson Harper  <jackson@ximian.com>
15091
15092         * TabControl.cs: Fix typo, emilinates an unneeded expose event.
15093
15094 2005-03-22  Jonathan Chambers  <jonathan.chambers@ansys.com>
15095
15096         * CategoryGridEntry.cs: Added
15097         * GridItem.cs: Added helper properties
15098         * PropertyGridTextBox.cs: Custom textbox control for PropertyGrid.
15099         * GridEntry.cs: Updated code for collection
15100         * PropertyGrid.cs: Cleaned up some formatting
15101         * PropertyGridView.cs: Added drop down functionality for enums.
15102         * GridItemCollection.cs: Added enumerator logic
15103         * PropertyGridEntry.cs: Added
15104
15105 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15106
15107         * FileDialog.cs:
15108           - Removed unnecessary commented code
15109           - Fixed handling for entering the filename manually in the combobox
15110
15111 2005-03-19  Alexander Olk  <xenomorph2@onlinehome.de>
15112
15113         * FileDialog.cs, OpenFileDialog.cs: OpenFileDialog Multiselect now works
15114
15115 2005-03-18  Peter Bartok  <pbartok@novell.com>
15116
15117         * ThemeWin32Classic.cs: Moved listview column headers a bit, to avoid
15118           them being touching the border
15119
15120 2005-03-18  Peter Bartok  <pbartok@novell.com>
15121
15122         * TextControl.cs: Quick hack to center text better
15123
15124 2005-03-18  Peter Bartok  <pbartok@novell.com>
15125
15126         * ControlPaint.cs:
15127           - Don't throw NotImplemented exceptions, just print a notice once
15128             instead (requested by Miguel). This makes running existing SWF
15129             apps a bit easier
15130         * Control.cs:
15131           - Commented out Drag'N'Drop XplatUI call (no driver support yet)
15132           - Added context menu trigger on right click
15133         * Panel.cs: Trigger invalidate on resize
15134         * StatusBar.cs:
15135           - Removed old double-buffer drawing
15136           - Added ResizeRedraw style to force proper update of statusbar
15137         * ListView.cs:
15138           - Removed debug output
15139         * ThemeWin32Classic.cs:
15140           - Fixed drawing of status bar, now draws Text property if there
15141             are no defined panels
15142
15143 2005-03-18  Jackson Harper  <jackson@ximian.com>
15144
15145         * ImageList.cs: When the image stream is set pull all the images
15146         from it.
15147         * ImageListStreamer.cs: Implement reading image list streams.
15148
15149 2005-03-18  Peter Bartok  <pbartok@novell.com>
15150
15151         * ThemeWin32Classic.cs (DrawPictureBox):
15152           - Fixed calculations for centered drawing
15153           - Fixed drawing for normal mode, not scaling the image on normal
15154
15155 2005-03-18  Peter Bartok  <pbartok@novell.com>
15156
15157         * ComboBox.cs: Now also firing the OnKeyPress events for the embedded
15158           textbox
15159         * FileDialog.cs:
15160           - Made Open/Save button the accept button for FileDialog
15161           - Tied the cancel button to the IButtonControl cancel button
15162           - Save/Open now properly builds the pathname
15163           - Now handles user-entered text
15164           - Preventing crash on right-click if no item is selected
15165           - Fixed Text property, now uses contents of textbox
15166           - Fixed SelectedText property, now just returns the text part that
15167             is selected in the text box
15168
15169 2005-03-18  Jackson Harper  <jackson@ximian.com>
15170
15171         * ThemeWin32Classic.cs: Use the proper func for drawing the focus
15172         rect, make sure to de-adjust the interior rect after drawing the
15173         tab text.
15174
15175 2005-03-18  Peter Bartok  <pbartok@novell.com>
15176
15177         * MenuAPI.cs: Remove menu *before* executing selected action to
15178           prevent the menu from 'hanging around'
15179           
15180 2005-03-17  Geoff Norton  <gnorton@customerdna.com>
15181
15182         * XplatUIOSX.cs: Implemented WorkingArea property
15183
15184 2005-03-17  Peter Bartok  <pbartok@novell.com>
15185
15186         * XplatUIX11.cs: Fixed menu coord calculations
15187         * MenuAPI.cs: Now using new ScreenToMenu()/MenuToScreen() methods
15188           for calculating offsets
15189
15190 2005-03-17  Peter Bartok  <pbartok@novell.com>
15191
15192         * Hwnd.cs: Do not consider menu presence for default client
15193           rectangle location/size
15194         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs, XplatUIOSX.cs,
15195           XplatUIWin32.cs: Added MenuToScreen() and ScreenToMenu() coord
15196           translation functions
15197         * FileDialog.cs: Fixed (what I presume is a) typo
15198
15199 2005-03-17  Jonathan Gilbert  <logic@deltaq.org>
15200
15201         * XplatUIX11.cs: Added call to XInitThreads() to allow multi-threaded
15202           X access (avoids X-Async errors)
15203
15204 2005-03-16  Jackson Harper  <jackson@ximian.com>
15205
15206         * TabControl.cs: Raise the SelectedIndexChanged event.
15207
15208 2005-03-16  Alexander Olk  <xenomorph2@onlinehome.de>
15209
15210         * FileDialog.cs, OpenFileDialog.cs, SaveFileDialog.cs:
15211           - Removed vertical ToolBar and replaced it with a custom panel
15212             (desktop and home button already work)
15213           - Added Help button (some controls get resized or relocated then)
15214           - Draw correct text depending on Open or Save.
15215           - Fixed some typos...
15216
15217 2005-03-16  Jordi Mas i Hernandez <jordi@ximian.com>
15218
15219         * ScrollBar.cs:
15220           - Only change Maximum and Minimum when need it (bug fix)
15221
15222 2005-03-15  Peter Bartok  <pbartok@novell.com>
15223
15224         * Form.cs: Use Handle for icon, to trigger creation if
15225           the window does not yet exist
15226         * Control.cs:
15227           - CanSelect: Slight performance improvement
15228           - Focus(): Preventing possible recursion
15229           - Invalidate(): Removed ControlStyle based clear flag setting
15230           - WM_PAINT: fixed logic for calling OnPaintBackground
15231           - WM_ERASEBKGND: Fixed logic, added call to new driver method
15232             EraseWindowBackground if the control doesn't paint background
15233         * XplatUIWin32.cs:
15234           - Moved EraseWindowBackground() method to internal methods
15235           - Removed unused WM_ERASEBKGND handling in GetMessage; msg never comes;
15236             is sent via SendMessage on BeginPaint call on Win32
15237         * XplatUIX11.cs:
15238           - Added EraseWindowBackground() method
15239           - No longer sends WM_ERASEBKGND on .Expose, but on call to
15240             PaintEventStart, which more closely matches Win32 behaviour
15241           - Fixed Invalidate() call, now updates new ErasePending Hwnd property
15242           - Fixed SetFocus() to properly deal with client and whole windows
15243         * Hwnd.cs: Added ErasePending property
15244         * XplatUIOSX.cs: Stubbed EraseWindowBackground() method
15245         * XplatUI.cs, XplatUIDriver.cs: Added EraseWindowBackground() method
15246
15247 2005-03-12  Geoff Norton  <gnorton@customerdna.com>
15248
15249         * XplatUIOSX.cs:
15250           - Fix hard loop when timers exist.
15251           - Fix bugs with middle and right click for 3 button mice.
15252
15253 2005-03-11  Peter Bartok  <pbartok@novell.com>
15254
15255         * XplatUIX11.cs:
15256           - get_WorkingArea: Need to call X directly, GetWindowPos only
15257             returns cached data now
15258           - Added sanity check to GetWindowPos hwnd usage
15259
15260 2005-03-11  Jackson Harper  <jackson@ximian.com>
15261
15262         * BindingManagerBase.cs: This method isn't used anymore as
15263         PullData now updates the data in the control.
15264
15265 2005-03-11  Jordi Mas i Hernandez <jordi@ximian.com>
15266
15267         * Form.cs: fixes menu drawing on X11
15268         * MenuAPI.cs:  fixes menu drawing on X11
15269
15270 2005-03-11  Peter Bartok  <pbartok@novell.com>
15271
15272         * Control.cs: Changed OnCreateControl behaviour based on a suggestion
15273           from Jonathan Gilbert; should fix bug #73606
15274         * XplatUIX11.cs: Fixed NC Mouse message coordinates, they need to be
15275           in Screen coordinates. Thanks, Jordi.
15276         * Form.cs: Added missing attribute
15277
15278 2005-03-11  Peter Bartok  <pbartok@novell.com>
15279
15280         * Form.cs:
15281           - Rudimentary Mdi support
15282           - Removed outdated FormParent code
15283           - Implemented lots of missing properties and methods, still missing
15284             transparency support
15285           - Added missing attributes
15286           - Implemented support for MaximumBounds
15287           - Added firing of various events
15288         * XplatUI.cs: Added SetIcon() method
15289         * XplatUIDriver.cs: Added SetIcon() abstract
15290         * XplatUIOSX.cs: Stubbed out SetIcon() method
15291         * XplatUIX11.cs:
15292           - Implemented SetIcon() support
15293           - Moved SetMenu() and SetBorderStyle() to proper alphabetical pos
15294           - Switched to unix line endings
15295         * XplatUIWin32.cs:
15296           - Made POINT internal so for can access it as part of MINMAX
15297           - Implemented SetIcon() support
15298           - Implemented support for CLIENTCREATESTRUCT (but might have to drop
15299             native Mdi support again, might have to go managed)
15300         * Control.cs: Now fires the StyleChanged event
15301         * MdiClient.cs: Added; still mostly empty
15302
15303 2005-03-10  Peter Bartok  <pbartok@novell.com>
15304
15305         * SaveFileDialog.cs: Added emtpy file
15306
15307 2005-03-08  Peter Bartok  <pbartok@novell.com>
15308
15309         * Control.cs: Fixed bug #73190; now invokes CreateControl (which
15310           in turn triggers OnCreateContro) when creating a handle for the
15311           first time.
15312         * TextControl.cs: Fixed endless loop in certain cases when
15313           replacing the current selection
15314
15315 2005-03-08  Jordi Mas i Hernandez <jordi@ximian.com>
15316
15317         * ScrollBar.cs:
15318           - Honors NewValue changes in Scroll events allowing apps to change it
15319           - Adds First and Last Scroll events
15320           - Fixes Thumb events
15321
15322 2005-03-07  Peter Bartok  <pbartok@novell.com>
15323
15324         * Hwnd.cs: Added DefaultClientRectangle property
15325         * XplatUI.cs: Now using the X11 driver Where() method, which provides
15326           more detailed debug information
15327         * XplatUIX11.cs:
15328           - Fixed size-change feedback loop, where we would pull an old size
15329             off the queue and mistakenly change our window's size to an
15330             earlier value
15331           - Now compressing ConfigureNotify events, to reduce looping and
15332             redraw issues
15333         * TextBoxBase.cs: Preventing crash when no text is set and ToString()
15334           is called
15335
15336 2005-03-07  Jackson Harper  <jackson@ximian.com>
15337
15338         * Binding.cs: Push data pushes from data -> property. Check if the
15339         property is readonly when attempting to set it.
15340
15341 2005-03-07  Jackson Harper  <jackson@ximian.com>
15342
15343         * Binding.cs: Format and parse data correctly. Use ASsignableFrom
15344         instead of IsSubclassOf. Pulling data now sets the value on the
15345         control.
15346         * PropertyManager.cs:
15347         * CurrencyManager.cs: Just need to pull data when updating now,
15348         because PullData will set the value on the control.
15349
15350 2005-03-04  Jackson Harper  <jackson@ximian.com>
15351
15352         * Binding.cs: Implement data type parsing and converting on pulled
15353         data. TODO: Are there more ways the data can be converted?
15354
15355 2005-03-04  Jackson Harper  <jackson@ximian.com>
15356
15357         * Binding.cs: Support <Property>IsNull checks. Also bind to the
15358         controls Validating method so we can repull the data when the
15359         control loses focus.
15360
15361 2005-03-03  Jordi Mas i Hernandez <jordi@ximian.com>
15362
15363         * ColumnHeader.cs:
15364           - Fixes null string format
15365           
15366         * ListView.cs:
15367           - Adds enum type checks
15368           - Fixes redrawing and recalc need after changing some properties
15369           - Fixes on focus_item set after the event
15370           - Fixes adding columns after the control has been created
15371           
15372         * ThemeWin32Classic.cs:
15373           - Fixes CheckBox focus rectangle
15374           - Fixes ColumnHeader drawing
15375
15376
15377 2005-03-03  Jackson Harper  <jackson@ximian.com>
15378
15379         * Binding.cs: Bind to <Property>Changed events so we can detect
15380         when properties are changed and update the data.
15381
15382 2005-03-02  Jordi Mas i Hernandez <jordi@ximian.com>
15383
15384         * ImageList.cs:
15385           - Changes 32-bit pixel format to Format32bppArgb to allow transparency
15386           - Fixes ImageList constructor with ImageList container
15387           - Fixes image scaling (wrong parameters at DrawImage)
15388
15389 2005-02-02  Jackson Harper  <jackson@ximian.com>
15390
15391         * Binding.cs: Make property searches case-insensitive. Eliminate
15392         some duplicated code.
15393
15394 2005-03-01  Jordi Mas i Hernandez <jordi@ximian.com>
15395
15396         * ComboBox.cs:
15397                 - Handle focus event
15398                 - Fix scrollbar events
15399                 - Discard highlighted item if remove it
15400                 - Fixes SelectedItem with strings
15401
15402 2005-03-01  Peter Bartok  <pbartok@novell.com>
15403
15404         * Control.cs:
15405           - Fixed Visible property, now follows (once again) parent chain
15406             to return false if any control in the chain is visible=false
15407           - Fixed OnParentVisibleChanged, now just calls OnVisibleChanged event
15408           - Fixed several places where is_visible instead of Visible was used
15409           - Implemented FIXME related to focus selection when setting focused
15410             control to be invisible
15411
15412         * XplatUIWin32.cs: Now using proper method to find out if window is
15413           visible. Thanks to Jordi for pointing it out
15414
15415 2005-02-28  Jordi Mas i Hernandez <jordi@ximian.com>
15416
15417         * ComboBox.cs: show/hide scrollbar instead of creating it
15418
15419 2005-02-27  Jackson Harper  <jackson@ximian.com>
15420
15421         * CurrencyManager.cs: Add PositionChanged stuff.
15422
15423 2005-02-27  Peter Bartok  <pbartok@novell.com>
15424
15425         * XplatUI.cs, XplatUIDriver.cs: Added new GetMenuOrigin() method
15426         * XplatUIOSX.cs: Added GetMenuOrigin() stub
15427         * XplatUIWin32.cs: Implemented GetMenuOrigin()
15428         * XplatUIX11.cs:
15429           - Implemented GetMenuDC()
15430           - Implemented GetMenuOrigin()
15431           - Implemented ReleaseMenuDC()
15432           - Implemented generation of WM_NCPAINT message
15433           - Implemented generation and handling of WM_NCCALCSIZE message
15434         * Form.cs: Added debug helper message for Jordi's menu work
15435         * Hwnd.cs:
15436           - Modified ClientRect property; added setter, fixed getter to handle
15437             setting of ClientRect
15438           - Added MenuOrigin property
15439
15440 2005-02-26  Peter Bartok  <pbartok@novell.com>
15441
15442         * XplatUIX11.cs:
15443           - Destroys the caret if a window that's being destroyed contains it
15444           - Ignores expose events coming from the X11 queue for windows that
15445             already are destroyed
15446           - Now uses the proper variable for handling DestroyNotify, before we
15447             marked the wrong window as destroyed
15448           - Improved/added some debug output
15449
15450 2005-02-26  Peter Bartok  <pbartok@novell.com>
15451
15452         * X11Keyboard.cs: Fixes to work on 64bit systems
15453
15454 2005-02-26  Peter Bartok  <pbartok@novell.com>
15455
15456         * Control.cs:
15457           - Now calling OnHandleDestroyed from DestroyHandle()
15458             instead of Dispose()
15459           - Removed bogus call to controls.Remove() from DestroyHandle()
15460
15461 2005-02-26  Peter Bartok  <pbartok@novell.com>
15462
15463         * Control.cs: Properly destroy child windows when our handle is
15464           destroyed
15465
15466 2005-02-25  Peter Bartok  <pbartok@novell.com>
15467
15468         * XplatUI.cs:
15469           - Added 'DriverDebug' define to allow tracing XplatUI API calls
15470           - Alphabetized Static Methods and Subclasses
15471
15472         * XplatUIX11.cs:
15473           - Added XException class to allow custom handling of X11 exceptions
15474           - Created custom X11 error handler, tied into XException class
15475           - Added support for MONO_XEXCEPTIONS env var to allow the user
15476             to either throw an exception on X errors or continue running
15477             after displaying the error
15478           - Added handling of DestroyNotify message
15479           - Added handler for CreateNotify message (still disabled)
15480           - Improved (tried to at least) Where method to provide file and lineno
15481         * X11Structs.cs:
15482           - Added XErrorHandler delegate
15483           - Added XRequest enumeration (to suppor translation of errors)
15484
15485 2005-02-25  Jackson Harper  <jackson@ximian.com>
15486
15487         * PropertyManager.cs: Implement editing features
15488         * CurrencyManager.cs:
15489         * Binding.cs: First attempt at UpdateIsBinding
15490         * BindingManagerBase.cs: Call UpdateIsBinding before
15491         pushing/pulling data.
15492
15493 2005-02-25  Jordi Mas i Hernandez <jordi@ximian.com>
15494
15495         * MenuAPI.cs: Respect disabled items
15496         * ThemeWin32Classic.cs
15497                 - Caches ImageAttributes creation for DrawImageDisabled
15498                 - Fixes vertical menu line drawing
15499                 - Draws disabled arrows in disable menu items
15500
15501 2005-02-24  Peter Bartok  <pbartok@novell.com>
15502
15503         * Hwnd.cs:
15504           - Added UserData property to allow associating arbitrary objects
15505             with the handle
15506           - Fixed leak; now removing Hwnd references from static windows array
15507         * XplatUIWin32.cs:
15508           - Fixed Graphics leak in PaintEventEnd
15509           - Removed usage of HandleData, switched over to Hwnd class
15510         * HandleData.cs: Removed, obsoleted by Hwnd.cs
15511
15512 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15513
15514         * ThemeWin32Classic.cs: Adds Cliping to TrackBar drawing
15515         * ScrollBar.cs: Fixes bug
15516         * TrackBar.cs: removes death code, clipping, mimize refreshes,
15517          keyboard navigation enhancements
15518
15519 2005-02-24  Jordi Mas i Hernandez <jordi@ximian.com>
15520
15521         * Control.cs: Call DefWndProc at WM_PAINT only if UserPaint not defined
15522         * GroupBox.cs: Add control styles
15523         * Label.cs: Add control styles
15524         * UpDownBase.cs: Add control styles
15525         * ListBox.cs: Add control styles
15526         * XplatUIWin32.cs: Fixes wrong parameter order
15527
15528
15529 2005-02-23  Chris Bacon  <chris.bacon@docobo.co.uk>
15530
15531         * ListView.cs: Assign owner for ColumnHeader. Patch by Chris Bacon
15532
15533 2005-02-23  Jackson Harper  <jackson@ximian.com>
15534
15535         * PropertyManager.cs: Implement property binding. This doesn't
15536         seem to work yet though as (I think) there are some bugs in
15537         System.ComponentModel.PropertyDescriptor.
15538         * BindingContext.cs: Use new PropertyManager constructor.
15539
15540 2005-02-23  Jordi Mas i Hernandez <jordi@ximian.com>
15541
15542         * ProgressBar.cs: use clip region in ProgressBar
15543         * ThemeWin32Classic.cs: use clip region in ProgressBar
15544
15545 2004-02-22  Jackson Harper  <jackson@ximian.com>
15546
15547         * BindingsCollection.cs: Remove some debug code.
15548
15549 2005-02-22  Jackson Harper  <jackson@ximian.com>
15550
15551         * BindingContext.cs:
15552         * ControlBindingsCollection.cs:
15553         * CurrencyManager.cs:
15554         * Binding.cs:
15555         * BindingManagerBase.cs: Initial implementation
15556         * BindingsCollection.cs: Add an internal contains method that the
15557         BindingManagerBase uses to ensure bindings aren't added twice to
15558         the collection.
15559         * PropertyManager.cs: Stubbed out.
15560         * Control.cs:
15561         * ContainerControl.cs: Hook up databinding
15562         
15563 2005-02-22  Geoff Norton  <gnorton@customerdna.com>
15564
15565         * XplatUIOSX.cs:
15566           OSXStructs.cs: Refactored to handle the new Hwnd NC logic area.
15567           Fixed Invalidate/Update chain.
15568           Fixed tons of other minor bugs (this is almost a complete rewrite).
15569
15570 2005-02-22  Jordi Mas i Hernandez <jordi@ximian.com>
15571
15572         * ComboBox.cs: do subcontrol creation when the control is created
15573
15574 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15575
15576         * Label.cs: fixes image drawing (image and imagelist)
15577         * ThemeWin32Classic.cs: cache brushes
15578         
15579 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15580
15581         * Form.cs: Move menu drawing code to Theme class
15582         * ComboBox.cs: Move ComboBox drawing code to Theme class
15583         * MenuItem.cs: Move menu drawing code to Theme class
15584         * MenuAPI.cs: Move menu drawing code to Theme class
15585         * ThemeWin32Classic.cs: New methods
15586         * CheckedListBox.cs: Move CheckedListbox drawing code to Theme class
15587         * ListBox.cs: Move Listbox drawing code to Theme class
15588         * Theme.cs: New methods
15589
15590 2005-02-20  Peter Bartok  <pbartok@novell.com>
15591
15592         * Control.cs:
15593           - Fixed ProcessKeyEventArgs to also handle WM_SYSKEY messages (and
15594             only process mnemonics on those)
15595           - Fixed event sequence for key handling; first calling
15596             ProcessKeyEventArgs now
15597         * TextBoxBase.cs:
15598           - Removed WM_KEYDOWN hook, instead we now use ProcessDialogKey()
15599             for processing non-character keys
15600           - Fixed WM_CHAR to generate proper event sequence before processing
15601         * XplatUIWin32.cs: Added ALT key state to ModifierKeys property
15602           generation
15603
15604 2005-02-19  Peter Bartok  <pbartok@novell.com>
15605
15606         * UserControl.cs: Added TextChanged event; added attributes
15607         * SizeGrip.cs: Implemented resizing and optional display of grip
15608         * Form.cs: Fixed attribute
15609         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs:
15610           Changed meaning of ScrollWindow bool argument; instead of the
15611           clear attribute (which will be true usually anyway), it gives the
15612           option of moving child controls as well.
15613         * XplatUIX11.cs:
15614           - Changed to match new ScrollWindow argument
15615           - Fixed GetWindowPos/SetWindowPos behaviour for toplevel controls,
15616             now handles the implicit parent window a WM puts around us
15617         * ScrollableControl.cs: Implemented (not the prettiest, but it seems
15618           to work)
15619         * TextBoxBase.cs: Adjusted to new ScrollWindow arguments
15620         * TreeView.cs: Adjusted to new ScrollWindow arguments
15621
15622 2005-02-19  Jordi Mas i Hernandez <jordi@ximian.com>
15623
15624         * Form.cs: Menu integration with non-client area
15625         * MenuItem.cs: Menu integration with non-client area
15626         * MenuAPI.cs: Menu integration with non-client area
15627
15628 2005-02-18  Peter Bartok  <pbartok@novell.com>
15629
15630         * MethodInvoker.cs: Added
15631         * MdiLayout.cs: Added
15632         * SendKeys.cs: Started implementation
15633         * ErrorIconAlignment.cs: Added
15634
15635 2005-02-18  Peter Bartok  <pbartok@novell.com>
15636
15637         * XplatUIWin32.cs: Implemented SetMenu(); fixed GetMenuDC()
15638         * Form.cs: Added handling for Menu-related Non-client messages
15639
15640 2005-02-17  Peter Bartok  <pbartok@novell.com>
15641
15642         * UpDownBase.cs: Fixed typo, compilation errors
15643         * DomainUpDown.cs: Fixed attribute value
15644
15645 2005-02-16  Miguel de Icaza  <miguel@novell.com>
15646
15647         * UpDownBase.cs: Attach entry events.
15648         Propagate events.
15649         Add ForeColor property, Focused, InterceptArrowKeys (interception
15650         does not work yet).
15651
15652 2005-02-17  Jordi Mas i Hernandez <jordi@ximian.com>
15653
15654         * Form.cs:
15655                 - Redraw non client are on Setmenu
15656                 - Calc proper menu starting point
15657
15658 2005-02-17  Peter Bartok  <pbartok@novell.com>
15659
15660         * Application.cs: Fixed message_filter check
15661
15662 2005-02-17  Peter Bartok  <pbartok@novell.com>
15663
15664         * Application.cs: Now calls registered message filters
15665         * DockStyle.cs: Fixed attribute
15666         * Form.cs: Fixed attribute
15667         * Menu.cs: Fixed attribute
15668         * ToolTip.cs: Fixed attribute
15669         * TreeNode.cs: Added missing attributes and arranged in regions
15670         * PropertyGrid.cs: Fixed signatures
15671         * TreeNodeCollection.cs: Added attributes
15672         * Splitter.cs: Added missing attributes; arranged into regions
15673         * TabPage.cs: Added missing attributes; arranged into regions
15674         * TextBoxBase.cs: Added missing attributes
15675         * TextBox.cs: Added missing attributes
15676         * ArrangeDirection.cs: Added missing attributes
15677         * TreeNodeConverter.cs: Added stub (needed for TreeNode)
15678         * ToolBarButton.cs: Fixed attributes
15679         * AnchorStyles.cs: Fixed attribute
15680         * TrackBar.cs: Fixed attributes
15681         * TabControl.cs: Added missing attributes and arranged into regions
15682         * ToolBar.cs: Fixed attribute
15683         * StatusBar.cs: Fixed signature, organized into regions and added
15684           attributes
15685         * StatusBarPanel.cs: Fixed attributes
15686         * ContentsResizedEventArgs.cs: Implemented
15687         * ContentsResizedEventHandler.cs: Implemented
15688         * DateBoldEventArgs.cs: Implemented
15689         * DateBoldEventHandler.cs: Implemented
15690         * UpDownEventArgs.cs: Implemented
15691         * UpDownEventHandler.cs: Implemented
15692         
15693 2005-02-16  Jordi Mas i Hernandez <jordi@ximian.com>
15694
15695         * Form.cs: first Menu NC refactoring
15696         * MenuAPI.cs: first Menu NC refactoring
15697         
15698 2005-02-16  Peter Bartok  <pbartok@novell.com>
15699
15700         * ImeMode.cs: Added missing attributes
15701         * Menu.cs: Fixed attribute
15702         * GroupBox.cs: Fixed attribute
15703         * Label.cs: Fixed attribute
15704         * ColorDialog.cs (RunDialog): Removed TODO attribute
15705         * ComboBox.cs: Fixed attributes
15706         * ListControl.cs: Added missing attributes
15707         * PropertyGrid.cs: Fixed attributes
15708         * Control.cs: Fixed attributes
15709         * ListViewItem.cs: Added TypeConverter attribute
15710         * NotifyIcon.cs: Fixed attributes
15711         * ListView.cs: Fixed attributes
15712         * ButtonBase.cs: Fixed attribute
15713         * ImageList.cs: Added missing attributes
15714         * ContainerControl.cs: Fixed signature
15715         * CheckedListBox.cs: Fixed attribute; added missing attributes
15716         * Panel.cs: Fixed attributes
15717         * PropertyTabChangedEventArgs.cs: Added missing attribute
15718         * PropertyValueChangedEventArgs.cs: Added missing attribute
15719         * Binding.cs: Fixed attribute
15720         * ListViewItemConverter: Implemented ListViewSubItemConverter class
15721         * ListBox.cs: Fixed attribute; added missing attributes;
15722         * ScrollableControl.cs: Added missing attributes
15723         * PictureBox.cs: Added missing attributes; implemented missing property
15724         * DateTimePicker.cs: Added missing attributes
15725         * Theme.cs (ToolWindowCaptionHeight): Fixed type
15726         * MonthCalendar.cs: Fixed attributes
15727         * StatusBarPanel.cs: Added missing attributes
15728         * SystemInformation.cs (ToolWindowCaptionHeight): Fixed type
15729
15730 2005-02-16  Peter Bartok  <pbartok@novell.com>
15731
15732         * TextBoxBase.cs: The previous method to enforce height yet remember
15733           the requested high was less than ideal, this is an attempt to do
15734           it better.
15735         * Control.cs: Added comment about possible problem
15736         * Copyright: Updated format
15737         * GridItemType.cs: Fixed swapped values
15738
15739 2005-02-15  Jackson Harper  <jackson@ximian.com>
15740
15741         * BaseCollection.cs: Use property so we never access an
15742         uninitialized list. Also initialize the list in the property.
15743
15744 2005-02-15  Peter Bartok  <pbartok@novell.com>
15745
15746         * GroupBox.cs (ProcessMnemonic): Implemented
15747         * Label.cs (ProcessMnemonic): Implemented
15748         * ThemeWin32Classic.cs (DrawGroupBox): Added stringformat to show
15749           hotkeys
15750
15751 2005-02-15  Peter Bartok  <pbartok@novell.com>
15752
15753         * RadioButton.cs (ProcessMnemonic): Implemented
15754         * CheckBox.cs (ProcessMnemonic): Implemented
15755         * Control.cs:
15756           - Added handling of WM_SYSxxx keyboard messages to support mnemonic
15757             handling
15758           - Added internal method to allow calling ProcessMnemonic from other
15759             controls
15760         * ContainerControl.cs:
15761           - Started support for handling validation chain handling
15762           - Implemented ProcessMnemonic support
15763           - Added Select() call to Active, to make sure the active control
15764             receives focus
15765         * Form.cs: Setting toplevel flag for Forms (this was lost in the
15766           FormParent rewrite)
15767         * ThemeWin32Classic.cs:
15768           - DrawCheckBox(): Fixed stringformat to show hotkeys
15769           - DrawRadioButton(): Fixed stringformat to show hotkeys
15770         * CommonDialog.cs: Removed WndProc override, not needed
15771
15772 2005-02-14  Peter Bartok  <pbartok@novell.com>
15773
15774         * XplatUIX11.cs: Fixed NotImplemented exceptions for properties,
15775           missed those in the rewrite
15776
15777 2005-02-14  Miguel de Icaza  <miguel@novell.com>
15778
15779         * NumericUpDown.cs (Increment, ToString): Add.
15780         (DecimalPlaces): implement.
15781         
15782         Add attributes.
15783         
15784         * UpDownBase.cs: Add the designer attributes.
15785
15786 2005-02-13  Peter Bartok  <pbartok@novell.com>
15787
15788         * Panel.cs: Removed border_style, now in Control
15789         * XplatUIDriver.cs: Added SetBorderStyle, SetMenu, GetMenuDC and
15790           ReleaseMenuDC Methods; renmaed ReleaseWindow to UngrabWindow
15791
15792 2005-02-13  Peter Bartok  <pbartok@novell.com>
15793
15794         * MouseButtons.cs: Added missing attributes
15795         * XplatUIStructs.cs: Added enumeration for title styles
15796         * LeftRightAlignment.cs: Added missing attributes
15797         * Hwnd.cs: Switched to use client_window as handle (slower, but makes
15798           it compatible with Graphics.FromHwnd()
15799         * SelectedGridItemChangedEventArgs.cs: Fixed property type
15800         * Keys.cs: Added missing attributes
15801         * SelectionRange.cs: Added missing attributes
15802         * SelectionRangeConverter.cs: Added
15803         * XplatUI.cs:
15804           - Introduced SetBorderStyle, SetMenu, GetMenuDC and
15805             ReleaseMenuDC methods
15806           - Renamed ReleaseWindow to UngrabWindow
15807           - Added proper startup notice to allow version identification
15808         * Form.cs:
15809           - Added missing attributes
15810           - Removed FormParent concept
15811         * Label.cs: Removed border_style field, now in Control
15812         * RadioButton.cs: Now properly selects RadioButton when focus is
15813           received
15814         * ThemeGtk.cs: Fixed SetDisplay call to match new X11 behaviour
15815         * Control.cs:
15816           - Added missing attributes
15817           - Added borderstyle handling
15818           - Removed FormParent concept support
15819           - Fixed calls to XplatUI to match changed APIs
15820           - Fixed bug that would case us to use disposed Graphics objects
15821           - Removed unneeded internal methods
15822           - PerformLayout(): Fixed to handle DockStyle.Fill properly
15823           - SelectNextControl(): Fixed to properly check common parents
15824         * TextBoxBase.cs: Removed border_style field (now in Control)
15825         * MessageBox.cs:
15826           - Patch by Robert Thompson (rmt@corporatism.org): Added icon support,
15827             fixed calculations for form size
15828           - Added support for localized strings and icons
15829           - Improved form size calculations, added border
15830         * ListView.cs: Removed border_style field (now in Control)
15831         * X11Structs.cs: Moved several structs from X11 driver here
15832         * X11Keyboard.cs: Changed debug message
15833         * Application.cs: Removed FormParent concept support
15834         * CommonDialog.cs:
15835           - Resetting end_modal flag
15836           - Removed FormParent concept support
15837         * NativeWindow.cs: Removed FormParent concept support
15838         * XplatUIX11.cs: Rewritten, now using the new Hwnd class, implementing
15839           Client area and Non-Client whole window to allow support for WM_NC
15840           messages
15841         * XplatUIOSX.cs: Updated to match latest driver spec; added exception
15842           prevent using it until it supports Hwnd as per Geoff Norton's request
15843         * ToolBar.cs: Fixed drawing, was not doing proper drawing
15844         * PictureBox.cs: Removed border_style field, now in Control
15845         * XplatUIWin32.cs: Added new driver methods
15846
15847 2005-02-12  Peter Bartok  <pbartok@novell.com>
15848
15849         * OpacityConverter.cs: Implemented
15850         * Hwnd.cs: Internal class to support drivers that need to emulate
15851           client area/non-client area window behaviour
15852
15853 2005-02-11  Peter Bartok  <pbartok@novell.com>
15854
15855         * KeysConverter.cs: Implemented
15856
15857 2005-02-11  Jordi Mas i Hernandez <jordi@ximian.com>
15858
15859         * Menu.cs: fixes methods GetContextMenu, GetMainMenu, ToString
15860         * LinkLabel: Added missing attributes
15861         * MainMenu.cs: fixes ToString
15862         * MenuItem.cs: fixes methods GetContextMenu, GetMainMenu
15863         * ListBox.cs: fixes event position
15864         * TrackBar.cs: adds missing attributes and events
15865         
15866 2005-02-10  Jordi Mas i Hernandez <jordi@ximian.com>
15867
15868         * MenuItem.cs: Use SystemInformation and bug fixes
15869         * MenuAPI.cs: Use SystemInformation and bug fixes
15870
15871 2005-02-09  Jackson Harper  <jackson@ximian.com>
15872
15873         * X11Keyboard.cs: We ignore some keys, but still need to set/reset
15874         their keystate otherwise things like VK_MENU get stuck "on".
15875
15876 2005-02-09  Kazuki Oikawa <kazuki@panicode.com>
15877
15878         * ListBox.cs: Fixes AddRange bug
15879         
15880 2005-02-09  Jordi Mas i Hernandez <jordi@ximian.com>
15881
15882         * ProgressBar.cs
15883                 - Add missing attributes
15884                 - Add missing method
15885                 
15886         * CheckedListBox.cs: Added missing attributes
15887                 - Add missing attributes
15888                 - Remove extra method
15889         
15890         * ComboBox.cs: Added missing attributes
15891         * VScrollBar.cs: Added missing attributes
15892         * ScrollBar.cs:  Added missing attributes
15893         * ListBox.cs: Fixes signature, add missing consts
15894         * LinkArea.cs:   Added missing attributes
15895         
15896
15897 2005-02-08  Peter Bartok  <pbartok@novell.com>
15898
15899         * Menu.cs: Added missing attributes
15900         * MainMenu.cs: Added missing attributes
15901         * GroupBox.cs: Added missing attributes
15902         * Label.cs: Added missing attributes
15903         * CheckBox.cs: Implemented CheckBoxAccessibleObject class
15904         * ColorDialog.cs:
15905           - Added Instance and Options properties
15906           - Added missing attributes
15907         * Cursor.cs: Made Serializable
15908         * NotifyIcon: Added missing attributes
15909         * MenuItem.cs: Added missing attributes
15910         * TextBoxBase.cs: Implemented AppendText() and Select() methods
15911         * Panel.cs: Added Missing attributes
15912         * MonthCalendar.cs: Fixed CreateParams
15913
15914 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15915         
15916         * LinkLabel.cs:
15917                 - Fixes signature
15918                 - Fixes issues with links
15919                 - Adds the class attributes
15920
15921 2005-02-08  Jordi Mas i Hernandez <jordi@ximian.com>
15922         
15923         * ComboBox.cs:
15924                 - Fixes button when no items available in dropdown
15925                 - Fixes repainting problems
15926                 - Adds the class attributes
15927                 
15928 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15929
15930         * XplatUIOSX.cs: Detect the menu bar and title bar height from
15931         the current theme.  Cache these on startup.
15932
15933 2005-02-07  Jackson Harper  <jackson@ximian.com>
15934
15935         * ScrollBar.cs: Give the correct clipping rect to the theme. Dirty
15936         the scrollbar buttons when they are depressed.
15937
15938 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15939
15940         * XplatUIOSX.cs: Really fix working at resolutions not 1024x768.
15941         Get the display size from the main displayid.  We currently dont
15942         support multiple display configurations.
15943
15944 2005-02-07  Geoff Norton  <gnorton@customerdna.com>
15945
15946         * XplatUIOSX.cs: Ensure the window doesn't get stuck behind the statusbar.
15947
15948 2005-02-07  Miguel de Icaza  <miguel@novell.com>
15949
15950         * UpDownBase.cs: Add ReadOnly and UpDownAlign properties.
15951
15952 2005-02-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
15953
15954         * PropertyGrid.cs: Updated. Patch by Jonathan Chambers
15955
15956 2005-02-04  Jackson Harper  <jackson@ximian.com>
15957
15958         * ThemeWin32Classic.cs: Respect the clipping rect when
15959         drawing. Only fill the intersection of clips and rects so there
15960         isn't a lot of large fills.
15961         * ScrollBar.cs: Pass the correct clipping rect to the theme
15962         engine. Remove some debug code.
15963
15964 2005-02-05  John BouAntoun  <jba-mono@optusnet.com.au>
15965         
15966         * DateTimePicker.cs:
15967                 - Fixed crash on DateTime.Parse, use Constructor instead
15968
15969 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15970         
15971         * MenuItem.cs:
15972         * MenuAPI.cs:
15973                 - Owner draw support (MeasureItem and DrawItem)
15974
15975 2005-02-04  Jordi Mas i Hernandez <jordi@ximian.com>
15976         
15977         *  Menu.cs:
15978                 - Implements FindMergePosition and MergeMenu functions (very poor documented)
15979                 - Fixes MenuItems.Add range
15980         * MenuItem.cs:
15981                 - MergeMenu and Clone and CloneMenu functions
15982
15983 2005-02-03  Jackson Harper  <jackson@ximian.com>
15984
15985         * ScrollBar.cs: Make abstract
15986         * ScrollableControl.cs: Create H/V scrollbars now that scrollbar
15987         is abstract.
15988
15989 2005-02-03  Jackson Harper  <jackson@ximian.com>
15990
15991         * ScrollBar.cs: First part of my scrollbar fixups. This removes
15992         all the unneeded refreshes and uses invalidates with properly
15993         computed rects.
15994
15995 2005-02-03  Peter Bartok  <pbartok@novell.com>
15996
15997         * ComponentModel.cs: Added
15998         * IDataGridEditingService.cs: Added
15999         * Timer.cs: Added missing attributes
16000         * ToolTip.cs: Added missing attributes
16001
16002 2005-02-03  Jonathan Chambers  <jonathan.chambers@ansys.com>
16003
16004         * PropertyGridView.cs: Added. Patch by Jonathan Chambers
16005
16006 2005-02-03  Peter Bartok  <pbartok@novell.com>
16007
16008         * ListBox.cs: Added missing attributes
16009
16010 2005-02-03  Jordi Mas i Hernandez <jordi@ximian.com>
16011         
16012         * ListBox.cs:
16013                 - Fixes font height after font change
16014                 - Avoid generating unnecesary OnSelectedIndexChanged on clearing
16015                 
16016 2005-02-02  Peter Bartok  <pbartok@novell.com>
16017
16018         * HandleData.cs: Introduced static methods to allow class
16019           to be more self-contained and track it's own HandleData objects
16020         * XplatUIOSX.cs, XplatUIWin32.cs, XplatUIX11.cs: Fixed usage of
16021           HandleData to use new static methods
16022
16023 2005-02-02  Jordi Mas i Hernandez <jordi@ximian.com>
16024
16025         * Combobox.cs:
16026                 - Fixes default size and PreferredHeight
16027                 - Missing events
16028                 - ObjectCollection.Insert implementation
16029                 
16030         * ListControl.cs
16031                 - Fixes signature
16032         * ListBox.cs:
16033                 - Several fixes
16034                 - ObjectCollection.Insert implementation
16035                 - No selection after clean
16036                 - Small fixes
16037
16038 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16039
16040         * ThemeWin32Classic.cs: quick fix to comboboxbutton pushed painting
16041
16042 2005-02-01  Jordi Mas i Hernandez <jordi@ximian.com>
16043
16044         * Combobox.cs:
16045                 - Caches ItemHeight calculation for OwnerDrawVariable
16046                 - Handles dropdown properly
16047                 - Fixes several minor bugs
16048
16049 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16050
16051         * ListBox.cs:
16052                 - Fixes 71946 and 71950
16053                 - Fixes changing Multicolumn on the fly
16054                 - Fixes keyboard navigation on Multicolumn listboxes
16055
16056 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16057         
16058         * XplatUIOSX.cs: Call ExitToShell in our teardown to avoid a
16059         crash reporter log.
16060
16061 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16062
16063         * XplatUIOSX.cs: Allow applications to actually exit.
16064
16065 2005-01-31  Geoff Norton  <gnorton@customerdna.com>
16066
16067         * XplatUIOSX.cs: SetWindowStyle implemented.  Reposition views in
16068         their parent at creation time rather than lazily later.  Fixes a major
16069         regression we were experiencing.
16070
16071 2005-01-31      John BouAntoun  <jba-mono@optusnet.com.au>
16072
16073         * ThemeWin32Classic.cs: more date time picker painting fixes
16074         * DateTimePicker.cs: more monthcalendar drop down fixes
16075         * MonthCalendar.cs: more CreateParams fixes to ensure correct drop down
16076
16077 2005-01-31  Jordi Mas i Hernandez <jordi@ximian.com>
16078
16079         * ScrollBar.cs:
16080                 - When moving the thumb going outside the control should stop the moving
16081                 - Adds the firing of missing events
16082                 - Fixes no button show if Size is not specified
16083                 - End / Home keys for keyboard navigation
16084
16085 2005-01-30  Peter Bartok  <pbartok@novell.com>
16086
16087         * NotifyIcon.cs (CalculateIconRect): Removed debug output and added
16088           sanity check to prevent theoretical loop
16089         * XplatUIWin32.cs (SetVisible): Removed debug output
16090         * XplatUIX11.cs (SystrayChange): Added sanity check
16091         * ScrollableControl.cs (OnVisibleChanged): Now calls base method
16092         * Control.cs (OnVisibleChanged): Added workaround for ParentForm
16093           behaviour, valid until the X11 client window rewrite is done
16094         * TextBox.cs (ctor): Setting proper default foreground and background
16095           colors
16096
16097 2005-01-30      John BouAntoun  <jba-mono@optusnet.com.au>
16098
16099         * Theme: Added DrawDateTimePicker to interface
16100         * ThemeWin32Classic.cs: Added DrawDateTimePicker (incomplete)
16101         * DateTimePicker.cs: Created (still needs keys and painting code)
16102         * DateTimePickerFormat.cs: added
16103         * MonthCalendar.cs: fixed CreateParams for popup window mode
16104           
16105 2005-01-29  Peter Bartok  <pbartok@novell.com>
16106
16107         * ControlPaint.cs: Fixed luminace value returned on achromatic colors,
16108           this should also the calculations for ligher/darker
16109         * Theme.cs: Fixed defaults for ScrollBar widths/heights
16110
16111 2005-01-29  Peter Bartok  <pbartok@novell.com>
16112
16113         * ArrangeDirection.cs: Added
16114         * ArrangeStartingPositon.cs: Added
16115         * SystemInformation.cs: Implemented
16116         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16117           XplatUIX11.cs, Theme.cs: Added/implemented new static properties
16118           used by SystemInformation class
16119         * X11Strucs.cs: Added XSizeHints structure
16120         * MenuAPI.cs:
16121           - Fixed CreateParams to make sure the menu window is always visible
16122           - TrackPopupMenu: Added check to make sure we don't draw the
16123             menu offscreen
16124
16125 2005-01-29  Peter Bartok  <pbartok@novell.com>
16126
16127         * HandleData.cs: Added method for altering invalid area
16128         * TextBoxBase.cs: Implemented TextLength
16129
16130 2005-01-28  Peter Bartok  <pbartok@novell.com>
16131
16132         * XplatUIX11.cs: Improvement over last patch, not sending
16133           the WM_PAINT directly anymore, instead we scroll any pending
16134           exposed areas and let the system pick out the WM_PAINT later
16135
16136 2005-01-28  Peter Bartok  <pbartok@novell.com>
16137
16138         * SWF.csproj: Deleted, no longer used. Instead,
16139           Managed.Windows.Forms/SWF.csproj should be used
16140         * XplatUIX11.cs: Instead of posting the WM_PAINT, we send it
16141           directly, to avoid a potential race condition with the next
16142           scroll
16143
16144 2005-01-28  Peter Bartok  <pbartok@novell.com>
16145
16146         * XplatUI.cs: Made class internal
16147
16148 2005-01-28  Jordi Mas i Hernandez <jordi@ximian.com>
16149
16150         * CheckedListBox.cs:
16151                 - Draw focus
16152                 - Fixed Drawing
16153                 - Missing methods and events
16154
16155 2005-01-27  Peter Bartok  <pbartok@novell.com>
16156
16157         * Application.cs (Run): Don't use form if we don't have one
16158
16159 2005-01-27  Peter Bartok  <pbartok@novell.com>
16160
16161         * TextBoxBase.cs (get_Lines): Fixed index off by one error
16162
16163 2005-01-27  Peter Bartok  <pbartok@novell.com>
16164
16165         * GridEntry.cs: Added; Patch by Jonathan S. Chambers
16166         * GridItem.cs: Added; Patch by Jonathan S. Chambers
16167         * GridItemCollection.cs: Added; Patch by Jonathan S. Chambers
16168         * GridItemType.cs: Added; Patch by Jonathan S. Chambers
16169         * PropertyGrid.cs: Added; Patch by Jonathan S. Chambers
16170         * PropertySort.cs: Added; Patch by Jonathan S. Chambers
16171         * PropertyTabChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16172         * PropertyTabChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16173         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16174         * PropertyValueChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16175         * SelectedGridItemChangedEventArgs.cs: Added; Patch by Jonathan S. Chambers
16176         * SelectedGridItemChangedEventHandler.cs: Added; Patch by Jonathan S. Chambers
16177
16178 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16179
16180         * Combobox.cs:
16181                 - Draw focus on Simple Combobox
16182                 - Fixes drawing issues
16183                 - fixes 71834
16184
16185 2005-01-27  Peter Bartok  <pbartok@novell.com>
16186
16187         * Form.cs:
16188           - Place window in default location, instead of hardcoded 0/0
16189           - Send initial LocationChanged event
16190         * Control.cs:
16191           - UpdateBounds after creation to find out where the WM placed us
16192           - Make sure that if the ParentForm changes location the Form
16193             is notified
16194         * XplatUIX11.cs: XGetGeometry will not return the coords relative
16195             to the root, but to whatever the WM placed around us.
16196             Translate to root coordinates before returning toplevel
16197             coordinates
16198         * XplatUIWin32.cs: Removed debug output
16199         * XplatUIOSX.cs, XplatUI.cs, XplatUIDriver.cs: Added toplevel
16200           flag to GetWindowPos, to allow translation of coordinates on X11
16201
16202 2005-01-27  Jordi Mas i Hernandez <jordi@ximian.com>
16203
16204         * ListBox.cs: connect LostFocus Event
16205
16206 2005-01-27  Peter Bartok  <pbartok@novell.com>
16207
16208         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16209           XplatUIX11.cs: Extended the Systray API
16210         * Form.cs: Removed debug output
16211         * Application.cs: Fixed focus assignment, always need to call
16212           XplatUI.Activate() since Form.Activate() has rules that may
16213           prevent activation
16214         * NotifyIcon.cs: Should be complete now
16215         * ToolTip.cs: Worked around possible timer bug
16216
16217 2005-01-27  Jackson Harper  <jackson@ximian.com>
16218
16219         * TabControl.cs:
16220         - Only invalidate the effected tabs when the
16221         selected index changes. This reduces drawing and gets rid of some
16222         flicker.
16223         - Only refresh if the tabs need to be shifted, otherwise only
16224         invalidate the slider button.
16225         - On windows the tabs are not filled to right if the slider is
16226         visible.
16227         
16228 2005-01-27  Jackson Harper  <jackson@ximian.com>
16229
16230         * TabControl.cs: Only refresh on mouseup if we are showing the
16231         slider. Also only invalidate the button whose state has changed.
16232
16233 2005-01-26  Peter Bartok  <pbartok@novell.com>
16234
16235         * XplatUI.cs, XplatUIDriver.cs: Added Systray methods
16236         * XplatUIWin32.cs: Implemented SystrayAdd(), SystrayChange()
16237           and SystrayRemove() methods
16238         * XplatUIOSX.cs: Stubbed Systray methods
16239         * XplatUIX11.cs:
16240           - Implemented SystrayAdd(), SystrayChange() and SystrayRemove()
16241             methods
16242           - Fixed broken XChangeProperty calls (marshalling messed up things)
16243         * X11Structs.cs: Added enums and structs required for Size hinting
16244         * NotifyIcon.cs: Added & implemented
16245
16246 2005-01-26  Jackson Harper  <jackson@ximian.com>
16247
16248         * TabControl.cs: Space vertically layed out tabs properly.
16249
16250 2005-01-26  Peter Bartok  <pbartok@novell.com>
16251
16252         * Form.cs (CreateClientParams): Always set the location to 0,0
16253           since we're a child window.
16254
16255         * Control.cs (SetVisibleCore): Always explicitly setting the location
16256           of a toplevel window, apparently X11 doesn't like to move windows
16257           while they're not mapped.
16258
16259 2005-01-26  Jackson Harper  <jackson@ximian.com>
16260
16261         * TabControl.cs: Implement FillToRight size mode with vertically
16262         rendered tabs.
16263
16264 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16265
16266         * ControlPaint.cs, ThemeWin32Classic.cs
16267                 - Fixes DrawFocusRectangle
16268
16269 2005-01-26  Jordi Mas i Hernandez <jordi@ximian.com>
16270
16271         * MenuAPI.cs:
16272                 - MenuBar tracking only starts when item is first clicked
16273                 - Fixes menu hidding for multiple subitems
16274                 - Unselect item in MenuBar when item Executed
16275                 - Fixes bug 71495
16276
16277 2005-01-25  Jordi Mas i Hernandez <jordi@ximian.com>
16278
16279         * ListControl.cs:
16280                 - IsInputKey for ListBox
16281         * ListBox.cs:
16282                 - Focus item
16283                 - Shift and Control item selection
16284                 - Implement SelectionMode.MultiExtended
16285                 - Fixes RightToLeft
16286         * ComboBox.cs:
16287                 - IsInputKey implemented
16288                 - Do not generate OnTextChangedEdit on internal txt changes
16289                 
16290 2005-01-23  Peter Bartok  <pbartok@novell.com>
16291
16292         * AccessibleObject.cs: Partially implemented Select()
16293         * MonthCalendar.cs: Added missing attributes and events
16294         * Form.cs: Fixed CreateParams behaviour, now controls derived from
16295           form can properly override CreateParams.
16296         * XplatUI.cs, XplatUIDriver.cs, XplatUIOSX.cs, XplatUIWin32.cs,
16297           XplatUIX11.cs: Dropped RefreshWindow method, not needed if
16298           Control performs Invalidate & Update
16299         * NativeWindow (CreateHandle): Added special handling for Form
16300           and Form.FormParent classes to allow overriding of From.CreateParams
16301         * Control.cs:
16302           - ControlNativeWindow: Renamed 'control' variable to more intuitive
16303             name 'owner'
16304           - ControlNativeWindow: Added Owner property
16305           - Removed usage of Refresh() on property changes, changed into
16306             Invalidate(), we need to wait until the queue is processed for
16307             updates, direct calls might cause problems if not all vars for
16308             Paint are initialized
16309           - Added call to UpdateStyles() when creating the window, to set any
16310             styles that CreateWindow might have ignored.
16311           - Added support for Form CreateParent overrides to UpdateStyles()
16312         * MessageBox.cs: Removed no longer needed FormParent override stuff,
16313           CreateParams are now properly overridable
16314         * CommonDialog.cs: Removed no longer needed FormParent override stuff,
16315           CreateParams are now properly overridable
16316
16317 2005-01-23  Miguel de Icaza  <miguel@ximian.com>
16318
16319         * UpDownBase.cs (ctor): Connect TextChanged in the entry to the
16320         OnTextBoxChanged.
16321
16322         Capture LostFocus and OnTextBoxChanged.  The later introduces a
16323         recursive invocation that I have not figured out yet.
16324
16325         Reset the timer when not using (it was accumulating).
16326
16327
16328         (OnTextBoxChanged): Set UserEdit to true here to track whether the
16329         user has made changes that require validation.
16330
16331         Reset changing to avoid loops.
16332
16333 2005-01-22  Miguel de Icaza  <miguel@ximian.com>
16334
16335         * NumericUpDown.cs: Display value at startup.
16336
16337         * UpDownBase.cs (Text): Do not call UpdateEditText here, only call
16338         ValidateEditText.
16339
16340         * NumericUpDown.cs: Minimum, Maximum, Text, Value properties
16341         filled in.  Added some basic parsing of text.
16342
16343         Still missing the OnXXX method overrides, and figuring out the
16344         events that must be emitted.
16345
16346         * UpDownBase.cs: Handle UserEdit on the Text property.
16347         
16348 2005-01-22  Jordi Mas i Hernandez <jordi@ximian.com>
16349
16350         * ComboBox.cs:
16351           - Fixes IntegralHeight
16352           - ToString method
16353
16354 2005-01-21  Jackson Harper  <jackson@ximian.com>
16355
16356         * TabControl.cs: Set the SelectedIndex property when SelectedTab
16357         is set so that the page visibility is updated and the tabs are
16358         sized correctly.
16359
16360 2005-01-21  Jackson Harper  <jackson@ximian.com>
16361
16362         * TabControl.cs: Use cliping rectangle for blitting. Give the
16363         theme the clipping rect so we can do clipping while
16364         drawing. Remove some debug code.
16365
16366 2005-01-21  Jackson Harper  <jackson@ximian.com>
16367
16368         * TabPage.cs: Add a new method so tab pages can force the tab
16369         control to recalculate the tab page sizes.
16370         * TabControl.cs: UpdateOwner needs to make the tab control recalc
16371         sizes.
16372
16373 2005-01-20  Jackson Harper  <jackson@ximian.com>
16374
16375         * ThemeWin32Classic.cs: Clip text to the staus bar panels rects.
16376
16377 2005-01-20  Jackson Harper  <jackson@ximian.com>
16378
16379         * TreeView.cs: Set the bounds for nodes properly. They were
16380         getting screwed up when checkboxes were not enabled, but images
16381         were.
16382
16383 2005-01-20  Jordi Mas i Hernandez <jordi@ximian.com>
16384
16385         * ListBox.cs:
16386                 - Owner draw support
16387                 - Fixes
16388                 
16389 2005-01-20  Jackson Harper  <jackson@ximian.com>
16390
16391         * XplatUIStructs.cs: More misc keys
16392         * X11Keyboard.cs: Ignore some control keys.
16393
16394 2005-01-20  Jackson Harper  <jackson@ximian.com>
16395
16396         * X11Structs.cs: Add the modmaps to the keymask struct and tabify.
16397         * X11Keyboard.cs: Set the AltGr mask when we get a key event.
16398
16399 2005-01-19  Peter Bartok  <pbartok@novell.com>
16400
16401         * Control.cs: Un-selecting the control when it is loosing focus
16402
16403 2005-01-19  Jackson Harper  <jackson@ximian.com>
16404
16405         * TreeView.cs: Hook up to the text controls leave event so we can
16406         end editing when the users clicks outside the text box.
16407         
16408 2005-01-19  Jackson Harper  <jackson@ximian.com>
16409
16410         * X11Keyboard.cs: Fix typo that was causing the wrong keycodes to
16411         get set in the conversion array.
16412
16413 2005-01-19  Peter Bartok  <pbartok@novell.com>
16414
16415         * Application.cs (ModalRun): Added a call to CreateControl to ensure
16416           focus is properly set
16417         * Button.cs:
16418           - Added missing attributes
16419           - removed styles, those are already set in the base class
16420         * ButtonBase.cs:
16421           - Added missing attributes
16422           - Added clip window styles
16423         * CheckBox.cs: Added missing attributes
16424         * CommonDialog.cs:
16425           - FormParentWindow.CreateParams: Added required clip styles
16426         * Form.cs (ProcessDialogKey): Fixed handling of Escape key, now
16427           also filters modifier keys
16428         * MessageBox.cs:
16429           - Added assignment of Accept and Cancel button to enable Enter
16430             and Esc keys in MessageBox dialogs
16431           - FormParentWindow.CreateParams: Added required clip styles
16432         * RadioButton.cs: Added missing attributes
16433         * TextControl.cs: No longer draws selection if control does not
16434           have focus
16435         * TextBoxBase.cs:
16436           - Now draws simple rectangle around test area to make it obvious
16437             there's a control. This is a hack until we properly support borders
16438           - A few simple fixes to support selections better, now erases selected
16439             text when typing, and resets selection when using movement keys
16440
16441 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
16442
16443         * UpDownBase.cs: Added some new properties.
16444
16445         * DomainUpDown.cs: Implement a lot to get my test working.
16446
16447 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16448
16449         * XplatUIOSX.cs: Fix a minor bug to bring the close box back
16450
16451 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16452
16453         * OSXStructs (WindowAttributes): Fixed csc complaints
16454
16455 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16456
16457         * XplayUIOSX.cs:
16458           OSXStructs.cs: Initial refactor to move enums and consts into
16459           OSXStructs and use them in the driver for greater readability.
16460
16461 2005-01-19  Geoff Norton  <gnorton@customerdna.com>
16462
16463         * XplatUIOSX.cs: Initial support for Standard Cursors.
16464         * OSXStructs.cs: Move our structs here; added ThemeCursor enum
16465
16466 2005-01-19  Jordi Mas i Hernandez <jordi@ximian.com>
16467
16468         * ComboBox.cs: ability to change style when the ctrl is already
16469         created, missing methods and events, bug fixes, signature fixes
16470
16471 2005-01-19  Peter Bartok  <pbartok@novell.com>
16472
16473         * Cursors.cs (ctor): Added ctor to fix signature
16474
16475 2005-01-18  Peter Bartok  <pbartok@novell.com>
16476
16477         * Button.cs: Implemented DoubleClick event
16478         * ButtonBase.cs:
16479           - Fixed keyboard handling to behave like MS, where the press of
16480             Spacebar is equivalent to a mousedown, and the key release is
16481             equivalent to mouseup. Now a spacebar push will give the same
16482             visual feedback like a mouse click.
16483           - Added missing attributes
16484           - Added ImeModeChanged event
16485           - Added support for generating DoubleClick event for derived classes
16486         * CheckBox.cs:
16487           - Implemented DoubleClick event
16488           - Added missing attributes
16489         * CommonDialog.cs: Added missing attribute
16490         * ContextMenu.cs: Added missing attributes
16491         * RadioButton.cs:
16492           - AutoChecked buttons do not allow to be unselected when clicked
16493             (otherwise we might end up with no selected buttons in a group)
16494           - Added missing attributes
16495           - Implemented DoubleClickEvent
16496         * ThreadExceptionDialog.cs: Enabled TextBox code
16497
16498 2005-01-18  Peter Bartok  <pbartok@novell.com>
16499
16500         * Form.cs: Removed debug output
16501         * Button.cs: Added support for DoubleClick method
16502
16503 2005-01-18  Peter Bartok  <pbartok@novell.com>
16504
16505         * Form.cs:
16506           - Added method to parent window that allows triggering size
16507             calculations when a menu is added/removed
16508           - set_Menu: Cleaned up mess from early days of Form and Control,
16509             now properly triggers a recalc when a menu is added/removed
16510           - Added case to select form itself as focused form if no child
16511             controls exist
16512           - Added PerformLayout call when showing dialog, to ensure properly
16513             placed controls
16514         * Control.cs:
16515           - Select(): Made internal so Form can access it
16516           - Focus(): Only call Xplat layer if required (avoids loop), and sets
16517             status
16518         * Application.cs (Run): Removed hack and calls PerformLayout instead
16519           to trigger calculation when Form becomes visible
16520
16521 2005-01-18  Jordi Mas i Hernandez <jordi@ximian.com>
16522
16523         * ComboBox.cs: fixes for ownerdraw
16524
16525 2005-01-18  Peter Bartok  <pbartok@novell.com>
16526
16527         * TextControl.cs:
16528           - Sentinel is no longer static, each Document gets it's own, this
16529             avoids locking or alternatively overwrite problems when more
16530             than one text control is used simultaneously.
16531           - Switched to use Hilight and HilightText brushes for text selection
16532
16533         * TextBoxBase.cs (PaintControl): Disabled AntiAliasing to improve looks
16534
16535 2005-01-18  Peter Bartok  <pbartok@novell.com>
16536
16537         * Control.cs:
16538           - Hooked up the following events:
16539                 o ControlAdded
16540                 o ControlRemoved
16541                 o HandleDestroyed
16542                 o ImeModeChanged
16543                 o ParentChanged
16544                 o TabStopChanged
16545                 o Invalidated
16546                 o SystemColorsChanged
16547                 o ParentFontChanged
16548                 o Move
16549           - Removed debug output
16550           - Added a call to the current theme's ResetDefaults when a color change
16551             is detected
16552         * Form.cs: Now setting the proper ImeMode
16553         * Theme.cs: Defined a method to force recreation of cached resources
16554           and rereading of system defaults (ResetDefaults())
16555         * ThemeWin32Classic.cs: Added ResetDefaults() stub
16556
16557 2005-01-17  Peter Bartok  <pbartok@novell.com>
16558
16559         * Control.cs: Added missing attributes
16560
16561 2005-01-17  Jackson Harper  <jackson@ximian.com>
16562
16563         * TreeNode.cs: Implement editing. Add missing properties selected
16564         and visible.
16565         * TreeView.cs: Implement node editing. Also some fixes to use
16566         Invalidate (invalid area) instead of Refresh when selecting.
16567
16568 2005-01-17  Peter Bartok  <pbartok@novell.com>
16569
16570         * Control.cs:
16571           - Implemented InvokeGotFocus() method
16572           - Implemented InvokeLostFocus() method
16573           - Implemented InvokePaint() method
16574           - Implemented InvokePaintBackground() method
16575           - Implemented InvokeClick() method
16576           - Implemented FindForm() method
16577           - Implemented RectangleToClient() method
16578           - Implemented ClientToRectangle() method
16579           - Implemented ResetBackColor() method
16580           - Implemented ResetCursor() method
16581           - Implemented ResetFont() method
16582           - Implemented ResteForeColor() method
16583           - Implemented ResetImeMode() method
16584           - Implemented ResetLeftToRight() method
16585           - Implemented ResetText() method
16586           - Implemented Scale() methods
16587           - Implemented ScaleCore() method
16588           - Implemented Update() method
16589           - Removed unused variables
16590           - Stubbed AccessibilityNotifyClients and
16591             ControlAccessibleObject.NotifyClients() methods (dunno what to do
16592             with those yet)
16593           - Now setting proper default for RightToLeft property
16594           - Fixed bug in SetClientSizeCore that would cause windows to get
16595             really big
16596           - Now sending Click/DoubleClick events
16597           - Now selecting controls when left mouse button is clicked on
16598             selectable control
16599         * AccessibleEvents.cs: Added
16600         * XplatUI.cs, XplatUIDriver.cs: Added UpdateWindow() method
16601         * XplatUIOSX.cs: Stubbed UpdateWindow() method
16602         * XplatUIWin32.cs: Implemented UpdateWindow() method
16603         * XplatUIX11.cs: Implemented UpdateWindow() method
16604         * Form.cs: Removed stray semicolon causing CS0162 warning
16605         * ThemeWin32Classic.cs: Fixed unused variable warnings
16606         * ScrollableControl.cs: Now calls base method for ScaleCore
16607         * ButtonBase.cs: Now disabling StandardClick and StandardDoubleClick
16608           style to avoid interference with internal click handler (which is
16609           different than standard Control click handling)
16610         * RadioButton.cs:
16611           - Now unchecks all sibling radio buttons when control is
16612             selected (Fixes #68756)
16613           - Removed internal tabstop variable, using the one inherited from
16614             Control
16615
16616 2005-01-17  Jackson Harper  <jackson@ximian.com>
16617
16618         * NavigateEventArgs.cs: Fix base type.
16619         * LinkLabel.cs: Sig fix
16620         
16621 2005-01-17  Jackson Harper  <jackson@ximian.com>
16622
16623         * TreeView.cs: Only invalidate the effected nodes bounds when
16624         selecting nodes.
16625
16626 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16627
16628         * XplatUIWin32.cs: fixes Win32 marshaling
16629         * XplatUIX11.cs: fixes method signature
16630
16631 2005-01-17  Peter Bartok  <pbartok@novell.com>
16632
16633         * XplatUIX11.cs: Clean up resources when we no longer need them
16634
16635 2005-01-17  Peter Bartok  <pbartok@novell.com>
16636
16637         * XplatUI.cs, XplatUIDriver.cs: Added SetCursor(), ShowCursor(),
16638           OverrideCursor(), DefineCursor(), DefineStdCursor(), GetCursorInfo()
16639           and DestroyCursor() methods.
16640         * Cursor.cs: Partially implemented, now supports standard cursors;
16641           still contains some debug code
16642         * Cursors.cs: Implemented class
16643         * Control.cs:
16644           - WndProc(): Added handling of WM_SETCURSOR message, setting the
16645             appropriate cursor
16646           - Implemented Cursor property
16647           - Replaced break; with return; more straightforwar and possibly
16648             faster
16649           - Now properly setting the result for WM_HELP
16650         * X11Structs.cs: Added CursorFontShape enum
16651         * XplatUIStructs.cs:
16652           - Added StdCursor enum (to support DefineStdCursor() method)
16653           - Added HitTest enum (to support sending WM_SETCURSOR message)
16654         * XplatUIX11.cs:
16655           - Now sends the WM_SETCURSOR message
16656           - Implemented new cursor methods
16657         * XplatUIOSX.cs: Stubbed new cursor methods
16658         * XplatUIWin32.cs:
16659           - Implemented new cursor methods
16660           - Added GetSystemMetrics function and associated enumeration
16661
16662 2005-01-15  Peter Bartok  <pbartok@novell.com>
16663
16664         * Control.cs:
16665           - WndProc(): Now handles EnableNotifyMessage
16666           - SelectNextControl(): Fixed bug where if no child or sibling
16667             controls exist we looped endlessly
16668
16669 2005-01-14  Jackson Harper  <jackson@ximian.com>
16670
16671         * TreeView.cs: Recalculate the tab pages when a new one is added
16672         so that the proper bounding rects are created.
16673
16674 2005-01-14  Jackson Harper  <jackson@ximian.com>
16675
16676         * TreeView.cs: Draw a gray box instead of a grip in the lower
16677         right hand corner when there are both horizontal and vertical
16678         scroll bars.
16679
16680 2005-01-14  Jackson Harper  <jackson@ximian.com>
16681
16682         * Control.cs: When erasing backgrounds use FromHwnd instead of
16683         FromHdc when there is a NULL wparam. This occurs on the X driver.
16684         * XplatUIX11.cs: Set the wparam to NULL.
16685
16686 2005-01-13  Jackson Harper  <jackson@ximian.com>
16687
16688         * PictureBox.cs: Implement missing methods (except ToString, need
16689         to test that on windows) and events. When visibility is changed we
16690         need to redraw the image because the buffers are killed. When size
16691         is changed refresh if the sizemode needs it.
16692
16693 2005-01-13  Peter Bartok  <pbartok@novell.com>
16694
16695         * Control.cs (SelectNextControl): Was using wrong method to select
16696           a control
16697
16698 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16699
16700         * ComboBox.cs: fixes dropstyle
16701
16702 2005-01-13  Peter Bartok  <pbartok@novell.com>
16703
16704         * Form.cs:
16705           - Implemented Select() override
16706           - Now handles WM_SETFOCUS/WM_KILLFOCUS messages
16707           - Now sets keyboard focus on startup
16708         * Control.cs (SelectNextControl): Now properly handles directed=true
16709         * TextBoxBase.cs:
16710           - WndProc: Now passes tab key on to base if AcceptTabChar=false
16711           - Added (really bad) focus rectangle (mostly for testing)
16712         * TextBox.cs: Added code to handle getting/loosing focus and invalidating
16713           to enforce redraw on focus changes
16714         * ContainerControl.cs:
16715           - Fixed detection of Shift-Tab key presses
16716           - Fixed traversal with arrow keys
16717         * XplatUIX11.cs: Implemented simulated keyboard focus; not sure if we're
16718           gonna keep this or if it's complete yet
16719         
16720 2005-01-13  Jordi Mas i Hernandez <jordi@ximian.com>
16721
16722         * ComboBox.cs: missing properties, fixes
16723
16724 2005-01-13  Peter Bartok  <pbartok@novell.com>
16725
16726         * Panel.cs (ctor): Setting Selectable window style to off
16727         * Splitter.cs (ctor): Setting Selectable window style to off
16728         * GroupBox.cs (ctor): Setting Selectable window style to off
16729         * Label.cs (ctor): Setting Selectable window style to off
16730
16731 2005-01-12  Miguel de Icaza  <miguel@ximian.com>
16732
16733         * UpDownBase.cs (InitTimer): If the timer has been already
16734         created, enable it.
16735
16736         Use a TextBox instead of a Label.
16737
16738 2005-01-12  Jackson Harper  <jackson@ximian.com>
16739
16740         * TreeView.cs: Refresh the tree after sorting the nodes. Always
16741         draw the connecting node lines (when ShowLines is true).
16742         * TreeNode.cs: The nodes index can now be updated. This is used
16743         when a node collection is sorted.
16744         * TreeNodeCollection.cs: Implement sorting. Nodes can be sorted on
16745         insert or an existing unsorted node collection can be sorted.
16746         
16747 2005-01-12  Peter Bartok  <pbartok@novell.com>
16748
16749         * ContainerControl.cs: Implemented ProcessDialogKeys()
16750
16751 2005-01-12  Peter Bartok  <pbartok@novell.com>
16752
16753         * Control.cs:
16754           - Implemented SelectNextControl() method
16755           - Several focus related bug fixes
16756           - Fixed Docking calculations to match MS documentation and
16757             behaviour
16758
16759 2005-01-12  Jordi Mas i Hernandez <jordi@ximian.com>
16760
16761         * ContainerControl.cs, ListControl.cs, ListBox.cs: keyboard navigation and
16762         bug fixes
16763
16764 2005-01-12  Peter Bartok  <pbartok@novell.com>
16765
16766         * Control.cs:
16767           - Fixed broken Contains() method
16768           - Implemented GetNextControl() method. Finally. This is the pre-
16769             requisite for focus handling.
16770
16771 2005-01-12  Peter Bartok  <pbartok@novell.com>
16772
16773         * OSXStrucs.cs: Added
16774
16775 2005-01-12  Peter Bartok  <pbartok@novell.com>
16776
16777         * XplatUIWin32.cs:
16778           - Removed PeekMessageFlags
16779           - Implemented SetWindowStyle() method
16780         * XplatUIStructs.cs: Added PeekMessageFlags
16781         * X11Structs: Added missing border_width field to XWindowChanges struct
16782         * XplatUIX11.cs:
16783           - PeekMessage: Now throws exception if flags which are not yet
16784             supported are passed
16785           - Implemented SetWindowStyle() method
16786           - Fixed SetZOrder to handle AfterHwnd properly
16787         * XplatUI.cs: Added SetWindowStyle() method
16788         * XplatUIDriver.cs: Added SetWindowStyle() abstract
16789         * Control.cs:
16790           - Implemented UpdateStyles() method
16791           - Implemented UpdateZOrder() method
16792         * XplatUIOSX.cs: Added SetWindowStyle() stub
16793
16794 2005-01-12  Geoff Norton  <gnorton@customerdna.com>
16795
16796         * XplatUIOSX.cs: Fix SetZOrder (this needs more testing with a 3
16797         button mouse).
16798
16799
16800 2005-01-11  Jackson Harper  <jackson@ximian.com>
16801
16802         * TreeView.cs: Still need to draw lines to siblings even if out of
16803         the current node is out of the clip.
16804
16805 2005-01-11  Jackson Harper  <jackson@ximian.com>
16806
16807         * TreeView.cs: When setting the hbar/vbar/grip position use
16808         SetBounds so that perform layout is only called once. Also suspend
16809         and resume layout so layout is only done once for all controls.
16810         - Removed some debug fluff
16811         * SizeGrip.cs: Call base implmentation in overriding methods.
16812         - When visibility is changed the drawing buffers are killed so we
16813         need to redraw.
16814
16815 2005-01-11  Jackson Harper  <jackson@ximian.com>
16816
16817         * TreeView.cs: Calculate the open node count while drawing. This
16818         saves us an entire tree traversal for every paint operation. Use
16819         a member var for the open node count so less vars are passed around.
16820
16821 2005-01-11  John BouAntoun  <jba-mono@optusnet.com.au>
16822
16823         * MonthCalendar.cs:
16824         - fixed selection to use mousemove, not mouse polling on timer
16825         * ThemeWin32Classic.cs
16826         - removed redundant unused variable "no_more_content"
16827         
16828 2005-01-11  Peter Bartok  <pbartok@novell.com>
16829
16830         * XplatUIX11.cs (DoEvents): Needs to return when no more events
16831           are pending, so it now calls PeekMessage instead of GetMessage;
16832           implemented a incomplete version of PeekMessage
16833         
16834 2005-01-11  Peter Bartok  <pbartok@novell.com>
16835
16836         * XplatUIWin32.cs: Switched P/Invokes to unicode charset to avoid
16837           I18n issues
16838         * TextBoxBase.cs: Added sending of TextChanged event
16839
16840 2005-01-10  Jackson Harper  <jackson@ximian.com>
16841
16842         * TreeView.cs: Try not to draw outside the clipping rectangle on
16843         each node element.
16844
16845 2005-01-10  Jordi Mas i Hernandez <jordi@ximian.com>
16846
16847         * ComboBox.cs: keyboard navigation, item navigation, bug fixes
16848
16849 2005-01-10  Jackson Harper  <jackson@ximian.com>
16850
16851         * TreeView.cs:
16852         - Implement fast scrolling. Now only the newly
16853         exposed nodes are drawn and the old image is moved using the
16854         XplatUI::ScrollWindow method.
16855         - Factor in height of nodes when calculating whether or not the
16856         node is in the clipping rect.
16857
16858 2005-01-10  Jackson Harper  <jackson@ximian.com>
16859
16860         * TreeNodeCollection.cs: Refresh the tree when a new node is added.
16861
16862 2005-01-10  Peter Bartok  <pbartok@novell.com>
16863
16864         * Application.cs: Added temporary hack to resolve all our resize
16865           required issues on startup. This will get fixed properly at
16866           some point in the future
16867
16868 2005-01-10  Jackson Harper  <jackson@ximian.com>
16869
16870         * SizeGrip.cs: New internal class that is used as a sizing
16871         grip control...hence the name.
16872
16873 2005-01-10  Peter Bartok  <pbartok@novell.com>
16874
16875         * Control.cs: Implemented proper TabIndex handling, now assigning
16876           a tabindex when a control is added to a container
16877         * GroupBox.cs (ctor): Now sets the Container style bit, required
16878           for Control.GetNextControl()
16879
16880 2005-01-09  Jackson Harper  <jackson@ximian.com>
16881
16882         * TextBoxBase.cs: Clear window when scrolling (fixes build).
16883
16884 2005-01-09  Peter Bartok <pbartok@novell.com>
16885
16886         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIOSX.cs,
16887           XplatUIX11.cs: Added ability to control ScrollWindow expose and
16888           an overload for ScrollWindow to allow only scrolling a rectangle
16889
16890 2005-01-09  Peter Bartok <pbartok@novell.com>
16891
16892         * Form.cs:
16893           - Implemented SetDesktopBounds method
16894           - Implemented SetDesktopLocation method
16895
16896 2005-01-08  Jackson Harper  <jackson@ximian.com>
16897
16898         * TreeView.cs: Only set the vbar's Maximum and LargeChange when
16899         the node count has changed, this removes to VScroll::Refresh calls
16900         when drawing.
16901
16902 2005-01-08  Geoff Norton  <gnorton@customerdna.com>
16903
16904         * XplatUIOSX.cs: Fix GetWindowState & SetWindowState
16905
16906 2005-01-07  Jackson Harper  <jackson@ximian.com>
16907
16908         * TreeNode.cs: Just update the single node when it is
16909         checked. Don't refresh after toggling, the Expand/Collapse already
16910         handles this.
16911         * TreeView.cs: Respect clipping a little more when drawing. Try
16912         not to redraw things that don't need to be redrawn. Just hide the
16913         scrollbars when they are no longer needed instead of removing
16914         them, so they don't have to be created again and again.
16915         
16916 2005-01-07  Geoff Norton  <gnorton@customerdna.com>
16917
16918         * XplatUIOSX.cs (SetCaretPos):  We need to translate the view
16919         coordinates to window space to place the caret properly, FIXED.
16920         Implement GetWindowState & SetWindowState
16921
16922 2005-01-06  Peter Bartok <pbartok@novell.com>
16923
16924         * Form.cs:
16925           - Implemented ClientSize property
16926           - Implemented DesktopBounds property
16927           - Implemented DesktopLocation property
16928           - Implemented IsRestrictedWindow property
16929           - Implemented Size property
16930           - Implemented TopLevel property
16931           - Implemented FormWindowState property
16932         * Control.cs:
16933           - Implemented GetTopLevel() method
16934           - Implemented SetTopLevel() method
16935         * X11Structs.cs (Atom):
16936           - Added AnyPropertyType definition
16937           - Added MapState definiton and updated XWindowAttribute struct
16938         * XplatUI.cs: Added GetWindowState() and SetWindowState() methods
16939         * XplatUIDriver.cs: Added GetWindowState() and SetWindowState() methods
16940         * XplatUIOSX.cs: Stubbed GetWindowState() and SetWindowState() methods
16941         * XplatUIWin32.cs:
16942           - Implemented GetWindowState() and SetWindowState() methods
16943           - Fixed Win32GetWindowLong return type
16944         * XplatUIX11.cs:
16945           - Introduced central function for sending NET_WM messages
16946           - Implemented GetWindowState() and SetWindowState() methods
16947         * TextBoxBase.cs (set_Lines):
16948           - Now uses Foreground color for text added via Text property (Duh!)
16949           - Added code to remember programmatically requested size (fixes
16950             behaviour when Multiline is set after Size)
16951           - Added AutoSize logic
16952
16953 2005-01-06  Jackson Harper  <jackson@ximian.com>
16954
16955         * TreeView.cs: Draw the image after the checkbox if checkboxes are enabled.
16956
16957 2005-01-06  Jackson Harper  <jackson@ximian.com>
16958
16959         * ListBox.cs: Don't allow the horizontal scrollbars maximum to be
16960         set to less then 0.
16961
16962 2005-01-06  Jackson Harper  <jackson@ximian.com>
16963
16964         * ScrollableControl.cs: Lazy init the scrollbars.
16965         
16966 2005-01-06  Jackson Harper  <jackson@ximian.com>
16967
16968         * Theme.cs: Speed up getting pens and solid brushes, by using
16969         their ARGB as a hash instead of tostring and not calling Contains.
16970
16971 2005-01-06  Peter Bartok <pbartok@novell.com>
16972
16973         * Form.cs:
16974           - Implemented OnActivated and OnDeactivate event trigger
16975           - Implemented Activate() method
16976           - Fixed ShowDialog() to activate the form that was active before
16977             the dialog was shown
16978         * XplatUIX11.cs:
16979           - Added global active_window var that tracks the currently active
16980             X11 window
16981           - Now always grabs Property changes from the root window to always
16982             catch changes on the active window property
16983           - Added code to PropertyNotify handler to send Active/Inactive
16984             messages when state changes. This puts X11 and Win32 en par on
16985             WM_ACTIVATE notifications (except for double notifications when
16986             the user clicks away from our modal window to another one of our
16987             windows)
16988
16989 2005-01-05  Jackson Harper  <jackson@ximian.com>
16990
16991         * ImageList.cs: Implment ctor
16992
16993 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16994
16995         * XplatUIOSX.cs: Implement Activate/SetTopmost
16996
16997 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
16998
16999         * XplatUIOSX.cs: Implement SetZOrder, minor cleanup
17000
17001 2005-01-05  Geoff Norton  <gnorton@customerdna.com>
17002
17003         * XplatUIOSX.cs: Implement GetActive/SetFocus.
17004
17005 2005-01-05  Peter Bartok <pbartok@novell.com>
17006
17007         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs,
17008           XplatUIOSX.cs: Added GetActive method to return the currently
17009           active window for the application (or null, if none is active)
17010         * Form.cs:
17011           - Implemented ActiveForm
17012           - Commented out owner assignment for modal dialogs (causes problems
17013             on Win32, since the owner will be disabled)
17014           - Reworked some Active/Focus handling (still incomplete)
17015         * CommonDialog.cs: Commented out owner assignment for modal dialogs
17016           (causes problems on Win32, since the owner will be disabled)
17017         * IWin32Window: Added ComVisible attribute
17018
17019 2005-01-05  Peter Bartok <pbartok@novell.com>
17020
17021         * ToolTip.cs (WndProc): Enable setting focus now that we have the
17022           required XplatUI functions.
17023
17024 2005-01-05  Peter Bartok <pbartok@novell.com>
17025
17026         * XplatUI.cs, XplatUIOSX.cs, XplatUIWin32.cs, XplatUIDriver.cs,
17027           XplatUIX11.cs, X11Structs.cs, Form.cs: Framework code required
17028           to implement focus and activation handling; still incomplete and
17029           with debug output
17030
17031 2005-01-04  Peter Bartok <pbartok@novell.com>
17032
17033         * TextBoxBase.cs: Changed access level for Document property to
17034           match switch to internal for TextControl
17035
17036 2005-01-04  Peter Bartok <pbartok@novell.com>
17037
17038         * AccessibleObject: Added ComVisible attribute
17039
17040 2005-01-04  Jackson Harper  <jackson@ximian.com>
17041
17042         * X11Keyboard.cs: Remove unneeded var.
17043
17044 2005-01-04  Jackson Harper  <jackson@ximian.com>
17045
17046         * XplatUIX11.cs (DoEvents): Implement, Just cast aside all events
17047         but PAINT.
17048         * XplatUIX11.cs (GetMessage): Call Exit when we get an unknown
17049         ClientMessage. This makes apps exit cleanly (more often).
17050         
17051 2005-01-04  Jackson Harper  <jackson@ximian.com>
17052
17053         * TreeNode.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) for
17054         handling focus, return correct colors and fonts,
17055         * TreeView.cs: Patches by Kazuki Oikawa (kazuki@panicode.com) to
17056         handle selection, horizontal scrolling, and mouse interaction.
17057
17058 2005-01-04  Peter Bartok <pbartok@novell.com>
17059
17060         * ICommandExecutor.cs: Added
17061         * IDataGridColumnStyleEditingNotificationService.cs: Added
17062         * IFeatureSupport.cs: Added
17063         * IFileReaderService.cs: Added
17064         * IDataObject.cs: Added ComVisible attribute
17065         * AmbientProperties.cs: Added
17066         * BaseCollection.cs: Added missing attributes
17067         * ListBindingConverter.cs: Added (stubbed, required for certain attributes)
17068         * BaseCollection.cs: Added missing attributes
17069         * Binding.cs: Added TypeConverter attribute
17070         * BindingContext.cs: Added DefaultEvent attribute
17071         * BindingsCollection.cs: Added DefaultEvent attribute
17072         * Button.cs: Added DefaultValue attribute
17073         * DragEventArgs.cs: Added ComVisible attribute
17074         * GiveFeedbackEventArgs.cs: Added ComVisible attribute
17075         * KeyEventArgs.cs: Added ComVisible attribute
17076         * KeyPressEventArgs.cs: Added ComVisible attribute
17077         * MouseEventArgs.cs: Added ComVisible attribute
17078         * NavigateEventArgs.cs: Added
17079         * NavigateEventHandler.cs: Added
17080         * FeatureSupport.cs: Added
17081         * OSFeature.cs: Added
17082         * Theme.cs: Added abstract Version property to support OSFeature
17083         * ThemeWin32Classic.cs: Added Version property to
17084           support OSFeature.Themes
17085         * ProgressBar.cs: Removed OnPaintBackground override, not required since
17086           the proper styles to avoid background drawing are set, also doesn't
17087           match MS signature
17088         * QueryAccessibilityHelpEventArgs.cs: Added ComVisible attribute
17089         * QueryContinueDragEventArgs.cs: Added ComVisible attribute
17090         * ScrollEventArgs.cs: Added ComVisible attribute
17091         * SplitterEventArgs.cs: Added ComVisible attribute
17092         * AccessibleSelection.cs: Added Flags attribute
17093         * Appearance.cs: Added ComVisible attribute
17094         * Border3DSide.cs: Added ComVisible attribute
17095         * Border3DStyle.cs: Added ComVisible attribute
17096         * BorderStyle.cs: Added ComVisible attribute
17097         * DragAction.cs: Added ComVisible attribute
17098         * ErrorBlinkStyle.cs: Added
17099         * ScrollEventType.cs: Added ComVisible attribute
17100         * AnchorStyles.cs: Added Editor attribute
17101         * DockStyle.cs: Added Editor attribute
17102         * HorizontalAlignment.cs: Added ComVisible attribute
17103         * HelpEventArgs.cs: Added ComVisible attribute
17104         * PaintEventArgs.cs: Added IDisposable
17105
17106 2005-01-04  Peter Bartok <pbartok@novell.com>
17107
17108         * TextControl.cs: Switched Line, LineTag and Document classes to
17109           internal
17110
17111 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17112
17113         * ComboBox.cs, ThemeWin32Classic.cs, ListBox.cs, Theme.cs:
17114         Simple mode, fixes, IntegralHeight, etc.
17115
17116 2005-01-04  Peter Bartok <pbartok@novell.com>
17117
17118         * TextBoxBase.cs: Using proper font variable now
17119
17120 2005-01-04  Peter Bartok <pbartok@novell.com>
17121
17122         * Form.cs (ShowDialog): Set parent to owner, if provided
17123         * GroupBox.cs: Removed unused vars
17124         * TextControl.cs:
17125           - Added GetHashCode() for Document and LineTag classes
17126           - Removed unused variables
17127           - Added CharIndexToLineTag() and LineTagToCharIndex() methods
17128             to allow translation between continuous char position and line/pos
17129         * CheckBox.cs: Removed vars that are provided by base class
17130         * RadioButton.cs: Removed vars that are provided by base class, added
17131           new keyword where required
17132         * LinkLabel.cs: Added new keyword where required
17133         * Control.cs (WndProc): Removed unused variable
17134         * TextBoxBase.cs:
17135           - Finished SelectionLength property
17136           - Implemented SelectionStart property
17137           - Implemented Text property
17138           - Removed unused vars
17139         * MessageBox.cs: Added new keyword where required
17140         * TextBox.cs: Removed Text property code (now in TextBoxBase), fixed
17141           WndProc signature
17142         * MenuAPI.cs: Added new keyword where required
17143         * ButtonBase.cs: Removed vars that are provided by base class, added
17144           new keyword where required
17145         * ThemeWin32Classic.cs (DrawMonthCalendarDate): Now cast Math.Floor
17146           argument to double, to allow compiling with csc 2.0 (Atsushi ran
17147           into this)
17148         * Application.cs (Run): Now triggers the ThreadExit event
17149         * CommonDialog.cs: Added new keyword where required; now properly sets
17150           parent (owner) for dialog
17151         * XplatUIX11.cs: Commented out unused vars
17152         * StatusBar.cs: Fixed signature for Text property
17153         * TabPage.cs: Undid Jordi's removal of unused var, now using the var
17154
17155 2005-01-04  Jordi Mas i Hernandez <jordi@ximian.com>
17156
17157         * ComboBox.cs, TabPage.cs, MenuAPI.cs, ThemeWin32Classic.cs,
17158         TrackBar.cs, MonthCalendar.cs: remove unused vars
17159
17160 2005-01-03  Jackson Harper  <jackson@ximian.com>
17161
17162         * ThemeWin32Classic.cs:
17163         * X11Keyboard.cs: Remove unused vars.
17164
17165 2005-01-03  Peter Bartok  <pbartok@novell.com>
17166
17167         * TextBox.cs:
17168           - set_Text: Tied into TextControl
17169           - set_TextAlignment: Tied into TextControl
17170         * TextControl.cs:
17171           - Added alignment properties and implemented alignment handling
17172             and drawing (still has a bug, not generating proper expose events)
17173           - Added new Line() constructor to allow passing the line alignment
17174           - Fixed selection setting, properly handling end<start now
17175           - Added aligment considerations to RecalculateDocument()
17176         * TextBoxBase.cs:
17177           - Now properly enforces control height for single line controls
17178           - Added support for CharacterCasing
17179           - Added IsInputKey override
17180           - Fixed Keys.Enter logic
17181           - Added SetBoundsCore override
17182           - Fixed mouse selection handling
17183
17184 2005-01-03  Jackson Harper  <jackson@ximian.com>
17185
17186         * TreeView.cs:
17187           - Collapse and uncheck all nodes when CheckBoxes is disabled.
17188           - Checkboxes are always aligned to the bottom of the node,
17189           regardless of item height.
17190           - Use the node bounds to draw the text so we can center it when
17191           the item height is greater then the font height.
17192           - Node::Bounds are only the text part of the node.
17193         * TreeNode.cs: New method to combine collapsing and unchecking all
17194           nodes recursively.
17195
17196 2005-01-02  Jackson Harper  <jackson@ximian.com>
17197
17198         * TreeView.cs: Draw checkmarks, handle detecting check mark clicks
17199         * TreeNode.cs: Add a bounding box for the checkbox, refresh the
17200         tree when a check is changed. TODO: Only refresh the checked node.
17201
17202 2004-12-30  Jackson Harper  <jackson@ximian.com>
17203
17204         * TreeView.cs: Draw checkbox boxes when checkboxes are enabled.
17205         * TreeNode.cs: When collapsing make sure to never collapse the
17206         root node.
17207
17208 2004-12-29  Jackson Harper  <jackson@ximian.com>
17209
17210         * TreeView.cs: Align lines to the bottom of plus minus boxes properly.
17211         
17212 2004-12-28  Zoltan Varga  <vargaz@freemail.hu>
17213
17214         * X11Structs.cs X11Keyboard.cs XplatUIX11.cs: Fix 64 bit issues.
17215
17216 2004-12-28  Peter Bartok  <pbartok@novell.com>
17217
17218         * MessageBox.cs (get_CreateParams): Don't use owner var if it's
17219           not yet assigned
17220
17221 2004-12-28  Peter Bartok  <pbartok@novell.com>
17222
17223         * Control.cs (WndProc): Added WM_HELP handler, now generates
17224           HelpRequested event
17225         * Form.cs: Added HelpButton property and required support code
17226         * XplatUIStructs.cs: Added HELPINFO structure for WM_HELP handling
17227
17228 2004-12-28  Peter Bartok  <pbartok@novell.com>
17229
17230         * CommonDialog.cs:
17231           - Made DialogForm.owner variable internal
17232           - Added check to ensure owner form is set before setting
17233             owner properties in CreateParams
17234
17235 2004-12-28  Geoff Norton  <gnorton@customerdna.com>
17236
17237         * XplatUIOSX.cs: Implement mouse hovering.  Fix QDPoint struct to avoid
17238           swizzling.  Implement ClientToScreen and ScreenToClient.  Implement
17239           GetCursorPos.  Fix major visibility issues.  Rework the windowing
17240           system to support borderless/titleless windows (implements menus).
17241           Fix GetWindowPos.  Implement initial background color support for
17242           views.
17243
17244 2004-12-28  Peter Bartok  <pbartok@novell.com>
17245
17246         * Form.cs (get_CreateParams): Make sure we have an owner before using
17247           the owner variable. Implement proper default if no owner exists
17248
17249 2004-12-28  Peter Bartok  <pbartok@novell.com>
17250
17251         * In preparation for making Managed.Windows.Forms the default build target
17252           for System.Windows.Forms, the following stubbed files were added.
17253           Dialogs are currently being implemented by contributors and are only
17254           short-term place holders.
17255         * ColorDialog.cs: Initial check-in (minmal stub)
17256         * DataGrid.cs: Initial check-in (minimal stub)
17257         * DataGridLineStyle.cs: Initial check-in (minimal stub)
17258         * DataGridParentRowsLabelStyle.cs: Initial check-in (minimal stub)
17259         * DataGridTableStyle.cs: Initial check-in (minimal stub)
17260         * FontDialog.cs: Initial check-in (minimal stub)
17261         * FileDialog.cs: Initial check-in (minimal stub)
17262         * GridColumnStylesCollection.cs: Initial check-in (minimal stub)
17263         * GridTableStylesCollection.cs: Initial check-in (minimal stub)
17264         * OpenFileDialog: Initial check-in (minimal stub)
17265         * IComponentEditorPageSite.cs: Initial check-in
17266         * Splitter.cs: Initial check-in (for Jackson)
17267         * SplitterEventArgs.cs: Initial check-in (for Jackson)
17268         * SplitterEventHandler.cs: Initial check-in (for Jackson)
17269         * TextBox.cs: Initial check-in; still needs some wiring to
17270           TextControl backend
17271         * Form.cs: Implemented ControlBox property
17272         * MessageBox.cs: Added proper coding for Minimize/Maximize/ControlBox
17273         * CommonDialog.cs: Added proper coding for Minimize/Maximize/ControlBox
17274         * TextControl.cs: Added selection functionality; added todo header
17275         * TextBoxBase.cs:
17276           - Implemented Lines property
17277           - Implemented TextHeight property
17278           - Implemented SelectedText property
17279           - Implemented SelectionLength property
17280           - Implemented SelectAll method
17281           - Implemented ToString method
17282           - Removed and cleaned up some debug code
17283           - Implemented (still buggy) mouse text selection
17284
17285 2004-12-27  Jordi Mas i Hernandez <jordi@ximian.com>
17286
17287         * ComboBox.cs: Complete DropDownList implementation, fixes.
17288
17289 2004-12-26  Jordi Mas i Hernandez <jordi@ximian.com>
17290
17291         * ThemeWin32Classic, Theme.cs: ComboBox drawing methods
17292         * ComboBoxStyle.cs: ComboBoxStyle enum
17293         * ComboBox.cs: Initial work on ComboBox control
17294
17295 2004-12-21  Peter Bartok  <pbartok@novell.com>
17296
17297         * Control.cs (ctor, CreateParams): Moved setting of is_visible
17298           forward so that anything that creates a window gets the default,
17299           also no longer uses Visible property in CreateParams to avoid
17300           walking up the parent chain and possibly get the wrong visible
17301           status. Fixed IsVisible to no longer walk up to the parent.
17302
17303 2004-12-21  Peter Bartok  <pbartok@novell.com>
17304
17305         * Form.cs (ShowDialog): Unset modality for the proper window
17306  
17307 2004-12-20  Peter Bartok  <pbartok@novell.com>
17308
17309         * CommonDialog.cs: Initial check-in
17310
17311 2004-12-20  Peter Bartok  <pbartok@novell.com>
17312
17313         * Control.cs (Visible): Now uses the parent window instead of the
17314           client area window for the property
17315
17316         * Form.cs
17317           - ShowDialog(): Now uses the proper window for modality
17318           - The default visibility state for the form parent is now false. This
17319             will prevent the user from seeing all the changes to the form and
17320             its controls before the application hits Application.Run()
17321           - Removed some stale commented out code
17322
17323         * NativeWindow.cs:
17324           - Added FindWindow() method to have a method to check for existence
17325             of a window handle
17326           - Added ability to override default exception handling (for example
17327             when debugging with VS.Net; to do this the ExternalExceptionHandler
17328             define must be set
17329           - Removed some useless debug output
17330
17331         * XplatUIX11.cs:
17332           - Removed r37929 (SetModal patch from Ashwin Bharambe), was
17333             not working as expected
17334           - Implemented modal_window stack and checking for _WM_ACTIVE_WINDOW
17335             property to allow switching back to the modal window if focus is
17336             given to another one of our windows (Application Modal)
17337           - Now only sets override_redirect if we create a window
17338             without WS_CAPTION
17339           - Moved EventMask selection before mapping of newly created window
17340             so we can catch the map event as well
17341           - Implemented Activate() method via the _WM_ACTIVE_WINDOW property
17342           - Added various Atom related DllImports
17343           - Implemented Exit() method
17344           - .ctor() : No longer shows window if WS_VISIBLE is not defined
17345             in the CreateParams
17346
17347         * MessageBox.cs: Now properly deals with the FormParent window by
17348           providing an override the FormParent CreateParams property to
17349           set as POPUP instead of OVERLAPPED window.
17350
17351 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17352
17353         * XplatUIOSX.cs: Implement DestroyWindow.  Implement ScrollWindow
17354         Minor code cleanup.
17355
17356 2004-12-19  Geoff Norton  <gnorton@customerdna.com>
17357         
17358         * XplatUIOSX.cs (SetModal): Implement this method on OSX.
17359
17360 2004-12-18  Peter Bartok  <pbartok@novell.com>
17361
17362         * XplatUIX11.cs (SetModal): Applied patch from Ashwin Bharambe,
17363           implementing SetModal() method
17364
17365 2004-12-18  Peter Bartok  <pbartok@novell.com>
17366
17367         * X11Structs.cs (XGCValues): Fixed type of function element
17368         * XplatUI.cs: Added ScrollWindow() method
17369         * XplatUIDriver.cs: Added ScrollWindow() abstract
17370         * XplatUIWin32.cs: Implemented ScrollWindow() method
17371         * XplatUIX11.cs: Implemented ScrollWindow() method
17372         * XplatUIOSX.cs: Stubbed out ScrollWindow() method
17373
17374 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17375
17376         * XplatUIOSX.cs:  Fix cursor to use an Invert instead of drawing it
17377         Some more keyboard support (INCOMPLETE)
17378
17379 2004-12-17  Peter Bartok  <pbartok@novell.com>
17380
17381         * TextControl.cs:
17382         - Added color attribute to line tags.
17383         - Added color argument to all functions dealing with tags
17384         - Added color argument support to various functions
17385         - Fixed miss-calculation of baseline/shift in certain circumstances
17386
17387         * TextBoxBase.cs: Added new color option to test code
17388
17389 2004-12-17  Jackson Harper  <jackson@ximian.com>
17390
17391         * TreeNode.cs:
17392         * MonthCalendar.cs: Signature fixes
17393
17394 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17395
17396         * XplatUIOSX.cs: Find the missing caret; caret was dissappearing after a
17397         keyboard event moved it.  Create a new graphics context for each paint resolves this
17398
17399 2004-12-17  Geoff Norton  <gnorton@customerdna.com>
17400
17401         * XplatUIOSX.cs: Fix hard cpu eat on loop with existing timers,
17402         Make caret exist and go blink blink.  Initial keyboard support.
17403         Fix exception handler, Add Invalidate support.  Change way RefreshWindow
17404         works.
17405
17406 2004-12-17  Jackson Harper  <jackson@ximian.com>
17407
17408         * XplatUIStructs.cs: Updated set of virtual keycodes.
17409         * KeyboardLayouts.cs: SCROLL_LOCK is now SCROLL
17410
17411 2004-12-17  Jackson Harper  <jackson@ximian.com>
17412
17413         * XplatUIX11.cs: Prune old keyboard code.
17414
17415 2004-12-17  Jackson Harper  <jackson@ximian.com>
17416
17417         * XplatUIX11.cs: When generating mouse wparams get the modifier
17418         keys from the ModifierKeys property.
17419
17420 2004-12-17  Jackson Harper  <jackson@ximian.com>
17421
17422         * X11Keyboard.cs: Send up/down input when generating
17423         messages. Remove some unused vars.
17424
17425 2004-12-17  Jackson Harper  <jackson@ximian.com>
17426
17427         * TabControl.cs:
17428         * TreeView.cs: get rid of warnings.
17429
17430 2004-12-17  Jackson Harper  <jackson@ximian.com>
17431
17432         * XplatUIStructs.cs: Fix a couple wrong virtual keycodes.
17433
17434 2004-12-17  Jordi Mas i Hernandez <jordi@ximian.com>
17435
17436         * ListBox.cs: bug fixes, changes for CheckedListBox.cs
17437           CheckedListBox.cs: Implementation
17438
17439 2004-12-17  Peter Bartok  <pbartok@novell.com>
17440
17441         * TextControl.cs (RecalculateLine): Fixed baseline aligning calcs
17442
17443 2004-12-16  Peter Bartok  <pbartok@novell.com>
17444
17445         * TextControl.cs:
17446           - InsertCharAtCaret(): Fixed start pos fixup
17447           - CaretLine_get: No longer derives the line from the tag, the tag
17448             could be stale if lines in the document have been added or deleted
17449           - RebalanceAfterDelete(): Fixed bug in balancing code
17450           - RebalanceAfterAdd(): Fixed really stupid bug in balancing code
17451           - Line.Streamline(): Now can also elminate leading empty tags
17452           - DumpTree(): Added a few more tests and prevented exception on
17453             uninitialized data
17454           - Added Debug section for Combining lines
17455           - Delete(): Now copies all remaining properties of a line
17456           
17457         * TextBoxBase.cs:
17458           - Left mousebutton now sets the caret (and middle button still acts
17459             as formatting tester, which must go away soon)
17460           - Added Debug section for Deleting/Combining lines
17461           - Fixed calculations for UpdateView after Combining lines
17462
17463 2004-12-16  Peter Bartok  <pbartok@novell.com>
17464
17465         * TextControl.cs: Now properly aligns text on a baseline, using the
17466           new XplatUI.GetFontMetrics() method. Simplified several calculations
17467         * TextBoxBase.cs: Moved #endif to allow compiling if Debug is not
17468           defined
17469
17470 2004-12-16  Peter Bartok  <pbartok@novell.com>
17471
17472         * XplatUI.cs: Added GetFontMetrics() method
17473         * XplatUIDriver.cs: Added GetFontMetrics() abstract
17474         * XplatUIX11.cs: Implemented GetFontMetrics() method, now calls
17475           into libgdiplus, our private GetFontMetrics function
17476         * XplatUIOSX.cs: Implemented GetFontMetrics() method, same as X11
17477         * XplatUIWin32.cs: Implemented GetFontMetrics() method
17478
17479 2004-12-16  Jackson Harper  <jackson@ximain.com>
17480
17481         * XplatUIStruct.cs: Add enum for dead keys
17482         * X11Keyboard.cs: Map and unmap dead keys.
17483
17484 2004-12-16  Jackson Harper  <jackson@ximian.com>
17485
17486         * X11Keyboard.cs: Detect and use the num lock mask.
17487
17488 2004-12-16  Peter Bartok  <pbartok@novell.com>
17489
17490         * Control.cs (CreateGraphics): Added check to make sure the
17491           handle of the window exists before calling Graphics.FromHwnd()
17492
17493 2004-12-16  Peter Bartok  <pbartok@novell.com>
17494
17495         * TextBoxBase.cs: Initial check-in. DO NOT TRY TO USE THIS YET. It
17496           contains a lot of code that's not supposed to be there for the
17497           real thing, but required for developing/testing the textbox
17498           backend.
17499
17500 2004-12-16  Peter Bartok  <pbartok@novell.com>
17501
17502         * TextControl.cs:
17503         - Fixed Streamline method
17504         - Added FindTag method to Line
17505         - Added DumpTree method for debugging
17506         - Added DecrementLines() method for deleting lines
17507         - Fixed UpdateView to update the cursor to end-of-line on single-line
17508           updates
17509         - Added PositionCaret() method
17510         - Fixed MoveCaret(LineDown) to move into the last line, too
17511         - Added InsertChar overload
17512         - Fixed InsertChar tag offset calculations
17513         - Added DeleteChar() method
17514         - Added Combine() method for folding lines
17515         - Fixed Delete() method, no longer allocates wasted Line object and
17516           now copies all properties when swapping nodes
17517         - Delete() method now updates document line counter
17518
17519 2004-12-15  Jackson Harper  <jackson@ximian.com>
17520
17521         * XplatUIX11.cs: Get the modifier keys from the keyboard driver
17522         * X11Keyboard.cs: Expose the currently selected modifier keys
17523         through a property.
17524
17525 2004-12-15  Peter Bartok  <pbartok@novell.com>
17526
17527         * TextControl.cs: Initial check-in. Still incomplete
17528
17529 2004-12-15  Jackson Harper  <jackson@ximian.com>
17530
17531         * TreeNode.cs:
17532         * TreeView.cs: Fix build on csc (second time today ;-))
17533
17534 2004-12-15  Jackson Harper  <jackson@ximian.com>
17535
17536         * TreeView.cs: Store the treenodes plus/minus box bounds when it
17537         is calculated and use this for click testing.
17538         * TreeNode.cs: Add functionality to store the nodes plus minus box bounds.
17539
17540 2004-12-15  Jackson Harper  <jackson@ximian.com>
17541
17542         * TreeView.cs: Pass the nodes image index to the image list when
17543         drawing that image.
17544
17545 2004-12-15  Jackson Harper  <jackson@ximian.com>
17546
17547         * X11Keyboard.cs: Set messages hwnd.
17548         * XplatUIX11.cs: Pass proper hwnd wot keyboard driver. Set hwnd on
17549         post_message calls.
17550
17551 2004-12-15  Jackson Harper  <jackson@ximian.com>
17552
17553         * X11Keyboard.cs: Fix to compile with csc.
17554         
17555 2004-12-15  Jackson Harper  <jackson@ximian.com>
17556
17557         * X11Structs.cs: Add key mask values
17558         * XplatUIStruct.cs: Add keyboard event flags, and keyboard definitions
17559         * X11Keyboard.cs: New file - Extrapolates and interpolates key
17560         down/up foo into WM_CHAR foo
17561         * KeyboardLayouts.cs: Common keyboard layouts
17562         * XplatUIX11.cs: Add the keyboard driver. Add functionality to
17563         post messages into the main queue.
17564
17565 2004-12-13  Jordi Mas i Hernandez <jordi@ximian.com>
17566
17567         * Button.cs: implement ProcessMnemonic
17568         * ThemeWin32Classic.cs: use ResPool (caching) instead of creating
17569           brushes everytime
17570         * Control.cs: fixes IsMnemonic (support for &&, case insensitive, etc)
17571         * ButtonBase.cs: Show HotkeyPrefix (not the &)
17572
17573 2004-12-12  John BouAntoun  <jba-mon@optusnet.com.au>
17574         
17575         * MonthCalendar.cs: Implemented click-hold for next/previous month
17576           and date selection
17577           
17578 2004-12-11  Peter Bartok  <pbartok@novell.com>
17579
17580         * X11Structs.cs:
17581           - Added XKeyboardState (moved from XplatUIX11.cs)
17582           - Added XCreateGC related enums and structures
17583           - Added GXFunction for XSetFunction
17584
17585         * XplatUIStructs.cs: Added missing WS_EX_xxx definitions
17586
17587         * XplatUI.cs: Added CreateCaret(), DestroyCaret(), SetCaretPos() and
17588           CaretVisible() calls
17589
17590         * ToolTip.cs: Added code to prevent stealing focus from app windows
17591
17592         * XplatUIDriver.cs: Added abstracts for caret functions (CreateCaret,
17593           DestroyCaret, SetCaretPos and CaretVisible)
17594
17595         * XplatUIX11.cs:
17596           - Added implementation for caret functions
17597           - Moved hover variables into a struct, to make it a bit easier
17598             on the eyes and to debug
17599           - Removed XKeyboardState (moved to XplatUIX11.cs)
17600           - Moved Keyboard properties into the properties region
17601
17602         * Control.cs (get_Region): Control.CreateGraphics is the appropriate
17603           call to get a graphics context for our control
17604
17605         * XplatUIOSX.cs: Added empty overrides for the new caret functions
17606
17607         * TreeView.cs: Fixed bug. No matter what color was set it would always
17608           return SystemColors.Window
17609
17610         * XplatUIWin32.cs: Implemented caret overrides
17611
17612 2004-12-10  Jordi Mas i Hernandez <jordi@ximian.com>
17613
17614         * ListBox.cs: fire events, implement missing methods and properties,
17615         sorting.
17616
17617 2004-12-10  John BouAntoun <jba-mono@optusnet.com.au>
17618
17619         * MonthCalendar.cs: invalidation bug fixing
17620         * ThemeWin32Classic.cs: paint fixing
17621
17622 2004-12-09  Geoff Norton  <gnorton@customerdna.com>
17623
17624         * XplatUIOSX.cs: Refactor to pass the real hwnd into Graphics.FromHwnd, we
17625         prepare the CGContextRef there now.
17626
17627 2004-12-09  John BouAntoun <jba-mono@optusnet.com.au>
17628
17629         * MonthCalendar.cs:
17630           - optimisationL only invalidate areas that have changed
17631         * ThemeWin32Classic.cs:
17632           - only paint parts that intersect with clip_area
17633
17634 2004-12-09  Peter Bartok  <pbartok@novell.com>
17635
17636         * Application.cs: Undid changes from r37004 which cause problems
17637         on X11
17638
17639 2004-12-09  Ravindra  <rkumar@novell.com>
17640
17641         * ToolBar.cs: Added support for displaying ContextMenu
17642         attached to a button on ToolBar.
17643         * ToolBarButton.cs: Uncomment/fixed the DropDownMenu
17644         property.
17645
17646 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17647
17648         * Label.cs: autosize works in text change and removes unnecessary
17649         invalidate
17650
17651 2004-12-09  Jordi Mas i Hernandez <jordi@ximian.com>
17652
17653         * ThemeWin32Classic.cs, XplatUIOSX.cs, XplatUIWin32.cs:
17654         remove warnings
17655
17656 2004-12-08  Geoff Norton  <gnorton@customerdna.com>
17657
17658         * XplatUIOSX.cs: Added mouse move/click/grab support
17659         Remove some debugging WriteLines not needed anymore.
17660         Add window resizing/positioning.
17661         Fix visibility on reparenting.
17662
17663 2004-12-08  Peter Bartok  <pbartok@novell.com>
17664
17665         * XplatUIOSX.cs: Added Idle event, now compiles on VS.Net
17666
17667 2004-12-07  Geoff Norton  <gnorton@customerdna.com>
17668
17669         * XplatUIOSX.cs: Initial checkin
17670         * XplatUI.cs: Use the Quartz driver if the environment is set to use it
17671
17672 2004-12-03  Ravindra <rkumar@novell.com>
17673
17674         * ListView.cs: Added some keybindings and fixed scrolling.
17675         ScrollBars listen to ValueChanged event instead of Scroll
17676         Event. This would let us take care of all changes being
17677         done in the scrollbars' values programmatically or manually.
17678         * ListView.cs (CanMultiselect): Added a check for shift key.
17679         * ListView.cs (EnsureVisible): Fixed. Do proper scrolling.
17680         * ListViewItem.cs (Clone): Fixed. We need to make a copy
17681         of ListViewSubItemCollection as well.
17682
17683 2004-12-06  Peter Bartok <pbartok@novell.com>
17684
17685         * Control.cs (Parent): Added check and exception to prevent
17686         circular parenting
17687
17688 2004-12-03  Jordi Mas i Hernandez <jordi@ximian.com>
17689
17690         * ListBox.cs: implemented clipping, selection single and multiple,
17691         bug fixing
17692
17693 2004-12-03  Ravindra <rkumar@novell.com>
17694
17695         * ListView.cs (ListView_KeyDown):
17696         * ListView.cs (ListView_KeyUp): Fixed multiple selection handling
17697         when CTRL key is pressed.
17698         * ListViewItem.cs (Selected): Fixed setting the property.
17699
17700 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17701
17702         * Application.cs (OnThreadException): Use ThreadExceptionDialog.
17703
17704         * Form.cs: Add ActiveForm, FormBorderStyle, MaximizeBox,
17705         MinimizeBox, ShowInTaskbar, TopMost properties.
17706
17707         * ThreadExceptionDialog.cs: Implemented (disabled TextBox until
17708         will be implemented).
17709
17710 2004-12-03  Marek Safar  <marek.safar@seznam.cz>
17711
17712         * OwnerDrawPropertyBag.cs: New internal parameterless ctor.
17713
17714         * TreeNode.cs: Implemented ICloneable, Fixed to pass my simple
17715         tests.
17716         
17717         * TreeNodeCollection.cs: Add exception throwing for Add,AddRange.
17718         
17719         * TreeView.cs: BackColor is Colors.Window.
17720
17721 2004-12-01  Jackson Harper  <jackson@ximian.com>
17722
17723         * TreeView.cs: When resizing the tree if the user is making it
17724         smaller we don't get expose events, so we need to handle adding
17725         the horizontal scrollbar in the size changed handler as well as
17726         the expose handler.
17727
17728 2004-12-02  Jordi Mas i Hernandez <jordi@ximian.com>
17729
17730         * DrawItemState.cs: fixes wrong enum values
17731
17732 2004-12-01  Jackson Harper  <jackson@ximian.com>
17733
17734         * TreeView.cs: Resize the hbar as well as the vbar on resize.
17735
17736 2004-12-01  Jackson Harper  <jackson@ximian.com>
17737
17738         * NodeLabelEditEventArgs.cs:
17739         * NodeLabelEditEventHandler.cs:
17740         * OpenTreeNodeEnumerator.cs:
17741         * TreeNode.cs:
17742         * TreeNodeCollection.cs:
17743         * TreeView.cs:
17744         * TreeViewAction.cs:
17745         * TreeViewCancelEventArgs.cs:
17746         * TreeViewCancelEventHandler.cs:
17747         * TreeViewEventArgs.cs:
17748         * TreeViewEventHandler.cs: Initial implementation.
17749
17750 2004-12-01  Ravindra <rkumar@novell.com>
17751
17752         * ListView.cs (CalculateListView): Fixed scrolling related
17753         calculations. Also, removed some debug statements from other
17754         places.
17755         * ListViewItem.cs: Changed access to 'selected' instance variable
17756         from private to internal.
17757         * ThemeWin32Classic.cs (DrawListViewItem): Fixed SubItem drawing.
17758
17759 2004-12-01  Jordi Mas i Hernandez <jordi@ximian.com>
17760
17761         * ThemeWin32Classic.cs: remove cache of brush and pens for
17762         specific controls and use the global system, fixes scrollbutton
17763         bugs (for small sizes, disabled, etc)
17764         
17765         * ScrollBar.cs: does not show the thumb for very small controls
17766         (as MS) and allow smaller buttons that the regular size
17767
17768 2004-12-01  Miguel de Icaza  <miguel@ximian.com>
17769
17770         * UpDownBase.cs: Add abstract methods for the interface.
17771         Add new virtual methods (need to be hooked up to TextEntry when it
17772         exists).
17773         Add override methods for most features.
17774         Computes the size, forces the height of the text entry.
17775
17776         * NumericUpDown.cs: Put here the current testing code.
17777
17778         * Set eol-style property on all files that do not have mixed line
17779         endings, to minimize the future problems.  There are still a few
17780         files with mixed endings, and someone should choose whether they
17781         want to move it or not.
17782
17783 2004-11-30  Jordi Mas i Hernandez <jordi@ximian.com>
17784
17785         * MonthCalendar.cs, ListView.cs: use Theme colours instead of
17786         System.Colors
17787         
17788 2004-11-30  Ravindra <rkumar@novell.com>
17789
17790         * ThemeWin32Classic.cs (DrawListViewItem): Fixed selected item
17791         drawing and replaced use of SystemColors by theme colors.
17792         * ListView.cs (ListView_Paint): Fixed painting done during scrolling.
17793         * ListView.cs (ListViewItemCollection.Add): Throw exception when
17794         same ListViewItem is being added more than once.
17795
17796 2004-11-30  John BouAntoun <jba-mono@optusnet.com.au>
17797
17798         * MonthCalendar.cs:
17799           - ControlStyles love to make the control not flicker
17800           
17801 2004-11-30  Peter Bartok  <pbartok@novell.com>
17802
17803         * CharacterCasing.cs: Added
17804
17805 2004-11-29  Peter Bartok  <pbartok@novell.com>
17806
17807         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17808           TreeViewAction.cs, TreeViewEventArgs.cs: Removed new files.
17809           I am removing these files as they conflict with already completed
17810           work. While it is fantastic to get contributions to MWF, I
17811           respectfully ask that everyone please coordinate their contributions
17812           through mono-winforms-list or #mono-winforms at this time. We're
17813           explicitly avoiding stubbing and don't want controls that don't have
17814           their basic functionality implemented in svn. Please also see
17815           http://www.mono-project.com/contributing/winforms.html
17816
17817
17818 2004-11-29  Marek Safar  <marek.safar@seznam.cz>
17819
17820         * Application.cs (ModalRun): Don't hang after exit.
17821
17822         * Theme.cs: New TreeViewDefaultSize property.
17823
17824         * ThemeWin32Classic.cs: Replaced hardcoded defaultWindowBackColor
17825         with less hardcoded SystemColors constant.
17826         Implemented TreeViewDefaultSize.
17827
17828         * TreeNode.cs, TreeNodeCollection.cs, TreeView.cs,
17829         TreeViewAction.cs, TreeViewEventArgs.cs: New files.
17830
17831
17832 2004-11-29  John BouAntoun <jba-mono@optusnet.com.au>
17833
17834         * MonthCalendar.cs:
17835           - Fix NextMonthDate and PrevMonthDate click moving calendar
17836
17837 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17838
17839         * MonthCalendar.cs:
17840           - Fix usage of ScrollChange Property when scrolling months
17841
17842 2004-11-26  Jordi Mas i Hernandez <jordi@ximian.com>
17843
17844         * Menu.cs, MainMenu.cs, MenuItem.cs, MenuAPI.cs
17845          - Fixes menu destroying
17846          - Support adding and removing items on already created menus
17847
17848 2004-11-26  John BouAntoun <jba-mono@optusnet.com.au>
17849
17850         * MonthCalendar.cs:
17851           - Re-worked all bolded dates handling to match win32
17852         * ThemeWin32Classic.cs:
17853           - Fixed rendering with bolded dates
17854
17855 2004-11-25  Jordi Mas i Hernandez <jordi@ximian.com>
17856
17857         * ListBox.cs, Theme.cs, ThemeWin32Classic.cs:
17858         - Horizontal scroolbar
17859         - Multicolumn
17860         - Fixes
17861
17862
17863 2004-11-25  John BouAntoun <jba-mono@optusnet.com.au>
17864
17865         * MonthCalendar.cs:
17866           - Fix Usage of MaxSelectionCount from SelectionRange
17867           - Fixed Shift + Cursor Selection
17868           - Fixed Shift + (Pg up/Pg dn, Home/End) selection
17869           - Fixed normal cursor selection to be compat with win32
17870           - Fixed Shift + Mouse Click selection
17871
17872 2004-11-24  Peter Bartok <pbartok@novell.com>
17873
17874         * XplatUI.cs (DispatchMessage): Switched to return IntPtr
17875         * XplatUIDriver.cs (DispatchMessage): Switched to return IntPtr
17876         * XplatUIX11.cs:
17877           - CreatedKeyBoardMsg now updates keystate with Alt key
17878           - Added workaround for timer crash to CheckTimers, Jackson will
17879             develop a proper fix and check in later
17880           - Implemented DispatchMessage
17881           - Removed calling the native window proc from GetMessage (call
17882             now moved to DispatchMessage)
17883
17884         * KeyEventArgs.cs (Constructor): Now combines modifierkeys into
17885           the keydata (Fixes bug #69831)
17886
17887         * XplatUIWin32.cs:
17888           - (DispatchMessage): Switched to return IntPtr
17889           - Added DllImport for SetFocus
17890
17891 2004-11-24  Ravindra <rkumar@novell.com>
17892
17893         * ThemeWin32Classic.cs: Fixed ListView border and checkbox
17894         background drawing.
17895         * ListViewItem.cs: Fixed various properties, calculations
17896         and Clone() method. Fixed ListViewSubItemCollection.Clear() method.
17897         * ListView.cs: Fixed calculations, BackColor, ForeColor properties
17898         and some internal properties. Fixed MouseDown handler and Paint
17899         method.
17900
17901 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17902
17903         * MonthCalendar.cs: Add TitleMonth ContextMenu handling
17904
17905 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17906
17907         * ContainerControl.cs: correct accidental check in of local changes
17908
17909 2004-11-24  John BouAntoun <jba-mono@optusnet.com.au>
17910
17911         * ThemeWin32Classic.cs:
17912                 - Fixed Drawing Last month in grid (sometimes not showing)
17913         * MonthCalendar.cs:
17914                 - Fixed title width calculation bug (makeing title small)
17915
17916 2004-11-23  Peter Bartok <pbartok@novell.com>
17917
17918         * XplatUIX11.cs:
17919           - Added generation of WM_MOUSEHOVER event
17920           - Added missing assignment of async_method atom
17921           - Fixed WM_ERASEBKGND; now only redraws the exposed area
17922
17923 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17924
17925         * ThemeWin32Classic.cs:
17926                 - Fixed Drawing of today circle when showtodaycircle not set
17927                 - fixed drawing of first and last month in the grid (gay dates)
17928         * MonthCalendar.cs:
17929                 - Fixed Drawing of today circle
17930                 - Fixed drawing of grady dates
17931                 - Fixed HitTest for today link when ShowToday set to false
17932                 - Fixed DefaultSize to obey ShowToday
17933
17934 2004-11-23  John BouAntoun <jba-mono@optusnet.com.au>
17935
17936         * ThemeWin32Classic.cs: Fixed DrawMonthCalendar and private support methods
17937         * System.Windows.Forms/Theme.cs
17938         * MonthCalendar.cs: added for MonthCalendar
17939         * SelectionRange.cs: added for MonthCalendar
17940         * Day.cs: added for MonthCalendar: added for MonthCalendar
17941         * DateRangeEventArgs.cs: added for MonthCalendar
17942         * DateRangeEventHandler.cs: added for MonthCalendar
17943
17944 2004-11-22  Ravindra <rkumar@novell.com>
17945
17946         * ThemeWin32Classic.cs: Fixed ListViewDrawing with 'UseItemStyleForSubItems'
17947         property.
17948
17949 2004-11-22  Miguel de Icaza  <miguel@ximian.com>
17950
17951         * UpDownBase.cs (InitTimer): Use prehistoric C# 1.0 notation for
17952         event handler.
17953         
17954         * NumericUpDown.cs: Added new implementation.
17955         * UpDownBase.cs: Added new implementation.
17956
17957         * XplatUIWin32.cs (KeyboardSpeed, KeyboardDelay): added default
17958         implementations.
17959         
17960         * XplatUIX11.cs (KeyboardSpeed, KeyboardDelay): added default
17961         implementations.
17962
17963         * XplatUIDriver.cs ((KeyboardSpeed, KeyboardDelay): added new
17964         methods.
17965
17966 2004-11-21  Miguel de Icaza  <miguel@ximian.com>
17967
17968         * Timer.cs  (Dispose): Should call the base dispose when
17969         overriding.
17970
17971 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17972
17973         * ScrollBar.cs: updates thumb position when max, min or increment
17974         is changed
17975
17976 2004-11-21  Ravindra <rkumar@novell.com>
17977
17978         * ListView.cs: Implemented item selection, activation and
17979         column header style. Fixed properties to do a redraw, if
17980         required. Added support for MouseHover, DoubleClick, KeyDown
17981         and KeyUp event handling and some minor fixes.
17982         * ListViewItem.cs: Fixed constructor.
17983         * ThemeWin32Classic.cs: Improved drawing for ListView.
17984
17985 2004-11-19  Jordi Mas i Hernandez <jordi@ximian.com>
17986
17987         * ThemeWin32Classic.cs: initial listbox drawing code
17988         * DrawMode.cs: new enumerator
17989         * ListControl.cs: stubbed class
17990         * ListBox.cs: initial implementation
17991         * Theme.cs: new methods definitions
17992         * SelectionMode.cs: new enumerator
17993
17994 2004-11-17  Peter Bartok  <pbartok@novell.com>
17995
17996         * XplatUIWin32.cs: Added double-click events to the class style
17997         * Control.cs (WndProc):
17998           - Added handling of click-count to MouseDown/ MouseUp events.
17999           - Added handling of middle and right mouse buttons
18000           - Removed old debug code
18001
18002 2004-11-17  Jackson Harper  <jackson@ximian.com>
18003
18004         * XplatUIX11.cs: Use the new Mono.Unix namespace.
18005
18006 2004-11-17  Ravindra <rkumar@novell.com>
18007
18008         * ListView.cs: Added event handling for MouseMove/Up/Down.
18009         * ColumnHeader.cs: Added a read-only internal property 'Pressed'.
18010         * ThemeWin32Classic.cs: We need to clear the graphics context and
18011         draw column header in a proper state.
18012
18013
18014 2004-11-17  Jordi Mas i Hernandez <jordi@ximian.com>
18015
18016         *  Menu.cs: fixes signature
18017
18018 2004-11-16  Peter Bartok  <pbartok@novell.com>
18019
18020         * XplatUIX11.cs (GetMessage): Implemented generation of
18021           double click mouse messages
18022
18023 2004-11-12  Jordi Mas i Hernandez <jordi@ximian.com>
18024
18025         *  Form.cs, MainMenu.cs, MenuAPI.cs: tracker should be for tracking session
18026         not by menu
18027
18028 2004-11-11  Peter Bartok  <pbartok@novell.com>
18029
18030         * HandleData.cs: Added Visible property
18031         * XplatUIX11.cs (IsVisible): Now uses Visible property from
18032           HandleData
18033         * XplatUIX11.cs: Removed old debug leftovers
18034         * XplatUIX11.cs (DefWndProc): Added WM_ERASEBKGND handler
18035         * Control.cs (WndProc): Removed old debug leftovers,
18036           streamlined handling of WM_WINDOWPOSCHANGED, removed un-
18037           needed WM_SIZE handling
18038
18039 2004-11-11  Jackson Harper  <jackson@ximian.com>
18040
18041         * OwnerDrawPropertyBag.cs:
18042         * TreeViewImageIndexConverter.cs: Initial implementation
18043
18044 2004-11-10  Jackson Harper  <jackson@ximian.com>
18045
18046         * ThemeWin32Classic.cs:
18047         * TabControl.cs: instead of moving tabs by the slider pos just
18048         start drawing at the tab that is offset by the slider. This way
18049         scrolling always moves by exactly one tab.
18050
18051 2004-11-10  Jackson Harper  <jackson@ximian.com>
18052
18053         * TabControl.cs: You can only scroll left when the slider has
18054         already ben moved right.
18055         
18056 2004-11-10  Jackson Harper  <jackson@ximian.com>
18057
18058         * ThemeWin32Classic.cs: Do not draw the selected tab if its not in
18059         the clip area.
18060         
18061 2004-11-10  Jackson Harper  <jackson@ximian.com>
18062
18063         * ThemeWin32Classic.cs: Don't bother drawing tabs outside of the
18064         clip area.
18065         
18066 2004-11-09  Jackson Harper  <jackson@ximian.com>
18067
18068         * TabControl.cs (CalcXPos): New helper method so we can determine
18069         the proper place to start drawing vertical tabs.
18070         * ThemeWin32Classic.cs (DrawTab): Draw right aligned tabs.
18071         
18072 2004-11-09  Jackson Harper  <jackson@ximian.com>
18073
18074         * TabControl.cs: Calculate sizing and rects for left aligned tabs.
18075         * ThemeWin32Classic.cs (GetTabControl*ScrollRect): Only handle Top
18076         and Bottom, left and right are illegal values for this and
18077         multiline is enabled when the alignment is set to left or right.
18078         (DrawTab): Each alignment block should draw the text itself now
18079         because Left requires special love. Also add rendering for Left
18080         aligned tabs.
18081         
18082 2004-11-09  Jordi Mas i Hernandez <jordi@ximian.com>
18083
18084         *  Form.cs, MainMenu.cs, MenuAPI.cs: fixes menu navigation, fixes popups,
18085         does not destroy the windows, removes debugging messages
18086
18087 2004-11-09  jba  <jba-mono@optusnet.com.au>
18088
18089         * ThemeWin32Classic.cs
18090         (DrawButtonBase): Fix verticle text rect clipping in windows
18091         (DrawCheckBox): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18092         rendering and incorrect text rect clipping
18093         (DrawRadioButton): Fix CheckAlign.TopCenter and CheckAlign.BottomCenter
18094         rendering and incorrect text rect clipping
18095         
18096 2004-11-08  Jackson Harper  <jackson@ximian.com>
18097
18098         * ThemeWin32Classic.cs (DrawTabControl): Render tabs from top to
18099         bottom when they are bottom aligned so the bottoms of the tabs get
18100         displayed.
18101         * TabControl.cs (DropRow): Move rows up instead of down when the
18102         tab control is bottom aligned.
18103
18104 2004-11-08 13:59  pbartok
18105
18106         * XplatUIX11.cs:
18107           - Added handling for various window styles
18108           - Added handling for popup windows
18109           - Added SetTopmost handling
18110
18111 2004-11-08 13:55  pbartok
18112
18113         * XplatUIWin32.cs:
18114           - Added argument to SetTopmost method
18115           - Fixed broken ClientToScreen function
18116
18117 2004-11-08 13:53  pbartok
18118
18119         * XplatUIStructs.cs:
18120           - Added missing WS_EX styles
18121
18122 2004-11-08 13:53  pbartok
18123
18124         * XplatUI.cs, XplatUIDriver.cs:
18125           - Added argument to SetTopmost
18126
18127 2004-11-08 13:52  pbartok
18128
18129         * X11Structs.cs:
18130           - Added XSetWindowAttributes structure
18131           - Improved XWindowAttributes structure
18132           - Added SetWindowValuemask enum
18133           - Added window creation arguments enum
18134           - Added gravity enum
18135           - Added Motif hints structure
18136           - Added various Motif flags and enums
18137           - Added PropertyMode enum for property functions
18138
18139 2004-11-08 13:50  pbartok
18140
18141         * Form.cs:
18142           - Fixed arguments for updated SetTopmost method
18143
18144 2004-11-08 13:49  pbartok
18145
18146         * ToolTip.cs:
18147           - Fixed arguments for updated SetTopmost function
18148           - Fixed usage of PointToClient
18149
18150 2004-11-08 13:44  pbartok
18151
18152         * MenuAPI.cs:
18153           - Added Clipping of children and siblings
18154
18155 2004-11-08 13:41  pbartok
18156
18157         * MainMenu.cs:
18158           - Removed SetMenuBarWindow call. We do this in Form.cs
18159
18160 2004-11-08 13:40  jackson
18161
18162         * TabControl.cs, Theme.cs, ThemeWin32Classic.cs: Render the little
18163           scrolling jimmi in the correct location with bottom aligned tabs
18164
18165 2004-11-08 13:36  pbartok
18166
18167         * ContainerControl.cs:
18168           - Implemented BindingContext
18169           - Implemented ParentForm
18170
18171 2004-11-08 12:46  jackson
18172
18173         * TabControl.cs: Put bottom rendered tabs in the right location
18174
18175 2004-11-08 07:15  jordi
18176
18177         * ScrollBar.cs, ThemeWin32Classic.cs: fixes vertical scrollbar and
18178           removes dead code
18179
18180 2004-11-05 17:30  jackson
18181
18182         * TabControl.cs: When selected tabs are expanded make sure they
18183           don't go beyond the edges of the tab control
18184
18185 2004-11-05 14:57  jackson
18186
18187         * TabControl.cs: Reset show_slider so if the control is resized to
18188           a size where it is no longer needed it's not displayed anymore
18189
18190 2004-11-05 13:16  jackson
18191
18192         * TabControl.cs: Make tab pages non visible when added to the
18193           control
18194
18195 2004-11-05 12:42  jackson
18196
18197         * TabControl.cs: Implement SizeMode.FillToRight
18198
18199 2004-11-05 12:16  jackson
18200
18201         * Control.cs: Do not call CreateHandle if the handle is already
18202           created
18203
18204 2004-11-05 11:46  jackson
18205
18206         * TabControl.cs: Remove superflous call to CalcTabRows
18207
18208 2004-11-05 09:07  jackson
18209
18210         * XplatUIX11.cs: Update for Mono.Posix changes
18211
18212 2004-11-05 07:00  ravindra
18213
18214         * ListView.cs, ListViewItem.cs: Implemented some methods and fixed
18215           scrolling.
18216
18217 2004-11-04 22:47  jba
18218
18219         * ThemeWin32Classic.cs:
18220           - Fix Button rendering for FlatStyle = Flat or Popup
18221           - Fix RadioButton and CheckBox rendering when Appearance = Button
18222             (normal and flatstyle).
18223           - Correct outer rectangle color when drawing focus rectangle
18224           - Adjust button bounds to be 1 px smaller when focused
18225           - Make button not draw sunken 3d border when pushed (windows compat)
18226           - Fix CPDrawBorder3D to not make bottom right hand corner rounded
18227           - Offset the text in RadioButton and Checkbox when being rendered as
18228           a button.
18229           - Hover and Click behaviour for Colored FlatStyle.Flat and Popup
18230           radiobuttons
18231           - Fixed disabled rendering for colored flatstyle radiobuttons (both)
18232           - Fixed disabled text rendering for normally rendered radiobuttons
18233
18234 2004-11-04 10:26  jackson
18235
18236         * TabControl.cs: Recalculate tab rows when resizing
18237
18238 2004-11-04 07:47  jordi
18239
18240         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs:
18241           collection completion, drawing issues, missing features
18242
18243 2004-11-04 05:03  ravindra
18244
18245         * ScrollBar.cs:
18246                 - We need to recalculate the Thumb area when
18247                 LargeChange/maximum/minimum values are changed.
18248           - We set the 'pos' in UpdatePos() method to minimum, if it's less
18249                 than minimum. This is required to handle the case if large_change is
18250                 more than max, and use LargeChange property instead of large_change
18251                 variable.
18252           - We return max+1 when large_change is more than max, like MS does.
18253
18254 2004-11-04 04:29  ravindra
18255
18256         * ColumnHeader.cs, ListView.cs, ListViewItem.cs:
18257                 - Changed default value signatures (prefixed all with ListView).
18258                 - Fixed/implemented layout LargeIcon, SmallIcon and List views for
18259                 ListView.
18260           - Fixed calculations for ListViewItem and implemented Clone()
18261           method.
18262
18263 2004-11-04 04:26  ravindra
18264
18265         * Theme.cs, ThemeWin32Classic.cs:
18266                 - Changed default ListView values signatures (prefixed all with
18267                 ListView).
18268           - Fixed default size values for VScrollBar and HScrollBar.
18269                 - Fixed DrawListViewItem method.
18270
18271 2004-11-04 04:05  ravindra
18272
18273         * ColumnHeaderStyle.cs: Typo. It should be Nonclickable.
18274
18275 2004-11-04 04:04  ravindra
18276
18277         * ImageList.cs: Implemented the missing overload for Draw method.
18278
18279 2004-11-03 19:29  jackson
18280
18281         * TabControl.cs: Handle dropping rows on selection properly
18282
18283 2004-11-03 11:59  jackson
18284
18285         * TabControl.cs: remove debug code
18286
18287 2004-11-03 11:52  jackson
18288
18289         * TabControl.cs, ThemeWin32Classic.cs: Initial implementation of
18290           the scrolly widgerywoo
18291
18292 2004-11-02 13:52  jackson
18293
18294         * TabControl.cs: Resize the tab pages and tabs when the tab control
18295           is resized
18296
18297 2004-11-02 13:40  jackson
18298
18299         * TabControl.cs, ThemeWin32Classic.cs: Move the row with the
18300           selected tab to the bottom
18301
18302 2004-11-02 13:39  jackson
18303
18304         * TabPage.cs: Store the tab pages row
18305
18306 2004-11-02 12:33  jordi
18307
18308         * MenuItem.cs: fixes handle creation
18309
18310 2004-11-02 11:42  jackson
18311
18312         * TabControl.cs: signature fix
18313
18314 2004-11-02 08:56  jackson
18315
18316         * TabControl.cs: Calculate whether the tab is on an edge properly.
18317           Remove top secret debugging code
18318
18319 2004-11-01 19:57  jackson
18320
18321         * TabControl.cs: Add click handling, and proper sizing
18322
18323 2004-11-01 19:47  jackson
18324
18325         * Theme.cs, ThemeWin32Classic.cs: New rendering and sizing code for
18326           tab controls
18327
18328 2004-11-01 19:39  jackson
18329
18330         * TabPage.cs: add internal property to store the bounds of a tab
18331           page
18332
18333 2004-10-30 04:23  ravindra
18334
18335         * Theme.cs, ThemeWin32Classic.cs: Drawing ListView and some default
18336           values.
18337
18338 2004-10-30 04:21  ravindra
18339
18340         * ListView.cs, ListViewItem.cs: Added support for scrolling and
18341           fixed calculations.
18342
18343 2004-10-30 03:06  pbartok
18344
18345         * XplatUIX11.cs:
18346           - Removed extension of DllImported libs
18347
18348 2004-10-29 09:55  jordi
18349
18350         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: Menu key
18351           navigation, itemcollection completion, menu fixes
18352
18353 2004-10-27 22:58  pbartok
18354
18355         * XplatUIX11.cs:
18356           - Now throws a nice error message when no X display could be opened
18357
18358 2004-10-26 13:51  jordi
18359
18360         * ListView.cs: removes warning
18361
18362 2004-10-26 03:55  ravindra
18363
18364         * ColumnHeader.cs, ListView.cs, ListViewItem.cs,
18365           ThemeWin32Classic.cs: Some formatting for my last checkins.
18366
18367 2004-10-26 03:36  ravindra
18368
18369         * ThemeWin32Classic.cs: Implemented DetailView drawing for ListView
18370           control and default values.
18371
18372 2004-10-26 03:35  ravindra
18373
18374         * Theme.cs: Added some default values for ListView control.
18375
18376 2004-10-26 03:33  ravindra
18377
18378         * ToolBar.cs: ToolBar should use the user specified button size, if
18379           there is any. Added a size_specified flag for the same.
18380
18381 2004-10-26 03:33  ravindra
18382
18383         * ColumnHeader.cs: Added some internal members and calculations for
18384           ColumnHeader.
18385
18386 2004-10-26 03:32  ravindra
18387
18388         * ListViewItem.cs: Calculations for ListViewItem.
18389
18390 2004-10-26 03:31  ravindra
18391
18392         * ListView.cs: Added some internal members and calculations for
18393           ListView.
18394
18395 2004-10-22 13:31  jordi
18396
18397         * MenuAPI.cs: speedup menus drawing
18398
18399 2004-10-22 13:16  jackson
18400
18401         * XplatUIX11.cs: Make sure to update exposed regions when adding an
18402           expose event
18403
18404 2004-10-22 11:49  jackson
18405
18406         * Control.cs: oops
18407
18408 2004-10-22 11:41  jackson
18409
18410         * Control.cs: Check to see if the window should have its background
18411           repainted by X when drawing.
18412
18413 2004-10-22 11:31  jackson
18414
18415         * XplatUIX11.cs: When invalidating areas only use XClearArea if
18416           clear is true, this way we do not get flicker from X repainting the
18417           background
18418
18419 2004-10-22 11:28  jackson
18420
18421         * XEventQueue.cs: Queue properly
18422
18423 2004-10-21 09:38  jackson
18424
18425         * XEventQueue.cs: Fix access modifier
18426
18427 2004-10-21 09:36  jackson
18428
18429         * XEventQueue.cs: Don't loose messages
18430
18431 2004-10-21 09:22  jackson
18432
18433         * XEventQueue.cs: Don't loose messages
18434
18435 2004-10-20 04:15  jordi
18436
18437         * BootMode.cs: enum need it by SystemInfo
18438
18439 2004-10-19 21:58  pbartok
18440
18441         * XplatUIWin32.cs:
18442           - Small sanity check
18443
18444 2004-10-19 21:56  pbartok
18445
18446         * Form.cs:
18447           - Added private FormParentWindow class which acts as the container
18448             for our form and as the non-client area where menus are drawn
18449           - Added/Moved required tie-ins to Jordi's menus
18450           - Fixed/Implemented the FormStartPosition functionality
18451
18452 2004-10-19 21:52  pbartok
18453
18454         * Control.cs:
18455           - Removed unneeded locals
18456           - Added code to all size and location properties to understand and
18457             deal with the parent container of Form
18458
18459 2004-10-19 21:33  pbartok
18460
18461         * Application.cs:
18462           - Fixed to deal with new Form subclasses for menus
18463
18464 2004-10-19 17:48  jackson
18465
18466         * XEventQueue.cs: commit correct version of file
18467
18468 2004-10-19 16:50  jackson
18469
18470         * XEventQueue.cs, XplatUIX11.cs: New optimized event queue
18471
18472 2004-10-19 16:15  jordi
18473
18474         * MenuAPI.cs: MenuBarCalcSize returns the height
18475
18476 2004-10-19 08:31  pbartok
18477
18478         * Control.cs:
18479           - Added missing call to PreProcessMessage before calling OnXXXKey
18480           methods
18481
18482 2004-10-19 00:04  ravindra
18483
18484         * ToolTip.cs: Fixed constructor.
18485
18486 2004-10-18 09:31  jordi
18487
18488         * MenuAPI.cs: menuitems in menubars do not have shortcuts
18489
18490 2004-10-18 09:26  jordi
18491
18492         * MenuItem.cs: fixes MenuItem class signature
18493
18494 2004-10-18 08:56  jordi
18495
18496         * MenuAPI.cs: prevents windows from showing in the taskbar
18497
18498 2004-10-18 00:28  ravindra
18499
18500         * ToolTip.cs: Suppressed a warning message.
18501
18502 2004-10-18 00:27  ravindra
18503
18504         * Control.cs: Default value of visible property must be true.
18505
18506 2004-10-17 23:19  pbartok
18507
18508         * ToolTip.cs:
18509           - Complete implementation
18510
18511 2004-10-17 23:19  pbartok
18512
18513         * XplatUIX11.cs:
18514           - Added EnableWindow method
18515           - Added SetModal stub
18516           - Added generation of WM_ACTIVATE message (still needs testing)
18517           - Added SetTopMost stub
18518           - Changes to deal with VirtualKeys being moved to XplatUIStructs.cs
18519
18520 2004-10-17 23:17  pbartok
18521
18522         * XplatUIWin32.cs:
18523           - Removed VirtualKeys to XplatUIStructs
18524           - Implemented SetTopMost method
18525           - Implemented EnableWindow method
18526           - Bugfix in ScreenToClient()
18527           - Bugfixes in ClientToScreen()
18528
18529 2004-10-17 22:51  pbartok
18530
18531         * XplatUIStructs.cs:
18532           - Added WS_EX styles to WindowStyles enumeration
18533
18534 2004-10-17 22:50  pbartok
18535
18536         * XplatUI.cs, XplatUIDriver.cs:
18537           - Added method for enabling/disabling windows
18538           - Added method for setting window modality
18539           - Added method for setting topmost window
18540
18541 2004-10-17 22:49  pbartok
18542
18543         * ThemeWin32Classic.cs:
18544           - Added ToolTip drawing code
18545
18546 2004-10-17 22:49  pbartok
18547
18548         * Theme.cs:
18549           - Added ToolTip abstracts
18550
18551 2004-10-17 22:47  pbartok
18552
18553         * Form.cs:
18554           - Fixed Form.ControlCollection to handle owner relations
18555           - Added Owner/OwnedForms handling
18556           - Implemented Z-Ordering for owned forms
18557           - Removed unneeded private overload of ShowDialog
18558           - Fixed ShowDialog, added the X11 incarnation of modal handling (or
18559             so I hope)
18560           - Fixed Close(), had wrong default
18561           - Added firing of OnLoad event
18562           - Added some commented out debug code for Ownership handling
18563
18564 2004-10-17 22:16  pbartok
18565
18566         * Control.cs:
18567           - Fixed/implemented flat list of controls
18568
18569 2004-10-17 22:14  pbartok
18570
18571         * Application.cs:
18572           - Added code to simulate modal dialogs on Win32
18573
18574 2004-10-17 16:11  jordi
18575
18576         * ScrollBar.cs: disabled scrollbar should not honor any keyboard or
18577           mouse event
18578
18579 2004-10-17 13:39  jordi
18580
18581         * MenuAPI.cs: menu drawing fixes
18582
18583 2004-10-15 09:10  ravindra
18584
18585         * StructFormat.cs: General Enum.
18586
18587 2004-10-15 09:09  ravindra
18588
18589         * SizeGripStyle.cs: Enum for Form.
18590
18591 2004-10-15 09:08  ravindra
18592
18593         * Theme.cs, ThemeWin32Classic.cs: Added ColumnHeaderHeight property
18594           in Theme for ListView.
18595
18596 2004-10-15 09:06  ravindra
18597
18598         * ColumnHeader.cs: Flushing some formatting changes.
18599
18600 2004-10-15 09:05  ravindra
18601
18602         * ListViewItem.cs: Implemented GetBounds method and fixed coding
18603           style.
18604
18605 2004-10-15 09:03  ravindra
18606
18607         * ListView.cs: Implemented Paint method and fixed coding style.
18608
18609 2004-10-15 07:34  jordi
18610
18611         * MenuAPI.cs: fix for X11
18612
18613 2004-10-15 07:32  ravindra
18614
18615         * ButtonBase.cs, CheckBox.cs, RadioButton.cs:
18616                 - Renamed Paint() method to Draw() for clarity. Also, moved
18617                 DrawImage() to OnPaint().
18618
18619 2004-10-15 07:25  ravindra
18620
18621         * CheckBox.cs, RadioButton.cs:
18622                 - Removed Redraw (), we get it from ButtonBase.
18623                 - Implemented Paint (), to do class specific painting.
18624
18625 2004-10-15 07:16  ravindra
18626
18627         * ButtonBase.cs:
18628                 - Redraw () is not virtual now.
18629                 - Added an internal virtual method Paint (), so that
18630                 derived classes can do their painting on their own.
18631                 - Modified OnPaint () to call Paint ().
18632
18633 2004-10-15 06:43  jordi
18634
18635         * ContextMenu.cs, DrawItemEventHandler.cs, Form.cs, MainMenu.cs,
18636           MenuAPI.cs, MenuItem.cs: menu work, mainmenu, subitems, etc
18637
18638 2004-10-15 00:30  ravindra
18639
18640         * MessageBox.cs:
18641                 - MessageBox on windows does not have min/max buttons.
18642                 This change in CreateParams fixes this on Windows. We
18643                 still need to implement this windowstyle behavior in
18644                 our X11 driver.
18645
18646 2004-10-14 05:14  ravindra
18647
18648         * ToolBar.cs:
18649                 - Changed Redraw () to do a Refresh () always.
18650                 - Fixed the MouseMove event handling when mouse is pressed,
18651                 ie drag event handling.
18652                 - Replaced the usage of ToolBarButton.Pressed property to
18653                 ToolBarButton.pressed internal variable.
18654
18655 2004-10-14 05:10  ravindra
18656
18657         * ToolBarButton.cs:
18658                 - Added an internal member 'inside' to handle mouse move
18659                 with mouse pressed ie mouse drag event.
18660                 - Changed 'Pressed' property to return true only when
18661                 'inside' and 'pressed' are both true.
18662                 - Some coding style love.
18663
18664 2004-10-14 00:17  ravindra
18665
18666         * Form.cs: Fixed class signature. ShowDialog (Control) is not a
18667           public method.
18668
18669 2004-10-14 00:15  ravindra
18670
18671         * ButtonBase.cs: Redraw () related improvements.
18672
18673 2004-10-14 00:14  ravindra
18674
18675         * MessageBox.cs: Moved InitFormSize () out of Paint method and
18676           removed unnecessary calls to Button.Show () method.
18677
18678 2004-10-13 17:50  pbartok
18679
18680         * XplatUIX11.cs:
18681           - Formatting fix
18682           - Removed destroying of window until we solve the problem of X
18683             destroying the window before us on shutdown
18684
18685 2004-10-13 16:32  pbartok
18686
18687         * ButtonBase.cs:
18688           - Now Redraws on MouseUp for FlatStyle Flat and Popup
18689
18690 2004-10-13 14:18  pbartok
18691
18692         * XplatUIX11.cs:
18693           - Added code to destroy the X window
18694
18695 2004-10-13 14:18  pbartok
18696
18697         * XplatUIWin32.cs:
18698           - Added code to destroy a window
18699
18700 2004-10-13 14:12  pbartok
18701
18702         * ButtonBase.cs:
18703           - Added the Redraw on Resize that got dropped in the last rev
18704
18705 2004-10-13 09:06  pbartok
18706
18707         * ThemeWin32Classic.cs:
18708           - Path from John BouAntoun:
18709             * Fix check rendering (centre correctly for normal style, offset
18710               correctly for FlatStyle).
18711             * Fix border color usage (use backcolor) for FlatStyle.Popup
18712             * Use checkbox.Capture instead of checkbox.is_pressed when
18713               rendering flatstyle states.
18714
18715 2004-10-12 21:48  pbartok
18716
18717         * ThemeWin32Classic.cs:
18718           - Removed all occurences of SystemColors and replaced them with the
18719             matching theme color
18720
18721 2004-10-12 21:41  pbartok
18722
18723         * ThemeWin32Classic.cs:
18724           - From John BouAntoun: Added an overload to CPDrawBorder3D to allow
18725             him using the function for flatstyle drawing
18726           - Changed functions to use the new version of CPDrawBorder3D
18727
18728 2004-10-12 21:15  pbartok
18729
18730         * ControlPaint.cs:
18731           - Fixed Dark(), DarkDark(), Light() and LightLight() methods to
18732             match MS documentation. They need to return defined colors if the
18733             passed color matches the configured control color. Thanks to John
18734             BouAntoun for pointing this out.
18735
18736 2004-10-12 20:57  pbartok
18737
18738         * Control.cs:
18739           - Fix from John BouAntoun: Raise ForeColorChanged event when text
18740             color is changed
18741
18742 2004-10-12 20:46  pbartok
18743
18744         * CheckBox.cs:
18745           - Fix from John BouAntoun: Now properly sets the Appearance property
18746
18747 2004-10-12 20:45  pbartok
18748
18749         * ThemeWin32Classic.cs:
18750           - Fixes from John BouAntoun: now handles forecolors and backcolors
18751             for flatstyle rendered controls much better; It also fixes normal
18752             checkbox rendering when pushed or disabled.
18753
18754 2004-10-08 02:50  jordi
18755
18756         * Form.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs: more menu
18757           work
18758
18759 2004-10-07 08:56  jordi
18760
18761         * ThemeWin32Classic.cs: Removes deletion of cached brushes
18762
18763 2004-10-06 03:59  jordi
18764
18765         * Control.cs, StatusBar.cs, ThemeWin32Classic.cs, ToolBar.cs,
18766           XplatUIWin32.cs: removes warnings from compilation
18767
18768 2004-10-05 12:23  jackson
18769
18770         * RadioButton.cs: Fix ctor
18771
18772 2004-10-05 11:10  pbartok
18773
18774         * MessageBox.cs:
18775           - Partial implementation by Benjamin Dasnois
18776
18777 2004-10-05 10:15  jackson
18778
18779         * ThemeWin32Classic.cs: Improve rendering of the radio button patch
18780           by John BouAntoun
18781
18782 2004-10-05 03:07  ravindra
18783
18784         * ToolBar.cs:
18785                 - Removed a private method, Draw ().
18786                 - Fixed the ButtonDropDown event handling.
18787                 - Fixed MouseMove event handling.
18788
18789 2004-10-05 03:04  ravindra
18790
18791         * ThemeWin32Classic.cs:
18792                 - Added DrawListView method and ListViewDefaultSize property.
18793                 - Changed ControlPaint method calls to CPDrawXXX wherever possible.
18794                 - Changed DOS style CRLF to Unix format (dos2unix).
18795
18796 2004-10-05 03:03  ravindra
18797
18798         * Theme.cs:
18799                 - Added DrawListView method and ListViewDefaultSize property.
18800
18801 2004-10-05 02:42  ravindra
18802
18803         * ToolBarButton.cs: Added an internal member dd_pressed to handle
18804           clicks on DropDown arrow.
18805
18806 2004-10-04 22:56  jackson
18807
18808         * ButtonBase.cs, Label.cs, MenuAPI.cs, ProgressBar.cs,
18809           ScrollBar.cs, StatusBar.cs, ToolBar.cs, TrackBar.cs: Let the base
18810           Control handle the buffers, derived classes should not have to
18811           CreateBuffers themselves.
18812
18813 2004-10-04 21:20  jackson
18814
18815         * StatusBar.cs: The control handles resizing the buffers now.
18816
18817 2004-10-04 21:18  jackson
18818
18819         * Control.cs: When resizing the buffers should be invalidated. This
18820           should be handled in Control not in derived classes.
18821
18822 2004-10-04 14:45  jackson
18823
18824         * TabPage.cs: oops
18825
18826 2004-10-04 02:14  pbartok
18827
18828         * LeftRightAlignment.cs:
18829           - Initial check-in
18830
18831 2004-10-04 01:09  jordi
18832
18833         * ThemeWin32Classic.cs: fixes right button position causing right
18834           button not showing on horizontal scrollbars
18835
18836 2004-10-02 13:12  pbartok
18837
18838         * XplatUIX11.cs:
18839           - Simplified the Invalidate method by using an X call instead of
18840             generating the expose ourselves
18841           - Added an expose when the window background is changed
18842           - Implemented ClientToScreen method
18843
18844 2004-10-02 13:08  pbartok
18845
18846         * XplatUIWin32.cs:
18847           - Added Win32EnableWindow method (test for implementing modal
18848           dialogs)
18849           - Added ClientToScreen method and imports
18850
18851 2004-10-02 13:07  pbartok
18852
18853         * XplatUI.cs, XplatUIDriver.cs:
18854           - Added ClientToScreen coordinate translation method
18855
18856 2004-10-02 13:06  pbartok
18857
18858         * KeyPressEventArgs.cs:
18859           - Fixed access level for constructor
18860
18861 2004-10-02 13:06  pbartok
18862
18863         * NativeWindow.cs:
18864           - Changed access level for the window_collection hash table
18865
18866 2004-10-02 13:05  pbartok
18867
18868         * Form.cs:
18869           - Added KeyPreview property
18870           - Added Menu property (still incomplete, pending Jordi's menu work)
18871           - Implemented ProcessCmdKey
18872           - Implemented ProcessDialogKey
18873           - Implemented ProcessKeyPreview
18874
18875 2004-10-02 13:02  pbartok
18876
18877         * Control.cs:
18878           - Added private method to get the Control object from the window
18879           handle
18880           - Implemented ContextMenu property
18881           - Implemented PointToScreen
18882           - Implemented PreProcessMessage
18883           - Implemented IsInputChar
18884           - Implemented IsInputKey
18885           - Implemented ProcessCmdKey
18886           - Completed ProcessKeyEventArgs
18887           - Fixed message loop to call the proper chain of functions on key
18888           events
18889           - Implemented ProcessDialogChar
18890           - Implemented ProcessDialogKey
18891           - Implemented ProcessKeyMessage
18892           - Implemented ProcessKeyPreview
18893           - Added RaiseDragEvent stub (MS internal method)
18894           - Added RaiseKeyEvent stub (MS internal method)
18895           - Added RaiseMouseEvent stub (MS Internal method)
18896           - Added RaisePaintEvent stub (MS Internal method)
18897           - Added ResetMouseEventArgs stub (MS Internal method)
18898           - Implemented RtlTranslateAlignment
18899           - Implemented RtlTranslateContent
18900           - Implemented RtlTranslateHorizontal
18901           - Implemented RtlTranslateLeftRight
18902           - Added generation of KeyPress event
18903
18904 2004-10-02 05:57  ravindra
18905
18906         * ListViewItem.cs: Added attributes.
18907
18908 2004-10-02 05:32  ravindra
18909
18910         * ListView.cs: Added attributes.
18911
18912 2004-10-01 11:53  jackson
18913
18914         * Form.cs: Implement the Close method so work on MessageBox can
18915           continue.
18916
18917 2004-09-30 14:06  pbartok
18918
18919         * XplatUIX11.cs:
18920           - Bug fixes
18921
18922 2004-09-30 11:34  jackson
18923
18924         * RadioButton.cs: Fix typo. Patch by John BouAntoun.
18925
18926 2004-09-30 07:26  ravindra
18927
18928         * ListViewItemConverter.cs: Converter for ListViewItem.
18929
18930 2004-09-30 07:26  ravindra
18931
18932         * SortOrder.cs: Enum for ListView control.
18933
18934 2004-09-30 07:25  ravindra
18935
18936         * ColumnHeader.cs: Supporting class for ListView control.
18937
18938 2004-09-30 07:24  ravindra
18939
18940         * ListView.cs, ListViewItem.cs: Initial implementation.
18941
18942 2004-09-30 07:20  ravindra
18943
18944         * ItemActivation.cs: Enum for ListView Control.
18945
18946 2004-09-29 20:29  pbartok
18947
18948         * XplatUIX11.cs:
18949           - Added lookup of pixel value for background color; tries to get a
18950             color 'close' to the requested color, it avoids having to create a
18951             colormap.  Depending on the display this could mean the used color
18952             is slightly off the desired color. Might have to change it to a more
18953             resource intensive colormap approach, but it will work as a
18954           workaround to avoid red screens.
18955
18956 2004-09-29 14:27  jackson
18957
18958         * XplatUIX11.cs: Set the X DisplayHandle in System.Drawing
18959
18960 2004-09-28 12:44  pbartok
18961
18962         * ButtonBase.cs, CheckBox.cs, ControlPaint.cs, GroupBox.cs,
18963           HScrollBar.cs, Label.cs, LinkLabel.cs, Panel.cs, PictureBox.cs,
18964           ProgressBar.cs, RadioButton.cs, ScrollBar.cs, StatusBar.cs,
18965           Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs, ToolBar.cs,
18966           TrackBar.cs, VScrollBar.cs:
18967           - Streamlined Theme interfaces:
18968             * Each DrawXXX method for a control now is passed the object for
18969               the control to be drawn in order to allow accessing any state the
18970               theme might require
18971
18972             * ControlPaint methods for the theme now have a CP prefix to avoid
18973               name clashes with the Draw methods for controls
18974
18975             * Every control now retrieves it's DefaultSize from the current
18976             theme
18977
18978 2004-09-28 12:17  jackson
18979
18980         * Button.cs: Do not redraw OnClick MouseUp/Down will handle the
18981           drawing
18982
18983 2004-09-24 14:57  jackson
18984
18985         * XplatUIX11.cs: Don't lock/enqueue/dequeue for unhandled messages.
18986           Gives us a nice little performance boost.
18987
18988 2004-09-24 12:02  jackson
18989
18990         * TabAlignment.cs, TabAppearance.cs, TabControl.cs, TabDrawMode.cs,
18991           TabPage.cs, TabSizeMode.cs: Partial implementation of the Tab
18992           Control and supporting classes. Initial checkin
18993
18994 2004-09-23 13:08  jackson
18995
18996         * Form.cs: Temp build fixage
18997
18998 2004-09-23 01:39  ravindra
18999
19000         * ItemChangedEventArgs.cs, ItemChangedEventHandler.cs,
19001           ItemCheckEventArgs.cs, ItemCheckEventHandler.cs,
19002           ItemDragEventArgs.cs, ItemDragEventHandler.cs,
19003           LabelEditEventArgs.cs, LabelEditEventHandler.cs: EventArgs and
19004           EventHandlers needed by ListView Control.
19005
19006 2004-09-22 14:12  pbartok
19007
19008         * ScrollableControl.cs:
19009           - Implemented DockPadding property
19010           - Implemented AutoScroll property
19011           - Implemented AutoScrollMargin property
19012           - Implemented AutoScrollMinSize property
19013           - Implemented AutoScrollPosition property
19014           - Implemented DisplayRectangle property (still incomplete)
19015           - Implemented CreateParams property
19016           - Implemented HScroll property
19017           - Implemented VScroll property
19018           - Implemented OnVisibleChanged property
19019
19020 2004-09-22 14:09  pbartok
19021
19022         * Form.cs:
19023           - Added Form.ControllCollection class
19024           - Added handling for Form owners: Owner, OwnedForms, AddOwnedForm,
19025             RemoveOwnedForm (still incomplete, missing on-top and common
19026             minimize/maximize behaviour)
19027           - Added StartPosition property (still incomplete, does not use when
19028             creating the form)
19029           - Added ShowDialog() methods (still incomplete, missing forcing the
19030             dialog modal)
19031
19032 2004-09-22 14:05  pbartok
19033
19034         * Application.cs:
19035           - Added message loop for modal dialogs
19036
19037 2004-09-22 14:02  pbartok
19038
19039         * GroupBox.cs:
19040           - Fixed wrong types for events
19041
19042 2004-09-22 14:00  pbartok
19043
19044         * Shortcut.cs, FormWindowState.cs:
19045           - Fixed wrong values
19046
19047 2004-09-22 12:01  jackson
19048
19049         * Control.cs: Text is never null
19050
19051 2004-09-20 22:14  pbartok
19052
19053         * XplatUIWin32.cs:
19054           - Fixed accessibility level for Idle handler
19055
19056 2004-09-20 18:54  jackson
19057
19058         * Application.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19059           XplatUIX11.cs: New message loop that uses poll so we don't get a
19060           busy loop
19061
19062 2004-09-17 10:43  pbartok
19063
19064         * ScrollBar.cs:
19065           - Fixed behaviour of arrow buttons. Now properly behaves like
19066             Buttons (and like Microsoft's scrollbar arrow buttons)
19067
19068 2004-09-17 10:14  pbartok
19069
19070         * ScrollBar.cs:
19071           - Added missing release of keyboard/mouse capture
19072
19073 2004-09-17 06:18  jordi
19074
19075         * ContextMenu.cs, MainMenu.cs, Menu.cs, MenuAPI.cs, MenuItem.cs,
19076           Theme.cs: Very early menu support
19077
19078 2004-09-16 17:45  pbartok
19079
19080         * XplatUIWin32.cs:
19081           - Fixed sending a window to the front
19082           - Added overload for SetWindowPos to avoid casting
19083
19084 2004-09-16 17:44  pbartok
19085
19086         * Control.cs:
19087           - Added SendToBack and BringToFront methods
19088
19089 2004-09-16 07:00  ravindra
19090
19091         * Copyright: Added Novell URL.
19092
19093 2004-09-16 07:00  ravindra
19094
19095         * ToolBar.cs: Invalidate should be done before redrawing.
19096
19097 2004-09-15 21:19  ravindra
19098
19099         * ColumnHeaderStyle.cs: Enum for ListView Control.
19100
19101 2004-09-15 21:18  ravindra
19102
19103         * ColumnClickEventArgs.cs, ColumnClickEventHandler.cs: Event for
19104           ListView Control.
19105
19106 2004-09-13 18:26  jackson
19107
19108         * Timer.cs, XplatUIX11.cs: Remove test code so timers are updated
19109           properly
19110
19111 2004-09-13 18:13  jackson
19112
19113         * Timer.cs, X11Structs.cs, XplatUIX11.cs: Timers are now handled in
19114           a second thread and post messages into the main threads message
19115           queue. This makes timing much more consistent. Both win2K and XP
19116           have a minimum timer value of 15 milliseconds, so we now do this
19117           too.
19118
19119 2004-09-13 15:18  pbartok
19120
19121         * X11Structs.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19122           XplatUIX11.cs:
19123           - Added Z-Ordering methods
19124
19125 2004-09-13 10:56  pbartok
19126
19127         * Form.cs:
19128           - Fixed #region names
19129           - Moved properties and methods into their proper #regions
19130
19131 2004-09-13 10:51  pbartok
19132
19133         * Form.cs:
19134           - Added Accept and CancelButton properties
19135           - Added ProcessDialogKey() method
19136
19137 2004-09-13 08:18  pbartok
19138
19139         * IWindowTarget.cs:
19140           - Initial check-in
19141
19142 2004-09-10 21:50  pbartok
19143
19144         * Control.cs:
19145           - Added DoDragDrop() [incomplete]
19146           - Properly implemented 'Visible' handling
19147           - Added SetVisibleCore()
19148           - Implemented FindChildAtPoint()
19149           - Implemented GetContainerControl()
19150           - Implemented Hide()
19151
19152 2004-09-10 19:28  pbartok
19153
19154         * Control.cs:
19155           - Moved methods into their appropriate #regions
19156           - Reordered methods within regions alphabetically
19157
19158 2004-09-10 18:57  pbartok
19159
19160         * XplatUIX11.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19161           - Added method to retrieve text from window
19162
19163 2004-09-10 18:56  pbartok
19164
19165         * Control.cs:
19166           - Moved some internal functions into the internal region
19167           - Implemented FontHeight
19168           - Implemented RenderRightToLeft
19169           - Implemented ResizeRedraw
19170           - Implemented ShowFocusCues
19171           - Implemented ShowKeyboardCues
19172           - Implemented FromChildHandle
19173           - Implemented FromHandle
19174           - Implemented IsMnemonic
19175           - Implemented ReflectMessage
19176           - All public and protected Static Methods are now complete
19177
19178 2004-09-10 16:54  pbartok
19179
19180         * Control.cs:
19181           - Implemented remaining missing public instance properties
19182           - Alphabetized some out of order properties
19183
19184 2004-09-10 05:51  ravindra
19185
19186         * PictureBox.cs: Added a check for null image.
19187
19188 2004-09-10 00:59  jordi
19189
19190         * GroupBox.cs: remove cvs tag
19191
19192 2004-09-09 05:25  ravindra
19193
19194         * ToolBar.cs: Make redraw accessible from ToolBarButton.
19195
19196 2004-09-09 05:23  ravindra
19197
19198         * ToolBarButton.cs: Changes in ToolBarButton need to make it's
19199           parent redraw.
19200
19201 2004-09-09 02:28  pbartok
19202
19203         * ThemeWin32Classic.cs:
19204           - Improve disabled string look
19205
19206 2004-09-09 01:15  jordi
19207
19208         * MeasureItemEventArgs.cs, MeasureItemEventHandler.cs: measureitem
19209           args and handler
19210
19211 2004-09-08 23:56  ravindra
19212
19213         * ItemBoundsPortion.cs: It's enum, not a class!
19214
19215 2004-09-08 23:47  ravindra
19216
19217         * FormBorderStyle.cs, FormStartPosition.cs, FormWindowState.cs:
19218           Enums for Form.
19219
19220 2004-09-08 21:13  ravindra
19221
19222         * ItemBoundsPortion.cs, ListViewAlignment.cs, View.cs: Enums for
19223           ListView control.
19224
19225 2004-09-08 21:03  ravindra
19226
19227         * ThemeWin32Classic.cs: PictureBox would not draw a null image to
19228           avoid crash.
19229
19230 2004-09-08 21:01  ravindra
19231
19232         * ScrollableControl.cs: Removed unreachable code.
19233
19234 2004-09-08 06:45  jordi
19235
19236         * MenuMerge.cs, Shortcut.cs: enumerations need it by menus
19237
19238 2004-09-08 01:00  jackson
19239
19240         * XplatUIX11.cs: Only run the timers when updating the message
19241           queue. This effectively gives X messages a higher priority then
19242           timer messages. Timers still need love though
19243
19244 2004-09-07 14:01  jackson
19245
19246         * XplatUIX11.cs: Do not call XDestroyWindow, X has already done
19247           this for us and the handle is no longer valid.
19248
19249 2004-09-07 13:59  jackson
19250
19251         * HandleData.cs, XplatUIX11.cs: First steps towards a new X event
19252           loop that manages to not crash. TODO: Add poll and cleanup timers
19253
19254 2004-09-07 11:12  jordi
19255
19256         * GroupBox.cs, Theme.cs, ThemeWin32Classic.cs: GroupBox control
19257
19258 2004-09-07 03:40  jordi
19259
19260         * Label.cs, LinkLabel.cs, Theme.cs, ThemeWin32Classic.cs: LinkLabel
19261           fixes, methods, multiple links
19262
19263 2004-09-06 06:55  jordi
19264
19265         * Control.cs: Caches ClientRectangle rectangle value
19266
19267 2004-09-05 02:03  jordi
19268
19269         * ScrollBar.cs, ThemeWin32Classic.cs: fixes bugs, adds flashing on
19270           certain situations
19271
19272 2004-09-04 11:10  jordi
19273
19274         * Label.cs: Refresh when font changed
19275
19276 2004-09-02 16:24  pbartok
19277
19278         * Control.cs:
19279           - Added sanity check to creation of double buffer bitmap
19280
19281 2004-09-02 16:24  pbartok
19282
19283         * ButtonBase.cs:
19284           - Fixed selection of text color
19285           - Fixed handling of resize event; now properly recreates double
19286             buffering bitmap
19287           - Added missing assignment of TextAlignment
19288           - Added proper default for TextAlignment
19289
19290 2004-09-02 14:26  pbartok
19291
19292         * RadioButton.cs:
19293           - Added missing RadioButton.RadioButtonAccessibleObject class
19294
19295 2004-09-02 14:26  pbartok
19296
19297         * Control.cs:
19298           - Added missing Control.ControlAccessibleObject class
19299           - Started to implement Select()ion mechanisms, still very incomplete
19300
19301 2004-09-02 14:25  pbartok
19302
19303         * AccessibleObject.cs:
19304           - Added missing methods
19305
19306 2004-09-02 14:23  pbartok
19307
19308         * AccessibleNavigation.cs, AccessibleSelection.cs:
19309           - Initial check-in
19310
19311 2004-09-02 10:32  jordi
19312
19313         * Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: implements resource
19314           pool for pens, brushes, and hatchbruses
19315
19316 2004-09-01 15:30  jackson
19317
19318         * StatusBar.cs: Fix typo
19319
19320 2004-09-01 14:44  pbartok
19321
19322         * RadioButton.cs:
19323           - Fixed state
19324
19325 2004-09-01 14:39  pbartok
19326
19327         * Button.cs, RadioButton.cs:
19328           - Functional initial check-in
19329
19330 2004-09-01 14:01  pbartok
19331
19332         * CheckBox.cs:
19333           - Added missing default
19334           - Added missing region mark
19335
19336 2004-09-01 09:10  jordi
19337
19338         * Label.cs: fixes method signatures, new methods, events, fixes
19339           autosize
19340
19341 2004-09-01 07:19  jordi
19342
19343         * Control.cs: Init string variables with an empty object
19344
19345 2004-09-01 04:20  jordi
19346
19347         * Control.cs: fires OnFontChanged event
19348
19349 2004-08-31 20:07  pbartok
19350
19351         * ButtonBase.cs:
19352           - Enabled display of strings
19353
19354 2004-08-31 20:05  pbartok
19355
19356         * Form.cs:
19357           - Added (partial) implementation of DialogResult; rest needs to be
19358             implemented when the modal loop code is done
19359
19360 2004-08-31 19:55  pbartok
19361
19362         * CheckBox.cs:
19363           - Fixed to match the removal of the needs_redraw concept
19364
19365 2004-08-31 19:55  pbartok
19366
19367         * ButtonBase.cs:
19368           - Removed the rather odd split between 'needs redraw' and redrawing
19369           - Now handles the events that require regeneration (ambient
19370             properties and size)
19371
19372 2004-08-31 19:41  pbartok
19373
19374         * Control.cs:
19375           - Added firing of BackColorChanged event
19376           - Added TopLevelControl property
19377           - Fixed handling of WM_ERASEBKGRND message
19378
19379 2004-08-31 12:49  pbartok
19380
19381         * ButtonBase.cs:
19382           - Removed debug
19383           - Minor fixes
19384
19385 2004-08-31 12:48  pbartok
19386
19387         * CheckBox.cs:
19388           - Finished (famous last words)
19389
19390 2004-08-31 04:35  jordi
19391
19392         * ScrollBar.cs: adds autorepeat timer, uses a single timer, fixes
19393           scrolling bugs, adds new methods
19394
19395 2004-08-30 14:42  pbartok
19396
19397         * CheckBox.cs:
19398           - Implemented CheckBox drawing code
19399
19400 2004-08-30 14:42  pbartok
19401
19402         * ButtonBase.cs:
19403           - Made Redraw() and CheckRedraw() virtual
19404           - Improved mouse up/down/move logic to properly track buttons
19405
19406 2004-08-30 09:44  pbartok
19407
19408         * CheckBox.cs:
19409           - Updated to fix broken build. Not complete yet.
19410
19411 2004-08-30 09:28  pbartok
19412
19413         * CheckState.cs:
19414           - Initial checkin
19415
19416 2004-08-30 09:17  pbartok
19417
19418         * Appearance.cs:
19419           - Initial check-in
19420
19421 2004-08-27 16:12  ravindra
19422
19423         * ToolBarButton.cs: Added TypeConverter attribute.
19424
19425 2004-08-27 16:07  ravindra
19426
19427         * ImageIndexConverter.cs: Implemented.
19428
19429 2004-08-27 14:17  pbartok
19430
19431         * Control.cs:
19432           - Removed unneeded stack vars
19433           - First attempt to fix sizing issues when layout is suspended
19434
19435 2004-08-25 15:35  jordi
19436
19437         * ScrollBar.cs: more fixes to scrollbar
19438
19439 2004-08-25 14:04  ravindra
19440
19441         * Theme.cs, ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs:
19442           Added the missing divider code and grip for ToolBar Control.
19443
19444 2004-08-25 13:20  pbartok
19445
19446         * Control.cs:
19447           - Control now properly passes the ambient background color to child
19448             controls
19449
19450 2004-08-25 13:20  jordi
19451
19452         * ScrollBar.cs: small bug fix regarding bar position
19453
19454 2004-08-25 12:33  pbartok
19455
19456         * Timer.cs:
19457           - Now only calls SetTimer or KillTimer if the enabled state has
19458           changed
19459
19460 2004-08-25 12:33  pbartok
19461
19462         * XplatUIWin32.cs:
19463           - Fixed timer handling, now seems to work
19464           - Improved error message for window creation
19465
19466 2004-08-25 12:32  pbartok
19467
19468         * Control.cs:
19469           - Fixed generation of MouseUp message
19470
19471 2004-08-25 12:29  jordi
19472
19473         * ProgressBar.cs, ThemeWin32Classic.cs: new methods, properties,
19474           and fixes for progressbar
19475
19476 2004-08-24 18:43  ravindra
19477
19478         * ThemeWin32Classic.cs, ToolBar.cs: Fixed wrapping related issues
19479           in ToolBar control.
19480
19481 2004-08-24 17:15  pbartok
19482
19483         * Panel.cs:
19484           - Added #region
19485           - Added missing events
19486           - Alphabetized
19487
19488 2004-08-24 17:14  pbartok
19489
19490         * StatusBar.cs, PictureBox.cs:
19491           - Now uses Control's CreateParams
19492
19493 2004-08-24 16:36  pbartok
19494
19495         * XplatUIX11.cs:
19496           - Fixed background color handling
19497           - Fixed sending of enter/leave events on a grab
19498
19499 2004-08-24 16:35  pbartok
19500
19501         * X11Structs.cs:
19502           - Refined definitions for CrossingEvent
19503
19504 2004-08-24 12:37  jordi
19505
19506         * ScrollBar.cs, Theme.cs, ThemeGtk.cs, ThemeWin32Classic.cs: fixes
19507           formmating, methods signature, and adds missing events
19508
19509 2004-08-24 12:24  jordi
19510
19511         * Control.cs: fire OnEnabledChanged event
19512
19513 2004-08-24 11:17  pbartok
19514
19515         * XplatUIWin32.cs:
19516           - Implemented SetTimer() and KillTimer()
19517
19518 2004-08-24 11:16  pbartok
19519
19520         * XplatUIX11.cs:
19521           - Now uses Remove instead of Add to kill the timer
19522
19523 2004-08-24 10:16  jackson
19524
19525         * PictureBox.cs, Theme.cs, ThemeWin32Classic.cs: Handle drawing
19526           picture boxes in the theme now. Draw picture box borders and obey
19527           sizing modes
19528
19529 2004-08-24 05:49  jackson
19530
19531         * Timer.cs: Remove top secret debugging code
19532
19533 2004-08-24 05:34  jackson
19534
19535         * PictureBox.cs: Temp hack to make picture boxes draw their full
19536           image
19537
19538 2004-08-24 05:29  jackson
19539
19540         * Timer.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
19541           XplatUIX11.cs: Move timers to the driver level. On X they are
19542           queued by the driver and checked on idle.
19543
19544 2004-08-24 01:07  jackson
19545
19546         * XplatUIX11.cs: Use a queue for async messages instead of passing
19547           them as ClientMessages since that was totally broken. Also simply
19548           check for events and return an idle message if none are found. This
19549           gives us an idle handler, and prevents deadlocking when no messages
19550           are in the queue.
19551
19552 2004-08-23 18:19  ravindra
19553
19554         * XplatUIWin32.cs: Removed the unwanted destructor.
19555
19556 2004-08-23 17:27  pbartok
19557
19558         * ButtonBase.cs:
19559           - Finishing touches. Works now, just needs some optimizations.
19560
19561 2004-08-23 16:53  jordi
19562
19563         * ScrollBar.cs: small fix
19564
19565 2004-08-23 16:45  pbartok
19566
19567         * Application.cs:
19568           - Removed debug output
19569           - Simplifications
19570
19571 2004-08-23 16:43  jordi
19572
19573         * ScrollBar.cs: [no log message]
19574
19575 2004-08-23 16:10  pbartok
19576
19577         * Form.cs:
19578           - Fixed handling of WM_CLOSE message
19579           - Removed debug output
19580
19581 2004-08-23 16:09  pbartok
19582
19583         * Application.cs:
19584           - Added handling of Idle event
19585           - Added handling of form closing
19586           - Fixed reporting of MessageLoop property
19587           - Removed some unneeded code, should provide a bit of a speedup
19588
19589 2004-08-23 15:22  pbartok
19590
19591         * Control.cs:
19592           - Added InitLayout() method
19593           - Added code to properly perform layout when Anchor or Dock property
19594             is changed
19595           - Changed 'interpretation' of ResumeLayout. MS seems to have a
19596             LAMESPEC, tried to do it in a way that makes sense
19597
19598 2004-08-23 14:10  jordi
19599
19600         * HScrollBar.cs, ScrollBar.cs, TrackBar.cs, VScrollBar.cs: fixes
19601           properties and methods
19602
19603 2004-08-23 13:55  pbartok
19604
19605         * Control.cs:
19606           - Properly fixed Jordi's last fix
19607           - Now uses Cursor's Position property instead of calling XplatUI
19608           directly
19609
19610 2004-08-23 13:44  jordi
19611
19612         * PaintEventHandler.cs: Adding missing attribute
19613
19614 2004-08-23 13:39  pbartok
19615
19616         * Cursor.cs:
19617           - Implemented Position property
19618
19619 2004-08-23 13:39  pbartok
19620
19621         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
19622           - Added method to move mouse cursor
19623
19624 2004-08-23 13:39  pbartok
19625
19626         * XplatUIX11.cs:
19627           - Fixed setting of background color
19628           - Added method to move mouse cursor
19629
19630 2004-08-23 13:16  jordi
19631
19632         * Control.cs: avoids null exception
19633
19634 2004-08-22 17:46  jackson
19635
19636         * PictureBox.cs, PictureBoxSizeMode.cs: Initial implementation of
19637           PictureBox
19638
19639 2004-08-22 17:40  jackson
19640
19641         * XplatUIX11.cs: Add some missing locks
19642
19643 2004-08-22 15:10  pbartok
19644
19645         * Control.cs, Form.cs:
19646           - Removed OverlappedWindow style from Control, instead it's default
19647             now is child
19648           - Made form windows OverlappedWindow by default
19649
19650 2004-08-22 13:34  jackson
19651
19652         * ScrollBar.cs: Update the position through the Value property so
19653           the OnValueChanged event is raised.
19654
19655 2004-08-22 12:04  pbartok
19656
19657         * SWF.csproj:
19658           - Added Cursor.cs and UserControl.cs
19659
19660 2004-08-22 12:03  pbartok
19661
19662         * Cursor.cs:
19663           - Started implementation, not usable yet
19664
19665 2004-08-22 12:00  pbartok
19666
19667         * UserControl.cs:
19668           - Implemented UserControl (complete)
19669
19670 2004-08-21 19:20  ravindra
19671
19672         * ToolBar.cs: Correcting the formatting mess of VS.NET.
19673
19674 2004-08-21 18:49  ravindra
19675
19676         * ToolBar.cs: Probably this completes the missing attributes in
19677           toolbar control.
19678
19679 2004-08-21 18:03  ravindra
19680
19681         * ToolBar.cs, ToolBarButton.cs, ToolBarButtonClickEventArgs.cs:
19682           Fixed toolbar control signatures.
19683
19684 2004-08-21 16:32  pbartok
19685
19686         * LinkLabel.cs:
19687           - Signature Fixes
19688
19689 2004-08-21 16:30  pbartok
19690
19691         * Label.cs:
19692           - Signature fixes
19693
19694 2004-08-21 16:19  pbartok
19695
19696         * Control.cs, Label.cs:
19697           - Signature fixes
19698
19699 2004-08-21 15:57  pbartok
19700
19701         * ButtonBase.cs:
19702           - Added loads of debug output for development
19703           - Fixed typo in method name
19704
19705 2004-08-21 15:52  pbartok
19706
19707         * ToolBarButtonClickEventArgs.cs:
19708           - Added missing base class
19709
19710 2004-08-21 14:53  pbartok
19711
19712         * Control.cs:
19713           - Updated to match new GrabWindow signature
19714
19715 2004-08-21 14:51  pbartok
19716
19717         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19718           - Added method to get default display size
19719
19720 2004-08-21 14:23  pbartok
19721
19722         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
19723           - Added method to query current grab state
19724           - Added argument to allow confining a grab to a window
19725
19726 2004-08-21 14:22  pbartok
19727
19728         * Keys.cs:
19729           - Added [Flags] attribute so that modifiers can be used in bitwise
19730           ops
19731
19732 2004-08-21 14:21  pbartok
19733
19734         * TrackBar.cs, ScrollBar.cs:
19735           - Replaced direct XplatUI calls with their Control counterpart
19736
19737 2004-08-21 13:32  pbartok
19738
19739         * Control.cs:
19740           - Implemented Created property
19741
19742 2004-08-21 13:28  pbartok
19743
19744         * Control.cs:
19745           - Implemented ContainsFocus
19746
19747 2004-08-21 13:26  pbartok
19748
19749         * Control.cs:
19750           - Implemented CausesValidation
19751
19752 2004-08-21 13:21  pbartok
19753
19754         * Control.cs:
19755           - Implemented CanFocus
19756           - Implemented CanSelect
19757           - Implemented Capture
19758
19759 2004-08-21 12:35  pbartok
19760
19761         * XplatUIWin32.cs:
19762           - Fixed bug with Async message handling
19763           - Implemented getting the ModifierKeys
19764
19765 2004-08-21 12:32  jackson
19766
19767         * AsyncMethodResult.cs: Make sure we have the mutex before we
19768           release it. Fixes BeginInvoke on windows
19769
19770 2004-08-21 11:31  pbartok
19771
19772         * XplatUIWin32.cs, XplatUIX11.cs:
19773           - Drivers now return proper mouse state
19774
19775 2004-08-21 10:54  jackson
19776
19777         * Control.cs: Implement EndInvoke
19778
19779 2004-08-21 10:48  jackson
19780
19781         * Timer.cs: Remove unneeded finalizer
19782
19783 2004-08-20 19:52  ravindra
19784
19785         * ThemeWin32Classic.cs, ToolBar.cs, ToolBarButton.cs: Improvments
19786           in mouse event handling in the ToolBar control.
19787
19788 2004-08-20 19:50  ravindra
19789
19790         * ImageList.cs: Changed draw method to use the arguments passed in
19791           to draw the image.
19792
19793 2004-08-20 18:58  pbartok
19794
19795         * XplatUIStructs.cs:
19796           - Added private message for async communication
19797
19798 2004-08-20 17:38  ravindra
19799
19800         * Control.cs: Made RightToLeft property virtual and removed a
19801           Console.WriteLine.
19802
19803 2004-08-20 14:39  jordi
19804
19805         * ThemeGtk.cs: use style_attach
19806
19807 2004-08-20 14:39  pbartok
19808
19809         * XplatUIWin32.cs:
19810           - Added jackson's Async code from X11 to Win32
19811
19812 2004-08-20 14:09  pbartok
19813
19814         * SWF.csproj:
19815           - Added all new files
19816
19817 2004-08-20 14:09  pbartok
19818
19819         * Control.cs:
19820           - Added call to set window background color
19821
19822 2004-08-20 14:03  pbartok
19823
19824         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
19825           - Added method for setting the window background
19826
19827 2004-08-20 14:02  pbartok
19828
19829         * XplatUIWin32.cs:
19830           - Added method for setting the background color
19831           - Added handling for erasing the window background
19832
19833 2004-08-20 13:45  jordi
19834
19835         * TrackBar.cs: fixes timer, new properties and methods
19836
19837 2004-08-20 13:34  jackson
19838
19839         * ScrollBar.cs: Use the SWF timer so callbacks are run in the
19840           correct thread
19841
19842 2004-08-20 13:22  jackson
19843
19844         * Timer.cs: Timer Tick events are now handed through Controls Async
19845           mechanism so the callbacks are executed in the same thread as X
19846
19847 2004-08-20 13:19  jackson
19848
19849         * XplatUIDriver.cs: Expose functionality to send async messages
19850           through the driver
19851
19852 2004-08-20 13:18  jackson
19853
19854         * Control.cs: Implement Begininvoke
19855
19856 2004-08-20 13:14  jackson
19857
19858         * XplatUI.cs, XplatUIWin32.cs: Expose functionality to send async
19859           messages through the driver
19860
19861 2004-08-20 13:12  jackson
19862
19863         * XplatUIX11.cs: Lock before all X operations. Also added Async
19864           method functionality through XSendEvent
19865
19866 2004-08-20 13:11  jackson
19867
19868         * X11Structs.cs: Use IntPtrs for ClientMessage extra data (TODO:
19869           This will screw up on 64 bit systems)
19870
19871 2004-08-20 13:10  jackson
19872
19873         * AsyncMethodData.cs, AsyncMethodResult.cs: Classes for sending
19874           Async messages through X/Win32
19875
19876 2004-08-19 19:39  pbartok
19877
19878         * XplatUIX11.cs:
19879           - Updated code to match new HandleData.DeviceContext type
19880
19881 2004-08-19 19:38  pbartok
19882
19883         * HandleData.cs:
19884           - Made DeviceContext a generic object to allow usage from various
19885           drivers
19886           - Added support for queueing Windows messages
19887
19888 2004-08-19 19:37  pbartok
19889
19890         * XplatUIWin32.cs:
19891           - Added generation of MouseEnter, MouseLeave and MouseHover events
19892           - Added cleanup on EndPaint
19893
19894 2004-08-19 19:17  pbartok
19895
19896         * Control.cs:
19897           - Added handling of WM_MOUSEHOVER
19898           - Worked around 'bug' in Win32 WM_MOUSE_ENTER/WM_MOUSE_LEAVE driver
19899           code
19900
19901 2004-08-19 18:55  jordi
19902
19903         * ThemeGtk.cs: fixes button order
19904
19905 2004-08-19 18:12  jordi
19906
19907         * Theme.cs, ThemeWin32Classic.cs: fixes methods signature
19908
19909 2004-08-19 17:09  pbartok
19910
19911         * Control.cs:
19912           - Added Right property
19913           - Added RightToLeft property
19914
19915 2004-08-19 16:27  jordi
19916
19917         * ThemeGtk.cs: experimental GTK theme support
19918
19919 2004-08-19 16:26  jordi
19920
19921         * ITheme.cs, Theme.cs: move themes from an interface to a class
19922
19923 2004-08-19 16:25  jordi
19924
19925         * Control.cs, ScrollBar.cs, ThemeEngine.cs, ThemeWin32Classic.cs:
19926           theme enhancaments
19927
19928 2004-08-19 16:04  pbartok
19929
19930         * XplatUIX11.cs:
19931           - Added colormap basics
19932           - Added a way to re-initialize with a different display handle
19933           - Fixed setting of the window background color
19934           - Added various X11 imports related to colors and colormaps
19935
19936 2004-08-19 15:51  pbartok
19937
19938         * X11Structs.cs:
19939           - Removed packing hints (Paolo suggested this a while back)
19940           - fixed colormap type
19941           - Added default Atom types
19942           - Added Screen and color structs and enums
19943
19944 2004-08-19 15:39  pbartok
19945
19946         * ImageList.cs:
19947           - Added missing Draw() method
19948           - Added missing RecreateHandle event
19949
19950 2004-08-19 15:30  pbartok
19951
19952         * Form.cs:
19953           - Added handling of WM_CLOSE
19954
19955 2004-08-18 13:16  jordi
19956
19957         * ITheme.cs, ThemeWin32Classic.cs, XplatUIWin32.cs: Move colors to
19958           a table
19959
19960 2004-08-18 09:56  jordi
19961
19962         * ScrollBar.cs: fixes to scrollbar: steps and multiple timers
19963
19964 2004-08-17 15:31  ravindra
19965
19966         * SWF.csproj: Updated project.
19967
19968 2004-08-17 15:25  pbartok
19969
19970         * Control.cs:
19971           - Drawing improvement; don't call UpdateBounds if we are not visible
19972             (or have been minimized)
19973
19974 2004-08-17 15:24  pbartok
19975
19976         * XplatUIWin32.cs:
19977           - Finished IsVisible
19978           - Added Win32GetWindowPlacement
19979
19980 2004-08-17 15:08  jackson
19981
19982         * Panel.cs: Initial checkin of the Panel
19983
19984 2004-08-17 14:25  pbartok
19985
19986         * Control.cs:
19987           - Fixed broken handling of default window sizes
19988
19989 2004-08-17 13:29  jackson
19990
19991         * ThemeWin32Classic.cs: Don't use KnownColor to create colours. It
19992           has a large startup time.
19993
19994 2004-08-17 10:25  jackson
19995
19996         * HandleData.cs: union areas properly
19997
19998 2004-08-17 10:12  jackson
19999
20000         * HandleData.cs: union areas properly
20001
20002 2004-08-16 20:00  ravindra
20003
20004         * ToolBar.cs, ToolBarButton.cs: Added attributes.
20005
20006 2004-08-16 18:48  ravindra
20007
20008         * ToolBar.cs: Added attributes.
20009
20010 2004-08-16 17:17  ravindra
20011
20012         * SWF.csproj: Updated project.
20013
20014 2004-08-16 17:16  jackson
20015
20016         * XplatUIX11.cs: Check for more expose events before sending a
20017           WM_PAINT so they can all be grouped together. This makes dragging a
20018           window across another window redraw in a sane way.
20019
20020 2004-08-16 15:47  pbartok
20021
20022         * Control.cs:
20023           - Added handling of WM_MOUSE_ENTER & WM_MOUSE_LEAVE to
20024             support OnMouseEnter/Leave()
20025           - Added WS_CLIPSIBLINGS and WS_CLIPCHILDREN window styles to improve
20026             exposure handling
20027
20028 2004-08-16 15:46  pbartok
20029
20030         * XplatUIStructs.cs, XplatUIX11.cs:
20031           - Added WM_MOUSE_ENTER & WM_MOUSE_LEAVE to support
20032           OnMouseEnter/Leave()
20033
20034 2004-08-16 15:34  jackson
20035
20036         * XplatUIX11.cs: Group multiple expose events in HandleData, make
20037           sure messages get the message field set to WM_NULL if they are not
20038           handled.
20039
20040 2004-08-16 15:24  jackson
20041
20042         * HandleData.cs: HandleData is used for storing message information
20043           for window handles
20044
20045 2004-08-15 17:23  ravindra
20046
20047         * ColorDepth.cs: Added attribute.
20048
20049 2004-08-15 17:23  ravindra
20050
20051         * SWF.csproj: Updated project for ToolBar Control.
20052
20053 2004-08-15 17:20  ravindra
20054
20055         * ITheme.cs, ThemeWin32Classic.cs: Changes to Theme for ToolBar
20056           control and also dos2unix format.
20057
20058 2004-08-15 17:13  ravindra
20059
20060         * ToolBar.cs, ToolBarAppearance.cs, ToolBarButton.cs,
20061           ToolBarButtonClickEventArgs.cs,
20062           ToolBarButtonClickEventHandler.cs, ToolBarButtonStyle.cs,
20063           ToolBarTextAlign.cs: First Implementation of ToolBar control.
20064
20065 2004-08-15 15:31  pbartok
20066
20067         * ButtonBase.cs:
20068           - First (mostly) working version
20069
20070 2004-08-13 16:15  pbartok
20071
20072         * Control.cs:
20073           - Fixed Anchor default
20074
20075 2004-08-13 15:43  pbartok
20076
20077         * Control.cs:
20078           - Changed GetCursorPos signature
20079
20080 2004-08-13 15:42  pbartok
20081
20082         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs:
20083           - Changed signature for GetCursorPos
20084
20085 2004-08-13 15:25  pbartok
20086
20087         * XplatUIX11.cs:
20088           - Cleanup
20089           - Fixed resizing/exposure handling
20090
20091 2004-08-13 15:22  jordi
20092
20093         * ThemeWin32Classic.cs: removes redundant code and fixes issues
20094           with tickposition
20095
20096 2004-08-13 14:55  jordi
20097
20098         * TrackBar.cs: change from wndproc to events
20099
20100 2004-08-13 13:00  jordi
20101
20102         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20103           XplatUIX11.cs: implements PointToClient (ScreenToClient)
20104
20105 2004-08-13 12:53  pbartok
20106
20107         * XplatUIWin32.cs:
20108           - Changed GetWindowPos to also provide client area size
20109           - Fixed broken prototypes for several win32 functions
20110
20111 2004-08-13 12:53  pbartok
20112
20113         * XplatUI.cs, XplatUIDriver.cs:
20114           - Changed GetWindowPos to also provide client area size
20115
20116 2004-08-13 12:52  pbartok
20117
20118         * XplatUIX11.cs:
20119           - Added generation of WM_POSCHANGED
20120           - Changed GetWindowPos to also provide client area size
20121
20122 2004-08-13 12:52  pbartok
20123
20124         * Control.cs:
20125           - Added Dispose() and destructor
20126           - Fixed resizing and bounds calculation
20127           - Fixed Layout
20128           - Added memory savings for invisible windows
20129
20130 2004-08-13 12:46  jordi
20131
20132         * TrackBar.cs: adds timer and grap window
20133
20134 2004-08-13 10:25  jackson
20135
20136         * Timer.cs: SWF Timer
20137
20138 2004-08-12 16:59  pbartok
20139
20140         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20141           - Implemented method to get current mouse position
20142
20143 2004-08-12 14:29  jordi
20144
20145         * ITheme.cs, ThemeWin32Classic.cs, TrackBar.cs: Trackbar
20146           enhancement, fix mouse problems, highli thumb, etc
20147
20148 2004-08-12 13:31  pbartok
20149
20150         * Control.cs:
20151           - Fixed Anchoring bugs
20152
20153 2004-08-12 13:01  jackson
20154
20155         * StatusBar.cs: Don't forget things
20156
20157 2004-08-12 12:54  jackson
20158
20159         * ThemeWin32Classic.cs: Handle owner draw status bars
20160
20161 2004-08-12 12:54  jackson
20162
20163         * StatusBar.cs: Implement missing properties, events, and methods.
20164           Handle mouse clicking
20165
20166 2004-08-12 10:19  jackson
20167
20168         * StatusBarPanelClickEventArgs.cs,
20169           StatusBarPanelClickEventHandler.cs: Classes for handling status
20170           bar panel click events
20171
20172 2004-08-12 10:10  jackson
20173
20174         * Control.cs: Add missing properties
20175
20176 2004-08-12 09:46  pbartok
20177
20178         * BindingsManagerBase.cs:
20179           - Name changed to BindingManagerBase.cs
20180
20181 2004-08-12 09:25  jordi
20182
20183         * ScrollableControl.cs: calls ctrlbase instead of exeception
20184
20185 2004-08-11 16:28  pbartok
20186
20187         * InputLanguageChangingEventArgs.cs:
20188           - Never check in before compiling. Fixes the last check-in
20189
20190 2004-08-11 16:26  pbartok
20191
20192         * InputLanguageChangingEventArgs.cs:
20193           - More signature fixes
20194
20195 2004-08-11 16:20  pbartok
20196
20197         * BindingManagerBase.cs, BindingMemberInfo.cs, ContainerControl.cs,
20198           Control.cs, ControlEventArgs.cs, ControlPaint.cs, Form.cs,
20199           ImageListStreamer.cs, InputLanguage.cs,
20200           InputLanguageChangedEventArgs.cs,
20201           InputLanguageChangingEventArgs.cs, Keys.cs, LayoutEventArgs.cs,
20202           LinkArea.cs, Message.cs, MouseEventArgs.cs, NativeWindow.cs,
20203           ScrollEventArgs.cs, ScrollableControl.cs, XplatUI.cs,
20204           XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20205           - Signature fixes
20206
20207 2004-08-11 16:16  pbartok
20208
20209         * Application.cs:
20210           - Fixed Signature
20211           - Added .Net 1.1 method
20212
20213 2004-08-11 15:25  pbartok
20214
20215         * SWF.csproj:
20216           - Fixed BindingManagerBase.cs filename
20217
20218 2004-08-11 15:22  pbartok
20219
20220         * BindingManagerBase.cs:
20221           - Was checked in with wrong filename
20222
20223 2004-08-11 14:50  pbartok
20224
20225         * SWF.csproj:
20226           - Updated
20227
20228 2004-08-11 13:41  jordi
20229
20230         * XplatUIWin32.cs: Fixes ClientRect
20231
20232 2004-08-11 13:19  pbartok
20233
20234         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20235           XplatUIX11.cs:
20236           - We had SetWindowPos and MoveWindow to set window positions and
20237             size, removed MoveWindow. We have GetWindowPos, so it made sense to
20238             keep SetWindowPos as matching counterpart
20239           - Added some X11 sanity checking
20240
20241 2004-08-11 12:59  pbartok
20242
20243         * Control.cs:
20244           - Major cleanup of my SetBounds/SetBoundsCore/UpdateBounds mess
20245             (It seems that SetBounds is just a front for SetBoundsCore and
20246              SetBoundsCore updates the underlying window system and
20247              UpdateBounds is responsible for updating the variables associated
20248              with the Control and sending the events)
20249           - Major cleanup of Size handling; we now have two sizes, client_size
20250             and bounds. Bounds defines the window with decorations, client_size
20251             without them.
20252
20253 2004-08-11 12:55  pbartok
20254
20255         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20256           - Added method to calculate difference between decorated window and
20257             raw client area
20258
20259 2004-08-11 12:54  pbartok
20260
20261         * Label.cs:
20262           - Forcing redraw on resize
20263
20264 2004-08-11 11:43  pbartok
20265
20266         * ImageList.cs:
20267           - Removed disposing of the actual images when the list is disposed
20268
20269 2004-08-11 09:13  pbartok
20270
20271         * Control.cs:
20272           - Now properly reparents windows
20273
20274 2004-08-11 08:37  pbartok
20275
20276         * Control.cs:
20277           - Duh!
20278
20279 2004-08-11 07:47  pbartok
20280
20281         * Control.cs:
20282           - Rewrote the collection stuff. Might not be as fast now, not
20283             keeping the number of children around and accessible directly, but
20284             it's more straightforward
20285
20286 2004-08-11 07:44  pbartok
20287
20288         * AccessibleObject.cs:
20289           - Fixed to match ControlCollection rewrite
20290
20291 2004-08-11 07:43  pbartok
20292
20293         * ImageList.cs:
20294           - Added missing creation of the collection list
20295
20296 2004-08-10 20:08  jackson
20297
20298         * StatusBar.cs: Get the paint message from WndProc
20299
20300 2004-08-10 19:31  jackson
20301
20302         * ThemeWin32Classic.cs: Create Brushes as little as possible
20303
20304 2004-08-10 19:20  jackson
20305
20306         * UICues.cs: Add Flags attribute
20307
20308 2004-08-10 19:19  jackson
20309
20310         * StatusBarPanel.cs: Signature cleanup
20311
20312 2004-08-10 19:10  jackson
20313
20314         * StatusBarDrawItemEventArgs.cs, StatusBarDrawItemEventHandler.cs:
20315           Initial implementation of status bar item drawing
20316
20317 2004-08-10 17:27  jordi
20318
20319         * TrackBar.cs: add missing methods, properties, and restructure to
20320           hide extra ones
20321
20322 2004-08-10 16:24  jackson
20323
20324         * AccessibleStates.cs, Border3DSide.cs, Border3DStyle.cs,
20325           ButtonState.cs, ControlStyles.cs, DragDropEffects.cs: Add flags
20326           attribute
20327
20328 2004-08-10 13:21  jordi
20329
20330         * ITheme.cs, ScrollBar.cs, ThemeWin32Classic.cs: scrollbar
20331           enhancements and standarize on win colors defaults
20332
20333 2004-08-10 12:52  jackson
20334
20335         * DrawItemEventArgs.cs, DrawItemState.cs, ITheme.cs,
20336           ThemeWin32Classic.cs: Implement DrawItem functionality
20337
20338 2004-08-10 12:47  jordi
20339
20340         * XplatUIWin32.cs: Calls InvalidateRect before UpdateWindow
20341
20342 2004-08-10 12:32  jordi
20343
20344         * Control.cs: throw ontextchange event
20345
20346 2004-08-10 11:43  pbartok
20347
20348         * Control.cs:
20349           - Added more to the still unfinished Dock/Anchor layout code
20350
20351 2004-08-10 11:39  pbartok
20352
20353         * XplatUI.cs, XplatUIDriver.cs, XplatUIX11.cs:
20354           - Added GetWindowPos method
20355
20356 2004-08-10 11:36  pbartok
20357
20358         * XplatUIWin32.cs:
20359           - Implemented several methods
20360
20361 2004-08-10 09:47  jackson
20362
20363         * TrackBar.cs: Allow control to handle buffering
20364
20365 2004-08-10 09:41  jackson
20366
20367         * ProgressBar.cs, ScrollBar.cs: Allow control to handle buffering
20368
20369 2004-08-10 09:24  jackson
20370
20371         * Label.cs, LinkLabel.cs: Let Control handle buffering.
20372
20373 2004-08-10 09:09  jackson
20374
20375         * StatusBar.cs: Let Control handle all the buffering.
20376
20377 2004-08-10 09:08  jackson
20378
20379         * Control.cs: Control will now handle the buffering code, so each
20380           control does not have to implement this.
20381
20382 2004-08-10 08:34  jackson
20383
20384         * XplatUIDriver.cs: Use default colors from the theme
20385
20386 2004-08-09 17:12  pbartok
20387
20388         * ImageList.cs:
20389           - Fixed several bugs Ravindra pointed out
20390
20391 2004-08-09 16:11  pbartok
20392
20393         * Control.cs:
20394           - Added incomplete dock layout code
20395           - Added support for mouse wheel
20396
20397 2004-08-09 16:09  pbartok
20398
20399         * XplatUIX11.cs:
20400           - Added handling for middle and right mousebutton
20401           - Added handling for mouse wheel
20402           - Added handling for key state and mouse state and position
20403           - Now properly generates WM_xBUTTONx messages and WM_MOUSEWHEEL
20404           messages
20405
20406 2004-08-09 15:40  jackson
20407
20408         * StatusBarPanel.cs, StatusBarPanelAutoSize.cs,
20409           StatusBarPanelBorderStyle.cs, StatusBarPanelStyle.cs: Initial
20410           checkin
20411
20412 2004-08-09 15:37  jackson
20413
20414         * StatusBar.cs: Initial implementation of StatusBar
20415
20416 2004-08-09 15:36  jackson
20417
20418         * ITheme.cs: Add support for drawing status bar and getting status
20419           bar item sizes
20420
20421 2004-08-09 15:35  pbartok
20422
20423         * MouseButtons.cs:
20424           - Fixed values
20425
20426 2004-08-09 15:34  jackson
20427
20428         * ThemeWin32Classic.cs: Add support for drawing status bar and get
20429           status bar item sizes
20430
20431 2004-08-09 15:21  jackson
20432
20433         * ThemeWin32Classic.cs: Use known colors for default control
20434           colours
20435
20436 2004-08-09 15:12  jackson
20437
20438         * ThemeWin32Classic.cs: Make the default font static, it is static
20439           in control so this doesn't change functionality and creating fonts
20440           is sloooooow.
20441
20442 2004-08-09 14:56  pbartok
20443
20444         * X11Structs.cs:
20445           - Added GrabMode enum
20446
20447 2004-08-09 14:55  pbartok
20448
20449         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20450           - Removed Run method, was only required for initial development
20451
20452 2004-08-09 14:51  pbartok
20453
20454         * XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs, XplatUIX11.cs:
20455           - Implemented GrabWindow/ReleaseWindow methods to allow pointer
20456           capture
20457
20458 2004-08-09 13:48  pbartok
20459
20460         * XplatUIX11.cs:
20461           - Fixed default sizing for child windows
20462
20463 2004-08-09 12:56  pbartok
20464
20465         * XplatUIX11.cs:
20466           - Added generation of WM_DESTROY message
20467           - Added handling of window manager induced shutdown
20468
20469 2004-08-09 11:31  jackson
20470
20471         * ThemeWin32Classic.cs: New names for control properties
20472
20473 2004-08-09 11:25  jackson
20474
20475         * Control.cs: Use new color names
20476
20477 2004-08-09 11:02  jackson
20478
20479         * XplatUI.cs: Get default window properties from the theme
20480
20481 2004-08-09 11:01  jackson
20482
20483         * ITheme.cs: The theme engine now controls default window
20484           properties
20485
20486 2004-08-09 11:00  jackson
20487
20488         * ThemeWin32Classic.cs: Add default window color properties
20489
20490 2004-08-09 10:17  jackson
20491
20492         * ThemeWin32Classic.cs: Use correct default back color
20493
20494 2004-08-09 10:05  jackson
20495
20496         * XplatUIWin32.cs, XplatUIX11.cs: These properties are handled by
20497           the theme now.
20498
20499 2004-08-09 09:56  jackson
20500
20501         * XplatUI.cs: Remove defaults, these are handled by the theme now.
20502
20503 2004-08-09 09:54  jackson
20504
20505         * Control.cs: Get default properties from the theme.
20506
20507 2004-08-09 09:53  jackson
20508
20509         * ITheme.cs: Themes now handle default control properties
20510
20511 2004-08-09 09:53  jackson
20512
20513         * ThemeWin32Classic.cs: Themes now handle default control
20514           properties so coloring will be consistent
20515
20516 2004-08-08 16:54  jordi
20517
20518         * ITheme.cs, ThemeWin32Classic.cs: Label BorderStyles
20519
20520 2004-08-08 15:08  jordi
20521
20522         * XplatUIX11.cs: fixes keyboard crash
20523
20524 2004-08-08 13:47  jordi
20525
20526         * Label.cs: add cvs header info
20527
20528 2004-08-08 12:09  jackson
20529
20530         * ThemeWin32Classic.cs: Add pen_buttonface
20531
20532 2004-08-08 11:52  jordi
20533
20534         * Label.cs, LinkLabel.cs: [no log message]
20535
20536 2004-08-08 11:34  jordi
20537
20538         * ThemeWin32Classic.cs: Use Windows Standard Colours
20539
20540 2004-08-07 17:32  jordi
20541
20542         * TrackBar.cs: throw exceptions of invalid enums values
20543
20544 2004-08-07 17:31  jordi
20545
20546         * Label.cs, LinkLabel.cs, ThemeWin32Classic.cs: fixes label bug and
20547           draw method name
20548
20549 2004-08-07 16:56  jackson
20550
20551         * HorizontalAlignment.cs: Initial checkin
20552
20553 2004-08-07 13:16  jordi
20554
20555         * Label.cs, LinkLabel.cs: throw exceptions, fixes events, missing
20556           methods
20557
20558 2004-08-07 13:05  jordi
20559
20560         * ITheme.cs, ThemeWin32Classic.cs: Theme colour support and
20561           GetSysColor defines
20562
20563 2004-08-06 18:01  pbartok
20564
20565         * ThemeWin32Classic.cs:
20566           - Fixed some rounding issues with float/int
20567
20568 2004-08-06 18:00  jackson
20569
20570         * DockStyle.cs, AnchorStyles.cs:
20571
20572                   Add flags and serializable attributes.
20573
20574 2004-08-06 17:46  pbartok
20575
20576         * XplatUIX11.cs:
20577           - Implemented GetParent
20578
20579 2004-08-06 17:18  pbartok
20580
20581         * TrackBar.cs:
20582           - Fixed some rounding issues with float/int
20583
20584 2004-08-06 17:17  pbartok
20585
20586         * X11Structs.cs, XplatUIX11.cs:
20587           - Fixed Refresh and Invalidate
20588
20589 2004-08-06 15:30  pbartok
20590
20591         * Control.cs, X11Structs.cs, XplatUIX11.cs:
20592           - Fixed recursive loop when resizing
20593           - Improved/fixed redrawing on expose messages
20594
20595 2004-08-06 09:53  jordi
20596
20597         * Control.cs, X11Structs.cs, XplatUIWin32.cs, XplatUIX11.cs: X11
20598           keyboard navigation
20599
20600 2004-08-06 08:02  pbartok
20601
20602         * X11Structs.cs, XplatUIX11.cs:
20603           - Fixed reparenting
20604           - Fixed window border creation
20605
20606 2004-08-05 15:38  pbartok
20607
20608         * XplatUIX11.cs:
20609           - Attempted fix for reparenting problems
20610
20611 2004-08-04 15:14  pbartok
20612
20613         * Control.cs:
20614           - Fixed Invalidation bug (calculated wrong client area)
20615           - Added ClientSize setter
20616
20617 2004-08-04 15:13  pbartok
20618
20619         * Form.cs:
20620           - Added AutoScale properties
20621
20622 2004-08-04 15:13  pbartok
20623
20624         * SWF.csproj:
20625           - Added latest files
20626
20627 2004-08-04 14:11  pbartok
20628
20629         * Control.cs, XplatUI.cs, XplatUIDriver.cs, XplatUIWin32.cs,
20630           XplatUIX11.cs:
20631           - Added Invalidate handling
20632
20633 2004-08-03 17:09  jordi
20634
20635         * XplatUIDriver.cs: fixes spelling mistake
20636
20637 2004-07-27 09:53  jordi
20638
20639         * TrackBar.cs: fixes trackbar events, def classname, methods
20640           signature
20641
20642 2004-07-27 09:29  jordi
20643
20644         * ScrollBar.cs: fixes scrollbar events
20645
20646 2004-07-27 04:38  jordi
20647
20648         * Control.cs: changes to be able to run winforms samples
20649
20650 2004-07-26 11:42  jordi
20651
20652         * ControlPaint.cs, ITheme.cs, ProgressBar.cs, ScrollBar.cs,
20653           ThemeEngine.cs, ThemeWin32Classic.cs, TrackBar.cs: Theme support
20654
20655 2004-07-26 05:41  jordi
20656
20657         * MessageBox.cs, MessageBoxButtons.cs, MessageBoxDefaultButton.cs,
20658           MessageBoxIcon.cs, MessageBoxOptions.cs: initial messagebox
20659           implementation
20660
20661 2004-07-22 09:22  jordi
20662
20663         * LinkLabel.cs, LinkLabelLinkClickedEventHandler.cs: link label:
20664           check link overlapping, implement events, and fixes
20665
20666 2004-07-21 10:28  jordi
20667
20668         * DialogResult.cs, IButtonControl.cs: fixes comments filenames
20669
20670 2004-07-21 10:19  jordi
20671
20672         * DialogResult.cs, IButtonControl.cs, Label.cs, LinkArea.cs,
20673           LinkBehavior.cs, LinkClickedEventArgs.cs, LinkLabel.cs,
20674           LinkLabelLinkClickedEventArgs.cs,
20675           LinkLabelLinkClickedEventHandler.cs, LinkState.cs,
20676           XplatUIWin32.cs, LinkClickedEventHandler.cs: LinkLabel control
20677           implementation
20678
20679 2004-07-19 13:09  jordi
20680
20681         * Control.cs, Label.cs: label control re-written: added missing
20682           functionlity, events, and properties
20683
20684 2004-07-19 10:49  jordi
20685
20686         * Control.cs: fixes SetBounds logic
20687
20688 2004-07-19 01:29  jordi
20689
20690         * Control.cs: Call RefreshWindow only if the window has created
20691
20692 2004-07-15 14:05  pbartok
20693
20694         * ColorDepth.cs, ImageList.cs, ImageListStreamer.cs, SWF.csproj:
20695           - Implemented ImageList and ImageList.ImageCollection classes
20696           - Added ColorDepth enumeration
20697           - Updated SWF VS.Net project
20698
20699 2004-07-15 11:06  jordi
20700
20701         * XplatUIStructs.cs: added MsgButons enum
20702
20703 2004-07-15 11:03  jordi
20704
20705         * Control.cs: added basic mouse handeling events
20706
20707 2004-07-15 03:38  jordi
20708
20709         * Orientation.cs, TickStyle.cs, TrackBar.cs: Horizontal and
20710           Vertical TrackBar control implementation
20711
20712 2004-07-13 09:33  jordi
20713
20714         * HScrollBar.cs, VScrollBar.cs: vertical and hort. classes commit
20715
20716 2004-07-13 09:31  jordi
20717
20718         * Control.cs, Form.cs: commit: new properties and fixes form size
20719           problems
20720
20721 2004-07-09 14:13  miguel
20722
20723         * ProgressBar.cs: Spelling
20724
20725 2004-07-09 11:25  pbartok
20726
20727         * ProgressBar.cs:
20728           - Removed usage of Rectangle for drawing. Miguel pointed out it's
20729           faster
20730
20731 2004-07-09 11:17  miguel
20732
20733         * ProgressBar.cs: 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
20734
20735                 * ProgressBar.cs: Fixed spelling for `block'
20736
20737                 drawProgressBar: renamed to `DrawProgressBar' to follow the coding
20738                 style guidelines.
20739
20740                 Avoid using the += on rect.X, that exposed a bug in the compiler.
20741
20742 2004-07-08 23:21  pbartok
20743
20744         * AccessibleObject.cs, AccessibleRole.cs, AccessibleStates.cs,
20745           AnchorStyles.cs, Application.cs, ApplicationContext.cs,
20746           BaseCollection.cs, Binding.cs, BindingContext.cs,
20747           BindingMemberInfo.cs, BindingsCollection.cs,
20748           BindingsManagerBase.cs, Border3DSide.cs, Border3DStyle.cs,
20749           BorderStyle.cs, BoundsSpecified.cs, ButtonBorderStyle.cs,
20750           ButtonState.cs, CaptionButton.cs, CheckBox.cs,
20751           ContainerControl.cs, Control.cs, ControlEventArgs.cs,
20752           ControlEventHandler.cs, ControlPaint.cs, ControlStyles.cs,
20753           ConvertEventArgs.cs, ConvertEventHandler.cs, Copyright,
20754           CreateParams.cs, DockStyle.cs, DragAction.cs, DragDropEffects.cs,
20755           DragEventArgs.cs, DragEventHandler.cs, FlatStyle.cs, Form.cs,
20756           FrameStyle.cs, GiveFeedbackEventArgs.cs,
20757           GiveFeedbackEventHandler.cs, HelpEventArgs.cs,
20758           HelpEventHandler.cs, IContainerControl.cs, IDataObject.cs,
20759           IMessageFilter.cs, IWin32Window.cs, ImeMode.cs, InputLanguage.cs,
20760           InputLanguageChangedEventArgs.cs,
20761           InputLanguageChangedEventHandler.cs,
20762           InputLanguageChangingEventArgs.cs,
20763           InputLanguageChangingEventHandler.cs, InputLanguageCollection.cs,
20764           InvalidateEventArgs.cs, InvalidateEventHandler.cs,
20765           KeyEventArgs.cs, KeyEventHandler.cs, KeyPressEventArgs.cs,
20766           KeyPressEventHandler.cs, Keys.cs, Label.cs, LayoutEventArgs.cs,
20767           LayoutEventHandler.cs, MenuGlyph.cs, Message.cs, MouseButtons.cs,
20768           MouseEventArgs.cs, MouseEventHandler.cs, NativeWindow.cs,
20769           PaintEventArgs.cs, PaintEventHandler.cs, ProgressBar.cs,
20770           QueryAccessibilityHelpEventArgs.cs,
20771           QueryAccessibilityHelpEventHandler.cs,
20772           QueryContinueDragEventArgs.cs, QueryContinueDragEventHandler.cs,
20773           RightToLeft.cs, SWF.csproj, SWF.csproj.user, ScrollBar.cs,
20774           ScrollBars.cs, ScrollButton.cs, ScrollEventArgs.cs,
20775           ScrollEventHandler.cs, ScrollEventType.cs, ScrollableControl.cs,
20776           TODO, TODOAttribute.cs, UICues.cs, UICuesEventArgs.cs,
20777           UICuesEventHandler.cs, X11Structs.cs, XplatUI.cs,
20778           XplatUIDriver.cs, XplatUIStructs.cs, XplatUIWin32.cs,
20779           XplatUIX11.cs, lang.cs:
20780           - Initial check-in
20781